From 80374b4e974874bef85e961fc408db806d5a6eee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ma=C5=BE=C3=A1ri?= Date: Thu, 9 Dec 2021 15:49:40 +0100 Subject: [PATCH 01/10] [PF-17] - Layout imports rows cols with default value 0 - fix import --- src/lib/import/import-utils.ts | 12 ++++++++++-- src/lib/import/import.service.ts | 12 +++++++++--- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/src/lib/import/import-utils.ts b/src/lib/import/import-utils.ts index 87bf34f..b39f582 100644 --- a/src/lib/import/import-utils.ts +++ b/src/lib/import/import-utils.ts @@ -299,10 +299,18 @@ export class ImportUtils { public parseDataGroup(xmlDataGroup: Element): DataGroup { const dataGroup = new DataGroup(this.tagValue(xmlDataGroup, 'id')); - dataGroup.cols = this.parseNumberValue(xmlDataGroup, 'cols'); - dataGroup.rows = this.parseNumberValue(xmlDataGroup, 'rows'); dataGroup.alignment = this.tagValue(xmlDataGroup, 'alignment') as Alignment; dataGroup.layout = this.tagValue(xmlDataGroup, 'layout') as LayoutType; + if (dataGroup.layout && dataGroup.layout !== LayoutType.LEGACY) { + const cols = this.parseNumberValue(xmlDataGroup, 'cols'); + if (cols && cols > 0) { + dataGroup.cols = cols; + } + const rows = this.parseNumberValue(xmlDataGroup, 'rows'); + if (rows && rows >= 0) { + dataGroup.rows = rows; + } + } dataGroup.stretch = this.tagValue(xmlDataGroup, 'stretch') === 'true'; dataGroup.title = this.parseI18n(xmlDataGroup, 'title'); const xmlDataRefs = Array.from(xmlDataGroup.getElementsByTagName('dataRef')); diff --git a/src/lib/import/import.service.ts b/src/lib/import/import.service.ts index 4753aef..dc84e98 100644 --- a/src/lib/import/import.service.ts +++ b/src/lib/import/import.service.ts @@ -393,9 +393,15 @@ export class ImportService { if (!trans.layout) trans.layout = new TransitionLayout(); trans.layout.type = this.importUtils.tagAttribute(xmlLayout.item(0), 'type') as LayoutType; - if (trans.layout.type !== LayoutType.LEGACY) { - trans.layout.cols = this.importUtils.parseNumberValue(xmlLayout.item(0), 'cols') ?? 0; - trans.layout.rows = this.importUtils.parseNumberValue(xmlLayout.item(0), 'rows') ?? 0; + if (trans.layout.type && trans.layout.type !== LayoutType.LEGACY) { + const cols = this.importUtils.parseNumberValue(xmlLayout.item(0), 'cols'); + if (cols && cols > 0) { + trans.layout.cols = cols; + } + const rows = this.importUtils.parseNumberValue(xmlLayout.item(0), 'rows'); + if (rows && rows >= 0) { + trans.layout.rows = rows; + } } trans.layout.offset = this.importUtils.parseNumberValue(xmlLayout.item(0), 'offset') ?? 0; trans.layout.alignment = this.importUtils.tagValue(xmlLayout.item(0), 'fieldAlignment') as Alignment; From 36202695b79203ba11f1b84f40bfa5bbc4403f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ma=C5=BE=C3=A1ri?= Date: Fri, 10 Dec 2021 11:36:36 +0100 Subject: [PATCH 02/10] [PF-17] - Layout imports rows cols with default value 0 - set default layout type to legacy --- src/lib/export/export.service.ts | 2 +- src/lib/import/import.service.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/export/export.service.ts b/src/lib/export/export.service.ts index 68670d4..868a00c 100644 --- a/src/lib/export/export.service.ts +++ b/src/lib/export/export.service.ts @@ -440,7 +440,7 @@ export class ExportService { const exportLayout = this.xmlConstructor.createElement('layout'); this.exportLayout(exportLayout, layout); this.exportUtils.exportTag(exportLayout, 'fieldAlignment', layout.alignment?.toString() ?? ''); - if (layout.type && layout.type !== LayoutType.GRID) { + if (layout.type && layout.type !== LayoutType.LEGACY) { exportLayout.setAttribute('type', layout.type); } element.appendChild(exportLayout); diff --git a/src/lib/import/import.service.ts b/src/lib/import/import.service.ts index dc84e98..8a4f5e9 100644 --- a/src/lib/import/import.service.ts +++ b/src/lib/import/import.service.ts @@ -393,7 +393,9 @@ export class ImportService { if (!trans.layout) trans.layout = new TransitionLayout(); trans.layout.type = this.importUtils.tagAttribute(xmlLayout.item(0), 'type') as LayoutType; - if (trans.layout.type && trans.layout.type !== LayoutType.LEGACY) { + if (!trans.layout.type) { + trans.layout.type = LayoutType.LEGACY; + } else if (trans.layout.type !== LayoutType.LEGACY) { const cols = this.importUtils.parseNumberValue(xmlLayout.item(0), 'cols'); if (cols && cols > 0) { trans.layout.cols = cols; From 37c35d1bc7e9045f09aa2ad05829c6dc3cd04691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ma=C5=BE=C3=A1ri?= Date: Fri, 10 Dec 2021 15:27:36 +0100 Subject: [PATCH 03/10] [PF-18] - Validation does not clone properties - call clone on expression and message in Validation::clone() --- package-lock.json | 7416 +-------------------- package.json | 2 +- src/lib/model/data-variable/validation.ts | 4 +- 3 files changed, 5 insertions(+), 7417 deletions(-) diff --git a/package-lock.json b/package-lock.json index 09315c1..910332f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,7420 +1,8 @@ { "name": "@netgrif/petriflow", - "version": "1.2.0", - "lockfileVersion": 2, + "version": "1.3.1", + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "@netgrif/petriflow", - "version": "1.1.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.3.1" - }, - "devDependencies": { - "@rollup/plugin-typescript": "^8.2.5", - "@typescript-eslint/eslint-plugin": "^4.33.0", - "@typescript-eslint/parser": "^4.33.0", - "cspell": "^5.12.3", - "eslint": "^7.32.0", - "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-import": "^2.24.2", - "jest": "^27.2.5", - "jest-sonar-reporter": "^2.0.0", - "rollup": "^2.58.0", - "rollup-plugin-delete": "^2.0.0", - "rollup-plugin-dts": "^4.0.0", - "rollup-plugin-terser": "^7.0.2", - "typedoc": "^0.22.5", - "typescript": "^4.4.3" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", - "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.15.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz", - "integrity": "sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.15.8", - "@babel/generator": "^7.15.8", - "@babel/helper-compilation-targets": "^7.15.4", - "@babel/helper-module-transforms": "^7.15.8", - "@babel/helpers": "^7.15.4", - "@babel/parser": "^7.15.8", - "@babel/template": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.6", - "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/core/node_modules/@babel/code-frame": { - "version": "7.15.8", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", - "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core/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/@babel/core/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/@babel/generator": { - "version": "7.15.8", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz", - "integrity": "sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==", - "dev": true, - "dependencies": { - "@babel/types": "^7.15.6", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/generator/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/@babel/helper-compilation-targets": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz", - "integrity": "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.15.0", - "@babel/helper-validator-option": "^7.14.5", - "browserslist": "^4.16.6", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-compilation-targets/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/@babel/helper-function-name": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz", - "integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==", - "dev": true, - "dependencies": { - "@babel/helper-get-function-arity": "^7.15.4", - "@babel/template": "^7.15.4", - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz", - "integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz", - "integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz", - "integrity": "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz", - "integrity": "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.15.8", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz", - "integrity": "sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==", - "dev": true, - "dependencies": { - "@babel/helper-module-imports": "^7.15.4", - "@babel/helper-replace-supers": "^7.15.4", - "@babel/helper-simple-access": "^7.15.4", - "@babel/helper-split-export-declaration": "^7.15.4", - "@babel/helper-validator-identifier": "^7.15.7", - "@babel/template": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz", - "integrity": "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz", - "integrity": "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==", - "dev": true, - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.15.4", - "@babel/helper-optimise-call-expression": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz", - "integrity": "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz", - "integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.15.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", - "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", - "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz", - "integrity": "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==", - "dev": true, - "dependencies": { - "@babel/template": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", - "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.14.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/parser": { - "version": "7.15.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz", - "integrity": "sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==", - "dev": true, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.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-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-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-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.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", - "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", - "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/template": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz", - "integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template/node_modules/@babel/code-frame": { - "version": "7.15.8", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", - "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz", - "integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.4", - "@babel/helper-function-name": "^7.15.4", - "@babel/helper-hoist-variables": "^7.15.4", - "@babel/helper-split-export-declaration": "^7.15.4", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/@babel/code-frame": { - "version": "7.15.8", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", - "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/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/@babel/types": { - "version": "7.15.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz", - "integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.14.9", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "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/@cspell/cspell-bundled-dicts": { - "version": "5.12.3", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.12.3.tgz", - "integrity": "sha512-f3kyUHYxyGqNt2DTphpmP8hr38YTL48wr4Dq7pZDbqDjLkerq9T7ufX2CZ2OfydBEdIgduX2UXwiow7IfdwY/A==", - "dev": true, - "dependencies": { - "@cspell/dict-ada": "^1.1.2", - "@cspell/dict-aws": "^1.0.14", - "@cspell/dict-bash": "^1.0.15", - "@cspell/dict-companies": "^1.0.40", - "@cspell/dict-cpp": "^1.1.40", - "@cspell/dict-cryptocurrencies": "^1.0.10", - "@cspell/dict-csharp": "^1.0.11", - "@cspell/dict-css": "^1.0.12", - "@cspell/dict-django": "^1.0.26", - "@cspell/dict-dotnet": "^1.0.31", - "@cspell/dict-elixir": "^1.0.25", - "@cspell/dict-en_us": "^2.1.1", - "@cspell/dict-en-gb": "^1.1.33", - "@cspell/dict-filetypes": "^1.1.8", - "@cspell/dict-fonts": "^1.0.14", - "@cspell/dict-fullstack": "^1.0.38", - "@cspell/dict-golang": "^1.1.24", - "@cspell/dict-haskell": "^1.0.13", - "@cspell/dict-html": "^1.1.9", - "@cspell/dict-html-symbol-entities": "^1.0.23", - "@cspell/dict-java": "^1.0.23", - "@cspell/dict-latex": "^1.0.25", - "@cspell/dict-lorem-ipsum": "^1.0.22", - "@cspell/dict-lua": "^1.0.16", - "@cspell/dict-node": "^1.0.12", - "@cspell/dict-npm": "^1.0.16", - "@cspell/dict-php": "^1.0.24", - "@cspell/dict-powershell": "^1.0.18", - "@cspell/dict-public-licenses": "^1.0.3", - "@cspell/dict-python": "^2.0.3", - "@cspell/dict-ruby": "^1.0.14", - "@cspell/dict-rust": "^1.0.23", - "@cspell/dict-scala": "^1.0.21", - "@cspell/dict-software-terms": "^1.0.47", - "@cspell/dict-typescript": "^1.0.19" - }, - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/@cspell/cspell-types": { - "version": "5.12.3", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.12.3.tgz", - "integrity": "sha512-4l43apk3QGMkpszirKjrRGWmzZVuCyvoa0+kgWCl28dviLKsVonop8liBJaBzjmZbdpe27IKpMrNtj0fOus+fw==", - "dev": true, - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/@cspell/dict-ada": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-1.1.2.tgz", - "integrity": "sha512-UDrcYcKIVyXDz5mInJabRNQpJoehjBFvja5W+GQyu9pGcx3BS3cAU8mWENstGR0Qc/iFTxB010qwF8F3cHA/aA==", - "dev": true - }, - "node_modules/@cspell/dict-aws": { - "version": "1.0.14", - "resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-1.0.14.tgz", - "integrity": "sha512-K21CfB4ZpKYwwDQiPfic2zJA/uxkbsd4IQGejEvDAhE3z8wBs6g6BwwqdVO767M9NgZqc021yAVpr79N5pWe3w==", - "dev": true - }, - "node_modules/@cspell/dict-bash": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-1.0.15.tgz", - "integrity": "sha512-rY5Bq4RWTgJTioG8vqFbCmnalc/UEM+iBuAZBYvBfT3nU/6SN00Zjyvlh823ir2ODkUryT29CwRYwXcPnuM04w==", - "dev": true - }, - "node_modules/@cspell/dict-companies": { - "version": "1.0.40", - "resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-1.0.40.tgz", - "integrity": "sha512-Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw==", - "dev": true - }, - "node_modules/@cspell/dict-cpp": { - "version": "1.1.40", - "resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-1.1.40.tgz", - "integrity": "sha512-sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw==", - "dev": true - }, - "node_modules/@cspell/dict-cryptocurrencies": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-1.0.10.tgz", - "integrity": "sha512-47ABvDJOkaST/rXipNMfNvneHUzASvmL6K/CbOFpYKfsd0x23Jc9k1yaOC7JAm82XSC/8a7+3Yu+Fk2jVJNnsA==", - "dev": true - }, - "node_modules/@cspell/dict-csharp": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-1.0.11.tgz", - "integrity": "sha512-nub+ZCiTgmT87O+swI+FIAzNwaZPWUGckJU4GN402wBq420V+F4ZFqNV7dVALJrGaWH7LvADRtJxi6cZVHJKeA==", - "dev": true - }, - "node_modules/@cspell/dict-css": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-1.0.12.tgz", - "integrity": "sha512-K6yuxej7n454O7dwKG6lHacHrAOMZ0PhMEbmV6qH2JH0U4TtWXfBASYugHvXZCDDx1UObpiJP+3tQJiBqfGpHA==", - "dev": true - }, - "node_modules/@cspell/dict-django": { - "version": "1.0.26", - "resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-1.0.26.tgz", - "integrity": "sha512-mn9bd7Et1L2zuibc08GVHTiD2Go3/hdjyX5KLukXDklBkq06r+tb0OtKtf1zKodtFDTIaYekGADhNhA6AnKLkg==", - "dev": true - }, - "node_modules/@cspell/dict-dotnet": { - "version": "1.0.31", - "resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-1.0.31.tgz", - "integrity": "sha512-65yZTMcEdYkNx9sNs18OxcE0zfbZ5VsAZ0KgDvl/1YCkTomxr9vmtnrzFz4+vxfjV4eSuaL1SPRMZODaM7SSTg==", - "dev": true - }, - "node_modules/@cspell/dict-elixir": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-1.0.25.tgz", - "integrity": "sha512-ZmawoBYjM5k+8fNudRMkK+PpHjhyAFAZt2rUu1EGj2rbCvE3Fn2lhRbDjbreN7nWRvcLRTW+xuPXtKP11X0ahQ==", - "dev": true - }, - "node_modules/@cspell/dict-en_us": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.1.1.tgz", - "integrity": "sha512-7kHOqve9DVFsb1e/wKME3CZhj48zOqvXNaA1Cd82ZkaHf3aL7pUBx3cxI7Xopj/dcK1ZkhUKh+2nBxPIWIibNg==", - "dev": true - }, - "node_modules/@cspell/dict-en-gb": { - "version": "1.1.33", - "resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz", - "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==", - "dev": true - }, - "node_modules/@cspell/dict-filetypes": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-1.1.8.tgz", - "integrity": "sha512-EllahNkhzvLWo0ptwu0l3oEeAJOQSUpZnDfnKRIh6mJVehuSovNHwA9vrdZ8jBUjuqcfaN2e7c32zN0D/qvWJQ==", - "dev": true - }, - "node_modules/@cspell/dict-fonts": { - "version": "1.0.14", - "resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-1.0.14.tgz", - "integrity": "sha512-VhIX+FVYAnqQrOuoFEtya6+H72J82cIicz9QddgknsTqZQ3dvgp6lmVnsQXPM3EnzA8n1peTGpLDwHzT7ociLA==", - "dev": true - }, - "node_modules/@cspell/dict-fullstack": { - "version": "1.0.38", - "resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-1.0.38.tgz", - "integrity": "sha512-4reajWiUxwWrSyZaWm9e15kaWzjYcZbzlB+CVcxE1+0NqdIoqlEESDhbnrAjKPSq+jspKtes7nQ1CdZEOj1gCA==", - "dev": true - }, - "node_modules/@cspell/dict-golang": { - "version": "1.1.24", - "resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-1.1.24.tgz", - "integrity": "sha512-qq3Cjnx2U1jpeWAGJL1GL0ylEhUMqyaR36Xij6Y6Aq4bViCRp+HRRqk0x5/IHHbOrti45h3yy7ii1itRFo+Xkg==", - "dev": true - }, - "node_modules/@cspell/dict-haskell": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-1.0.13.tgz", - "integrity": "sha512-kvl8T84cnYRPpND/P3D86P6WRSqebsbk0FnMfy27zo15L5MLAb3d3MOiT1kW3vEWfQgzUD7uddX/vUiuroQ8TA==", - "dev": true - }, - "node_modules/@cspell/dict-html": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-1.1.9.tgz", - "integrity": "sha512-vvnYia0tyIS5Fdoz+gEQm77MGZZE66kOJjuNpIYyRHCXFAhWdYz3SmkRm6YKJSWSvuO+WBJYTKDvkOxSh3Fx/w==", - "dev": true - }, - "node_modules/@cspell/dict-html-symbol-entities": { - "version": "1.0.23", - "resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-1.0.23.tgz", - "integrity": "sha512-PV0UBgcBFbBLf/m1wfkVMM8w96kvfHoiCGLWO6BR3Q9v70IXoE4ae0+T+f0CkxcEkacMqEQk/I7vuE9MzrjaNw==", - "dev": true - }, - "node_modules/@cspell/dict-java": { - "version": "1.0.23", - "resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-1.0.23.tgz", - "integrity": "sha512-LcOg9srYLDoNGd8n3kbfDBlZD+LOC9IVcnFCdua1b/luCHNVmlgBx7e677qPu7olpMYOD5TQIVW2OmM1+/6MFA==", - "dev": true - }, - "node_modules/@cspell/dict-latex": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-1.0.25.tgz", - "integrity": "sha512-cEgg91Migqcp1SdVV7dUeMxbPDhxdNo6Fgq2eygAXQjIOFK520FFvh/qxyBvW90qdZbIRoU2AJpchyHfGuwZFA==", - "dev": true - }, - "node_modules/@cspell/dict-lorem-ipsum": { - "version": "1.0.22", - "resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-1.0.22.tgz", - "integrity": "sha512-yqzspR+2ADeAGUxLTfZ4pXvPl7FmkENMRcGDECmddkOiuEwBCWMZdMP5fng9B0Q6j91hQ8w9CLvJKBz10TqNYg==", - "dev": true - }, - "node_modules/@cspell/dict-lua": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-1.0.16.tgz", - "integrity": "sha512-YiHDt8kmHJ8nSBy0tHzaxiuitYp+oJ66ffCYuFWTNB3//Y0SI4OGHU3omLsQVeXIfCeVrO4DrVvRDoCls9B5zQ==", - "dev": true - }, - "node_modules/@cspell/dict-node": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-1.0.12.tgz", - "integrity": "sha512-RPNn/7CSkflAWk0sbSoOkg0ORrgBARUjOW3QjB11KwV1gSu8f5W/ij/S50uIXtlrfoBLqd4OyE04jyON+g/Xfg==", - "dev": true - }, - "node_modules/@cspell/dict-npm": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-1.0.16.tgz", - "integrity": "sha512-RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ==", - "dev": true - }, - "node_modules/@cspell/dict-php": { - "version": "1.0.24", - "resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-1.0.24.tgz", - "integrity": "sha512-vHCqETX1idT9tN1plkxUFnXMIHjbbrNOINZh1PYSvVlBrOdahSaL/g6dOJZC5QTaaidoU4WXUlgnNb/7JN4Plg==", - "dev": true - }, - "node_modules/@cspell/dict-powershell": { - "version": "1.0.18", - "resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-1.0.18.tgz", - "integrity": "sha512-LAfCJBy1hga8/KI/IpAg/GrnoP+b4SbNGdiXiXrejeZ7ZTVfj4qYsTCkZ2p7eYUu92FLyJT4jGex0fGZn/PtVw==", - "dev": true - }, - "node_modules/@cspell/dict-public-licenses": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-1.0.3.tgz", - "integrity": "sha512-sXjxOHJ9Q4rZvE1UbwpwJQ8EXO3fadKBjJIWmz0z+dZAbvTrmz5Ln1Ef9ruJvLPfwAps8m3TCV6Diz60RAQqHg==", - "dev": true - }, - "node_modules/@cspell/dict-python": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-2.0.3.tgz", - "integrity": "sha512-b15Dk/nDzeB5mbTSXx4RGKgmM9AW5BpaHyZoUZNUOdPfQbcd02hVblro/MXMw45SvQ3Wr/VFJx32skwuRkvFPg==", - "dev": true - }, - "node_modules/@cspell/dict-ruby": { - "version": "1.0.14", - "resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-1.0.14.tgz", - "integrity": "sha512-XHBGN4U1y9rjRuqrCA+3yIm2TCdhwwHXpOEcWkNeyXm8K03yPnIrKFS+kap8GTTrLpfNDuFsrmkkQTa7ssXLRA==", - "dev": true - }, - "node_modules/@cspell/dict-rust": { - "version": "1.0.23", - "resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-1.0.23.tgz", - "integrity": "sha512-lR4boDzs79YD6+30mmiSGAMMdwh7HTBAPUFSB0obR3Kidibfc3GZ+MHWZXay5dxZ4nBKM06vyjtanF9VJ8q1Iw==", - "dev": true - }, - "node_modules/@cspell/dict-scala": { - "version": "1.0.21", - "resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-1.0.21.tgz", - "integrity": "sha512-5V/R7PRbbminTpPS3ywgdAalI9BHzcEjEj9ug4kWYvBIGwSnS7T6QCFCiu+e9LvEGUqQC+NHgLY4zs1NaBj2vA==", - "dev": true - }, - "node_modules/@cspell/dict-software-terms": { - "version": "1.0.47", - "resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-1.0.47.tgz", - "integrity": "sha512-q7cPUaZ3KYtebHpUr/kQXEOIbtJbii069ubXE1eWHWnAYrJZOGFc0W4Sau0ZjeY7cdOXWeYZ3hzcW8XNtPkQrw==", - "dev": true - }, - "node_modules/@cspell/dict-typescript": { - "version": "1.0.19", - "resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-1.0.19.tgz", - "integrity": "sha512-qmJApzoVskDeJnLZzZMaafEDGbEg5Elt4c3Mpg49SWzIHm1N4VXCp5CcFfHsOinJ30dGrs3ARAJGJZIw56kK6A==", - "dev": true - }, - "node_modules/@eslint/eslintrc": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^13.9.0", - "ignore": "^4.0.6", - "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/@eslint/eslintrc/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/@humanwhocodes/config-array": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", - "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.0", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz", - "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==", - "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.2.5", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.2.5.tgz", - "integrity": "sha512-smtlRF9vNKorRMCUtJ+yllIoiY8oFmfFG7xlzsAE76nKEwXNhjPOJIsc7Dv+AUitVt76t+KjIpUP9m98Crn2LQ==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^27.2.5", - "jest-util": "^27.2.5", - "slash": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/core": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.2.5.tgz", - "integrity": "sha512-VR7mQ+jykHN4WO3OvusRJMk4xCa2MFLipMS+43fpcRGaYrN1KwMATfVEXif7ccgFKYGy5D1TVXTNE4mGq/KMMA==", - "dev": true, - "dependencies": { - "@jest/console": "^27.2.5", - "@jest/reporters": "^27.2.5", - "@jest/test-result": "^27.2.5", - "@jest/transform": "^27.2.5", - "@jest/types": "^27.2.5", - "@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.2.5", - "jest-config": "^27.2.5", - "jest-haste-map": "^27.2.5", - "jest-message-util": "^27.2.5", - "jest-regex-util": "^27.0.6", - "jest-resolve": "^27.2.5", - "jest-resolve-dependencies": "^27.2.5", - "jest-runner": "^27.2.5", - "jest-runtime": "^27.2.5", - "jest-snapshot": "^27.2.5", - "jest-util": "^27.2.5", - "jest-validate": "^27.2.5", - "jest-watcher": "^27.2.5", - "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/environment": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.2.5.tgz", - "integrity": "sha512-XvUW3q6OUF+54SYFCgbbfCd/BKTwm5b2MGLoc2jINXQLKQDTCS2P2IrpPOtQ08WWZDGzbhAzVhOYta3J2arubg==", - "dev": true, - "dependencies": { - "@jest/fake-timers": "^27.2.5", - "@jest/types": "^27.2.5", - "@types/node": "*", - "jest-mock": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/fake-timers": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.2.5.tgz", - "integrity": "sha512-ZGUb6jg7BgwY+nmO0TW10bc7z7Hl2G/UTAvmxEyZ/GgNFoa31tY9/cgXmqcxnnZ7o5Xs7RAOz3G1SKIj8IVDlg==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "@sinonjs/fake-timers": "^8.0.1", - "@types/node": "*", - "jest-message-util": "^27.2.5", - "jest-mock": "^27.2.5", - "jest-util": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/globals": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.2.5.tgz", - "integrity": "sha512-naRI537GM+enFVJQs6DcwGYPn/0vgJNb06zGVbzXfDfe/epDPV73hP1vqO37PqSKDeOXM2KInr6ymYbL1HTP7g==", - "dev": true, - "dependencies": { - "@jest/environment": "^27.2.5", - "@jest/types": "^27.2.5", - "expect": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/reporters": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.2.5.tgz", - "integrity": "sha512-zYuR9fap3Q3mxQ454VWF8I6jYHErh368NwcKHWO2uy2fwByqBzRHkf9j2ekMDM7PaSTWcLBSZyd7NNxR1iHxzQ==", - "dev": true, - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.2.5", - "@jest/test-result": "^27.2.5", - "@jest/transform": "^27.2.5", - "@jest/types": "^27.2.5", - "@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": "^4.0.3", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "jest-haste-map": "^27.2.5", - "jest-resolve": "^27.2.5", - "jest-util": "^27.2.5", - "jest-worker": "^27.2.5", - "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/source-map": { - "version": "27.0.6", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.0.6.tgz", - "integrity": "sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g==", - "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/test-result": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.2.5.tgz", - "integrity": "sha512-ub7j3BrddxZ0BdSnM5JCF6cRZJ/7j3wgdX0+Dtwhw2Po+HKsELCiXUTvh+mgS4/89mpnU1CPhZxe2mTvuLPJJg==", - "dev": true, - "dependencies": { - "@jest/console": "^27.2.5", - "@jest/types": "^27.2.5", - "@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-sequencer": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.2.5.tgz", - "integrity": "sha512-8j8fHZRfnjbbdMitMAGFKaBZ6YqvFRFJlMJzcy3v75edTOqc7RY65S9JpMY6wT260zAcL2sTQRga/P4PglCu3Q==", - "dev": true, - "dependencies": { - "@jest/test-result": "^27.2.5", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.2.5", - "jest-runtime": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/transform": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.2.5.tgz", - "integrity": "sha512-29lRtAHHYGALbZOx343v0zKmdOg4Sb0rsA1uSv0818bvwRhs3TyElOmTVXlrw0v1ZTqXJCAH/cmoDXimBhQOJQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.2.5", - "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": "^27.2.5", - "jest-regex-util": "^27.0.6", - "jest-util": "^27.2.5", - "micromatch": "^4.0.4", - "pirates": "^4.0.1", - "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/types": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.2.5.tgz", - "integrity": "sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ==", - "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/@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/@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.0.1", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.0.1.tgz", - "integrity": "sha512-AU7kwFxreVd6OAXcAFlKSmZquiRUU0FvYm44k1Y1QbK7Co4m0aqfGMhjykIeQp/H6rcl+nFmj0zfdUcGVs9Dew==", - "dev": true, - "dependencies": { - "@sinonjs/commons": "^1.7.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.16", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz", - "integrity": "sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==", - "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.3", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz", - "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", - "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/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.1.4", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==", - "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/istanbul-lib-coverage": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", - "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", - "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/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/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", - "dev": true - }, - "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/node": { - "version": "16.10.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.10.3.tgz", - "integrity": "sha512-ho3Ruq+fFnBrZhUYI46n/bV2GjwzSkwuT4dTf0GkuNFmnb8nq4ny2z9JEVemFi6bdEJanHLlYfy9c6FN9B9McQ==", - "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/prettier": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.1.tgz", - "integrity": "sha512-Fo79ojj3vdEZOHg3wR9ksAMRz4P3S5fDB5e/YWZiFnyFQI1WY2Vftu9XoXVVtJfxB7Bpce/QTqWSSntkz2Znrw==", - "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/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/@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/@typescript-eslint/eslint-plugin": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", - "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", - "dev": true, - "dependencies": { - "@typescript-eslint/experimental-utils": "4.33.0", - "@typescript-eslint/scope-manager": "4.33.0", - "debug": "^4.3.1", - "functional-red-black-tree": "^1.0.1", - "ignore": "^5.1.8", - "regexpp": "^3.1.0", - "semver": "^7.3.5", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^4.0.0", - "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/experimental-utils": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", - "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.7", - "@typescript-eslint/scope-manager": "4.33.0", - "@typescript-eslint/types": "4.33.0", - "@typescript-eslint/typescript-estree": "4.33.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", - "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", - "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "4.33.0", - "@typescript-eslint/types": "4.33.0", - "@typescript-eslint/typescript-estree": "4.33.0", - "debug": "^4.3.1" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", - "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "4.33.0", - "@typescript-eslint/visitor-keys": "4.33.0" - }, - "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/types": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", - "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", - "dev": true, - "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", - "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "4.33.0", - "@typescript-eslint/visitor-keys": "4.33.0", - "debug": "^4.3.1", - "globby": "^11.0.3", - "is-glob": "^4.0.1", - "semver": "^7.3.5", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", - "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "4.33.0", - "eslint-visitor-keys": "^2.0.0" - }, - "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "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/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/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/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/ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "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-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": "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/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/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/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-timsort": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz", - "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==", - "dev": true - }, - "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.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/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "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/babel-jest": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.2.5.tgz", - "integrity": "sha512-GC9pWCcitBhSuF7H3zl0mftoKizlswaF0E3qi+rPL417wKkCB0d+Sjjb0OfXvxj7gWiBf497ldgRMii68Xz+2g==", - "dev": true, - "dependencies": { - "@jest/transform": "^27.2.5", - "@jest/types": "^27.2.5", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.0.0", - "babel-preset-jest": "^27.2.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-plugin-istanbul": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", - "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", - "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": "^4.0.0", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-jest-hoist": { - "version": "27.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.2.0.tgz", - "integrity": "sha512-TOux9khNKdi64mW+0OIhcmbAn75tTlzKhxmiNXevQaPbrBYK7YKjP1jl6NHTJ6XR5UgUrJbCnWlKVnJn29dfjw==", - "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-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.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.2.0.tgz", - "integrity": "sha512-z7MgQ3peBwN5L5aCqBKnF6iqdlvZvFUQynEhu0J+X9nHLU72jO3iY331lcYrg+AssJ8q7xsv5/3AICzVmJ/wvg==", - "dev": true, - "dependencies": { - "babel-plugin-jest-hoist": "^27.2.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/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/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/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/browserslist": { - "version": "4.17.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.3.tgz", - "integrity": "sha512-59IqHJV5VGdcJZ+GZ2hU5n4Kv3YiASzW6Xk5g9tf5a/MAzGeFwgGWU39fVzNIOVcgB3+Gp+kiQu0HEfTVU/3VQ==", - "dev": true, - "dependencies": { - "caniuse-lite": "^1.0.30001264", - "electron-to-chromium": "^1.3.857", - "escalade": "^3.1.1", - "node-releases": "^1.1.77", - "picocolors": "^0.2.1" - }, - "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/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-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/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/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/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/caniuse-lite": { - "version": "1.0.30001265", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001265.tgz", - "integrity": "sha512-YzBnspggWV5hep1m9Z6sZVLOt7vrju8xWooFAgN6BA5qvy98qPAPb7vNUzypFaoh2pb3vlfzbDO8tB57UPGbtw==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } - }, - "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/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/ci-info": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz", - "integrity": "sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==", - "dev": true - }, - "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/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/clear-module": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/clear-module/-/clear-module-4.1.1.tgz", - "integrity": "sha512-ng0E7LeODcT3QkazOckzZqbca+JByQy/Q2Z6qO24YsTp+pLxCfohGz2gJYJqZS0CWTX3LEUiHOqe5KlYeUbEMw==", - "dev": true, - "dependencies": { - "parent-module": "^2.0.0", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "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/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/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/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/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/commander": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.2.0.tgz", - "integrity": "sha512-LLKxDvHeL91/8MIyTAD5BFMNtoIwztGPMiM/7Bl8rIPmHCZXRxmSWr91h57dpOpnQ6jIUqEWdXE/uBYMfiVZDA==", - "dev": true, - "engines": { - "node": ">= 12" - } - }, - "node_modules/comment-json": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.1.1.tgz", - "integrity": "sha512-v8gmtPvxhBlhdRBLwdHSjGy9BgA23t9H1FctdQKyUrErPjSrJcdDMqBq9B4Irtm7w3TNYLQJNH6ARKnpyag1sA==", - "dev": true, - "dependencies": { - "array-timsort": "^1.0.3", - "core-util-is": "^1.0.2", - "esprima": "^4.0.1", - "has-own-prop": "^2.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">= 6" - } - }, - "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/configstore": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", - "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", - "dev": true, - "dependencies": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "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/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==", - "dev": true - }, - "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/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-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/cspell": { - "version": "5.12.3", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.12.3.tgz", - "integrity": "sha512-lPyWZHfdQh+xjUZDAQC0gnpjglMu2AEfxBWlziTm3XuYuPGTvNJQSUrkMcH180tA3fkj8q2XFwfxHkXXAxm68w==", - "dev": true, - "dependencies": { - "chalk": "^4.1.2", - "commander": "^8.2.0", - "comment-json": "^4.1.1", - "cspell-gitignore": "^5.12.3", - "cspell-glob": "^5.12.3", - "cspell-lib": "^5.12.3", - "fast-json-stable-stringify": "^2.1.0", - "file-entry-cache": "^6.0.1", - "fs-extra": "^10.0.0", - "get-stdin": "^8.0.0", - "glob": "^7.2.0", - "imurmurhash": "^0.1.4", - "strip-ansi": "^6.0.1", - "vscode-uri": "^3.0.2" - }, - "bin": { - "cspell": "bin.js" - }, - "engines": { - "node": ">=12.13.0" - }, - "funding": { - "url": "https://github.com/streetsidesoftware/cspell?sponsor=1" - } - }, - "node_modules/cspell-gitignore": { - "version": "5.12.3", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.12.3.tgz", - "integrity": "sha512-oPqY6oCVNwFRqcE0FiWNPsyv0EjWiK2N66en6HDZR+pXLZ1CBh8PHcUbRAGt+XHckm27zxbl/sDCKd2m+5yyIA==", - "dev": true, - "dependencies": { - "cspell-glob": "^5.12.3", - "find-up": "^5.0.0" - }, - "bin": { - "cspell-gitignore": "bin.js" - }, - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/cspell-glob": { - "version": "5.12.3", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.12.3.tgz", - "integrity": "sha512-2ZgzHr01Blch1I1C3jkzb3IIEE7peoFDDAM+MONQdf8JugWrexZsQ3A6nNUuUgtHZYbJC01ZKzB1JunmE84caA==", - "dev": true, - "dependencies": { - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/cspell-io": { - "version": "5.12.3", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.12.3.tgz", - "integrity": "sha512-YqIsDPWj4OKyRYDZyZ9InvYBSGJAYbq/OMzCtJ1vCpgzGdm+7pWQkonGZMThPDW33EsSE8GPaT/XTGZbqZuDoA==", - "dev": true, - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/cspell-lib": { - "version": "5.12.3", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.12.3.tgz", - "integrity": "sha512-wiS3X3inzkwr2d6UojVLjzGFxwhnE+HoQYg7cDyC2qqK1Q++36c5bHJGE8564lsVedeAMVbHh81bP7hibg/yUw==", - "dev": true, - "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.12.3", - "@cspell/cspell-types": "^5.12.3", - "clear-module": "^4.1.1", - "comment-json": "^4.1.1", - "configstore": "^5.0.1", - "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.12.3", - "cspell-io": "^5.12.3", - "cspell-trie-lib": "^5.12.3", - "find-up": "^5.0.0", - "fs-extra": "^10.0.0", - "gensequence": "^3.1.1", - "import-fresh": "^3.3.0", - "resolve-from": "^5.0.0", - "resolve-global": "^1.0.0", - "vscode-uri": "^3.0.2" - }, - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/cspell-trie-lib": { - "version": "5.12.3", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.12.3.tgz", - "integrity": "sha512-kck/fUcsBeskuHPFSW4tn4yseDWCDTSaXwxTB+G129anzk0w7mz4LliBBfoD8AHo+D102N7nWmcKXxwPUxAXUQ==", - "dev": true, - "dependencies": { - "fs-extra": "^10.0.0", - "gensequence": "^3.1.1" - }, - "engines": { - "node": ">=12.13.0" - } - }, - "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/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.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "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/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/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/del": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz", - "integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==", - "dev": true, - "dependencies": { - "globby": "^10.0.1", - "graceful-fs": "^4.2.2", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.1", - "p-map": "^3.0.0", - "rimraf": "^3.0.0", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/del/node_modules/globby": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", - "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", - "dev": true, - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "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/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/diff-sequences": { - "version": "27.0.6", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.0.6.tgz", - "integrity": "sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==", - "dev": true, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "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/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/dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, - "dependencies": { - "is-obj": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.3.864", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.864.tgz", - "integrity": "sha512-v4rbad8GO6/yVI92WOeU9Wgxc4NA0n4f6P1FvZTY+jyY7JHEhw3bduYu60v3Q1h81Cg6eo4ApZrFPuycwd5hGw==", - "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/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "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/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-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/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-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "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/estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/escodegen/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/escodegen/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/escodegen/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/escodegen/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/eslint": { - "version": "7.32.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", - "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.3", - "@humanwhocodes/config-array": "^0.5.0", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.1.2", - "globals": "^13.6.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.0.4", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^6.0.9", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "resolve": "^1.20.0" - } - }, - "node_modules/eslint-import-resolver-node/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/eslint-module-utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz", - "integrity": "sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "pkg-dir": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/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/eslint-plugin-eslint-comments": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz", - "integrity": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5", - "ignore": "^5.0.5" - }, - "engines": { - "node": ">=6.5.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=4.19.1" - } - }, - "node_modules/eslint-plugin-eslint-comments/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/eslint-plugin-import": { - "version": "2.24.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz", - "integrity": "sha512-hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.3", - "array.prototype.flat": "^1.2.4", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.6.2", - "find-up": "^2.0.0", - "has": "^1.0.3", - "is-core-module": "^2.6.0", - "minimatch": "^3.0.4", - "object.values": "^1.1.4", - "pkg-up": "^2.0.0", - "read-pkg-up": "^3.0.0", - "resolve": "^1.20.0", - "tsconfig-paths": "^3.11.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0" - } - }, - "node_modules/eslint-plugin-import/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/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/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/eslint-plugin-import/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-import/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/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, - "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint/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/espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", - "dev": true, - "dependencies": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "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/esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "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/esrecurse/node_modules/estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "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/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/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/expect": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.2.5.tgz", - "integrity": "sha512-ZrO0w7bo8BgGoP/bLz+HDCI+0Hfei9jUSZs5yI/Wyn9VkG9w8oJ7rHRgYj+MA7yqqFa0IwHA3flJzZtYugShJA==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "ansi-styles": "^5.0.0", - "jest-get-type": "^27.0.6", - "jest-matcher-utils": "^27.2.5", - "jest-message-util": "^27.2.5", - "jest-regex-util": "^27.0.6" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/expect/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/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.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", - "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", - "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" - } - }, - "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/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/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.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/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.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", - "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", - "dev": true - }, - "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/fs-extra": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "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/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", - "dev": true - }, - "node_modules/gensequence": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/gensequence/-/gensequence-3.1.1.tgz", - "integrity": "sha512-ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, - "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-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "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/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/global-dirs": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", - "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", - "dev": true, - "dependencies": { - "ini": "^1.3.4" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/globals": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", - "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globby": { - "version": "11.0.4", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", - "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", - "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/graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", - "dev": true - }, - "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": "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/has-own-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz", - "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "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/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-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/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-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/ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "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/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/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.0.3", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz", - "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", - "dev": true, - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - } - }, - "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/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==", - "dev": true - }, - "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/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/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-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-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": "3.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.0.tgz", - "integrity": "sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==", - "dev": true, - "dependencies": { - "ci-info": "^3.1.1" - }, - "bin": { - "is-ci": "bin.js" - } - }, - "node_modules/is-core-module": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.7.0.tgz", - "integrity": "sha512-ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ==", - "dev": true, - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "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-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-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-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "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-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "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-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.1", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz", - "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "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/istanbul-lib-coverage": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", - "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", - "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.7.5", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.0.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument/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/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-source-maps": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", - "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-reports": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.3.tgz", - "integrity": "sha512-0i77ZFLsb9U3DHi22WzmIngVzfoyxxbQcZRqlF3KoKmCJGq9nhFHoGi8FqBztN2rE8w6hURnZghetn0xpkVb6A==", - "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.2.5.tgz", - "integrity": "sha512-vDMzXcpQN4Ycaqu+vO7LX8pZwNNoKMhc+gSp6q1D8S6ftRk8gNW8cni3YFxknP95jxzQo23Lul0BI2FrWgnwYQ==", - "dev": true, - "dependencies": { - "@jest/core": "^27.2.5", - "import-local": "^3.0.2", - "jest-cli": "^27.2.5" - }, - "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.2.5", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.2.5.tgz", - "integrity": "sha512-jfnNJzF89csUKRPKJ4MwZ1SH27wTmX2xiAIHUHrsb/OYd9Jbo4/SXxJ17/nnx6RIifpthk3Y+LEeOk+/dDeGdw==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "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-circus": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.2.5.tgz", - "integrity": "sha512-eyL9IcrAxm3Saq3rmajFCwpaxaRMGJ1KJs+7hlTDinXpJmeR3P02bheM3CYohE7UfwOBmrFMJHjgo/WPcLTM+Q==", - "dev": true, - "dependencies": { - "@jest/environment": "^27.2.5", - "@jest/test-result": "^27.2.5", - "@jest/types": "^27.2.5", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^27.2.5", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.2.5", - "jest-matcher-utils": "^27.2.5", - "jest-message-util": "^27.2.5", - "jest-runtime": "^27.2.5", - "jest-snapshot": "^27.2.5", - "jest-util": "^27.2.5", - "pretty-format": "^27.2.5", - "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-cli": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.2.5.tgz", - "integrity": "sha512-XzfcOXi5WQrXqFYsDxq5RDOKY4FNIgBgvgf3ZBz4e/j5/aWep5KnsAYH5OFPMdX/TP/LFsYQMRH7kzJUMh6JKg==", - "dev": true, - "dependencies": { - "@jest/core": "^27.2.5", - "@jest/test-result": "^27.2.5", - "@jest/types": "^27.2.5", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "import-local": "^3.0.2", - "jest-config": "^27.2.5", - "jest-util": "^27.2.5", - "jest-validate": "^27.2.5", - "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-config": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.2.5.tgz", - "integrity": "sha512-QdENtn9b5rIIYGlbDNEcgY9LDL5kcokJnXrp7x8AGjHob/XFqw1Z6p+gjfna2sUulQsQ3ce2Fvntnv+7fKYDhQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^27.2.5", - "@jest/types": "^27.2.5", - "babel-jest": "^27.2.5", - "chalk": "^4.0.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "is-ci": "^3.0.0", - "jest-circus": "^27.2.5", - "jest-environment-jsdom": "^27.2.5", - "jest-environment-node": "^27.2.5", - "jest-get-type": "^27.0.6", - "jest-jasmine2": "^27.2.5", - "jest-regex-util": "^27.0.6", - "jest-resolve": "^27.2.5", - "jest-runner": "^27.2.5", - "jest-util": "^27.2.5", - "jest-validate": "^27.2.5", - "micromatch": "^4.0.4", - "pretty-format": "^27.2.5" - }, - "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-diff": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.2.5.tgz", - "integrity": "sha512-7gfwwyYkeslOOVQY4tVq5TaQa92mWfC9COsVYMNVYyJTOYAqbIkoD3twi5A+h+tAPtAelRxkqY6/xu+jwTr0dA==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^27.0.6", - "jest-get-type": "^27.0.6", - "pretty-format": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-docblock": { - "version": "27.0.6", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.0.6.tgz", - "integrity": "sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA==", - "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.2.5", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.2.5.tgz", - "integrity": "sha512-HUPWIbJT0bXarRwKu/m7lYzqxR4GM5EhKOsu0z3t0SKtbFN6skQhpAUADM4qFShBXb9zoOuag5lcrR1x/WM+Ag==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "chalk": "^4.0.0", - "jest-get-type": "^27.0.6", - "jest-util": "^27.2.5", - "pretty-format": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-environment-jsdom": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.2.5.tgz", - "integrity": "sha512-QtRpOh/RQKuXniaWcoFE2ElwP6tQcyxHu0hlk32880g0KczdonCs5P1sk5+weu/OVzh5V4Bt1rXuQthI01mBLg==", - "dev": true, - "dependencies": { - "@jest/environment": "^27.2.5", - "@jest/fake-timers": "^27.2.5", - "@jest/types": "^27.2.5", - "@types/node": "*", - "jest-mock": "^27.2.5", - "jest-util": "^27.2.5", - "jsdom": "^16.6.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-environment-node": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.2.5.tgz", - "integrity": "sha512-0o1LT4grm7iwrS8fIoLtwJxb/hoa3GsH7pP10P02Jpj7Mi4BXy65u46m89vEM2WfD1uFJQ2+dfDiWZNA2e6bJg==", - "dev": true, - "dependencies": { - "@jest/environment": "^27.2.5", - "@jest/fake-timers": "^27.2.5", - "@jest/types": "^27.2.5", - "@types/node": "*", - "jest-mock": "^27.2.5", - "jest-util": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-get-type": { - "version": "27.0.6", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.0.6.tgz", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", - "dev": true, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-haste-map": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.2.5.tgz", - "integrity": "sha512-pzO+Gw2WLponaSi0ilpzYBE0kuVJstoXBX8YWyUebR8VaXuX4tzzn0Zp23c/WaETo7XYTGv2e8KdnpiskAFMhQ==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "@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.0.6", - "jest-serializer": "^27.0.6", - "jest-util": "^27.2.5", - "jest-worker": "^27.2.5", - "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-jasmine2": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.2.5.tgz", - "integrity": "sha512-hdxY9Cm/CjLqu2tXeAoQHPgA4vcqlweVXYOg1+S9FeFdznB9Rti+eEBKDDkmOy9iqr4Xfbq95OkC4NFbXXPCAQ==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^27.2.5", - "@jest/source-map": "^27.0.6", - "@jest/test-result": "^27.2.5", - "@jest/types": "^27.2.5", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.2.5", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.2.5", - "jest-matcher-utils": "^27.2.5", - "jest-message-util": "^27.2.5", - "jest-runtime": "^27.2.5", - "jest-snapshot": "^27.2.5", - "jest-util": "^27.2.5", - "pretty-format": "^27.2.5", - "throat": "^6.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-leak-detector": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.2.5.tgz", - "integrity": "sha512-HYsi3GUR72bYhOGB5C5saF9sPdxGzSjX7soSQS+BqDRysc7sPeBwPbhbuT8DnOpijnKjgwWQ8JqvbmReYnt3aQ==", - "dev": true, - "dependencies": { - "jest-get-type": "^27.0.6", - "pretty-format": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-matcher-utils": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.2.5.tgz", - "integrity": "sha512-qNR/kh6bz0Dyv3m68Ck2g1fLW5KlSOUNcFQh87VXHZwWc/gY6XwnKofx76Qytz3x5LDWT09/2+yXndTkaG4aWg==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^27.2.5", - "jest-get-type": "^27.0.6", - "pretty-format": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-message-util": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.2.5.tgz", - "integrity": "sha512-ggXSLoPfIYcbmZ8glgEJZ8b+e0Msw/iddRmgkoO7lDAr9SmI65IIfv7VnvTnV4FGnIIUIjzM+fHRHO5RBvyAbQ==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.2.5", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "micromatch": "^4.0.4", - "pretty-format": "^27.2.5", - "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/@babel/code-frame": { - "version": "7.15.8", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", - "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/jest-mock": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.2.5.tgz", - "integrity": "sha512-HiMB3LqE9RzmeMzZARi2Bz3NoymxyP0gCid4y42ca1djffNtYFKgI220aC1VP1mUZ8rbpqZbHZOJ15093bZV/Q==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "@types/node": "*" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "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": "27.0.6", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.0.6.tgz", - "integrity": "sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ==", - "dev": true, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-resolve": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.2.5.tgz", - "integrity": "sha512-q5irwS3oS73SKy3+FM/HL2T7WJftrk9BRzrXF92f7net5HMlS7lJMg/ZwxLB4YohKqjSsdksEw7n/jvMxV7EKg==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "chalk": "^4.0.0", - "escalade": "^3.1.1", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.2.5", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.2.5", - "jest-validate": "^27.2.5", - "resolve": "^1.20.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.2.5", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.2.5.tgz", - "integrity": "sha512-BSjefped31bcvvCh++/pN9ueqqN1n0+p8/58yScuWfklLm2tbPbS9d251vJhAy0ZI2pL/0IaGhOTJrs9Y4FJlg==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "jest-regex-util": "^27.0.6", - "jest-snapshot": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-runner": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.2.5.tgz", - "integrity": "sha512-n41vw9RLg5TKAnEeJK9d6pGOsBOpwE89XBniK+AD1k26oIIy3V7ogM1scbDjSheji8MUPC9pNgCrZ/FHLVDNgg==", - "dev": true, - "dependencies": { - "@jest/console": "^27.2.5", - "@jest/environment": "^27.2.5", - "@jest/test-result": "^27.2.5", - "@jest/transform": "^27.2.5", - "@jest/types": "^27.2.5", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-docblock": "^27.0.6", - "jest-environment-jsdom": "^27.2.5", - "jest-environment-node": "^27.2.5", - "jest-haste-map": "^27.2.5", - "jest-leak-detector": "^27.2.5", - "jest-message-util": "^27.2.5", - "jest-resolve": "^27.2.5", - "jest-runtime": "^27.2.5", - "jest-util": "^27.2.5", - "jest-worker": "^27.2.5", - "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-runtime": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.2.5.tgz", - "integrity": "sha512-N0WRZ3QszKyZ3Dm27HTBbBuestsSd3Ud5ooVho47XZJ8aSKO/X1Ag8M1dNx9XzfGVRNdB/xCA3lz8MJwIzPLLA==", - "dev": true, - "dependencies": { - "@jest/console": "^27.2.5", - "@jest/environment": "^27.2.5", - "@jest/fake-timers": "^27.2.5", - "@jest/globals": "^27.2.5", - "@jest/source-map": "^27.0.6", - "@jest/test-result": "^27.2.5", - "@jest/transform": "^27.2.5", - "@jest/types": "^27.2.5", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.2.5", - "jest-message-util": "^27.2.5", - "jest-mock": "^27.2.5", - "jest-regex-util": "^27.0.6", - "jest-resolve": "^27.2.5", - "jest-snapshot": "^27.2.5", - "jest-util": "^27.2.5", - "jest-validate": "^27.2.5", - "slash": "^3.0.0", - "strip-bom": "^4.0.0", - "yargs": "^16.2.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-serializer": { - "version": "27.0.6", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.0.6.tgz", - "integrity": "sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA==", - "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": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.2.5.tgz", - "integrity": "sha512-2/Jkn+VN6Abwz0llBltZaiJMnL8b1j5Bp/gRIxe9YR3FCEh9qp0TXVV0dcpTGZ8AcJV1SZGQkczewkI9LP5yGw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.7.2", - "@babel/generator": "^7.7.2", - "@babel/parser": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.2.5", - "@jest/types": "^27.2.5", - "@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.2.5", - "graceful-fs": "^4.2.4", - "jest-diff": "^27.2.5", - "jest-get-type": "^27.0.6", - "jest-haste-map": "^27.2.5", - "jest-matcher-utils": "^27.2.5", - "jest-message-util": "^27.2.5", - "jest-resolve": "^27.2.5", - "jest-util": "^27.2.5", - "natural-compare": "^1.4.0", - "pretty-format": "^27.2.5", - "semver": "^7.3.2" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-sonar-reporter": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/jest-sonar-reporter/-/jest-sonar-reporter-2.0.0.tgz", - "integrity": "sha512-ZervDCgEX5gdUbdtWsjdipLN3bKJwpxbvhkYNXTAYvAckCihobSLr9OT/IuyNIRT1EZMDDwR6DroWtrq+IL64w==", - "dev": true, - "dependencies": { - "xml": "^1.0.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/jest-util": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.2.5.tgz", - "integrity": "sha512-QRhDC6XxISntMzFRd/OQ6TGsjbzA5ONO0tlAj2ElHs155x1aEr0rkYJBEysG6H/gZVH3oGFzCdAB/GA8leh8NQ==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "@types/node": "*", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "is-ci": "^3.0.0", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-validate": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.2.5.tgz", - "integrity": "sha512-XgYtjS89nhVe+UfkbLgcm+GgXKWgL80t9nTcNeejyO3t0Sj/yHE8BtIJqjZu9NXQksYbGImoQRXmQ1gP+Guffw==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.0.6", - "leven": "^3.1.0", - "pretty-format": "^27.2.5" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-watcher": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.2.5.tgz", - "integrity": "sha512-umV4qGozg2Dn6DTTtqAh9puPw+DGLK9AQas7+mWjiK8t0fWMpxKg8ZXReZw7L4C88DqorsGUiDgwHNZ+jkVrkQ==", - "dev": true, - "dependencies": { - "@jest/test-result": "^27.2.5", - "@jest/types": "^27.2.5", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "jest-util": "^27.2.5", - "string-length": "^4.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-worker": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.5.tgz", - "integrity": "sha512-HTjEPZtcNKZ4LnhSp02NEH4vE+5OpJ0EsOWYvGQpHgUMLngydESAAMH5Wd/asPf29+XUDQZszxpLg1BkIIA2aw==", - "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/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-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.5.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz", - "integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==", - "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/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "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/jsonc-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", - "dev": true - }, - "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/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/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.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", - "dev": true - }, - "node_modules/load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "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.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", - "dev": true - }, - "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/lunr": { - "version": "2.3.9", - "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", - "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", - "dev": true - }, - "node_modules/magic-string": { - "version": "0.25.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", - "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", - "dev": true, - "dependencies": { - "sourcemap-codec": "^1.4.4" - } - }, - "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/make-dir/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/makeerror": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", - "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", - "dev": true, - "dependencies": { - "tmpl": "1.0.x" - } - }, - "node_modules/marked": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/marked/-/marked-3.0.7.tgz", - "integrity": "sha512-ctKqbnLuNbsHbI26cfMyOlKgXGfl1orOv1AvWWDX7AkgfMOwCWvmuYc+mVLeWhQ9W6hdWVBynOs96VkcscKo0Q==", - "dev": true, - "bin": { - "marked": "bin/marked" - }, - "engines": { - "node": ">= 12" - } - }, - "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/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/mime-db": { - "version": "1.50.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz", - "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.33", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz", - "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", - "dev": true, - "dependencies": { - "mime-db": "1.50.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/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/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/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/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-modules-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", - "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "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/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/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/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-inspect": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", - "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", - "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.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.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/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/onigasm": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/onigasm/-/onigasm-2.2.5.tgz", - "integrity": "sha512-F+th54mPc0l1lp1ZcFMyL/jTs2Tlq4SqIHKIXGZOR/VkHkF9A7Fr5rRr5+ZG/lWeRsyrClLYRq7s/yFQ/XhWCA==", - "dev": true, - "dependencies": { - "lru-cache": "^5.1.1" - } - }, - "node_modules/onigasm/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/onigasm/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/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "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-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/parent-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-2.0.0.tgz", - "integrity": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==", - "dev": true, - "dependencies": { - "callsites": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "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/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-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/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.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "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/pirates": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", - "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", - "dev": true, - "dependencies": { - "node-modules-regexp": "^1.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "dev": true, - "dependencies": { - "find-up": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-dir/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-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/pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", - "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=", - "dev": true, - "dependencies": { - "find-up": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-up/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "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/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/pretty-format": { - "version": "27.2.5", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.2.5.tgz", - "integrity": "sha512-+nYn2z9GgicO9JiqmY25Xtq8SYfZ/5VCpEU3pppHHNAhd1y+ZXxmNPd1evmNcAd6Hz4iBV2kf0UpGth5A/VJ7g==", - "dev": true, - "dependencies": { - "@jest/types": "^27.2.5", - "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/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "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/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/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/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/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/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/read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "dev": true, - "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", - "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", - "dev": true, - "dependencies": { - "find-up": "^2.0.0", - "read-pkg": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-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/read-pkg/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/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "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/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "dev": true, - "dependencies": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - }, - "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-global": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", - "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", - "dev": true, - "dependencies": { - "global-dirs": "^0.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "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/rollup": { - "version": "2.58.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.58.0.tgz", - "integrity": "sha512-NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/rollup-plugin-delete": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/rollup-plugin-delete/-/rollup-plugin-delete-2.0.0.tgz", - "integrity": "sha512-/VpLMtDy+8wwRlDANuYmDa9ss/knGsAgrDhM+tEwB1npHwNu4DYNmDfUL55csse/GHs9Q+SMT/rw9uiaZ3pnzA==", - "dev": true, - "dependencies": { - "del": "^5.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/rollup-plugin-dts": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/rollup-plugin-dts/-/rollup-plugin-dts-4.0.0.tgz", - "integrity": "sha512-tgUC8CxVgtlLDVloUEA9uACVaxjJHuYxlDSTp1LdCexA0bJx+RuMi45RjdLG9RTCgZlV5YBh3O7P2u6dS1KlnA==", - "dev": true, - "dependencies": { - "magic-string": "^0.25.7" - }, - "engines": { - "node": ">=v12.22.5" - }, - "funding": { - "url": "https://github.com/sponsors/Swatinem" - }, - "optionalDependencies": { - "@babel/code-frame": "^7.14.5" - }, - "peerDependencies": { - "rollup": "^2.56.3", - "typescript": "^4.4.2" - } - }, - "node_modules/rollup-plugin-dts/node_modules/@babel/code-frame": { - "version": "7.15.8", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", - "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", - "dev": true, - "optional": true, - "dependencies": { - "@babel/highlight": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/rollup-plugin-terser": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", - "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.10.4", - "jest-worker": "^26.2.1", - "serialize-javascript": "^4.0.0", - "terser": "^5.0.0" - }, - "peerDependencies": { - "rollup": "^2.0.0" - } - }, - "node_modules/rollup-plugin-terser/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/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/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==", - "dev": true - }, - "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/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/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/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/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/shiki": { - "version": "0.9.11", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.9.11.tgz", - "integrity": "sha512-tjruNTLFhU0hruCPoJP0y+B9LKOmcqUhTpxn7pcJB3fa+04gFChuEmxmrUfOJ7ZO6Jd+HwMnDHgY3lv3Tqonuw==", - "dev": true, - "dependencies": { - "jsonc-parser": "^3.0.0", - "onigasm": "^2.2.5", - "vscode-textmate": "5.2.0" - } - }, - "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.5", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz", - "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==", - "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/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "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-support": { - "version": "0.5.20", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz", - "integrity": "sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "dev": true - }, - "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.10", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz", - "integrity": "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==", - "dev": true - }, - "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/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/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.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-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-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "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-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/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/table": { - "version": "6.7.2", - "resolved": "https://registry.npmjs.org/table/-/table-6.7.2.tgz", - "integrity": "sha512-UFZK67uvyNivLeQbVtkiUs8Uuuxv24aSL4/Vil2PJVtMgU8Lx0CYkP12uCGa3kjyQzOSgV1+z9Wkb82fCGsO0g==", - "dev": true, - "dependencies": { - "ajv": "^8.0.1", - "lodash.clonedeep": "^4.5.0", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/table/node_modules/ajv": { - "version": "8.6.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", - "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "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": "5.9.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.9.0.tgz", - "integrity": "sha512-h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ==", - "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" - } - }, - "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.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/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/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-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-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/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/tsconfig-paths": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz", - "integrity": "sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.0", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/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/tsconfig-paths/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "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/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/typedoc": { - "version": "0.22.5", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.22.5.tgz", - "integrity": "sha512-KFrWGU1iKiTGw0RcyjLNYDmhd7uICU14HgBNPmFKY/sT4Pm/fraaLyWyisst9vGTUAKxqibqoDITR7+ZcAkhHg==", - "dev": true, - "dependencies": { - "glob": "^7.2.0", - "lunr": "^2.3.9", - "marked": "^3.0.4", - "minimatch": "^3.0.4", - "shiki": "^0.9.11" - }, - "bin": { - "typedoc": "bin/typedoc" - }, - "engines": { - "node": ">= 12.10.0" - }, - "peerDependencies": { - "typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x" - } - }, - "node_modules/typescript": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.4.3.tgz", - "integrity": "sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.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/unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, - "dependencies": { - "crypto-random-string": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "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/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/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "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/vscode-textmate": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-5.2.0.tgz", - "integrity": "sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ==", - "dev": true - }, - "node_modules/vscode-uri": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.2.tgz", - "integrity": "sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==", - "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.7", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", - "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", - "dev": true, - "dependencies": { - "makeerror": "1.0.x" - } - }, - "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/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/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/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/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.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.5.tgz", - "integrity": "sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==", - "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/xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/xml": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", - "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU=", - "dev": true - }, - "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/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" - } - } - }, "dependencies": { "@babel/code-frame": { "version": "7.12.11", diff --git a/package.json b/package.json index 9c7dd98..57ca8c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@netgrif/petriflow", - "version": "1.3.0", + "version": "1.3.1", "description": "Javascript / Typescript library of Petriflow objects", "main": "dist/petriflow.js", "module": "dist/petriflow.esm.js", diff --git a/src/lib/model/data-variable/validation.ts b/src/lib/model/data-variable/validation.ts index d1282ad..6761270 100644 --- a/src/lib/model/data-variable/validation.ts +++ b/src/lib/model/data-variable/validation.ts @@ -27,8 +27,8 @@ export class Validation { public clone(): Validation { const cloned = new Validation(); - cloned.expression = this._expression; - cloned.message = this._message; + cloned.expression = this._expression?.clone(); + cloned.message = this._message.clone(); return cloned; } } From 9005f84200149c32f6e36b950c992d7f35fd395b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ma=C5=BE=C3=A1ri?= Date: Fri, 10 Dec 2021 15:29:58 +0100 Subject: [PATCH 04/10] [PF-18] - Validation does not clone properties - revert package.json changes --- package-lock.json | 7416 ++++++++++++++++++++++++++++++++++++++++++++- package.json | 2 +- 2 files changed, 7415 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 910332f..09315c1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,8 +1,7420 @@ { "name": "@netgrif/petriflow", - "version": "1.3.1", - "lockfileVersion": 1, + "version": "1.2.0", + "lockfileVersion": 2, "requires": true, + "packages": { + "": { + "name": "@netgrif/petriflow", + "version": "1.1.0", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.3.1" + }, + "devDependencies": { + "@rollup/plugin-typescript": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^4.33.0", + "@typescript-eslint/parser": "^4.33.0", + "cspell": "^5.12.3", + "eslint": "^7.32.0", + "eslint-plugin-eslint-comments": "^3.2.0", + "eslint-plugin-import": "^2.24.2", + "jest": "^27.2.5", + "jest-sonar-reporter": "^2.0.0", + "rollup": "^2.58.0", + "rollup-plugin-delete": "^2.0.0", + "rollup-plugin-dts": "^4.0.0", + "rollup-plugin-terser": "^7.0.2", + "typedoc": "^0.22.5", + "typescript": "^4.4.3" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", + "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz", + "integrity": "sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.15.8", + "@babel/generator": "^7.15.8", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.8", + "@babel/helpers": "^7.15.4", + "@babel/parser": "^7.15.8", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6", + "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/core/node_modules/@babel/code-frame": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", + "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core/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/@babel/core/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/@babel/generator": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz", + "integrity": "sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.15.6", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/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/@babel/helper-compilation-targets": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz", + "integrity": "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/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/@babel/helper-function-name": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz", + "integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==", + "dev": true, + "dependencies": { + "@babel/helper-get-function-arity": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz", + "integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz", + "integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz", + "integrity": "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz", + "integrity": "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz", + "integrity": "sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-simple-access": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz", + "integrity": "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz", + "integrity": "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==", + "dev": true, + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz", + "integrity": "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz", + "integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz", + "integrity": "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", + "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/highlight/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/@babel/parser": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz", + "integrity": "sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.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-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-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-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.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", + "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", + "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/template": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz", + "integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template/node_modules/@babel/code-frame": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", + "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz", + "integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/code-frame": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", + "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/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/@babel/types": { + "version": "7.15.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz", + "integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.14.9", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "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/@cspell/cspell-bundled-dicts": { + "version": "5.12.3", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.12.3.tgz", + "integrity": "sha512-f3kyUHYxyGqNt2DTphpmP8hr38YTL48wr4Dq7pZDbqDjLkerq9T7ufX2CZ2OfydBEdIgduX2UXwiow7IfdwY/A==", + "dev": true, + "dependencies": { + "@cspell/dict-ada": "^1.1.2", + "@cspell/dict-aws": "^1.0.14", + "@cspell/dict-bash": "^1.0.15", + "@cspell/dict-companies": "^1.0.40", + "@cspell/dict-cpp": "^1.1.40", + "@cspell/dict-cryptocurrencies": "^1.0.10", + "@cspell/dict-csharp": "^1.0.11", + "@cspell/dict-css": "^1.0.12", + "@cspell/dict-django": "^1.0.26", + "@cspell/dict-dotnet": "^1.0.31", + "@cspell/dict-elixir": "^1.0.25", + "@cspell/dict-en_us": "^2.1.1", + "@cspell/dict-en-gb": "^1.1.33", + "@cspell/dict-filetypes": "^1.1.8", + "@cspell/dict-fonts": "^1.0.14", + "@cspell/dict-fullstack": "^1.0.38", + "@cspell/dict-golang": "^1.1.24", + "@cspell/dict-haskell": "^1.0.13", + "@cspell/dict-html": "^1.1.9", + "@cspell/dict-html-symbol-entities": "^1.0.23", + "@cspell/dict-java": "^1.0.23", + "@cspell/dict-latex": "^1.0.25", + "@cspell/dict-lorem-ipsum": "^1.0.22", + "@cspell/dict-lua": "^1.0.16", + "@cspell/dict-node": "^1.0.12", + "@cspell/dict-npm": "^1.0.16", + "@cspell/dict-php": "^1.0.24", + "@cspell/dict-powershell": "^1.0.18", + "@cspell/dict-public-licenses": "^1.0.3", + "@cspell/dict-python": "^2.0.3", + "@cspell/dict-ruby": "^1.0.14", + "@cspell/dict-rust": "^1.0.23", + "@cspell/dict-scala": "^1.0.21", + "@cspell/dict-software-terms": "^1.0.47", + "@cspell/dict-typescript": "^1.0.19" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/@cspell/cspell-types": { + "version": "5.12.3", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.12.3.tgz", + "integrity": "sha512-4l43apk3QGMkpszirKjrRGWmzZVuCyvoa0+kgWCl28dviLKsVonop8liBJaBzjmZbdpe27IKpMrNtj0fOus+fw==", + "dev": true, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/@cspell/dict-ada": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-1.1.2.tgz", + "integrity": "sha512-UDrcYcKIVyXDz5mInJabRNQpJoehjBFvja5W+GQyu9pGcx3BS3cAU8mWENstGR0Qc/iFTxB010qwF8F3cHA/aA==", + "dev": true + }, + "node_modules/@cspell/dict-aws": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-1.0.14.tgz", + "integrity": "sha512-K21CfB4ZpKYwwDQiPfic2zJA/uxkbsd4IQGejEvDAhE3z8wBs6g6BwwqdVO767M9NgZqc021yAVpr79N5pWe3w==", + "dev": true + }, + "node_modules/@cspell/dict-bash": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-1.0.15.tgz", + "integrity": "sha512-rY5Bq4RWTgJTioG8vqFbCmnalc/UEM+iBuAZBYvBfT3nU/6SN00Zjyvlh823ir2ODkUryT29CwRYwXcPnuM04w==", + "dev": true + }, + "node_modules/@cspell/dict-companies": { + "version": "1.0.40", + "resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-1.0.40.tgz", + "integrity": "sha512-Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw==", + "dev": true + }, + "node_modules/@cspell/dict-cpp": { + "version": "1.1.40", + "resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-1.1.40.tgz", + "integrity": "sha512-sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw==", + "dev": true + }, + "node_modules/@cspell/dict-cryptocurrencies": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-1.0.10.tgz", + "integrity": "sha512-47ABvDJOkaST/rXipNMfNvneHUzASvmL6K/CbOFpYKfsd0x23Jc9k1yaOC7JAm82XSC/8a7+3Yu+Fk2jVJNnsA==", + "dev": true + }, + "node_modules/@cspell/dict-csharp": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-1.0.11.tgz", + "integrity": "sha512-nub+ZCiTgmT87O+swI+FIAzNwaZPWUGckJU4GN402wBq420V+F4ZFqNV7dVALJrGaWH7LvADRtJxi6cZVHJKeA==", + "dev": true + }, + "node_modules/@cspell/dict-css": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-1.0.12.tgz", + "integrity": "sha512-K6yuxej7n454O7dwKG6lHacHrAOMZ0PhMEbmV6qH2JH0U4TtWXfBASYugHvXZCDDx1UObpiJP+3tQJiBqfGpHA==", + "dev": true + }, + "node_modules/@cspell/dict-django": { + "version": "1.0.26", + "resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-1.0.26.tgz", + "integrity": "sha512-mn9bd7Et1L2zuibc08GVHTiD2Go3/hdjyX5KLukXDklBkq06r+tb0OtKtf1zKodtFDTIaYekGADhNhA6AnKLkg==", + "dev": true + }, + "node_modules/@cspell/dict-dotnet": { + "version": "1.0.31", + "resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-1.0.31.tgz", + "integrity": "sha512-65yZTMcEdYkNx9sNs18OxcE0zfbZ5VsAZ0KgDvl/1YCkTomxr9vmtnrzFz4+vxfjV4eSuaL1SPRMZODaM7SSTg==", + "dev": true + }, + "node_modules/@cspell/dict-elixir": { + "version": "1.0.25", + "resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-1.0.25.tgz", + "integrity": "sha512-ZmawoBYjM5k+8fNudRMkK+PpHjhyAFAZt2rUu1EGj2rbCvE3Fn2lhRbDjbreN7nWRvcLRTW+xuPXtKP11X0ahQ==", + "dev": true + }, + "node_modules/@cspell/dict-en_us": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.1.1.tgz", + "integrity": "sha512-7kHOqve9DVFsb1e/wKME3CZhj48zOqvXNaA1Cd82ZkaHf3aL7pUBx3cxI7Xopj/dcK1ZkhUKh+2nBxPIWIibNg==", + "dev": true + }, + "node_modules/@cspell/dict-en-gb": { + "version": "1.1.33", + "resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz", + "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==", + "dev": true + }, + "node_modules/@cspell/dict-filetypes": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-1.1.8.tgz", + "integrity": "sha512-EllahNkhzvLWo0ptwu0l3oEeAJOQSUpZnDfnKRIh6mJVehuSovNHwA9vrdZ8jBUjuqcfaN2e7c32zN0D/qvWJQ==", + "dev": true + }, + "node_modules/@cspell/dict-fonts": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-1.0.14.tgz", + "integrity": "sha512-VhIX+FVYAnqQrOuoFEtya6+H72J82cIicz9QddgknsTqZQ3dvgp6lmVnsQXPM3EnzA8n1peTGpLDwHzT7ociLA==", + "dev": true + }, + "node_modules/@cspell/dict-fullstack": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-1.0.38.tgz", + "integrity": "sha512-4reajWiUxwWrSyZaWm9e15kaWzjYcZbzlB+CVcxE1+0NqdIoqlEESDhbnrAjKPSq+jspKtes7nQ1CdZEOj1gCA==", + "dev": true + }, + "node_modules/@cspell/dict-golang": { + "version": "1.1.24", + "resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-1.1.24.tgz", + "integrity": "sha512-qq3Cjnx2U1jpeWAGJL1GL0ylEhUMqyaR36Xij6Y6Aq4bViCRp+HRRqk0x5/IHHbOrti45h3yy7ii1itRFo+Xkg==", + "dev": true + }, + "node_modules/@cspell/dict-haskell": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-1.0.13.tgz", + "integrity": "sha512-kvl8T84cnYRPpND/P3D86P6WRSqebsbk0FnMfy27zo15L5MLAb3d3MOiT1kW3vEWfQgzUD7uddX/vUiuroQ8TA==", + "dev": true + }, + "node_modules/@cspell/dict-html": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-1.1.9.tgz", + "integrity": "sha512-vvnYia0tyIS5Fdoz+gEQm77MGZZE66kOJjuNpIYyRHCXFAhWdYz3SmkRm6YKJSWSvuO+WBJYTKDvkOxSh3Fx/w==", + "dev": true + }, + "node_modules/@cspell/dict-html-symbol-entities": { + "version": "1.0.23", + "resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-1.0.23.tgz", + "integrity": "sha512-PV0UBgcBFbBLf/m1wfkVMM8w96kvfHoiCGLWO6BR3Q9v70IXoE4ae0+T+f0CkxcEkacMqEQk/I7vuE9MzrjaNw==", + "dev": true + }, + "node_modules/@cspell/dict-java": { + "version": "1.0.23", + "resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-1.0.23.tgz", + "integrity": "sha512-LcOg9srYLDoNGd8n3kbfDBlZD+LOC9IVcnFCdua1b/luCHNVmlgBx7e677qPu7olpMYOD5TQIVW2OmM1+/6MFA==", + "dev": true + }, + "node_modules/@cspell/dict-latex": { + "version": "1.0.25", + "resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-1.0.25.tgz", + "integrity": "sha512-cEgg91Migqcp1SdVV7dUeMxbPDhxdNo6Fgq2eygAXQjIOFK520FFvh/qxyBvW90qdZbIRoU2AJpchyHfGuwZFA==", + "dev": true + }, + "node_modules/@cspell/dict-lorem-ipsum": { + "version": "1.0.22", + "resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-1.0.22.tgz", + "integrity": "sha512-yqzspR+2ADeAGUxLTfZ4pXvPl7FmkENMRcGDECmddkOiuEwBCWMZdMP5fng9B0Q6j91hQ8w9CLvJKBz10TqNYg==", + "dev": true + }, + "node_modules/@cspell/dict-lua": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-1.0.16.tgz", + "integrity": "sha512-YiHDt8kmHJ8nSBy0tHzaxiuitYp+oJ66ffCYuFWTNB3//Y0SI4OGHU3omLsQVeXIfCeVrO4DrVvRDoCls9B5zQ==", + "dev": true + }, + "node_modules/@cspell/dict-node": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-1.0.12.tgz", + "integrity": "sha512-RPNn/7CSkflAWk0sbSoOkg0ORrgBARUjOW3QjB11KwV1gSu8f5W/ij/S50uIXtlrfoBLqd4OyE04jyON+g/Xfg==", + "dev": true + }, + "node_modules/@cspell/dict-npm": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-1.0.16.tgz", + "integrity": "sha512-RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ==", + "dev": true + }, + "node_modules/@cspell/dict-php": { + "version": "1.0.24", + "resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-1.0.24.tgz", + "integrity": "sha512-vHCqETX1idT9tN1plkxUFnXMIHjbbrNOINZh1PYSvVlBrOdahSaL/g6dOJZC5QTaaidoU4WXUlgnNb/7JN4Plg==", + "dev": true + }, + "node_modules/@cspell/dict-powershell": { + "version": "1.0.18", + "resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-1.0.18.tgz", + "integrity": "sha512-LAfCJBy1hga8/KI/IpAg/GrnoP+b4SbNGdiXiXrejeZ7ZTVfj4qYsTCkZ2p7eYUu92FLyJT4jGex0fGZn/PtVw==", + "dev": true + }, + "node_modules/@cspell/dict-public-licenses": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-1.0.3.tgz", + "integrity": "sha512-sXjxOHJ9Q4rZvE1UbwpwJQ8EXO3fadKBjJIWmz0z+dZAbvTrmz5Ln1Ef9ruJvLPfwAps8m3TCV6Diz60RAQqHg==", + "dev": true + }, + "node_modules/@cspell/dict-python": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-2.0.3.tgz", + "integrity": "sha512-b15Dk/nDzeB5mbTSXx4RGKgmM9AW5BpaHyZoUZNUOdPfQbcd02hVblro/MXMw45SvQ3Wr/VFJx32skwuRkvFPg==", + "dev": true + }, + "node_modules/@cspell/dict-ruby": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-1.0.14.tgz", + "integrity": "sha512-XHBGN4U1y9rjRuqrCA+3yIm2TCdhwwHXpOEcWkNeyXm8K03yPnIrKFS+kap8GTTrLpfNDuFsrmkkQTa7ssXLRA==", + "dev": true + }, + "node_modules/@cspell/dict-rust": { + "version": "1.0.23", + "resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-1.0.23.tgz", + "integrity": "sha512-lR4boDzs79YD6+30mmiSGAMMdwh7HTBAPUFSB0obR3Kidibfc3GZ+MHWZXay5dxZ4nBKM06vyjtanF9VJ8q1Iw==", + "dev": true + }, + "node_modules/@cspell/dict-scala": { + "version": "1.0.21", + "resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-1.0.21.tgz", + "integrity": "sha512-5V/R7PRbbminTpPS3ywgdAalI9BHzcEjEj9ug4kWYvBIGwSnS7T6QCFCiu+e9LvEGUqQC+NHgLY4zs1NaBj2vA==", + "dev": true + }, + "node_modules/@cspell/dict-software-terms": { + "version": "1.0.47", + "resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-1.0.47.tgz", + "integrity": "sha512-q7cPUaZ3KYtebHpUr/kQXEOIbtJbii069ubXE1eWHWnAYrJZOGFc0W4Sau0ZjeY7cdOXWeYZ3hzcW8XNtPkQrw==", + "dev": true + }, + "node_modules/@cspell/dict-typescript": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-1.0.19.tgz", + "integrity": "sha512-qmJApzoVskDeJnLZzZMaafEDGbEg5Elt4c3Mpg49SWzIHm1N4VXCp5CcFfHsOinJ30dGrs3ARAJGJZIw56kK6A==", + "dev": true + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/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/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz", + "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==", + "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.2.5", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.2.5.tgz", + "integrity": "sha512-smtlRF9vNKorRMCUtJ+yllIoiY8oFmfFG7xlzsAE76nKEwXNhjPOJIsc7Dv+AUitVt76t+KjIpUP9m98Crn2LQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.2.5", + "jest-util": "^27.2.5", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.2.5.tgz", + "integrity": "sha512-VR7mQ+jykHN4WO3OvusRJMk4xCa2MFLipMS+43fpcRGaYrN1KwMATfVEXif7ccgFKYGy5D1TVXTNE4mGq/KMMA==", + "dev": true, + "dependencies": { + "@jest/console": "^27.2.5", + "@jest/reporters": "^27.2.5", + "@jest/test-result": "^27.2.5", + "@jest/transform": "^27.2.5", + "@jest/types": "^27.2.5", + "@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.2.5", + "jest-config": "^27.2.5", + "jest-haste-map": "^27.2.5", + "jest-message-util": "^27.2.5", + "jest-regex-util": "^27.0.6", + "jest-resolve": "^27.2.5", + "jest-resolve-dependencies": "^27.2.5", + "jest-runner": "^27.2.5", + "jest-runtime": "^27.2.5", + "jest-snapshot": "^27.2.5", + "jest-util": "^27.2.5", + "jest-validate": "^27.2.5", + "jest-watcher": "^27.2.5", + "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/environment": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.2.5.tgz", + "integrity": "sha512-XvUW3q6OUF+54SYFCgbbfCd/BKTwm5b2MGLoc2jINXQLKQDTCS2P2IrpPOtQ08WWZDGzbhAzVhOYta3J2arubg==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/node": "*", + "jest-mock": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.2.5.tgz", + "integrity": "sha512-ZGUb6jg7BgwY+nmO0TW10bc7z7Hl2G/UTAvmxEyZ/GgNFoa31tY9/cgXmqcxnnZ7o5Xs7RAOz3G1SKIj8IVDlg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.2.5", + "jest-mock": "^27.2.5", + "jest-util": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.2.5.tgz", + "integrity": "sha512-naRI537GM+enFVJQs6DcwGYPn/0vgJNb06zGVbzXfDfe/epDPV73hP1vqO37PqSKDeOXM2KInr6ymYbL1HTP7g==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.2.5", + "@jest/types": "^27.2.5", + "expect": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.2.5.tgz", + "integrity": "sha512-zYuR9fap3Q3mxQ454VWF8I6jYHErh368NwcKHWO2uy2fwByqBzRHkf9j2ekMDM7PaSTWcLBSZyd7NNxR1iHxzQ==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.2.5", + "@jest/test-result": "^27.2.5", + "@jest/transform": "^27.2.5", + "@jest/types": "^27.2.5", + "@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": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^27.2.5", + "jest-resolve": "^27.2.5", + "jest-util": "^27.2.5", + "jest-worker": "^27.2.5", + "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/source-map": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.0.6.tgz", + "integrity": "sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g==", + "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/test-result": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.2.5.tgz", + "integrity": "sha512-ub7j3BrddxZ0BdSnM5JCF6cRZJ/7j3wgdX0+Dtwhw2Po+HKsELCiXUTvh+mgS4/89mpnU1CPhZxe2mTvuLPJJg==", + "dev": true, + "dependencies": { + "@jest/console": "^27.2.5", + "@jest/types": "^27.2.5", + "@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-sequencer": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.2.5.tgz", + "integrity": "sha512-8j8fHZRfnjbbdMitMAGFKaBZ6YqvFRFJlMJzcy3v75edTOqc7RY65S9JpMY6wT260zAcL2sTQRga/P4PglCu3Q==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.2.5", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.2.5", + "jest-runtime": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.2.5.tgz", + "integrity": "sha512-29lRtAHHYGALbZOx343v0zKmdOg4Sb0rsA1uSv0818bvwRhs3TyElOmTVXlrw0v1ZTqXJCAH/cmoDXimBhQOJQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.2.5", + "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": "^27.2.5", + "jest-regex-util": "^27.0.6", + "jest-util": "^27.2.5", + "micromatch": "^4.0.4", + "pirates": "^4.0.1", + "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/types": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.2.5.tgz", + "integrity": "sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ==", + "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/@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/@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.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.0.1.tgz", + "integrity": "sha512-AU7kwFxreVd6OAXcAFlKSmZquiRUU0FvYm44k1Y1QbK7Co4m0aqfGMhjykIeQp/H6rcl+nFmj0zfdUcGVs9Dew==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.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.16", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz", + "integrity": "sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==", + "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.3", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz", + "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "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/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.1.4", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==", + "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/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", + "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/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/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", + "dev": true + }, + "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/node": { + "version": "16.10.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.10.3.tgz", + "integrity": "sha512-ho3Ruq+fFnBrZhUYI46n/bV2GjwzSkwuT4dTf0GkuNFmnb8nq4ny2z9JEVemFi6bdEJanHLlYfy9c6FN9B9McQ==", + "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/prettier": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.1.tgz", + "integrity": "sha512-Fo79ojj3vdEZOHg3wR9ksAMRz4P3S5fDB5e/YWZiFnyFQI1WY2Vftu9XoXVVtJfxB7Bpce/QTqWSSntkz2Znrw==", + "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/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/@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/@typescript-eslint/eslint-plugin": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", + "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", + "dev": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "4.33.0", + "@typescript-eslint/scope-manager": "4.33.0", + "debug": "^4.3.1", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.1.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^4.0.0", + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", + "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", + "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "debug": "^4.3.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", + "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", + "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "dev": true, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", + "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", + "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "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/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/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/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/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "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-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": "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/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/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/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-timsort": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz", + "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==", + "dev": true + }, + "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.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/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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/babel-jest": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.2.5.tgz", + "integrity": "sha512-GC9pWCcitBhSuF7H3zl0mftoKizlswaF0E3qi+rPL417wKkCB0d+Sjjb0OfXvxj7gWiBf497ldgRMii68Xz+2g==", + "dev": true, + "dependencies": { + "@jest/transform": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^27.2.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-plugin-istanbul": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", + "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "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": "^4.0.0", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.2.0.tgz", + "integrity": "sha512-TOux9khNKdi64mW+0OIhcmbAn75tTlzKhxmiNXevQaPbrBYK7YKjP1jl6NHTJ6XR5UgUrJbCnWlKVnJn29dfjw==", + "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-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.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.2.0.tgz", + "integrity": "sha512-z7MgQ3peBwN5L5aCqBKnF6iqdlvZvFUQynEhu0J+X9nHLU72jO3iY331lcYrg+AssJ8q7xsv5/3AICzVmJ/wvg==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^27.2.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/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/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/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/browserslist": { + "version": "4.17.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.3.tgz", + "integrity": "sha512-59IqHJV5VGdcJZ+GZ2hU5n4Kv3YiASzW6Xk5g9tf5a/MAzGeFwgGWU39fVzNIOVcgB3+Gp+kiQu0HEfTVU/3VQ==", + "dev": true, + "dependencies": { + "caniuse-lite": "^1.0.30001264", + "electron-to-chromium": "^1.3.857", + "escalade": "^3.1.1", + "node-releases": "^1.1.77", + "picocolors": "^0.2.1" + }, + "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/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-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/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/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/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/caniuse-lite": { + "version": "1.0.30001265", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001265.tgz", + "integrity": "sha512-YzBnspggWV5hep1m9Z6sZVLOt7vrju8xWooFAgN6BA5qvy98qPAPb7vNUzypFaoh2pb3vlfzbDO8tB57UPGbtw==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "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/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/ci-info": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz", + "integrity": "sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==", + "dev": true + }, + "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/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/clear-module": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/clear-module/-/clear-module-4.1.1.tgz", + "integrity": "sha512-ng0E7LeODcT3QkazOckzZqbca+JByQy/Q2Z6qO24YsTp+pLxCfohGz2gJYJqZS0CWTX3LEUiHOqe5KlYeUbEMw==", + "dev": true, + "dependencies": { + "parent-module": "^2.0.0", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/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/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/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/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/commander": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.2.0.tgz", + "integrity": "sha512-LLKxDvHeL91/8MIyTAD5BFMNtoIwztGPMiM/7Bl8rIPmHCZXRxmSWr91h57dpOpnQ6jIUqEWdXE/uBYMfiVZDA==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/comment-json": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.1.1.tgz", + "integrity": "sha512-v8gmtPvxhBlhdRBLwdHSjGy9BgA23t9H1FctdQKyUrErPjSrJcdDMqBq9B4Irtm7w3TNYLQJNH6ARKnpyag1sA==", + "dev": true, + "dependencies": { + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.2", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">= 6" + } + }, + "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/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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/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==", + "dev": true + }, + "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/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-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cspell": { + "version": "5.12.3", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.12.3.tgz", + "integrity": "sha512-lPyWZHfdQh+xjUZDAQC0gnpjglMu2AEfxBWlziTm3XuYuPGTvNJQSUrkMcH180tA3fkj8q2XFwfxHkXXAxm68w==", + "dev": true, + "dependencies": { + "chalk": "^4.1.2", + "commander": "^8.2.0", + "comment-json": "^4.1.1", + "cspell-gitignore": "^5.12.3", + "cspell-glob": "^5.12.3", + "cspell-lib": "^5.12.3", + "fast-json-stable-stringify": "^2.1.0", + "file-entry-cache": "^6.0.1", + "fs-extra": "^10.0.0", + "get-stdin": "^8.0.0", + "glob": "^7.2.0", + "imurmurhash": "^0.1.4", + "strip-ansi": "^6.0.1", + "vscode-uri": "^3.0.2" + }, + "bin": { + "cspell": "bin.js" + }, + "engines": { + "node": ">=12.13.0" + }, + "funding": { + "url": "https://github.com/streetsidesoftware/cspell?sponsor=1" + } + }, + "node_modules/cspell-gitignore": { + "version": "5.12.3", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.12.3.tgz", + "integrity": "sha512-oPqY6oCVNwFRqcE0FiWNPsyv0EjWiK2N66en6HDZR+pXLZ1CBh8PHcUbRAGt+XHckm27zxbl/sDCKd2m+5yyIA==", + "dev": true, + "dependencies": { + "cspell-glob": "^5.12.3", + "find-up": "^5.0.0" + }, + "bin": { + "cspell-gitignore": "bin.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/cspell-glob": { + "version": "5.12.3", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.12.3.tgz", + "integrity": "sha512-2ZgzHr01Blch1I1C3jkzb3IIEE7peoFDDAM+MONQdf8JugWrexZsQ3A6nNUuUgtHZYbJC01ZKzB1JunmE84caA==", + "dev": true, + "dependencies": { + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/cspell-io": { + "version": "5.12.3", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.12.3.tgz", + "integrity": "sha512-YqIsDPWj4OKyRYDZyZ9InvYBSGJAYbq/OMzCtJ1vCpgzGdm+7pWQkonGZMThPDW33EsSE8GPaT/XTGZbqZuDoA==", + "dev": true, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/cspell-lib": { + "version": "5.12.3", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.12.3.tgz", + "integrity": "sha512-wiS3X3inzkwr2d6UojVLjzGFxwhnE+HoQYg7cDyC2qqK1Q++36c5bHJGE8564lsVedeAMVbHh81bP7hibg/yUw==", + "dev": true, + "dependencies": { + "@cspell/cspell-bundled-dicts": "^5.12.3", + "@cspell/cspell-types": "^5.12.3", + "clear-module": "^4.1.1", + "comment-json": "^4.1.1", + "configstore": "^5.0.1", + "cosmiconfig": "^7.0.1", + "cspell-glob": "^5.12.3", + "cspell-io": "^5.12.3", + "cspell-trie-lib": "^5.12.3", + "find-up": "^5.0.0", + "fs-extra": "^10.0.0", + "gensequence": "^3.1.1", + "import-fresh": "^3.3.0", + "resolve-from": "^5.0.0", + "resolve-global": "^1.0.0", + "vscode-uri": "^3.0.2" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/cspell-trie-lib": { + "version": "5.12.3", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.12.3.tgz", + "integrity": "sha512-kck/fUcsBeskuHPFSW4tn4yseDWCDTSaXwxTB+G129anzk0w7mz4LliBBfoD8AHo+D102N7nWmcKXxwPUxAXUQ==", + "dev": true, + "dependencies": { + "fs-extra": "^10.0.0", + "gensequence": "^3.1.1" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "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/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.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "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/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/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/del": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz", + "integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==", + "dev": true, + "dependencies": { + "globby": "^10.0.1", + "graceful-fs": "^4.2.2", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.1", + "p-map": "^3.0.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/del/node_modules/globby": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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/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/diff-sequences": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.0.6.tgz", + "integrity": "sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "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/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/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.3.864", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.864.tgz", + "integrity": "sha512-v4rbad8GO6/yVI92WOeU9Wgxc4NA0n4f6P1FvZTY+jyY7JHEhw3bduYu60v3Q1h81Cg6eo4ApZrFPuycwd5hGw==", + "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/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "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/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-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/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-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/escodegen/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/escodegen/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/escodegen/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/escodegen/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/eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + } + }, + "node_modules/eslint-import-resolver-node/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/eslint-module-utils": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz", + "integrity": "sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "pkg-dir": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/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/eslint-plugin-eslint-comments": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz", + "integrity": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5", + "ignore": "^5.0.5" + }, + "engines": { + "node": ">=6.5.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=4.19.1" + } + }, + "node_modules/eslint-plugin-eslint-comments/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/eslint-plugin-import": { + "version": "2.24.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz", + "integrity": "sha512-hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.3", + "array.prototype.flat": "^1.2.4", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.6.2", + "find-up": "^2.0.0", + "has": "^1.0.3", + "is-core-module": "^2.6.0", + "minimatch": "^3.0.4", + "object.values": "^1.1.4", + "pkg-up": "^2.0.0", + "read-pkg-up": "^3.0.0", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.11.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0" + } + }, + "node_modules/eslint-plugin-import/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/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/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/eslint-plugin-import/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/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/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint/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/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "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/esrecurse/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "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/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/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/expect": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.2.5.tgz", + "integrity": "sha512-ZrO0w7bo8BgGoP/bLz+HDCI+0Hfei9jUSZs5yI/Wyn9VkG9w8oJ7rHRgYj+MA7yqqFa0IwHA3flJzZtYugShJA==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "ansi-styles": "^5.0.0", + "jest-get-type": "^27.0.6", + "jest-matcher-utils": "^27.2.5", + "jest-message-util": "^27.2.5", + "jest-regex-util": "^27.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/expect/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/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.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "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" + } + }, + "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/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/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.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/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.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", + "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", + "dev": true + }, + "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/fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "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/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "node_modules/gensequence": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/gensequence/-/gensequence-3.1.1.tgz", + "integrity": "sha512-ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "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-stdin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/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/global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", + "dev": true, + "dependencies": { + "ini": "^1.3.4" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/globals": { + "version": "13.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz", + "integrity": "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "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/graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "dev": true + }, + "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": "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/has-own-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz", + "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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/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-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/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-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/ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "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/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/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.0.3", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz", + "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "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/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==", + "dev": true + }, + "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/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/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-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-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": "3.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.0.tgz", + "integrity": "sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==", + "dev": true, + "dependencies": { + "ci-info": "^3.1.1" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.7.0.tgz", + "integrity": "sha512-ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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-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-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-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "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-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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-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.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz", + "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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/istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/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/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-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-reports": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.3.tgz", + "integrity": "sha512-0i77ZFLsb9U3DHi22WzmIngVzfoyxxbQcZRqlF3KoKmCJGq9nhFHoGi8FqBztN2rE8w6hURnZghetn0xpkVb6A==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.2.5.tgz", + "integrity": "sha512-vDMzXcpQN4Ycaqu+vO7LX8pZwNNoKMhc+gSp6q1D8S6ftRk8gNW8cni3YFxknP95jxzQo23Lul0BI2FrWgnwYQ==", + "dev": true, + "dependencies": { + "@jest/core": "^27.2.5", + "import-local": "^3.0.2", + "jest-cli": "^27.2.5" + }, + "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.2.5", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.2.5.tgz", + "integrity": "sha512-jfnNJzF89csUKRPKJ4MwZ1SH27wTmX2xiAIHUHrsb/OYd9Jbo4/SXxJ17/nnx6RIifpthk3Y+LEeOk+/dDeGdw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "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-circus": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.2.5.tgz", + "integrity": "sha512-eyL9IcrAxm3Saq3rmajFCwpaxaRMGJ1KJs+7hlTDinXpJmeR3P02bheM3CYohE7UfwOBmrFMJHjgo/WPcLTM+Q==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.2.5", + "@jest/test-result": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.2.5", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.2.5", + "jest-matcher-utils": "^27.2.5", + "jest-message-util": "^27.2.5", + "jest-runtime": "^27.2.5", + "jest-snapshot": "^27.2.5", + "jest-util": "^27.2.5", + "pretty-format": "^27.2.5", + "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-cli": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.2.5.tgz", + "integrity": "sha512-XzfcOXi5WQrXqFYsDxq5RDOKY4FNIgBgvgf3ZBz4e/j5/aWep5KnsAYH5OFPMdX/TP/LFsYQMRH7kzJUMh6JKg==", + "dev": true, + "dependencies": { + "@jest/core": "^27.2.5", + "@jest/test-result": "^27.2.5", + "@jest/types": "^27.2.5", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "jest-config": "^27.2.5", + "jest-util": "^27.2.5", + "jest-validate": "^27.2.5", + "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-config": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.2.5.tgz", + "integrity": "sha512-QdENtn9b5rIIYGlbDNEcgY9LDL5kcokJnXrp7x8AGjHob/XFqw1Z6p+gjfna2sUulQsQ3ce2Fvntnv+7fKYDhQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^27.2.5", + "@jest/types": "^27.2.5", + "babel-jest": "^27.2.5", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "is-ci": "^3.0.0", + "jest-circus": "^27.2.5", + "jest-environment-jsdom": "^27.2.5", + "jest-environment-node": "^27.2.5", + "jest-get-type": "^27.0.6", + "jest-jasmine2": "^27.2.5", + "jest-regex-util": "^27.0.6", + "jest-resolve": "^27.2.5", + "jest-runner": "^27.2.5", + "jest-util": "^27.2.5", + "jest-validate": "^27.2.5", + "micromatch": "^4.0.4", + "pretty-format": "^27.2.5" + }, + "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-diff": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.2.5.tgz", + "integrity": "sha512-7gfwwyYkeslOOVQY4tVq5TaQa92mWfC9COsVYMNVYyJTOYAqbIkoD3twi5A+h+tAPtAelRxkqY6/xu+jwTr0dA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.0.6", + "jest-get-type": "^27.0.6", + "pretty-format": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.0.6.tgz", + "integrity": "sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA==", + "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.2.5", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.2.5.tgz", + "integrity": "sha512-HUPWIbJT0bXarRwKu/m7lYzqxR4GM5EhKOsu0z3t0SKtbFN6skQhpAUADM4qFShBXb9zoOuag5lcrR1x/WM+Ag==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "chalk": "^4.0.0", + "jest-get-type": "^27.0.6", + "jest-util": "^27.2.5", + "pretty-format": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.2.5.tgz", + "integrity": "sha512-QtRpOh/RQKuXniaWcoFE2ElwP6tQcyxHu0hlk32880g0KczdonCs5P1sk5+weu/OVzh5V4Bt1rXuQthI01mBLg==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.2.5", + "@jest/fake-timers": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/node": "*", + "jest-mock": "^27.2.5", + "jest-util": "^27.2.5", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.2.5.tgz", + "integrity": "sha512-0o1LT4grm7iwrS8fIoLtwJxb/hoa3GsH7pP10P02Jpj7Mi4BXy65u46m89vEM2WfD1uFJQ2+dfDiWZNA2e6bJg==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.2.5", + "@jest/fake-timers": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/node": "*", + "jest-mock": "^27.2.5", + "jest-util": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.0.6.tgz", + "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.2.5.tgz", + "integrity": "sha512-pzO+Gw2WLponaSi0ilpzYBE0kuVJstoXBX8YWyUebR8VaXuX4tzzn0Zp23c/WaETo7XYTGv2e8KdnpiskAFMhQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "@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.0.6", + "jest-serializer": "^27.0.6", + "jest-util": "^27.2.5", + "jest-worker": "^27.2.5", + "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-jasmine2": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.2.5.tgz", + "integrity": "sha512-hdxY9Cm/CjLqu2tXeAoQHPgA4vcqlweVXYOg1+S9FeFdznB9Rti+eEBKDDkmOy9iqr4Xfbq95OkC4NFbXXPCAQ==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^27.2.5", + "@jest/source-map": "^27.0.6", + "@jest/test-result": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.2.5", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.2.5", + "jest-matcher-utils": "^27.2.5", + "jest-message-util": "^27.2.5", + "jest-runtime": "^27.2.5", + "jest-snapshot": "^27.2.5", + "jest-util": "^27.2.5", + "pretty-format": "^27.2.5", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.2.5.tgz", + "integrity": "sha512-HYsi3GUR72bYhOGB5C5saF9sPdxGzSjX7soSQS+BqDRysc7sPeBwPbhbuT8DnOpijnKjgwWQ8JqvbmReYnt3aQ==", + "dev": true, + "dependencies": { + "jest-get-type": "^27.0.6", + "pretty-format": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.2.5.tgz", + "integrity": "sha512-qNR/kh6bz0Dyv3m68Ck2g1fLW5KlSOUNcFQh87VXHZwWc/gY6XwnKofx76Qytz3x5LDWT09/2+yXndTkaG4aWg==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.2.5", + "jest-get-type": "^27.0.6", + "pretty-format": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.2.5.tgz", + "integrity": "sha512-ggXSLoPfIYcbmZ8glgEJZ8b+e0Msw/iddRmgkoO7lDAr9SmI65IIfv7VnvTnV4FGnIIUIjzM+fHRHO5RBvyAbQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.2.5", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "pretty-format": "^27.2.5", + "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/@babel/code-frame": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", + "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/jest-mock": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.2.5.tgz", + "integrity": "sha512-HiMB3LqE9RzmeMzZARi2Bz3NoymxyP0gCid4y42ca1djffNtYFKgI220aC1VP1mUZ8rbpqZbHZOJ15093bZV/Q==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "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": "27.0.6", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.0.6.tgz", + "integrity": "sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.2.5.tgz", + "integrity": "sha512-q5irwS3oS73SKy3+FM/HL2T7WJftrk9BRzrXF92f7net5HMlS7lJMg/ZwxLB4YohKqjSsdksEw7n/jvMxV7EKg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "chalk": "^4.0.0", + "escalade": "^3.1.1", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.2.5", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.2.5", + "jest-validate": "^27.2.5", + "resolve": "^1.20.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.2.5", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.2.5.tgz", + "integrity": "sha512-BSjefped31bcvvCh++/pN9ueqqN1n0+p8/58yScuWfklLm2tbPbS9d251vJhAy0ZI2pL/0IaGhOTJrs9Y4FJlg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "jest-regex-util": "^27.0.6", + "jest-snapshot": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.2.5.tgz", + "integrity": "sha512-n41vw9RLg5TKAnEeJK9d6pGOsBOpwE89XBniK+AD1k26oIIy3V7ogM1scbDjSheji8MUPC9pNgCrZ/FHLVDNgg==", + "dev": true, + "dependencies": { + "@jest/console": "^27.2.5", + "@jest/environment": "^27.2.5", + "@jest/test-result": "^27.2.5", + "@jest/transform": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-docblock": "^27.0.6", + "jest-environment-jsdom": "^27.2.5", + "jest-environment-node": "^27.2.5", + "jest-haste-map": "^27.2.5", + "jest-leak-detector": "^27.2.5", + "jest-message-util": "^27.2.5", + "jest-resolve": "^27.2.5", + "jest-runtime": "^27.2.5", + "jest-util": "^27.2.5", + "jest-worker": "^27.2.5", + "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-runtime": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.2.5.tgz", + "integrity": "sha512-N0WRZ3QszKyZ3Dm27HTBbBuestsSd3Ud5ooVho47XZJ8aSKO/X1Ag8M1dNx9XzfGVRNdB/xCA3lz8MJwIzPLLA==", + "dev": true, + "dependencies": { + "@jest/console": "^27.2.5", + "@jest/environment": "^27.2.5", + "@jest/fake-timers": "^27.2.5", + "@jest/globals": "^27.2.5", + "@jest/source-map": "^27.0.6", + "@jest/test-result": "^27.2.5", + "@jest/transform": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.2.5", + "jest-message-util": "^27.2.5", + "jest-mock": "^27.2.5", + "jest-regex-util": "^27.0.6", + "jest-resolve": "^27.2.5", + "jest-snapshot": "^27.2.5", + "jest-util": "^27.2.5", + "jest-validate": "^27.2.5", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^16.2.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-serializer": { + "version": "27.0.6", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.0.6.tgz", + "integrity": "sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA==", + "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": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.2.5.tgz", + "integrity": "sha512-2/Jkn+VN6Abwz0llBltZaiJMnL8b1j5Bp/gRIxe9YR3FCEh9qp0TXVV0dcpTGZ8AcJV1SZGQkczewkI9LP5yGw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/parser": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.2.5", + "@jest/types": "^27.2.5", + "@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.2.5", + "graceful-fs": "^4.2.4", + "jest-diff": "^27.2.5", + "jest-get-type": "^27.0.6", + "jest-haste-map": "^27.2.5", + "jest-matcher-utils": "^27.2.5", + "jest-message-util": "^27.2.5", + "jest-resolve": "^27.2.5", + "jest-util": "^27.2.5", + "natural-compare": "^1.4.0", + "pretty-format": "^27.2.5", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-sonar-reporter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jest-sonar-reporter/-/jest-sonar-reporter-2.0.0.tgz", + "integrity": "sha512-ZervDCgEX5gdUbdtWsjdipLN3bKJwpxbvhkYNXTAYvAckCihobSLr9OT/IuyNIRT1EZMDDwR6DroWtrq+IL64w==", + "dev": true, + "dependencies": { + "xml": "^1.0.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/jest-util": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.2.5.tgz", + "integrity": "sha512-QRhDC6XxISntMzFRd/OQ6TGsjbzA5ONO0tlAj2ElHs155x1aEr0rkYJBEysG6H/gZVH3oGFzCdAB/GA8leh8NQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^3.0.0", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.2.5.tgz", + "integrity": "sha512-XgYtjS89nhVe+UfkbLgcm+GgXKWgL80t9nTcNeejyO3t0Sj/yHE8BtIJqjZu9NXQksYbGImoQRXmQ1gP+Guffw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.0.6", + "leven": "^3.1.0", + "pretty-format": "^27.2.5" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.2.5.tgz", + "integrity": "sha512-umV4qGozg2Dn6DTTtqAh9puPw+DGLK9AQas7+mWjiK8t0fWMpxKg8ZXReZw7L4C88DqorsGUiDgwHNZ+jkVrkQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.2.5", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-worker": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.5.tgz", + "integrity": "sha512-HTjEPZtcNKZ4LnhSp02NEH4vE+5OpJ0EsOWYvGQpHgUMLngydESAAMH5Wd/asPf29+XUDQZszxpLg1BkIIA2aw==", + "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/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-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.5.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz", + "integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==", + "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/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "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/jsonc-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", + "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", + "dev": true + }, + "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/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/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.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "dev": true + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "dev": true + }, + "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/lunr": { + "version": "2.3.9", + "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", + "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", + "dev": true + }, + "node_modules/magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "dev": true, + "dependencies": { + "sourcemap-codec": "^1.4.4" + } + }, + "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/make-dir/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/makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "dev": true, + "dependencies": { + "tmpl": "1.0.x" + } + }, + "node_modules/marked": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/marked/-/marked-3.0.7.tgz", + "integrity": "sha512-ctKqbnLuNbsHbI26cfMyOlKgXGfl1orOv1AvWWDX7AkgfMOwCWvmuYc+mVLeWhQ9W6hdWVBynOs96VkcscKo0Q==", + "dev": true, + "bin": { + "marked": "bin/marked" + }, + "engines": { + "node": ">= 12" + } + }, + "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/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/mime-db": { + "version": "1.50.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz", + "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.33", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz", + "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", + "dev": true, + "dependencies": { + "mime-db": "1.50.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/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/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/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/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-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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/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/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/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-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "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.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.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/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/onigasm": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/onigasm/-/onigasm-2.2.5.tgz", + "integrity": "sha512-F+th54mPc0l1lp1ZcFMyL/jTs2Tlq4SqIHKIXGZOR/VkHkF9A7Fr5rRr5+ZG/lWeRsyrClLYRq7s/yFQ/XhWCA==", + "dev": true, + "dependencies": { + "lru-cache": "^5.1.1" + } + }, + "node_modules/onigasm/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/onigasm/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/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "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-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/parent-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-2.0.0.tgz", + "integrity": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==", + "dev": true, + "dependencies": { + "callsites": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "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/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-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/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.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "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/pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "dev": true, + "dependencies": { + "node-modules-regexp": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dev": true, + "dependencies": { + "find-up": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-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/pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", + "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=", + "dev": true, + "dependencies": { + "find-up": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-up/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-up/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-format": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.2.5.tgz", + "integrity": "sha512-+nYn2z9GgicO9JiqmY25Xtq8SYfZ/5VCpEU3pppHHNAhd1y+ZXxmNPd1evmNcAd6Hz4iBV2kf0UpGth5A/VJ7g==", + "dev": true, + "dependencies": { + "@jest/types": "^27.2.5", + "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/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "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/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/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/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/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/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/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", + "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "dev": true, + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-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/read-pkg/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/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "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/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "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-global": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", + "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", + "dev": true, + "dependencies": { + "global-dirs": "^0.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "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/rollup": { + "version": "2.58.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.58.0.tgz", + "integrity": "sha512-NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-delete": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-delete/-/rollup-plugin-delete-2.0.0.tgz", + "integrity": "sha512-/VpLMtDy+8wwRlDANuYmDa9ss/knGsAgrDhM+tEwB1npHwNu4DYNmDfUL55csse/GHs9Q+SMT/rw9uiaZ3pnzA==", + "dev": true, + "dependencies": { + "del": "^5.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/rollup-plugin-dts": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-dts/-/rollup-plugin-dts-4.0.0.tgz", + "integrity": "sha512-tgUC8CxVgtlLDVloUEA9uACVaxjJHuYxlDSTp1LdCexA0bJx+RuMi45RjdLG9RTCgZlV5YBh3O7P2u6dS1KlnA==", + "dev": true, + "dependencies": { + "magic-string": "^0.25.7" + }, + "engines": { + "node": ">=v12.22.5" + }, + "funding": { + "url": "https://github.com/sponsors/Swatinem" + }, + "optionalDependencies": { + "@babel/code-frame": "^7.14.5" + }, + "peerDependencies": { + "rollup": "^2.56.3", + "typescript": "^4.4.2" + } + }, + "node_modules/rollup-plugin-dts/node_modules/@babel/code-frame": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", + "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", + "dev": true, + "optional": true, + "dependencies": { + "@babel/highlight": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/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/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/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==", + "dev": true + }, + "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/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/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/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/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/shiki": { + "version": "0.9.11", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.9.11.tgz", + "integrity": "sha512-tjruNTLFhU0hruCPoJP0y+B9LKOmcqUhTpxn7pcJB3fa+04gFChuEmxmrUfOJ7ZO6Jd+HwMnDHgY3lv3Tqonuw==", + "dev": true, + "dependencies": { + "jsonc-parser": "^3.0.0", + "onigasm": "^2.2.5", + "vscode-textmate": "5.2.0" + } + }, + "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.5", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz", + "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==", + "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/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "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-support": { + "version": "0.5.20", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz", + "integrity": "sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "dev": true + }, + "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.10", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz", + "integrity": "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==", + "dev": true + }, + "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/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/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.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-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-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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-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/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/table": { + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/table/-/table-6.7.2.tgz", + "integrity": "sha512-UFZK67uvyNivLeQbVtkiUs8Uuuxv24aSL4/Vil2PJVtMgU8Lx0CYkP12uCGa3kjyQzOSgV1+z9Wkb82fCGsO0g==", + "dev": true, + "dependencies": { + "ajv": "^8.0.1", + "lodash.clonedeep": "^4.5.0", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.6.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz", + "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "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": "5.9.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.9.0.tgz", + "integrity": "sha512-h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ==", + "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" + } + }, + "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.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/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/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-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-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/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/tsconfig-paths": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz", + "integrity": "sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/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/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "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/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/typedoc": { + "version": "0.22.5", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.22.5.tgz", + "integrity": "sha512-KFrWGU1iKiTGw0RcyjLNYDmhd7uICU14HgBNPmFKY/sT4Pm/fraaLyWyisst9vGTUAKxqibqoDITR7+ZcAkhHg==", + "dev": true, + "dependencies": { + "glob": "^7.2.0", + "lunr": "^2.3.9", + "marked": "^3.0.4", + "minimatch": "^3.0.4", + "shiki": "^0.9.11" + }, + "bin": { + "typedoc": "bin/typedoc" + }, + "engines": { + "node": ">= 12.10.0" + }, + "peerDependencies": { + "typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x" + } + }, + "node_modules/typescript": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.4.3.tgz", + "integrity": "sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.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/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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/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/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "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/vscode-textmate": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-5.2.0.tgz", + "integrity": "sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ==", + "dev": true + }, + "node_modules/vscode-uri": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.2.tgz", + "integrity": "sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==", + "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.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "dev": true, + "dependencies": { + "makeerror": "1.0.x" + } + }, + "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/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/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/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/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.5", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.5.tgz", + "integrity": "sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==", + "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/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/xml": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU=", + "dev": true + }, + "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/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" + } + } + }, "dependencies": { "@babel/code-frame": { "version": "7.12.11", diff --git a/package.json b/package.json index 57ca8c1..9c7dd98 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@netgrif/petriflow", - "version": "1.3.1", + "version": "1.3.0", "description": "Javascript / Typescript library of Petriflow objects", "main": "dist/petriflow.js", "module": "dist/petriflow.esm.js", From 6e23e098ac271986c5af04aaa67f0b57f3a79fed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ma=C5=BE=C3=A1ri?= Date: Fri, 10 Dec 2021 16:28:18 +0100 Subject: [PATCH 05/10] [PF-17] - Layout imports rows cols with default value 0 - fix condition for 0 value --- src/lib/import/import.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/import/import.service.ts b/src/lib/import/import.service.ts index 8a4f5e9..d8e11aa 100644 --- a/src/lib/import/import.service.ts +++ b/src/lib/import/import.service.ts @@ -401,7 +401,7 @@ export class ImportService { trans.layout.cols = cols; } const rows = this.importUtils.parseNumberValue(xmlLayout.item(0), 'rows'); - if (rows && rows >= 0) { + if (rows && rows > 0 || rows === 0) { trans.layout.rows = rows; } } From 7afe099474b2ed8bdd3cd15f92aa38d3ad91b7e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ma=C5=BE=C3=A1ri?= Date: Fri, 10 Dec 2021 16:41:30 +0100 Subject: [PATCH 06/10] [PF-17] - Layout imports rows cols with default value 0 - fix condition for 0 value --- src/lib/import/import-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/import/import-utils.ts b/src/lib/import/import-utils.ts index b39f582..bc6ca4e 100644 --- a/src/lib/import/import-utils.ts +++ b/src/lib/import/import-utils.ts @@ -307,7 +307,7 @@ export class ImportUtils { dataGroup.cols = cols; } const rows = this.parseNumberValue(xmlDataGroup, 'rows'); - if (rows && rows >= 0) { + if (rows && rows > 0 || rows === 0) { dataGroup.rows = rows; } } From 566a218f2cf09c2436e56dd0db5705fc977c7639 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ma=C5=BE=C3=A1ri?= Date: Sat, 11 Dec 2021 16:35:20 +0100 Subject: [PATCH 07/10] [PF-19] - Export tag should escape XML invalid characters - refactor escaping regex chain into function - fix escaping of tag values and attributes --- package.json | 2 +- src/lib/export/export-utils.ts | 24 ++++++++++++++---------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 9c7dd98..57ca8c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@netgrif/petriflow", - "version": "1.3.0", + "version": "1.3.1", "description": "Javascript / Typescript library of Petriflow objects", "main": "dist/petriflow.js", "module": "dist/petriflow.esm.js", diff --git a/src/lib/export/export-utils.ts b/src/lib/export/export-utils.ts index cf248d8..519996f 100644 --- a/src/lib/export/export-utils.ts +++ b/src/lib/export/export-utils.ts @@ -21,19 +21,19 @@ export class ExportUtils { const tag = this.xmlConstructor.createElement(name); if (attributes) { attributes.forEach(item => { - tag.setAttribute(item.key, item.value); + tag.setAttribute(item.key, this.escape(item.value)); }); } if (value instanceof I18nString) { if (typeof value.name === 'string' && value.name !== '') { - tag.setAttribute('name', value.name); + tag.setAttribute('name', this.escape(value.name)); } if (value instanceof I18nWithDynamic && typeof value.dynamic === 'boolean' && value.dynamic) { - tag.setAttribute('dynamic', value.dynamic.toString()); + tag.setAttribute('dynamic', this.escape(value.dynamic.toString())); } - tag.innerHTML = value.value; + tag.textContent = this.escape(value.value); } else { - tag.innerHTML = value; + tag.textContent = this.escape(value); } doc.appendChild(tag); } else if (force) { @@ -42,6 +42,14 @@ export class ExportUtils { } } + public escape(value: string): string { + return value.replace(/&/g, '&') + .replace(/<(?!!--)/g, '<') + .split('').reverse().join('') + .replace(/>(?!(--))/g, ';tg&') + .split('').reverse().join(''); + } + public exportExpression(doc: Element, name: string, value: Expression | Array | undefined) { if (value !== undefined) { if (!Array.isArray(value)) { @@ -107,11 +115,7 @@ export class ExportUtils { const splitComment = splitCdata[i].split(this.COMMENT_REGRET); for (let j = 0; j < splitComment.length; j++) { if (splitComment[j] !== '') { - splitComment[j] = splitComment[j].replace(/&/g, '&') - .replace(/<(?!!--)/g, '<') - .split('').reverse().join('') - .replace(/>(?!(--))/g, ';tg&') - .split('').reverse().join(''); + splitComment[j] = this.escape(splitComment[j]); } } splitCdata[i] = ExportUtils.mergeBack(commentSections, splitComment); From fe03082ce5610515e2ef83d99a06b9d4c4b74056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ma=C5=BE=C3=A1ri?= Date: Sat, 11 Dec 2021 16:39:42 +0100 Subject: [PATCH 08/10] [PF-19] - Export tag should escape XML invalid characters - revert version change --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 57ca8c1..9c7dd98 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@netgrif/petriflow", - "version": "1.3.1", + "version": "1.3.0", "description": "Javascript / Typescript library of Petriflow objects", "main": "dist/petriflow.js", "module": "dist/petriflow.esm.js", From 2c9e376bb025fd50c4119ceb49b8d3dc1884b967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Ma=C5=BE=C3=A1ri?= Date: Sat, 11 Dec 2021 16:45:35 +0100 Subject: [PATCH 09/10] [PF-19] - Export tag should escape XML invalid characters - add ?. operator in case of nullish value --- src/lib/export/export-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/export/export-utils.ts b/src/lib/export/export-utils.ts index 519996f..53df588 100644 --- a/src/lib/export/export-utils.ts +++ b/src/lib/export/export-utils.ts @@ -43,7 +43,7 @@ export class ExportUtils { } public escape(value: string): string { - return value.replace(/&/g, '&') + return value?.replace(/&/g, '&') .replace(/<(?!!--)/g, '<') .split('').reverse().join('') .replace(/>(?!(--))/g, ';tg&') From c7476a440d9ec210bff0b59ece96fde92be95d24 Mon Sep 17 00:00:00 2001 From: Milan Mladoniczky <6153201+mladoniczky@users.noreply.github.com> Date: Fri, 17 Dec 2021 11:12:23 +0100 Subject: [PATCH 10/10] Prepare release 1.3.1 - increase version - update changelog --- CHANGELOG.md | 7 +++++++ docs/assets/search.js | 2 +- docs/classes/Action.html | 2 +- docs/classes/Arc.html | 2 +- docs/classes/AssignedUser.html | 2 +- docs/classes/Breakpoint.html | 2 +- docs/classes/CaseEvent.html | 2 +- docs/classes/CaseLogic.html | 2 +- docs/classes/Component.html | 2 +- docs/classes/DataEvent.html | 2 +- docs/classes/DataGroup.html | 2 +- docs/classes/DataLayout.html | 2 +- docs/classes/DataRef.html | 2 +- docs/classes/DataRefLogic.html | 2 +- docs/classes/DataRefLogicUtil.html | 2 +- docs/classes/DataVariable.html | 2 +- docs/classes/Event.html | 2 +- docs/classes/ExportService.html | 2 +- docs/classes/ExportUtils.html | 2 +- docs/classes/Expression.html | 2 +- docs/classes/I18nString.html | 2 +- docs/classes/I18nTranslations.html | 2 +- docs/classes/I18nWithDynamic.html | 2 +- docs/classes/Icon.html | 2 +- docs/classes/ImportService.html | 2 +- docs/classes/ImportUtils.html | 2 +- docs/classes/Layout.html | 2 +- docs/classes/Logic.html | 2 +- docs/classes/Mapping.html | 2 +- docs/classes/Option.html | 2 +- docs/classes/PetriNet.html | 2 +- docs/classes/PetriNetResult.html | 2 +- docs/classes/PetriflowFunction.html | 2 +- docs/classes/Place.html | 2 +- docs/classes/ProcessEvent.html | 2 +- docs/classes/ProcessRoleRef.html | 2 +- docs/classes/ProcessUserRef.html | 2 +- docs/classes/Property.html | 2 +- docs/classes/Role.html | 2 +- docs/classes/RoleEvent.html | 2 +- docs/classes/RoleRef.html | 2 +- docs/classes/Transaction.html | 2 +- docs/classes/Transition.html | 2 +- docs/classes/TransitionEvent.html | 2 +- docs/classes/TransitionLayout.html | 2 +- docs/classes/Trigger.html | 2 +- docs/classes/UserRef.html | 2 +- docs/classes/Validation.html | 2 +- docs/enums/Alignment.html | 2 +- docs/enums/Appearance.html | 2 +- docs/enums/ArcType.html | 2 +- docs/enums/AssignPolicy.html | 2 +- docs/enums/CaseEventType.html | 2 +- docs/enums/DataEventType.html | 2 +- docs/enums/DataFocusPolicy.html | 2 +- docs/enums/DataRefBehavior.html | 2 +- docs/enums/DataType.html | 2 +- docs/enums/EventPhase.html | 2 +- docs/enums/FinishPolicy.html | 2 +- docs/enums/FunctionScope.html | 2 +- docs/enums/IconType.html | 2 +- docs/enums/LayoutType.html | 2 +- docs/enums/ProcessEventType.html | 2 +- docs/enums/RoleEventType.html | 2 +- docs/enums/Template.html | 2 +- docs/enums/TransitionEventType.html | 2 +- docs/enums/TriggerType.html | 2 +- docs/index.html | 2 +- package.json | 2 +- 69 files changed, 75 insertions(+), 68 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc16bfd..50eaf5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.1](https://github.com/netgrif/petriflow.js/releases/tag/v1.3.1) (2021-12-17) + +### Fixes +- [PF-17] Layout imports rows cols with default value 0 +- [PF-18] Validation does not clone properties +- [PF-19] Export tag should escape XML invalid characters + ## [1.3.0](https://github.com/netgrif/petriflow.js/releases/tag/v1.3.0) (2021-12-07) ### Changed diff --git a/docs/assets/search.js b/docs/assets/search.js index ee4c7a2..581bff2 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = {"kinds":{"8":"Enumeration","16":"Enumeration member","128":"Class","512":"Constructor","1024":"Property","2048":"Method","262144":"Accessor"},"rows":[{"id":0,"kind":128,"name":"PetriNet","url":"classes/PetriNet.html","classes":"tsd-kind-class"},{"id":1,"kind":512,"name":"constructor","url":"classes/PetriNet.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PetriNet"},{"id":2,"kind":1024,"name":"_id","url":"classes/PetriNet.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":3,"kind":1024,"name":"_version","url":"classes/PetriNet.html#_version","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":4,"kind":1024,"name":"_initials","url":"classes/PetriNet.html#_initials","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":5,"kind":1024,"name":"_title","url":"classes/PetriNet.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":6,"kind":1024,"name":"_icon","url":"classes/PetriNet.html#_icon","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":7,"kind":1024,"name":"_defaultRole","url":"classes/PetriNet.html#_defaultRole","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":8,"kind":1024,"name":"_anonymousRole","url":"classes/PetriNet.html#_anonymousRole","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":9,"kind":1024,"name":"_transitionRole","url":"classes/PetriNet.html#_transitionRole","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":10,"kind":1024,"name":"_caseName","url":"classes/PetriNet.html#_caseName","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":11,"kind":1024,"name":"_roleRefs","url":"classes/PetriNet.html#_roleRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":12,"kind":1024,"name":"_userRefs","url":"classes/PetriNet.html#_userRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":13,"kind":1024,"name":"_processEvents","url":"classes/PetriNet.html#_processEvents","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":14,"kind":1024,"name":"_caseEvents","url":"classes/PetriNet.html#_caseEvents","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":15,"kind":1024,"name":"_transactions","url":"classes/PetriNet.html#_transactions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":16,"kind":1024,"name":"_roles","url":"classes/PetriNet.html#_roles","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":17,"kind":1024,"name":"_functions","url":"classes/PetriNet.html#_functions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":18,"kind":1024,"name":"_data","url":"classes/PetriNet.html#_data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":19,"kind":1024,"name":"_mappings","url":"classes/PetriNet.html#_mappings","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":20,"kind":1024,"name":"_i18ns","url":"classes/PetriNet.html#_i18ns","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":21,"kind":1024,"name":"_transitions","url":"classes/PetriNet.html#_transitions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":22,"kind":1024,"name":"_places","url":"classes/PetriNet.html#_places","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":23,"kind":1024,"name":"_arcs","url":"classes/PetriNet.html#_arcs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":24,"kind":262144,"name":"id","url":"classes/PetriNet.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":25,"kind":262144,"name":"version","url":"classes/PetriNet.html#version","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":26,"kind":262144,"name":"initials","url":"classes/PetriNet.html#initials","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":27,"kind":262144,"name":"title","url":"classes/PetriNet.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":28,"kind":262144,"name":"icon","url":"classes/PetriNet.html#icon","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":29,"kind":262144,"name":"defaultRole","url":"classes/PetriNet.html#defaultRole","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":30,"kind":262144,"name":"anonymousRole","url":"classes/PetriNet.html#anonymousRole","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":31,"kind":262144,"name":"transitionRole","url":"classes/PetriNet.html#transitionRole","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":32,"kind":262144,"name":"caseName","url":"classes/PetriNet.html#caseName","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":33,"kind":2048,"name":"getRoleRefs","url":"classes/PetriNet.html#getRoleRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":34,"kind":2048,"name":"getRoleRef","url":"classes/PetriNet.html#getRoleRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":35,"kind":2048,"name":"addRoleRef","url":"classes/PetriNet.html#addRoleRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":36,"kind":2048,"name":"removeRoleRef","url":"classes/PetriNet.html#removeRoleRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":37,"kind":2048,"name":"getUserRefs","url":"classes/PetriNet.html#getUserRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":38,"kind":2048,"name":"getUserRef","url":"classes/PetriNet.html#getUserRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":39,"kind":2048,"name":"addUserRef","url":"classes/PetriNet.html#addUserRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":40,"kind":2048,"name":"removeUserRef","url":"classes/PetriNet.html#removeUserRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":41,"kind":2048,"name":"getProcessEvents","url":"classes/PetriNet.html#getProcessEvents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":42,"kind":2048,"name":"getProcessEvent","url":"classes/PetriNet.html#getProcessEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":43,"kind":2048,"name":"addProcessEvent","url":"classes/PetriNet.html#addProcessEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":44,"kind":2048,"name":"removeProcessEvent","url":"classes/PetriNet.html#removeProcessEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":45,"kind":2048,"name":"getCaseEvents","url":"classes/PetriNet.html#getCaseEvents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":46,"kind":2048,"name":"getCaseEvent","url":"classes/PetriNet.html#getCaseEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":47,"kind":2048,"name":"addCaseEvent","url":"classes/PetriNet.html#addCaseEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":48,"kind":2048,"name":"removeCaseEvent","url":"classes/PetriNet.html#removeCaseEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":49,"kind":2048,"name":"getTransactions","url":"classes/PetriNet.html#getTransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":50,"kind":2048,"name":"getTransaction","url":"classes/PetriNet.html#getTransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":51,"kind":2048,"name":"addTransaction","url":"classes/PetriNet.html#addTransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":52,"kind":2048,"name":"removeTransaction","url":"classes/PetriNet.html#removeTransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":53,"kind":2048,"name":"getRoles","url":"classes/PetriNet.html#getRoles","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":54,"kind":2048,"name":"getRole","url":"classes/PetriNet.html#getRole","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":55,"kind":2048,"name":"addRole","url":"classes/PetriNet.html#addRole","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":56,"kind":2048,"name":"removeRole","url":"classes/PetriNet.html#removeRole","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":57,"kind":262144,"name":"functions","url":"classes/PetriNet.html#functions","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":58,"kind":2048,"name":"addFunction","url":"classes/PetriNet.html#addFunction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":59,"kind":2048,"name":"getDataSet","url":"classes/PetriNet.html#getDataSet","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":60,"kind":2048,"name":"getData","url":"classes/PetriNet.html#getData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":61,"kind":2048,"name":"addData","url":"classes/PetriNet.html#addData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":62,"kind":2048,"name":"removeData","url":"classes/PetriNet.html#removeData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":63,"kind":2048,"name":"getMappings","url":"classes/PetriNet.html#getMappings","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":64,"kind":2048,"name":"getMapping","url":"classes/PetriNet.html#getMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":65,"kind":2048,"name":"addMapping","url":"classes/PetriNet.html#addMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":66,"kind":2048,"name":"removeMapping","url":"classes/PetriNet.html#removeMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":67,"kind":2048,"name":"getI18ns","url":"classes/PetriNet.html#getI18ns","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":68,"kind":2048,"name":"getI18n","url":"classes/PetriNet.html#getI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":69,"kind":2048,"name":"addI18n","url":"classes/PetriNet.html#addI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":70,"kind":2048,"name":"removeI18n","url":"classes/PetriNet.html#removeI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":71,"kind":2048,"name":"getTransitions","url":"classes/PetriNet.html#getTransitions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":72,"kind":2048,"name":"getTransition","url":"classes/PetriNet.html#getTransition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":73,"kind":2048,"name":"addTransition","url":"classes/PetriNet.html#addTransition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":74,"kind":2048,"name":"removeTransition","url":"classes/PetriNet.html#removeTransition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":75,"kind":2048,"name":"getPlaces","url":"classes/PetriNet.html#getPlaces","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":76,"kind":2048,"name":"getPlace","url":"classes/PetriNet.html#getPlace","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":77,"kind":2048,"name":"addPlace","url":"classes/PetriNet.html#addPlace","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":78,"kind":2048,"name":"removePlace","url":"classes/PetriNet.html#removePlace","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":79,"kind":2048,"name":"getArcs","url":"classes/PetriNet.html#getArcs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":80,"kind":2048,"name":"getArc","url":"classes/PetriNet.html#getArc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":81,"kind":2048,"name":"addArc","url":"classes/PetriNet.html#addArc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":82,"kind":2048,"name":"removeArc","url":"classes/PetriNet.html#removeArc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":83,"kind":2048,"name":"clone","url":"classes/PetriNet.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":84,"kind":128,"name":"Arc","url":"classes/Arc.html","classes":"tsd-kind-class"},{"id":85,"kind":512,"name":"constructor","url":"classes/Arc.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Arc"},{"id":86,"kind":1024,"name":"_id","url":"classes/Arc.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":87,"kind":1024,"name":"_type","url":"classes/Arc.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":88,"kind":1024,"name":"_source","url":"classes/Arc.html#_source","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":89,"kind":1024,"name":"_destination","url":"classes/Arc.html#_destination","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":90,"kind":1024,"name":"_multiplicity","url":"classes/Arc.html#_multiplicity","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":91,"kind":1024,"name":"_reference","url":"classes/Arc.html#_reference","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":92,"kind":1024,"name":"_breakpoints","url":"classes/Arc.html#_breakpoints","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":93,"kind":262144,"name":"id","url":"classes/Arc.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":94,"kind":262144,"name":"type","url":"classes/Arc.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":95,"kind":262144,"name":"source","url":"classes/Arc.html#source","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":96,"kind":262144,"name":"destination","url":"classes/Arc.html#destination","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":97,"kind":262144,"name":"multiplicity","url":"classes/Arc.html#multiplicity","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":98,"kind":262144,"name":"reference","url":"classes/Arc.html#reference","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":99,"kind":262144,"name":"breakpoints","url":"classes/Arc.html#breakpoints","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":100,"kind":2048,"name":"clone","url":"classes/Arc.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Arc"},{"id":101,"kind":8,"name":"ArcType","url":"enums/ArcType.html","classes":"tsd-kind-enum"},{"id":102,"kind":16,"name":"REGULAR","url":"enums/ArcType.html#REGULAR","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":103,"kind":16,"name":"READ","url":"enums/ArcType.html#READ","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":104,"kind":16,"name":"RESET","url":"enums/ArcType.html#RESET","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":105,"kind":16,"name":"INHIBITOR","url":"enums/ArcType.html#INHIBITOR","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":106,"kind":16,"name":"VARIABLE","url":"enums/ArcType.html#VARIABLE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":107,"kind":128,"name":"Breakpoint","url":"classes/Breakpoint.html","classes":"tsd-kind-class"},{"id":108,"kind":512,"name":"constructor","url":"classes/Breakpoint.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Breakpoint"},{"id":109,"kind":1024,"name":"_x","url":"classes/Breakpoint.html#_x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Breakpoint"},{"id":110,"kind":1024,"name":"_y","url":"classes/Breakpoint.html#_y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Breakpoint"},{"id":111,"kind":262144,"name":"x","url":"classes/Breakpoint.html#x","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Breakpoint"},{"id":112,"kind":262144,"name":"y","url":"classes/Breakpoint.html#y","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Breakpoint"},{"id":113,"kind":128,"name":"Component","url":"classes/Component.html","classes":"tsd-kind-class"},{"id":114,"kind":512,"name":"constructor","url":"classes/Component.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Component"},{"id":115,"kind":1024,"name":"_name","url":"classes/Component.html#_name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Component"},{"id":116,"kind":1024,"name":"_properties","url":"classes/Component.html#_properties","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Component"},{"id":117,"kind":1024,"name":"_icons","url":"classes/Component.html#_icons","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Component"},{"id":118,"kind":262144,"name":"name","url":"classes/Component.html#name","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Component"},{"id":119,"kind":262144,"name":"properties","url":"classes/Component.html#properties","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Component"},{"id":120,"kind":262144,"name":"icons","url":"classes/Component.html#icons","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Component"},{"id":121,"kind":2048,"name":"clone","url":"classes/Component.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Component"},{"id":122,"kind":128,"name":"DataEvent","url":"classes/DataEvent.html","classes":"tsd-kind-class"},{"id":123,"kind":512,"name":"constructor","url":"classes/DataEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"DataEvent"},{"id":124,"kind":2048,"name":"clone","url":"classes/DataEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataEvent"},{"id":125,"kind":262144,"name":"type","url":"classes/DataEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":126,"kind":262144,"name":"id","url":"classes/DataEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":127,"kind":262144,"name":"preActions","url":"classes/DataEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":128,"kind":262144,"name":"postActions","url":"classes/DataEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":129,"kind":2048,"name":"addAction","url":"classes/DataEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":130,"kind":8,"name":"DataEventType","url":"enums/DataEventType.html","classes":"tsd-kind-enum"},{"id":131,"kind":16,"name":"SET","url":"enums/DataEventType.html#SET","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataEventType"},{"id":132,"kind":16,"name":"GET","url":"enums/DataEventType.html#GET","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataEventType"},{"id":133,"kind":8,"name":"DataType","url":"enums/DataType.html","classes":"tsd-kind-enum"},{"id":134,"kind":16,"name":"NUMBER","url":"enums/DataType.html#NUMBER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":135,"kind":16,"name":"TEXT","url":"enums/DataType.html#TEXT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":136,"kind":16,"name":"ENUMERATION","url":"enums/DataType.html#ENUMERATION","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":137,"kind":16,"name":"ENUMERATION_MAP","url":"enums/DataType.html#ENUMERATION_MAP","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":138,"kind":16,"name":"MULTICHOICE","url":"enums/DataType.html#MULTICHOICE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":139,"kind":16,"name":"MULTICHOICE_MAP","url":"enums/DataType.html#MULTICHOICE_MAP","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":140,"kind":16,"name":"BOOLEAN","url":"enums/DataType.html#BOOLEAN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":141,"kind":16,"name":"DATE","url":"enums/DataType.html#DATE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":142,"kind":16,"name":"DATETIME","url":"enums/DataType.html#DATETIME","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":143,"kind":16,"name":"FILE","url":"enums/DataType.html#FILE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":144,"kind":16,"name":"FILE_LIST","url":"enums/DataType.html#FILE_LIST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":145,"kind":16,"name":"USER","url":"enums/DataType.html#USER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":146,"kind":16,"name":"USER_LIST","url":"enums/DataType.html#USER_LIST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":147,"kind":16,"name":"BUTTON","url":"enums/DataType.html#BUTTON","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":148,"kind":16,"name":"TASK_REF","url":"enums/DataType.html#TASK_REF","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":149,"kind":16,"name":"CASE_REF","url":"enums/DataType.html#CASE_REF","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":150,"kind":16,"name":"FILTER","url":"enums/DataType.html#FILTER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":151,"kind":128,"name":"DataVariable","url":"classes/DataVariable.html","classes":"tsd-kind-class"},{"id":152,"kind":512,"name":"constructor","url":"classes/DataVariable.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"DataVariable"},{"id":153,"kind":1024,"name":"_id","url":"classes/DataVariable.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":154,"kind":1024,"name":"_title","url":"classes/DataVariable.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":155,"kind":1024,"name":"_placeholder","url":"classes/DataVariable.html#_placeholder","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":156,"kind":1024,"name":"_desc","url":"classes/DataVariable.html#_desc","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":157,"kind":1024,"name":"_options","url":"classes/DataVariable.html#_options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":158,"kind":1024,"name":"_optionsInit","url":"classes/DataVariable.html#_optionsInit","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":159,"kind":1024,"name":"_validations","url":"classes/DataVariable.html#_validations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":160,"kind":1024,"name":"_init","url":"classes/DataVariable.html#_init","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":161,"kind":1024,"name":"_inits","url":"classes/DataVariable.html#_inits","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":162,"kind":1024,"name":"_component","url":"classes/DataVariable.html#_component","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":163,"kind":1024,"name":"_type","url":"classes/DataVariable.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":164,"kind":1024,"name":"_immediate","url":"classes/DataVariable.html#_immediate","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":165,"kind":1024,"name":"_encryption","url":"classes/DataVariable.html#_encryption","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":166,"kind":1024,"name":"_remote","url":"classes/DataVariable.html#_remote","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":167,"kind":1024,"name":"_actionRef","url":"classes/DataVariable.html#_actionRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":168,"kind":1024,"name":"_length","url":"classes/DataVariable.html#_length","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":169,"kind":1024,"name":"_allowedNets","url":"classes/DataVariable.html#_allowedNets","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":170,"kind":262144,"name":"id","url":"classes/DataVariable.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":171,"kind":262144,"name":"title","url":"classes/DataVariable.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":172,"kind":262144,"name":"placeholder","url":"classes/DataVariable.html#placeholder","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":173,"kind":262144,"name":"desc","url":"classes/DataVariable.html#desc","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":174,"kind":262144,"name":"options","url":"classes/DataVariable.html#options","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":175,"kind":262144,"name":"optionsInit","url":"classes/DataVariable.html#optionsInit","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":176,"kind":262144,"name":"validations","url":"classes/DataVariable.html#validations","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":177,"kind":262144,"name":"init","url":"classes/DataVariable.html#init","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":178,"kind":262144,"name":"inits","url":"classes/DataVariable.html#inits","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":179,"kind":262144,"name":"component","url":"classes/DataVariable.html#component","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":180,"kind":262144,"name":"type","url":"classes/DataVariable.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":181,"kind":262144,"name":"immediate","url":"classes/DataVariable.html#immediate","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":182,"kind":262144,"name":"encryption","url":"classes/DataVariable.html#encryption","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":183,"kind":262144,"name":"remote","url":"classes/DataVariable.html#remote","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":184,"kind":262144,"name":"actionRef","url":"classes/DataVariable.html#actionRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":185,"kind":262144,"name":"length","url":"classes/DataVariable.html#length","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":186,"kind":262144,"name":"allowedNets","url":"classes/DataVariable.html#allowedNets","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":187,"kind":2048,"name":"clone","url":"classes/DataVariable.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataVariable"},{"id":188,"kind":2048,"name":"addAction","url":"classes/DataVariable.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":189,"kind":262144,"name":"events","url":"classes/DataVariable.html#events","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-protected","parent":"DataVariable"},{"id":190,"kind":2048,"name":"getEvents","url":"classes/DataVariable.html#getEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":191,"kind":2048,"name":"getEvent","url":"classes/DataVariable.html#getEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":192,"kind":2048,"name":"addEvent","url":"classes/DataVariable.html#addEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":193,"kind":2048,"name":"removeEvent","url":"classes/DataVariable.html#removeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":194,"kind":2048,"name":"mergeEvent","url":"classes/DataVariable.html#mergeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":195,"kind":128,"name":"Expression","url":"classes/Expression.html","classes":"tsd-kind-class"},{"id":196,"kind":512,"name":"constructor","url":"classes/Expression.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Expression"},{"id":197,"kind":1024,"name":"_dynamic","url":"classes/Expression.html#_dynamic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Expression"},{"id":198,"kind":1024,"name":"_expression","url":"classes/Expression.html#_expression","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Expression"},{"id":199,"kind":262144,"name":"dynamic","url":"classes/Expression.html#dynamic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Expression"},{"id":200,"kind":262144,"name":"expression","url":"classes/Expression.html#expression","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Expression"},{"id":201,"kind":2048,"name":"clone","url":"classes/Expression.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Expression"},{"id":202,"kind":128,"name":"Icon","url":"classes/Icon.html","classes":"tsd-kind-class"},{"id":203,"kind":512,"name":"constructor","url":"classes/Icon.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Icon"},{"id":204,"kind":1024,"name":"_key","url":"classes/Icon.html#_key","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Icon"},{"id":205,"kind":1024,"name":"_icon","url":"classes/Icon.html#_icon","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Icon"},{"id":206,"kind":1024,"name":"_type","url":"classes/Icon.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Icon"},{"id":207,"kind":262144,"name":"key","url":"classes/Icon.html#key","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Icon"},{"id":208,"kind":262144,"name":"icon","url":"classes/Icon.html#icon","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Icon"},{"id":209,"kind":262144,"name":"type","url":"classes/Icon.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Icon"},{"id":210,"kind":2048,"name":"clone","url":"classes/Icon.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Icon"},{"id":211,"kind":8,"name":"IconType","url":"enums/IconType.html","classes":"tsd-kind-enum"},{"id":212,"kind":16,"name":"MATERIAL","url":"enums/IconType.html#MATERIAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"IconType"},{"id":213,"kind":16,"name":"SVG","url":"enums/IconType.html#SVG","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"IconType"},{"id":214,"kind":128,"name":"Option","url":"classes/Option.html","classes":"tsd-kind-class"},{"id":215,"kind":2048,"name":"of","url":"classes/Option.html#of","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Option"},{"id":216,"kind":512,"name":"constructor","url":"classes/Option.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Option"},{"id":217,"kind":1024,"name":"_key","url":"classes/Option.html#_key","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Option"},{"id":218,"kind":1024,"name":"_value","url":"classes/Option.html#_value","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Option"},{"id":219,"kind":262144,"name":"key","url":"classes/Option.html#key","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Option"},{"id":220,"kind":262144,"name":"value","url":"classes/Option.html#value","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Option"},{"id":221,"kind":2048,"name":"clone","url":"classes/Option.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Option"},{"id":222,"kind":128,"name":"Property","url":"classes/Property.html","classes":"tsd-kind-class"},{"id":223,"kind":512,"name":"constructor","url":"classes/Property.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Property"},{"id":224,"kind":1024,"name":"_key","url":"classes/Property.html#_key","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Property"},{"id":225,"kind":1024,"name":"_value","url":"classes/Property.html#_value","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Property"},{"id":226,"kind":262144,"name":"key","url":"classes/Property.html#key","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Property"},{"id":227,"kind":262144,"name":"value","url":"classes/Property.html#value","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Property"},{"id":228,"kind":2048,"name":"clone","url":"classes/Property.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Property"},{"id":229,"kind":128,"name":"Validation","url":"classes/Validation.html","classes":"tsd-kind-class"},{"id":230,"kind":512,"name":"constructor","url":"classes/Validation.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Validation"},{"id":231,"kind":1024,"name":"_expression","url":"classes/Validation.html#_expression","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Validation"},{"id":232,"kind":1024,"name":"_message","url":"classes/Validation.html#_message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Validation"},{"id":233,"kind":262144,"name":"expression","url":"classes/Validation.html#expression","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Validation"},{"id":234,"kind":262144,"name":"message","url":"classes/Validation.html#message","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Validation"},{"id":235,"kind":2048,"name":"clone","url":"classes/Validation.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validation"},{"id":236,"kind":128,"name":"I18nString","url":"classes/I18nString.html","classes":"tsd-kind-class"},{"id":237,"kind":512,"name":"constructor","url":"classes/I18nString.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"I18nString"},{"id":238,"kind":1024,"name":"_name","url":"classes/I18nString.html#_name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nString"},{"id":239,"kind":1024,"name":"_value","url":"classes/I18nString.html#_value","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nString"},{"id":240,"kind":262144,"name":"name","url":"classes/I18nString.html#name","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"I18nString"},{"id":241,"kind":262144,"name":"value","url":"classes/I18nString.html#value","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"I18nString"},{"id":242,"kind":2048,"name":"clone","url":"classes/I18nString.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nString"},{"id":243,"kind":128,"name":"I18nTranslations","url":"classes/I18nTranslations.html","classes":"tsd-kind-class"},{"id":244,"kind":512,"name":"constructor","url":"classes/I18nTranslations.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"I18nTranslations"},{"id":245,"kind":1024,"name":"_locale","url":"classes/I18nTranslations.html#_locale","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nTranslations"},{"id":246,"kind":1024,"name":"_i18ns","url":"classes/I18nTranslations.html#_i18ns","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nTranslations"},{"id":247,"kind":262144,"name":"locale","url":"classes/I18nTranslations.html#locale","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"I18nTranslations"},{"id":248,"kind":2048,"name":"getI18ns","url":"classes/I18nTranslations.html#getI18ns","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":249,"kind":2048,"name":"getI18n","url":"classes/I18nTranslations.html#getI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":250,"kind":2048,"name":"addI18n","url":"classes/I18nTranslations.html#addI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":251,"kind":2048,"name":"removeI18n","url":"classes/I18nTranslations.html#removeI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":252,"kind":2048,"name":"clone","url":"classes/I18nTranslations.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":253,"kind":128,"name":"I18nWithDynamic","url":"classes/I18nWithDynamic.html","classes":"tsd-kind-class"},{"id":254,"kind":512,"name":"constructor","url":"classes/I18nWithDynamic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"I18nWithDynamic"},{"id":255,"kind":1024,"name":"_dynamic","url":"classes/I18nWithDynamic.html#_dynamic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nWithDynamic"},{"id":256,"kind":262144,"name":"dynamic","url":"classes/I18nWithDynamic.html#dynamic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"I18nWithDynamic"},{"id":257,"kind":2048,"name":"clone","url":"classes/I18nWithDynamic.html#clone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"I18nWithDynamic"},{"id":258,"kind":262144,"name":"name","url":"classes/I18nWithDynamic.html#name","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"I18nWithDynamic"},{"id":259,"kind":262144,"name":"value","url":"classes/I18nWithDynamic.html#value","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"I18nWithDynamic"},{"id":260,"kind":128,"name":"Action","url":"classes/Action.html","classes":"tsd-kind-class"},{"id":261,"kind":512,"name":"constructor","url":"classes/Action.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Action"},{"id":262,"kind":1024,"name":"_id","url":"classes/Action.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Action"},{"id":263,"kind":1024,"name":"_definition","url":"classes/Action.html#_definition","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Action"},{"id":264,"kind":262144,"name":"id","url":"classes/Action.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Action"},{"id":265,"kind":262144,"name":"definition","url":"classes/Action.html#definition","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Action"},{"id":266,"kind":2048,"name":"clone","url":"classes/Action.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Action"},{"id":267,"kind":128,"name":"CaseEvent","url":"classes/CaseEvent.html","classes":"tsd-kind-class"},{"id":268,"kind":512,"name":"constructor","url":"classes/CaseEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"CaseEvent"},{"id":269,"kind":2048,"name":"clone","url":"classes/CaseEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CaseEvent"},{"id":270,"kind":262144,"name":"type","url":"classes/CaseEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":271,"kind":262144,"name":"id","url":"classes/CaseEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":272,"kind":262144,"name":"preActions","url":"classes/CaseEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":273,"kind":262144,"name":"postActions","url":"classes/CaseEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":274,"kind":2048,"name":"addAction","url":"classes/CaseEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":275,"kind":8,"name":"CaseEventType","url":"enums/CaseEventType.html","classes":"tsd-kind-enum"},{"id":276,"kind":16,"name":"CREATE","url":"enums/CaseEventType.html#CREATE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CaseEventType"},{"id":277,"kind":16,"name":"DELETE","url":"enums/CaseEventType.html#DELETE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CaseEventType"},{"id":278,"kind":128,"name":"CaseLogic","url":"classes/CaseLogic.html","classes":"tsd-kind-class"},{"id":279,"kind":512,"name":"constructor","url":"classes/CaseLogic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CaseLogic"},{"id":280,"kind":1024,"name":"_create","url":"classes/CaseLogic.html#_create","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"CaseLogic"},{"id":281,"kind":1024,"name":"_delete","url":"classes/CaseLogic.html#_delete","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"CaseLogic"},{"id":282,"kind":1024,"name":"_view","url":"classes/CaseLogic.html#_view","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"CaseLogic"},{"id":283,"kind":262144,"name":"create","url":"classes/CaseLogic.html#create","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"CaseLogic"},{"id":284,"kind":262144,"name":"delete","url":"classes/CaseLogic.html#delete","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"CaseLogic"},{"id":285,"kind":262144,"name":"view","url":"classes/CaseLogic.html#view","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"CaseLogic"},{"id":286,"kind":2048,"name":"clone","url":"classes/CaseLogic.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CaseLogic"},{"id":287,"kind":128,"name":"Event","url":"classes/Event.html","classes":"tsd-kind-class tsd-has-type-parameter"},{"id":288,"kind":512,"name":"constructor","url":"classes/Event.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter tsd-is-protected","parent":"Event"},{"id":289,"kind":1024,"name":"_type","url":"classes/Event.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Event"},{"id":290,"kind":1024,"name":"_id","url":"classes/Event.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Event"},{"id":291,"kind":1024,"name":"_preActions","url":"classes/Event.html#_preActions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Event"},{"id":292,"kind":1024,"name":"_postActions","url":"classes/Event.html#_postActions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Event"},{"id":293,"kind":262144,"name":"type","url":"classes/Event.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Event"},{"id":294,"kind":262144,"name":"id","url":"classes/Event.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Event"},{"id":295,"kind":262144,"name":"preActions","url":"classes/Event.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Event"},{"id":296,"kind":262144,"name":"postActions","url":"classes/Event.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Event"},{"id":297,"kind":2048,"name":"addAction","url":"classes/Event.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Event"},{"id":298,"kind":8,"name":"EventPhase","url":"enums/EventPhase.html","classes":"tsd-kind-enum"},{"id":299,"kind":16,"name":"PRE","url":"enums/EventPhase.html#PRE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventPhase"},{"id":300,"kind":16,"name":"POST","url":"enums/EventPhase.html#POST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventPhase"},{"id":301,"kind":8,"name":"FunctionScope","url":"enums/FunctionScope.html","classes":"tsd-kind-enum"},{"id":302,"kind":16,"name":"NAMESPACE","url":"enums/FunctionScope.html#NAMESPACE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FunctionScope"},{"id":303,"kind":16,"name":"PROCESS","url":"enums/FunctionScope.html#PROCESS","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FunctionScope"},{"id":304,"kind":128,"name":"Mapping","url":"classes/Mapping.html","classes":"tsd-kind-class"},{"id":305,"kind":512,"name":"constructor","url":"classes/Mapping.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Mapping"},{"id":306,"kind":1024,"name":"_id","url":"classes/Mapping.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":307,"kind":1024,"name":"_transitionRef","url":"classes/Mapping.html#_transitionRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":308,"kind":1024,"name":"_roleRef","url":"classes/Mapping.html#_roleRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":309,"kind":1024,"name":"_dataRef","url":"classes/Mapping.html#_dataRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":310,"kind":1024,"name":"_dataGroup","url":"classes/Mapping.html#_dataGroup","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":311,"kind":1024,"name":"_trigger","url":"classes/Mapping.html#_trigger","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":312,"kind":262144,"name":"id","url":"classes/Mapping.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":313,"kind":262144,"name":"transitionRef","url":"classes/Mapping.html#transitionRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":314,"kind":262144,"name":"roleRef","url":"classes/Mapping.html#roleRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":315,"kind":262144,"name":"dataRef","url":"classes/Mapping.html#dataRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":316,"kind":262144,"name":"dataGroup","url":"classes/Mapping.html#dataGroup","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":317,"kind":262144,"name":"trigger","url":"classes/Mapping.html#trigger","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":318,"kind":2048,"name":"clone","url":"classes/Mapping.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Mapping"},{"id":319,"kind":128,"name":"PetriflowFunction","url":"classes/PetriflowFunction.html","classes":"tsd-kind-class"},{"id":320,"kind":512,"name":"constructor","url":"classes/PetriflowFunction.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":321,"kind":1024,"name":"_name","url":"classes/PetriflowFunction.html#_name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriflowFunction"},{"id":322,"kind":1024,"name":"_scope","url":"classes/PetriflowFunction.html#_scope","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriflowFunction"},{"id":323,"kind":1024,"name":"_definition","url":"classes/PetriflowFunction.html#_definition","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriflowFunction"},{"id":324,"kind":262144,"name":"name","url":"classes/PetriflowFunction.html#name","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":325,"kind":262144,"name":"scope","url":"classes/PetriflowFunction.html#scope","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":326,"kind":262144,"name":"definition","url":"classes/PetriflowFunction.html#definition","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":327,"kind":2048,"name":"clone","url":"classes/PetriflowFunction.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":328,"kind":128,"name":"Place","url":"classes/Place.html","classes":"tsd-kind-class"},{"id":329,"kind":512,"name":"constructor","url":"classes/Place.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Place"},{"id":330,"kind":1024,"name":"_id","url":"classes/Place.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":331,"kind":1024,"name":"_static","url":"classes/Place.html#_static","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":332,"kind":1024,"name":"_x","url":"classes/Place.html#_x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":333,"kind":1024,"name":"_y","url":"classes/Place.html#_y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":334,"kind":1024,"name":"_label","url":"classes/Place.html#_label","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":335,"kind":1024,"name":"_marking","url":"classes/Place.html#_marking","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":336,"kind":262144,"name":"id","url":"classes/Place.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":337,"kind":262144,"name":"static","url":"classes/Place.html#static","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":338,"kind":262144,"name":"x","url":"classes/Place.html#x","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":339,"kind":262144,"name":"y","url":"classes/Place.html#y","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":340,"kind":262144,"name":"label","url":"classes/Place.html#label","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":341,"kind":262144,"name":"marking","url":"classes/Place.html#marking","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":342,"kind":2048,"name":"clone","url":"classes/Place.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Place"},{"id":343,"kind":128,"name":"ProcessEvent","url":"classes/ProcessEvent.html","classes":"tsd-kind-class"},{"id":344,"kind":512,"name":"constructor","url":"classes/ProcessEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ProcessEvent"},{"id":345,"kind":2048,"name":"clone","url":"classes/ProcessEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ProcessEvent"},{"id":346,"kind":262144,"name":"type","url":"classes/ProcessEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":347,"kind":262144,"name":"id","url":"classes/ProcessEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":348,"kind":262144,"name":"preActions","url":"classes/ProcessEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":349,"kind":262144,"name":"postActions","url":"classes/ProcessEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":350,"kind":2048,"name":"addAction","url":"classes/ProcessEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":351,"kind":8,"name":"ProcessEventType","url":"enums/ProcessEventType.html","classes":"tsd-kind-enum"},{"id":352,"kind":16,"name":"UPLOAD","url":"enums/ProcessEventType.html#UPLOAD","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ProcessEventType"},{"id":353,"kind":128,"name":"ProcessRoleRef","url":"classes/ProcessRoleRef.html","classes":"tsd-kind-class"},{"id":354,"kind":512,"name":"constructor","url":"classes/ProcessRoleRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ProcessRoleRef"},{"id":355,"kind":1024,"name":"_id","url":"classes/ProcessRoleRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ProcessRoleRef"},{"id":356,"kind":1024,"name":"_caseLogic","url":"classes/ProcessRoleRef.html#_caseLogic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ProcessRoleRef"},{"id":357,"kind":262144,"name":"id","url":"classes/ProcessRoleRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProcessRoleRef"},{"id":358,"kind":262144,"name":"caseLogic","url":"classes/ProcessRoleRef.html#caseLogic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProcessRoleRef"},{"id":359,"kind":2048,"name":"clone","url":"classes/ProcessRoleRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ProcessRoleRef"},{"id":360,"kind":128,"name":"ProcessUserRef","url":"classes/ProcessUserRef.html","classes":"tsd-kind-class"},{"id":361,"kind":512,"name":"constructor","url":"classes/ProcessUserRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ProcessUserRef"},{"id":362,"kind":1024,"name":"_id","url":"classes/ProcessUserRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ProcessUserRef"},{"id":363,"kind":1024,"name":"_caseLogic","url":"classes/ProcessUserRef.html#_caseLogic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ProcessUserRef"},{"id":364,"kind":262144,"name":"id","url":"classes/ProcessUserRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProcessUserRef"},{"id":365,"kind":262144,"name":"caseLogic","url":"classes/ProcessUserRef.html#caseLogic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProcessUserRef"},{"id":366,"kind":2048,"name":"clone","url":"classes/ProcessUserRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ProcessUserRef"},{"id":367,"kind":128,"name":"Role","url":"classes/Role.html","classes":"tsd-kind-class"},{"id":368,"kind":512,"name":"constructor","url":"classes/Role.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Role"},{"id":369,"kind":1024,"name":"_id","url":"classes/Role.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Role"},{"id":370,"kind":1024,"name":"_title","url":"classes/Role.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Role"},{"id":371,"kind":262144,"name":"id","url":"classes/Role.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Role"},{"id":372,"kind":262144,"name":"title","url":"classes/Role.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Role"},{"id":373,"kind":2048,"name":"clone","url":"classes/Role.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Role"},{"id":374,"kind":262144,"name":"events","url":"classes/Role.html#events","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-protected","parent":"Role"},{"id":375,"kind":2048,"name":"getEvents","url":"classes/Role.html#getEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":376,"kind":2048,"name":"getEvent","url":"classes/Role.html#getEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":377,"kind":2048,"name":"addEvent","url":"classes/Role.html#addEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":378,"kind":2048,"name":"removeEvent","url":"classes/Role.html#removeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":379,"kind":2048,"name":"mergeEvent","url":"classes/Role.html#mergeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":380,"kind":128,"name":"RoleEvent","url":"classes/RoleEvent.html","classes":"tsd-kind-class"},{"id":381,"kind":512,"name":"constructor","url":"classes/RoleEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"RoleEvent"},{"id":382,"kind":1024,"name":"_title","url":"classes/RoleEvent.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RoleEvent"},{"id":383,"kind":1024,"name":"_message","url":"classes/RoleEvent.html#_message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RoleEvent"},{"id":384,"kind":262144,"name":"title","url":"classes/RoleEvent.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"RoleEvent"},{"id":385,"kind":262144,"name":"message","url":"classes/RoleEvent.html#message","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"RoleEvent"},{"id":386,"kind":2048,"name":"clone","url":"classes/RoleEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RoleEvent"},{"id":387,"kind":262144,"name":"type","url":"classes/RoleEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":388,"kind":262144,"name":"id","url":"classes/RoleEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":389,"kind":262144,"name":"preActions","url":"classes/RoleEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":390,"kind":262144,"name":"postActions","url":"classes/RoleEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":391,"kind":2048,"name":"addAction","url":"classes/RoleEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":392,"kind":8,"name":"RoleEventType","url":"enums/RoleEventType.html","classes":"tsd-kind-enum"},{"id":393,"kind":16,"name":"ASSIGN","url":"enums/RoleEventType.html#ASSIGN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"RoleEventType"},{"id":394,"kind":16,"name":"CANCEL","url":"enums/RoleEventType.html#CANCEL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"RoleEventType"},{"id":395,"kind":128,"name":"Transaction","url":"classes/Transaction.html","classes":"tsd-kind-class"},{"id":396,"kind":512,"name":"constructor","url":"classes/Transaction.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Transaction"},{"id":397,"kind":1024,"name":"_id","url":"classes/Transaction.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transaction"},{"id":398,"kind":1024,"name":"_title","url":"classes/Transaction.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transaction"},{"id":399,"kind":262144,"name":"id","url":"classes/Transaction.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transaction"},{"id":400,"kind":262144,"name":"title","url":"classes/Transaction.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transaction"},{"id":401,"kind":2048,"name":"clone","url":"classes/Transaction.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Transaction"},{"id":402,"kind":8,"name":"Alignment","url":"enums/Alignment.html","classes":"tsd-kind-enum"},{"id":403,"kind":16,"name":"TOP","url":"enums/Alignment.html#TOP","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Alignment"},{"id":404,"kind":16,"name":"CENTER","url":"enums/Alignment.html#CENTER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Alignment"},{"id":405,"kind":16,"name":"BOTTOM","url":"enums/Alignment.html#BOTTOM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Alignment"},{"id":406,"kind":8,"name":"Appearance","url":"enums/Appearance.html","classes":"tsd-kind-enum"},{"id":407,"kind":16,"name":"LEGACY","url":"enums/Appearance.html#LEGACY","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Appearance"},{"id":408,"kind":16,"name":"STANDARD","url":"enums/Appearance.html#STANDARD","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Appearance"},{"id":409,"kind":16,"name":"FILL","url":"enums/Appearance.html#FILL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Appearance"},{"id":410,"kind":16,"name":"OUTLINE","url":"enums/Appearance.html#OUTLINE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Appearance"},{"id":411,"kind":8,"name":"AssignPolicy","url":"enums/AssignPolicy.html","classes":"tsd-kind-enum"},{"id":412,"kind":16,"name":"MANUAL","url":"enums/AssignPolicy.html#MANUAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AssignPolicy"},{"id":413,"kind":16,"name":"AUTO","url":"enums/AssignPolicy.html#AUTO","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AssignPolicy"},{"id":414,"kind":128,"name":"AssignedUser","url":"classes/AssignedUser.html","classes":"tsd-kind-class"},{"id":415,"kind":512,"name":"constructor","url":"classes/AssignedUser.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"AssignedUser"},{"id":416,"kind":1024,"name":"_cancel","url":"classes/AssignedUser.html#_cancel","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"AssignedUser"},{"id":417,"kind":1024,"name":"_reassign","url":"classes/AssignedUser.html#_reassign","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"AssignedUser"},{"id":418,"kind":262144,"name":"cancel","url":"classes/AssignedUser.html#cancel","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"AssignedUser"},{"id":419,"kind":262144,"name":"reassign","url":"classes/AssignedUser.html#reassign","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"AssignedUser"},{"id":420,"kind":2048,"name":"clone","url":"classes/AssignedUser.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AssignedUser"},{"id":421,"kind":8,"name":"DataFocusPolicy","url":"enums/DataFocusPolicy.html","classes":"tsd-kind-enum"},{"id":422,"kind":16,"name":"MANUAL","url":"enums/DataFocusPolicy.html#MANUAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataFocusPolicy"},{"id":423,"kind":16,"name":"AUTO_EMPTY_REQUIRED","url":"enums/DataFocusPolicy.html#AUTO_EMPTY_REQUIRED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataFocusPolicy"},{"id":424,"kind":128,"name":"DataLayout","url":"classes/DataLayout.html","classes":"tsd-kind-class"},{"id":425,"kind":512,"name":"constructor","url":"classes/DataLayout.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"DataLayout"},{"id":426,"kind":1024,"name":"_x","url":"classes/DataLayout.html#_x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataLayout"},{"id":427,"kind":1024,"name":"_y","url":"classes/DataLayout.html#_y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataLayout"},{"id":428,"kind":1024,"name":"_template","url":"classes/DataLayout.html#_template","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataLayout"},{"id":429,"kind":1024,"name":"_appearance","url":"classes/DataLayout.html#_appearance","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataLayout"},{"id":430,"kind":262144,"name":"x","url":"classes/DataLayout.html#x","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataLayout"},{"id":431,"kind":262144,"name":"y","url":"classes/DataLayout.html#y","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataLayout"},{"id":432,"kind":262144,"name":"template","url":"classes/DataLayout.html#template","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataLayout"},{"id":433,"kind":262144,"name":"appearance","url":"classes/DataLayout.html#appearance","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataLayout"},{"id":434,"kind":2048,"name":"clone","url":"classes/DataLayout.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataLayout"},{"id":435,"kind":262144,"name":"rows","url":"classes/DataLayout.html#rows","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataLayout"},{"id":436,"kind":262144,"name":"cols","url":"classes/DataLayout.html#cols","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataLayout"},{"id":437,"kind":262144,"name":"offset","url":"classes/DataLayout.html#offset","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataLayout"},{"id":438,"kind":262144,"name":"alignment","url":"classes/DataLayout.html#alignment","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataLayout"},{"id":439,"kind":128,"name":"DataRef","url":"classes/DataRef.html","classes":"tsd-kind-class"},{"id":440,"kind":512,"name":"constructor","url":"classes/DataRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"DataRef"},{"id":441,"kind":1024,"name":"_id","url":"classes/DataRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRef"},{"id":442,"kind":1024,"name":"_logic","url":"classes/DataRef.html#_logic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRef"},{"id":443,"kind":1024,"name":"_layout","url":"classes/DataRef.html#_layout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRef"},{"id":444,"kind":1024,"name":"_component","url":"classes/DataRef.html#_component","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRef"},{"id":445,"kind":262144,"name":"id","url":"classes/DataRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRef"},{"id":446,"kind":262144,"name":"logic","url":"classes/DataRef.html#logic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRef"},{"id":447,"kind":262144,"name":"layout","url":"classes/DataRef.html#layout","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRef"},{"id":448,"kind":262144,"name":"component","url":"classes/DataRef.html#component","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRef"},{"id":449,"kind":2048,"name":"clone","url":"classes/DataRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataRef"},{"id":450,"kind":2048,"name":"addAction","url":"classes/DataRef.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":451,"kind":262144,"name":"events","url":"classes/DataRef.html#events","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-protected","parent":"DataRef"},{"id":452,"kind":2048,"name":"getEvents","url":"classes/DataRef.html#getEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":453,"kind":2048,"name":"getEvent","url":"classes/DataRef.html#getEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":454,"kind":2048,"name":"addEvent","url":"classes/DataRef.html#addEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":455,"kind":2048,"name":"removeEvent","url":"classes/DataRef.html#removeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":456,"kind":2048,"name":"mergeEvent","url":"classes/DataRef.html#mergeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":457,"kind":8,"name":"DataRefBehavior","url":"enums/DataRefBehavior.html","classes":"tsd-kind-enum"},{"id":458,"kind":16,"name":"REQUIRED","url":"enums/DataRefBehavior.html#REQUIRED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":459,"kind":16,"name":"OPTIONAL","url":"enums/DataRefBehavior.html#OPTIONAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":460,"kind":16,"name":"VISIBLE","url":"enums/DataRefBehavior.html#VISIBLE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":461,"kind":16,"name":"EDITABLE","url":"enums/DataRefBehavior.html#EDITABLE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":462,"kind":16,"name":"HIDDEN","url":"enums/DataRefBehavior.html#HIDDEN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":463,"kind":16,"name":"FORBIDDEN","url":"enums/DataRefBehavior.html#FORBIDDEN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":464,"kind":128,"name":"DataRefLogic","url":"classes/DataRefLogic.html","classes":"tsd-kind-class"},{"id":465,"kind":512,"name":"constructor","url":"classes/DataRefLogic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DataRefLogic"},{"id":466,"kind":1024,"name":"_behavior","url":"classes/DataRefLogic.html#_behavior","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRefLogic"},{"id":467,"kind":1024,"name":"_required","url":"classes/DataRefLogic.html#_required","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRefLogic"},{"id":468,"kind":1024,"name":"_actionRefs","url":"classes/DataRefLogic.html#_actionRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRefLogic"},{"id":469,"kind":262144,"name":"behavior","url":"classes/DataRefLogic.html#behavior","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRefLogic"},{"id":470,"kind":262144,"name":"required","url":"classes/DataRefLogic.html#required","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRefLogic"},{"id":471,"kind":262144,"name":"actionRefs","url":"classes/DataRefLogic.html#actionRefs","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRefLogic"},{"id":472,"kind":2048,"name":"clone","url":"classes/DataRefLogic.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataRefLogic"},{"id":473,"kind":128,"name":"DataRefLogicUtil","url":"classes/DataRefLogicUtil.html","classes":"tsd-kind-class"},{"id":474,"kind":2048,"name":"behaviors","url":"classes/DataRefLogicUtil.html#behaviors","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DataRefLogicUtil"},{"id":475,"kind":512,"name":"constructor","url":"classes/DataRefLogicUtil.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DataRefLogicUtil"},{"id":476,"kind":128,"name":"DataGroup","url":"classes/DataGroup.html","classes":"tsd-kind-class"},{"id":477,"kind":512,"name":"constructor","url":"classes/DataGroup.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DataGroup"},{"id":478,"kind":1024,"name":"_id","url":"classes/DataGroup.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":479,"kind":1024,"name":"_cols","url":"classes/DataGroup.html#_cols","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":480,"kind":1024,"name":"_rows","url":"classes/DataGroup.html#_rows","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":481,"kind":1024,"name":"_title","url":"classes/DataGroup.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":482,"kind":1024,"name":"_layout","url":"classes/DataGroup.html#_layout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":483,"kind":1024,"name":"_alignment","url":"classes/DataGroup.html#_alignment","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":484,"kind":1024,"name":"_stretch","url":"classes/DataGroup.html#_stretch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":485,"kind":1024,"name":"_dataRefs","url":"classes/DataGroup.html#_dataRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":486,"kind":262144,"name":"id","url":"classes/DataGroup.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":487,"kind":262144,"name":"cols","url":"classes/DataGroup.html#cols","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":488,"kind":262144,"name":"rows","url":"classes/DataGroup.html#rows","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":489,"kind":262144,"name":"title","url":"classes/DataGroup.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":490,"kind":262144,"name":"layout","url":"classes/DataGroup.html#layout","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":491,"kind":262144,"name":"alignment","url":"classes/DataGroup.html#alignment","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":492,"kind":262144,"name":"stretch","url":"classes/DataGroup.html#stretch","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":493,"kind":2048,"name":"getDataRefs","url":"classes/DataGroup.html#getDataRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":494,"kind":2048,"name":"getDataRef","url":"classes/DataGroup.html#getDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":495,"kind":2048,"name":"addDataRef","url":"classes/DataGroup.html#addDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":496,"kind":2048,"name":"removeDataRef","url":"classes/DataGroup.html#removeDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":497,"kind":2048,"name":"clone","url":"classes/DataGroup.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":498,"kind":8,"name":"FinishPolicy","url":"enums/FinishPolicy.html","classes":"tsd-kind-enum"},{"id":499,"kind":16,"name":"MANUAL","url":"enums/FinishPolicy.html#MANUAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FinishPolicy"},{"id":500,"kind":16,"name":"AUTO_NO_DATA","url":"enums/FinishPolicy.html#AUTO_NO_DATA","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FinishPolicy"},{"id":501,"kind":128,"name":"Layout","url":"classes/Layout.html","classes":"tsd-kind-class"},{"id":502,"kind":512,"name":"constructor","url":"classes/Layout.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Layout"},{"id":503,"kind":1024,"name":"_rows","url":"classes/Layout.html#_rows","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Layout"},{"id":504,"kind":1024,"name":"_cols","url":"classes/Layout.html#_cols","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Layout"},{"id":505,"kind":1024,"name":"_offset","url":"classes/Layout.html#_offset","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Layout"},{"id":506,"kind":1024,"name":"_alignment","url":"classes/Layout.html#_alignment","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Layout"},{"id":507,"kind":262144,"name":"rows","url":"classes/Layout.html#rows","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Layout"},{"id":508,"kind":262144,"name":"cols","url":"classes/Layout.html#cols","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Layout"},{"id":509,"kind":262144,"name":"offset","url":"classes/Layout.html#offset","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Layout"},{"id":510,"kind":262144,"name":"alignment","url":"classes/Layout.html#alignment","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Layout"},{"id":511,"kind":8,"name":"LayoutType","url":"enums/LayoutType.html","classes":"tsd-kind-enum"},{"id":512,"kind":16,"name":"FLOW","url":"enums/LayoutType.html#FLOW","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayoutType"},{"id":513,"kind":16,"name":"GRID","url":"enums/LayoutType.html#GRID","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayoutType"},{"id":514,"kind":16,"name":"LEGACY","url":"enums/LayoutType.html#LEGACY","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayoutType"},{"id":515,"kind":128,"name":"Logic","url":"classes/Logic.html","classes":"tsd-kind-class"},{"id":516,"kind":512,"name":"constructor","url":"classes/Logic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Logic"},{"id":517,"kind":1024,"name":"_perform","url":"classes/Logic.html#_perform","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":518,"kind":1024,"name":"_delegate","url":"classes/Logic.html#_delegate","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":519,"kind":1024,"name":"_cancel","url":"classes/Logic.html#_cancel","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":520,"kind":1024,"name":"_assign","url":"classes/Logic.html#_assign","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":521,"kind":1024,"name":"_view","url":"classes/Logic.html#_view","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":522,"kind":262144,"name":"perform","url":"classes/Logic.html#perform","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":523,"kind":262144,"name":"delegate","url":"classes/Logic.html#delegate","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":524,"kind":262144,"name":"cancel","url":"classes/Logic.html#cancel","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":525,"kind":262144,"name":"assign","url":"classes/Logic.html#assign","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":526,"kind":262144,"name":"view","url":"classes/Logic.html#view","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":527,"kind":2048,"name":"clone","url":"classes/Logic.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Logic"},{"id":528,"kind":128,"name":"RoleRef","url":"classes/RoleRef.html","classes":"tsd-kind-class"},{"id":529,"kind":512,"name":"constructor","url":"classes/RoleRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"RoleRef"},{"id":530,"kind":1024,"name":"_id","url":"classes/RoleRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RoleRef"},{"id":531,"kind":1024,"name":"_logic","url":"classes/RoleRef.html#_logic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RoleRef"},{"id":532,"kind":262144,"name":"id","url":"classes/RoleRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"RoleRef"},{"id":533,"kind":262144,"name":"logic","url":"classes/RoleRef.html#logic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"RoleRef"},{"id":534,"kind":2048,"name":"clone","url":"classes/RoleRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RoleRef"},{"id":535,"kind":8,"name":"Template","url":"enums/Template.html","classes":"tsd-kind-enum"},{"id":536,"kind":16,"name":"MATERIAL","url":"enums/Template.html#MATERIAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Template"},{"id":537,"kind":16,"name":"NETGRIF","url":"enums/Template.html#NETGRIF","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Template"},{"id":538,"kind":128,"name":"Transition","url":"classes/Transition.html","classes":"tsd-kind-class"},{"id":539,"kind":512,"name":"constructor","url":"classes/Transition.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Transition"},{"id":540,"kind":1024,"name":"_id","url":"classes/Transition.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":541,"kind":1024,"name":"_x","url":"classes/Transition.html#_x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":542,"kind":1024,"name":"_y","url":"classes/Transition.html#_y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":543,"kind":1024,"name":"_label","url":"classes/Transition.html#_label","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":544,"kind":1024,"name":"_layout","url":"classes/Transition.html#_layout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":545,"kind":1024,"name":"_icon","url":"classes/Transition.html#_icon","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":546,"kind":1024,"name":"_priority","url":"classes/Transition.html#_priority","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":547,"kind":1024,"name":"_assignPolicy","url":"classes/Transition.html#_assignPolicy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":548,"kind":1024,"name":"_finishPolicy","url":"classes/Transition.html#_finishPolicy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":549,"kind":1024,"name":"_dataFocusPolicy","url":"classes/Transition.html#_dataFocusPolicy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":550,"kind":1024,"name":"_triggers","url":"classes/Transition.html#_triggers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":551,"kind":1024,"name":"_transactionRef","url":"classes/Transition.html#_transactionRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":552,"kind":1024,"name":"_roleRefs","url":"classes/Transition.html#_roleRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":553,"kind":1024,"name":"_userRefs","url":"classes/Transition.html#_userRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":554,"kind":1024,"name":"_dataGroups","url":"classes/Transition.html#_dataGroups","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":555,"kind":1024,"name":"_assignedUser","url":"classes/Transition.html#_assignedUser","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":556,"kind":262144,"name":"id","url":"classes/Transition.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":557,"kind":262144,"name":"x","url":"classes/Transition.html#x","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":558,"kind":262144,"name":"y","url":"classes/Transition.html#y","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":559,"kind":262144,"name":"label","url":"classes/Transition.html#label","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":560,"kind":262144,"name":"layout","url":"classes/Transition.html#layout","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":561,"kind":262144,"name":"icon","url":"classes/Transition.html#icon","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":562,"kind":262144,"name":"priority","url":"classes/Transition.html#priority","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":563,"kind":262144,"name":"assignPolicy","url":"classes/Transition.html#assignPolicy","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":564,"kind":262144,"name":"finishPolicy","url":"classes/Transition.html#finishPolicy","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":565,"kind":262144,"name":"dataFocusPolicy","url":"classes/Transition.html#dataFocusPolicy","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":566,"kind":262144,"name":"triggers","url":"classes/Transition.html#triggers","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":567,"kind":262144,"name":"transactionRef","url":"classes/Transition.html#transactionRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":568,"kind":262144,"name":"roleRefs","url":"classes/Transition.html#roleRefs","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":569,"kind":262144,"name":"userRefs","url":"classes/Transition.html#userRefs","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":570,"kind":262144,"name":"dataGroups","url":"classes/Transition.html#dataGroups","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":571,"kind":262144,"name":"assignedUser","url":"classes/Transition.html#assignedUser","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":572,"kind":2048,"name":"clone","url":"classes/Transition.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Transition"},{"id":573,"kind":262144,"name":"events","url":"classes/Transition.html#events","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-protected","parent":"Transition"},{"id":574,"kind":2048,"name":"getEvents","url":"classes/Transition.html#getEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":575,"kind":2048,"name":"getEvent","url":"classes/Transition.html#getEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":576,"kind":2048,"name":"addEvent","url":"classes/Transition.html#addEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":577,"kind":2048,"name":"removeEvent","url":"classes/Transition.html#removeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":578,"kind":2048,"name":"mergeEvent","url":"classes/Transition.html#mergeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":579,"kind":128,"name":"TransitionEvent","url":"classes/TransitionEvent.html","classes":"tsd-kind-class"},{"id":580,"kind":512,"name":"constructor","url":"classes/TransitionEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"TransitionEvent"},{"id":581,"kind":1024,"name":"_title","url":"classes/TransitionEvent.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"TransitionEvent"},{"id":582,"kind":1024,"name":"_message","url":"classes/TransitionEvent.html#_message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"TransitionEvent"},{"id":583,"kind":262144,"name":"title","url":"classes/TransitionEvent.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"TransitionEvent"},{"id":584,"kind":262144,"name":"message","url":"classes/TransitionEvent.html#message","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"TransitionEvent"},{"id":585,"kind":2048,"name":"clone","url":"classes/TransitionEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransitionEvent"},{"id":586,"kind":262144,"name":"type","url":"classes/TransitionEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":587,"kind":262144,"name":"id","url":"classes/TransitionEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":588,"kind":262144,"name":"preActions","url":"classes/TransitionEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":589,"kind":262144,"name":"postActions","url":"classes/TransitionEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":590,"kind":2048,"name":"addAction","url":"classes/TransitionEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":591,"kind":8,"name":"TransitionEventType","url":"enums/TransitionEventType.html","classes":"tsd-kind-enum"},{"id":592,"kind":16,"name":"ASSIGN","url":"enums/TransitionEventType.html#ASSIGN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransitionEventType"},{"id":593,"kind":16,"name":"FINISH","url":"enums/TransitionEventType.html#FINISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransitionEventType"},{"id":594,"kind":16,"name":"CANCEL","url":"enums/TransitionEventType.html#CANCEL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransitionEventType"},{"id":595,"kind":16,"name":"DELEGATE","url":"enums/TransitionEventType.html#DELEGATE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransitionEventType"},{"id":596,"kind":128,"name":"TransitionLayout","url":"classes/TransitionLayout.html","classes":"tsd-kind-class"},{"id":597,"kind":512,"name":"constructor","url":"classes/TransitionLayout.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":598,"kind":1024,"name":"_type","url":"classes/TransitionLayout.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"TransitionLayout"},{"id":599,"kind":262144,"name":"type","url":"classes/TransitionLayout.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"TransitionLayout"},{"id":600,"kind":2048,"name":"empty","url":"classes/TransitionLayout.html#empty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransitionLayout"},{"id":601,"kind":2048,"name":"clone","url":"classes/TransitionLayout.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransitionLayout"},{"id":602,"kind":262144,"name":"rows","url":"classes/TransitionLayout.html#rows","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":603,"kind":262144,"name":"cols","url":"classes/TransitionLayout.html#cols","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":604,"kind":262144,"name":"offset","url":"classes/TransitionLayout.html#offset","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":605,"kind":262144,"name":"alignment","url":"classes/TransitionLayout.html#alignment","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":606,"kind":128,"name":"Trigger","url":"classes/Trigger.html","classes":"tsd-kind-class"},{"id":607,"kind":512,"name":"constructor","url":"classes/Trigger.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Trigger"},{"id":608,"kind":1024,"name":"_type","url":"classes/Trigger.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Trigger"},{"id":609,"kind":1024,"name":"_delay","url":"classes/Trigger.html#_delay","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Trigger"},{"id":610,"kind":1024,"name":"_exact","url":"classes/Trigger.html#_exact","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Trigger"},{"id":611,"kind":262144,"name":"type","url":"classes/Trigger.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Trigger"},{"id":612,"kind":262144,"name":"delay","url":"classes/Trigger.html#delay","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Trigger"},{"id":613,"kind":262144,"name":"exact","url":"classes/Trigger.html#exact","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Trigger"},{"id":614,"kind":2048,"name":"clone","url":"classes/Trigger.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Trigger"},{"id":615,"kind":8,"name":"TriggerType","url":"enums/TriggerType.html","classes":"tsd-kind-enum"},{"id":616,"kind":16,"name":"AUTO","url":"enums/TriggerType.html#AUTO","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TriggerType"},{"id":617,"kind":16,"name":"USER","url":"enums/TriggerType.html#USER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TriggerType"},{"id":618,"kind":16,"name":"TIME","url":"enums/TriggerType.html#TIME","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TriggerType"},{"id":619,"kind":128,"name":"UserRef","url":"classes/UserRef.html","classes":"tsd-kind-class"},{"id":620,"kind":512,"name":"constructor","url":"classes/UserRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"UserRef"},{"id":621,"kind":1024,"name":"_id","url":"classes/UserRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"UserRef"},{"id":622,"kind":1024,"name":"_logic","url":"classes/UserRef.html#_logic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"UserRef"},{"id":623,"kind":262144,"name":"id","url":"classes/UserRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"UserRef"},{"id":624,"kind":262144,"name":"logic","url":"classes/UserRef.html#logic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"UserRef"},{"id":625,"kind":2048,"name":"clone","url":"classes/UserRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserRef"},{"id":626,"kind":128,"name":"ImportService","url":"classes/ImportService.html","classes":"tsd-kind-class"},{"id":627,"kind":1024,"name":"PARSE_ERROR_LINE_EXTRACTION_REGEX","url":"classes/ImportService.html#PARSE_ERROR_LINE_EXTRACTION_REGEX","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":628,"kind":1024,"name":"DEFAULT_ROLE_DEFAULT_VALUE","url":"classes/ImportService.html#DEFAULT_ROLE_DEFAULT_VALUE","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":629,"kind":1024,"name":"ANONYMOUS_ROLE_DEFAULT_VALUE","url":"classes/ImportService.html#ANONYMOUS_ROLE_DEFAULT_VALUE","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":630,"kind":1024,"name":"TRANSITION_ROLE_DEFAULT_VALUE","url":"classes/ImportService.html#TRANSITION_ROLE_DEFAULT_VALUE","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":631,"kind":2048,"name":"checkI18n","url":"classes/ImportService.html#checkI18n","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":632,"kind":512,"name":"constructor","url":"classes/ImportService.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ImportService"},{"id":633,"kind":1024,"name":"importUtils","url":"classes/ImportService.html#importUtils","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"ImportService"},{"id":634,"kind":2048,"name":"parseXml","url":"classes/ImportService.html#parseXml","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":635,"kind":2048,"name":"parseFromXml","url":"classes/ImportService.html#parseFromXml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":636,"kind":2048,"name":"importFromXml","url":"classes/ImportService.html#importFromXml","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":637,"kind":2048,"name":"importModel","url":"classes/ImportService.html#importModel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":638,"kind":2048,"name":"importRoles","url":"classes/ImportService.html#importRoles","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":639,"kind":2048,"name":"parseRole","url":"classes/ImportService.html#parseRole","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":640,"kind":2048,"name":"importFunctions","url":"classes/ImportService.html#importFunctions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":641,"kind":2048,"name":"importEvents","url":"classes/ImportService.html#importEvents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":642,"kind":2048,"name":"importData","url":"classes/ImportService.html#importData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":643,"kind":2048,"name":"parseData","url":"classes/ImportService.html#parseData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":644,"kind":2048,"name":"importTransitions","url":"classes/ImportService.html#importTransitions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":645,"kind":2048,"name":"parseTransition","url":"classes/ImportService.html#parseTransition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":646,"kind":2048,"name":"importTransitionRoleRefs","url":"classes/ImportService.html#importTransitionRoleRefs","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":647,"kind":2048,"name":"importTransitionUserRefs","url":"classes/ImportService.html#importTransitionUserRefs","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":648,"kind":2048,"name":"importTransitionTriggers","url":"classes/ImportService.html#importTransitionTriggers","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":649,"kind":2048,"name":"importTransitionDataGroups","url":"classes/ImportService.html#importTransitionDataGroups","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":650,"kind":2048,"name":"importTransitionLayout","url":"classes/ImportService.html#importTransitionLayout","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":651,"kind":2048,"name":"importTransitionMetadata","url":"classes/ImportService.html#importTransitionMetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":652,"kind":2048,"name":"importTransitionEvents","url":"classes/ImportService.html#importTransitionEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":653,"kind":2048,"name":"importTransitionEvent","url":"classes/ImportService.html#importTransitionEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":654,"kind":2048,"name":"importTransactionRef","url":"classes/ImportService.html#importTransactionRef","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":655,"kind":2048,"name":"importAssignedUser","url":"classes/ImportService.html#importAssignedUser","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":656,"kind":2048,"name":"importTransactions","url":"classes/ImportService.html#importTransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":657,"kind":2048,"name":"importProcessRefs","url":"classes/ImportService.html#importProcessRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":658,"kind":2048,"name":"importPlaces","url":"classes/ImportService.html#importPlaces","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":659,"kind":2048,"name":"parsePlace","url":"classes/ImportService.html#parsePlace","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":660,"kind":2048,"name":"importArcs","url":"classes/ImportService.html#importArcs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":661,"kind":2048,"name":"parseArc","url":"classes/ImportService.html#parseArc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":662,"kind":2048,"name":"importI18n","url":"classes/ImportService.html#importI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":663,"kind":2048,"name":"parseI18n","url":"classes/ImportService.html#parseI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":664,"kind":2048,"name":"importMapping","url":"classes/ImportService.html#importMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":665,"kind":2048,"name":"parseMapping","url":"classes/ImportService.html#parseMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":666,"kind":2048,"name":"checkI18ns","url":"classes/ImportService.html#checkI18ns","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":667,"kind":128,"name":"ImportUtils","url":"classes/ImportUtils.html","classes":"tsd-kind-class"},{"id":668,"kind":512,"name":"constructor","url":"classes/ImportUtils.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ImportUtils"},{"id":669,"kind":1024,"name":"eventIdCounter","url":"classes/ImportUtils.html#eventIdCounter","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ImportUtils"},{"id":670,"kind":1024,"name":"actionIdCounter","url":"classes/ImportUtils.html#actionIdCounter","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ImportUtils"},{"id":671,"kind":2048,"name":"tagValue","url":"classes/ImportUtils.html#tagValue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":672,"kind":2048,"name":"parseI18n","url":"classes/ImportUtils.html#parseI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":673,"kind":2048,"name":"parseI18nWithDynamic","url":"classes/ImportUtils.html#parseI18nWithDynamic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":674,"kind":2048,"name":"tagAttribute","url":"classes/ImportUtils.html#tagAttribute","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":675,"kind":2048,"name":"parseAction","url":"classes/ImportUtils.html#parseAction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":676,"kind":2048,"name":"parseFunction","url":"classes/ImportUtils.html#parseFunction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":677,"kind":2048,"name":"parseDefinition","url":"classes/ImportUtils.html#parseDefinition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":678,"kind":2048,"name":"parseEncryption","url":"classes/ImportUtils.html#parseEncryption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":679,"kind":2048,"name":"parseViewAndComponent","url":"classes/ImportUtils.html#parseViewAndComponent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":680,"kind":2048,"name":"parseComponent","url":"classes/ImportUtils.html#parseComponent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":681,"kind":2048,"name":"parseProperty","url":"classes/ImportUtils.html#parseProperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":682,"kind":2048,"name":"resolveLogic","url":"classes/ImportUtils.html#resolveLogic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":683,"kind":2048,"name":"resolveLogicValue","url":"classes/ImportUtils.html#resolveLogicValue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":684,"kind":2048,"name":"resolveCaseLogic","url":"classes/ImportUtils.html#resolveCaseLogic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":685,"kind":2048,"name":"checkVariability","url":"classes/ImportUtils.html#checkVariability","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":686,"kind":2048,"name":"attachReference","url":"classes/ImportUtils.html#attachReference","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":687,"kind":2048,"name":"parseTrigger","url":"classes/ImportUtils.html#parseTrigger","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":688,"kind":2048,"name":"parseRoleRef","url":"classes/ImportUtils.html#parseRoleRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":689,"kind":2048,"name":"parseDataRef","url":"classes/ImportUtils.html#parseDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":690,"kind":2048,"name":"parseDataLayout","url":"classes/ImportUtils.html#parseDataLayout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":691,"kind":2048,"name":"parseDataGroup","url":"classes/ImportUtils.html#parseDataGroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":692,"kind":2048,"name":"parsePlaceStatic","url":"classes/ImportUtils.html#parsePlaceStatic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":693,"kind":2048,"name":"parseArcType","url":"classes/ImportUtils.html#parseArcType","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":694,"kind":2048,"name":"parseEvent","url":"classes/ImportUtils.html#parseEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"ImportUtils"},{"id":695,"kind":2048,"name":"resolveInits","url":"classes/ImportUtils.html#resolveInits","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":696,"kind":2048,"name":"resolveInit","url":"classes/ImportUtils.html#resolveInit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":697,"kind":2048,"name":"checkLengthAndNodes","url":"classes/ImportUtils.html#checkLengthAndNodes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":698,"kind":2048,"name":"resolveFormat","url":"classes/ImportUtils.html#resolveFormat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":699,"kind":2048,"name":"parseNumberValue","url":"classes/ImportUtils.html#parseNumberValue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":700,"kind":2048,"name":"parseExpression","url":"classes/ImportUtils.html#parseExpression","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":701,"kind":2048,"name":"getNextEventId","url":"classes/ImportUtils.html#getNextEventId","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportUtils"},{"id":702,"kind":2048,"name":"getNextActionId","url":"classes/ImportUtils.html#getNextActionId","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportUtils"},{"id":703,"kind":2048,"name":"resetEventId","url":"classes/ImportUtils.html#resetEventId","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":704,"kind":2048,"name":"resetActionId","url":"classes/ImportUtils.html#resetActionId","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":705,"kind":2048,"name":"resetIds","url":"classes/ImportUtils.html#resetIds","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":706,"kind":128,"name":"PetriNetResult","url":"classes/PetriNetResult.html","classes":"tsd-kind-class"},{"id":707,"kind":512,"name":"constructor","url":"classes/PetriNetResult.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PetriNetResult"},{"id":708,"kind":1024,"name":"_model","url":"classes/PetriNetResult.html#_model","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":709,"kind":1024,"name":"_errors","url":"classes/PetriNetResult.html#_errors","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":710,"kind":1024,"name":"_warnings","url":"classes/PetriNetResult.html#_warnings","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":711,"kind":1024,"name":"_info","url":"classes/PetriNetResult.html#_info","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":712,"kind":1024,"name":"_fileName","url":"classes/PetriNetResult.html#_fileName","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":713,"kind":262144,"name":"model","url":"classes/PetriNetResult.html#model","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNetResult"},{"id":714,"kind":262144,"name":"errors","url":"classes/PetriNetResult.html#errors","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PetriNetResult"},{"id":715,"kind":2048,"name":"addError","url":"classes/PetriNetResult.html#addError","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNetResult"},{"id":716,"kind":262144,"name":"warnings","url":"classes/PetriNetResult.html#warnings","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PetriNetResult"},{"id":717,"kind":2048,"name":"addWarning","url":"classes/PetriNetResult.html#addWarning","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNetResult"},{"id":718,"kind":262144,"name":"info","url":"classes/PetriNetResult.html#info","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PetriNetResult"},{"id":719,"kind":2048,"name":"addInfo","url":"classes/PetriNetResult.html#addInfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNetResult"},{"id":720,"kind":262144,"name":"fileName","url":"classes/PetriNetResult.html#fileName","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNetResult"},{"id":721,"kind":128,"name":"ExportService","url":"classes/ExportService.html","classes":"tsd-kind-class"},{"id":722,"kind":1024,"name":"PETRIFLOW_SCHEMA_URL","url":"classes/ExportService.html#PETRIFLOW_SCHEMA_URL","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"ExportService"},{"id":723,"kind":512,"name":"constructor","url":"classes/ExportService.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ExportService"},{"id":724,"kind":1024,"name":"xmlConstructor","url":"classes/ExportService.html#xmlConstructor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"ExportService"},{"id":725,"kind":1024,"name":"exportUtils","url":"classes/ExportService.html#exportUtils","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"ExportService"},{"id":726,"kind":2048,"name":"exportXml","url":"classes/ExportService.html#exportXml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":727,"kind":2048,"name":"xmlToString","url":"classes/ExportService.html#xmlToString","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":728,"kind":2048,"name":"generateXml","url":"classes/ExportService.html#generateXml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":729,"kind":2048,"name":"exportModel","url":"classes/ExportService.html#exportModel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":730,"kind":2048,"name":"exportTransactions","url":"classes/ExportService.html#exportTransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":731,"kind":2048,"name":"exportRoles","url":"classes/ExportService.html#exportRoles","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":732,"kind":2048,"name":"exportFunctions","url":"classes/ExportService.html#exportFunctions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":733,"kind":2048,"name":"exportEvent","url":"classes/ExportService.html#exportEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"ExportService"},{"id":734,"kind":2048,"name":"exportProcessRefs","url":"classes/ExportService.html#exportProcessRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":735,"kind":2048,"name":"exportProcessRef","url":"classes/ExportService.html#exportProcessRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":736,"kind":2048,"name":"exportTransitionRef","url":"classes/ExportService.html#exportTransitionRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":737,"kind":2048,"name":"exportProcessEvents","url":"classes/ExportService.html#exportProcessEvents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":738,"kind":2048,"name":"exportData","url":"classes/ExportService.html#exportData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":739,"kind":2048,"name":"exportI18n","url":"classes/ExportService.html#exportI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":740,"kind":2048,"name":"exportTransitions","url":"classes/ExportService.html#exportTransitions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":741,"kind":2048,"name":"exportDataRef","url":"classes/ExportService.html#exportDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":742,"kind":2048,"name":"exportComponent","url":"classes/ExportService.html#exportComponent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":743,"kind":2048,"name":"exportDataRefLayout","url":"classes/ExportService.html#exportDataRefLayout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":744,"kind":2048,"name":"exportTransitionLayout","url":"classes/ExportService.html#exportTransitionLayout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":745,"kind":2048,"name":"exportLayout","url":"classes/ExportService.html#exportLayout","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ExportService"},{"id":746,"kind":2048,"name":"exportDataGroup","url":"classes/ExportService.html#exportDataGroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":747,"kind":2048,"name":"exportPlaces","url":"classes/ExportService.html#exportPlaces","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":748,"kind":2048,"name":"exportArcs","url":"classes/ExportService.html#exportArcs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":749,"kind":2048,"name":"exportBreakpoints","url":"classes/ExportService.html#exportBreakpoints","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":750,"kind":128,"name":"ExportUtils","url":"classes/ExportUtils.html","classes":"tsd-kind-class"},{"id":751,"kind":2048,"name":"mergeBack","url":"classes/ExportUtils.html#mergeBack","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ExportUtils"},{"id":752,"kind":512,"name":"constructor","url":"classes/ExportUtils.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ExportUtils"},{"id":753,"kind":1024,"name":"CDATA_REGRET","url":"classes/ExportUtils.html#CDATA_REGRET","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ExportUtils"},{"id":754,"kind":1024,"name":"COMMENT_REGRET","url":"classes/ExportUtils.html#COMMENT_REGRET","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ExportUtils"},{"id":755,"kind":1024,"name":"xmlConstructor","url":"classes/ExportUtils.html#xmlConstructor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"ExportUtils"},{"id":756,"kind":2048,"name":"exportTag","url":"classes/ExportUtils.html#exportTag","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":757,"kind":2048,"name":"exportExpression","url":"classes/ExportUtils.html#exportExpression","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":758,"kind":2048,"name":"exportActions","url":"classes/ExportUtils.html#exportActions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"ExportUtils"},{"id":759,"kind":2048,"name":"exportAction","url":"classes/ExportUtils.html#exportAction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":760,"kind":2048,"name":"exportFunction","url":"classes/ExportUtils.html#exportFunction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":761,"kind":2048,"name":"escapeAction","url":"classes/ExportUtils.html#escapeAction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":762,"kind":2048,"name":"exportLogic","url":"classes/ExportUtils.html#exportLogic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":763,"kind":2048,"name":"exportCaseLogic","url":"classes/ExportUtils.html#exportCaseLogic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,22.031]],["parent/0",[]],["name/1",[1,28.004]],["parent/1",[0,2.122]],["name/2",[2,38.365]],["parent/2",[0,2.122]],["name/3",[3,62.344]],["parent/3",[0,2.122]],["name/4",[4,62.344]],["parent/4",[0,2.122]],["name/5",[5,46.25]],["parent/5",[0,2.122]],["name/6",[6,53.871]],["parent/6",[0,2.122]],["name/7",[7,62.344]],["parent/7",[0,2.122]],["name/8",[8,62.344]],["parent/8",[0,2.122]],["name/9",[9,62.344]],["parent/9",[0,2.122]],["name/10",[10,62.344]],["parent/10",[0,2.122]],["name/11",[11,57.236]],["parent/11",[0,2.122]],["name/12",[12,57.236]],["parent/12",[0,2.122]],["name/13",[13,62.344]],["parent/13",[0,2.122]],["name/14",[14,62.344]],["parent/14",[0,2.122]],["name/15",[15,62.344]],["parent/15",[0,2.122]],["name/16",[16,62.344]],["parent/16",[0,2.122]],["name/17",[17,62.344]],["parent/17",[0,2.122]],["name/18",[18,62.344]],["parent/18",[0,2.122]],["name/19",[19,62.344]],["parent/19",[0,2.122]],["name/20",[20,57.236]],["parent/20",[0,2.122]],["name/21",[21,62.344]],["parent/21",[0,2.122]],["name/22",[22,62.344]],["parent/22",[0,2.122]],["name/23",[23,62.344]],["parent/23",[0,2.122]],["name/24",[24,35.718]],["parent/24",[0,2.122]],["name/25",[25,62.344]],["parent/25",[0,2.122]],["name/26",[26,62.344]],["parent/26",[0,2.122]],["name/27",[27,46.25]],["parent/27",[0,2.122]],["name/28",[28,41.141]],["parent/28",[0,2.122]],["name/29",[29,62.344]],["parent/29",[0,2.122]],["name/30",[30,62.344]],["parent/30",[0,2.122]],["name/31",[31,62.344]],["parent/31",[0,2.122]],["name/32",[32,62.344]],["parent/32",[0,2.122]],["name/33",[33,62.344]],["parent/33",[0,2.122]],["name/34",[34,62.344]],["parent/34",[0,2.122]],["name/35",[35,62.344]],["parent/35",[0,2.122]],["name/36",[36,62.344]],["parent/36",[0,2.122]],["name/37",[37,62.344]],["parent/37",[0,2.122]],["name/38",[38,62.344]],["parent/38",[0,2.122]],["name/39",[39,62.344]],["parent/39",[0,2.122]],["name/40",[40,62.344]],["parent/40",[0,2.122]],["name/41",[41,62.344]],["parent/41",[0,2.122]],["name/42",[42,62.344]],["parent/42",[0,2.122]],["name/43",[43,62.344]],["parent/43",[0,2.122]],["name/44",[44,62.344]],["parent/44",[0,2.122]],["name/45",[45,62.344]],["parent/45",[0,2.122]],["name/46",[46,62.344]],["parent/46",[0,2.122]],["name/47",[47,62.344]],["parent/47",[0,2.122]],["name/48",[48,62.344]],["parent/48",[0,2.122]],["name/49",[49,62.344]],["parent/49",[0,2.122]],["name/50",[50,62.344]],["parent/50",[0,2.122]],["name/51",[51,62.344]],["parent/51",[0,2.122]],["name/52",[52,62.344]],["parent/52",[0,2.122]],["name/53",[53,62.344]],["parent/53",[0,2.122]],["name/54",[54,62.344]],["parent/54",[0,2.122]],["name/55",[55,62.344]],["parent/55",[0,2.122]],["name/56",[56,62.344]],["parent/56",[0,2.122]],["name/57",[57,62.344]],["parent/57",[0,2.122]],["name/58",[58,62.344]],["parent/58",[0,2.122]],["name/59",[59,62.344]],["parent/59",[0,2.122]],["name/60",[60,62.344]],["parent/60",[0,2.122]],["name/61",[61,62.344]],["parent/61",[0,2.122]],["name/62",[62,62.344]],["parent/62",[0,2.122]],["name/63",[63,62.344]],["parent/63",[0,2.122]],["name/64",[64,62.344]],["parent/64",[0,2.122]],["name/65",[65,62.344]],["parent/65",[0,2.122]],["name/66",[66,62.344]],["parent/66",[0,2.122]],["name/67",[67,57.236]],["parent/67",[0,2.122]],["name/68",[68,57.236]],["parent/68",[0,2.122]],["name/69",[69,57.236]],["parent/69",[0,2.122]],["name/70",[70,57.236]],["parent/70",[0,2.122]],["name/71",[71,62.344]],["parent/71",[0,2.122]],["name/72",[72,62.344]],["parent/72",[0,2.122]],["name/73",[73,62.344]],["parent/73",[0,2.122]],["name/74",[74,62.344]],["parent/74",[0,2.122]],["name/75",[75,62.344]],["parent/75",[0,2.122]],["name/76",[76,62.344]],["parent/76",[0,2.122]],["name/77",[77,62.344]],["parent/77",[0,2.122]],["name/78",[78,62.344]],["parent/78",[0,2.122]],["name/79",[79,62.344]],["parent/79",[0,2.122]],["name/80",[80,62.344]],["parent/80",[0,2.122]],["name/81",[81,62.344]],["parent/81",[0,2.122]],["name/82",[82,62.344]],["parent/82",[0,2.122]],["name/83",[83,30.155]],["parent/83",[0,2.122]],["name/84",[84,37.777]],["parent/84",[]],["name/85",[1,28.004]],["parent/85",[84,3.639]],["name/86",[2,38.365]],["parent/86",[84,3.639]],["name/87",[85,47.681]],["parent/87",[84,3.639]],["name/88",[86,62.344]],["parent/88",[84,3.639]],["name/89",[87,62.344]],["parent/89",[84,3.639]],["name/90",[88,62.344]],["parent/90",[84,3.639]],["name/91",[89,62.344]],["parent/91",[84,3.639]],["name/92",[90,62.344]],["parent/92",[84,3.639]],["name/93",[24,35.718]],["parent/93",[84,3.639]],["name/94",[91,41.975]],["parent/94",[84,3.639]],["name/95",[92,62.344]],["parent/95",[84,3.639]],["name/96",[93,62.344]],["parent/96",[84,3.639]],["name/97",[94,62.344]],["parent/97",[84,3.639]],["name/98",[95,62.344]],["parent/98",[84,3.639]],["name/99",[96,62.344]],["parent/99",[84,3.639]],["name/100",[83,30.155]],["parent/100",[84,3.639]],["name/101",[97,47.681]],["parent/101",[]],["name/102",[98,62.344]],["parent/102",[97,4.593]],["name/103",[99,62.344]],["parent/103",[97,4.593]],["name/104",[100,62.344]],["parent/104",[97,4.593]],["name/105",[101,62.344]],["parent/105",[97,4.593]],["name/106",[102,62.344]],["parent/106",[97,4.593]],["name/107",[103,47.681]],["parent/107",[]],["name/108",[1,28.004]],["parent/108",[103,4.593]],["name/109",[104,51.358]],["parent/109",[103,4.593]],["name/110",[105,51.358]],["parent/110",[103,4.593]],["name/111",[106,51.358]],["parent/111",[103,4.593]],["name/112",[107,51.358]],["parent/112",[103,4.593]],["name/113",[108,41.975]],["parent/113",[]],["name/114",[1,28.004]],["parent/114",[108,4.044]],["name/115",[109,53.871]],["parent/115",[108,4.044]],["name/116",[110,62.344]],["parent/116",[108,4.044]],["name/117",[111,62.344]],["parent/117",[108,4.044]],["name/118",[112,51.358]],["parent/118",[108,4.044]],["name/119",[113,62.344]],["parent/119",[108,4.044]],["name/120",[114,62.344]],["parent/120",[108,4.044]],["name/121",[83,30.155]],["parent/121",[108,4.044]],["name/122",[115,44.998]],["parent/122",[]],["name/123",[1,28.004]],["parent/123",[115,4.335]],["name/124",[83,30.155]],["parent/124",[115,4.335]],["name/125",[91,41.975]],["parent/125",[115,4.335]],["name/126",[24,35.718]],["parent/126",[115,4.335]],["name/127",[116,47.681]],["parent/127",[115,4.335]],["name/128",[117,47.681]],["parent/128",[115,4.335]],["name/129",[118,44.998]],["parent/129",[115,4.335]],["name/130",[119,53.871]],["parent/130",[]],["name/131",[120,62.344]],["parent/131",[119,5.19]],["name/132",[121,62.344]],["parent/132",[119,5.19]],["name/133",[122,37.221]],["parent/133",[]],["name/134",[123,62.344]],["parent/134",[122,3.586]],["name/135",[124,62.344]],["parent/135",[122,3.586]],["name/136",[125,62.344]],["parent/136",[122,3.586]],["name/137",[126,62.344]],["parent/137",[122,3.586]],["name/138",[127,62.344]],["parent/138",[122,3.586]],["name/139",[128,62.344]],["parent/139",[122,3.586]],["name/140",[129,62.344]],["parent/140",[122,3.586]],["name/141",[130,62.344]],["parent/141",[122,3.586]],["name/142",[131,62.344]],["parent/142",[122,3.586]],["name/143",[132,62.344]],["parent/143",[122,3.586]],["name/144",[133,62.344]],["parent/144",[122,3.586]],["name/145",[134,57.236]],["parent/145",[122,3.586]],["name/146",[135,62.344]],["parent/146",[122,3.586]],["name/147",[136,62.344]],["parent/147",[122,3.586]],["name/148",[137,62.344]],["parent/148",[122,3.586]],["name/149",[138,62.344]],["parent/149",[122,3.586]],["name/150",[139,62.344]],["parent/150",[122,3.586]],["name/151",[140,28.444]],["parent/151",[]],["name/152",[1,28.004]],["parent/152",[140,2.74]],["name/153",[2,38.365]],["parent/153",[140,2.74]],["name/154",[5,46.25]],["parent/154",[140,2.74]],["name/155",[141,62.344]],["parent/155",[140,2.74]],["name/156",[142,62.344]],["parent/156",[140,2.74]],["name/157",[143,62.344]],["parent/157",[140,2.74]],["name/158",[144,62.344]],["parent/158",[140,2.74]],["name/159",[145,62.344]],["parent/159",[140,2.74]],["name/160",[146,62.344]],["parent/160",[140,2.74]],["name/161",[147,62.344]],["parent/161",[140,2.74]],["name/162",[148,57.236]],["parent/162",[140,2.74]],["name/163",[85,47.681]],["parent/163",[140,2.74]],["name/164",[149,62.344]],["parent/164",[140,2.74]],["name/165",[150,62.344]],["parent/165",[140,2.74]],["name/166",[151,62.344]],["parent/166",[140,2.74]],["name/167",[152,62.344]],["parent/167",[140,2.74]],["name/168",[153,62.344]],["parent/168",[140,2.74]],["name/169",[154,62.344]],["parent/169",[140,2.74]],["name/170",[24,35.718]],["parent/170",[140,2.74]],["name/171",[27,46.25]],["parent/171",[140,2.74]],["name/172",[155,62.344]],["parent/172",[140,2.74]],["name/173",[156,62.344]],["parent/173",[140,2.74]],["name/174",[157,62.344]],["parent/174",[140,2.74]],["name/175",[158,62.344]],["parent/175",[140,2.74]],["name/176",[159,62.344]],["parent/176",[140,2.74]],["name/177",[160,62.344]],["parent/177",[140,2.74]],["name/178",[161,62.344]],["parent/178",[140,2.74]],["name/179",[108,41.975]],["parent/179",[140,2.74]],["name/180",[91,41.975]],["parent/180",[140,2.74]],["name/181",[162,62.344]],["parent/181",[140,2.74]],["name/182",[163,62.344]],["parent/182",[140,2.74]],["name/183",[164,62.344]],["parent/183",[140,2.74]],["name/184",[165,62.344]],["parent/184",[140,2.74]],["name/185",[166,62.344]],["parent/185",[140,2.74]],["name/186",[167,62.344]],["parent/186",[140,2.74]],["name/187",[83,30.155]],["parent/187",[140,2.74]],["name/188",[118,44.998]],["parent/188",[140,2.74]],["name/189",[168,51.358]],["parent/189",[140,2.74]],["name/190",[169,51.358]],["parent/190",[140,2.74]],["name/191",[170,51.358]],["parent/191",[140,2.74]],["name/192",[171,51.358]],["parent/192",[140,2.74]],["name/193",[172,51.358]],["parent/193",[140,2.74]],["name/194",[173,51.358]],["parent/194",[140,2.74]],["name/195",[174,43.886]],["parent/195",[]],["name/196",[1,28.004]],["parent/196",[174,4.228]],["name/197",[175,57.236]],["parent/197",[174,4.228]],["name/198",[176,57.236]],["parent/198",[174,4.228]],["name/199",[177,57.236]],["parent/199",[174,4.228]],["name/200",[174,43.886]],["parent/200",[174,4.228]],["name/201",[83,30.155]],["parent/201",[174,4.228]],["name/202",[28,41.141]],["parent/202",[]],["name/203",[1,28.004]],["parent/203",[28,3.963]],["name/204",[178,53.871]],["parent/204",[28,3.963]],["name/205",[6,53.871]],["parent/205",[28,3.963]],["name/206",[85,47.681]],["parent/206",[28,3.963]],["name/207",[179,53.871]],["parent/207",[28,3.963]],["name/208",[28,41.141]],["parent/208",[28,3.963]],["name/209",[91,41.975]],["parent/209",[28,3.963]],["name/210",[83,30.155]],["parent/210",[28,3.963]],["name/211",[180,53.871]],["parent/211",[]],["name/212",[181,57.236]],["parent/212",[180,5.19]],["name/213",[182,62.344]],["parent/213",[180,5.19]],["name/214",[183,44.998]],["parent/214",[]],["name/215",[184,62.344]],["parent/215",[183,4.335]],["name/216",[1,28.004]],["parent/216",[183,4.335]],["name/217",[178,53.871]],["parent/217",[183,4.335]],["name/218",[185,53.871]],["parent/218",[183,4.335]],["name/219",[179,53.871]],["parent/219",[183,4.335]],["name/220",[186,51.358]],["parent/220",[183,4.335]],["name/221",[83,30.155]],["parent/221",[183,4.335]],["name/222",[187,46.25]],["parent/222",[]],["name/223",[1,28.004]],["parent/223",[187,4.455]],["name/224",[178,53.871]],["parent/224",[187,4.455]],["name/225",[185,53.871]],["parent/225",[187,4.455]],["name/226",[179,53.871]],["parent/226",[187,4.455]],["name/227",[186,51.358]],["parent/227",[187,4.455]],["name/228",[83,30.155]],["parent/228",[187,4.455]],["name/229",[188,46.25]],["parent/229",[]],["name/230",[1,28.004]],["parent/230",[188,4.455]],["name/231",[176,57.236]],["parent/231",[188,4.455]],["name/232",[189,53.871]],["parent/232",[188,4.455]],["name/233",[174,43.886]],["parent/233",[188,4.455]],["name/234",[190,53.871]],["parent/234",[188,4.455]],["name/235",[83,30.155]],["parent/235",[188,4.455]],["name/236",[191,46.25]],["parent/236",[]],["name/237",[1,28.004]],["parent/237",[191,4.455]],["name/238",[109,53.871]],["parent/238",[191,4.455]],["name/239",[185,53.871]],["parent/239",[191,4.455]],["name/240",[112,51.358]],["parent/240",[191,4.455]],["name/241",[186,51.358]],["parent/241",[191,4.455]],["name/242",[83,30.155]],["parent/242",[191,4.455]],["name/243",[192,42.885]],["parent/243",[]],["name/244",[1,28.004]],["parent/244",[192,4.131]],["name/245",[193,62.344]],["parent/245",[192,4.131]],["name/246",[20,57.236]],["parent/246",[192,4.131]],["name/247",[194,62.344]],["parent/247",[192,4.131]],["name/248",[67,57.236]],["parent/248",[192,4.131]],["name/249",[68,57.236]],["parent/249",[192,4.131]],["name/250",[69,57.236]],["parent/250",[192,4.131]],["name/251",[70,57.236]],["parent/251",[192,4.131]],["name/252",[83,30.155]],["parent/252",[192,4.131]],["name/253",[195,46.25]],["parent/253",[]],["name/254",[1,28.004]],["parent/254",[195,4.455]],["name/255",[175,57.236]],["parent/255",[195,4.455]],["name/256",[177,57.236]],["parent/256",[195,4.455]],["name/257",[83,30.155]],["parent/257",[195,4.455]],["name/258",[112,51.358]],["parent/258",[195,4.455]],["name/259",[186,51.358]],["parent/259",[195,4.455]],["name/260",[196,46.25]],["parent/260",[]],["name/261",[1,28.004]],["parent/261",[196,4.455]],["name/262",[2,38.365]],["parent/262",[196,4.455]],["name/263",[197,57.236]],["parent/263",[196,4.455]],["name/264",[24,35.718]],["parent/264",[196,4.455]],["name/265",[198,57.236]],["parent/265",[196,4.455]],["name/266",[83,30.155]],["parent/266",[196,4.455]],["name/267",[199,44.998]],["parent/267",[]],["name/268",[1,28.004]],["parent/268",[199,4.335]],["name/269",[83,30.155]],["parent/269",[199,4.335]],["name/270",[91,41.975]],["parent/270",[199,4.335]],["name/271",[24,35.718]],["parent/271",[199,4.335]],["name/272",[116,47.681]],["parent/272",[199,4.335]],["name/273",[117,47.681]],["parent/273",[199,4.335]],["name/274",[118,44.998]],["parent/274",[199,4.335]],["name/275",[200,53.871]],["parent/275",[]],["name/276",[201,57.236]],["parent/276",[200,5.19]],["name/277",[202,57.236]],["parent/277",[200,5.19]],["name/278",[203,41.975]],["parent/278",[]],["name/279",[1,28.004]],["parent/279",[203,4.044]],["name/280",[204,62.344]],["parent/280",[203,4.044]],["name/281",[205,62.344]],["parent/281",[203,4.044]],["name/282",[206,57.236]],["parent/282",[203,4.044]],["name/283",[201,57.236]],["parent/283",[203,4.044]],["name/284",[202,57.236]],["parent/284",[203,4.044]],["name/285",[207,57.236]],["parent/285",[203,4.044]],["name/286",[83,30.155]],["parent/286",[203,4.044]],["name/287",[208,41.975]],["parent/287",[]],["name/288",[1,28.004]],["parent/288",[208,4.044]],["name/289",[85,47.681]],["parent/289",[208,4.044]],["name/290",[2,38.365]],["parent/290",[208,4.044]],["name/291",[209,62.344]],["parent/291",[208,4.044]],["name/292",[210,62.344]],["parent/292",[208,4.044]],["name/293",[91,41.975]],["parent/293",[208,4.044]],["name/294",[24,35.718]],["parent/294",[208,4.044]],["name/295",[116,47.681]],["parent/295",[208,4.044]],["name/296",[117,47.681]],["parent/296",[208,4.044]],["name/297",[118,44.998]],["parent/297",[208,4.044]],["name/298",[211,53.871]],["parent/298",[]],["name/299",[212,62.344]],["parent/299",[211,5.19]],["name/300",[213,62.344]],["parent/300",[211,5.19]],["name/301",[214,53.871]],["parent/301",[]],["name/302",[215,62.344]],["parent/302",[214,5.19]],["name/303",[216,62.344]],["parent/303",[214,5.19]],["name/304",[217,38.99]],["parent/304",[]],["name/305",[1,28.004]],["parent/305",[217,3.756]],["name/306",[2,38.365]],["parent/306",[217,3.756]],["name/307",[218,62.344]],["parent/307",[217,3.756]],["name/308",[219,62.344]],["parent/308",[217,3.756]],["name/309",[220,62.344]],["parent/309",[217,3.756]],["name/310",[221,62.344]],["parent/310",[217,3.756]],["name/311",[222,62.344]],["parent/311",[217,3.756]],["name/312",[24,35.718]],["parent/312",[217,3.756]],["name/313",[223,62.344]],["parent/313",[217,3.756]],["name/314",[224,44.998]],["parent/314",[217,3.756]],["name/315",[225,36.695]],["parent/315",[217,3.756]],["name/316",[226,34.829]],["parent/316",[217,3.756]],["name/317",[227,42.885]],["parent/317",[217,3.756]],["name/318",[83,30.155]],["parent/318",[217,3.756]],["name/319",[228,43.886]],["parent/319",[]],["name/320",[1,28.004]],["parent/320",[228,4.228]],["name/321",[109,53.871]],["parent/321",[228,4.228]],["name/322",[229,62.344]],["parent/322",[228,4.228]],["name/323",[197,57.236]],["parent/323",[228,4.228]],["name/324",[112,51.358]],["parent/324",[228,4.228]],["name/325",[230,62.344]],["parent/325",[228,4.228]],["name/326",[198,57.236]],["parent/326",[228,4.228]],["name/327",[83,30.155]],["parent/327",[228,4.228]],["name/328",[231,38.99]],["parent/328",[]],["name/329",[1,28.004]],["parent/329",[231,3.756]],["name/330",[2,38.365]],["parent/330",[231,3.756]],["name/331",[232,62.344]],["parent/331",[231,3.756]],["name/332",[104,51.358]],["parent/332",[231,3.756]],["name/333",[105,51.358]],["parent/333",[231,3.756]],["name/334",[233,57.236]],["parent/334",[231,3.756]],["name/335",[234,62.344]],["parent/335",[231,3.756]],["name/336",[24,35.718]],["parent/336",[231,3.756]],["name/337",[235,62.344]],["parent/337",[231,3.756]],["name/338",[106,51.358]],["parent/338",[231,3.756]],["name/339",[107,51.358]],["parent/339",[231,3.756]],["name/340",[236,57.236]],["parent/340",[231,3.756]],["name/341",[237,62.344]],["parent/341",[231,3.756]],["name/342",[83,30.155]],["parent/342",[231,3.756]],["name/343",[238,44.998]],["parent/343",[]],["name/344",[1,28.004]],["parent/344",[238,4.335]],["name/345",[83,30.155]],["parent/345",[238,4.335]],["name/346",[91,41.975]],["parent/346",[238,4.335]],["name/347",[24,35.718]],["parent/347",[238,4.335]],["name/348",[116,47.681]],["parent/348",[238,4.335]],["name/349",[117,47.681]],["parent/349",[238,4.335]],["name/350",[118,44.998]],["parent/350",[238,4.335]],["name/351",[239,57.236]],["parent/351",[]],["name/352",[240,62.344]],["parent/352",[239,5.514]],["name/353",[241,46.25]],["parent/353",[]],["name/354",[1,28.004]],["parent/354",[241,4.455]],["name/355",[2,38.365]],["parent/355",[241,4.455]],["name/356",[242,57.236]],["parent/356",[241,4.455]],["name/357",[24,35.718]],["parent/357",[241,4.455]],["name/358",[203,41.975]],["parent/358",[241,4.455]],["name/359",[83,30.155]],["parent/359",[241,4.455]],["name/360",[243,46.25]],["parent/360",[]],["name/361",[1,28.004]],["parent/361",[243,4.455]],["name/362",[2,38.365]],["parent/362",[243,4.455]],["name/363",[242,57.236]],["parent/363",[243,4.455]],["name/364",[24,35.718]],["parent/364",[243,4.455]],["name/365",[203,41.975]],["parent/365",[243,4.455]],["name/366",[83,30.155]],["parent/366",[243,4.455]],["name/367",[244,40.372]],["parent/367",[]],["name/368",[1,28.004]],["parent/368",[244,3.889]],["name/369",[2,38.365]],["parent/369",[244,3.889]],["name/370",[5,46.25]],["parent/370",[244,3.889]],["name/371",[24,35.718]],["parent/371",[244,3.889]],["name/372",[27,46.25]],["parent/372",[244,3.889]],["name/373",[83,30.155]],["parent/373",[244,3.889]],["name/374",[168,51.358]],["parent/374",[244,3.889]],["name/375",[169,51.358]],["parent/375",[244,3.889]],["name/376",[170,51.358]],["parent/376",[244,3.889]],["name/377",[171,51.358]],["parent/377",[244,3.889]],["name/378",[172,51.358]],["parent/378",[244,3.889]],["name/379",[173,51.358]],["parent/379",[244,3.889]],["name/380",[245,41.141]],["parent/380",[]],["name/381",[1,28.004]],["parent/381",[245,3.963]],["name/382",[5,46.25]],["parent/382",[245,3.963]],["name/383",[189,53.871]],["parent/383",[245,3.963]],["name/384",[27,46.25]],["parent/384",[245,3.963]],["name/385",[190,53.871]],["parent/385",[245,3.963]],["name/386",[83,30.155]],["parent/386",[245,3.963]],["name/387",[91,41.975]],["parent/387",[245,3.963]],["name/388",[24,35.718]],["parent/388",[245,3.963]],["name/389",[116,47.681]],["parent/389",[245,3.963]],["name/390",[117,47.681]],["parent/390",[245,3.963]],["name/391",[118,44.998]],["parent/391",[245,3.963]],["name/392",[246,53.871]],["parent/392",[]],["name/393",[247,53.871]],["parent/393",[246,5.19]],["name/394",[248,51.358]],["parent/394",[246,5.19]],["name/395",[249,46.25]],["parent/395",[]],["name/396",[1,28.004]],["parent/396",[249,4.455]],["name/397",[2,38.365]],["parent/397",[249,4.455]],["name/398",[5,46.25]],["parent/398",[249,4.455]],["name/399",[24,35.718]],["parent/399",[249,4.455]],["name/400",[27,46.25]],["parent/400",[249,4.455]],["name/401",[83,30.155]],["parent/401",[249,4.455]],["name/402",[250,44.998]],["parent/402",[]],["name/403",[251,62.344]],["parent/403",[250,4.335]],["name/404",[252,62.344]],["parent/404",[250,4.335]],["name/405",[253,62.344]],["parent/405",[250,4.335]],["name/406",[254,47.681]],["parent/406",[]],["name/407",[255,57.236]],["parent/407",[254,4.593]],["name/408",[256,62.344]],["parent/408",[254,4.593]],["name/409",[257,62.344]],["parent/409",[254,4.593]],["name/410",[258,62.344]],["parent/410",[254,4.593]],["name/411",[259,51.358]],["parent/411",[]],["name/412",[260,53.871]],["parent/412",[259,4.948]],["name/413",[261,57.236]],["parent/413",[259,4.948]],["name/414",[262,44.998]],["parent/414",[]],["name/415",[1,28.004]],["parent/415",[262,4.335]],["name/416",[263,57.236]],["parent/416",[262,4.335]],["name/417",[264,62.344]],["parent/417",[262,4.335]],["name/418",[248,51.358]],["parent/418",[262,4.335]],["name/419",[265,62.344]],["parent/419",[262,4.335]],["name/420",[83,30.155]],["parent/420",[262,4.335]],["name/421",[266,51.358]],["parent/421",[]],["name/422",[260,53.871]],["parent/422",[266,4.948]],["name/423",[267,62.344]],["parent/423",[266,4.948]],["name/424",[268,38.99]],["parent/424",[]],["name/425",[1,28.004]],["parent/425",[268,3.756]],["name/426",[104,51.358]],["parent/426",[268,3.756]],["name/427",[105,51.358]],["parent/427",[268,3.756]],["name/428",[269,62.344]],["parent/428",[268,3.756]],["name/429",[270,62.344]],["parent/429",[268,3.756]],["name/430",[106,51.358]],["parent/430",[268,3.756]],["name/431",[107,51.358]],["parent/431",[268,3.756]],["name/432",[271,51.358]],["parent/432",[268,3.756]],["name/433",[254,47.681]],["parent/433",[268,3.756]],["name/434",[83,30.155]],["parent/434",[268,3.756]],["name/435",[272,51.358]],["parent/435",[268,3.756]],["name/436",[273,51.358]],["parent/436",[268,3.756]],["name/437",[274,53.871]],["parent/437",[268,3.756]],["name/438",[250,44.998]],["parent/438",[268,3.756]],["name/439",[225,36.695]],["parent/439",[]],["name/440",[1,28.004]],["parent/440",[225,3.535]],["name/441",[2,38.365]],["parent/441",[225,3.535]],["name/442",[275,53.871]],["parent/442",[225,3.535]],["name/443",[276,53.871]],["parent/443",[225,3.535]],["name/444",[148,57.236]],["parent/444",[225,3.535]],["name/445",[24,35.718]],["parent/445",[225,3.535]],["name/446",[277,38.365]],["parent/446",[225,3.535]],["name/447",[278,40.372]],["parent/447",[225,3.535]],["name/448",[108,41.975]],["parent/448",[225,3.535]],["name/449",[83,30.155]],["parent/449",[225,3.535]],["name/450",[118,44.998]],["parent/450",[225,3.535]],["name/451",[168,51.358]],["parent/451",[225,3.535]],["name/452",[169,51.358]],["parent/452",[225,3.535]],["name/453",[170,51.358]],["parent/453",[225,3.535]],["name/454",[171,51.358]],["parent/454",[225,3.535]],["name/455",[172,51.358]],["parent/455",[225,3.535]],["name/456",[173,51.358]],["parent/456",[225,3.535]],["name/457",[279,46.25]],["parent/457",[]],["name/458",[280,57.236]],["parent/458",[279,4.455]],["name/459",[281,62.344]],["parent/459",[279,4.455]],["name/460",[282,62.344]],["parent/460",[279,4.455]],["name/461",[283,62.344]],["parent/461",[279,4.455]],["name/462",[284,62.344]],["parent/462",[279,4.455]],["name/463",[285,62.344]],["parent/463",[279,4.455]],["name/464",[286,43.886]],["parent/464",[]],["name/465",[1,28.004]],["parent/465",[286,4.228]],["name/466",[287,62.344]],["parent/466",[286,4.228]],["name/467",[288,62.344]],["parent/467",[286,4.228]],["name/468",[289,62.344]],["parent/468",[286,4.228]],["name/469",[290,62.344]],["parent/469",[286,4.228]],["name/470",[280,57.236]],["parent/470",[286,4.228]],["name/471",[291,62.344]],["parent/471",[286,4.228]],["name/472",[83,30.155]],["parent/472",[286,4.228]],["name/473",[292,53.871]],["parent/473",[]],["name/474",[293,62.344]],["parent/474",[292,5.19]],["name/475",[1,28.004]],["parent/475",[292,5.19]],["name/476",[226,34.829]],["parent/476",[]],["name/477",[1,28.004]],["parent/477",[226,3.355]],["name/478",[2,38.365]],["parent/478",[226,3.355]],["name/479",[294,57.236]],["parent/479",[226,3.355]],["name/480",[295,57.236]],["parent/480",[226,3.355]],["name/481",[5,46.25]],["parent/481",[226,3.355]],["name/482",[276,53.871]],["parent/482",[226,3.355]],["name/483",[296,57.236]],["parent/483",[226,3.355]],["name/484",[297,62.344]],["parent/484",[226,3.355]],["name/485",[298,62.344]],["parent/485",[226,3.355]],["name/486",[24,35.718]],["parent/486",[226,3.355]],["name/487",[273,51.358]],["parent/487",[226,3.355]],["name/488",[272,51.358]],["parent/488",[226,3.355]],["name/489",[27,46.25]],["parent/489",[226,3.355]],["name/490",[278,40.372]],["parent/490",[226,3.355]],["name/491",[250,44.998]],["parent/491",[226,3.355]],["name/492",[299,62.344]],["parent/492",[226,3.355]],["name/493",[300,62.344]],["parent/493",[226,3.355]],["name/494",[301,62.344]],["parent/494",[226,3.355]],["name/495",[302,62.344]],["parent/495",[226,3.355]],["name/496",[303,62.344]],["parent/496",[226,3.355]],["name/497",[83,30.155]],["parent/497",[226,3.355]],["name/498",[304,51.358]],["parent/498",[]],["name/499",[260,53.871]],["parent/499",[304,4.948]],["name/500",[305,62.344]],["parent/500",[304,4.948]],["name/501",[278,40.372]],["parent/501",[]],["name/502",[1,28.004]],["parent/502",[278,3.889]],["name/503",[295,57.236]],["parent/503",[278,3.889]],["name/504",[294,57.236]],["parent/504",[278,3.889]],["name/505",[306,62.344]],["parent/505",[278,3.889]],["name/506",[296,57.236]],["parent/506",[278,3.889]],["name/507",[272,51.358]],["parent/507",[278,3.889]],["name/508",[273,51.358]],["parent/508",[278,3.889]],["name/509",[274,53.871]],["parent/509",[278,3.889]],["name/510",[250,44.998]],["parent/510",[278,3.889]],["name/511",[307,51.358]],["parent/511",[]],["name/512",[308,62.344]],["parent/512",[307,4.948]],["name/513",[309,62.344]],["parent/513",[307,4.948]],["name/514",[255,57.236]],["parent/514",[307,4.948]],["name/515",[277,38.365]],["parent/515",[]],["name/516",[1,28.004]],["parent/516",[277,3.696]],["name/517",[310,62.344]],["parent/517",[277,3.696]],["name/518",[311,62.344]],["parent/518",[277,3.696]],["name/519",[263,57.236]],["parent/519",[277,3.696]],["name/520",[312,62.344]],["parent/520",[277,3.696]],["name/521",[206,57.236]],["parent/521",[277,3.696]],["name/522",[313,62.344]],["parent/522",[277,3.696]],["name/523",[314,57.236]],["parent/523",[277,3.696]],["name/524",[248,51.358]],["parent/524",[277,3.696]],["name/525",[247,53.871]],["parent/525",[277,3.696]],["name/526",[207,57.236]],["parent/526",[277,3.696]],["name/527",[83,30.155]],["parent/527",[277,3.696]],["name/528",[224,44.998]],["parent/528",[]],["name/529",[1,28.004]],["parent/529",[224,4.335]],["name/530",[2,38.365]],["parent/530",[224,4.335]],["name/531",[275,53.871]],["parent/531",[224,4.335]],["name/532",[24,35.718]],["parent/532",[224,4.335]],["name/533",[277,38.365]],["parent/533",[224,4.335]],["name/534",[83,30.155]],["parent/534",[224,4.335]],["name/535",[271,51.358]],["parent/535",[]],["name/536",[181,57.236]],["parent/536",[271,4.948]],["name/537",[315,62.344]],["parent/537",[271,4.948]],["name/538",[316,29.142]],["parent/538",[]],["name/539",[1,28.004]],["parent/539",[316,2.807]],["name/540",[2,38.365]],["parent/540",[316,2.807]],["name/541",[104,51.358]],["parent/541",[316,2.807]],["name/542",[105,51.358]],["parent/542",[316,2.807]],["name/543",[233,57.236]],["parent/543",[316,2.807]],["name/544",[276,53.871]],["parent/544",[316,2.807]],["name/545",[6,53.871]],["parent/545",[316,2.807]],["name/546",[317,62.344]],["parent/546",[316,2.807]],["name/547",[318,62.344]],["parent/547",[316,2.807]],["name/548",[319,62.344]],["parent/548",[316,2.807]],["name/549",[320,62.344]],["parent/549",[316,2.807]],["name/550",[321,62.344]],["parent/550",[316,2.807]],["name/551",[322,62.344]],["parent/551",[316,2.807]],["name/552",[11,57.236]],["parent/552",[316,2.807]],["name/553",[12,57.236]],["parent/553",[316,2.807]],["name/554",[323,62.344]],["parent/554",[316,2.807]],["name/555",[324,62.344]],["parent/555",[316,2.807]],["name/556",[24,35.718]],["parent/556",[316,2.807]],["name/557",[106,51.358]],["parent/557",[316,2.807]],["name/558",[107,51.358]],["parent/558",[316,2.807]],["name/559",[236,57.236]],["parent/559",[316,2.807]],["name/560",[278,40.372]],["parent/560",[316,2.807]],["name/561",[28,41.141]],["parent/561",[316,2.807]],["name/562",[325,62.344]],["parent/562",[316,2.807]],["name/563",[259,51.358]],["parent/563",[316,2.807]],["name/564",[304,51.358]],["parent/564",[316,2.807]],["name/565",[266,51.358]],["parent/565",[316,2.807]],["name/566",[326,62.344]],["parent/566",[316,2.807]],["name/567",[327,62.344]],["parent/567",[316,2.807]],["name/568",[328,62.344]],["parent/568",[316,2.807]],["name/569",[329,62.344]],["parent/569",[316,2.807]],["name/570",[330,62.344]],["parent/570",[316,2.807]],["name/571",[262,44.998]],["parent/571",[316,2.807]],["name/572",[83,30.155]],["parent/572",[316,2.807]],["name/573",[168,51.358]],["parent/573",[316,2.807]],["name/574",[169,51.358]],["parent/574",[316,2.807]],["name/575",[170,51.358]],["parent/575",[316,2.807]],["name/576",[171,51.358]],["parent/576",[316,2.807]],["name/577",[172,51.358]],["parent/577",[316,2.807]],["name/578",[173,51.358]],["parent/578",[316,2.807]],["name/579",[331,41.141]],["parent/579",[]],["name/580",[1,28.004]],["parent/580",[331,3.963]],["name/581",[5,46.25]],["parent/581",[331,3.963]],["name/582",[189,53.871]],["parent/582",[331,3.963]],["name/583",[27,46.25]],["parent/583",[331,3.963]],["name/584",[190,53.871]],["parent/584",[331,3.963]],["name/585",[83,30.155]],["parent/585",[331,3.963]],["name/586",[91,41.975]],["parent/586",[331,3.963]],["name/587",[24,35.718]],["parent/587",[331,3.963]],["name/588",[116,47.681]],["parent/588",[331,3.963]],["name/589",[117,47.681]],["parent/589",[331,3.963]],["name/590",[118,44.998]],["parent/590",[331,3.963]],["name/591",[332,49.351]],["parent/591",[]],["name/592",[247,53.871]],["parent/592",[332,4.754]],["name/593",[333,62.344]],["parent/593",[332,4.754]],["name/594",[248,51.358]],["parent/594",[332,4.754]],["name/595",[314,57.236]],["parent/595",[332,4.754]],["name/596",[334,42.885]],["parent/596",[]],["name/597",[1,28.004]],["parent/597",[334,4.131]],["name/598",[85,47.681]],["parent/598",[334,4.131]],["name/599",[91,41.975]],["parent/599",[334,4.131]],["name/600",[335,62.344]],["parent/600",[334,4.131]],["name/601",[83,30.155]],["parent/601",[334,4.131]],["name/602",[272,51.358]],["parent/602",[334,4.131]],["name/603",[273,51.358]],["parent/603",[334,4.131]],["name/604",[274,53.871]],["parent/604",[334,4.131]],["name/605",[250,44.998]],["parent/605",[334,4.131]],["name/606",[227,42.885]],["parent/606",[]],["name/607",[1,28.004]],["parent/607",[227,4.131]],["name/608",[85,47.681]],["parent/608",[227,4.131]],["name/609",[336,62.344]],["parent/609",[227,4.131]],["name/610",[337,62.344]],["parent/610",[227,4.131]],["name/611",[91,41.975]],["parent/611",[227,4.131]],["name/612",[338,62.344]],["parent/612",[227,4.131]],["name/613",[339,62.344]],["parent/613",[227,4.131]],["name/614",[83,30.155]],["parent/614",[227,4.131]],["name/615",[340,51.358]],["parent/615",[]],["name/616",[261,57.236]],["parent/616",[340,4.948]],["name/617",[134,57.236]],["parent/617",[340,4.948]],["name/618",[341,62.344]],["parent/618",[340,4.948]],["name/619",[342,46.25]],["parent/619",[]],["name/620",[1,28.004]],["parent/620",[342,4.455]],["name/621",[2,38.365]],["parent/621",[342,4.455]],["name/622",[275,53.871]],["parent/622",[342,4.455]],["name/623",[24,35.718]],["parent/623",[342,4.455]],["name/624",[277,38.365]],["parent/624",[342,4.455]],["name/625",[83,30.155]],["parent/625",[342,4.455]],["name/626",[343,29.142]],["parent/626",[]],["name/627",[344,62.344]],["parent/627",[343,2.807]],["name/628",[345,62.344]],["parent/628",[343,2.807]],["name/629",[346,62.344]],["parent/629",[343,2.807]],["name/630",[347,62.344]],["parent/630",[343,2.807]],["name/631",[348,62.344]],["parent/631",[343,2.807]],["name/632",[1,28.004]],["parent/632",[343,2.807]],["name/633",[349,29.386]],["parent/633",[343,2.807]],["name/634",[350,62.344]],["parent/634",[343,2.807]],["name/635",[351,62.344]],["parent/635",[343,2.807]],["name/636",[352,62.344]],["parent/636",[343,2.807]],["name/637",[353,62.344]],["parent/637",[343,2.807]],["name/638",[354,62.344]],["parent/638",[343,2.807]],["name/639",[355,62.344]],["parent/639",[343,2.807]],["name/640",[356,62.344]],["parent/640",[343,2.807]],["name/641",[357,62.344]],["parent/641",[343,2.807]],["name/642",[358,62.344]],["parent/642",[343,2.807]],["name/643",[359,62.344]],["parent/643",[343,2.807]],["name/644",[360,62.344]],["parent/644",[343,2.807]],["name/645",[361,62.344]],["parent/645",[343,2.807]],["name/646",[362,62.344]],["parent/646",[343,2.807]],["name/647",[363,62.344]],["parent/647",[343,2.807]],["name/648",[364,62.344]],["parent/648",[343,2.807]],["name/649",[365,62.344]],["parent/649",[343,2.807]],["name/650",[366,62.344]],["parent/650",[343,2.807]],["name/651",[367,62.344]],["parent/651",[343,2.807]],["name/652",[368,62.344]],["parent/652",[343,2.807]],["name/653",[369,62.344]],["parent/653",[343,2.807]],["name/654",[370,62.344]],["parent/654",[343,2.807]],["name/655",[371,62.344]],["parent/655",[343,2.807]],["name/656",[372,62.344]],["parent/656",[343,2.807]],["name/657",[373,62.344]],["parent/657",[343,2.807]],["name/658",[374,62.344]],["parent/658",[343,2.807]],["name/659",[375,62.344]],["parent/659",[343,2.807]],["name/660",[376,62.344]],["parent/660",[343,2.807]],["name/661",[377,62.344]],["parent/661",[343,2.807]],["name/662",[378,62.344]],["parent/662",[343,2.807]],["name/663",[379,57.236]],["parent/663",[343,2.807]],["name/664",[380,62.344]],["parent/664",[343,2.807]],["name/665",[381,62.344]],["parent/665",[343,2.807]],["name/666",[382,62.344]],["parent/666",[343,2.807]],["name/667",[349,29.386]],["parent/667",[]],["name/668",[1,28.004]],["parent/668",[349,2.831]],["name/669",[383,62.344]],["parent/669",[349,2.831]],["name/670",[384,62.344]],["parent/670",[349,2.831]],["name/671",[385,62.344]],["parent/671",[349,2.831]],["name/672",[379,57.236]],["parent/672",[349,2.831]],["name/673",[386,62.344]],["parent/673",[349,2.831]],["name/674",[387,62.344]],["parent/674",[349,2.831]],["name/675",[388,62.344]],["parent/675",[349,2.831]],["name/676",[389,62.344]],["parent/676",[349,2.831]],["name/677",[390,62.344]],["parent/677",[349,2.831]],["name/678",[391,62.344]],["parent/678",[349,2.831]],["name/679",[392,62.344]],["parent/679",[349,2.831]],["name/680",[393,62.344]],["parent/680",[349,2.831]],["name/681",[394,62.344]],["parent/681",[349,2.831]],["name/682",[395,62.344]],["parent/682",[349,2.831]],["name/683",[396,62.344]],["parent/683",[349,2.831]],["name/684",[397,62.344]],["parent/684",[349,2.831]],["name/685",[398,62.344]],["parent/685",[349,2.831]],["name/686",[399,62.344]],["parent/686",[349,2.831]],["name/687",[400,62.344]],["parent/687",[349,2.831]],["name/688",[401,62.344]],["parent/688",[349,2.831]],["name/689",[402,62.344]],["parent/689",[349,2.831]],["name/690",[403,62.344]],["parent/690",[349,2.831]],["name/691",[404,62.344]],["parent/691",[349,2.831]],["name/692",[405,62.344]],["parent/692",[349,2.831]],["name/693",[406,62.344]],["parent/693",[349,2.831]],["name/694",[407,62.344]],["parent/694",[349,2.831]],["name/695",[408,62.344]],["parent/695",[349,2.831]],["name/696",[409,62.344]],["parent/696",[349,2.831]],["name/697",[410,62.344]],["parent/697",[349,2.831]],["name/698",[411,62.344]],["parent/698",[349,2.831]],["name/699",[412,62.344]],["parent/699",[349,2.831]],["name/700",[413,62.344]],["parent/700",[349,2.831]],["name/701",[414,62.344]],["parent/701",[349,2.831]],["name/702",[415,62.344]],["parent/702",[349,2.831]],["name/703",[416,62.344]],["parent/703",[349,2.831]],["name/704",[417,62.344]],["parent/704",[349,2.831]],["name/705",[418,62.344]],["parent/705",[349,2.831]],["name/706",[419,38.99]],["parent/706",[]],["name/707",[1,28.004]],["parent/707",[419,3.756]],["name/708",[420,62.344]],["parent/708",[419,3.756]],["name/709",[421,62.344]],["parent/709",[419,3.756]],["name/710",[422,62.344]],["parent/710",[419,3.756]],["name/711",[423,62.344]],["parent/711",[419,3.756]],["name/712",[424,62.344]],["parent/712",[419,3.756]],["name/713",[425,62.344]],["parent/713",[419,3.756]],["name/714",[426,62.344]],["parent/714",[419,3.756]],["name/715",[427,62.344]],["parent/715",[419,3.756]],["name/716",[428,62.344]],["parent/716",[419,3.756]],["name/717",[429,62.344]],["parent/717",[419,3.756]],["name/718",[430,62.344]],["parent/718",[419,3.756]],["name/719",[431,62.344]],["parent/719",[419,3.756]],["name/720",[432,62.344]],["parent/720",[419,3.756]],["name/721",[433,32.555]],["parent/721",[]],["name/722",[434,62.344]],["parent/722",[433,3.136]],["name/723",[1,28.004]],["parent/723",[433,3.136]],["name/724",[435,57.236]],["parent/724",[433,3.136]],["name/725",[436,38.99]],["parent/725",[433,3.136]],["name/726",[437,62.344]],["parent/726",[433,3.136]],["name/727",[438,62.344]],["parent/727",[433,3.136]],["name/728",[439,62.344]],["parent/728",[433,3.136]],["name/729",[440,62.344]],["parent/729",[433,3.136]],["name/730",[441,62.344]],["parent/730",[433,3.136]],["name/731",[442,62.344]],["parent/731",[433,3.136]],["name/732",[443,62.344]],["parent/732",[433,3.136]],["name/733",[444,62.344]],["parent/733",[433,3.136]],["name/734",[445,62.344]],["parent/734",[433,3.136]],["name/735",[446,62.344]],["parent/735",[433,3.136]],["name/736",[447,62.344]],["parent/736",[433,3.136]],["name/737",[448,62.344]],["parent/737",[433,3.136]],["name/738",[449,62.344]],["parent/738",[433,3.136]],["name/739",[450,62.344]],["parent/739",[433,3.136]],["name/740",[451,62.344]],["parent/740",[433,3.136]],["name/741",[452,62.344]],["parent/741",[433,3.136]],["name/742",[453,62.344]],["parent/742",[433,3.136]],["name/743",[454,62.344]],["parent/743",[433,3.136]],["name/744",[455,62.344]],["parent/744",[433,3.136]],["name/745",[456,62.344]],["parent/745",[433,3.136]],["name/746",[457,62.344]],["parent/746",[433,3.136]],["name/747",[458,62.344]],["parent/747",[433,3.136]],["name/748",[459,62.344]],["parent/748",[433,3.136]],["name/749",[460,62.344]],["parent/749",[433,3.136]],["name/750",[436,38.99]],["parent/750",[]],["name/751",[461,62.344]],["parent/751",[436,3.756]],["name/752",[1,28.004]],["parent/752",[436,3.756]],["name/753",[462,62.344]],["parent/753",[436,3.756]],["name/754",[463,62.344]],["parent/754",[436,3.756]],["name/755",[435,57.236]],["parent/755",[436,3.756]],["name/756",[464,62.344]],["parent/756",[436,3.756]],["name/757",[465,62.344]],["parent/757",[436,3.756]],["name/758",[466,62.344]],["parent/758",[436,3.756]],["name/759",[467,62.344]],["parent/759",[436,3.756]],["name/760",[468,62.344]],["parent/760",[436,3.756]],["name/761",[469,62.344]],["parent/761",[436,3.756]],["name/762",[470,62.344]],["parent/762",[436,3.756]],["name/763",[471,62.344]],["parent/763",[436,3.756]]],"invertedIndex":[["_actionref",{"_index":152,"name":{"167":{}},"parent":{}}],["_actionrefs",{"_index":289,"name":{"468":{}},"parent":{}}],["_alignment",{"_index":296,"name":{"483":{},"506":{}},"parent":{}}],["_allowednets",{"_index":154,"name":{"169":{}},"parent":{}}],["_anonymousrole",{"_index":8,"name":{"8":{}},"parent":{}}],["_appearance",{"_index":270,"name":{"429":{}},"parent":{}}],["_arcs",{"_index":23,"name":{"23":{}},"parent":{}}],["_assign",{"_index":312,"name":{"520":{}},"parent":{}}],["_assigneduser",{"_index":324,"name":{"555":{}},"parent":{}}],["_assignpolicy",{"_index":318,"name":{"547":{}},"parent":{}}],["_behavior",{"_index":287,"name":{"466":{}},"parent":{}}],["_breakpoints",{"_index":90,"name":{"92":{}},"parent":{}}],["_cancel",{"_index":263,"name":{"416":{},"519":{}},"parent":{}}],["_caseevents",{"_index":14,"name":{"14":{}},"parent":{}}],["_caselogic",{"_index":242,"name":{"356":{},"363":{}},"parent":{}}],["_casename",{"_index":10,"name":{"10":{}},"parent":{}}],["_cols",{"_index":294,"name":{"479":{},"504":{}},"parent":{}}],["_component",{"_index":148,"name":{"162":{},"444":{}},"parent":{}}],["_create",{"_index":204,"name":{"280":{}},"parent":{}}],["_data",{"_index":18,"name":{"18":{}},"parent":{}}],["_datafocuspolicy",{"_index":320,"name":{"549":{}},"parent":{}}],["_datagroup",{"_index":221,"name":{"310":{}},"parent":{}}],["_datagroups",{"_index":323,"name":{"554":{}},"parent":{}}],["_dataref",{"_index":220,"name":{"309":{}},"parent":{}}],["_datarefs",{"_index":298,"name":{"485":{}},"parent":{}}],["_defaultrole",{"_index":7,"name":{"7":{}},"parent":{}}],["_definition",{"_index":197,"name":{"263":{},"323":{}},"parent":{}}],["_delay",{"_index":336,"name":{"609":{}},"parent":{}}],["_delegate",{"_index":311,"name":{"518":{}},"parent":{}}],["_delete",{"_index":205,"name":{"281":{}},"parent":{}}],["_desc",{"_index":142,"name":{"156":{}},"parent":{}}],["_destination",{"_index":87,"name":{"89":{}},"parent":{}}],["_dynamic",{"_index":175,"name":{"197":{},"255":{}},"parent":{}}],["_encryption",{"_index":150,"name":{"165":{}},"parent":{}}],["_errors",{"_index":421,"name":{"709":{}},"parent":{}}],["_exact",{"_index":337,"name":{"610":{}},"parent":{}}],["_expression",{"_index":176,"name":{"198":{},"231":{}},"parent":{}}],["_filename",{"_index":424,"name":{"712":{}},"parent":{}}],["_finishpolicy",{"_index":319,"name":{"548":{}},"parent":{}}],["_functions",{"_index":17,"name":{"17":{}},"parent":{}}],["_i18ns",{"_index":20,"name":{"20":{},"246":{}},"parent":{}}],["_icon",{"_index":6,"name":{"6":{},"205":{},"545":{}},"parent":{}}],["_icons",{"_index":111,"name":{"117":{}},"parent":{}}],["_id",{"_index":2,"name":{"2":{},"86":{},"153":{},"262":{},"290":{},"306":{},"330":{},"355":{},"362":{},"369":{},"397":{},"441":{},"478":{},"530":{},"540":{},"621":{}},"parent":{}}],["_immediate",{"_index":149,"name":{"164":{}},"parent":{}}],["_info",{"_index":423,"name":{"711":{}},"parent":{}}],["_init",{"_index":146,"name":{"160":{}},"parent":{}}],["_initials",{"_index":4,"name":{"4":{}},"parent":{}}],["_inits",{"_index":147,"name":{"161":{}},"parent":{}}],["_key",{"_index":178,"name":{"204":{},"217":{},"224":{}},"parent":{}}],["_label",{"_index":233,"name":{"334":{},"543":{}},"parent":{}}],["_layout",{"_index":276,"name":{"443":{},"482":{},"544":{}},"parent":{}}],["_length",{"_index":153,"name":{"168":{}},"parent":{}}],["_locale",{"_index":193,"name":{"245":{}},"parent":{}}],["_logic",{"_index":275,"name":{"442":{},"531":{},"622":{}},"parent":{}}],["_mappings",{"_index":19,"name":{"19":{}},"parent":{}}],["_marking",{"_index":234,"name":{"335":{}},"parent":{}}],["_message",{"_index":189,"name":{"232":{},"383":{},"582":{}},"parent":{}}],["_model",{"_index":420,"name":{"708":{}},"parent":{}}],["_multiplicity",{"_index":88,"name":{"90":{}},"parent":{}}],["_name",{"_index":109,"name":{"115":{},"238":{},"321":{}},"parent":{}}],["_offset",{"_index":306,"name":{"505":{}},"parent":{}}],["_options",{"_index":143,"name":{"157":{}},"parent":{}}],["_optionsinit",{"_index":144,"name":{"158":{}},"parent":{}}],["_perform",{"_index":310,"name":{"517":{}},"parent":{}}],["_placeholder",{"_index":141,"name":{"155":{}},"parent":{}}],["_places",{"_index":22,"name":{"22":{}},"parent":{}}],["_postactions",{"_index":210,"name":{"292":{}},"parent":{}}],["_preactions",{"_index":209,"name":{"291":{}},"parent":{}}],["_priority",{"_index":317,"name":{"546":{}},"parent":{}}],["_processevents",{"_index":13,"name":{"13":{}},"parent":{}}],["_properties",{"_index":110,"name":{"116":{}},"parent":{}}],["_reassign",{"_index":264,"name":{"417":{}},"parent":{}}],["_reference",{"_index":89,"name":{"91":{}},"parent":{}}],["_remote",{"_index":151,"name":{"166":{}},"parent":{}}],["_required",{"_index":288,"name":{"467":{}},"parent":{}}],["_roleref",{"_index":219,"name":{"308":{}},"parent":{}}],["_rolerefs",{"_index":11,"name":{"11":{},"552":{}},"parent":{}}],["_roles",{"_index":16,"name":{"16":{}},"parent":{}}],["_rows",{"_index":295,"name":{"480":{},"503":{}},"parent":{}}],["_scope",{"_index":229,"name":{"322":{}},"parent":{}}],["_source",{"_index":86,"name":{"88":{}},"parent":{}}],["_static",{"_index":232,"name":{"331":{}},"parent":{}}],["_stretch",{"_index":297,"name":{"484":{}},"parent":{}}],["_template",{"_index":269,"name":{"428":{}},"parent":{}}],["_title",{"_index":5,"name":{"5":{},"154":{},"370":{},"382":{},"398":{},"481":{},"581":{}},"parent":{}}],["_transactionref",{"_index":322,"name":{"551":{}},"parent":{}}],["_transactions",{"_index":15,"name":{"15":{}},"parent":{}}],["_transitionref",{"_index":218,"name":{"307":{}},"parent":{}}],["_transitionrole",{"_index":9,"name":{"9":{}},"parent":{}}],["_transitions",{"_index":21,"name":{"21":{}},"parent":{}}],["_trigger",{"_index":222,"name":{"311":{}},"parent":{}}],["_triggers",{"_index":321,"name":{"550":{}},"parent":{}}],["_type",{"_index":85,"name":{"87":{},"163":{},"206":{},"289":{},"598":{},"608":{}},"parent":{}}],["_userrefs",{"_index":12,"name":{"12":{},"553":{}},"parent":{}}],["_validations",{"_index":145,"name":{"159":{}},"parent":{}}],["_value",{"_index":185,"name":{"218":{},"225":{},"239":{}},"parent":{}}],["_version",{"_index":3,"name":{"3":{}},"parent":{}}],["_view",{"_index":206,"name":{"282":{},"521":{}},"parent":{}}],["_warnings",{"_index":422,"name":{"710":{}},"parent":{}}],["_x",{"_index":104,"name":{"109":{},"332":{},"426":{},"541":{}},"parent":{}}],["_y",{"_index":105,"name":{"110":{},"333":{},"427":{},"542":{}},"parent":{}}],["action",{"_index":196,"name":{"260":{}},"parent":{"261":{},"262":{},"263":{},"264":{},"265":{},"266":{}}}],["actionidcounter",{"_index":384,"name":{"670":{}},"parent":{}}],["actionref",{"_index":165,"name":{"184":{}},"parent":{}}],["actionrefs",{"_index":291,"name":{"471":{}},"parent":{}}],["addaction",{"_index":118,"name":{"129":{},"188":{},"274":{},"297":{},"350":{},"391":{},"450":{},"590":{}},"parent":{}}],["addarc",{"_index":81,"name":{"81":{}},"parent":{}}],["addcaseevent",{"_index":47,"name":{"47":{}},"parent":{}}],["adddata",{"_index":61,"name":{"61":{}},"parent":{}}],["adddataref",{"_index":302,"name":{"495":{}},"parent":{}}],["adderror",{"_index":427,"name":{"715":{}},"parent":{}}],["addevent",{"_index":171,"name":{"192":{},"377":{},"454":{},"576":{}},"parent":{}}],["addfunction",{"_index":58,"name":{"58":{}},"parent":{}}],["addi18n",{"_index":69,"name":{"69":{},"250":{}},"parent":{}}],["addinfo",{"_index":431,"name":{"719":{}},"parent":{}}],["addmapping",{"_index":65,"name":{"65":{}},"parent":{}}],["addplace",{"_index":77,"name":{"77":{}},"parent":{}}],["addprocessevent",{"_index":43,"name":{"43":{}},"parent":{}}],["addrole",{"_index":55,"name":{"55":{}},"parent":{}}],["addroleref",{"_index":35,"name":{"35":{}},"parent":{}}],["addtransaction",{"_index":51,"name":{"51":{}},"parent":{}}],["addtransition",{"_index":73,"name":{"73":{}},"parent":{}}],["adduserref",{"_index":39,"name":{"39":{}},"parent":{}}],["addwarning",{"_index":429,"name":{"717":{}},"parent":{}}],["alignment",{"_index":250,"name":{"402":{},"438":{},"491":{},"510":{},"605":{}},"parent":{"403":{},"404":{},"405":{}}}],["allowednets",{"_index":167,"name":{"186":{}},"parent":{}}],["anonymous_role_default_value",{"_index":346,"name":{"629":{}},"parent":{}}],["anonymousrole",{"_index":30,"name":{"30":{}},"parent":{}}],["appearance",{"_index":254,"name":{"406":{},"433":{}},"parent":{"407":{},"408":{},"409":{},"410":{}}}],["arc",{"_index":84,"name":{"84":{}},"parent":{"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{}}}],["arctype",{"_index":97,"name":{"101":{}},"parent":{"102":{},"103":{},"104":{},"105":{},"106":{}}}],["assign",{"_index":247,"name":{"393":{},"525":{},"592":{}},"parent":{}}],["assigneduser",{"_index":262,"name":{"414":{},"571":{}},"parent":{"415":{},"416":{},"417":{},"418":{},"419":{},"420":{}}}],["assignpolicy",{"_index":259,"name":{"411":{},"563":{}},"parent":{"412":{},"413":{}}}],["attachreference",{"_index":399,"name":{"686":{}},"parent":{}}],["auto",{"_index":261,"name":{"413":{},"616":{}},"parent":{}}],["auto_empty_required",{"_index":267,"name":{"423":{}},"parent":{}}],["auto_no_data",{"_index":305,"name":{"500":{}},"parent":{}}],["behavior",{"_index":290,"name":{"469":{}},"parent":{}}],["behaviors",{"_index":293,"name":{"474":{}},"parent":{}}],["boolean",{"_index":129,"name":{"140":{}},"parent":{}}],["bottom",{"_index":253,"name":{"405":{}},"parent":{}}],["breakpoint",{"_index":103,"name":{"107":{}},"parent":{"108":{},"109":{},"110":{},"111":{},"112":{}}}],["breakpoints",{"_index":96,"name":{"99":{}},"parent":{}}],["button",{"_index":136,"name":{"147":{}},"parent":{}}],["cancel",{"_index":248,"name":{"394":{},"418":{},"524":{},"594":{}},"parent":{}}],["case_ref",{"_index":138,"name":{"149":{}},"parent":{}}],["caseevent",{"_index":199,"name":{"267":{}},"parent":{"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{}}}],["caseeventtype",{"_index":200,"name":{"275":{}},"parent":{"276":{},"277":{}}}],["caselogic",{"_index":203,"name":{"278":{},"358":{},"365":{}},"parent":{"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{}}}],["casename",{"_index":32,"name":{"32":{}},"parent":{}}],["cdata_regret",{"_index":462,"name":{"753":{}},"parent":{}}],["center",{"_index":252,"name":{"404":{}},"parent":{}}],["checki18n",{"_index":348,"name":{"631":{}},"parent":{}}],["checki18ns",{"_index":382,"name":{"666":{}},"parent":{}}],["checklengthandnodes",{"_index":410,"name":{"697":{}},"parent":{}}],["checkvariability",{"_index":398,"name":{"685":{}},"parent":{}}],["clone",{"_index":83,"name":{"83":{},"100":{},"121":{},"124":{},"187":{},"201":{},"210":{},"221":{},"228":{},"235":{},"242":{},"252":{},"257":{},"266":{},"269":{},"286":{},"318":{},"327":{},"342":{},"345":{},"359":{},"366":{},"373":{},"386":{},"401":{},"420":{},"434":{},"449":{},"472":{},"497":{},"527":{},"534":{},"572":{},"585":{},"601":{},"614":{},"625":{}},"parent":{}}],["cols",{"_index":273,"name":{"436":{},"487":{},"508":{},"603":{}},"parent":{}}],["comment_regret",{"_index":463,"name":{"754":{}},"parent":{}}],["component",{"_index":108,"name":{"113":{},"179":{},"448":{}},"parent":{"114":{},"115":{},"116":{},"117":{},"118":{},"119":{},"120":{},"121":{}}}],["constructor",{"_index":1,"name":{"1":{},"85":{},"108":{},"114":{},"123":{},"152":{},"196":{},"203":{},"216":{},"223":{},"230":{},"237":{},"244":{},"254":{},"261":{},"268":{},"279":{},"288":{},"305":{},"320":{},"329":{},"344":{},"354":{},"361":{},"368":{},"381":{},"396":{},"415":{},"425":{},"440":{},"465":{},"475":{},"477":{},"502":{},"516":{},"529":{},"539":{},"580":{},"597":{},"607":{},"620":{},"632":{},"668":{},"707":{},"723":{},"752":{}},"parent":{}}],["create",{"_index":201,"name":{"276":{},"283":{}},"parent":{}}],["dataevent",{"_index":115,"name":{"122":{}},"parent":{"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{}}}],["dataeventtype",{"_index":119,"name":{"130":{}},"parent":{"131":{},"132":{}}}],["datafocuspolicy",{"_index":266,"name":{"421":{},"565":{}},"parent":{"422":{},"423":{}}}],["datagroup",{"_index":226,"name":{"316":{},"476":{}},"parent":{"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{}}}],["datagroups",{"_index":330,"name":{"570":{}},"parent":{}}],["datalayout",{"_index":268,"name":{"424":{}},"parent":{"425":{},"426":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{}}}],["dataref",{"_index":225,"name":{"315":{},"439":{}},"parent":{"440":{},"441":{},"442":{},"443":{},"444":{},"445":{},"446":{},"447":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{}}}],["datarefbehavior",{"_index":279,"name":{"457":{}},"parent":{"458":{},"459":{},"460":{},"461":{},"462":{},"463":{}}}],["datareflogic",{"_index":286,"name":{"464":{}},"parent":{"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{}}}],["datareflogicutil",{"_index":292,"name":{"473":{}},"parent":{"474":{},"475":{}}}],["datatype",{"_index":122,"name":{"133":{}},"parent":{"134":{},"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{}}}],["datavariable",{"_index":140,"name":{"151":{}},"parent":{"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{},"194":{}}}],["date",{"_index":130,"name":{"141":{}},"parent":{}}],["datetime",{"_index":131,"name":{"142":{}},"parent":{}}],["default_role_default_value",{"_index":345,"name":{"628":{}},"parent":{}}],["defaultrole",{"_index":29,"name":{"29":{}},"parent":{}}],["definition",{"_index":198,"name":{"265":{},"326":{}},"parent":{}}],["delay",{"_index":338,"name":{"612":{}},"parent":{}}],["delegate",{"_index":314,"name":{"523":{},"595":{}},"parent":{}}],["delete",{"_index":202,"name":{"277":{},"284":{}},"parent":{}}],["desc",{"_index":156,"name":{"173":{}},"parent":{}}],["destination",{"_index":93,"name":{"96":{}},"parent":{}}],["dynamic",{"_index":177,"name":{"199":{},"256":{}},"parent":{}}],["editable",{"_index":283,"name":{"461":{}},"parent":{}}],["empty",{"_index":335,"name":{"600":{}},"parent":{}}],["encryption",{"_index":163,"name":{"182":{}},"parent":{}}],["enumeration",{"_index":125,"name":{"136":{}},"parent":{}}],["enumeration_map",{"_index":126,"name":{"137":{}},"parent":{}}],["errors",{"_index":426,"name":{"714":{}},"parent":{}}],["escapeaction",{"_index":469,"name":{"761":{}},"parent":{}}],["event",{"_index":208,"name":{"287":{}},"parent":{"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{}}}],["eventidcounter",{"_index":383,"name":{"669":{}},"parent":{}}],["eventphase",{"_index":211,"name":{"298":{}},"parent":{"299":{},"300":{}}}],["events",{"_index":168,"name":{"189":{},"374":{},"451":{},"573":{}},"parent":{}}],["exact",{"_index":339,"name":{"613":{}},"parent":{}}],["exportaction",{"_index":467,"name":{"759":{}},"parent":{}}],["exportactions",{"_index":466,"name":{"758":{}},"parent":{}}],["exportarcs",{"_index":459,"name":{"748":{}},"parent":{}}],["exportbreakpoints",{"_index":460,"name":{"749":{}},"parent":{}}],["exportcaselogic",{"_index":471,"name":{"763":{}},"parent":{}}],["exportcomponent",{"_index":453,"name":{"742":{}},"parent":{}}],["exportdata",{"_index":449,"name":{"738":{}},"parent":{}}],["exportdatagroup",{"_index":457,"name":{"746":{}},"parent":{}}],["exportdataref",{"_index":452,"name":{"741":{}},"parent":{}}],["exportdatareflayout",{"_index":454,"name":{"743":{}},"parent":{}}],["exportevent",{"_index":444,"name":{"733":{}},"parent":{}}],["exportexpression",{"_index":465,"name":{"757":{}},"parent":{}}],["exportfunction",{"_index":468,"name":{"760":{}},"parent":{}}],["exportfunctions",{"_index":443,"name":{"732":{}},"parent":{}}],["exporti18n",{"_index":450,"name":{"739":{}},"parent":{}}],["exportlayout",{"_index":456,"name":{"745":{}},"parent":{}}],["exportlogic",{"_index":470,"name":{"762":{}},"parent":{}}],["exportmodel",{"_index":440,"name":{"729":{}},"parent":{}}],["exportplaces",{"_index":458,"name":{"747":{}},"parent":{}}],["exportprocessevents",{"_index":448,"name":{"737":{}},"parent":{}}],["exportprocessref",{"_index":446,"name":{"735":{}},"parent":{}}],["exportprocessrefs",{"_index":445,"name":{"734":{}},"parent":{}}],["exportroles",{"_index":442,"name":{"731":{}},"parent":{}}],["exportservice",{"_index":433,"name":{"721":{}},"parent":{"722":{},"723":{},"724":{},"725":{},"726":{},"727":{},"728":{},"729":{},"730":{},"731":{},"732":{},"733":{},"734":{},"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{}}}],["exporttag",{"_index":464,"name":{"756":{}},"parent":{}}],["exporttransactions",{"_index":441,"name":{"730":{}},"parent":{}}],["exporttransitionlayout",{"_index":455,"name":{"744":{}},"parent":{}}],["exporttransitionref",{"_index":447,"name":{"736":{}},"parent":{}}],["exporttransitions",{"_index":451,"name":{"740":{}},"parent":{}}],["exportutils",{"_index":436,"name":{"725":{},"750":{}},"parent":{"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"759":{},"760":{},"761":{},"762":{},"763":{}}}],["exportxml",{"_index":437,"name":{"726":{}},"parent":{}}],["expression",{"_index":174,"name":{"195":{},"200":{},"233":{}},"parent":{"196":{},"197":{},"198":{},"199":{},"200":{},"201":{}}}],["file",{"_index":132,"name":{"143":{}},"parent":{}}],["file_list",{"_index":133,"name":{"144":{}},"parent":{}}],["filename",{"_index":432,"name":{"720":{}},"parent":{}}],["fill",{"_index":257,"name":{"409":{}},"parent":{}}],["filter",{"_index":139,"name":{"150":{}},"parent":{}}],["finish",{"_index":333,"name":{"593":{}},"parent":{}}],["finishpolicy",{"_index":304,"name":{"498":{},"564":{}},"parent":{"499":{},"500":{}}}],["flow",{"_index":308,"name":{"512":{}},"parent":{}}],["forbidden",{"_index":285,"name":{"463":{}},"parent":{}}],["functions",{"_index":57,"name":{"57":{}},"parent":{}}],["functionscope",{"_index":214,"name":{"301":{}},"parent":{"302":{},"303":{}}}],["generatexml",{"_index":439,"name":{"728":{}},"parent":{}}],["get",{"_index":121,"name":{"132":{}},"parent":{}}],["getarc",{"_index":80,"name":{"80":{}},"parent":{}}],["getarcs",{"_index":79,"name":{"79":{}},"parent":{}}],["getcaseevent",{"_index":46,"name":{"46":{}},"parent":{}}],["getcaseevents",{"_index":45,"name":{"45":{}},"parent":{}}],["getdata",{"_index":60,"name":{"60":{}},"parent":{}}],["getdataref",{"_index":301,"name":{"494":{}},"parent":{}}],["getdatarefs",{"_index":300,"name":{"493":{}},"parent":{}}],["getdataset",{"_index":59,"name":{"59":{}},"parent":{}}],["getevent",{"_index":170,"name":{"191":{},"376":{},"453":{},"575":{}},"parent":{}}],["getevents",{"_index":169,"name":{"190":{},"375":{},"452":{},"574":{}},"parent":{}}],["geti18n",{"_index":68,"name":{"68":{},"249":{}},"parent":{}}],["geti18ns",{"_index":67,"name":{"67":{},"248":{}},"parent":{}}],["getmapping",{"_index":64,"name":{"64":{}},"parent":{}}],["getmappings",{"_index":63,"name":{"63":{}},"parent":{}}],["getnextactionid",{"_index":415,"name":{"702":{}},"parent":{}}],["getnexteventid",{"_index":414,"name":{"701":{}},"parent":{}}],["getplace",{"_index":76,"name":{"76":{}},"parent":{}}],["getplaces",{"_index":75,"name":{"75":{}},"parent":{}}],["getprocessevent",{"_index":42,"name":{"42":{}},"parent":{}}],["getprocessevents",{"_index":41,"name":{"41":{}},"parent":{}}],["getrole",{"_index":54,"name":{"54":{}},"parent":{}}],["getroleref",{"_index":34,"name":{"34":{}},"parent":{}}],["getrolerefs",{"_index":33,"name":{"33":{}},"parent":{}}],["getroles",{"_index":53,"name":{"53":{}},"parent":{}}],["gettransaction",{"_index":50,"name":{"50":{}},"parent":{}}],["gettransactions",{"_index":49,"name":{"49":{}},"parent":{}}],["gettransition",{"_index":72,"name":{"72":{}},"parent":{}}],["gettransitions",{"_index":71,"name":{"71":{}},"parent":{}}],["getuserref",{"_index":38,"name":{"38":{}},"parent":{}}],["getuserrefs",{"_index":37,"name":{"37":{}},"parent":{}}],["grid",{"_index":309,"name":{"513":{}},"parent":{}}],["hidden",{"_index":284,"name":{"462":{}},"parent":{}}],["i18nstring",{"_index":191,"name":{"236":{}},"parent":{"237":{},"238":{},"239":{},"240":{},"241":{},"242":{}}}],["i18ntranslations",{"_index":192,"name":{"243":{}},"parent":{"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{}}}],["i18nwithdynamic",{"_index":195,"name":{"253":{}},"parent":{"254":{},"255":{},"256":{},"257":{},"258":{},"259":{}}}],["icon",{"_index":28,"name":{"28":{},"202":{},"208":{},"561":{}},"parent":{"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{}}}],["icons",{"_index":114,"name":{"120":{}},"parent":{}}],["icontype",{"_index":180,"name":{"211":{}},"parent":{"212":{},"213":{}}}],["id",{"_index":24,"name":{"24":{},"93":{},"126":{},"170":{},"264":{},"271":{},"294":{},"312":{},"336":{},"347":{},"357":{},"364":{},"371":{},"388":{},"399":{},"445":{},"486":{},"532":{},"556":{},"587":{},"623":{}},"parent":{}}],["immediate",{"_index":162,"name":{"181":{}},"parent":{}}],["importarcs",{"_index":376,"name":{"660":{}},"parent":{}}],["importassigneduser",{"_index":371,"name":{"655":{}},"parent":{}}],["importdata",{"_index":358,"name":{"642":{}},"parent":{}}],["importevents",{"_index":357,"name":{"641":{}},"parent":{}}],["importfromxml",{"_index":352,"name":{"636":{}},"parent":{}}],["importfunctions",{"_index":356,"name":{"640":{}},"parent":{}}],["importi18n",{"_index":378,"name":{"662":{}},"parent":{}}],["importmapping",{"_index":380,"name":{"664":{}},"parent":{}}],["importmodel",{"_index":353,"name":{"637":{}},"parent":{}}],["importplaces",{"_index":374,"name":{"658":{}},"parent":{}}],["importprocessrefs",{"_index":373,"name":{"657":{}},"parent":{}}],["importroles",{"_index":354,"name":{"638":{}},"parent":{}}],["importservice",{"_index":343,"name":{"626":{}},"parent":{"627":{},"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{},"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{},"651":{},"652":{},"653":{},"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["importtransactionref",{"_index":370,"name":{"654":{}},"parent":{}}],["importtransactions",{"_index":372,"name":{"656":{}},"parent":{}}],["importtransitiondatagroups",{"_index":365,"name":{"649":{}},"parent":{}}],["importtransitionevent",{"_index":369,"name":{"653":{}},"parent":{}}],["importtransitionevents",{"_index":368,"name":{"652":{}},"parent":{}}],["importtransitionlayout",{"_index":366,"name":{"650":{}},"parent":{}}],["importtransitionmetadata",{"_index":367,"name":{"651":{}},"parent":{}}],["importtransitionrolerefs",{"_index":362,"name":{"646":{}},"parent":{}}],["importtransitions",{"_index":360,"name":{"644":{}},"parent":{}}],["importtransitiontriggers",{"_index":364,"name":{"648":{}},"parent":{}}],["importtransitionuserrefs",{"_index":363,"name":{"647":{}},"parent":{}}],["importutils",{"_index":349,"name":{"633":{},"667":{}},"parent":{"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{},"696":{},"697":{},"698":{},"699":{},"700":{},"701":{},"702":{},"703":{},"704":{},"705":{}}}],["info",{"_index":430,"name":{"718":{}},"parent":{}}],["inhibitor",{"_index":101,"name":{"105":{}},"parent":{}}],["init",{"_index":160,"name":{"177":{}},"parent":{}}],["initials",{"_index":26,"name":{"26":{}},"parent":{}}],["inits",{"_index":161,"name":{"178":{}},"parent":{}}],["key",{"_index":179,"name":{"207":{},"219":{},"226":{}},"parent":{}}],["label",{"_index":236,"name":{"340":{},"559":{}},"parent":{}}],["layout",{"_index":278,"name":{"447":{},"490":{},"501":{},"560":{}},"parent":{"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{}}}],["layouttype",{"_index":307,"name":{"511":{}},"parent":{"512":{},"513":{},"514":{}}}],["legacy",{"_index":255,"name":{"407":{},"514":{}},"parent":{}}],["length",{"_index":166,"name":{"185":{}},"parent":{}}],["locale",{"_index":194,"name":{"247":{}},"parent":{}}],["logic",{"_index":277,"name":{"446":{},"515":{},"533":{},"624":{}},"parent":{"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{}}}],["manual",{"_index":260,"name":{"412":{},"422":{},"499":{}},"parent":{}}],["mapping",{"_index":217,"name":{"304":{}},"parent":{"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{}}}],["marking",{"_index":237,"name":{"341":{}},"parent":{}}],["material",{"_index":181,"name":{"212":{},"536":{}},"parent":{}}],["mergeback",{"_index":461,"name":{"751":{}},"parent":{}}],["mergeevent",{"_index":173,"name":{"194":{},"379":{},"456":{},"578":{}},"parent":{}}],["message",{"_index":190,"name":{"234":{},"385":{},"584":{}},"parent":{}}],["model",{"_index":425,"name":{"713":{}},"parent":{}}],["multichoice",{"_index":127,"name":{"138":{}},"parent":{}}],["multichoice_map",{"_index":128,"name":{"139":{}},"parent":{}}],["multiplicity",{"_index":94,"name":{"97":{}},"parent":{}}],["name",{"_index":112,"name":{"118":{},"240":{},"258":{},"324":{}},"parent":{}}],["namespace",{"_index":215,"name":{"302":{}},"parent":{}}],["netgrif",{"_index":315,"name":{"537":{}},"parent":{}}],["number",{"_index":123,"name":{"134":{}},"parent":{}}],["of",{"_index":184,"name":{"215":{}},"parent":{}}],["offset",{"_index":274,"name":{"437":{},"509":{},"604":{}},"parent":{}}],["option",{"_index":183,"name":{"214":{}},"parent":{"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{}}}],["optional",{"_index":281,"name":{"459":{}},"parent":{}}],["options",{"_index":157,"name":{"174":{}},"parent":{}}],["optionsinit",{"_index":158,"name":{"175":{}},"parent":{}}],["outline",{"_index":258,"name":{"410":{}},"parent":{}}],["parse_error_line_extraction_regex",{"_index":344,"name":{"627":{}},"parent":{}}],["parseaction",{"_index":388,"name":{"675":{}},"parent":{}}],["parsearc",{"_index":377,"name":{"661":{}},"parent":{}}],["parsearctype",{"_index":406,"name":{"693":{}},"parent":{}}],["parsecomponent",{"_index":393,"name":{"680":{}},"parent":{}}],["parsedata",{"_index":359,"name":{"643":{}},"parent":{}}],["parsedatagroup",{"_index":404,"name":{"691":{}},"parent":{}}],["parsedatalayout",{"_index":403,"name":{"690":{}},"parent":{}}],["parsedataref",{"_index":402,"name":{"689":{}},"parent":{}}],["parsedefinition",{"_index":390,"name":{"677":{}},"parent":{}}],["parseencryption",{"_index":391,"name":{"678":{}},"parent":{}}],["parseevent",{"_index":407,"name":{"694":{}},"parent":{}}],["parseexpression",{"_index":413,"name":{"700":{}},"parent":{}}],["parsefromxml",{"_index":351,"name":{"635":{}},"parent":{}}],["parsefunction",{"_index":389,"name":{"676":{}},"parent":{}}],["parsei18n",{"_index":379,"name":{"663":{},"672":{}},"parent":{}}],["parsei18nwithdynamic",{"_index":386,"name":{"673":{}},"parent":{}}],["parsemapping",{"_index":381,"name":{"665":{}},"parent":{}}],["parsenumbervalue",{"_index":412,"name":{"699":{}},"parent":{}}],["parseplace",{"_index":375,"name":{"659":{}},"parent":{}}],["parseplacestatic",{"_index":405,"name":{"692":{}},"parent":{}}],["parseproperty",{"_index":394,"name":{"681":{}},"parent":{}}],["parserole",{"_index":355,"name":{"639":{}},"parent":{}}],["parseroleref",{"_index":401,"name":{"688":{}},"parent":{}}],["parsetransition",{"_index":361,"name":{"645":{}},"parent":{}}],["parsetrigger",{"_index":400,"name":{"687":{}},"parent":{}}],["parseviewandcomponent",{"_index":392,"name":{"679":{}},"parent":{}}],["parsexml",{"_index":350,"name":{"634":{}},"parent":{}}],["perform",{"_index":313,"name":{"522":{}},"parent":{}}],["petriflow_schema_url",{"_index":434,"name":{"722":{}},"parent":{}}],["petriflowfunction",{"_index":228,"name":{"319":{}},"parent":{"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{}}}],["petrinet",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{}}}],["petrinetresult",{"_index":419,"name":{"706":{}},"parent":{"707":{},"708":{},"709":{},"710":{},"711":{},"712":{},"713":{},"714":{},"715":{},"716":{},"717":{},"718":{},"719":{},"720":{}}}],["place",{"_index":231,"name":{"328":{}},"parent":{"329":{},"330":{},"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{}}}],["placeholder",{"_index":155,"name":{"172":{}},"parent":{}}],["post",{"_index":213,"name":{"300":{}},"parent":{}}],["postactions",{"_index":117,"name":{"128":{},"273":{},"296":{},"349":{},"390":{},"589":{}},"parent":{}}],["pre",{"_index":212,"name":{"299":{}},"parent":{}}],["preactions",{"_index":116,"name":{"127":{},"272":{},"295":{},"348":{},"389":{},"588":{}},"parent":{}}],["priority",{"_index":325,"name":{"562":{}},"parent":{}}],["process",{"_index":216,"name":{"303":{}},"parent":{}}],["processevent",{"_index":238,"name":{"343":{}},"parent":{"344":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{}}}],["processeventtype",{"_index":239,"name":{"351":{}},"parent":{"352":{}}}],["processroleref",{"_index":241,"name":{"353":{}},"parent":{"354":{},"355":{},"356":{},"357":{},"358":{},"359":{}}}],["processuserref",{"_index":243,"name":{"360":{}},"parent":{"361":{},"362":{},"363":{},"364":{},"365":{},"366":{}}}],["properties",{"_index":113,"name":{"119":{}},"parent":{}}],["property",{"_index":187,"name":{"222":{}},"parent":{"223":{},"224":{},"225":{},"226":{},"227":{},"228":{}}}],["read",{"_index":99,"name":{"103":{}},"parent":{}}],["reassign",{"_index":265,"name":{"419":{}},"parent":{}}],["reference",{"_index":95,"name":{"98":{}},"parent":{}}],["regular",{"_index":98,"name":{"102":{}},"parent":{}}],["remote",{"_index":164,"name":{"183":{}},"parent":{}}],["removearc",{"_index":82,"name":{"82":{}},"parent":{}}],["removecaseevent",{"_index":48,"name":{"48":{}},"parent":{}}],["removedata",{"_index":62,"name":{"62":{}},"parent":{}}],["removedataref",{"_index":303,"name":{"496":{}},"parent":{}}],["removeevent",{"_index":172,"name":{"193":{},"378":{},"455":{},"577":{}},"parent":{}}],["removei18n",{"_index":70,"name":{"70":{},"251":{}},"parent":{}}],["removemapping",{"_index":66,"name":{"66":{}},"parent":{}}],["removeplace",{"_index":78,"name":{"78":{}},"parent":{}}],["removeprocessevent",{"_index":44,"name":{"44":{}},"parent":{}}],["removerole",{"_index":56,"name":{"56":{}},"parent":{}}],["removeroleref",{"_index":36,"name":{"36":{}},"parent":{}}],["removetransaction",{"_index":52,"name":{"52":{}},"parent":{}}],["removetransition",{"_index":74,"name":{"74":{}},"parent":{}}],["removeuserref",{"_index":40,"name":{"40":{}},"parent":{}}],["required",{"_index":280,"name":{"458":{},"470":{}},"parent":{}}],["reset",{"_index":100,"name":{"104":{}},"parent":{}}],["resetactionid",{"_index":417,"name":{"704":{}},"parent":{}}],["reseteventid",{"_index":416,"name":{"703":{}},"parent":{}}],["resetids",{"_index":418,"name":{"705":{}},"parent":{}}],["resolvecaselogic",{"_index":397,"name":{"684":{}},"parent":{}}],["resolveformat",{"_index":411,"name":{"698":{}},"parent":{}}],["resolveinit",{"_index":409,"name":{"696":{}},"parent":{}}],["resolveinits",{"_index":408,"name":{"695":{}},"parent":{}}],["resolvelogic",{"_index":395,"name":{"682":{}},"parent":{}}],["resolvelogicvalue",{"_index":396,"name":{"683":{}},"parent":{}}],["role",{"_index":244,"name":{"367":{}},"parent":{"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{}}}],["roleevent",{"_index":245,"name":{"380":{}},"parent":{"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{}}}],["roleeventtype",{"_index":246,"name":{"392":{}},"parent":{"393":{},"394":{}}}],["roleref",{"_index":224,"name":{"314":{},"528":{}},"parent":{"529":{},"530":{},"531":{},"532":{},"533":{},"534":{}}}],["rolerefs",{"_index":328,"name":{"568":{}},"parent":{}}],["rows",{"_index":272,"name":{"435":{},"488":{},"507":{},"602":{}},"parent":{}}],["scope",{"_index":230,"name":{"325":{}},"parent":{}}],["set",{"_index":120,"name":{"131":{}},"parent":{}}],["source",{"_index":92,"name":{"95":{}},"parent":{}}],["standard",{"_index":256,"name":{"408":{}},"parent":{}}],["static",{"_index":235,"name":{"337":{}},"parent":{}}],["stretch",{"_index":299,"name":{"492":{}},"parent":{}}],["svg",{"_index":182,"name":{"213":{}},"parent":{}}],["tagattribute",{"_index":387,"name":{"674":{}},"parent":{}}],["tagvalue",{"_index":385,"name":{"671":{}},"parent":{}}],["task_ref",{"_index":137,"name":{"148":{}},"parent":{}}],["template",{"_index":271,"name":{"432":{},"535":{}},"parent":{"536":{},"537":{}}}],["text",{"_index":124,"name":{"135":{}},"parent":{}}],["time",{"_index":341,"name":{"618":{}},"parent":{}}],["title",{"_index":27,"name":{"27":{},"171":{},"372":{},"384":{},"400":{},"489":{},"583":{}},"parent":{}}],["top",{"_index":251,"name":{"403":{}},"parent":{}}],["transaction",{"_index":249,"name":{"395":{}},"parent":{"396":{},"397":{},"398":{},"399":{},"400":{},"401":{}}}],["transactionref",{"_index":327,"name":{"567":{}},"parent":{}}],["transition",{"_index":316,"name":{"538":{}},"parent":{"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{}}}],["transition_role_default_value",{"_index":347,"name":{"630":{}},"parent":{}}],["transitionevent",{"_index":331,"name":{"579":{}},"parent":{"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{}}}],["transitioneventtype",{"_index":332,"name":{"591":{}},"parent":{"592":{},"593":{},"594":{},"595":{}}}],["transitionlayout",{"_index":334,"name":{"596":{}},"parent":{"597":{},"598":{},"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{}}}],["transitionref",{"_index":223,"name":{"313":{}},"parent":{}}],["transitionrole",{"_index":31,"name":{"31":{}},"parent":{}}],["trigger",{"_index":227,"name":{"317":{},"606":{}},"parent":{"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{}}}],["triggers",{"_index":326,"name":{"566":{}},"parent":{}}],["triggertype",{"_index":340,"name":{"615":{}},"parent":{"616":{},"617":{},"618":{}}}],["type",{"_index":91,"name":{"94":{},"125":{},"180":{},"209":{},"270":{},"293":{},"346":{},"387":{},"586":{},"599":{},"611":{}},"parent":{}}],["upload",{"_index":240,"name":{"352":{}},"parent":{}}],["user",{"_index":134,"name":{"145":{},"617":{}},"parent":{}}],["user_list",{"_index":135,"name":{"146":{}},"parent":{}}],["userref",{"_index":342,"name":{"619":{}},"parent":{"620":{},"621":{},"622":{},"623":{},"624":{},"625":{}}}],["userrefs",{"_index":329,"name":{"569":{}},"parent":{}}],["validation",{"_index":188,"name":{"229":{}},"parent":{"230":{},"231":{},"232":{},"233":{},"234":{},"235":{}}}],["validations",{"_index":159,"name":{"176":{}},"parent":{}}],["value",{"_index":186,"name":{"220":{},"227":{},"241":{},"259":{}},"parent":{}}],["variable",{"_index":102,"name":{"106":{}},"parent":{}}],["version",{"_index":25,"name":{"25":{}},"parent":{}}],["view",{"_index":207,"name":{"285":{},"526":{}},"parent":{}}],["visible",{"_index":282,"name":{"460":{}},"parent":{}}],["warnings",{"_index":428,"name":{"716":{}},"parent":{}}],["x",{"_index":106,"name":{"111":{},"338":{},"430":{},"557":{}},"parent":{}}],["xmlconstructor",{"_index":435,"name":{"724":{},"755":{}},"parent":{}}],["xmltostring",{"_index":438,"name":{"727":{}},"parent":{}}],["y",{"_index":107,"name":{"112":{},"339":{},"431":{},"558":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +window.searchData = {"kinds":{"8":"Enumeration","16":"Enumeration member","128":"Class","512":"Constructor","1024":"Property","2048":"Method","262144":"Accessor"},"rows":[{"id":0,"kind":128,"name":"PetriNet","url":"classes/PetriNet.html","classes":"tsd-kind-class"},{"id":1,"kind":512,"name":"constructor","url":"classes/PetriNet.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PetriNet"},{"id":2,"kind":1024,"name":"_id","url":"classes/PetriNet.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":3,"kind":1024,"name":"_version","url":"classes/PetriNet.html#_version","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":4,"kind":1024,"name":"_initials","url":"classes/PetriNet.html#_initials","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":5,"kind":1024,"name":"_title","url":"classes/PetriNet.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":6,"kind":1024,"name":"_icon","url":"classes/PetriNet.html#_icon","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":7,"kind":1024,"name":"_defaultRole","url":"classes/PetriNet.html#_defaultRole","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":8,"kind":1024,"name":"_anonymousRole","url":"classes/PetriNet.html#_anonymousRole","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":9,"kind":1024,"name":"_transitionRole","url":"classes/PetriNet.html#_transitionRole","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":10,"kind":1024,"name":"_caseName","url":"classes/PetriNet.html#_caseName","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":11,"kind":1024,"name":"_roleRefs","url":"classes/PetriNet.html#_roleRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":12,"kind":1024,"name":"_userRefs","url":"classes/PetriNet.html#_userRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":13,"kind":1024,"name":"_processEvents","url":"classes/PetriNet.html#_processEvents","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":14,"kind":1024,"name":"_caseEvents","url":"classes/PetriNet.html#_caseEvents","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":15,"kind":1024,"name":"_transactions","url":"classes/PetriNet.html#_transactions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":16,"kind":1024,"name":"_roles","url":"classes/PetriNet.html#_roles","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":17,"kind":1024,"name":"_functions","url":"classes/PetriNet.html#_functions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":18,"kind":1024,"name":"_data","url":"classes/PetriNet.html#_data","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":19,"kind":1024,"name":"_mappings","url":"classes/PetriNet.html#_mappings","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":20,"kind":1024,"name":"_i18ns","url":"classes/PetriNet.html#_i18ns","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":21,"kind":1024,"name":"_transitions","url":"classes/PetriNet.html#_transitions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":22,"kind":1024,"name":"_places","url":"classes/PetriNet.html#_places","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":23,"kind":1024,"name":"_arcs","url":"classes/PetriNet.html#_arcs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNet"},{"id":24,"kind":262144,"name":"id","url":"classes/PetriNet.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":25,"kind":262144,"name":"version","url":"classes/PetriNet.html#version","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":26,"kind":262144,"name":"initials","url":"classes/PetriNet.html#initials","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":27,"kind":262144,"name":"title","url":"classes/PetriNet.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":28,"kind":262144,"name":"icon","url":"classes/PetriNet.html#icon","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":29,"kind":262144,"name":"defaultRole","url":"classes/PetriNet.html#defaultRole","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":30,"kind":262144,"name":"anonymousRole","url":"classes/PetriNet.html#anonymousRole","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":31,"kind":262144,"name":"transitionRole","url":"classes/PetriNet.html#transitionRole","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":32,"kind":262144,"name":"caseName","url":"classes/PetriNet.html#caseName","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":33,"kind":2048,"name":"getRoleRefs","url":"classes/PetriNet.html#getRoleRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":34,"kind":2048,"name":"getRoleRef","url":"classes/PetriNet.html#getRoleRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":35,"kind":2048,"name":"addRoleRef","url":"classes/PetriNet.html#addRoleRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":36,"kind":2048,"name":"removeRoleRef","url":"classes/PetriNet.html#removeRoleRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":37,"kind":2048,"name":"getUserRefs","url":"classes/PetriNet.html#getUserRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":38,"kind":2048,"name":"getUserRef","url":"classes/PetriNet.html#getUserRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":39,"kind":2048,"name":"addUserRef","url":"classes/PetriNet.html#addUserRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":40,"kind":2048,"name":"removeUserRef","url":"classes/PetriNet.html#removeUserRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":41,"kind":2048,"name":"getProcessEvents","url":"classes/PetriNet.html#getProcessEvents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":42,"kind":2048,"name":"getProcessEvent","url":"classes/PetriNet.html#getProcessEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":43,"kind":2048,"name":"addProcessEvent","url":"classes/PetriNet.html#addProcessEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":44,"kind":2048,"name":"removeProcessEvent","url":"classes/PetriNet.html#removeProcessEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":45,"kind":2048,"name":"getCaseEvents","url":"classes/PetriNet.html#getCaseEvents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":46,"kind":2048,"name":"getCaseEvent","url":"classes/PetriNet.html#getCaseEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":47,"kind":2048,"name":"addCaseEvent","url":"classes/PetriNet.html#addCaseEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":48,"kind":2048,"name":"removeCaseEvent","url":"classes/PetriNet.html#removeCaseEvent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":49,"kind":2048,"name":"getTransactions","url":"classes/PetriNet.html#getTransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":50,"kind":2048,"name":"getTransaction","url":"classes/PetriNet.html#getTransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":51,"kind":2048,"name":"addTransaction","url":"classes/PetriNet.html#addTransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":52,"kind":2048,"name":"removeTransaction","url":"classes/PetriNet.html#removeTransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":53,"kind":2048,"name":"getRoles","url":"classes/PetriNet.html#getRoles","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":54,"kind":2048,"name":"getRole","url":"classes/PetriNet.html#getRole","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":55,"kind":2048,"name":"addRole","url":"classes/PetriNet.html#addRole","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":56,"kind":2048,"name":"removeRole","url":"classes/PetriNet.html#removeRole","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":57,"kind":262144,"name":"functions","url":"classes/PetriNet.html#functions","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNet"},{"id":58,"kind":2048,"name":"addFunction","url":"classes/PetriNet.html#addFunction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":59,"kind":2048,"name":"getDataSet","url":"classes/PetriNet.html#getDataSet","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":60,"kind":2048,"name":"getData","url":"classes/PetriNet.html#getData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":61,"kind":2048,"name":"addData","url":"classes/PetriNet.html#addData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":62,"kind":2048,"name":"removeData","url":"classes/PetriNet.html#removeData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":63,"kind":2048,"name":"getMappings","url":"classes/PetriNet.html#getMappings","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":64,"kind":2048,"name":"getMapping","url":"classes/PetriNet.html#getMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":65,"kind":2048,"name":"addMapping","url":"classes/PetriNet.html#addMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":66,"kind":2048,"name":"removeMapping","url":"classes/PetriNet.html#removeMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":67,"kind":2048,"name":"getI18ns","url":"classes/PetriNet.html#getI18ns","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":68,"kind":2048,"name":"getI18n","url":"classes/PetriNet.html#getI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":69,"kind":2048,"name":"addI18n","url":"classes/PetriNet.html#addI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":70,"kind":2048,"name":"removeI18n","url":"classes/PetriNet.html#removeI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":71,"kind":2048,"name":"getTransitions","url":"classes/PetriNet.html#getTransitions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":72,"kind":2048,"name":"getTransition","url":"classes/PetriNet.html#getTransition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":73,"kind":2048,"name":"addTransition","url":"classes/PetriNet.html#addTransition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":74,"kind":2048,"name":"removeTransition","url":"classes/PetriNet.html#removeTransition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":75,"kind":2048,"name":"getPlaces","url":"classes/PetriNet.html#getPlaces","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":76,"kind":2048,"name":"getPlace","url":"classes/PetriNet.html#getPlace","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":77,"kind":2048,"name":"addPlace","url":"classes/PetriNet.html#addPlace","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":78,"kind":2048,"name":"removePlace","url":"classes/PetriNet.html#removePlace","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":79,"kind":2048,"name":"getArcs","url":"classes/PetriNet.html#getArcs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":80,"kind":2048,"name":"getArc","url":"classes/PetriNet.html#getArc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":81,"kind":2048,"name":"addArc","url":"classes/PetriNet.html#addArc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":82,"kind":2048,"name":"removeArc","url":"classes/PetriNet.html#removeArc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":83,"kind":2048,"name":"clone","url":"classes/PetriNet.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNet"},{"id":84,"kind":128,"name":"Arc","url":"classes/Arc.html","classes":"tsd-kind-class"},{"id":85,"kind":512,"name":"constructor","url":"classes/Arc.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Arc"},{"id":86,"kind":1024,"name":"_id","url":"classes/Arc.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":87,"kind":1024,"name":"_type","url":"classes/Arc.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":88,"kind":1024,"name":"_source","url":"classes/Arc.html#_source","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":89,"kind":1024,"name":"_destination","url":"classes/Arc.html#_destination","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":90,"kind":1024,"name":"_multiplicity","url":"classes/Arc.html#_multiplicity","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":91,"kind":1024,"name":"_reference","url":"classes/Arc.html#_reference","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":92,"kind":1024,"name":"_breakpoints","url":"classes/Arc.html#_breakpoints","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Arc"},{"id":93,"kind":262144,"name":"id","url":"classes/Arc.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":94,"kind":262144,"name":"type","url":"classes/Arc.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":95,"kind":262144,"name":"source","url":"classes/Arc.html#source","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":96,"kind":262144,"name":"destination","url":"classes/Arc.html#destination","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":97,"kind":262144,"name":"multiplicity","url":"classes/Arc.html#multiplicity","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":98,"kind":262144,"name":"reference","url":"classes/Arc.html#reference","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":99,"kind":262144,"name":"breakpoints","url":"classes/Arc.html#breakpoints","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Arc"},{"id":100,"kind":2048,"name":"clone","url":"classes/Arc.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Arc"},{"id":101,"kind":8,"name":"ArcType","url":"enums/ArcType.html","classes":"tsd-kind-enum"},{"id":102,"kind":16,"name":"REGULAR","url":"enums/ArcType.html#REGULAR","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":103,"kind":16,"name":"READ","url":"enums/ArcType.html#READ","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":104,"kind":16,"name":"RESET","url":"enums/ArcType.html#RESET","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":105,"kind":16,"name":"INHIBITOR","url":"enums/ArcType.html#INHIBITOR","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":106,"kind":16,"name":"VARIABLE","url":"enums/ArcType.html#VARIABLE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ArcType"},{"id":107,"kind":128,"name":"Breakpoint","url":"classes/Breakpoint.html","classes":"tsd-kind-class"},{"id":108,"kind":512,"name":"constructor","url":"classes/Breakpoint.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Breakpoint"},{"id":109,"kind":1024,"name":"_x","url":"classes/Breakpoint.html#_x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Breakpoint"},{"id":110,"kind":1024,"name":"_y","url":"classes/Breakpoint.html#_y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Breakpoint"},{"id":111,"kind":262144,"name":"x","url":"classes/Breakpoint.html#x","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Breakpoint"},{"id":112,"kind":262144,"name":"y","url":"classes/Breakpoint.html#y","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Breakpoint"},{"id":113,"kind":128,"name":"Component","url":"classes/Component.html","classes":"tsd-kind-class"},{"id":114,"kind":512,"name":"constructor","url":"classes/Component.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Component"},{"id":115,"kind":1024,"name":"_name","url":"classes/Component.html#_name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Component"},{"id":116,"kind":1024,"name":"_properties","url":"classes/Component.html#_properties","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Component"},{"id":117,"kind":1024,"name":"_icons","url":"classes/Component.html#_icons","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Component"},{"id":118,"kind":262144,"name":"name","url":"classes/Component.html#name","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Component"},{"id":119,"kind":262144,"name":"properties","url":"classes/Component.html#properties","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Component"},{"id":120,"kind":262144,"name":"icons","url":"classes/Component.html#icons","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Component"},{"id":121,"kind":2048,"name":"clone","url":"classes/Component.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Component"},{"id":122,"kind":128,"name":"DataEvent","url":"classes/DataEvent.html","classes":"tsd-kind-class"},{"id":123,"kind":512,"name":"constructor","url":"classes/DataEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"DataEvent"},{"id":124,"kind":2048,"name":"clone","url":"classes/DataEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataEvent"},{"id":125,"kind":262144,"name":"type","url":"classes/DataEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":126,"kind":262144,"name":"id","url":"classes/DataEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":127,"kind":262144,"name":"preActions","url":"classes/DataEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":128,"kind":262144,"name":"postActions","url":"classes/DataEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":129,"kind":2048,"name":"addAction","url":"classes/DataEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataEvent"},{"id":130,"kind":8,"name":"DataEventType","url":"enums/DataEventType.html","classes":"tsd-kind-enum"},{"id":131,"kind":16,"name":"SET","url":"enums/DataEventType.html#SET","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataEventType"},{"id":132,"kind":16,"name":"GET","url":"enums/DataEventType.html#GET","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataEventType"},{"id":133,"kind":8,"name":"DataType","url":"enums/DataType.html","classes":"tsd-kind-enum"},{"id":134,"kind":16,"name":"NUMBER","url":"enums/DataType.html#NUMBER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":135,"kind":16,"name":"TEXT","url":"enums/DataType.html#TEXT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":136,"kind":16,"name":"ENUMERATION","url":"enums/DataType.html#ENUMERATION","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":137,"kind":16,"name":"ENUMERATION_MAP","url":"enums/DataType.html#ENUMERATION_MAP","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":138,"kind":16,"name":"MULTICHOICE","url":"enums/DataType.html#MULTICHOICE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":139,"kind":16,"name":"MULTICHOICE_MAP","url":"enums/DataType.html#MULTICHOICE_MAP","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":140,"kind":16,"name":"BOOLEAN","url":"enums/DataType.html#BOOLEAN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":141,"kind":16,"name":"DATE","url":"enums/DataType.html#DATE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":142,"kind":16,"name":"DATETIME","url":"enums/DataType.html#DATETIME","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":143,"kind":16,"name":"FILE","url":"enums/DataType.html#FILE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":144,"kind":16,"name":"FILE_LIST","url":"enums/DataType.html#FILE_LIST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":145,"kind":16,"name":"USER","url":"enums/DataType.html#USER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":146,"kind":16,"name":"USER_LIST","url":"enums/DataType.html#USER_LIST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":147,"kind":16,"name":"BUTTON","url":"enums/DataType.html#BUTTON","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":148,"kind":16,"name":"TASK_REF","url":"enums/DataType.html#TASK_REF","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":149,"kind":16,"name":"CASE_REF","url":"enums/DataType.html#CASE_REF","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":150,"kind":16,"name":"FILTER","url":"enums/DataType.html#FILTER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataType"},{"id":151,"kind":128,"name":"DataVariable","url":"classes/DataVariable.html","classes":"tsd-kind-class"},{"id":152,"kind":512,"name":"constructor","url":"classes/DataVariable.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"DataVariable"},{"id":153,"kind":1024,"name":"_id","url":"classes/DataVariable.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":154,"kind":1024,"name":"_title","url":"classes/DataVariable.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":155,"kind":1024,"name":"_placeholder","url":"classes/DataVariable.html#_placeholder","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":156,"kind":1024,"name":"_desc","url":"classes/DataVariable.html#_desc","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":157,"kind":1024,"name":"_options","url":"classes/DataVariable.html#_options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":158,"kind":1024,"name":"_optionsInit","url":"classes/DataVariable.html#_optionsInit","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":159,"kind":1024,"name":"_validations","url":"classes/DataVariable.html#_validations","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":160,"kind":1024,"name":"_init","url":"classes/DataVariable.html#_init","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":161,"kind":1024,"name":"_inits","url":"classes/DataVariable.html#_inits","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":162,"kind":1024,"name":"_component","url":"classes/DataVariable.html#_component","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":163,"kind":1024,"name":"_type","url":"classes/DataVariable.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":164,"kind":1024,"name":"_immediate","url":"classes/DataVariable.html#_immediate","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":165,"kind":1024,"name":"_encryption","url":"classes/DataVariable.html#_encryption","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":166,"kind":1024,"name":"_remote","url":"classes/DataVariable.html#_remote","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":167,"kind":1024,"name":"_actionRef","url":"classes/DataVariable.html#_actionRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":168,"kind":1024,"name":"_length","url":"classes/DataVariable.html#_length","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":169,"kind":1024,"name":"_allowedNets","url":"classes/DataVariable.html#_allowedNets","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataVariable"},{"id":170,"kind":262144,"name":"id","url":"classes/DataVariable.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":171,"kind":262144,"name":"title","url":"classes/DataVariable.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":172,"kind":262144,"name":"placeholder","url":"classes/DataVariable.html#placeholder","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":173,"kind":262144,"name":"desc","url":"classes/DataVariable.html#desc","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":174,"kind":262144,"name":"options","url":"classes/DataVariable.html#options","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":175,"kind":262144,"name":"optionsInit","url":"classes/DataVariable.html#optionsInit","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":176,"kind":262144,"name":"validations","url":"classes/DataVariable.html#validations","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":177,"kind":262144,"name":"init","url":"classes/DataVariable.html#init","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":178,"kind":262144,"name":"inits","url":"classes/DataVariable.html#inits","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":179,"kind":262144,"name":"component","url":"classes/DataVariable.html#component","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":180,"kind":262144,"name":"type","url":"classes/DataVariable.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":181,"kind":262144,"name":"immediate","url":"classes/DataVariable.html#immediate","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":182,"kind":262144,"name":"encryption","url":"classes/DataVariable.html#encryption","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":183,"kind":262144,"name":"remote","url":"classes/DataVariable.html#remote","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":184,"kind":262144,"name":"actionRef","url":"classes/DataVariable.html#actionRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":185,"kind":262144,"name":"length","url":"classes/DataVariable.html#length","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":186,"kind":262144,"name":"allowedNets","url":"classes/DataVariable.html#allowedNets","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataVariable"},{"id":187,"kind":2048,"name":"clone","url":"classes/DataVariable.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataVariable"},{"id":188,"kind":2048,"name":"addAction","url":"classes/DataVariable.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":189,"kind":262144,"name":"events","url":"classes/DataVariable.html#events","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-protected","parent":"DataVariable"},{"id":190,"kind":2048,"name":"getEvents","url":"classes/DataVariable.html#getEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":191,"kind":2048,"name":"getEvent","url":"classes/DataVariable.html#getEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":192,"kind":2048,"name":"addEvent","url":"classes/DataVariable.html#addEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":193,"kind":2048,"name":"removeEvent","url":"classes/DataVariable.html#removeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":194,"kind":2048,"name":"mergeEvent","url":"classes/DataVariable.html#mergeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataVariable"},{"id":195,"kind":128,"name":"Expression","url":"classes/Expression.html","classes":"tsd-kind-class"},{"id":196,"kind":512,"name":"constructor","url":"classes/Expression.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Expression"},{"id":197,"kind":1024,"name":"_dynamic","url":"classes/Expression.html#_dynamic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Expression"},{"id":198,"kind":1024,"name":"_expression","url":"classes/Expression.html#_expression","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Expression"},{"id":199,"kind":262144,"name":"dynamic","url":"classes/Expression.html#dynamic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Expression"},{"id":200,"kind":262144,"name":"expression","url":"classes/Expression.html#expression","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Expression"},{"id":201,"kind":2048,"name":"clone","url":"classes/Expression.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Expression"},{"id":202,"kind":128,"name":"Icon","url":"classes/Icon.html","classes":"tsd-kind-class"},{"id":203,"kind":512,"name":"constructor","url":"classes/Icon.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Icon"},{"id":204,"kind":1024,"name":"_key","url":"classes/Icon.html#_key","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Icon"},{"id":205,"kind":1024,"name":"_icon","url":"classes/Icon.html#_icon","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Icon"},{"id":206,"kind":1024,"name":"_type","url":"classes/Icon.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Icon"},{"id":207,"kind":262144,"name":"key","url":"classes/Icon.html#key","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Icon"},{"id":208,"kind":262144,"name":"icon","url":"classes/Icon.html#icon","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Icon"},{"id":209,"kind":262144,"name":"type","url":"classes/Icon.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Icon"},{"id":210,"kind":2048,"name":"clone","url":"classes/Icon.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Icon"},{"id":211,"kind":8,"name":"IconType","url":"enums/IconType.html","classes":"tsd-kind-enum"},{"id":212,"kind":16,"name":"MATERIAL","url":"enums/IconType.html#MATERIAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"IconType"},{"id":213,"kind":16,"name":"SVG","url":"enums/IconType.html#SVG","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"IconType"},{"id":214,"kind":128,"name":"Option","url":"classes/Option.html","classes":"tsd-kind-class"},{"id":215,"kind":2048,"name":"of","url":"classes/Option.html#of","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Option"},{"id":216,"kind":512,"name":"constructor","url":"classes/Option.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Option"},{"id":217,"kind":1024,"name":"_key","url":"classes/Option.html#_key","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Option"},{"id":218,"kind":1024,"name":"_value","url":"classes/Option.html#_value","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Option"},{"id":219,"kind":262144,"name":"key","url":"classes/Option.html#key","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Option"},{"id":220,"kind":262144,"name":"value","url":"classes/Option.html#value","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Option"},{"id":221,"kind":2048,"name":"clone","url":"classes/Option.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Option"},{"id":222,"kind":128,"name":"Property","url":"classes/Property.html","classes":"tsd-kind-class"},{"id":223,"kind":512,"name":"constructor","url":"classes/Property.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Property"},{"id":224,"kind":1024,"name":"_key","url":"classes/Property.html#_key","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Property"},{"id":225,"kind":1024,"name":"_value","url":"classes/Property.html#_value","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Property"},{"id":226,"kind":262144,"name":"key","url":"classes/Property.html#key","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Property"},{"id":227,"kind":262144,"name":"value","url":"classes/Property.html#value","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Property"},{"id":228,"kind":2048,"name":"clone","url":"classes/Property.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Property"},{"id":229,"kind":128,"name":"Validation","url":"classes/Validation.html","classes":"tsd-kind-class"},{"id":230,"kind":512,"name":"constructor","url":"classes/Validation.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Validation"},{"id":231,"kind":1024,"name":"_expression","url":"classes/Validation.html#_expression","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Validation"},{"id":232,"kind":1024,"name":"_message","url":"classes/Validation.html#_message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Validation"},{"id":233,"kind":262144,"name":"expression","url":"classes/Validation.html#expression","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Validation"},{"id":234,"kind":262144,"name":"message","url":"classes/Validation.html#message","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Validation"},{"id":235,"kind":2048,"name":"clone","url":"classes/Validation.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validation"},{"id":236,"kind":128,"name":"I18nString","url":"classes/I18nString.html","classes":"tsd-kind-class"},{"id":237,"kind":512,"name":"constructor","url":"classes/I18nString.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"I18nString"},{"id":238,"kind":1024,"name":"_name","url":"classes/I18nString.html#_name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nString"},{"id":239,"kind":1024,"name":"_value","url":"classes/I18nString.html#_value","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nString"},{"id":240,"kind":262144,"name":"name","url":"classes/I18nString.html#name","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"I18nString"},{"id":241,"kind":262144,"name":"value","url":"classes/I18nString.html#value","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"I18nString"},{"id":242,"kind":2048,"name":"clone","url":"classes/I18nString.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nString"},{"id":243,"kind":128,"name":"I18nTranslations","url":"classes/I18nTranslations.html","classes":"tsd-kind-class"},{"id":244,"kind":512,"name":"constructor","url":"classes/I18nTranslations.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"I18nTranslations"},{"id":245,"kind":1024,"name":"_locale","url":"classes/I18nTranslations.html#_locale","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nTranslations"},{"id":246,"kind":1024,"name":"_i18ns","url":"classes/I18nTranslations.html#_i18ns","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nTranslations"},{"id":247,"kind":262144,"name":"locale","url":"classes/I18nTranslations.html#locale","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"I18nTranslations"},{"id":248,"kind":2048,"name":"getI18ns","url":"classes/I18nTranslations.html#getI18ns","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":249,"kind":2048,"name":"getI18n","url":"classes/I18nTranslations.html#getI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":250,"kind":2048,"name":"addI18n","url":"classes/I18nTranslations.html#addI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":251,"kind":2048,"name":"removeI18n","url":"classes/I18nTranslations.html#removeI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":252,"kind":2048,"name":"clone","url":"classes/I18nTranslations.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"I18nTranslations"},{"id":253,"kind":128,"name":"I18nWithDynamic","url":"classes/I18nWithDynamic.html","classes":"tsd-kind-class"},{"id":254,"kind":512,"name":"constructor","url":"classes/I18nWithDynamic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"I18nWithDynamic"},{"id":255,"kind":1024,"name":"_dynamic","url":"classes/I18nWithDynamic.html#_dynamic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"I18nWithDynamic"},{"id":256,"kind":262144,"name":"dynamic","url":"classes/I18nWithDynamic.html#dynamic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"I18nWithDynamic"},{"id":257,"kind":2048,"name":"clone","url":"classes/I18nWithDynamic.html#clone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"I18nWithDynamic"},{"id":258,"kind":262144,"name":"name","url":"classes/I18nWithDynamic.html#name","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"I18nWithDynamic"},{"id":259,"kind":262144,"name":"value","url":"classes/I18nWithDynamic.html#value","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"I18nWithDynamic"},{"id":260,"kind":128,"name":"Action","url":"classes/Action.html","classes":"tsd-kind-class"},{"id":261,"kind":512,"name":"constructor","url":"classes/Action.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Action"},{"id":262,"kind":1024,"name":"_id","url":"classes/Action.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Action"},{"id":263,"kind":1024,"name":"_definition","url":"classes/Action.html#_definition","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Action"},{"id":264,"kind":262144,"name":"id","url":"classes/Action.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Action"},{"id":265,"kind":262144,"name":"definition","url":"classes/Action.html#definition","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Action"},{"id":266,"kind":2048,"name":"clone","url":"classes/Action.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Action"},{"id":267,"kind":128,"name":"CaseEvent","url":"classes/CaseEvent.html","classes":"tsd-kind-class"},{"id":268,"kind":512,"name":"constructor","url":"classes/CaseEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"CaseEvent"},{"id":269,"kind":2048,"name":"clone","url":"classes/CaseEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CaseEvent"},{"id":270,"kind":262144,"name":"type","url":"classes/CaseEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":271,"kind":262144,"name":"id","url":"classes/CaseEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":272,"kind":262144,"name":"preActions","url":"classes/CaseEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":273,"kind":262144,"name":"postActions","url":"classes/CaseEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":274,"kind":2048,"name":"addAction","url":"classes/CaseEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"CaseEvent"},{"id":275,"kind":8,"name":"CaseEventType","url":"enums/CaseEventType.html","classes":"tsd-kind-enum"},{"id":276,"kind":16,"name":"CREATE","url":"enums/CaseEventType.html#CREATE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CaseEventType"},{"id":277,"kind":16,"name":"DELETE","url":"enums/CaseEventType.html#DELETE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CaseEventType"},{"id":278,"kind":128,"name":"CaseLogic","url":"classes/CaseLogic.html","classes":"tsd-kind-class"},{"id":279,"kind":512,"name":"constructor","url":"classes/CaseLogic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CaseLogic"},{"id":280,"kind":1024,"name":"_create","url":"classes/CaseLogic.html#_create","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"CaseLogic"},{"id":281,"kind":1024,"name":"_delete","url":"classes/CaseLogic.html#_delete","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"CaseLogic"},{"id":282,"kind":1024,"name":"_view","url":"classes/CaseLogic.html#_view","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"CaseLogic"},{"id":283,"kind":262144,"name":"create","url":"classes/CaseLogic.html#create","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"CaseLogic"},{"id":284,"kind":262144,"name":"delete","url":"classes/CaseLogic.html#delete","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"CaseLogic"},{"id":285,"kind":262144,"name":"view","url":"classes/CaseLogic.html#view","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"CaseLogic"},{"id":286,"kind":2048,"name":"clone","url":"classes/CaseLogic.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CaseLogic"},{"id":287,"kind":128,"name":"Event","url":"classes/Event.html","classes":"tsd-kind-class tsd-has-type-parameter"},{"id":288,"kind":512,"name":"constructor","url":"classes/Event.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter tsd-is-protected","parent":"Event"},{"id":289,"kind":1024,"name":"_type","url":"classes/Event.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Event"},{"id":290,"kind":1024,"name":"_id","url":"classes/Event.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Event"},{"id":291,"kind":1024,"name":"_preActions","url":"classes/Event.html#_preActions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Event"},{"id":292,"kind":1024,"name":"_postActions","url":"classes/Event.html#_postActions","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Event"},{"id":293,"kind":262144,"name":"type","url":"classes/Event.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Event"},{"id":294,"kind":262144,"name":"id","url":"classes/Event.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Event"},{"id":295,"kind":262144,"name":"preActions","url":"classes/Event.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Event"},{"id":296,"kind":262144,"name":"postActions","url":"classes/Event.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Event"},{"id":297,"kind":2048,"name":"addAction","url":"classes/Event.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Event"},{"id":298,"kind":8,"name":"EventPhase","url":"enums/EventPhase.html","classes":"tsd-kind-enum"},{"id":299,"kind":16,"name":"PRE","url":"enums/EventPhase.html#PRE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventPhase"},{"id":300,"kind":16,"name":"POST","url":"enums/EventPhase.html#POST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventPhase"},{"id":301,"kind":8,"name":"FunctionScope","url":"enums/FunctionScope.html","classes":"tsd-kind-enum"},{"id":302,"kind":16,"name":"NAMESPACE","url":"enums/FunctionScope.html#NAMESPACE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FunctionScope"},{"id":303,"kind":16,"name":"PROCESS","url":"enums/FunctionScope.html#PROCESS","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FunctionScope"},{"id":304,"kind":128,"name":"Mapping","url":"classes/Mapping.html","classes":"tsd-kind-class"},{"id":305,"kind":512,"name":"constructor","url":"classes/Mapping.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Mapping"},{"id":306,"kind":1024,"name":"_id","url":"classes/Mapping.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":307,"kind":1024,"name":"_transitionRef","url":"classes/Mapping.html#_transitionRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":308,"kind":1024,"name":"_roleRef","url":"classes/Mapping.html#_roleRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":309,"kind":1024,"name":"_dataRef","url":"classes/Mapping.html#_dataRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":310,"kind":1024,"name":"_dataGroup","url":"classes/Mapping.html#_dataGroup","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":311,"kind":1024,"name":"_trigger","url":"classes/Mapping.html#_trigger","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Mapping"},{"id":312,"kind":262144,"name":"id","url":"classes/Mapping.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":313,"kind":262144,"name":"transitionRef","url":"classes/Mapping.html#transitionRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":314,"kind":262144,"name":"roleRef","url":"classes/Mapping.html#roleRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":315,"kind":262144,"name":"dataRef","url":"classes/Mapping.html#dataRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":316,"kind":262144,"name":"dataGroup","url":"classes/Mapping.html#dataGroup","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":317,"kind":262144,"name":"trigger","url":"classes/Mapping.html#trigger","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Mapping"},{"id":318,"kind":2048,"name":"clone","url":"classes/Mapping.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Mapping"},{"id":319,"kind":128,"name":"PetriflowFunction","url":"classes/PetriflowFunction.html","classes":"tsd-kind-class"},{"id":320,"kind":512,"name":"constructor","url":"classes/PetriflowFunction.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":321,"kind":1024,"name":"_name","url":"classes/PetriflowFunction.html#_name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriflowFunction"},{"id":322,"kind":1024,"name":"_scope","url":"classes/PetriflowFunction.html#_scope","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriflowFunction"},{"id":323,"kind":1024,"name":"_definition","url":"classes/PetriflowFunction.html#_definition","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriflowFunction"},{"id":324,"kind":262144,"name":"name","url":"classes/PetriflowFunction.html#name","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":325,"kind":262144,"name":"scope","url":"classes/PetriflowFunction.html#scope","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":326,"kind":262144,"name":"definition","url":"classes/PetriflowFunction.html#definition","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":327,"kind":2048,"name":"clone","url":"classes/PetriflowFunction.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriflowFunction"},{"id":328,"kind":128,"name":"Place","url":"classes/Place.html","classes":"tsd-kind-class"},{"id":329,"kind":512,"name":"constructor","url":"classes/Place.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Place"},{"id":330,"kind":1024,"name":"_id","url":"classes/Place.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":331,"kind":1024,"name":"_static","url":"classes/Place.html#_static","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":332,"kind":1024,"name":"_x","url":"classes/Place.html#_x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":333,"kind":1024,"name":"_y","url":"classes/Place.html#_y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":334,"kind":1024,"name":"_label","url":"classes/Place.html#_label","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":335,"kind":1024,"name":"_marking","url":"classes/Place.html#_marking","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Place"},{"id":336,"kind":262144,"name":"id","url":"classes/Place.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":337,"kind":262144,"name":"static","url":"classes/Place.html#static","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":338,"kind":262144,"name":"x","url":"classes/Place.html#x","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":339,"kind":262144,"name":"y","url":"classes/Place.html#y","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":340,"kind":262144,"name":"label","url":"classes/Place.html#label","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":341,"kind":262144,"name":"marking","url":"classes/Place.html#marking","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Place"},{"id":342,"kind":2048,"name":"clone","url":"classes/Place.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Place"},{"id":343,"kind":128,"name":"ProcessEvent","url":"classes/ProcessEvent.html","classes":"tsd-kind-class"},{"id":344,"kind":512,"name":"constructor","url":"classes/ProcessEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ProcessEvent"},{"id":345,"kind":2048,"name":"clone","url":"classes/ProcessEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ProcessEvent"},{"id":346,"kind":262144,"name":"type","url":"classes/ProcessEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":347,"kind":262144,"name":"id","url":"classes/ProcessEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":348,"kind":262144,"name":"preActions","url":"classes/ProcessEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":349,"kind":262144,"name":"postActions","url":"classes/ProcessEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":350,"kind":2048,"name":"addAction","url":"classes/ProcessEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"ProcessEvent"},{"id":351,"kind":8,"name":"ProcessEventType","url":"enums/ProcessEventType.html","classes":"tsd-kind-enum"},{"id":352,"kind":16,"name":"UPLOAD","url":"enums/ProcessEventType.html#UPLOAD","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ProcessEventType"},{"id":353,"kind":128,"name":"ProcessRoleRef","url":"classes/ProcessRoleRef.html","classes":"tsd-kind-class"},{"id":354,"kind":512,"name":"constructor","url":"classes/ProcessRoleRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ProcessRoleRef"},{"id":355,"kind":1024,"name":"_id","url":"classes/ProcessRoleRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ProcessRoleRef"},{"id":356,"kind":1024,"name":"_caseLogic","url":"classes/ProcessRoleRef.html#_caseLogic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ProcessRoleRef"},{"id":357,"kind":262144,"name":"id","url":"classes/ProcessRoleRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProcessRoleRef"},{"id":358,"kind":262144,"name":"caseLogic","url":"classes/ProcessRoleRef.html#caseLogic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProcessRoleRef"},{"id":359,"kind":2048,"name":"clone","url":"classes/ProcessRoleRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ProcessRoleRef"},{"id":360,"kind":128,"name":"ProcessUserRef","url":"classes/ProcessUserRef.html","classes":"tsd-kind-class"},{"id":361,"kind":512,"name":"constructor","url":"classes/ProcessUserRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ProcessUserRef"},{"id":362,"kind":1024,"name":"_id","url":"classes/ProcessUserRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ProcessUserRef"},{"id":363,"kind":1024,"name":"_caseLogic","url":"classes/ProcessUserRef.html#_caseLogic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ProcessUserRef"},{"id":364,"kind":262144,"name":"id","url":"classes/ProcessUserRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProcessUserRef"},{"id":365,"kind":262144,"name":"caseLogic","url":"classes/ProcessUserRef.html#caseLogic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProcessUserRef"},{"id":366,"kind":2048,"name":"clone","url":"classes/ProcessUserRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ProcessUserRef"},{"id":367,"kind":128,"name":"Role","url":"classes/Role.html","classes":"tsd-kind-class"},{"id":368,"kind":512,"name":"constructor","url":"classes/Role.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Role"},{"id":369,"kind":1024,"name":"_id","url":"classes/Role.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Role"},{"id":370,"kind":1024,"name":"_title","url":"classes/Role.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Role"},{"id":371,"kind":262144,"name":"id","url":"classes/Role.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Role"},{"id":372,"kind":262144,"name":"title","url":"classes/Role.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Role"},{"id":373,"kind":2048,"name":"clone","url":"classes/Role.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Role"},{"id":374,"kind":262144,"name":"events","url":"classes/Role.html#events","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-protected","parent":"Role"},{"id":375,"kind":2048,"name":"getEvents","url":"classes/Role.html#getEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":376,"kind":2048,"name":"getEvent","url":"classes/Role.html#getEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":377,"kind":2048,"name":"addEvent","url":"classes/Role.html#addEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":378,"kind":2048,"name":"removeEvent","url":"classes/Role.html#removeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":379,"kind":2048,"name":"mergeEvent","url":"classes/Role.html#mergeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Role"},{"id":380,"kind":128,"name":"RoleEvent","url":"classes/RoleEvent.html","classes":"tsd-kind-class"},{"id":381,"kind":512,"name":"constructor","url":"classes/RoleEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"RoleEvent"},{"id":382,"kind":1024,"name":"_title","url":"classes/RoleEvent.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RoleEvent"},{"id":383,"kind":1024,"name":"_message","url":"classes/RoleEvent.html#_message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RoleEvent"},{"id":384,"kind":262144,"name":"title","url":"classes/RoleEvent.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"RoleEvent"},{"id":385,"kind":262144,"name":"message","url":"classes/RoleEvent.html#message","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"RoleEvent"},{"id":386,"kind":2048,"name":"clone","url":"classes/RoleEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RoleEvent"},{"id":387,"kind":262144,"name":"type","url":"classes/RoleEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":388,"kind":262144,"name":"id","url":"classes/RoleEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":389,"kind":262144,"name":"preActions","url":"classes/RoleEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":390,"kind":262144,"name":"postActions","url":"classes/RoleEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":391,"kind":2048,"name":"addAction","url":"classes/RoleEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"RoleEvent"},{"id":392,"kind":8,"name":"RoleEventType","url":"enums/RoleEventType.html","classes":"tsd-kind-enum"},{"id":393,"kind":16,"name":"ASSIGN","url":"enums/RoleEventType.html#ASSIGN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"RoleEventType"},{"id":394,"kind":16,"name":"CANCEL","url":"enums/RoleEventType.html#CANCEL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"RoleEventType"},{"id":395,"kind":128,"name":"Transaction","url":"classes/Transaction.html","classes":"tsd-kind-class"},{"id":396,"kind":512,"name":"constructor","url":"classes/Transaction.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Transaction"},{"id":397,"kind":1024,"name":"_id","url":"classes/Transaction.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transaction"},{"id":398,"kind":1024,"name":"_title","url":"classes/Transaction.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transaction"},{"id":399,"kind":262144,"name":"id","url":"classes/Transaction.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transaction"},{"id":400,"kind":262144,"name":"title","url":"classes/Transaction.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transaction"},{"id":401,"kind":2048,"name":"clone","url":"classes/Transaction.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Transaction"},{"id":402,"kind":8,"name":"Alignment","url":"enums/Alignment.html","classes":"tsd-kind-enum"},{"id":403,"kind":16,"name":"TOP","url":"enums/Alignment.html#TOP","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Alignment"},{"id":404,"kind":16,"name":"CENTER","url":"enums/Alignment.html#CENTER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Alignment"},{"id":405,"kind":16,"name":"BOTTOM","url":"enums/Alignment.html#BOTTOM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Alignment"},{"id":406,"kind":8,"name":"Appearance","url":"enums/Appearance.html","classes":"tsd-kind-enum"},{"id":407,"kind":16,"name":"LEGACY","url":"enums/Appearance.html#LEGACY","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Appearance"},{"id":408,"kind":16,"name":"STANDARD","url":"enums/Appearance.html#STANDARD","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Appearance"},{"id":409,"kind":16,"name":"FILL","url":"enums/Appearance.html#FILL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Appearance"},{"id":410,"kind":16,"name":"OUTLINE","url":"enums/Appearance.html#OUTLINE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Appearance"},{"id":411,"kind":8,"name":"AssignPolicy","url":"enums/AssignPolicy.html","classes":"tsd-kind-enum"},{"id":412,"kind":16,"name":"MANUAL","url":"enums/AssignPolicy.html#MANUAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AssignPolicy"},{"id":413,"kind":16,"name":"AUTO","url":"enums/AssignPolicy.html#AUTO","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AssignPolicy"},{"id":414,"kind":128,"name":"AssignedUser","url":"classes/AssignedUser.html","classes":"tsd-kind-class"},{"id":415,"kind":512,"name":"constructor","url":"classes/AssignedUser.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"AssignedUser"},{"id":416,"kind":1024,"name":"_cancel","url":"classes/AssignedUser.html#_cancel","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"AssignedUser"},{"id":417,"kind":1024,"name":"_reassign","url":"classes/AssignedUser.html#_reassign","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"AssignedUser"},{"id":418,"kind":262144,"name":"cancel","url":"classes/AssignedUser.html#cancel","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"AssignedUser"},{"id":419,"kind":262144,"name":"reassign","url":"classes/AssignedUser.html#reassign","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"AssignedUser"},{"id":420,"kind":2048,"name":"clone","url":"classes/AssignedUser.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AssignedUser"},{"id":421,"kind":8,"name":"DataFocusPolicy","url":"enums/DataFocusPolicy.html","classes":"tsd-kind-enum"},{"id":422,"kind":16,"name":"MANUAL","url":"enums/DataFocusPolicy.html#MANUAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataFocusPolicy"},{"id":423,"kind":16,"name":"AUTO_EMPTY_REQUIRED","url":"enums/DataFocusPolicy.html#AUTO_EMPTY_REQUIRED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataFocusPolicy"},{"id":424,"kind":128,"name":"DataLayout","url":"classes/DataLayout.html","classes":"tsd-kind-class"},{"id":425,"kind":512,"name":"constructor","url":"classes/DataLayout.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"DataLayout"},{"id":426,"kind":1024,"name":"_x","url":"classes/DataLayout.html#_x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataLayout"},{"id":427,"kind":1024,"name":"_y","url":"classes/DataLayout.html#_y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataLayout"},{"id":428,"kind":1024,"name":"_template","url":"classes/DataLayout.html#_template","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataLayout"},{"id":429,"kind":1024,"name":"_appearance","url":"classes/DataLayout.html#_appearance","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataLayout"},{"id":430,"kind":262144,"name":"x","url":"classes/DataLayout.html#x","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataLayout"},{"id":431,"kind":262144,"name":"y","url":"classes/DataLayout.html#y","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataLayout"},{"id":432,"kind":262144,"name":"template","url":"classes/DataLayout.html#template","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataLayout"},{"id":433,"kind":262144,"name":"appearance","url":"classes/DataLayout.html#appearance","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataLayout"},{"id":434,"kind":2048,"name":"clone","url":"classes/DataLayout.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataLayout"},{"id":435,"kind":262144,"name":"rows","url":"classes/DataLayout.html#rows","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataLayout"},{"id":436,"kind":262144,"name":"cols","url":"classes/DataLayout.html#cols","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataLayout"},{"id":437,"kind":262144,"name":"offset","url":"classes/DataLayout.html#offset","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataLayout"},{"id":438,"kind":262144,"name":"alignment","url":"classes/DataLayout.html#alignment","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"DataLayout"},{"id":439,"kind":128,"name":"DataRef","url":"classes/DataRef.html","classes":"tsd-kind-class"},{"id":440,"kind":512,"name":"constructor","url":"classes/DataRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"DataRef"},{"id":441,"kind":1024,"name":"_id","url":"classes/DataRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRef"},{"id":442,"kind":1024,"name":"_logic","url":"classes/DataRef.html#_logic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRef"},{"id":443,"kind":1024,"name":"_layout","url":"classes/DataRef.html#_layout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRef"},{"id":444,"kind":1024,"name":"_component","url":"classes/DataRef.html#_component","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRef"},{"id":445,"kind":262144,"name":"id","url":"classes/DataRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRef"},{"id":446,"kind":262144,"name":"logic","url":"classes/DataRef.html#logic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRef"},{"id":447,"kind":262144,"name":"layout","url":"classes/DataRef.html#layout","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRef"},{"id":448,"kind":262144,"name":"component","url":"classes/DataRef.html#component","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRef"},{"id":449,"kind":2048,"name":"clone","url":"classes/DataRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataRef"},{"id":450,"kind":2048,"name":"addAction","url":"classes/DataRef.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":451,"kind":262144,"name":"events","url":"classes/DataRef.html#events","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-protected","parent":"DataRef"},{"id":452,"kind":2048,"name":"getEvents","url":"classes/DataRef.html#getEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":453,"kind":2048,"name":"getEvent","url":"classes/DataRef.html#getEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":454,"kind":2048,"name":"addEvent","url":"classes/DataRef.html#addEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":455,"kind":2048,"name":"removeEvent","url":"classes/DataRef.html#removeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":456,"kind":2048,"name":"mergeEvent","url":"classes/DataRef.html#mergeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DataRef"},{"id":457,"kind":8,"name":"DataRefBehavior","url":"enums/DataRefBehavior.html","classes":"tsd-kind-enum"},{"id":458,"kind":16,"name":"REQUIRED","url":"enums/DataRefBehavior.html#REQUIRED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":459,"kind":16,"name":"OPTIONAL","url":"enums/DataRefBehavior.html#OPTIONAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":460,"kind":16,"name":"VISIBLE","url":"enums/DataRefBehavior.html#VISIBLE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":461,"kind":16,"name":"EDITABLE","url":"enums/DataRefBehavior.html#EDITABLE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":462,"kind":16,"name":"HIDDEN","url":"enums/DataRefBehavior.html#HIDDEN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":463,"kind":16,"name":"FORBIDDEN","url":"enums/DataRefBehavior.html#FORBIDDEN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DataRefBehavior"},{"id":464,"kind":128,"name":"DataRefLogic","url":"classes/DataRefLogic.html","classes":"tsd-kind-class"},{"id":465,"kind":512,"name":"constructor","url":"classes/DataRefLogic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DataRefLogic"},{"id":466,"kind":1024,"name":"_behavior","url":"classes/DataRefLogic.html#_behavior","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRefLogic"},{"id":467,"kind":1024,"name":"_required","url":"classes/DataRefLogic.html#_required","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRefLogic"},{"id":468,"kind":1024,"name":"_actionRefs","url":"classes/DataRefLogic.html#_actionRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataRefLogic"},{"id":469,"kind":262144,"name":"behavior","url":"classes/DataRefLogic.html#behavior","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRefLogic"},{"id":470,"kind":262144,"name":"required","url":"classes/DataRefLogic.html#required","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRefLogic"},{"id":471,"kind":262144,"name":"actionRefs","url":"classes/DataRefLogic.html#actionRefs","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataRefLogic"},{"id":472,"kind":2048,"name":"clone","url":"classes/DataRefLogic.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataRefLogic"},{"id":473,"kind":128,"name":"DataRefLogicUtil","url":"classes/DataRefLogicUtil.html","classes":"tsd-kind-class"},{"id":474,"kind":2048,"name":"behaviors","url":"classes/DataRefLogicUtil.html#behaviors","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DataRefLogicUtil"},{"id":475,"kind":512,"name":"constructor","url":"classes/DataRefLogicUtil.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DataRefLogicUtil"},{"id":476,"kind":128,"name":"DataGroup","url":"classes/DataGroup.html","classes":"tsd-kind-class"},{"id":477,"kind":512,"name":"constructor","url":"classes/DataGroup.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DataGroup"},{"id":478,"kind":1024,"name":"_id","url":"classes/DataGroup.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":479,"kind":1024,"name":"_cols","url":"classes/DataGroup.html#_cols","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":480,"kind":1024,"name":"_rows","url":"classes/DataGroup.html#_rows","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":481,"kind":1024,"name":"_title","url":"classes/DataGroup.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":482,"kind":1024,"name":"_layout","url":"classes/DataGroup.html#_layout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":483,"kind":1024,"name":"_alignment","url":"classes/DataGroup.html#_alignment","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":484,"kind":1024,"name":"_stretch","url":"classes/DataGroup.html#_stretch","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":485,"kind":1024,"name":"_dataRefs","url":"classes/DataGroup.html#_dataRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"DataGroup"},{"id":486,"kind":262144,"name":"id","url":"classes/DataGroup.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":487,"kind":262144,"name":"cols","url":"classes/DataGroup.html#cols","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":488,"kind":262144,"name":"rows","url":"classes/DataGroup.html#rows","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":489,"kind":262144,"name":"title","url":"classes/DataGroup.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":490,"kind":262144,"name":"layout","url":"classes/DataGroup.html#layout","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":491,"kind":262144,"name":"alignment","url":"classes/DataGroup.html#alignment","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":492,"kind":262144,"name":"stretch","url":"classes/DataGroup.html#stretch","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DataGroup"},{"id":493,"kind":2048,"name":"getDataRefs","url":"classes/DataGroup.html#getDataRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":494,"kind":2048,"name":"getDataRef","url":"classes/DataGroup.html#getDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":495,"kind":2048,"name":"addDataRef","url":"classes/DataGroup.html#addDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":496,"kind":2048,"name":"removeDataRef","url":"classes/DataGroup.html#removeDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":497,"kind":2048,"name":"clone","url":"classes/DataGroup.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DataGroup"},{"id":498,"kind":8,"name":"FinishPolicy","url":"enums/FinishPolicy.html","classes":"tsd-kind-enum"},{"id":499,"kind":16,"name":"MANUAL","url":"enums/FinishPolicy.html#MANUAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FinishPolicy"},{"id":500,"kind":16,"name":"AUTO_NO_DATA","url":"enums/FinishPolicy.html#AUTO_NO_DATA","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FinishPolicy"},{"id":501,"kind":128,"name":"Layout","url":"classes/Layout.html","classes":"tsd-kind-class"},{"id":502,"kind":512,"name":"constructor","url":"classes/Layout.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Layout"},{"id":503,"kind":1024,"name":"_rows","url":"classes/Layout.html#_rows","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Layout"},{"id":504,"kind":1024,"name":"_cols","url":"classes/Layout.html#_cols","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Layout"},{"id":505,"kind":1024,"name":"_offset","url":"classes/Layout.html#_offset","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Layout"},{"id":506,"kind":1024,"name":"_alignment","url":"classes/Layout.html#_alignment","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Layout"},{"id":507,"kind":262144,"name":"rows","url":"classes/Layout.html#rows","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Layout"},{"id":508,"kind":262144,"name":"cols","url":"classes/Layout.html#cols","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Layout"},{"id":509,"kind":262144,"name":"offset","url":"classes/Layout.html#offset","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Layout"},{"id":510,"kind":262144,"name":"alignment","url":"classes/Layout.html#alignment","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Layout"},{"id":511,"kind":8,"name":"LayoutType","url":"enums/LayoutType.html","classes":"tsd-kind-enum"},{"id":512,"kind":16,"name":"FLOW","url":"enums/LayoutType.html#FLOW","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayoutType"},{"id":513,"kind":16,"name":"GRID","url":"enums/LayoutType.html#GRID","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayoutType"},{"id":514,"kind":16,"name":"LEGACY","url":"enums/LayoutType.html#LEGACY","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayoutType"},{"id":515,"kind":128,"name":"Logic","url":"classes/Logic.html","classes":"tsd-kind-class"},{"id":516,"kind":512,"name":"constructor","url":"classes/Logic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Logic"},{"id":517,"kind":1024,"name":"_perform","url":"classes/Logic.html#_perform","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":518,"kind":1024,"name":"_delegate","url":"classes/Logic.html#_delegate","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":519,"kind":1024,"name":"_cancel","url":"classes/Logic.html#_cancel","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":520,"kind":1024,"name":"_assign","url":"classes/Logic.html#_assign","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":521,"kind":1024,"name":"_view","url":"classes/Logic.html#_view","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Logic"},{"id":522,"kind":262144,"name":"perform","url":"classes/Logic.html#perform","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":523,"kind":262144,"name":"delegate","url":"classes/Logic.html#delegate","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":524,"kind":262144,"name":"cancel","url":"classes/Logic.html#cancel","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":525,"kind":262144,"name":"assign","url":"classes/Logic.html#assign","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":526,"kind":262144,"name":"view","url":"classes/Logic.html#view","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Logic"},{"id":527,"kind":2048,"name":"clone","url":"classes/Logic.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Logic"},{"id":528,"kind":128,"name":"RoleRef","url":"classes/RoleRef.html","classes":"tsd-kind-class"},{"id":529,"kind":512,"name":"constructor","url":"classes/RoleRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"RoleRef"},{"id":530,"kind":1024,"name":"_id","url":"classes/RoleRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RoleRef"},{"id":531,"kind":1024,"name":"_logic","url":"classes/RoleRef.html#_logic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RoleRef"},{"id":532,"kind":262144,"name":"id","url":"classes/RoleRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"RoleRef"},{"id":533,"kind":262144,"name":"logic","url":"classes/RoleRef.html#logic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"RoleRef"},{"id":534,"kind":2048,"name":"clone","url":"classes/RoleRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RoleRef"},{"id":535,"kind":8,"name":"Template","url":"enums/Template.html","classes":"tsd-kind-enum"},{"id":536,"kind":16,"name":"MATERIAL","url":"enums/Template.html#MATERIAL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Template"},{"id":537,"kind":16,"name":"NETGRIF","url":"enums/Template.html#NETGRIF","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Template"},{"id":538,"kind":128,"name":"Transition","url":"classes/Transition.html","classes":"tsd-kind-class"},{"id":539,"kind":512,"name":"constructor","url":"classes/Transition.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Transition"},{"id":540,"kind":1024,"name":"_id","url":"classes/Transition.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":541,"kind":1024,"name":"_x","url":"classes/Transition.html#_x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":542,"kind":1024,"name":"_y","url":"classes/Transition.html#_y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":543,"kind":1024,"name":"_label","url":"classes/Transition.html#_label","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":544,"kind":1024,"name":"_layout","url":"classes/Transition.html#_layout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":545,"kind":1024,"name":"_icon","url":"classes/Transition.html#_icon","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":546,"kind":1024,"name":"_priority","url":"classes/Transition.html#_priority","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":547,"kind":1024,"name":"_assignPolicy","url":"classes/Transition.html#_assignPolicy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":548,"kind":1024,"name":"_finishPolicy","url":"classes/Transition.html#_finishPolicy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":549,"kind":1024,"name":"_dataFocusPolicy","url":"classes/Transition.html#_dataFocusPolicy","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":550,"kind":1024,"name":"_triggers","url":"classes/Transition.html#_triggers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":551,"kind":1024,"name":"_transactionRef","url":"classes/Transition.html#_transactionRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":552,"kind":1024,"name":"_roleRefs","url":"classes/Transition.html#_roleRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":553,"kind":1024,"name":"_userRefs","url":"classes/Transition.html#_userRefs","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":554,"kind":1024,"name":"_dataGroups","url":"classes/Transition.html#_dataGroups","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":555,"kind":1024,"name":"_assignedUser","url":"classes/Transition.html#_assignedUser","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Transition"},{"id":556,"kind":262144,"name":"id","url":"classes/Transition.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":557,"kind":262144,"name":"x","url":"classes/Transition.html#x","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":558,"kind":262144,"name":"y","url":"classes/Transition.html#y","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":559,"kind":262144,"name":"label","url":"classes/Transition.html#label","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":560,"kind":262144,"name":"layout","url":"classes/Transition.html#layout","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":561,"kind":262144,"name":"icon","url":"classes/Transition.html#icon","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":562,"kind":262144,"name":"priority","url":"classes/Transition.html#priority","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":563,"kind":262144,"name":"assignPolicy","url":"classes/Transition.html#assignPolicy","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":564,"kind":262144,"name":"finishPolicy","url":"classes/Transition.html#finishPolicy","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":565,"kind":262144,"name":"dataFocusPolicy","url":"classes/Transition.html#dataFocusPolicy","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":566,"kind":262144,"name":"triggers","url":"classes/Transition.html#triggers","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":567,"kind":262144,"name":"transactionRef","url":"classes/Transition.html#transactionRef","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":568,"kind":262144,"name":"roleRefs","url":"classes/Transition.html#roleRefs","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":569,"kind":262144,"name":"userRefs","url":"classes/Transition.html#userRefs","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":570,"kind":262144,"name":"dataGroups","url":"classes/Transition.html#dataGroups","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":571,"kind":262144,"name":"assignedUser","url":"classes/Transition.html#assignedUser","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Transition"},{"id":572,"kind":2048,"name":"clone","url":"classes/Transition.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Transition"},{"id":573,"kind":262144,"name":"events","url":"classes/Transition.html#events","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-protected","parent":"Transition"},{"id":574,"kind":2048,"name":"getEvents","url":"classes/Transition.html#getEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":575,"kind":2048,"name":"getEvent","url":"classes/Transition.html#getEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":576,"kind":2048,"name":"addEvent","url":"classes/Transition.html#addEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":577,"kind":2048,"name":"removeEvent","url":"classes/Transition.html#removeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":578,"kind":2048,"name":"mergeEvent","url":"classes/Transition.html#mergeEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Transition"},{"id":579,"kind":128,"name":"TransitionEvent","url":"classes/TransitionEvent.html","classes":"tsd-kind-class"},{"id":580,"kind":512,"name":"constructor","url":"classes/TransitionEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"TransitionEvent"},{"id":581,"kind":1024,"name":"_title","url":"classes/TransitionEvent.html#_title","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"TransitionEvent"},{"id":582,"kind":1024,"name":"_message","url":"classes/TransitionEvent.html#_message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"TransitionEvent"},{"id":583,"kind":262144,"name":"title","url":"classes/TransitionEvent.html#title","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"TransitionEvent"},{"id":584,"kind":262144,"name":"message","url":"classes/TransitionEvent.html#message","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"TransitionEvent"},{"id":585,"kind":2048,"name":"clone","url":"classes/TransitionEvent.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransitionEvent"},{"id":586,"kind":262144,"name":"type","url":"classes/TransitionEvent.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":587,"kind":262144,"name":"id","url":"classes/TransitionEvent.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":588,"kind":262144,"name":"preActions","url":"classes/TransitionEvent.html#preActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":589,"kind":262144,"name":"postActions","url":"classes/TransitionEvent.html#postActions","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":590,"kind":2048,"name":"addAction","url":"classes/TransitionEvent.html#addAction","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TransitionEvent"},{"id":591,"kind":8,"name":"TransitionEventType","url":"enums/TransitionEventType.html","classes":"tsd-kind-enum"},{"id":592,"kind":16,"name":"ASSIGN","url":"enums/TransitionEventType.html#ASSIGN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransitionEventType"},{"id":593,"kind":16,"name":"FINISH","url":"enums/TransitionEventType.html#FINISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransitionEventType"},{"id":594,"kind":16,"name":"CANCEL","url":"enums/TransitionEventType.html#CANCEL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransitionEventType"},{"id":595,"kind":16,"name":"DELEGATE","url":"enums/TransitionEventType.html#DELEGATE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TransitionEventType"},{"id":596,"kind":128,"name":"TransitionLayout","url":"classes/TransitionLayout.html","classes":"tsd-kind-class"},{"id":597,"kind":512,"name":"constructor","url":"classes/TransitionLayout.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":598,"kind":1024,"name":"_type","url":"classes/TransitionLayout.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"TransitionLayout"},{"id":599,"kind":262144,"name":"type","url":"classes/TransitionLayout.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"TransitionLayout"},{"id":600,"kind":2048,"name":"empty","url":"classes/TransitionLayout.html#empty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransitionLayout"},{"id":601,"kind":2048,"name":"clone","url":"classes/TransitionLayout.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TransitionLayout"},{"id":602,"kind":262144,"name":"rows","url":"classes/TransitionLayout.html#rows","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":603,"kind":262144,"name":"cols","url":"classes/TransitionLayout.html#cols","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":604,"kind":262144,"name":"offset","url":"classes/TransitionLayout.html#offset","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":605,"kind":262144,"name":"alignment","url":"classes/TransitionLayout.html#alignment","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TransitionLayout"},{"id":606,"kind":128,"name":"Trigger","url":"classes/Trigger.html","classes":"tsd-kind-class"},{"id":607,"kind":512,"name":"constructor","url":"classes/Trigger.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Trigger"},{"id":608,"kind":1024,"name":"_type","url":"classes/Trigger.html#_type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Trigger"},{"id":609,"kind":1024,"name":"_delay","url":"classes/Trigger.html#_delay","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Trigger"},{"id":610,"kind":1024,"name":"_exact","url":"classes/Trigger.html#_exact","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Trigger"},{"id":611,"kind":262144,"name":"type","url":"classes/Trigger.html#type","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Trigger"},{"id":612,"kind":262144,"name":"delay","url":"classes/Trigger.html#delay","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Trigger"},{"id":613,"kind":262144,"name":"exact","url":"classes/Trigger.html#exact","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Trigger"},{"id":614,"kind":2048,"name":"clone","url":"classes/Trigger.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Trigger"},{"id":615,"kind":8,"name":"TriggerType","url":"enums/TriggerType.html","classes":"tsd-kind-enum"},{"id":616,"kind":16,"name":"AUTO","url":"enums/TriggerType.html#AUTO","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TriggerType"},{"id":617,"kind":16,"name":"USER","url":"enums/TriggerType.html#USER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TriggerType"},{"id":618,"kind":16,"name":"TIME","url":"enums/TriggerType.html#TIME","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TriggerType"},{"id":619,"kind":128,"name":"UserRef","url":"classes/UserRef.html","classes":"tsd-kind-class"},{"id":620,"kind":512,"name":"constructor","url":"classes/UserRef.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"UserRef"},{"id":621,"kind":1024,"name":"_id","url":"classes/UserRef.html#_id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"UserRef"},{"id":622,"kind":1024,"name":"_logic","url":"classes/UserRef.html#_logic","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"UserRef"},{"id":623,"kind":262144,"name":"id","url":"classes/UserRef.html#id","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"UserRef"},{"id":624,"kind":262144,"name":"logic","url":"classes/UserRef.html#logic","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"UserRef"},{"id":625,"kind":2048,"name":"clone","url":"classes/UserRef.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserRef"},{"id":626,"kind":128,"name":"ImportService","url":"classes/ImportService.html","classes":"tsd-kind-class"},{"id":627,"kind":1024,"name":"PARSE_ERROR_LINE_EXTRACTION_REGEX","url":"classes/ImportService.html#PARSE_ERROR_LINE_EXTRACTION_REGEX","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":628,"kind":1024,"name":"DEFAULT_ROLE_DEFAULT_VALUE","url":"classes/ImportService.html#DEFAULT_ROLE_DEFAULT_VALUE","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":629,"kind":1024,"name":"ANONYMOUS_ROLE_DEFAULT_VALUE","url":"classes/ImportService.html#ANONYMOUS_ROLE_DEFAULT_VALUE","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":630,"kind":1024,"name":"TRANSITION_ROLE_DEFAULT_VALUE","url":"classes/ImportService.html#TRANSITION_ROLE_DEFAULT_VALUE","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":631,"kind":2048,"name":"checkI18n","url":"classes/ImportService.html#checkI18n","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ImportService"},{"id":632,"kind":512,"name":"constructor","url":"classes/ImportService.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ImportService"},{"id":633,"kind":1024,"name":"importUtils","url":"classes/ImportService.html#importUtils","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"ImportService"},{"id":634,"kind":2048,"name":"parseXml","url":"classes/ImportService.html#parseXml","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":635,"kind":2048,"name":"parseFromXml","url":"classes/ImportService.html#parseFromXml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":636,"kind":2048,"name":"importFromXml","url":"classes/ImportService.html#importFromXml","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":637,"kind":2048,"name":"importModel","url":"classes/ImportService.html#importModel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":638,"kind":2048,"name":"importRoles","url":"classes/ImportService.html#importRoles","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":639,"kind":2048,"name":"parseRole","url":"classes/ImportService.html#parseRole","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":640,"kind":2048,"name":"importFunctions","url":"classes/ImportService.html#importFunctions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":641,"kind":2048,"name":"importEvents","url":"classes/ImportService.html#importEvents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":642,"kind":2048,"name":"importData","url":"classes/ImportService.html#importData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":643,"kind":2048,"name":"parseData","url":"classes/ImportService.html#parseData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":644,"kind":2048,"name":"importTransitions","url":"classes/ImportService.html#importTransitions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":645,"kind":2048,"name":"parseTransition","url":"classes/ImportService.html#parseTransition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":646,"kind":2048,"name":"importTransitionRoleRefs","url":"classes/ImportService.html#importTransitionRoleRefs","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":647,"kind":2048,"name":"importTransitionUserRefs","url":"classes/ImportService.html#importTransitionUserRefs","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":648,"kind":2048,"name":"importTransitionTriggers","url":"classes/ImportService.html#importTransitionTriggers","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":649,"kind":2048,"name":"importTransitionDataGroups","url":"classes/ImportService.html#importTransitionDataGroups","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":650,"kind":2048,"name":"importTransitionLayout","url":"classes/ImportService.html#importTransitionLayout","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":651,"kind":2048,"name":"importTransitionMetadata","url":"classes/ImportService.html#importTransitionMetadata","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":652,"kind":2048,"name":"importTransitionEvents","url":"classes/ImportService.html#importTransitionEvents","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":653,"kind":2048,"name":"importTransitionEvent","url":"classes/ImportService.html#importTransitionEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":654,"kind":2048,"name":"importTransactionRef","url":"classes/ImportService.html#importTransactionRef","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":655,"kind":2048,"name":"importAssignedUser","url":"classes/ImportService.html#importAssignedUser","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":656,"kind":2048,"name":"importTransactions","url":"classes/ImportService.html#importTransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":657,"kind":2048,"name":"importProcessRefs","url":"classes/ImportService.html#importProcessRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":658,"kind":2048,"name":"importPlaces","url":"classes/ImportService.html#importPlaces","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":659,"kind":2048,"name":"parsePlace","url":"classes/ImportService.html#parsePlace","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":660,"kind":2048,"name":"importArcs","url":"classes/ImportService.html#importArcs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":661,"kind":2048,"name":"parseArc","url":"classes/ImportService.html#parseArc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":662,"kind":2048,"name":"importI18n","url":"classes/ImportService.html#importI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":663,"kind":2048,"name":"parseI18n","url":"classes/ImportService.html#parseI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":664,"kind":2048,"name":"importMapping","url":"classes/ImportService.html#importMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":665,"kind":2048,"name":"parseMapping","url":"classes/ImportService.html#parseMapping","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportService"},{"id":666,"kind":2048,"name":"checkI18ns","url":"classes/ImportService.html#checkI18ns","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportService"},{"id":667,"kind":128,"name":"ImportUtils","url":"classes/ImportUtils.html","classes":"tsd-kind-class"},{"id":668,"kind":512,"name":"constructor","url":"classes/ImportUtils.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ImportUtils"},{"id":669,"kind":1024,"name":"eventIdCounter","url":"classes/ImportUtils.html#eventIdCounter","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ImportUtils"},{"id":670,"kind":1024,"name":"actionIdCounter","url":"classes/ImportUtils.html#actionIdCounter","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ImportUtils"},{"id":671,"kind":2048,"name":"tagValue","url":"classes/ImportUtils.html#tagValue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":672,"kind":2048,"name":"parseI18n","url":"classes/ImportUtils.html#parseI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":673,"kind":2048,"name":"parseI18nWithDynamic","url":"classes/ImportUtils.html#parseI18nWithDynamic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":674,"kind":2048,"name":"tagAttribute","url":"classes/ImportUtils.html#tagAttribute","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":675,"kind":2048,"name":"parseAction","url":"classes/ImportUtils.html#parseAction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":676,"kind":2048,"name":"parseFunction","url":"classes/ImportUtils.html#parseFunction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":677,"kind":2048,"name":"parseDefinition","url":"classes/ImportUtils.html#parseDefinition","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":678,"kind":2048,"name":"parseEncryption","url":"classes/ImportUtils.html#parseEncryption","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":679,"kind":2048,"name":"parseViewAndComponent","url":"classes/ImportUtils.html#parseViewAndComponent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":680,"kind":2048,"name":"parseComponent","url":"classes/ImportUtils.html#parseComponent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":681,"kind":2048,"name":"parseProperty","url":"classes/ImportUtils.html#parseProperty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":682,"kind":2048,"name":"resolveLogic","url":"classes/ImportUtils.html#resolveLogic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":683,"kind":2048,"name":"resolveLogicValue","url":"classes/ImportUtils.html#resolveLogicValue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":684,"kind":2048,"name":"resolveCaseLogic","url":"classes/ImportUtils.html#resolveCaseLogic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":685,"kind":2048,"name":"checkVariability","url":"classes/ImportUtils.html#checkVariability","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":686,"kind":2048,"name":"attachReference","url":"classes/ImportUtils.html#attachReference","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":687,"kind":2048,"name":"parseTrigger","url":"classes/ImportUtils.html#parseTrigger","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":688,"kind":2048,"name":"parseRoleRef","url":"classes/ImportUtils.html#parseRoleRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":689,"kind":2048,"name":"parseDataRef","url":"classes/ImportUtils.html#parseDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":690,"kind":2048,"name":"parseDataLayout","url":"classes/ImportUtils.html#parseDataLayout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":691,"kind":2048,"name":"parseDataGroup","url":"classes/ImportUtils.html#parseDataGroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":692,"kind":2048,"name":"parsePlaceStatic","url":"classes/ImportUtils.html#parsePlaceStatic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":693,"kind":2048,"name":"parseArcType","url":"classes/ImportUtils.html#parseArcType","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":694,"kind":2048,"name":"parseEvent","url":"classes/ImportUtils.html#parseEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"ImportUtils"},{"id":695,"kind":2048,"name":"resolveInits","url":"classes/ImportUtils.html#resolveInits","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":696,"kind":2048,"name":"resolveInit","url":"classes/ImportUtils.html#resolveInit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":697,"kind":2048,"name":"checkLengthAndNodes","url":"classes/ImportUtils.html#checkLengthAndNodes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":698,"kind":2048,"name":"resolveFormat","url":"classes/ImportUtils.html#resolveFormat","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":699,"kind":2048,"name":"parseNumberValue","url":"classes/ImportUtils.html#parseNumberValue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":700,"kind":2048,"name":"parseExpression","url":"classes/ImportUtils.html#parseExpression","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":701,"kind":2048,"name":"getNextEventId","url":"classes/ImportUtils.html#getNextEventId","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportUtils"},{"id":702,"kind":2048,"name":"getNextActionId","url":"classes/ImportUtils.html#getNextActionId","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ImportUtils"},{"id":703,"kind":2048,"name":"resetEventId","url":"classes/ImportUtils.html#resetEventId","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":704,"kind":2048,"name":"resetActionId","url":"classes/ImportUtils.html#resetActionId","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":705,"kind":2048,"name":"resetIds","url":"classes/ImportUtils.html#resetIds","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ImportUtils"},{"id":706,"kind":128,"name":"PetriNetResult","url":"classes/PetriNetResult.html","classes":"tsd-kind-class"},{"id":707,"kind":512,"name":"constructor","url":"classes/PetriNetResult.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PetriNetResult"},{"id":708,"kind":1024,"name":"_model","url":"classes/PetriNetResult.html#_model","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":709,"kind":1024,"name":"_errors","url":"classes/PetriNetResult.html#_errors","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":710,"kind":1024,"name":"_warnings","url":"classes/PetriNetResult.html#_warnings","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":711,"kind":1024,"name":"_info","url":"classes/PetriNetResult.html#_info","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":712,"kind":1024,"name":"_fileName","url":"classes/PetriNetResult.html#_fileName","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"PetriNetResult"},{"id":713,"kind":262144,"name":"model","url":"classes/PetriNetResult.html#model","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNetResult"},{"id":714,"kind":262144,"name":"errors","url":"classes/PetriNetResult.html#errors","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PetriNetResult"},{"id":715,"kind":2048,"name":"addError","url":"classes/PetriNetResult.html#addError","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNetResult"},{"id":716,"kind":262144,"name":"warnings","url":"classes/PetriNetResult.html#warnings","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PetriNetResult"},{"id":717,"kind":2048,"name":"addWarning","url":"classes/PetriNetResult.html#addWarning","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNetResult"},{"id":718,"kind":262144,"name":"info","url":"classes/PetriNetResult.html#info","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PetriNetResult"},{"id":719,"kind":2048,"name":"addInfo","url":"classes/PetriNetResult.html#addInfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PetriNetResult"},{"id":720,"kind":262144,"name":"fileName","url":"classes/PetriNetResult.html#fileName","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"PetriNetResult"},{"id":721,"kind":128,"name":"ExportService","url":"classes/ExportService.html","classes":"tsd-kind-class"},{"id":722,"kind":1024,"name":"PETRIFLOW_SCHEMA_URL","url":"classes/ExportService.html#PETRIFLOW_SCHEMA_URL","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"ExportService"},{"id":723,"kind":512,"name":"constructor","url":"classes/ExportService.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ExportService"},{"id":724,"kind":1024,"name":"xmlConstructor","url":"classes/ExportService.html#xmlConstructor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"ExportService"},{"id":725,"kind":1024,"name":"exportUtils","url":"classes/ExportService.html#exportUtils","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"ExportService"},{"id":726,"kind":2048,"name":"exportXml","url":"classes/ExportService.html#exportXml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":727,"kind":2048,"name":"xmlToString","url":"classes/ExportService.html#xmlToString","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":728,"kind":2048,"name":"generateXml","url":"classes/ExportService.html#generateXml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":729,"kind":2048,"name":"exportModel","url":"classes/ExportService.html#exportModel","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":730,"kind":2048,"name":"exportTransactions","url":"classes/ExportService.html#exportTransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":731,"kind":2048,"name":"exportRoles","url":"classes/ExportService.html#exportRoles","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":732,"kind":2048,"name":"exportFunctions","url":"classes/ExportService.html#exportFunctions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":733,"kind":2048,"name":"exportEvent","url":"classes/ExportService.html#exportEvent","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"ExportService"},{"id":734,"kind":2048,"name":"exportProcessRefs","url":"classes/ExportService.html#exportProcessRefs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":735,"kind":2048,"name":"exportProcessRef","url":"classes/ExportService.html#exportProcessRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":736,"kind":2048,"name":"exportTransitionRef","url":"classes/ExportService.html#exportTransitionRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":737,"kind":2048,"name":"exportProcessEvents","url":"classes/ExportService.html#exportProcessEvents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":738,"kind":2048,"name":"exportData","url":"classes/ExportService.html#exportData","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":739,"kind":2048,"name":"exportI18n","url":"classes/ExportService.html#exportI18n","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":740,"kind":2048,"name":"exportTransitions","url":"classes/ExportService.html#exportTransitions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":741,"kind":2048,"name":"exportDataRef","url":"classes/ExportService.html#exportDataRef","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":742,"kind":2048,"name":"exportComponent","url":"classes/ExportService.html#exportComponent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":743,"kind":2048,"name":"exportDataRefLayout","url":"classes/ExportService.html#exportDataRefLayout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":744,"kind":2048,"name":"exportTransitionLayout","url":"classes/ExportService.html#exportTransitionLayout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":745,"kind":2048,"name":"exportLayout","url":"classes/ExportService.html#exportLayout","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ExportService"},{"id":746,"kind":2048,"name":"exportDataGroup","url":"classes/ExportService.html#exportDataGroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":747,"kind":2048,"name":"exportPlaces","url":"classes/ExportService.html#exportPlaces","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":748,"kind":2048,"name":"exportArcs","url":"classes/ExportService.html#exportArcs","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":749,"kind":2048,"name":"exportBreakpoints","url":"classes/ExportService.html#exportBreakpoints","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportService"},{"id":750,"kind":128,"name":"ExportUtils","url":"classes/ExportUtils.html","classes":"tsd-kind-class"},{"id":751,"kind":2048,"name":"mergeBack","url":"classes/ExportUtils.html#mergeBack","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"ExportUtils"},{"id":752,"kind":512,"name":"constructor","url":"classes/ExportUtils.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ExportUtils"},{"id":753,"kind":1024,"name":"CDATA_REGRET","url":"classes/ExportUtils.html#CDATA_REGRET","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ExportUtils"},{"id":754,"kind":1024,"name":"COMMENT_REGRET","url":"classes/ExportUtils.html#COMMENT_REGRET","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"ExportUtils"},{"id":755,"kind":1024,"name":"xmlConstructor","url":"classes/ExportUtils.html#xmlConstructor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-protected","parent":"ExportUtils"},{"id":756,"kind":2048,"name":"exportTag","url":"classes/ExportUtils.html#exportTag","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":757,"kind":2048,"name":"escape","url":"classes/ExportUtils.html#escape","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":758,"kind":2048,"name":"exportExpression","url":"classes/ExportUtils.html#exportExpression","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":759,"kind":2048,"name":"exportActions","url":"classes/ExportUtils.html#exportActions","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"ExportUtils"},{"id":760,"kind":2048,"name":"exportAction","url":"classes/ExportUtils.html#exportAction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":761,"kind":2048,"name":"exportFunction","url":"classes/ExportUtils.html#exportFunction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":762,"kind":2048,"name":"escapeAction","url":"classes/ExportUtils.html#escapeAction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":763,"kind":2048,"name":"exportLogic","url":"classes/ExportUtils.html#exportLogic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"},{"id":764,"kind":2048,"name":"exportCaseLogic","url":"classes/ExportUtils.html#exportCaseLogic","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ExportUtils"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,22.044]],["parent/0",[]],["name/1",[1,28.017]],["parent/1",[0,2.124]],["name/2",[2,38.378]],["parent/2",[0,2.124]],["name/3",[3,62.357]],["parent/3",[0,2.124]],["name/4",[4,62.357]],["parent/4",[0,2.124]],["name/5",[5,46.263]],["parent/5",[0,2.124]],["name/6",[6,53.884]],["parent/6",[0,2.124]],["name/7",[7,62.357]],["parent/7",[0,2.124]],["name/8",[8,62.357]],["parent/8",[0,2.124]],["name/9",[9,62.357]],["parent/9",[0,2.124]],["name/10",[10,62.357]],["parent/10",[0,2.124]],["name/11",[11,57.249]],["parent/11",[0,2.124]],["name/12",[12,57.249]],["parent/12",[0,2.124]],["name/13",[13,62.357]],["parent/13",[0,2.124]],["name/14",[14,62.357]],["parent/14",[0,2.124]],["name/15",[15,62.357]],["parent/15",[0,2.124]],["name/16",[16,62.357]],["parent/16",[0,2.124]],["name/17",[17,62.357]],["parent/17",[0,2.124]],["name/18",[18,62.357]],["parent/18",[0,2.124]],["name/19",[19,62.357]],["parent/19",[0,2.124]],["name/20",[20,57.249]],["parent/20",[0,2.124]],["name/21",[21,62.357]],["parent/21",[0,2.124]],["name/22",[22,62.357]],["parent/22",[0,2.124]],["name/23",[23,62.357]],["parent/23",[0,2.124]],["name/24",[24,35.731]],["parent/24",[0,2.124]],["name/25",[25,62.357]],["parent/25",[0,2.124]],["name/26",[26,62.357]],["parent/26",[0,2.124]],["name/27",[27,46.263]],["parent/27",[0,2.124]],["name/28",[28,41.155]],["parent/28",[0,2.124]],["name/29",[29,62.357]],["parent/29",[0,2.124]],["name/30",[30,62.357]],["parent/30",[0,2.124]],["name/31",[31,62.357]],["parent/31",[0,2.124]],["name/32",[32,62.357]],["parent/32",[0,2.124]],["name/33",[33,62.357]],["parent/33",[0,2.124]],["name/34",[34,62.357]],["parent/34",[0,2.124]],["name/35",[35,62.357]],["parent/35",[0,2.124]],["name/36",[36,62.357]],["parent/36",[0,2.124]],["name/37",[37,62.357]],["parent/37",[0,2.124]],["name/38",[38,62.357]],["parent/38",[0,2.124]],["name/39",[39,62.357]],["parent/39",[0,2.124]],["name/40",[40,62.357]],["parent/40",[0,2.124]],["name/41",[41,62.357]],["parent/41",[0,2.124]],["name/42",[42,62.357]],["parent/42",[0,2.124]],["name/43",[43,62.357]],["parent/43",[0,2.124]],["name/44",[44,62.357]],["parent/44",[0,2.124]],["name/45",[45,62.357]],["parent/45",[0,2.124]],["name/46",[46,62.357]],["parent/46",[0,2.124]],["name/47",[47,62.357]],["parent/47",[0,2.124]],["name/48",[48,62.357]],["parent/48",[0,2.124]],["name/49",[49,62.357]],["parent/49",[0,2.124]],["name/50",[50,62.357]],["parent/50",[0,2.124]],["name/51",[51,62.357]],["parent/51",[0,2.124]],["name/52",[52,62.357]],["parent/52",[0,2.124]],["name/53",[53,62.357]],["parent/53",[0,2.124]],["name/54",[54,62.357]],["parent/54",[0,2.124]],["name/55",[55,62.357]],["parent/55",[0,2.124]],["name/56",[56,62.357]],["parent/56",[0,2.124]],["name/57",[57,62.357]],["parent/57",[0,2.124]],["name/58",[58,62.357]],["parent/58",[0,2.124]],["name/59",[59,62.357]],["parent/59",[0,2.124]],["name/60",[60,62.357]],["parent/60",[0,2.124]],["name/61",[61,62.357]],["parent/61",[0,2.124]],["name/62",[62,62.357]],["parent/62",[0,2.124]],["name/63",[63,62.357]],["parent/63",[0,2.124]],["name/64",[64,62.357]],["parent/64",[0,2.124]],["name/65",[65,62.357]],["parent/65",[0,2.124]],["name/66",[66,62.357]],["parent/66",[0,2.124]],["name/67",[67,57.249]],["parent/67",[0,2.124]],["name/68",[68,57.249]],["parent/68",[0,2.124]],["name/69",[69,57.249]],["parent/69",[0,2.124]],["name/70",[70,57.249]],["parent/70",[0,2.124]],["name/71",[71,62.357]],["parent/71",[0,2.124]],["name/72",[72,62.357]],["parent/72",[0,2.124]],["name/73",[73,62.357]],["parent/73",[0,2.124]],["name/74",[74,62.357]],["parent/74",[0,2.124]],["name/75",[75,62.357]],["parent/75",[0,2.124]],["name/76",[76,62.357]],["parent/76",[0,2.124]],["name/77",[77,62.357]],["parent/77",[0,2.124]],["name/78",[78,62.357]],["parent/78",[0,2.124]],["name/79",[79,62.357]],["parent/79",[0,2.124]],["name/80",[80,62.357]],["parent/80",[0,2.124]],["name/81",[81,62.357]],["parent/81",[0,2.124]],["name/82",[82,62.357]],["parent/82",[0,2.124]],["name/83",[83,30.168]],["parent/83",[0,2.124]],["name/84",[84,37.79]],["parent/84",[]],["name/85",[1,28.017]],["parent/85",[84,3.641]],["name/86",[2,38.378]],["parent/86",[84,3.641]],["name/87",[85,47.694]],["parent/87",[84,3.641]],["name/88",[86,62.357]],["parent/88",[84,3.641]],["name/89",[87,62.357]],["parent/89",[84,3.641]],["name/90",[88,62.357]],["parent/90",[84,3.641]],["name/91",[89,62.357]],["parent/91",[84,3.641]],["name/92",[90,62.357]],["parent/92",[84,3.641]],["name/93",[24,35.731]],["parent/93",[84,3.641]],["name/94",[91,41.988]],["parent/94",[84,3.641]],["name/95",[92,62.357]],["parent/95",[84,3.641]],["name/96",[93,62.357]],["parent/96",[84,3.641]],["name/97",[94,62.357]],["parent/97",[84,3.641]],["name/98",[95,62.357]],["parent/98",[84,3.641]],["name/99",[96,62.357]],["parent/99",[84,3.641]],["name/100",[83,30.168]],["parent/100",[84,3.641]],["name/101",[97,47.694]],["parent/101",[]],["name/102",[98,62.357]],["parent/102",[97,4.595]],["name/103",[99,62.357]],["parent/103",[97,4.595]],["name/104",[100,62.357]],["parent/104",[97,4.595]],["name/105",[101,62.357]],["parent/105",[97,4.595]],["name/106",[102,62.357]],["parent/106",[97,4.595]],["name/107",[103,47.694]],["parent/107",[]],["name/108",[1,28.017]],["parent/108",[103,4.595]],["name/109",[104,51.371]],["parent/109",[103,4.595]],["name/110",[105,51.371]],["parent/110",[103,4.595]],["name/111",[106,51.371]],["parent/111",[103,4.595]],["name/112",[107,51.371]],["parent/112",[103,4.595]],["name/113",[108,41.988]],["parent/113",[]],["name/114",[1,28.017]],["parent/114",[108,4.045]],["name/115",[109,53.884]],["parent/115",[108,4.045]],["name/116",[110,62.357]],["parent/116",[108,4.045]],["name/117",[111,62.357]],["parent/117",[108,4.045]],["name/118",[112,51.371]],["parent/118",[108,4.045]],["name/119",[113,62.357]],["parent/119",[108,4.045]],["name/120",[114,62.357]],["parent/120",[108,4.045]],["name/121",[83,30.168]],["parent/121",[108,4.045]],["name/122",[115,45.011]],["parent/122",[]],["name/123",[1,28.017]],["parent/123",[115,4.336]],["name/124",[83,30.168]],["parent/124",[115,4.336]],["name/125",[91,41.988]],["parent/125",[115,4.336]],["name/126",[24,35.731]],["parent/126",[115,4.336]],["name/127",[116,47.694]],["parent/127",[115,4.336]],["name/128",[117,47.694]],["parent/128",[115,4.336]],["name/129",[118,45.011]],["parent/129",[115,4.336]],["name/130",[119,53.884]],["parent/130",[]],["name/131",[120,62.357]],["parent/131",[119,5.191]],["name/132",[121,62.357]],["parent/132",[119,5.191]],["name/133",[122,37.234]],["parent/133",[]],["name/134",[123,62.357]],["parent/134",[122,3.587]],["name/135",[124,62.357]],["parent/135",[122,3.587]],["name/136",[125,62.357]],["parent/136",[122,3.587]],["name/137",[126,62.357]],["parent/137",[122,3.587]],["name/138",[127,62.357]],["parent/138",[122,3.587]],["name/139",[128,62.357]],["parent/139",[122,3.587]],["name/140",[129,62.357]],["parent/140",[122,3.587]],["name/141",[130,62.357]],["parent/141",[122,3.587]],["name/142",[131,62.357]],["parent/142",[122,3.587]],["name/143",[132,62.357]],["parent/143",[122,3.587]],["name/144",[133,62.357]],["parent/144",[122,3.587]],["name/145",[134,57.249]],["parent/145",[122,3.587]],["name/146",[135,62.357]],["parent/146",[122,3.587]],["name/147",[136,62.357]],["parent/147",[122,3.587]],["name/148",[137,62.357]],["parent/148",[122,3.587]],["name/149",[138,62.357]],["parent/149",[122,3.587]],["name/150",[139,62.357]],["parent/150",[122,3.587]],["name/151",[140,28.457]],["parent/151",[]],["name/152",[1,28.017]],["parent/152",[140,2.742]],["name/153",[2,38.378]],["parent/153",[140,2.742]],["name/154",[5,46.263]],["parent/154",[140,2.742]],["name/155",[141,62.357]],["parent/155",[140,2.742]],["name/156",[142,62.357]],["parent/156",[140,2.742]],["name/157",[143,62.357]],["parent/157",[140,2.742]],["name/158",[144,62.357]],["parent/158",[140,2.742]],["name/159",[145,62.357]],["parent/159",[140,2.742]],["name/160",[146,62.357]],["parent/160",[140,2.742]],["name/161",[147,62.357]],["parent/161",[140,2.742]],["name/162",[148,57.249]],["parent/162",[140,2.742]],["name/163",[85,47.694]],["parent/163",[140,2.742]],["name/164",[149,62.357]],["parent/164",[140,2.742]],["name/165",[150,62.357]],["parent/165",[140,2.742]],["name/166",[151,62.357]],["parent/166",[140,2.742]],["name/167",[152,62.357]],["parent/167",[140,2.742]],["name/168",[153,62.357]],["parent/168",[140,2.742]],["name/169",[154,62.357]],["parent/169",[140,2.742]],["name/170",[24,35.731]],["parent/170",[140,2.742]],["name/171",[27,46.263]],["parent/171",[140,2.742]],["name/172",[155,62.357]],["parent/172",[140,2.742]],["name/173",[156,62.357]],["parent/173",[140,2.742]],["name/174",[157,62.357]],["parent/174",[140,2.742]],["name/175",[158,62.357]],["parent/175",[140,2.742]],["name/176",[159,62.357]],["parent/176",[140,2.742]],["name/177",[160,62.357]],["parent/177",[140,2.742]],["name/178",[161,62.357]],["parent/178",[140,2.742]],["name/179",[108,41.988]],["parent/179",[140,2.742]],["name/180",[91,41.988]],["parent/180",[140,2.742]],["name/181",[162,62.357]],["parent/181",[140,2.742]],["name/182",[163,62.357]],["parent/182",[140,2.742]],["name/183",[164,62.357]],["parent/183",[140,2.742]],["name/184",[165,62.357]],["parent/184",[140,2.742]],["name/185",[166,62.357]],["parent/185",[140,2.742]],["name/186",[167,62.357]],["parent/186",[140,2.742]],["name/187",[83,30.168]],["parent/187",[140,2.742]],["name/188",[118,45.011]],["parent/188",[140,2.742]],["name/189",[168,51.371]],["parent/189",[140,2.742]],["name/190",[169,51.371]],["parent/190",[140,2.742]],["name/191",[170,51.371]],["parent/191",[140,2.742]],["name/192",[171,51.371]],["parent/192",[140,2.742]],["name/193",[172,51.371]],["parent/193",[140,2.742]],["name/194",[173,51.371]],["parent/194",[140,2.742]],["name/195",[174,43.899]],["parent/195",[]],["name/196",[1,28.017]],["parent/196",[174,4.229]],["name/197",[175,57.249]],["parent/197",[174,4.229]],["name/198",[176,57.249]],["parent/198",[174,4.229]],["name/199",[177,57.249]],["parent/199",[174,4.229]],["name/200",[174,43.899]],["parent/200",[174,4.229]],["name/201",[83,30.168]],["parent/201",[174,4.229]],["name/202",[28,41.155]],["parent/202",[]],["name/203",[1,28.017]],["parent/203",[28,3.965]],["name/204",[178,53.884]],["parent/204",[28,3.965]],["name/205",[6,53.884]],["parent/205",[28,3.965]],["name/206",[85,47.694]],["parent/206",[28,3.965]],["name/207",[179,53.884]],["parent/207",[28,3.965]],["name/208",[28,41.155]],["parent/208",[28,3.965]],["name/209",[91,41.988]],["parent/209",[28,3.965]],["name/210",[83,30.168]],["parent/210",[28,3.965]],["name/211",[180,53.884]],["parent/211",[]],["name/212",[181,57.249]],["parent/212",[180,5.191]],["name/213",[182,62.357]],["parent/213",[180,5.191]],["name/214",[183,45.011]],["parent/214",[]],["name/215",[184,62.357]],["parent/215",[183,4.336]],["name/216",[1,28.017]],["parent/216",[183,4.336]],["name/217",[178,53.884]],["parent/217",[183,4.336]],["name/218",[185,53.884]],["parent/218",[183,4.336]],["name/219",[179,53.884]],["parent/219",[183,4.336]],["name/220",[186,51.371]],["parent/220",[183,4.336]],["name/221",[83,30.168]],["parent/221",[183,4.336]],["name/222",[187,46.263]],["parent/222",[]],["name/223",[1,28.017]],["parent/223",[187,4.457]],["name/224",[178,53.884]],["parent/224",[187,4.457]],["name/225",[185,53.884]],["parent/225",[187,4.457]],["name/226",[179,53.884]],["parent/226",[187,4.457]],["name/227",[186,51.371]],["parent/227",[187,4.457]],["name/228",[83,30.168]],["parent/228",[187,4.457]],["name/229",[188,46.263]],["parent/229",[]],["name/230",[1,28.017]],["parent/230",[188,4.457]],["name/231",[176,57.249]],["parent/231",[188,4.457]],["name/232",[189,53.884]],["parent/232",[188,4.457]],["name/233",[174,43.899]],["parent/233",[188,4.457]],["name/234",[190,53.884]],["parent/234",[188,4.457]],["name/235",[83,30.168]],["parent/235",[188,4.457]],["name/236",[191,46.263]],["parent/236",[]],["name/237",[1,28.017]],["parent/237",[191,4.457]],["name/238",[109,53.884]],["parent/238",[191,4.457]],["name/239",[185,53.884]],["parent/239",[191,4.457]],["name/240",[112,51.371]],["parent/240",[191,4.457]],["name/241",[186,51.371]],["parent/241",[191,4.457]],["name/242",[83,30.168]],["parent/242",[191,4.457]],["name/243",[192,42.898]],["parent/243",[]],["name/244",[1,28.017]],["parent/244",[192,4.133]],["name/245",[193,62.357]],["parent/245",[192,4.133]],["name/246",[20,57.249]],["parent/246",[192,4.133]],["name/247",[194,62.357]],["parent/247",[192,4.133]],["name/248",[67,57.249]],["parent/248",[192,4.133]],["name/249",[68,57.249]],["parent/249",[192,4.133]],["name/250",[69,57.249]],["parent/250",[192,4.133]],["name/251",[70,57.249]],["parent/251",[192,4.133]],["name/252",[83,30.168]],["parent/252",[192,4.133]],["name/253",[195,46.263]],["parent/253",[]],["name/254",[1,28.017]],["parent/254",[195,4.457]],["name/255",[175,57.249]],["parent/255",[195,4.457]],["name/256",[177,57.249]],["parent/256",[195,4.457]],["name/257",[83,30.168]],["parent/257",[195,4.457]],["name/258",[112,51.371]],["parent/258",[195,4.457]],["name/259",[186,51.371]],["parent/259",[195,4.457]],["name/260",[196,46.263]],["parent/260",[]],["name/261",[1,28.017]],["parent/261",[196,4.457]],["name/262",[2,38.378]],["parent/262",[196,4.457]],["name/263",[197,57.249]],["parent/263",[196,4.457]],["name/264",[24,35.731]],["parent/264",[196,4.457]],["name/265",[198,57.249]],["parent/265",[196,4.457]],["name/266",[83,30.168]],["parent/266",[196,4.457]],["name/267",[199,45.011]],["parent/267",[]],["name/268",[1,28.017]],["parent/268",[199,4.336]],["name/269",[83,30.168]],["parent/269",[199,4.336]],["name/270",[91,41.988]],["parent/270",[199,4.336]],["name/271",[24,35.731]],["parent/271",[199,4.336]],["name/272",[116,47.694]],["parent/272",[199,4.336]],["name/273",[117,47.694]],["parent/273",[199,4.336]],["name/274",[118,45.011]],["parent/274",[199,4.336]],["name/275",[200,53.884]],["parent/275",[]],["name/276",[201,57.249]],["parent/276",[200,5.191]],["name/277",[202,57.249]],["parent/277",[200,5.191]],["name/278",[203,41.988]],["parent/278",[]],["name/279",[1,28.017]],["parent/279",[203,4.045]],["name/280",[204,62.357]],["parent/280",[203,4.045]],["name/281",[205,62.357]],["parent/281",[203,4.045]],["name/282",[206,57.249]],["parent/282",[203,4.045]],["name/283",[201,57.249]],["parent/283",[203,4.045]],["name/284",[202,57.249]],["parent/284",[203,4.045]],["name/285",[207,57.249]],["parent/285",[203,4.045]],["name/286",[83,30.168]],["parent/286",[203,4.045]],["name/287",[208,41.988]],["parent/287",[]],["name/288",[1,28.017]],["parent/288",[208,4.045]],["name/289",[85,47.694]],["parent/289",[208,4.045]],["name/290",[2,38.378]],["parent/290",[208,4.045]],["name/291",[209,62.357]],["parent/291",[208,4.045]],["name/292",[210,62.357]],["parent/292",[208,4.045]],["name/293",[91,41.988]],["parent/293",[208,4.045]],["name/294",[24,35.731]],["parent/294",[208,4.045]],["name/295",[116,47.694]],["parent/295",[208,4.045]],["name/296",[117,47.694]],["parent/296",[208,4.045]],["name/297",[118,45.011]],["parent/297",[208,4.045]],["name/298",[211,53.884]],["parent/298",[]],["name/299",[212,62.357]],["parent/299",[211,5.191]],["name/300",[213,62.357]],["parent/300",[211,5.191]],["name/301",[214,53.884]],["parent/301",[]],["name/302",[215,62.357]],["parent/302",[214,5.191]],["name/303",[216,62.357]],["parent/303",[214,5.191]],["name/304",[217,39.003]],["parent/304",[]],["name/305",[1,28.017]],["parent/305",[217,3.758]],["name/306",[2,38.378]],["parent/306",[217,3.758]],["name/307",[218,62.357]],["parent/307",[217,3.758]],["name/308",[219,62.357]],["parent/308",[217,3.758]],["name/309",[220,62.357]],["parent/309",[217,3.758]],["name/310",[221,62.357]],["parent/310",[217,3.758]],["name/311",[222,62.357]],["parent/311",[217,3.758]],["name/312",[24,35.731]],["parent/312",[217,3.758]],["name/313",[223,62.357]],["parent/313",[217,3.758]],["name/314",[224,45.011]],["parent/314",[217,3.758]],["name/315",[225,36.708]],["parent/315",[217,3.758]],["name/316",[226,34.842]],["parent/316",[217,3.758]],["name/317",[227,42.898]],["parent/317",[217,3.758]],["name/318",[83,30.168]],["parent/318",[217,3.758]],["name/319",[228,43.899]],["parent/319",[]],["name/320",[1,28.017]],["parent/320",[228,4.229]],["name/321",[109,53.884]],["parent/321",[228,4.229]],["name/322",[229,62.357]],["parent/322",[228,4.229]],["name/323",[197,57.249]],["parent/323",[228,4.229]],["name/324",[112,51.371]],["parent/324",[228,4.229]],["name/325",[230,62.357]],["parent/325",[228,4.229]],["name/326",[198,57.249]],["parent/326",[228,4.229]],["name/327",[83,30.168]],["parent/327",[228,4.229]],["name/328",[231,39.003]],["parent/328",[]],["name/329",[1,28.017]],["parent/329",[231,3.758]],["name/330",[2,38.378]],["parent/330",[231,3.758]],["name/331",[232,62.357]],["parent/331",[231,3.758]],["name/332",[104,51.371]],["parent/332",[231,3.758]],["name/333",[105,51.371]],["parent/333",[231,3.758]],["name/334",[233,57.249]],["parent/334",[231,3.758]],["name/335",[234,62.357]],["parent/335",[231,3.758]],["name/336",[24,35.731]],["parent/336",[231,3.758]],["name/337",[235,62.357]],["parent/337",[231,3.758]],["name/338",[106,51.371]],["parent/338",[231,3.758]],["name/339",[107,51.371]],["parent/339",[231,3.758]],["name/340",[236,57.249]],["parent/340",[231,3.758]],["name/341",[237,62.357]],["parent/341",[231,3.758]],["name/342",[83,30.168]],["parent/342",[231,3.758]],["name/343",[238,45.011]],["parent/343",[]],["name/344",[1,28.017]],["parent/344",[238,4.336]],["name/345",[83,30.168]],["parent/345",[238,4.336]],["name/346",[91,41.988]],["parent/346",[238,4.336]],["name/347",[24,35.731]],["parent/347",[238,4.336]],["name/348",[116,47.694]],["parent/348",[238,4.336]],["name/349",[117,47.694]],["parent/349",[238,4.336]],["name/350",[118,45.011]],["parent/350",[238,4.336]],["name/351",[239,57.249]],["parent/351",[]],["name/352",[240,62.357]],["parent/352",[239,5.515]],["name/353",[241,46.263]],["parent/353",[]],["name/354",[1,28.017]],["parent/354",[241,4.457]],["name/355",[2,38.378]],["parent/355",[241,4.457]],["name/356",[242,57.249]],["parent/356",[241,4.457]],["name/357",[24,35.731]],["parent/357",[241,4.457]],["name/358",[203,41.988]],["parent/358",[241,4.457]],["name/359",[83,30.168]],["parent/359",[241,4.457]],["name/360",[243,46.263]],["parent/360",[]],["name/361",[1,28.017]],["parent/361",[243,4.457]],["name/362",[2,38.378]],["parent/362",[243,4.457]],["name/363",[242,57.249]],["parent/363",[243,4.457]],["name/364",[24,35.731]],["parent/364",[243,4.457]],["name/365",[203,41.988]],["parent/365",[243,4.457]],["name/366",[83,30.168]],["parent/366",[243,4.457]],["name/367",[244,40.385]],["parent/367",[]],["name/368",[1,28.017]],["parent/368",[244,3.891]],["name/369",[2,38.378]],["parent/369",[244,3.891]],["name/370",[5,46.263]],["parent/370",[244,3.891]],["name/371",[24,35.731]],["parent/371",[244,3.891]],["name/372",[27,46.263]],["parent/372",[244,3.891]],["name/373",[83,30.168]],["parent/373",[244,3.891]],["name/374",[168,51.371]],["parent/374",[244,3.891]],["name/375",[169,51.371]],["parent/375",[244,3.891]],["name/376",[170,51.371]],["parent/376",[244,3.891]],["name/377",[171,51.371]],["parent/377",[244,3.891]],["name/378",[172,51.371]],["parent/378",[244,3.891]],["name/379",[173,51.371]],["parent/379",[244,3.891]],["name/380",[245,41.155]],["parent/380",[]],["name/381",[1,28.017]],["parent/381",[245,3.965]],["name/382",[5,46.263]],["parent/382",[245,3.965]],["name/383",[189,53.884]],["parent/383",[245,3.965]],["name/384",[27,46.263]],["parent/384",[245,3.965]],["name/385",[190,53.884]],["parent/385",[245,3.965]],["name/386",[83,30.168]],["parent/386",[245,3.965]],["name/387",[91,41.988]],["parent/387",[245,3.965]],["name/388",[24,35.731]],["parent/388",[245,3.965]],["name/389",[116,47.694]],["parent/389",[245,3.965]],["name/390",[117,47.694]],["parent/390",[245,3.965]],["name/391",[118,45.011]],["parent/391",[245,3.965]],["name/392",[246,53.884]],["parent/392",[]],["name/393",[247,53.884]],["parent/393",[246,5.191]],["name/394",[248,51.371]],["parent/394",[246,5.191]],["name/395",[249,46.263]],["parent/395",[]],["name/396",[1,28.017]],["parent/396",[249,4.457]],["name/397",[2,38.378]],["parent/397",[249,4.457]],["name/398",[5,46.263]],["parent/398",[249,4.457]],["name/399",[24,35.731]],["parent/399",[249,4.457]],["name/400",[27,46.263]],["parent/400",[249,4.457]],["name/401",[83,30.168]],["parent/401",[249,4.457]],["name/402",[250,45.011]],["parent/402",[]],["name/403",[251,62.357]],["parent/403",[250,4.336]],["name/404",[252,62.357]],["parent/404",[250,4.336]],["name/405",[253,62.357]],["parent/405",[250,4.336]],["name/406",[254,47.694]],["parent/406",[]],["name/407",[255,57.249]],["parent/407",[254,4.595]],["name/408",[256,62.357]],["parent/408",[254,4.595]],["name/409",[257,62.357]],["parent/409",[254,4.595]],["name/410",[258,62.357]],["parent/410",[254,4.595]],["name/411",[259,51.371]],["parent/411",[]],["name/412",[260,53.884]],["parent/412",[259,4.949]],["name/413",[261,57.249]],["parent/413",[259,4.949]],["name/414",[262,45.011]],["parent/414",[]],["name/415",[1,28.017]],["parent/415",[262,4.336]],["name/416",[263,57.249]],["parent/416",[262,4.336]],["name/417",[264,62.357]],["parent/417",[262,4.336]],["name/418",[248,51.371]],["parent/418",[262,4.336]],["name/419",[265,62.357]],["parent/419",[262,4.336]],["name/420",[83,30.168]],["parent/420",[262,4.336]],["name/421",[266,51.371]],["parent/421",[]],["name/422",[260,53.884]],["parent/422",[266,4.949]],["name/423",[267,62.357]],["parent/423",[266,4.949]],["name/424",[268,39.003]],["parent/424",[]],["name/425",[1,28.017]],["parent/425",[268,3.758]],["name/426",[104,51.371]],["parent/426",[268,3.758]],["name/427",[105,51.371]],["parent/427",[268,3.758]],["name/428",[269,62.357]],["parent/428",[268,3.758]],["name/429",[270,62.357]],["parent/429",[268,3.758]],["name/430",[106,51.371]],["parent/430",[268,3.758]],["name/431",[107,51.371]],["parent/431",[268,3.758]],["name/432",[271,51.371]],["parent/432",[268,3.758]],["name/433",[254,47.694]],["parent/433",[268,3.758]],["name/434",[83,30.168]],["parent/434",[268,3.758]],["name/435",[272,51.371]],["parent/435",[268,3.758]],["name/436",[273,51.371]],["parent/436",[268,3.758]],["name/437",[274,53.884]],["parent/437",[268,3.758]],["name/438",[250,45.011]],["parent/438",[268,3.758]],["name/439",[225,36.708]],["parent/439",[]],["name/440",[1,28.017]],["parent/440",[225,3.536]],["name/441",[2,38.378]],["parent/441",[225,3.536]],["name/442",[275,53.884]],["parent/442",[225,3.536]],["name/443",[276,53.884]],["parent/443",[225,3.536]],["name/444",[148,57.249]],["parent/444",[225,3.536]],["name/445",[24,35.731]],["parent/445",[225,3.536]],["name/446",[277,38.378]],["parent/446",[225,3.536]],["name/447",[278,40.385]],["parent/447",[225,3.536]],["name/448",[108,41.988]],["parent/448",[225,3.536]],["name/449",[83,30.168]],["parent/449",[225,3.536]],["name/450",[118,45.011]],["parent/450",[225,3.536]],["name/451",[168,51.371]],["parent/451",[225,3.536]],["name/452",[169,51.371]],["parent/452",[225,3.536]],["name/453",[170,51.371]],["parent/453",[225,3.536]],["name/454",[171,51.371]],["parent/454",[225,3.536]],["name/455",[172,51.371]],["parent/455",[225,3.536]],["name/456",[173,51.371]],["parent/456",[225,3.536]],["name/457",[279,46.263]],["parent/457",[]],["name/458",[280,57.249]],["parent/458",[279,4.457]],["name/459",[281,62.357]],["parent/459",[279,4.457]],["name/460",[282,62.357]],["parent/460",[279,4.457]],["name/461",[283,62.357]],["parent/461",[279,4.457]],["name/462",[284,62.357]],["parent/462",[279,4.457]],["name/463",[285,62.357]],["parent/463",[279,4.457]],["name/464",[286,43.899]],["parent/464",[]],["name/465",[1,28.017]],["parent/465",[286,4.229]],["name/466",[287,62.357]],["parent/466",[286,4.229]],["name/467",[288,62.357]],["parent/467",[286,4.229]],["name/468",[289,62.357]],["parent/468",[286,4.229]],["name/469",[290,62.357]],["parent/469",[286,4.229]],["name/470",[280,57.249]],["parent/470",[286,4.229]],["name/471",[291,62.357]],["parent/471",[286,4.229]],["name/472",[83,30.168]],["parent/472",[286,4.229]],["name/473",[292,53.884]],["parent/473",[]],["name/474",[293,62.357]],["parent/474",[292,5.191]],["name/475",[1,28.017]],["parent/475",[292,5.191]],["name/476",[226,34.842]],["parent/476",[]],["name/477",[1,28.017]],["parent/477",[226,3.357]],["name/478",[2,38.378]],["parent/478",[226,3.357]],["name/479",[294,57.249]],["parent/479",[226,3.357]],["name/480",[295,57.249]],["parent/480",[226,3.357]],["name/481",[5,46.263]],["parent/481",[226,3.357]],["name/482",[276,53.884]],["parent/482",[226,3.357]],["name/483",[296,57.249]],["parent/483",[226,3.357]],["name/484",[297,62.357]],["parent/484",[226,3.357]],["name/485",[298,62.357]],["parent/485",[226,3.357]],["name/486",[24,35.731]],["parent/486",[226,3.357]],["name/487",[273,51.371]],["parent/487",[226,3.357]],["name/488",[272,51.371]],["parent/488",[226,3.357]],["name/489",[27,46.263]],["parent/489",[226,3.357]],["name/490",[278,40.385]],["parent/490",[226,3.357]],["name/491",[250,45.011]],["parent/491",[226,3.357]],["name/492",[299,62.357]],["parent/492",[226,3.357]],["name/493",[300,62.357]],["parent/493",[226,3.357]],["name/494",[301,62.357]],["parent/494",[226,3.357]],["name/495",[302,62.357]],["parent/495",[226,3.357]],["name/496",[303,62.357]],["parent/496",[226,3.357]],["name/497",[83,30.168]],["parent/497",[226,3.357]],["name/498",[304,51.371]],["parent/498",[]],["name/499",[260,53.884]],["parent/499",[304,4.949]],["name/500",[305,62.357]],["parent/500",[304,4.949]],["name/501",[278,40.385]],["parent/501",[]],["name/502",[1,28.017]],["parent/502",[278,3.891]],["name/503",[295,57.249]],["parent/503",[278,3.891]],["name/504",[294,57.249]],["parent/504",[278,3.891]],["name/505",[306,62.357]],["parent/505",[278,3.891]],["name/506",[296,57.249]],["parent/506",[278,3.891]],["name/507",[272,51.371]],["parent/507",[278,3.891]],["name/508",[273,51.371]],["parent/508",[278,3.891]],["name/509",[274,53.884]],["parent/509",[278,3.891]],["name/510",[250,45.011]],["parent/510",[278,3.891]],["name/511",[307,51.371]],["parent/511",[]],["name/512",[308,62.357]],["parent/512",[307,4.949]],["name/513",[309,62.357]],["parent/513",[307,4.949]],["name/514",[255,57.249]],["parent/514",[307,4.949]],["name/515",[277,38.378]],["parent/515",[]],["name/516",[1,28.017]],["parent/516",[277,3.697]],["name/517",[310,62.357]],["parent/517",[277,3.697]],["name/518",[311,62.357]],["parent/518",[277,3.697]],["name/519",[263,57.249]],["parent/519",[277,3.697]],["name/520",[312,62.357]],["parent/520",[277,3.697]],["name/521",[206,57.249]],["parent/521",[277,3.697]],["name/522",[313,62.357]],["parent/522",[277,3.697]],["name/523",[314,57.249]],["parent/523",[277,3.697]],["name/524",[248,51.371]],["parent/524",[277,3.697]],["name/525",[247,53.884]],["parent/525",[277,3.697]],["name/526",[207,57.249]],["parent/526",[277,3.697]],["name/527",[83,30.168]],["parent/527",[277,3.697]],["name/528",[224,45.011]],["parent/528",[]],["name/529",[1,28.017]],["parent/529",[224,4.336]],["name/530",[2,38.378]],["parent/530",[224,4.336]],["name/531",[275,53.884]],["parent/531",[224,4.336]],["name/532",[24,35.731]],["parent/532",[224,4.336]],["name/533",[277,38.378]],["parent/533",[224,4.336]],["name/534",[83,30.168]],["parent/534",[224,4.336]],["name/535",[271,51.371]],["parent/535",[]],["name/536",[181,57.249]],["parent/536",[271,4.949]],["name/537",[315,62.357]],["parent/537",[271,4.949]],["name/538",[316,29.155]],["parent/538",[]],["name/539",[1,28.017]],["parent/539",[316,2.809]],["name/540",[2,38.378]],["parent/540",[316,2.809]],["name/541",[104,51.371]],["parent/541",[316,2.809]],["name/542",[105,51.371]],["parent/542",[316,2.809]],["name/543",[233,57.249]],["parent/543",[316,2.809]],["name/544",[276,53.884]],["parent/544",[316,2.809]],["name/545",[6,53.884]],["parent/545",[316,2.809]],["name/546",[317,62.357]],["parent/546",[316,2.809]],["name/547",[318,62.357]],["parent/547",[316,2.809]],["name/548",[319,62.357]],["parent/548",[316,2.809]],["name/549",[320,62.357]],["parent/549",[316,2.809]],["name/550",[321,62.357]],["parent/550",[316,2.809]],["name/551",[322,62.357]],["parent/551",[316,2.809]],["name/552",[11,57.249]],["parent/552",[316,2.809]],["name/553",[12,57.249]],["parent/553",[316,2.809]],["name/554",[323,62.357]],["parent/554",[316,2.809]],["name/555",[324,62.357]],["parent/555",[316,2.809]],["name/556",[24,35.731]],["parent/556",[316,2.809]],["name/557",[106,51.371]],["parent/557",[316,2.809]],["name/558",[107,51.371]],["parent/558",[316,2.809]],["name/559",[236,57.249]],["parent/559",[316,2.809]],["name/560",[278,40.385]],["parent/560",[316,2.809]],["name/561",[28,41.155]],["parent/561",[316,2.809]],["name/562",[325,62.357]],["parent/562",[316,2.809]],["name/563",[259,51.371]],["parent/563",[316,2.809]],["name/564",[304,51.371]],["parent/564",[316,2.809]],["name/565",[266,51.371]],["parent/565",[316,2.809]],["name/566",[326,62.357]],["parent/566",[316,2.809]],["name/567",[327,62.357]],["parent/567",[316,2.809]],["name/568",[328,62.357]],["parent/568",[316,2.809]],["name/569",[329,62.357]],["parent/569",[316,2.809]],["name/570",[330,62.357]],["parent/570",[316,2.809]],["name/571",[262,45.011]],["parent/571",[316,2.809]],["name/572",[83,30.168]],["parent/572",[316,2.809]],["name/573",[168,51.371]],["parent/573",[316,2.809]],["name/574",[169,51.371]],["parent/574",[316,2.809]],["name/575",[170,51.371]],["parent/575",[316,2.809]],["name/576",[171,51.371]],["parent/576",[316,2.809]],["name/577",[172,51.371]],["parent/577",[316,2.809]],["name/578",[173,51.371]],["parent/578",[316,2.809]],["name/579",[331,41.155]],["parent/579",[]],["name/580",[1,28.017]],["parent/580",[331,3.965]],["name/581",[5,46.263]],["parent/581",[331,3.965]],["name/582",[189,53.884]],["parent/582",[331,3.965]],["name/583",[27,46.263]],["parent/583",[331,3.965]],["name/584",[190,53.884]],["parent/584",[331,3.965]],["name/585",[83,30.168]],["parent/585",[331,3.965]],["name/586",[91,41.988]],["parent/586",[331,3.965]],["name/587",[24,35.731]],["parent/587",[331,3.965]],["name/588",[116,47.694]],["parent/588",[331,3.965]],["name/589",[117,47.694]],["parent/589",[331,3.965]],["name/590",[118,45.011]],["parent/590",[331,3.965]],["name/591",[332,49.364]],["parent/591",[]],["name/592",[247,53.884]],["parent/592",[332,4.756]],["name/593",[333,62.357]],["parent/593",[332,4.756]],["name/594",[248,51.371]],["parent/594",[332,4.756]],["name/595",[314,57.249]],["parent/595",[332,4.756]],["name/596",[334,42.898]],["parent/596",[]],["name/597",[1,28.017]],["parent/597",[334,4.133]],["name/598",[85,47.694]],["parent/598",[334,4.133]],["name/599",[91,41.988]],["parent/599",[334,4.133]],["name/600",[335,62.357]],["parent/600",[334,4.133]],["name/601",[83,30.168]],["parent/601",[334,4.133]],["name/602",[272,51.371]],["parent/602",[334,4.133]],["name/603",[273,51.371]],["parent/603",[334,4.133]],["name/604",[274,53.884]],["parent/604",[334,4.133]],["name/605",[250,45.011]],["parent/605",[334,4.133]],["name/606",[227,42.898]],["parent/606",[]],["name/607",[1,28.017]],["parent/607",[227,4.133]],["name/608",[85,47.694]],["parent/608",[227,4.133]],["name/609",[336,62.357]],["parent/609",[227,4.133]],["name/610",[337,62.357]],["parent/610",[227,4.133]],["name/611",[91,41.988]],["parent/611",[227,4.133]],["name/612",[338,62.357]],["parent/612",[227,4.133]],["name/613",[339,62.357]],["parent/613",[227,4.133]],["name/614",[83,30.168]],["parent/614",[227,4.133]],["name/615",[340,51.371]],["parent/615",[]],["name/616",[261,57.249]],["parent/616",[340,4.949]],["name/617",[134,57.249]],["parent/617",[340,4.949]],["name/618",[341,62.357]],["parent/618",[340,4.949]],["name/619",[342,46.263]],["parent/619",[]],["name/620",[1,28.017]],["parent/620",[342,4.457]],["name/621",[2,38.378]],["parent/621",[342,4.457]],["name/622",[275,53.884]],["parent/622",[342,4.457]],["name/623",[24,35.731]],["parent/623",[342,4.457]],["name/624",[277,38.378]],["parent/624",[342,4.457]],["name/625",[83,30.168]],["parent/625",[342,4.457]],["name/626",[343,29.155]],["parent/626",[]],["name/627",[344,62.357]],["parent/627",[343,2.809]],["name/628",[345,62.357]],["parent/628",[343,2.809]],["name/629",[346,62.357]],["parent/629",[343,2.809]],["name/630",[347,62.357]],["parent/630",[343,2.809]],["name/631",[348,62.357]],["parent/631",[343,2.809]],["name/632",[1,28.017]],["parent/632",[343,2.809]],["name/633",[349,29.399]],["parent/633",[343,2.809]],["name/634",[350,62.357]],["parent/634",[343,2.809]],["name/635",[351,62.357]],["parent/635",[343,2.809]],["name/636",[352,62.357]],["parent/636",[343,2.809]],["name/637",[353,62.357]],["parent/637",[343,2.809]],["name/638",[354,62.357]],["parent/638",[343,2.809]],["name/639",[355,62.357]],["parent/639",[343,2.809]],["name/640",[356,62.357]],["parent/640",[343,2.809]],["name/641",[357,62.357]],["parent/641",[343,2.809]],["name/642",[358,62.357]],["parent/642",[343,2.809]],["name/643",[359,62.357]],["parent/643",[343,2.809]],["name/644",[360,62.357]],["parent/644",[343,2.809]],["name/645",[361,62.357]],["parent/645",[343,2.809]],["name/646",[362,62.357]],["parent/646",[343,2.809]],["name/647",[363,62.357]],["parent/647",[343,2.809]],["name/648",[364,62.357]],["parent/648",[343,2.809]],["name/649",[365,62.357]],["parent/649",[343,2.809]],["name/650",[366,62.357]],["parent/650",[343,2.809]],["name/651",[367,62.357]],["parent/651",[343,2.809]],["name/652",[368,62.357]],["parent/652",[343,2.809]],["name/653",[369,62.357]],["parent/653",[343,2.809]],["name/654",[370,62.357]],["parent/654",[343,2.809]],["name/655",[371,62.357]],["parent/655",[343,2.809]],["name/656",[372,62.357]],["parent/656",[343,2.809]],["name/657",[373,62.357]],["parent/657",[343,2.809]],["name/658",[374,62.357]],["parent/658",[343,2.809]],["name/659",[375,62.357]],["parent/659",[343,2.809]],["name/660",[376,62.357]],["parent/660",[343,2.809]],["name/661",[377,62.357]],["parent/661",[343,2.809]],["name/662",[378,62.357]],["parent/662",[343,2.809]],["name/663",[379,57.249]],["parent/663",[343,2.809]],["name/664",[380,62.357]],["parent/664",[343,2.809]],["name/665",[381,62.357]],["parent/665",[343,2.809]],["name/666",[382,62.357]],["parent/666",[343,2.809]],["name/667",[349,29.399]],["parent/667",[]],["name/668",[1,28.017]],["parent/668",[349,2.832]],["name/669",[383,62.357]],["parent/669",[349,2.832]],["name/670",[384,62.357]],["parent/670",[349,2.832]],["name/671",[385,62.357]],["parent/671",[349,2.832]],["name/672",[379,57.249]],["parent/672",[349,2.832]],["name/673",[386,62.357]],["parent/673",[349,2.832]],["name/674",[387,62.357]],["parent/674",[349,2.832]],["name/675",[388,62.357]],["parent/675",[349,2.832]],["name/676",[389,62.357]],["parent/676",[349,2.832]],["name/677",[390,62.357]],["parent/677",[349,2.832]],["name/678",[391,62.357]],["parent/678",[349,2.832]],["name/679",[392,62.357]],["parent/679",[349,2.832]],["name/680",[393,62.357]],["parent/680",[349,2.832]],["name/681",[394,62.357]],["parent/681",[349,2.832]],["name/682",[395,62.357]],["parent/682",[349,2.832]],["name/683",[396,62.357]],["parent/683",[349,2.832]],["name/684",[397,62.357]],["parent/684",[349,2.832]],["name/685",[398,62.357]],["parent/685",[349,2.832]],["name/686",[399,62.357]],["parent/686",[349,2.832]],["name/687",[400,62.357]],["parent/687",[349,2.832]],["name/688",[401,62.357]],["parent/688",[349,2.832]],["name/689",[402,62.357]],["parent/689",[349,2.832]],["name/690",[403,62.357]],["parent/690",[349,2.832]],["name/691",[404,62.357]],["parent/691",[349,2.832]],["name/692",[405,62.357]],["parent/692",[349,2.832]],["name/693",[406,62.357]],["parent/693",[349,2.832]],["name/694",[407,62.357]],["parent/694",[349,2.832]],["name/695",[408,62.357]],["parent/695",[349,2.832]],["name/696",[409,62.357]],["parent/696",[349,2.832]],["name/697",[410,62.357]],["parent/697",[349,2.832]],["name/698",[411,62.357]],["parent/698",[349,2.832]],["name/699",[412,62.357]],["parent/699",[349,2.832]],["name/700",[413,62.357]],["parent/700",[349,2.832]],["name/701",[414,62.357]],["parent/701",[349,2.832]],["name/702",[415,62.357]],["parent/702",[349,2.832]],["name/703",[416,62.357]],["parent/703",[349,2.832]],["name/704",[417,62.357]],["parent/704",[349,2.832]],["name/705",[418,62.357]],["parent/705",[349,2.832]],["name/706",[419,39.003]],["parent/706",[]],["name/707",[1,28.017]],["parent/707",[419,3.758]],["name/708",[420,62.357]],["parent/708",[419,3.758]],["name/709",[421,62.357]],["parent/709",[419,3.758]],["name/710",[422,62.357]],["parent/710",[419,3.758]],["name/711",[423,62.357]],["parent/711",[419,3.758]],["name/712",[424,62.357]],["parent/712",[419,3.758]],["name/713",[425,62.357]],["parent/713",[419,3.758]],["name/714",[426,62.357]],["parent/714",[419,3.758]],["name/715",[427,62.357]],["parent/715",[419,3.758]],["name/716",[428,62.357]],["parent/716",[419,3.758]],["name/717",[429,62.357]],["parent/717",[419,3.758]],["name/718",[430,62.357]],["parent/718",[419,3.758]],["name/719",[431,62.357]],["parent/719",[419,3.758]],["name/720",[432,62.357]],["parent/720",[419,3.758]],["name/721",[433,32.568]],["parent/721",[]],["name/722",[434,62.357]],["parent/722",[433,3.138]],["name/723",[1,28.017]],["parent/723",[433,3.138]],["name/724",[435,57.249]],["parent/724",[433,3.138]],["name/725",[436,38.378]],["parent/725",[433,3.138]],["name/726",[437,62.357]],["parent/726",[433,3.138]],["name/727",[438,62.357]],["parent/727",[433,3.138]],["name/728",[439,62.357]],["parent/728",[433,3.138]],["name/729",[440,62.357]],["parent/729",[433,3.138]],["name/730",[441,62.357]],["parent/730",[433,3.138]],["name/731",[442,62.357]],["parent/731",[433,3.138]],["name/732",[443,62.357]],["parent/732",[433,3.138]],["name/733",[444,62.357]],["parent/733",[433,3.138]],["name/734",[445,62.357]],["parent/734",[433,3.138]],["name/735",[446,62.357]],["parent/735",[433,3.138]],["name/736",[447,62.357]],["parent/736",[433,3.138]],["name/737",[448,62.357]],["parent/737",[433,3.138]],["name/738",[449,62.357]],["parent/738",[433,3.138]],["name/739",[450,62.357]],["parent/739",[433,3.138]],["name/740",[451,62.357]],["parent/740",[433,3.138]],["name/741",[452,62.357]],["parent/741",[433,3.138]],["name/742",[453,62.357]],["parent/742",[433,3.138]],["name/743",[454,62.357]],["parent/743",[433,3.138]],["name/744",[455,62.357]],["parent/744",[433,3.138]],["name/745",[456,62.357]],["parent/745",[433,3.138]],["name/746",[457,62.357]],["parent/746",[433,3.138]],["name/747",[458,62.357]],["parent/747",[433,3.138]],["name/748",[459,62.357]],["parent/748",[433,3.138]],["name/749",[460,62.357]],["parent/749",[433,3.138]],["name/750",[436,38.378]],["parent/750",[]],["name/751",[461,62.357]],["parent/751",[436,3.697]],["name/752",[1,28.017]],["parent/752",[436,3.697]],["name/753",[462,62.357]],["parent/753",[436,3.697]],["name/754",[463,62.357]],["parent/754",[436,3.697]],["name/755",[435,57.249]],["parent/755",[436,3.697]],["name/756",[464,62.357]],["parent/756",[436,3.697]],["name/757",[465,62.357]],["parent/757",[436,3.697]],["name/758",[466,62.357]],["parent/758",[436,3.697]],["name/759",[467,62.357]],["parent/759",[436,3.697]],["name/760",[468,62.357]],["parent/760",[436,3.697]],["name/761",[469,62.357]],["parent/761",[436,3.697]],["name/762",[470,62.357]],["parent/762",[436,3.697]],["name/763",[471,62.357]],["parent/763",[436,3.697]],["name/764",[472,62.357]],["parent/764",[436,3.697]]],"invertedIndex":[["_actionref",{"_index":152,"name":{"167":{}},"parent":{}}],["_actionrefs",{"_index":289,"name":{"468":{}},"parent":{}}],["_alignment",{"_index":296,"name":{"483":{},"506":{}},"parent":{}}],["_allowednets",{"_index":154,"name":{"169":{}},"parent":{}}],["_anonymousrole",{"_index":8,"name":{"8":{}},"parent":{}}],["_appearance",{"_index":270,"name":{"429":{}},"parent":{}}],["_arcs",{"_index":23,"name":{"23":{}},"parent":{}}],["_assign",{"_index":312,"name":{"520":{}},"parent":{}}],["_assigneduser",{"_index":324,"name":{"555":{}},"parent":{}}],["_assignpolicy",{"_index":318,"name":{"547":{}},"parent":{}}],["_behavior",{"_index":287,"name":{"466":{}},"parent":{}}],["_breakpoints",{"_index":90,"name":{"92":{}},"parent":{}}],["_cancel",{"_index":263,"name":{"416":{},"519":{}},"parent":{}}],["_caseevents",{"_index":14,"name":{"14":{}},"parent":{}}],["_caselogic",{"_index":242,"name":{"356":{},"363":{}},"parent":{}}],["_casename",{"_index":10,"name":{"10":{}},"parent":{}}],["_cols",{"_index":294,"name":{"479":{},"504":{}},"parent":{}}],["_component",{"_index":148,"name":{"162":{},"444":{}},"parent":{}}],["_create",{"_index":204,"name":{"280":{}},"parent":{}}],["_data",{"_index":18,"name":{"18":{}},"parent":{}}],["_datafocuspolicy",{"_index":320,"name":{"549":{}},"parent":{}}],["_datagroup",{"_index":221,"name":{"310":{}},"parent":{}}],["_datagroups",{"_index":323,"name":{"554":{}},"parent":{}}],["_dataref",{"_index":220,"name":{"309":{}},"parent":{}}],["_datarefs",{"_index":298,"name":{"485":{}},"parent":{}}],["_defaultrole",{"_index":7,"name":{"7":{}},"parent":{}}],["_definition",{"_index":197,"name":{"263":{},"323":{}},"parent":{}}],["_delay",{"_index":336,"name":{"609":{}},"parent":{}}],["_delegate",{"_index":311,"name":{"518":{}},"parent":{}}],["_delete",{"_index":205,"name":{"281":{}},"parent":{}}],["_desc",{"_index":142,"name":{"156":{}},"parent":{}}],["_destination",{"_index":87,"name":{"89":{}},"parent":{}}],["_dynamic",{"_index":175,"name":{"197":{},"255":{}},"parent":{}}],["_encryption",{"_index":150,"name":{"165":{}},"parent":{}}],["_errors",{"_index":421,"name":{"709":{}},"parent":{}}],["_exact",{"_index":337,"name":{"610":{}},"parent":{}}],["_expression",{"_index":176,"name":{"198":{},"231":{}},"parent":{}}],["_filename",{"_index":424,"name":{"712":{}},"parent":{}}],["_finishpolicy",{"_index":319,"name":{"548":{}},"parent":{}}],["_functions",{"_index":17,"name":{"17":{}},"parent":{}}],["_i18ns",{"_index":20,"name":{"20":{},"246":{}},"parent":{}}],["_icon",{"_index":6,"name":{"6":{},"205":{},"545":{}},"parent":{}}],["_icons",{"_index":111,"name":{"117":{}},"parent":{}}],["_id",{"_index":2,"name":{"2":{},"86":{},"153":{},"262":{},"290":{},"306":{},"330":{},"355":{},"362":{},"369":{},"397":{},"441":{},"478":{},"530":{},"540":{},"621":{}},"parent":{}}],["_immediate",{"_index":149,"name":{"164":{}},"parent":{}}],["_info",{"_index":423,"name":{"711":{}},"parent":{}}],["_init",{"_index":146,"name":{"160":{}},"parent":{}}],["_initials",{"_index":4,"name":{"4":{}},"parent":{}}],["_inits",{"_index":147,"name":{"161":{}},"parent":{}}],["_key",{"_index":178,"name":{"204":{},"217":{},"224":{}},"parent":{}}],["_label",{"_index":233,"name":{"334":{},"543":{}},"parent":{}}],["_layout",{"_index":276,"name":{"443":{},"482":{},"544":{}},"parent":{}}],["_length",{"_index":153,"name":{"168":{}},"parent":{}}],["_locale",{"_index":193,"name":{"245":{}},"parent":{}}],["_logic",{"_index":275,"name":{"442":{},"531":{},"622":{}},"parent":{}}],["_mappings",{"_index":19,"name":{"19":{}},"parent":{}}],["_marking",{"_index":234,"name":{"335":{}},"parent":{}}],["_message",{"_index":189,"name":{"232":{},"383":{},"582":{}},"parent":{}}],["_model",{"_index":420,"name":{"708":{}},"parent":{}}],["_multiplicity",{"_index":88,"name":{"90":{}},"parent":{}}],["_name",{"_index":109,"name":{"115":{},"238":{},"321":{}},"parent":{}}],["_offset",{"_index":306,"name":{"505":{}},"parent":{}}],["_options",{"_index":143,"name":{"157":{}},"parent":{}}],["_optionsinit",{"_index":144,"name":{"158":{}},"parent":{}}],["_perform",{"_index":310,"name":{"517":{}},"parent":{}}],["_placeholder",{"_index":141,"name":{"155":{}},"parent":{}}],["_places",{"_index":22,"name":{"22":{}},"parent":{}}],["_postactions",{"_index":210,"name":{"292":{}},"parent":{}}],["_preactions",{"_index":209,"name":{"291":{}},"parent":{}}],["_priority",{"_index":317,"name":{"546":{}},"parent":{}}],["_processevents",{"_index":13,"name":{"13":{}},"parent":{}}],["_properties",{"_index":110,"name":{"116":{}},"parent":{}}],["_reassign",{"_index":264,"name":{"417":{}},"parent":{}}],["_reference",{"_index":89,"name":{"91":{}},"parent":{}}],["_remote",{"_index":151,"name":{"166":{}},"parent":{}}],["_required",{"_index":288,"name":{"467":{}},"parent":{}}],["_roleref",{"_index":219,"name":{"308":{}},"parent":{}}],["_rolerefs",{"_index":11,"name":{"11":{},"552":{}},"parent":{}}],["_roles",{"_index":16,"name":{"16":{}},"parent":{}}],["_rows",{"_index":295,"name":{"480":{},"503":{}},"parent":{}}],["_scope",{"_index":229,"name":{"322":{}},"parent":{}}],["_source",{"_index":86,"name":{"88":{}},"parent":{}}],["_static",{"_index":232,"name":{"331":{}},"parent":{}}],["_stretch",{"_index":297,"name":{"484":{}},"parent":{}}],["_template",{"_index":269,"name":{"428":{}},"parent":{}}],["_title",{"_index":5,"name":{"5":{},"154":{},"370":{},"382":{},"398":{},"481":{},"581":{}},"parent":{}}],["_transactionref",{"_index":322,"name":{"551":{}},"parent":{}}],["_transactions",{"_index":15,"name":{"15":{}},"parent":{}}],["_transitionref",{"_index":218,"name":{"307":{}},"parent":{}}],["_transitionrole",{"_index":9,"name":{"9":{}},"parent":{}}],["_transitions",{"_index":21,"name":{"21":{}},"parent":{}}],["_trigger",{"_index":222,"name":{"311":{}},"parent":{}}],["_triggers",{"_index":321,"name":{"550":{}},"parent":{}}],["_type",{"_index":85,"name":{"87":{},"163":{},"206":{},"289":{},"598":{},"608":{}},"parent":{}}],["_userrefs",{"_index":12,"name":{"12":{},"553":{}},"parent":{}}],["_validations",{"_index":145,"name":{"159":{}},"parent":{}}],["_value",{"_index":185,"name":{"218":{},"225":{},"239":{}},"parent":{}}],["_version",{"_index":3,"name":{"3":{}},"parent":{}}],["_view",{"_index":206,"name":{"282":{},"521":{}},"parent":{}}],["_warnings",{"_index":422,"name":{"710":{}},"parent":{}}],["_x",{"_index":104,"name":{"109":{},"332":{},"426":{},"541":{}},"parent":{}}],["_y",{"_index":105,"name":{"110":{},"333":{},"427":{},"542":{}},"parent":{}}],["action",{"_index":196,"name":{"260":{}},"parent":{"261":{},"262":{},"263":{},"264":{},"265":{},"266":{}}}],["actionidcounter",{"_index":384,"name":{"670":{}},"parent":{}}],["actionref",{"_index":165,"name":{"184":{}},"parent":{}}],["actionrefs",{"_index":291,"name":{"471":{}},"parent":{}}],["addaction",{"_index":118,"name":{"129":{},"188":{},"274":{},"297":{},"350":{},"391":{},"450":{},"590":{}},"parent":{}}],["addarc",{"_index":81,"name":{"81":{}},"parent":{}}],["addcaseevent",{"_index":47,"name":{"47":{}},"parent":{}}],["adddata",{"_index":61,"name":{"61":{}},"parent":{}}],["adddataref",{"_index":302,"name":{"495":{}},"parent":{}}],["adderror",{"_index":427,"name":{"715":{}},"parent":{}}],["addevent",{"_index":171,"name":{"192":{},"377":{},"454":{},"576":{}},"parent":{}}],["addfunction",{"_index":58,"name":{"58":{}},"parent":{}}],["addi18n",{"_index":69,"name":{"69":{},"250":{}},"parent":{}}],["addinfo",{"_index":431,"name":{"719":{}},"parent":{}}],["addmapping",{"_index":65,"name":{"65":{}},"parent":{}}],["addplace",{"_index":77,"name":{"77":{}},"parent":{}}],["addprocessevent",{"_index":43,"name":{"43":{}},"parent":{}}],["addrole",{"_index":55,"name":{"55":{}},"parent":{}}],["addroleref",{"_index":35,"name":{"35":{}},"parent":{}}],["addtransaction",{"_index":51,"name":{"51":{}},"parent":{}}],["addtransition",{"_index":73,"name":{"73":{}},"parent":{}}],["adduserref",{"_index":39,"name":{"39":{}},"parent":{}}],["addwarning",{"_index":429,"name":{"717":{}},"parent":{}}],["alignment",{"_index":250,"name":{"402":{},"438":{},"491":{},"510":{},"605":{}},"parent":{"403":{},"404":{},"405":{}}}],["allowednets",{"_index":167,"name":{"186":{}},"parent":{}}],["anonymous_role_default_value",{"_index":346,"name":{"629":{}},"parent":{}}],["anonymousrole",{"_index":30,"name":{"30":{}},"parent":{}}],["appearance",{"_index":254,"name":{"406":{},"433":{}},"parent":{"407":{},"408":{},"409":{},"410":{}}}],["arc",{"_index":84,"name":{"84":{}},"parent":{"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{}}}],["arctype",{"_index":97,"name":{"101":{}},"parent":{"102":{},"103":{},"104":{},"105":{},"106":{}}}],["assign",{"_index":247,"name":{"393":{},"525":{},"592":{}},"parent":{}}],["assigneduser",{"_index":262,"name":{"414":{},"571":{}},"parent":{"415":{},"416":{},"417":{},"418":{},"419":{},"420":{}}}],["assignpolicy",{"_index":259,"name":{"411":{},"563":{}},"parent":{"412":{},"413":{}}}],["attachreference",{"_index":399,"name":{"686":{}},"parent":{}}],["auto",{"_index":261,"name":{"413":{},"616":{}},"parent":{}}],["auto_empty_required",{"_index":267,"name":{"423":{}},"parent":{}}],["auto_no_data",{"_index":305,"name":{"500":{}},"parent":{}}],["behavior",{"_index":290,"name":{"469":{}},"parent":{}}],["behaviors",{"_index":293,"name":{"474":{}},"parent":{}}],["boolean",{"_index":129,"name":{"140":{}},"parent":{}}],["bottom",{"_index":253,"name":{"405":{}},"parent":{}}],["breakpoint",{"_index":103,"name":{"107":{}},"parent":{"108":{},"109":{},"110":{},"111":{},"112":{}}}],["breakpoints",{"_index":96,"name":{"99":{}},"parent":{}}],["button",{"_index":136,"name":{"147":{}},"parent":{}}],["cancel",{"_index":248,"name":{"394":{},"418":{},"524":{},"594":{}},"parent":{}}],["case_ref",{"_index":138,"name":{"149":{}},"parent":{}}],["caseevent",{"_index":199,"name":{"267":{}},"parent":{"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{}}}],["caseeventtype",{"_index":200,"name":{"275":{}},"parent":{"276":{},"277":{}}}],["caselogic",{"_index":203,"name":{"278":{},"358":{},"365":{}},"parent":{"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{}}}],["casename",{"_index":32,"name":{"32":{}},"parent":{}}],["cdata_regret",{"_index":462,"name":{"753":{}},"parent":{}}],["center",{"_index":252,"name":{"404":{}},"parent":{}}],["checki18n",{"_index":348,"name":{"631":{}},"parent":{}}],["checki18ns",{"_index":382,"name":{"666":{}},"parent":{}}],["checklengthandnodes",{"_index":410,"name":{"697":{}},"parent":{}}],["checkvariability",{"_index":398,"name":{"685":{}},"parent":{}}],["clone",{"_index":83,"name":{"83":{},"100":{},"121":{},"124":{},"187":{},"201":{},"210":{},"221":{},"228":{},"235":{},"242":{},"252":{},"257":{},"266":{},"269":{},"286":{},"318":{},"327":{},"342":{},"345":{},"359":{},"366":{},"373":{},"386":{},"401":{},"420":{},"434":{},"449":{},"472":{},"497":{},"527":{},"534":{},"572":{},"585":{},"601":{},"614":{},"625":{}},"parent":{}}],["cols",{"_index":273,"name":{"436":{},"487":{},"508":{},"603":{}},"parent":{}}],["comment_regret",{"_index":463,"name":{"754":{}},"parent":{}}],["component",{"_index":108,"name":{"113":{},"179":{},"448":{}},"parent":{"114":{},"115":{},"116":{},"117":{},"118":{},"119":{},"120":{},"121":{}}}],["constructor",{"_index":1,"name":{"1":{},"85":{},"108":{},"114":{},"123":{},"152":{},"196":{},"203":{},"216":{},"223":{},"230":{},"237":{},"244":{},"254":{},"261":{},"268":{},"279":{},"288":{},"305":{},"320":{},"329":{},"344":{},"354":{},"361":{},"368":{},"381":{},"396":{},"415":{},"425":{},"440":{},"465":{},"475":{},"477":{},"502":{},"516":{},"529":{},"539":{},"580":{},"597":{},"607":{},"620":{},"632":{},"668":{},"707":{},"723":{},"752":{}},"parent":{}}],["create",{"_index":201,"name":{"276":{},"283":{}},"parent":{}}],["dataevent",{"_index":115,"name":{"122":{}},"parent":{"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{}}}],["dataeventtype",{"_index":119,"name":{"130":{}},"parent":{"131":{},"132":{}}}],["datafocuspolicy",{"_index":266,"name":{"421":{},"565":{}},"parent":{"422":{},"423":{}}}],["datagroup",{"_index":226,"name":{"316":{},"476":{}},"parent":{"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{}}}],["datagroups",{"_index":330,"name":{"570":{}},"parent":{}}],["datalayout",{"_index":268,"name":{"424":{}},"parent":{"425":{},"426":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{}}}],["dataref",{"_index":225,"name":{"315":{},"439":{}},"parent":{"440":{},"441":{},"442":{},"443":{},"444":{},"445":{},"446":{},"447":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{}}}],["datarefbehavior",{"_index":279,"name":{"457":{}},"parent":{"458":{},"459":{},"460":{},"461":{},"462":{},"463":{}}}],["datareflogic",{"_index":286,"name":{"464":{}},"parent":{"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{}}}],["datareflogicutil",{"_index":292,"name":{"473":{}},"parent":{"474":{},"475":{}}}],["datatype",{"_index":122,"name":{"133":{}},"parent":{"134":{},"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{}}}],["datavariable",{"_index":140,"name":{"151":{}},"parent":{"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{},"194":{}}}],["date",{"_index":130,"name":{"141":{}},"parent":{}}],["datetime",{"_index":131,"name":{"142":{}},"parent":{}}],["default_role_default_value",{"_index":345,"name":{"628":{}},"parent":{}}],["defaultrole",{"_index":29,"name":{"29":{}},"parent":{}}],["definition",{"_index":198,"name":{"265":{},"326":{}},"parent":{}}],["delay",{"_index":338,"name":{"612":{}},"parent":{}}],["delegate",{"_index":314,"name":{"523":{},"595":{}},"parent":{}}],["delete",{"_index":202,"name":{"277":{},"284":{}},"parent":{}}],["desc",{"_index":156,"name":{"173":{}},"parent":{}}],["destination",{"_index":93,"name":{"96":{}},"parent":{}}],["dynamic",{"_index":177,"name":{"199":{},"256":{}},"parent":{}}],["editable",{"_index":283,"name":{"461":{}},"parent":{}}],["empty",{"_index":335,"name":{"600":{}},"parent":{}}],["encryption",{"_index":163,"name":{"182":{}},"parent":{}}],["enumeration",{"_index":125,"name":{"136":{}},"parent":{}}],["enumeration_map",{"_index":126,"name":{"137":{}},"parent":{}}],["errors",{"_index":426,"name":{"714":{}},"parent":{}}],["escape",{"_index":465,"name":{"757":{}},"parent":{}}],["escapeaction",{"_index":470,"name":{"762":{}},"parent":{}}],["event",{"_index":208,"name":{"287":{}},"parent":{"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{}}}],["eventidcounter",{"_index":383,"name":{"669":{}},"parent":{}}],["eventphase",{"_index":211,"name":{"298":{}},"parent":{"299":{},"300":{}}}],["events",{"_index":168,"name":{"189":{},"374":{},"451":{},"573":{}},"parent":{}}],["exact",{"_index":339,"name":{"613":{}},"parent":{}}],["exportaction",{"_index":468,"name":{"760":{}},"parent":{}}],["exportactions",{"_index":467,"name":{"759":{}},"parent":{}}],["exportarcs",{"_index":459,"name":{"748":{}},"parent":{}}],["exportbreakpoints",{"_index":460,"name":{"749":{}},"parent":{}}],["exportcaselogic",{"_index":472,"name":{"764":{}},"parent":{}}],["exportcomponent",{"_index":453,"name":{"742":{}},"parent":{}}],["exportdata",{"_index":449,"name":{"738":{}},"parent":{}}],["exportdatagroup",{"_index":457,"name":{"746":{}},"parent":{}}],["exportdataref",{"_index":452,"name":{"741":{}},"parent":{}}],["exportdatareflayout",{"_index":454,"name":{"743":{}},"parent":{}}],["exportevent",{"_index":444,"name":{"733":{}},"parent":{}}],["exportexpression",{"_index":466,"name":{"758":{}},"parent":{}}],["exportfunction",{"_index":469,"name":{"761":{}},"parent":{}}],["exportfunctions",{"_index":443,"name":{"732":{}},"parent":{}}],["exporti18n",{"_index":450,"name":{"739":{}},"parent":{}}],["exportlayout",{"_index":456,"name":{"745":{}},"parent":{}}],["exportlogic",{"_index":471,"name":{"763":{}},"parent":{}}],["exportmodel",{"_index":440,"name":{"729":{}},"parent":{}}],["exportplaces",{"_index":458,"name":{"747":{}},"parent":{}}],["exportprocessevents",{"_index":448,"name":{"737":{}},"parent":{}}],["exportprocessref",{"_index":446,"name":{"735":{}},"parent":{}}],["exportprocessrefs",{"_index":445,"name":{"734":{}},"parent":{}}],["exportroles",{"_index":442,"name":{"731":{}},"parent":{}}],["exportservice",{"_index":433,"name":{"721":{}},"parent":{"722":{},"723":{},"724":{},"725":{},"726":{},"727":{},"728":{},"729":{},"730":{},"731":{},"732":{},"733":{},"734":{},"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{}}}],["exporttag",{"_index":464,"name":{"756":{}},"parent":{}}],["exporttransactions",{"_index":441,"name":{"730":{}},"parent":{}}],["exporttransitionlayout",{"_index":455,"name":{"744":{}},"parent":{}}],["exporttransitionref",{"_index":447,"name":{"736":{}},"parent":{}}],["exporttransitions",{"_index":451,"name":{"740":{}},"parent":{}}],["exportutils",{"_index":436,"name":{"725":{},"750":{}},"parent":{"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"759":{},"760":{},"761":{},"762":{},"763":{},"764":{}}}],["exportxml",{"_index":437,"name":{"726":{}},"parent":{}}],["expression",{"_index":174,"name":{"195":{},"200":{},"233":{}},"parent":{"196":{},"197":{},"198":{},"199":{},"200":{},"201":{}}}],["file",{"_index":132,"name":{"143":{}},"parent":{}}],["file_list",{"_index":133,"name":{"144":{}},"parent":{}}],["filename",{"_index":432,"name":{"720":{}},"parent":{}}],["fill",{"_index":257,"name":{"409":{}},"parent":{}}],["filter",{"_index":139,"name":{"150":{}},"parent":{}}],["finish",{"_index":333,"name":{"593":{}},"parent":{}}],["finishpolicy",{"_index":304,"name":{"498":{},"564":{}},"parent":{"499":{},"500":{}}}],["flow",{"_index":308,"name":{"512":{}},"parent":{}}],["forbidden",{"_index":285,"name":{"463":{}},"parent":{}}],["functions",{"_index":57,"name":{"57":{}},"parent":{}}],["functionscope",{"_index":214,"name":{"301":{}},"parent":{"302":{},"303":{}}}],["generatexml",{"_index":439,"name":{"728":{}},"parent":{}}],["get",{"_index":121,"name":{"132":{}},"parent":{}}],["getarc",{"_index":80,"name":{"80":{}},"parent":{}}],["getarcs",{"_index":79,"name":{"79":{}},"parent":{}}],["getcaseevent",{"_index":46,"name":{"46":{}},"parent":{}}],["getcaseevents",{"_index":45,"name":{"45":{}},"parent":{}}],["getdata",{"_index":60,"name":{"60":{}},"parent":{}}],["getdataref",{"_index":301,"name":{"494":{}},"parent":{}}],["getdatarefs",{"_index":300,"name":{"493":{}},"parent":{}}],["getdataset",{"_index":59,"name":{"59":{}},"parent":{}}],["getevent",{"_index":170,"name":{"191":{},"376":{},"453":{},"575":{}},"parent":{}}],["getevents",{"_index":169,"name":{"190":{},"375":{},"452":{},"574":{}},"parent":{}}],["geti18n",{"_index":68,"name":{"68":{},"249":{}},"parent":{}}],["geti18ns",{"_index":67,"name":{"67":{},"248":{}},"parent":{}}],["getmapping",{"_index":64,"name":{"64":{}},"parent":{}}],["getmappings",{"_index":63,"name":{"63":{}},"parent":{}}],["getnextactionid",{"_index":415,"name":{"702":{}},"parent":{}}],["getnexteventid",{"_index":414,"name":{"701":{}},"parent":{}}],["getplace",{"_index":76,"name":{"76":{}},"parent":{}}],["getplaces",{"_index":75,"name":{"75":{}},"parent":{}}],["getprocessevent",{"_index":42,"name":{"42":{}},"parent":{}}],["getprocessevents",{"_index":41,"name":{"41":{}},"parent":{}}],["getrole",{"_index":54,"name":{"54":{}},"parent":{}}],["getroleref",{"_index":34,"name":{"34":{}},"parent":{}}],["getrolerefs",{"_index":33,"name":{"33":{}},"parent":{}}],["getroles",{"_index":53,"name":{"53":{}},"parent":{}}],["gettransaction",{"_index":50,"name":{"50":{}},"parent":{}}],["gettransactions",{"_index":49,"name":{"49":{}},"parent":{}}],["gettransition",{"_index":72,"name":{"72":{}},"parent":{}}],["gettransitions",{"_index":71,"name":{"71":{}},"parent":{}}],["getuserref",{"_index":38,"name":{"38":{}},"parent":{}}],["getuserrefs",{"_index":37,"name":{"37":{}},"parent":{}}],["grid",{"_index":309,"name":{"513":{}},"parent":{}}],["hidden",{"_index":284,"name":{"462":{}},"parent":{}}],["i18nstring",{"_index":191,"name":{"236":{}},"parent":{"237":{},"238":{},"239":{},"240":{},"241":{},"242":{}}}],["i18ntranslations",{"_index":192,"name":{"243":{}},"parent":{"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{}}}],["i18nwithdynamic",{"_index":195,"name":{"253":{}},"parent":{"254":{},"255":{},"256":{},"257":{},"258":{},"259":{}}}],["icon",{"_index":28,"name":{"28":{},"202":{},"208":{},"561":{}},"parent":{"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{}}}],["icons",{"_index":114,"name":{"120":{}},"parent":{}}],["icontype",{"_index":180,"name":{"211":{}},"parent":{"212":{},"213":{}}}],["id",{"_index":24,"name":{"24":{},"93":{},"126":{},"170":{},"264":{},"271":{},"294":{},"312":{},"336":{},"347":{},"357":{},"364":{},"371":{},"388":{},"399":{},"445":{},"486":{},"532":{},"556":{},"587":{},"623":{}},"parent":{}}],["immediate",{"_index":162,"name":{"181":{}},"parent":{}}],["importarcs",{"_index":376,"name":{"660":{}},"parent":{}}],["importassigneduser",{"_index":371,"name":{"655":{}},"parent":{}}],["importdata",{"_index":358,"name":{"642":{}},"parent":{}}],["importevents",{"_index":357,"name":{"641":{}},"parent":{}}],["importfromxml",{"_index":352,"name":{"636":{}},"parent":{}}],["importfunctions",{"_index":356,"name":{"640":{}},"parent":{}}],["importi18n",{"_index":378,"name":{"662":{}},"parent":{}}],["importmapping",{"_index":380,"name":{"664":{}},"parent":{}}],["importmodel",{"_index":353,"name":{"637":{}},"parent":{}}],["importplaces",{"_index":374,"name":{"658":{}},"parent":{}}],["importprocessrefs",{"_index":373,"name":{"657":{}},"parent":{}}],["importroles",{"_index":354,"name":{"638":{}},"parent":{}}],["importservice",{"_index":343,"name":{"626":{}},"parent":{"627":{},"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{},"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{},"651":{},"652":{},"653":{},"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["importtransactionref",{"_index":370,"name":{"654":{}},"parent":{}}],["importtransactions",{"_index":372,"name":{"656":{}},"parent":{}}],["importtransitiondatagroups",{"_index":365,"name":{"649":{}},"parent":{}}],["importtransitionevent",{"_index":369,"name":{"653":{}},"parent":{}}],["importtransitionevents",{"_index":368,"name":{"652":{}},"parent":{}}],["importtransitionlayout",{"_index":366,"name":{"650":{}},"parent":{}}],["importtransitionmetadata",{"_index":367,"name":{"651":{}},"parent":{}}],["importtransitionrolerefs",{"_index":362,"name":{"646":{}},"parent":{}}],["importtransitions",{"_index":360,"name":{"644":{}},"parent":{}}],["importtransitiontriggers",{"_index":364,"name":{"648":{}},"parent":{}}],["importtransitionuserrefs",{"_index":363,"name":{"647":{}},"parent":{}}],["importutils",{"_index":349,"name":{"633":{},"667":{}},"parent":{"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{},"696":{},"697":{},"698":{},"699":{},"700":{},"701":{},"702":{},"703":{},"704":{},"705":{}}}],["info",{"_index":430,"name":{"718":{}},"parent":{}}],["inhibitor",{"_index":101,"name":{"105":{}},"parent":{}}],["init",{"_index":160,"name":{"177":{}},"parent":{}}],["initials",{"_index":26,"name":{"26":{}},"parent":{}}],["inits",{"_index":161,"name":{"178":{}},"parent":{}}],["key",{"_index":179,"name":{"207":{},"219":{},"226":{}},"parent":{}}],["label",{"_index":236,"name":{"340":{},"559":{}},"parent":{}}],["layout",{"_index":278,"name":{"447":{},"490":{},"501":{},"560":{}},"parent":{"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{}}}],["layouttype",{"_index":307,"name":{"511":{}},"parent":{"512":{},"513":{},"514":{}}}],["legacy",{"_index":255,"name":{"407":{},"514":{}},"parent":{}}],["length",{"_index":166,"name":{"185":{}},"parent":{}}],["locale",{"_index":194,"name":{"247":{}},"parent":{}}],["logic",{"_index":277,"name":{"446":{},"515":{},"533":{},"624":{}},"parent":{"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{}}}],["manual",{"_index":260,"name":{"412":{},"422":{},"499":{}},"parent":{}}],["mapping",{"_index":217,"name":{"304":{}},"parent":{"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{}}}],["marking",{"_index":237,"name":{"341":{}},"parent":{}}],["material",{"_index":181,"name":{"212":{},"536":{}},"parent":{}}],["mergeback",{"_index":461,"name":{"751":{}},"parent":{}}],["mergeevent",{"_index":173,"name":{"194":{},"379":{},"456":{},"578":{}},"parent":{}}],["message",{"_index":190,"name":{"234":{},"385":{},"584":{}},"parent":{}}],["model",{"_index":425,"name":{"713":{}},"parent":{}}],["multichoice",{"_index":127,"name":{"138":{}},"parent":{}}],["multichoice_map",{"_index":128,"name":{"139":{}},"parent":{}}],["multiplicity",{"_index":94,"name":{"97":{}},"parent":{}}],["name",{"_index":112,"name":{"118":{},"240":{},"258":{},"324":{}},"parent":{}}],["namespace",{"_index":215,"name":{"302":{}},"parent":{}}],["netgrif",{"_index":315,"name":{"537":{}},"parent":{}}],["number",{"_index":123,"name":{"134":{}},"parent":{}}],["of",{"_index":184,"name":{"215":{}},"parent":{}}],["offset",{"_index":274,"name":{"437":{},"509":{},"604":{}},"parent":{}}],["option",{"_index":183,"name":{"214":{}},"parent":{"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{}}}],["optional",{"_index":281,"name":{"459":{}},"parent":{}}],["options",{"_index":157,"name":{"174":{}},"parent":{}}],["optionsinit",{"_index":158,"name":{"175":{}},"parent":{}}],["outline",{"_index":258,"name":{"410":{}},"parent":{}}],["parse_error_line_extraction_regex",{"_index":344,"name":{"627":{}},"parent":{}}],["parseaction",{"_index":388,"name":{"675":{}},"parent":{}}],["parsearc",{"_index":377,"name":{"661":{}},"parent":{}}],["parsearctype",{"_index":406,"name":{"693":{}},"parent":{}}],["parsecomponent",{"_index":393,"name":{"680":{}},"parent":{}}],["parsedata",{"_index":359,"name":{"643":{}},"parent":{}}],["parsedatagroup",{"_index":404,"name":{"691":{}},"parent":{}}],["parsedatalayout",{"_index":403,"name":{"690":{}},"parent":{}}],["parsedataref",{"_index":402,"name":{"689":{}},"parent":{}}],["parsedefinition",{"_index":390,"name":{"677":{}},"parent":{}}],["parseencryption",{"_index":391,"name":{"678":{}},"parent":{}}],["parseevent",{"_index":407,"name":{"694":{}},"parent":{}}],["parseexpression",{"_index":413,"name":{"700":{}},"parent":{}}],["parsefromxml",{"_index":351,"name":{"635":{}},"parent":{}}],["parsefunction",{"_index":389,"name":{"676":{}},"parent":{}}],["parsei18n",{"_index":379,"name":{"663":{},"672":{}},"parent":{}}],["parsei18nwithdynamic",{"_index":386,"name":{"673":{}},"parent":{}}],["parsemapping",{"_index":381,"name":{"665":{}},"parent":{}}],["parsenumbervalue",{"_index":412,"name":{"699":{}},"parent":{}}],["parseplace",{"_index":375,"name":{"659":{}},"parent":{}}],["parseplacestatic",{"_index":405,"name":{"692":{}},"parent":{}}],["parseproperty",{"_index":394,"name":{"681":{}},"parent":{}}],["parserole",{"_index":355,"name":{"639":{}},"parent":{}}],["parseroleref",{"_index":401,"name":{"688":{}},"parent":{}}],["parsetransition",{"_index":361,"name":{"645":{}},"parent":{}}],["parsetrigger",{"_index":400,"name":{"687":{}},"parent":{}}],["parseviewandcomponent",{"_index":392,"name":{"679":{}},"parent":{}}],["parsexml",{"_index":350,"name":{"634":{}},"parent":{}}],["perform",{"_index":313,"name":{"522":{}},"parent":{}}],["petriflow_schema_url",{"_index":434,"name":{"722":{}},"parent":{}}],["petriflowfunction",{"_index":228,"name":{"319":{}},"parent":{"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{}}}],["petrinet",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{}}}],["petrinetresult",{"_index":419,"name":{"706":{}},"parent":{"707":{},"708":{},"709":{},"710":{},"711":{},"712":{},"713":{},"714":{},"715":{},"716":{},"717":{},"718":{},"719":{},"720":{}}}],["place",{"_index":231,"name":{"328":{}},"parent":{"329":{},"330":{},"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{}}}],["placeholder",{"_index":155,"name":{"172":{}},"parent":{}}],["post",{"_index":213,"name":{"300":{}},"parent":{}}],["postactions",{"_index":117,"name":{"128":{},"273":{},"296":{},"349":{},"390":{},"589":{}},"parent":{}}],["pre",{"_index":212,"name":{"299":{}},"parent":{}}],["preactions",{"_index":116,"name":{"127":{},"272":{},"295":{},"348":{},"389":{},"588":{}},"parent":{}}],["priority",{"_index":325,"name":{"562":{}},"parent":{}}],["process",{"_index":216,"name":{"303":{}},"parent":{}}],["processevent",{"_index":238,"name":{"343":{}},"parent":{"344":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{}}}],["processeventtype",{"_index":239,"name":{"351":{}},"parent":{"352":{}}}],["processroleref",{"_index":241,"name":{"353":{}},"parent":{"354":{},"355":{},"356":{},"357":{},"358":{},"359":{}}}],["processuserref",{"_index":243,"name":{"360":{}},"parent":{"361":{},"362":{},"363":{},"364":{},"365":{},"366":{}}}],["properties",{"_index":113,"name":{"119":{}},"parent":{}}],["property",{"_index":187,"name":{"222":{}},"parent":{"223":{},"224":{},"225":{},"226":{},"227":{},"228":{}}}],["read",{"_index":99,"name":{"103":{}},"parent":{}}],["reassign",{"_index":265,"name":{"419":{}},"parent":{}}],["reference",{"_index":95,"name":{"98":{}},"parent":{}}],["regular",{"_index":98,"name":{"102":{}},"parent":{}}],["remote",{"_index":164,"name":{"183":{}},"parent":{}}],["removearc",{"_index":82,"name":{"82":{}},"parent":{}}],["removecaseevent",{"_index":48,"name":{"48":{}},"parent":{}}],["removedata",{"_index":62,"name":{"62":{}},"parent":{}}],["removedataref",{"_index":303,"name":{"496":{}},"parent":{}}],["removeevent",{"_index":172,"name":{"193":{},"378":{},"455":{},"577":{}},"parent":{}}],["removei18n",{"_index":70,"name":{"70":{},"251":{}},"parent":{}}],["removemapping",{"_index":66,"name":{"66":{}},"parent":{}}],["removeplace",{"_index":78,"name":{"78":{}},"parent":{}}],["removeprocessevent",{"_index":44,"name":{"44":{}},"parent":{}}],["removerole",{"_index":56,"name":{"56":{}},"parent":{}}],["removeroleref",{"_index":36,"name":{"36":{}},"parent":{}}],["removetransaction",{"_index":52,"name":{"52":{}},"parent":{}}],["removetransition",{"_index":74,"name":{"74":{}},"parent":{}}],["removeuserref",{"_index":40,"name":{"40":{}},"parent":{}}],["required",{"_index":280,"name":{"458":{},"470":{}},"parent":{}}],["reset",{"_index":100,"name":{"104":{}},"parent":{}}],["resetactionid",{"_index":417,"name":{"704":{}},"parent":{}}],["reseteventid",{"_index":416,"name":{"703":{}},"parent":{}}],["resetids",{"_index":418,"name":{"705":{}},"parent":{}}],["resolvecaselogic",{"_index":397,"name":{"684":{}},"parent":{}}],["resolveformat",{"_index":411,"name":{"698":{}},"parent":{}}],["resolveinit",{"_index":409,"name":{"696":{}},"parent":{}}],["resolveinits",{"_index":408,"name":{"695":{}},"parent":{}}],["resolvelogic",{"_index":395,"name":{"682":{}},"parent":{}}],["resolvelogicvalue",{"_index":396,"name":{"683":{}},"parent":{}}],["role",{"_index":244,"name":{"367":{}},"parent":{"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{}}}],["roleevent",{"_index":245,"name":{"380":{}},"parent":{"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{}}}],["roleeventtype",{"_index":246,"name":{"392":{}},"parent":{"393":{},"394":{}}}],["roleref",{"_index":224,"name":{"314":{},"528":{}},"parent":{"529":{},"530":{},"531":{},"532":{},"533":{},"534":{}}}],["rolerefs",{"_index":328,"name":{"568":{}},"parent":{}}],["rows",{"_index":272,"name":{"435":{},"488":{},"507":{},"602":{}},"parent":{}}],["scope",{"_index":230,"name":{"325":{}},"parent":{}}],["set",{"_index":120,"name":{"131":{}},"parent":{}}],["source",{"_index":92,"name":{"95":{}},"parent":{}}],["standard",{"_index":256,"name":{"408":{}},"parent":{}}],["static",{"_index":235,"name":{"337":{}},"parent":{}}],["stretch",{"_index":299,"name":{"492":{}},"parent":{}}],["svg",{"_index":182,"name":{"213":{}},"parent":{}}],["tagattribute",{"_index":387,"name":{"674":{}},"parent":{}}],["tagvalue",{"_index":385,"name":{"671":{}},"parent":{}}],["task_ref",{"_index":137,"name":{"148":{}},"parent":{}}],["template",{"_index":271,"name":{"432":{},"535":{}},"parent":{"536":{},"537":{}}}],["text",{"_index":124,"name":{"135":{}},"parent":{}}],["time",{"_index":341,"name":{"618":{}},"parent":{}}],["title",{"_index":27,"name":{"27":{},"171":{},"372":{},"384":{},"400":{},"489":{},"583":{}},"parent":{}}],["top",{"_index":251,"name":{"403":{}},"parent":{}}],["transaction",{"_index":249,"name":{"395":{}},"parent":{"396":{},"397":{},"398":{},"399":{},"400":{},"401":{}}}],["transactionref",{"_index":327,"name":{"567":{}},"parent":{}}],["transition",{"_index":316,"name":{"538":{}},"parent":{"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{}}}],["transition_role_default_value",{"_index":347,"name":{"630":{}},"parent":{}}],["transitionevent",{"_index":331,"name":{"579":{}},"parent":{"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{}}}],["transitioneventtype",{"_index":332,"name":{"591":{}},"parent":{"592":{},"593":{},"594":{},"595":{}}}],["transitionlayout",{"_index":334,"name":{"596":{}},"parent":{"597":{},"598":{},"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{}}}],["transitionref",{"_index":223,"name":{"313":{}},"parent":{}}],["transitionrole",{"_index":31,"name":{"31":{}},"parent":{}}],["trigger",{"_index":227,"name":{"317":{},"606":{}},"parent":{"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{}}}],["triggers",{"_index":326,"name":{"566":{}},"parent":{}}],["triggertype",{"_index":340,"name":{"615":{}},"parent":{"616":{},"617":{},"618":{}}}],["type",{"_index":91,"name":{"94":{},"125":{},"180":{},"209":{},"270":{},"293":{},"346":{},"387":{},"586":{},"599":{},"611":{}},"parent":{}}],["upload",{"_index":240,"name":{"352":{}},"parent":{}}],["user",{"_index":134,"name":{"145":{},"617":{}},"parent":{}}],["user_list",{"_index":135,"name":{"146":{}},"parent":{}}],["userref",{"_index":342,"name":{"619":{}},"parent":{"620":{},"621":{},"622":{},"623":{},"624":{},"625":{}}}],["userrefs",{"_index":329,"name":{"569":{}},"parent":{}}],["validation",{"_index":188,"name":{"229":{}},"parent":{"230":{},"231":{},"232":{},"233":{},"234":{},"235":{}}}],["validations",{"_index":159,"name":{"176":{}},"parent":{}}],["value",{"_index":186,"name":{"220":{},"227":{},"241":{},"259":{}},"parent":{}}],["variable",{"_index":102,"name":{"106":{}},"parent":{}}],["version",{"_index":25,"name":{"25":{}},"parent":{}}],["view",{"_index":207,"name":{"285":{},"526":{}},"parent":{}}],["visible",{"_index":282,"name":{"460":{}},"parent":{}}],["warnings",{"_index":428,"name":{"716":{}},"parent":{}}],["x",{"_index":106,"name":{"111":{},"338":{},"430":{},"557":{}},"parent":{}}],["xmlconstructor",{"_index":435,"name":{"724":{},"755":{}},"parent":{}}],["xmltostring",{"_index":438,"name":{"727":{}},"parent":{}}],["y",{"_index":107,"name":{"112":{},"339":{},"431":{},"558":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/classes/Action.html b/docs/classes/Action.html index 0e729ea..fc9e5f7 100644 --- a/docs/classes/Action.html +++ b/docs/classes/Action.html @@ -1 +1 @@ -Action | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Action

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

  • new Action(id: string, definition: string): Action

Properties

Private _definition

_definition: string

Private _id

_id: string

Accessors

definition

  • get definition(): string
  • set definition(value: string): void

id

  • get id(): string
  • set id(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Action | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Action

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

  • new Action(id: string, definition: string): Action

Properties

Private _definition

_definition: string

Private _id

_id: string

Accessors

definition

  • get definition(): string
  • set definition(value: string): void

id

  • get id(): string
  • set id(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Arc.html b/docs/classes/Arc.html index dfc60e2..45f1da0 100644 --- a/docs/classes/Arc.html +++ b/docs/classes/Arc.html @@ -1 +1 @@ -Arc | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Arc

Index

Constructors

constructor

  • new Arc(source: string, target: string, type: ArcType, id: string): Arc

Properties

Private _breakpoints

_breakpoints: Breakpoint[]

Private _destination

_destination: string

Private _id

_id: string

Private _multiplicity

_multiplicity: number

Private Optional _reference

_reference?: string

Private _source

_source: string

Private _type

_type: ArcType

Accessors

breakpoints

destination

  • get destination(): string
  • set destination(value: string): void

id

  • get id(): string
  • set id(value: string): void

multiplicity

  • get multiplicity(): number
  • set multiplicity(value: number): void

reference

  • get reference(): undefined | string
  • set reference(value: undefined | string): void

source

  • get source(): string
  • set source(value: string): void

type

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Arc | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Arc

Index

Constructors

constructor

  • new Arc(source: string, target: string, type: ArcType, id: string): Arc

Properties

Private _breakpoints

_breakpoints: Breakpoint[]

Private _destination

_destination: string

Private _id

_id: string

Private _multiplicity

_multiplicity: number

Private Optional _reference

_reference?: string

Private _source

_source: string

Private _type

_type: ArcType

Accessors

breakpoints

destination

  • get destination(): string
  • set destination(value: string): void

id

  • get id(): string
  • set id(value: string): void

multiplicity

  • get multiplicity(): number
  • set multiplicity(value: number): void

reference

  • get reference(): undefined | string
  • set reference(value: undefined | string): void

source

  • get source(): string
  • set source(value: string): void

type

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/AssignedUser.html b/docs/classes/AssignedUser.html index feb66d3..af846bd 100644 --- a/docs/classes/AssignedUser.html +++ b/docs/classes/AssignedUser.html @@ -1 +1 @@ -AssignedUser | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • AssignedUser

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _cancel

_cancel?: boolean

Private Optional _reassign

_reassign?: boolean

Accessors

cancel

  • get cancel(): undefined | boolean
  • set cancel(value: undefined | boolean): void

reassign

  • get reassign(): undefined | boolean
  • set reassign(value: undefined | boolean): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +AssignedUser | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • AssignedUser

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _cancel

_cancel?: boolean

Private Optional _reassign

_reassign?: boolean

Accessors

cancel

  • get cancel(): undefined | boolean
  • set cancel(value: undefined | boolean): void

reassign

  • get reassign(): undefined | boolean
  • set reassign(value: undefined | boolean): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Breakpoint.html b/docs/classes/Breakpoint.html index 482a8bd..8bcce2e 100644 --- a/docs/classes/Breakpoint.html +++ b/docs/classes/Breakpoint.html @@ -1 +1 @@ -Breakpoint | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Breakpoint

Index

Constructors

Properties

Accessors

Constructors

constructor

Properties

Private _x

_x: number

Private _y

_y: number

Accessors

x

  • get x(): number
  • set x(value: number): void

y

  • get y(): number
  • set y(value: number): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Breakpoint | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Breakpoint

Index

Constructors

Properties

Accessors

Constructors

constructor

Properties

Private _x

_x: number

Private _y

_y: number

Accessors

x

  • get x(): number
  • set x(value: number): void

y

  • get y(): number
  • set y(value: number): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/CaseEvent.html b/docs/classes/CaseEvent.html index 3fc624d..cff70ab 100644 --- a/docs/classes/CaseEvent.html +++ b/docs/classes/CaseEvent.html @@ -1 +1 @@ -CaseEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Accessors

id

  • get id(): string
  • set id(value: string): void

postActions

preActions

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +CaseEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Accessors

id

  • get id(): string
  • set id(value: string): void

postActions

preActions

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/CaseLogic.html b/docs/classes/CaseLogic.html index 19a8b36..24ca415 100644 --- a/docs/classes/CaseLogic.html +++ b/docs/classes/CaseLogic.html @@ -1 +1 @@ -CaseLogic | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • CaseLogic

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _create

_create?: boolean

Private Optional _delete

_delete?: boolean

Private Optional _view

_view?: boolean

Accessors

create

  • get create(): undefined | boolean
  • set create(value: undefined | boolean): void

delete

  • get delete(): undefined | boolean
  • set delete(value: undefined | boolean): void

view

  • get view(): undefined | boolean
  • set view(value: undefined | boolean): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +CaseLogic | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • CaseLogic

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _create

_create?: boolean

Private Optional _delete

_delete?: boolean

Private Optional _view

_view?: boolean

Accessors

create

  • get create(): undefined | boolean
  • set create(value: undefined | boolean): void

delete

  • get delete(): undefined | boolean
  • set delete(value: undefined | boolean): void

view

  • get view(): undefined | boolean
  • set view(value: undefined | boolean): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Component.html b/docs/classes/Component.html index 9973c63..6e08099 100644 --- a/docs/classes/Component.html +++ b/docs/classes/Component.html @@ -1 +1 @@ -Component | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Component

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _icons

_icons: Icon[]

Private _name

_name: string

Private _properties

_properties: Property[]

Accessors

icons

  • get icons(): Icon[]
  • set icons(value: Icon[]): void

name

  • get name(): string
  • set name(value: string): void

properties

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Component | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Component

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _icons

_icons: Icon[]

Private _name

_name: string

Private _properties

_properties: Property[]

Accessors

icons

  • get icons(): Icon[]
  • set icons(value: Icon[]): void

name

  • get name(): string
  • set name(value: string): void

properties

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/DataEvent.html b/docs/classes/DataEvent.html index a0e3b38..30686ce 100644 --- a/docs/classes/DataEvent.html +++ b/docs/classes/DataEvent.html @@ -1 +1 @@ -DataEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Accessors

id

  • get id(): string
  • set id(value: string): void

postActions

preActions

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Accessors

id

  • get id(): string
  • set id(value: string): void

postActions

preActions

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/DataGroup.html b/docs/classes/DataGroup.html index ef7abb5..1c5b404 100644 --- a/docs/classes/DataGroup.html +++ b/docs/classes/DataGroup.html @@ -1 +1 @@ -DataGroup | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataGroup

Index

Constructors

constructor

Properties

Private Optional _alignment

_alignment?: Alignment

Private Optional _cols

_cols?: number

Private _dataRefs

_dataRefs: Map<string, DataRef>

Private _id

_id: string

Private Optional _layout

_layout?: LayoutType

Private Optional _rows

_rows?: number

Private _stretch

_stretch: boolean

Private Optional _title

_title?: I18nString

Accessors

alignment

cols

  • get cols(): undefined | number
  • set cols(value: undefined | number): void

id

  • get id(): string
  • set id(value: string): void

layout

rows

  • get rows(): undefined | number
  • set rows(value: undefined | number): void

stretch

  • get stretch(): boolean
  • set stretch(value: boolean): void

title

Methods

addDataRef

clone

getDataRef

  • getDataRef(id: string): undefined | DataRef

getDataRefs

removeDataRef

  • removeDataRef(id: string): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataGroup | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataGroup

Index

Constructors

constructor

Properties

Private Optional _alignment

_alignment?: Alignment

Private Optional _cols

_cols?: number

Private _dataRefs

_dataRefs: Map<string, DataRef>

Private _id

_id: string

Private Optional _layout

_layout?: LayoutType

Private Optional _rows

_rows?: number

Private _stretch

_stretch: boolean

Private Optional _title

_title?: I18nString

Accessors

alignment

cols

  • get cols(): undefined | number
  • set cols(value: undefined | number): void

id

  • get id(): string
  • set id(value: string): void

layout

rows

  • get rows(): undefined | number
  • set rows(value: undefined | number): void

stretch

  • get stretch(): boolean
  • set stretch(value: boolean): void

title

Methods

addDataRef

clone

getDataRef

  • getDataRef(id: string): undefined | DataRef

getDataRefs

removeDataRef

  • removeDataRef(id: string): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/DataLayout.html b/docs/classes/DataLayout.html index 766b3cd..6b0f111 100644 --- a/docs/classes/DataLayout.html +++ b/docs/classes/DataLayout.html @@ -1 +1 @@ -DataLayout | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Properties

Private _appearance

_appearance: Appearance

Private _template

_template: Template

Private _x

_x: number

Private _y

_y: number

Accessors

alignment

appearance

cols

  • get cols(): undefined | number
  • set cols(value: undefined | number): void

offset

  • get offset(): undefined | number
  • set offset(value: undefined | number): void

rows

  • get rows(): undefined | number
  • set rows(value: undefined | number): void

template

x

  • get x(): number
  • set x(value: number): void

y

  • get y(): number
  • set y(value: number): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataLayout | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Properties

Private _appearance

_appearance: Appearance

Private _template

_template: Template

Private _x

_x: number

Private _y

_y: number

Accessors

alignment

appearance

cols

  • get cols(): undefined | number
  • set cols(value: undefined | number): void

offset

  • get offset(): undefined | number
  • set offset(value: undefined | number): void

rows

  • get rows(): undefined | number
  • set rows(value: undefined | number): void

template

x

  • get x(): number
  • set x(value: number): void

y

  • get y(): number
  • set y(value: number): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/DataRef.html b/docs/classes/DataRef.html index 467729e..9ae1295 100644 --- a/docs/classes/DataRef.html +++ b/docs/classes/DataRef.html @@ -1 +1 @@ -DataRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataEventSource
    • DataRef

Index

Constructors

constructor

Properties

Private Optional _component

_component?: Component

Private _id

_id: string

Private _layout

_layout: DataLayout

Private _logic

_logic: DataRefLogic

Accessors

component

Protected events

  • get events(): Map<S, T>

id

  • get id(): string
  • set id(value: string): void

layout

logic

Methods

addAction

addEvent

clone

getEvent

getEvents

mergeEvent

removeEvent

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataEventSource
    • DataRef

Index

Constructors

constructor

Properties

Private Optional _component

_component?: Component

Private _id

_id: string

Private _layout

_layout: DataLayout

Private _logic

_logic: DataRefLogic

Accessors

component

Protected events

  • get events(): Map<S, T>

id

  • get id(): string
  • set id(value: string): void

layout

logic

Methods

addAction

addEvent

clone

getEvent

getEvents

mergeEvent

removeEvent

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/DataRefLogic.html b/docs/classes/DataRefLogic.html index 4d1fdfc..3f7bb83 100644 --- a/docs/classes/DataRefLogic.html +++ b/docs/classes/DataRefLogic.html @@ -1 +1 @@ -DataRefLogic | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataRefLogic

Index

Constructors

constructor

Properties

Private _actionRefs

_actionRefs: string[]

Private _behavior

_behavior: DataRefBehavior

Private _required

_required: boolean

Accessors

actionRefs

  • get actionRefs(): string[]
  • set actionRefs(value: string[]): void

behavior

required

  • get required(): boolean
  • set required(value: boolean): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataRefLogic | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataRefLogic

Index

Constructors

constructor

Properties

Private _actionRefs

_actionRefs: string[]

Private _behavior

_behavior: DataRefBehavior

Private _required

_required: boolean

Accessors

actionRefs

  • get actionRefs(): string[]
  • set actionRefs(value: string[]): void

behavior

required

  • get required(): boolean
  • set required(value: boolean): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/DataRefLogicUtil.html b/docs/classes/DataRefLogicUtil.html index e057da7..b9b6f4b 100644 --- a/docs/classes/DataRefLogicUtil.html +++ b/docs/classes/DataRefLogicUtil.html @@ -1 +1 @@ -DataRefLogicUtil | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataRefLogicUtil

Index

Constructors

Methods

Constructors

constructor

Methods

Static behaviors

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataRefLogicUtil | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataRefLogicUtil

Index

Constructors

Methods

Constructors

constructor

Methods

Static behaviors

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/DataVariable.html b/docs/classes/DataVariable.html index e96faba..b0e3514 100644 --- a/docs/classes/DataVariable.html +++ b/docs/classes/DataVariable.html @@ -1 +1 @@ -DataVariable | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataEventSource
    • DataVariable

Index

Constructors

constructor

Properties

Private _actionRef

_actionRef: string[]

Private _allowedNets

_allowedNets: string[]

Private Optional _component

_component?: Component

Private _desc

_desc: I18nString

Private Optional _encryption

_encryption?: string

Private _id

_id: string

Private _immediate

_immediate: boolean

Private Optional _init

_init?: Expression

Private _inits

_inits: Expression[]

Private Optional _length

_length?: number

Private _options

_options: Option[]

Private Optional _optionsInit

_optionsInit?: Expression

Private _placeholder

_placeholder: I18nString

Private Optional _remote

_remote?: boolean

Private _title

_title: I18nString

Private _type

_type: DataType

Private _validations

_validations: Validation[]

Accessors

actionRef

  • get actionRef(): string[]
  • set actionRef(value: string[]): void

allowedNets

  • get allowedNets(): string[]
  • set allowedNets(value: string[]): void

component

desc

encryption

  • get encryption(): undefined | string
  • set encryption(value: undefined | string): void

Protected events

  • get events(): Map<S, T>

id

  • get id(): string
  • set id(value: string): void

immediate

  • get immediate(): boolean
  • set immediate(value: boolean): void

init

inits

length

  • get length(): undefined | number
  • set length(value: undefined | number): void

options

optionsInit

placeholder

remote

  • get remote(): undefined | boolean
  • set remote(value: undefined | boolean): void

title

type

validations

Methods

addAction

addEvent

clone

getEvent

getEvents

mergeEvent

removeEvent

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataVariable | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • DataEventSource
    • DataVariable

Index

Constructors

constructor

Properties

Private _actionRef

_actionRef: string[]

Private _allowedNets

_allowedNets: string[]

Private Optional _component

_component?: Component

Private _desc

_desc: I18nString

Private Optional _encryption

_encryption?: string

Private _id

_id: string

Private _immediate

_immediate: boolean

Private Optional _init

_init?: Expression

Private _inits

_inits: Expression[]

Private Optional _length

_length?: number

Private _options

_options: Option[]

Private Optional _optionsInit

_optionsInit?: Expression

Private _placeholder

_placeholder: I18nString

Private Optional _remote

_remote?: boolean

Private _title

_title: I18nString

Private _type

_type: DataType

Private _validations

_validations: Validation[]

Accessors

actionRef

  • get actionRef(): string[]
  • set actionRef(value: string[]): void

allowedNets

  • get allowedNets(): string[]
  • set allowedNets(value: string[]): void

component

desc

encryption

  • get encryption(): undefined | string
  • set encryption(value: undefined | string): void

Protected events

  • get events(): Map<S, T>

id

  • get id(): string
  • set id(value: string): void

immediate

  • get immediate(): boolean
  • set immediate(value: boolean): void

init

inits

length

  • get length(): undefined | number
  • set length(value: undefined | number): void

options

optionsInit

placeholder

remote

  • get remote(): undefined | boolean
  • set remote(value: undefined | boolean): void

title

type

validations

Methods

addAction

addEvent

clone

getEvent

getEvents

mergeEvent

removeEvent

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Event.html b/docs/classes/Event.html index a04455c..4b41b60 100644 --- a/docs/classes/Event.html +++ b/docs/classes/Event.html @@ -1 +1 @@ -Event | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

  • T

Hierarchy

Index

Constructors

Protected constructor

  • new Event<T>(type: T, id: string): Event<T>

Properties

Private _id

_id: string

Private _postActions

_postActions: Action[]

Private _preActions

_preActions: Action[]

Private _type

_type: T

Accessors

id

  • get id(): string
  • set id(value: string): void

postActions

preActions

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Event | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

  • T

Hierarchy

Index

Constructors

Protected constructor

  • new Event<T>(type: T, id: string): Event<T>

Properties

Private _id

_id: string

Private _postActions

_postActions: Action[]

Private _preActions

_preActions: Action[]

Private _type

_type: T

Accessors

id

  • get id(): string
  • set id(value: string): void

postActions

preActions

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ExportService.html b/docs/classes/ExportService.html index 54bd511..b390ab4 100644 --- a/docs/classes/ExportService.html +++ b/docs/classes/ExportService.html @@ -1 +1 @@ -ExportService | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ExportService

Index

Constructors

constructor

Properties

Protected exportUtils

exportUtils: ExportUtils = ...

Protected xmlConstructor

xmlConstructor: XMLDocument = ...

Static Readonly PETRIFLOW_SCHEMA_URL

PETRIFLOW_SCHEMA_URL: "https://netgrif.github.io/petriflow/petriflow.schema.xsd" = 'https://netgrif.github.io/petriflow/petriflow.schema.xsd'

Methods

exportArcs

  • exportArcs(doc: Element, model: PetriNet): void

exportBreakpoints

  • exportBreakpoints(exportArc: Element, arc: Arc): void

exportComponent

  • exportComponent(element: Element, component: Component): void

exportData

  • exportData(doc: Element, model: PetriNet): void

exportDataGroup

  • exportDataGroup(element: Element, dataGroup: DataGroup): void

exportDataRef

  • exportDataRef(element: Element, dataRef: DataRef): void

exportDataRefLayout

  • exportDataRefLayout(element: Element, layout: DataLayout): void

exportEvent

  • exportEvent<T>(element: Element, event: Event<T>): void

exportFunctions

  • exportFunctions(doc: Element, model: PetriNet): void

exportI18n

  • exportI18n(doc: Element, model: PetriNet): void

Private exportLayout

  • exportLayout(exportLayout: Element, layout: Layout): void

exportModel

  • exportModel(doc: Element, model: PetriNet): void

exportPlaces

  • exportPlaces(doc: Element, model: PetriNet): void

exportProcessEvents

  • exportProcessEvents(doc: Element, model: PetriNet): void

exportProcessRef

exportProcessRefs

  • exportProcessRefs(doc: Element, model: PetriNet): void

exportRoles

  • exportRoles(doc: Element, model: PetriNet): void

exportTransactions

  • exportTransactions(doc: Element, model: PetriNet): void

exportTransitionLayout

exportTransitionRef

exportTransitions

  • exportTransitions(doc: Element, model: PetriNet): void

exportXml

generateXml

xmlToString

  • xmlToString(inputNode: string | Element, level?: number, singleton?: boolean): string

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ExportService | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ExportService

Index

Constructors

constructor

Properties

Protected exportUtils

exportUtils: ExportUtils = ...

Protected xmlConstructor

xmlConstructor: XMLDocument = ...

Static Readonly PETRIFLOW_SCHEMA_URL

PETRIFLOW_SCHEMA_URL: "https://netgrif.github.io/petriflow/petriflow.schema.xsd" = 'https://netgrif.github.io/petriflow/petriflow.schema.xsd'

Methods

exportArcs

  • exportArcs(doc: Element, model: PetriNet): void

exportBreakpoints

  • exportBreakpoints(exportArc: Element, arc: Arc): void

exportComponent

  • exportComponent(element: Element, component: Component): void

exportData

  • exportData(doc: Element, model: PetriNet): void

exportDataGroup

  • exportDataGroup(element: Element, dataGroup: DataGroup): void

exportDataRef

  • exportDataRef(element: Element, dataRef: DataRef): void

exportDataRefLayout

  • exportDataRefLayout(element: Element, layout: DataLayout): void

exportEvent

  • exportEvent<T>(element: Element, event: Event<T>): void

exportFunctions

  • exportFunctions(doc: Element, model: PetriNet): void

exportI18n

  • exportI18n(doc: Element, model: PetriNet): void

Private exportLayout

  • exportLayout(exportLayout: Element, layout: Layout): void

exportModel

  • exportModel(doc: Element, model: PetriNet): void

exportPlaces

  • exportPlaces(doc: Element, model: PetriNet): void

exportProcessEvents

  • exportProcessEvents(doc: Element, model: PetriNet): void

exportProcessRef

exportProcessRefs

  • exportProcessRefs(doc: Element, model: PetriNet): void

exportRoles

  • exportRoles(doc: Element, model: PetriNet): void

exportTransactions

  • exportTransactions(doc: Element, model: PetriNet): void

exportTransitionLayout

exportTransitionRef

exportTransitions

  • exportTransitions(doc: Element, model: PetriNet): void

exportXml

generateXml

xmlToString

  • xmlToString(inputNode: string | Element, level?: number, singleton?: boolean): string

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ExportUtils.html b/docs/classes/ExportUtils.html index 15b3b33..1fd6c31 100644 --- a/docs/classes/ExportUtils.html +++ b/docs/classes/ExportUtils.html @@ -1 +1 @@ -ExportUtils | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ExportUtils

Index

Constructors

constructor

Properties

Private CDATA_REGRET

CDATA_REGRET: RegExp = ...

Private COMMENT_REGRET

COMMENT_REGRET: RegExp = ...

Protected xmlConstructor

xmlConstructor: XMLDocument = ...

Methods

escapeAction

  • escapeAction(action: string): string

exportAction

  • exportAction(element: Element, action: Action): void

exportActions

  • exportActions<T>(element: Element, event: Event<T>, phase: string): void

exportCaseLogic

  • exportCaseLogic(element: Element, logic: CaseLogic, type: string): void

exportExpression

exportFunction

exportLogic

  • exportLogic(element: Element, logic: Logic, type: string): void

exportTag

  • exportTag(doc: Element, name: string, value: string | I18nString | I18nWithDynamic, force?: boolean, attributes?: { key: string; value: string }[]): void

Static Private mergeBack

  • mergeBack(matches: null | string[], splitted: string[]): string

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ExportUtils | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ExportUtils

Index

Constructors

constructor

Properties

Private CDATA_REGRET

CDATA_REGRET: RegExp = ...

Private COMMENT_REGRET

COMMENT_REGRET: RegExp = ...

Protected xmlConstructor

xmlConstructor: XMLDocument = ...

Methods

escape

  • escape(value: string): string

escapeAction

  • escapeAction(action: string): string

exportAction

  • exportAction(element: Element, action: Action): void

exportActions

  • exportActions<T>(element: Element, event: Event<T>, phase: string): void

exportCaseLogic

  • exportCaseLogic(element: Element, logic: CaseLogic, type: string): void

exportExpression

exportFunction

exportLogic

  • exportLogic(element: Element, logic: Logic, type: string): void

exportTag

  • exportTag(doc: Element, name: string, value: string | I18nString | I18nWithDynamic, force?: boolean, attributes?: { key: string; value: string }[]): void

Static Private mergeBack

  • mergeBack(matches: null | string[], splitted: string[]): string

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Expression.html b/docs/classes/Expression.html index 15e6b02..7beb083 100644 --- a/docs/classes/Expression.html +++ b/docs/classes/Expression.html @@ -1 +1 @@ -Expression | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Expression

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

  • new Expression(expression: string, dynamic?: boolean): Expression

Properties

Private _dynamic

_dynamic: boolean

Private _expression

_expression: string

Accessors

dynamic

  • get dynamic(): boolean
  • set dynamic(value: boolean): void

expression

  • get expression(): string
  • set expression(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Expression | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Expression

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

  • new Expression(expression: string, dynamic?: boolean): Expression

Properties

Private _dynamic

_dynamic: boolean

Private _expression

_expression: string

Accessors

dynamic

  • get dynamic(): boolean
  • set dynamic(value: boolean): void

expression

  • get expression(): string
  • set expression(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/I18nString.html b/docs/classes/I18nString.html index 7fbf306..cd44369 100644 --- a/docs/classes/I18nString.html +++ b/docs/classes/I18nString.html @@ -1 +1 @@ -I18nString | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

  • new I18nString(translation: string, name?: string): I18nString

Properties

Private Optional _name

_name?: string

Private _value

_value: string

Accessors

name

  • get name(): undefined | string
  • set name(value: undefined | string): void

value

  • get value(): string
  • set value(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +I18nString | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

  • new I18nString(translation: string, name?: string): I18nString

Properties

Private Optional _name

_name?: string

Private _value

_value: string

Accessors

name

  • get name(): undefined | string
  • set name(value: undefined | string): void

value

  • get value(): string
  • set value(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/I18nTranslations.html b/docs/classes/I18nTranslations.html index 63f5d9d..ce8e061 100644 --- a/docs/classes/I18nTranslations.html +++ b/docs/classes/I18nTranslations.html @@ -1 +1 @@ -I18nTranslations | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • I18nTranslations

Index

Constructors

constructor

Properties

Private _i18ns

_i18ns: Map<string, I18nString>

Private _locale

_locale: string

Accessors

locale

  • get locale(): string
  • set locale(value: string): void

Methods

addI18n

clone

getI18n

getI18ns

removeI18n

  • removeI18n(name: string): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +I18nTranslations | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • I18nTranslations

Index

Constructors

constructor

Properties

Private _i18ns

_i18ns: Map<string, I18nString>

Private _locale

_locale: string

Accessors

locale

  • get locale(): string
  • set locale(value: string): void

Methods

addI18n

clone

getI18n

getI18ns

removeI18n

  • removeI18n(name: string): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/I18nWithDynamic.html b/docs/classes/I18nWithDynamic.html index ab50795..1359990 100644 --- a/docs/classes/I18nWithDynamic.html +++ b/docs/classes/I18nWithDynamic.html @@ -1 +1 @@ -I18nWithDynamic | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _dynamic

_dynamic: boolean

Accessors

dynamic

  • get dynamic(): boolean
  • set dynamic(value: boolean): void

name

  • get name(): undefined | string
  • set name(value: undefined | string): void

value

  • get value(): string
  • set value(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +I18nWithDynamic | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _dynamic

_dynamic: boolean

Accessors

dynamic

  • get dynamic(): boolean
  • set dynamic(value: boolean): void

name

  • get name(): undefined | string
  • set name(value: undefined | string): void

value

  • get value(): string
  • set value(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Icon.html b/docs/classes/Icon.html index 09c4081..013e73f 100644 --- a/docs/classes/Icon.html +++ b/docs/classes/Icon.html @@ -1 +1 @@ -Icon | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Icon

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _icon

_icon: string

Private _key

_key: string

Private _type

_type: IconType

Accessors

icon

  • get icon(): string
  • set icon(value: string): void

key

  • get key(): string
  • set key(value: string): void

type

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Icon | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Icon

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _icon

_icon: string

Private _key

_key: string

Private _type

_type: IconType

Accessors

icon

  • get icon(): string
  • set icon(value: string): void

key

  • get key(): string
  • set key(value: string): void

type

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ImportService.html b/docs/classes/ImportService.html index 72b6f3a..921cada 100644 --- a/docs/classes/ImportService.html +++ b/docs/classes/ImportService.html @@ -1 +1 @@ -ImportService | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ImportService

Index

Constructors

constructor

Properties

Protected importUtils

importUtils: ImportUtils = ...

Static Private Readonly ANONYMOUS_ROLE_DEFAULT_VALUE

ANONYMOUS_ROLE_DEFAULT_VALUE: false = false

Static Private Readonly DEFAULT_ROLE_DEFAULT_VALUE

DEFAULT_ROLE_DEFAULT_VALUE: false = false

Static Private Readonly PARSE_ERROR_LINE_EXTRACTION_REGEX

PARSE_ERROR_LINE_EXTRACTION_REGEX: "(?:L|l)ine.*?(\\d+).*?(?:C|c)olumn.*?(\\d+)" = '(?:L|l)ine.*?(\\d+).*?(?:C|c)olumn.*?(\\d+)'

Static Private Readonly TRANSITION_ROLE_DEFAULT_VALUE

TRANSITION_ROLE_DEFAULT_VALUE: false = false

Methods

Private checkI18ns

importArcs

Private importAssignedUser

importData

importEvents

Private importFromXml

importFunctions

importI18n

importMapping

importModel

importPlaces

importProcessRefs

  • importProcessRefs(modelResult: PetriNetResult, xmlDoc: Document): void

importRoles

Private importTransactionRef

importTransactions

  • importTransactions(modelResult: PetriNetResult, xmlDoc: Document): void

Private importTransitionDataGroups

Private importTransitionEvent

Private importTransitionEvents

Private importTransitionLayout

Private importTransitionMetadata

Private importTransitionRoleRefs

Private importTransitionTriggers

Private importTransitionUserRefs

importTransitions

  • importTransitions(modelResult: PetriNetResult, xmlDoc: Document): void

parseArc

parseData

parseFromXml

parseI18n

parseMapping

parsePlace

  • parsePlace(model: PetriNet, xmlPlace: Element, place: Place): void

parseRole

  • parseRole(model: PetriNet, xmlRole: Element, role: Role): void

parseTransition

Private parseXml

  • parseXml(txt: string): Document

Static Private checkI18n

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ImportService | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ImportService

Index

Constructors

constructor

Properties

Protected importUtils

importUtils: ImportUtils = ...

Static Private Readonly ANONYMOUS_ROLE_DEFAULT_VALUE

ANONYMOUS_ROLE_DEFAULT_VALUE: false = false

Static Private Readonly DEFAULT_ROLE_DEFAULT_VALUE

DEFAULT_ROLE_DEFAULT_VALUE: false = false

Static Private Readonly PARSE_ERROR_LINE_EXTRACTION_REGEX

PARSE_ERROR_LINE_EXTRACTION_REGEX: "(?:L|l)ine.*?(\\d+).*?(?:C|c)olumn.*?(\\d+)" = '(?:L|l)ine.*?(\\d+).*?(?:C|c)olumn.*?(\\d+)'

Static Private Readonly TRANSITION_ROLE_DEFAULT_VALUE

TRANSITION_ROLE_DEFAULT_VALUE: false = false

Methods

Private checkI18ns

importArcs

Private importAssignedUser

importData

importEvents

Private importFromXml

importFunctions

importI18n

importMapping

importModel

importPlaces

importProcessRefs

  • importProcessRefs(modelResult: PetriNetResult, xmlDoc: Document): void

importRoles

Private importTransactionRef

importTransactions

  • importTransactions(modelResult: PetriNetResult, xmlDoc: Document): void

Private importTransitionDataGroups

Private importTransitionEvent

Private importTransitionEvents

Private importTransitionLayout

Private importTransitionMetadata

Private importTransitionRoleRefs

Private importTransitionTriggers

Private importTransitionUserRefs

importTransitions

  • importTransitions(modelResult: PetriNetResult, xmlDoc: Document): void

parseArc

parseData

parseFromXml

parseI18n

parseMapping

parsePlace

  • parsePlace(model: PetriNet, xmlPlace: Element, place: Place): void

parseRole

  • parseRole(model: PetriNet, xmlRole: Element, role: Role): void

parseTransition

Private parseXml

  • parseXml(txt: string): Document

Static Private checkI18n

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ImportUtils.html b/docs/classes/ImportUtils.html index 182d4ad..99209d3 100644 --- a/docs/classes/ImportUtils.html +++ b/docs/classes/ImportUtils.html @@ -1 +1 @@ -ImportUtils | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ImportUtils

Index

Constructors

constructor

Properties

Private actionIdCounter

actionIdCounter: number = 0

Private eventIdCounter

eventIdCounter: number = 0

Methods

attachReference

checkLengthAndNodes

  • checkLengthAndNodes(element: Element, name: string): boolean

checkVariability

  • checkVariability(model: PetriNet, arc: Arc, reference: undefined | string): void

Private getNextActionId

  • getNextActionId(): number

Private getNextEventId

  • getNextEventId(): number

parseAction

  • parseAction(actionTag: Element): Action

parseArcType

  • parseArcType(xmlArc: Element): ArcType

parseComponent

  • parseComponent(xmlTag: Element): undefined | Component

parseDataGroup

  • parseDataGroup(xmlDataGroup: Element): DataGroup

parseDataLayout

  • parseDataLayout(xmlLayout: null | Element): DataLayout

parseDataRef

  • parseDataRef(xmlDataRef: Element, index: number): DataRef

parseDefinition

  • parseDefinition(tag: Element): string

parseEncryption

  • parseEncryption(xmlTag: Element): undefined | string

parseEvent

  • parseEvent<T>(xmlEvent: Element, event: Event<T>): void

parseExpression

  • parseExpression(xmlTag: Element, name: string): undefined | Expression

parseFunction

parseI18n

  • parseI18n(xmlTag: Document | Element, child: string): I18nString

parseI18nWithDynamic

  • parseI18nWithDynamic(xmlTag: Document | Element, child: string): I18nWithDynamic

parseNumberValue

  • parseNumberValue(element: null | Element, name: string): undefined | number

parsePlaceStatic

  • parsePlaceStatic(xmlPlace: Element): boolean

parseProperty

  • parseProperty(property: Element): Property

parseRoleRef

  • parseRoleRef(xmlRoleRef: Element): RoleRef

parseTrigger

  • parseTrigger(xmlTrigger: Element): Trigger

parseViewAndComponent

  • parseViewAndComponent(xmlTag: Element): undefined | Component

resetActionId

  • resetActionId(): void

resetEventId

  • resetEventId(): void

resetIds

  • resetIds(): void

resolveCaseLogic

resolveFormat

resolveInit

  • resolveInit(xmlData: Element): undefined | Expression

resolveInits

resolveLogic

  • resolveLogic(xmlRoleRefLogic: Element, roleRef: RoleRef | UserRef): void

resolveLogicValue

  • resolveLogicValue(logicValue: string): undefined | boolean

tagAttribute

  • tagAttribute(xmlTag: null | Element, attribute: string): string

tagValue

  • tagValue(xmlTag: null | Document | Element, child: string): string

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ImportUtils | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ImportUtils

Index

Constructors

constructor

Properties

Private actionIdCounter

actionIdCounter: number = 0

Private eventIdCounter

eventIdCounter: number = 0

Methods

attachReference

checkLengthAndNodes

  • checkLengthAndNodes(element: Element, name: string): boolean

checkVariability

  • checkVariability(model: PetriNet, arc: Arc, reference: undefined | string): void

Private getNextActionId

  • getNextActionId(): number

Private getNextEventId

  • getNextEventId(): number

parseAction

  • parseAction(actionTag: Element): Action

parseArcType

  • parseArcType(xmlArc: Element): ArcType

parseComponent

  • parseComponent(xmlTag: Element): undefined | Component

parseDataGroup

  • parseDataGroup(xmlDataGroup: Element): DataGroup

parseDataLayout

  • parseDataLayout(xmlLayout: null | Element): DataLayout

parseDataRef

  • parseDataRef(xmlDataRef: Element, index: number): DataRef

parseDefinition

  • parseDefinition(tag: Element): string

parseEncryption

  • parseEncryption(xmlTag: Element): undefined | string

parseEvent

  • parseEvent<T>(xmlEvent: Element, event: Event<T>): void

parseExpression

  • parseExpression(xmlTag: Element, name: string): undefined | Expression

parseFunction

parseI18n

  • parseI18n(xmlTag: Document | Element, child: string): I18nString

parseI18nWithDynamic

  • parseI18nWithDynamic(xmlTag: Document | Element, child: string): I18nWithDynamic

parseNumberValue

  • parseNumberValue(element: null | Element, name: string): undefined | number

parsePlaceStatic

  • parsePlaceStatic(xmlPlace: Element): boolean

parseProperty

  • parseProperty(property: Element): Property

parseRoleRef

  • parseRoleRef(xmlRoleRef: Element): RoleRef

parseTrigger

  • parseTrigger(xmlTrigger: Element): Trigger

parseViewAndComponent

  • parseViewAndComponent(xmlTag: Element): undefined | Component

resetActionId

  • resetActionId(): void

resetEventId

  • resetEventId(): void

resetIds

  • resetIds(): void

resolveCaseLogic

resolveFormat

resolveInit

  • resolveInit(xmlData: Element): undefined | Expression

resolveInits

resolveLogic

  • resolveLogic(xmlRoleRefLogic: Element, roleRef: RoleRef | UserRef): void

resolveLogicValue

  • resolveLogicValue(logicValue: string): undefined | boolean

tagAttribute

  • tagAttribute(xmlTag: null | Element, attribute: string): string

tagValue

  • tagValue(xmlTag: null | Document | Element, child: string): string

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Layout.html b/docs/classes/Layout.html index 340eee9..3314ca3 100644 --- a/docs/classes/Layout.html +++ b/docs/classes/Layout.html @@ -1 +1 @@ -Layout | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Properties

Private Optional _alignment

_alignment?: Alignment

Private Optional _cols

_cols?: number

Private Optional _offset

_offset?: number

Private Optional _rows

_rows?: number

Accessors

alignment

cols

  • get cols(): undefined | number
  • set cols(value: undefined | number): void

offset

  • get offset(): undefined | number
  • set offset(value: undefined | number): void

rows

  • get rows(): undefined | number
  • set rows(value: undefined | number): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Layout | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Properties

Private Optional _alignment

_alignment?: Alignment

Private Optional _cols

_cols?: number

Private Optional _offset

_offset?: number

Private Optional _rows

_rows?: number

Accessors

alignment

cols

  • get cols(): undefined | number
  • set cols(value: undefined | number): void

offset

  • get offset(): undefined | number
  • set offset(value: undefined | number): void

rows

  • get rows(): undefined | number
  • set rows(value: undefined | number): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Logic.html b/docs/classes/Logic.html index b743b83..494c731 100644 --- a/docs/classes/Logic.html +++ b/docs/classes/Logic.html @@ -1 +1 @@ -Logic | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Logic

Index

Constructors

constructor

Properties

Private Optional _assign

_assign?: boolean

Private Optional _cancel

_cancel?: boolean

Private Optional _delegate

_delegate?: boolean

Private Optional _perform

_perform?: boolean

Private Optional _view

_view?: boolean

Accessors

assign

  • get assign(): undefined | boolean
  • set assign(value: undefined | boolean): void

cancel

  • get cancel(): undefined | boolean
  • set cancel(value: undefined | boolean): void

delegate

  • get delegate(): undefined | boolean
  • set delegate(value: undefined | boolean): void

perform

  • get perform(): undefined | boolean
  • set perform(value: undefined | boolean): void

view

  • get view(): undefined | boolean
  • set view(value: undefined | boolean): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Logic | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Logic

Index

Constructors

constructor

Properties

Private Optional _assign

_assign?: boolean

Private Optional _cancel

_cancel?: boolean

Private Optional _delegate

_delegate?: boolean

Private Optional _perform

_perform?: boolean

Private Optional _view

_view?: boolean

Accessors

assign

  • get assign(): undefined | boolean
  • set assign(value: undefined | boolean): void

cancel

  • get cancel(): undefined | boolean
  • set cancel(value: undefined | boolean): void

delegate

  • get delegate(): undefined | boolean
  • set delegate(value: undefined | boolean): void

perform

  • get perform(): undefined | boolean
  • set perform(value: undefined | boolean): void

view

  • get view(): undefined | boolean
  • set view(value: undefined | boolean): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Mapping.html b/docs/classes/Mapping.html index f68985b..87d5f9e 100644 --- a/docs/classes/Mapping.html +++ b/docs/classes/Mapping.html @@ -1 +1 @@ -Mapping | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Mapping

Index

Constructors

constructor

  • new Mapping(id: string, transRef: string): Mapping

Properties

Private _dataGroup

_dataGroup: DataGroup[]

Private _dataRef

_dataRef: DataRef[]

Private _id

_id: string

Private _roleRef

_roleRef: RoleRef[]

Private _transitionRef

_transitionRef: string

Private _trigger

_trigger: Trigger[]

Accessors

dataGroup

dataRef

id

  • get id(): string
  • set id(value: string): void

roleRef

transitionRef

  • get transitionRef(): string
  • set transitionRef(value: string): void

trigger

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Mapping | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Mapping

Index

Constructors

constructor

  • new Mapping(id: string, transRef: string): Mapping

Properties

Private _dataGroup

_dataGroup: DataGroup[]

Private _dataRef

_dataRef: DataRef[]

Private _id

_id: string

Private _roleRef

_roleRef: RoleRef[]

Private _transitionRef

_transitionRef: string

Private _trigger

_trigger: Trigger[]

Accessors

dataGroup

dataRef

id

  • get id(): string
  • set id(value: string): void

roleRef

transitionRef

  • get transitionRef(): string
  • set transitionRef(value: string): void

trigger

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Option.html b/docs/classes/Option.html index 88ec3a9..bd150ef 100644 --- a/docs/classes/Option.html +++ b/docs/classes/Option.html @@ -1 +1 @@ -Option | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Option

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _key

_key: string

Private _value

_value: I18nString

Accessors

key

  • get key(): string
  • set key(value: string): void

value

Methods

clone

Static of

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Option | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Option

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _key

_key: string

Private _value

_value: I18nString

Accessors

key

  • get key(): string
  • set key(value: string): void

value

Methods

clone

Static of

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/PetriNet.html b/docs/classes/PetriNet.html index ab540a0..606adb3 100644 --- a/docs/classes/PetriNet.html +++ b/docs/classes/PetriNet.html @@ -1 +1 @@ -PetriNet | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PetriNet

Index

Constructors

constructor

Properties

Private _anonymousRole

_anonymousRole: boolean

Private _arcs

_arcs: Map<string, Arc>

Private _caseEvents

_caseEvents: Map<CaseEventType, CaseEvent>

Private _caseName

_caseName: I18nWithDynamic

Private _data

_data: Map<string, DataVariable>

Private _defaultRole

_defaultRole: boolean

Private _functions

_functions: PetriflowFunction[]

Private _i18ns

_i18ns: Map<string, I18nTranslations>

Private _icon

_icon: string

Private _id

_id: string

Private _initials

_initials: string

Private _mappings

_mappings: Map<string, Mapping>

Private _places

_places: Map<string, Place>

Private _processEvents

_processEvents: Map<UPLOAD, ProcessEvent>

Private _roleRefs

_roleRefs: Map<string, ProcessRoleRef>

Private _roles

_roles: Map<string, Role>

Private _title

_title: I18nString

Private _transactions

_transactions: Map<string, Transaction>

Private _transitionRole

_transitionRole: boolean

Private _transitions

_transitions: Map<string, Transition>

Private _userRefs

_userRefs: Map<string, ProcessUserRef>

Private _version

_version: string

Accessors

anonymousRole

  • get anonymousRole(): boolean
  • set anonymousRole(value: boolean): void

caseName

defaultRole

  • get defaultRole(): boolean
  • set defaultRole(value: boolean): void

functions

icon

  • get icon(): string
  • set icon(value: string): void

id

  • get id(): string
  • set id(value: string): void

initials

  • get initials(): string
  • set initials(value: string): void

title

transitionRole

  • get transitionRole(): boolean
  • set transitionRole(value: boolean): void

version

  • get version(): string
  • set version(value: string): void

Methods

addArc

  • addArc(arc: Arc): void

addCaseEvent

addData

addFunction

addI18n

addMapping

addPlace

  • addPlace(place: Place): void

addProcessEvent

addRole

  • addRole(role: Role): void

addRoleRef

addTransaction

addTransition

addUserRef

clone

getArc

  • getArc(id: string): undefined | Arc

getArcs

  • getArcs(): Arc[]

getCaseEvent

getCaseEvents

getData

getDataSet

getI18n

getI18ns

getMapping

  • getMapping(id: string): undefined | Mapping

getMappings

getPlace

  • getPlace(id: string): undefined | Place

getPlaces

getProcessEvent

getProcessEvents

getRole

  • getRole(id: string): undefined | Role

getRoleRef

getRoleRefs

getRoles

getTransaction

getTransactions

getTransition

getTransitions

getUserRef

getUserRefs

removeArc

  • removeArc(id: string): void

removeCaseEvent

removeData

  • removeData(id: string): void

removeI18n

  • removeI18n(locale: string): void

removeMapping

  • removeMapping(id: string): void

removePlace

  • removePlace(id: string): void

removeProcessEvent

  • removeProcessEvent(type: UPLOAD): void

removeRole

  • removeRole(id: string): void

removeRoleRef

  • removeRoleRef(id: string): void

removeTransaction

  • removeTransaction(id: string): void

removeTransition

  • removeTransition(id: string): void

removeUserRef

  • removeUserRef(id: string): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PetriNet | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PetriNet

Index

Constructors

constructor

Properties

Private _anonymousRole

_anonymousRole: boolean

Private _arcs

_arcs: Map<string, Arc>

Private _caseEvents

_caseEvents: Map<CaseEventType, CaseEvent>

Private _caseName

_caseName: I18nWithDynamic

Private _data

_data: Map<string, DataVariable>

Private _defaultRole

_defaultRole: boolean

Private _functions

_functions: PetriflowFunction[]

Private _i18ns

_i18ns: Map<string, I18nTranslations>

Private _icon

_icon: string

Private _id

_id: string

Private _initials

_initials: string

Private _mappings

_mappings: Map<string, Mapping>

Private _places

_places: Map<string, Place>

Private _processEvents

_processEvents: Map<UPLOAD, ProcessEvent>

Private _roleRefs

_roleRefs: Map<string, ProcessRoleRef>

Private _roles

_roles: Map<string, Role>

Private _title

_title: I18nString

Private _transactions

_transactions: Map<string, Transaction>

Private _transitionRole

_transitionRole: boolean

Private _transitions

_transitions: Map<string, Transition>

Private _userRefs

_userRefs: Map<string, ProcessUserRef>

Private _version

_version: string

Accessors

anonymousRole

  • get anonymousRole(): boolean
  • set anonymousRole(value: boolean): void

caseName

defaultRole

  • get defaultRole(): boolean
  • set defaultRole(value: boolean): void

functions

icon

  • get icon(): string
  • set icon(value: string): void

id

  • get id(): string
  • set id(value: string): void

initials

  • get initials(): string
  • set initials(value: string): void

title

transitionRole

  • get transitionRole(): boolean
  • set transitionRole(value: boolean): void

version

  • get version(): string
  • set version(value: string): void

Methods

addArc

  • addArc(arc: Arc): void

addCaseEvent

addData

addFunction

addI18n

addMapping

addPlace

  • addPlace(place: Place): void

addProcessEvent

addRole

  • addRole(role: Role): void

addRoleRef

addTransaction

addTransition

addUserRef

clone

getArc

  • getArc(id: string): undefined | Arc

getArcs

  • getArcs(): Arc[]

getCaseEvent

getCaseEvents

getData

getDataSet

getI18n

getI18ns

getMapping

  • getMapping(id: string): undefined | Mapping

getMappings

getPlace

  • getPlace(id: string): undefined | Place

getPlaces

getProcessEvent

getProcessEvents

getRole

  • getRole(id: string): undefined | Role

getRoleRef

getRoleRefs

getRoles

getTransaction

getTransactions

getTransition

getTransitions

getUserRef

getUserRefs

removeArc

  • removeArc(id: string): void

removeCaseEvent

removeData

  • removeData(id: string): void

removeI18n

  • removeI18n(locale: string): void

removeMapping

  • removeMapping(id: string): void

removePlace

  • removePlace(id: string): void

removeProcessEvent

  • removeProcessEvent(type: UPLOAD): void

removeRole

  • removeRole(id: string): void

removeRoleRef

  • removeRoleRef(id: string): void

removeTransaction

  • removeTransaction(id: string): void

removeTransition

  • removeTransition(id: string): void

removeUserRef

  • removeUserRef(id: string): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/PetriNetResult.html b/docs/classes/PetriNetResult.html index 010df03..70de83a 100644 --- a/docs/classes/PetriNetResult.html +++ b/docs/classes/PetriNetResult.html @@ -1 +1 @@ -PetriNetResult | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PetriNetResult

Index

Constructors

constructor

Properties

Private _errors

_errors: string[]

Private Optional _fileName

_fileName?: string

Private _info

_info: string[]

Private _model

_model: PetriNet

Private _warnings

_warnings: string[]

Accessors

errors

  • get errors(): string[]

fileName

  • get fileName(): undefined | string
  • set fileName(value: undefined | string): void

info

  • get info(): string[]

model

warnings

  • get warnings(): string[]

Methods

addError

  • addError(error: string, e: Error): void

addInfo

  • addInfo(value: string): void

addWarning

  • addWarning(warning: string): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PetriNetResult | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PetriNetResult

Index

Constructors

constructor

Properties

Private _errors

_errors: string[]

Private Optional _fileName

_fileName?: string

Private _info

_info: string[]

Private _model

_model: PetriNet

Private _warnings

_warnings: string[]

Accessors

errors

  • get errors(): string[]

fileName

  • get fileName(): undefined | string
  • set fileName(value: undefined | string): void

info

  • get info(): string[]

model

warnings

  • get warnings(): string[]

Methods

addError

  • addError(error: string, e: Error): void

addInfo

  • addInfo(value: string): void

addWarning

  • addWarning(warning: string): void

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/PetriflowFunction.html b/docs/classes/PetriflowFunction.html index c1b37dd..782886f 100644 --- a/docs/classes/PetriflowFunction.html +++ b/docs/classes/PetriflowFunction.html @@ -1 +1 @@ -PetriflowFunction | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PetriflowFunction

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _definition

_definition: string

Private _name

_name: string

Private _scope

Accessors

definition

  • get definition(): string
  • set definition(value: string): void

name

  • get name(): string
  • set name(value: string): void

scope

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PetriflowFunction | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PetriflowFunction

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _definition

_definition: string

Private _name

_name: string

Private _scope

Accessors

definition

  • get definition(): string
  • set definition(value: string): void

name

  • get name(): string
  • set name(value: string): void

scope

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Place.html b/docs/classes/Place.html index 960eb3c..e729745 100644 --- a/docs/classes/Place.html +++ b/docs/classes/Place.html @@ -1 +1 @@ -Place | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Place

Index

Constructors

constructor

  • new Place(x: number, y: number, isStatic: boolean, id: string): Place

Properties

Private _id

_id: string

Private _label

_label: I18nString

Private _marking

_marking: number

Private _static

_static: boolean

Private _x

_x: number

Private _y

_y: number

Accessors

id

  • get id(): string
  • set id(value: string): void

label

marking

  • get marking(): number
  • set marking(value: number): void

static

  • get static(): boolean
  • set static(value: boolean): void

x

  • get x(): number
  • set x(value: number): void

y

  • get y(): number
  • set y(value: number): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Place | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Place

Index

Constructors

constructor

  • new Place(x: number, y: number, isStatic: boolean, id: string): Place

Properties

Private _id

_id: string

Private _label

_label: I18nString

Private _marking

_marking: number

Private _static

_static: boolean

Private _x

_x: number

Private _y

_y: number

Accessors

id

  • get id(): string
  • set id(value: string): void

label

marking

  • get marking(): number
  • set marking(value: number): void

static

  • get static(): boolean
  • set static(value: boolean): void

x

  • get x(): number
  • set x(value: number): void

y

  • get y(): number
  • set y(value: number): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ProcessEvent.html b/docs/classes/ProcessEvent.html index a40410a..af1e4fc 100644 --- a/docs/classes/ProcessEvent.html +++ b/docs/classes/ProcessEvent.html @@ -1 +1 @@ -ProcessEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Accessors

id

  • get id(): string
  • set id(value: string): void

postActions

preActions

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ProcessEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Accessors

id

  • get id(): string
  • set id(value: string): void

postActions

preActions

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ProcessRoleRef.html b/docs/classes/ProcessRoleRef.html index 6cd9c94..cb20462 100644 --- a/docs/classes/ProcessRoleRef.html +++ b/docs/classes/ProcessRoleRef.html @@ -1 +1 @@ -ProcessRoleRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ProcessRoleRef

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _caseLogic

_caseLogic: CaseLogic

Private _id

_id: string

Accessors

caseLogic

id

  • get id(): string
  • set id(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ProcessRoleRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ProcessRoleRef

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _caseLogic

_caseLogic: CaseLogic

Private _id

_id: string

Accessors

caseLogic

id

  • get id(): string
  • set id(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/ProcessUserRef.html b/docs/classes/ProcessUserRef.html index 852ffbd..d6ce6b9 100644 --- a/docs/classes/ProcessUserRef.html +++ b/docs/classes/ProcessUserRef.html @@ -1 +1 @@ -ProcessUserRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ProcessUserRef

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _caseLogic

_caseLogic: CaseLogic

Private _id

_id: string

Accessors

caseLogic

id

  • get id(): string
  • set id(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ProcessUserRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ProcessUserRef

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _caseLogic

_caseLogic: CaseLogic

Private _id

_id: string

Accessors

caseLogic

id

  • get id(): string
  • set id(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Property.html b/docs/classes/Property.html index 48f63f9..fb34f9c 100644 --- a/docs/classes/Property.html +++ b/docs/classes/Property.html @@ -1 +1 @@ -Property | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Property

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

  • new Property(key: string, value: string): Property

Properties

Private _key

_key: string

Private _value

_value: string

Accessors

key

  • get key(): string
  • set key(value: string): void

value

  • get value(): string
  • set value(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Property | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Property

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

  • new Property(key: string, value: string): Property

Properties

Private _key

_key: string

Private _value

_value: string

Accessors

key

  • get key(): string
  • set key(value: string): void

value

  • get value(): string
  • set value(value: string): void

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Role.html b/docs/classes/Role.html index 822f4eb..00bdd28 100644 --- a/docs/classes/Role.html +++ b/docs/classes/Role.html @@ -1 +1 @@ -Role | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

  • new Role(id: string): Role

Properties

Private _id

_id: string

Private _title

_title: I18nString

Accessors

Protected events

  • get events(): Map<S, T>

id

  • get id(): string
  • set id(value: string): void

title

Methods

addEvent

clone

getEvent

getEvents

mergeEvent

removeEvent

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Role | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

  • new Role(id: string): Role

Properties

Private _id

_id: string

Private _title

_title: I18nString

Accessors

Protected events

  • get events(): Map<S, T>

id

  • get id(): string
  • set id(value: string): void

title

Methods

addEvent

clone

getEvent

getEvents

mergeEvent

removeEvent

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/RoleEvent.html b/docs/classes/RoleEvent.html index a2061cc..054404f 100644 --- a/docs/classes/RoleEvent.html +++ b/docs/classes/RoleEvent.html @@ -1 +1 @@ -RoleEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Properties

Private _message

_message: I18nString

Private _title

_title: I18nString

Accessors

id

  • get id(): string
  • set id(value: string): void

message

postActions

preActions

title

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +RoleEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Properties

Private _message

_message: I18nString

Private _title

_title: I18nString

Accessors

id

  • get id(): string
  • set id(value: string): void

message

postActions

preActions

title

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/RoleRef.html b/docs/classes/RoleRef.html index 17ce0d8..650b17d 100644 --- a/docs/classes/RoleRef.html +++ b/docs/classes/RoleRef.html @@ -1 +1 @@ -RoleRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • RoleRef

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _id

_id: string

Private _logic

_logic: Logic

Accessors

id

  • get id(): string
  • set id(value: string): void

logic

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +RoleRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • RoleRef

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _id

_id: string

Private _logic

_logic: Logic

Accessors

id

  • get id(): string
  • set id(value: string): void

logic

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Transaction.html b/docs/classes/Transaction.html index 44816c0..bf0c254 100644 --- a/docs/classes/Transaction.html +++ b/docs/classes/Transaction.html @@ -1 +1 @@ -Transaction | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Transaction

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _id

_id: string

Private _title

_title: I18nString

Accessors

id

  • get id(): string
  • set id(value: string): void

title

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Transaction | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Transaction

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _id

_id: string

Private _title

_title: I18nString

Accessors

id

  • get id(): string
  • set id(value: string): void

title

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Transition.html b/docs/classes/Transition.html index db56eaf..a7c5992 100644 --- a/docs/classes/Transition.html +++ b/docs/classes/Transition.html @@ -1 +1 @@ -Transition | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

  • new Transition(x: number, y: number, id: string): Transition

Properties

Private _assignPolicy

_assignPolicy: AssignPolicy

Private Optional _assignedUser

_assignedUser?: AssignedUser

Private _dataFocusPolicy

_dataFocusPolicy: DataFocusPolicy

Private _dataGroups

_dataGroups: DataGroup[]

Private _finishPolicy

_finishPolicy: FinishPolicy

Private Optional _icon

_icon?: string

Private _id

_id: string

Private _label

_label: I18nString

Private Optional _layout

Private Optional _priority

_priority?: number

Private _roleRefs

_roleRefs: RoleRef[]

Private Optional _transactionRef

_transactionRef?: string

Private _triggers

_triggers: Trigger[]

Private _userRefs

_userRefs: UserRef[]

Private _x

_x: number

Private _y

_y: number

Accessors

assignPolicy

assignedUser

dataFocusPolicy

dataGroups

Protected events

  • get events(): Map<S, T>

finishPolicy

icon

  • get icon(): undefined | string
  • set icon(value: undefined | string): void

id

  • get id(): string
  • set id(value: string): void

label

layout

priority

  • get priority(): undefined | number
  • set priority(value: undefined | number): void

roleRefs

transactionRef

  • get transactionRef(): undefined | string
  • set transactionRef(value: undefined | string): void

triggers

userRefs

x

  • get x(): number
  • set x(value: number): void

y

  • get y(): number
  • set y(value: number): void

Methods

addEvent

clone

getEvent

getEvents

mergeEvent

removeEvent

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Transition | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

  • new Transition(x: number, y: number, id: string): Transition

Properties

Private _assignPolicy

_assignPolicy: AssignPolicy

Private Optional _assignedUser

_assignedUser?: AssignedUser

Private _dataFocusPolicy

_dataFocusPolicy: DataFocusPolicy

Private _dataGroups

_dataGroups: DataGroup[]

Private _finishPolicy

_finishPolicy: FinishPolicy

Private Optional _icon

_icon?: string

Private _id

_id: string

Private _label

_label: I18nString

Private Optional _layout

Private Optional _priority

_priority?: number

Private _roleRefs

_roleRefs: RoleRef[]

Private Optional _transactionRef

_transactionRef?: string

Private _triggers

_triggers: Trigger[]

Private _userRefs

_userRefs: UserRef[]

Private _x

_x: number

Private _y

_y: number

Accessors

assignPolicy

assignedUser

dataFocusPolicy

dataGroups

Protected events

  • get events(): Map<S, T>

finishPolicy

icon

  • get icon(): undefined | string
  • set icon(value: undefined | string): void

id

  • get id(): string
  • set id(value: string): void

label

layout

priority

  • get priority(): undefined | number
  • set priority(value: undefined | number): void

roleRefs

transactionRef

  • get transactionRef(): undefined | string
  • set transactionRef(value: undefined | string): void

triggers

userRefs

x

  • get x(): number
  • set x(value: number): void

y

  • get y(): number
  • set y(value: number): void

Methods

addEvent

clone

getEvent

getEvents

mergeEvent

removeEvent

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/TransitionEvent.html b/docs/classes/TransitionEvent.html index 84028fa..f82a962 100644 --- a/docs/classes/TransitionEvent.html +++ b/docs/classes/TransitionEvent.html @@ -1 +1 @@ -TransitionEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Properties

Private _message

_message: I18nString

Private _title

_title: I18nString

Accessors

id

  • get id(): string
  • set id(value: string): void

message

postActions

preActions

title

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +TransitionEvent | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

constructor

Properties

Private _message

_message: I18nString

Private _title

_title: I18nString

Accessors

id

  • get id(): string
  • set id(value: string): void

message

postActions

preActions

title

type

  • get type(): T
  • set type(value: T): void

Methods

addAction

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/TransitionLayout.html b/docs/classes/TransitionLayout.html index bfc40b7..b16ad7c 100644 --- a/docs/classes/TransitionLayout.html +++ b/docs/classes/TransitionLayout.html @@ -1 +1 @@ -TransitionLayout | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _type

_type?: LayoutType

Accessors

alignment

cols

  • get cols(): undefined | number
  • set cols(value: undefined | number): void

offset

  • get offset(): undefined | number
  • set offset(value: undefined | number): void

rows

  • get rows(): undefined | number
  • set rows(value: undefined | number): void

type

Methods

clone

empty

  • empty(): boolean

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +TransitionLayout | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _type

_type?: LayoutType

Accessors

alignment

cols

  • get cols(): undefined | number
  • set cols(value: undefined | number): void

offset

  • get offset(): undefined | number
  • set offset(value: undefined | number): void

rows

  • get rows(): undefined | number
  • set rows(value: undefined | number): void

type

Methods

clone

empty

  • empty(): boolean

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Trigger.html b/docs/classes/Trigger.html index b264d5b..0531dfe 100644 --- a/docs/classes/Trigger.html +++ b/docs/classes/Trigger.html @@ -1 +1 @@ -Trigger | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Trigger

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _delay

_delay?: string

Private Optional _exact

_exact?: Date

Private _type

Accessors

delay

  • get delay(): undefined | string
  • set delay(value: undefined | string): void

exact

  • get exact(): undefined | Date
  • set exact(value: undefined | Date): void

type

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Trigger | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Trigger

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _delay

_delay?: string

Private Optional _exact

_exact?: Date

Private _type

Accessors

delay

  • get delay(): undefined | string
  • set delay(value: undefined | string): void

exact

  • get exact(): undefined | Date
  • set exact(value: undefined | Date): void

type

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/UserRef.html b/docs/classes/UserRef.html index 79ea7ef..48fd2ae 100644 --- a/docs/classes/UserRef.html +++ b/docs/classes/UserRef.html @@ -1 +1 @@ -UserRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • UserRef

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _id

_id: string

Private _logic

_logic: Logic

Accessors

id

  • get id(): string
  • set id(value: string): void

logic

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +UserRef | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • UserRef

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _id

_id: string

Private _logic

_logic: Logic

Accessors

id

  • get id(): string
  • set id(value: string): void

logic

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Validation.html b/docs/classes/Validation.html index dc4b445..44462bd 100644 --- a/docs/classes/Validation.html +++ b/docs/classes/Validation.html @@ -1 +1 @@ -Validation | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Validation

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _expression

_expression?: Expression

Private _message

_message: I18nString

Accessors

expression

message

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Validation | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Validation

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private Optional _expression

_expression?: Expression

Private _message

_message: I18nString

Accessors

expression

message

Methods

clone

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/Alignment.html b/docs/enums/Alignment.html index 1a5778c..97a0e24 100644 --- a/docs/enums/Alignment.html +++ b/docs/enums/Alignment.html @@ -1 +1 @@ -Alignment | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Alignment

Index

Enumeration members

Enumeration members

BOTTOM

BOTTOM = "bottom"

CENTER

CENTER = "center"

TOP

TOP = "top"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Alignment | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Alignment

Index

Enumeration members

Enumeration members

BOTTOM

BOTTOM = "bottom"

CENTER

CENTER = "center"

TOP

TOP = "top"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/Appearance.html b/docs/enums/Appearance.html index b6aa43a..798ffc7 100644 --- a/docs/enums/Appearance.html +++ b/docs/enums/Appearance.html @@ -1 +1 @@ -Appearance | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Appearance

Index

Enumeration members

Enumeration members

FILL

FILL = "fill"

LEGACY

LEGACY = "legacy"

OUTLINE

OUTLINE = "outline"

STANDARD

STANDARD = "standard"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Appearance | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Appearance

Index

Enumeration members

Enumeration members

FILL

FILL = "fill"

LEGACY

LEGACY = "legacy"

OUTLINE

OUTLINE = "outline"

STANDARD

STANDARD = "standard"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/ArcType.html b/docs/enums/ArcType.html index d370980..4f5adb7 100644 --- a/docs/enums/ArcType.html +++ b/docs/enums/ArcType.html @@ -1 +1 @@ -ArcType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ArcType

Index

Enumeration members

INHIBITOR

INHIBITOR = "inhibitor"

READ

READ = "read"

REGULAR

REGULAR = "regular"

RESET

RESET = "reset"

VARIABLE

VARIABLE = "variable"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ArcType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ArcType

Index

Enumeration members

INHIBITOR

INHIBITOR = "inhibitor"

READ

READ = "read"

REGULAR

REGULAR = "regular"

RESET

RESET = "reset"

VARIABLE

VARIABLE = "variable"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/AssignPolicy.html b/docs/enums/AssignPolicy.html index 51e728d..8ad7742 100644 --- a/docs/enums/AssignPolicy.html +++ b/docs/enums/AssignPolicy.html @@ -1 +1 @@ -AssignPolicy | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration AssignPolicy

Index

Enumeration members

Enumeration members

AUTO

AUTO = "auto"

MANUAL

MANUAL = "manual"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +AssignPolicy | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration AssignPolicy

Index

Enumeration members

Enumeration members

AUTO

AUTO = "auto"

MANUAL

MANUAL = "manual"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/CaseEventType.html b/docs/enums/CaseEventType.html index afb1e0d..39a2036 100644 --- a/docs/enums/CaseEventType.html +++ b/docs/enums/CaseEventType.html @@ -1 +1 @@ -CaseEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration CaseEventType

Index

Enumeration members

Enumeration members

CREATE

CREATE = "create"

DELETE

DELETE = "delete"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +CaseEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration CaseEventType

Index

Enumeration members

Enumeration members

CREATE

CREATE = "create"

DELETE

DELETE = "delete"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/DataEventType.html b/docs/enums/DataEventType.html index 942c05f..e2ff269 100644 --- a/docs/enums/DataEventType.html +++ b/docs/enums/DataEventType.html @@ -1 +1 @@ -DataEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration DataEventType

Index

Enumeration members

Enumeration members

GET

GET = "get"

SET

SET = "set"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration DataEventType

Index

Enumeration members

Enumeration members

GET

GET = "get"

SET

SET = "set"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/DataFocusPolicy.html b/docs/enums/DataFocusPolicy.html index 75a998f..3a473a4 100644 --- a/docs/enums/DataFocusPolicy.html +++ b/docs/enums/DataFocusPolicy.html @@ -1 +1 @@ -DataFocusPolicy | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration DataFocusPolicy

Index

Enumeration members

Enumeration members

AUTO_EMPTY_REQUIRED

AUTO_EMPTY_REQUIRED = "auto_empty_required"

MANUAL

MANUAL = "manual"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataFocusPolicy | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration DataFocusPolicy

Index

Enumeration members

Enumeration members

AUTO_EMPTY_REQUIRED

AUTO_EMPTY_REQUIRED = "auto_empty_required"

MANUAL

MANUAL = "manual"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/DataRefBehavior.html b/docs/enums/DataRefBehavior.html index 46f6228..9a33a0e 100644 --- a/docs/enums/DataRefBehavior.html +++ b/docs/enums/DataRefBehavior.html @@ -1 +1 @@ -DataRefBehavior | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration DataRefBehavior

Index

Enumeration members

EDITABLE

EDITABLE = "editable"

FORBIDDEN

FORBIDDEN = "forbidden"

HIDDEN

HIDDEN = "hidden"

OPTIONAL

OPTIONAL = "optional"

REQUIRED

REQUIRED = "required"

VISIBLE

VISIBLE = "visible"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataRefBehavior | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration DataRefBehavior

Index

Enumeration members

EDITABLE

EDITABLE = "editable"

FORBIDDEN

FORBIDDEN = "forbidden"

HIDDEN

HIDDEN = "hidden"

OPTIONAL

OPTIONAL = "optional"

REQUIRED

REQUIRED = "required"

VISIBLE

VISIBLE = "visible"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/DataType.html b/docs/enums/DataType.html index 282c979..513305f 100644 --- a/docs/enums/DataType.html +++ b/docs/enums/DataType.html @@ -1 +1 @@ -DataType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration DataType

Index

Enumeration members

BOOLEAN

BOOLEAN = "boolean"

BUTTON

BUTTON = "button"

CASE_REF

CASE_REF = "caseRef"

DATE

DATE = "date"

DATETIME

DATETIME = "dateTime"

ENUMERATION

ENUMERATION = "enumeration"

ENUMERATION_MAP

ENUMERATION_MAP = "enumeration_map"

FILE

FILE = "file"

FILE_LIST

FILE_LIST = "fileList"

FILTER

FILTER = "filter"

MULTICHOICE

MULTICHOICE = "multichoice"

MULTICHOICE_MAP

MULTICHOICE_MAP = "multichoice_map"

NUMBER

NUMBER = "number"

TASK_REF

TASK_REF = "taskRef"

TEXT

TEXT = "text"

USER

USER = "user"

USER_LIST

USER_LIST = "userList"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +DataType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration DataType

Index

Enumeration members

BOOLEAN

BOOLEAN = "boolean"

BUTTON

BUTTON = "button"

CASE_REF

CASE_REF = "caseRef"

DATE

DATE = "date"

DATETIME

DATETIME = "dateTime"

ENUMERATION

ENUMERATION = "enumeration"

ENUMERATION_MAP

ENUMERATION_MAP = "enumeration_map"

FILE

FILE = "file"

FILE_LIST

FILE_LIST = "fileList"

FILTER

FILTER = "filter"

MULTICHOICE

MULTICHOICE = "multichoice"

MULTICHOICE_MAP

MULTICHOICE_MAP = "multichoice_map"

NUMBER

NUMBER = "number"

TASK_REF

TASK_REF = "taskRef"

TEXT

TEXT = "text"

USER

USER = "user"

USER_LIST

USER_LIST = "userList"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/EventPhase.html b/docs/enums/EventPhase.html index 14117ea..58a0308 100644 --- a/docs/enums/EventPhase.html +++ b/docs/enums/EventPhase.html @@ -1 +1 @@ -EventPhase | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration EventPhase

Index

Enumeration members

Enumeration members

POST

POST = "post"

PRE

PRE = "pre"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +EventPhase | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration EventPhase

Index

Enumeration members

Enumeration members

POST

POST = "post"

PRE

PRE = "pre"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/FinishPolicy.html b/docs/enums/FinishPolicy.html index 827c3a8..d523bdb 100644 --- a/docs/enums/FinishPolicy.html +++ b/docs/enums/FinishPolicy.html @@ -1 +1 @@ -FinishPolicy | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration FinishPolicy

Index

Enumeration members

Enumeration members

AUTO_NO_DATA

AUTO_NO_DATA = "auto_no_data"

MANUAL

MANUAL = "manual"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +FinishPolicy | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration FinishPolicy

Index

Enumeration members

Enumeration members

AUTO_NO_DATA

AUTO_NO_DATA = "auto_no_data"

MANUAL

MANUAL = "manual"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/FunctionScope.html b/docs/enums/FunctionScope.html index db5b41a..ab686ee 100644 --- a/docs/enums/FunctionScope.html +++ b/docs/enums/FunctionScope.html @@ -1 +1 @@ -FunctionScope | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration FunctionScope

Index

Enumeration members

Enumeration members

NAMESPACE

NAMESPACE = "namespace"

PROCESS

PROCESS = "process"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +FunctionScope | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration FunctionScope

Index

Enumeration members

Enumeration members

NAMESPACE

NAMESPACE = "namespace"

PROCESS

PROCESS = "process"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/IconType.html b/docs/enums/IconType.html index 00a8f67..108e935 100644 --- a/docs/enums/IconType.html +++ b/docs/enums/IconType.html @@ -1 +1 @@ -IconType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration IconType

Index

Enumeration members

Enumeration members

MATERIAL

MATERIAL = "material"

SVG

SVG = "svg"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +IconType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration IconType

Index

Enumeration members

Enumeration members

MATERIAL

MATERIAL = "material"

SVG

SVG = "svg"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/LayoutType.html b/docs/enums/LayoutType.html index 2398e5f..00c28eb 100644 --- a/docs/enums/LayoutType.html +++ b/docs/enums/LayoutType.html @@ -1 +1 @@ -LayoutType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration LayoutType

Index

Enumeration members

Enumeration members

FLOW

FLOW = "flow"

GRID

GRID = "grid"

LEGACY

LEGACY = "legacy"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +LayoutType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration LayoutType

Index

Enumeration members

Enumeration members

FLOW

FLOW = "flow"

GRID

GRID = "grid"

LEGACY

LEGACY = "legacy"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/ProcessEventType.html b/docs/enums/ProcessEventType.html index 4917599..93cfbe8 100644 --- a/docs/enums/ProcessEventType.html +++ b/docs/enums/ProcessEventType.html @@ -1 +1 @@ -ProcessEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ProcessEventType

Index

Enumeration members

Enumeration members

UPLOAD

UPLOAD = "upload"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ProcessEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ProcessEventType

Index

Enumeration members

Enumeration members

UPLOAD

UPLOAD = "upload"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/RoleEventType.html b/docs/enums/RoleEventType.html index 275a35e..447020c 100644 --- a/docs/enums/RoleEventType.html +++ b/docs/enums/RoleEventType.html @@ -1 +1 @@ -RoleEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration RoleEventType

Index

Enumeration members

Enumeration members

ASSIGN

ASSIGN = "assign"

CANCEL

CANCEL = "cancel"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +RoleEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration RoleEventType

Index

Enumeration members

Enumeration members

ASSIGN

ASSIGN = "assign"

CANCEL

CANCEL = "cancel"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/Template.html b/docs/enums/Template.html index f14063a..ea665ff 100644 --- a/docs/enums/Template.html +++ b/docs/enums/Template.html @@ -1 +1 @@ -Template | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Template

Index

Enumeration members

Enumeration members

MATERIAL

MATERIAL = "material"

NETGRIF

NETGRIF = "netgrif"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Template | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Template

Index

Enumeration members

Enumeration members

MATERIAL

MATERIAL = "material"

NETGRIF

NETGRIF = "netgrif"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/TransitionEventType.html b/docs/enums/TransitionEventType.html index 0132f2b..cd5c45a 100644 --- a/docs/enums/TransitionEventType.html +++ b/docs/enums/TransitionEventType.html @@ -1 +1 @@ -TransitionEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration TransitionEventType

Index

Enumeration members

Enumeration members

ASSIGN

ASSIGN = "assign"

CANCEL

CANCEL = "cancel"

DELEGATE

DELEGATE = "delegate"

FINISH

FINISH = "finish"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +TransitionEventType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration TransitionEventType

Index

Enumeration members

Enumeration members

ASSIGN

ASSIGN = "assign"

CANCEL

CANCEL = "cancel"

DELEGATE

DELEGATE = "delegate"

FINISH

FINISH = "finish"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/TriggerType.html b/docs/enums/TriggerType.html index a48dc83..47a2699 100644 --- a/docs/enums/TriggerType.html +++ b/docs/enums/TriggerType.html @@ -1 +1 @@ -TriggerType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration TriggerType

Index

Enumeration members

Enumeration members

AUTO

AUTO = "auto"

TIME

TIME = "time"

USER

USER = "user"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +TriggerType | @netgrif/petriflow
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration TriggerType

Index

Enumeration members

Enumeration members

AUTO

AUTO = "auto"

TIME

TIME = "time"

USER

USER = "user"

Legend

  • Constructor
  • Method
  • Accessor
  • Inherited constructor
  • Inherited method
  • Inherited accessor
  • Private property
  • Private method
  • Static property
  • Static method
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 992e649..8bba30c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4,7 +4,7 @@

Petriflow.js

GitHub npm dev dependency version (scoped) -Petriflow 1.0.0 +Petriflow 1.0.1 npm (scoped) npm build diff --git a/package.json b/package.json index 9c7dd98..57ca8c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@netgrif/petriflow", - "version": "1.3.0", + "version": "1.3.1", "description": "Javascript / Typescript library of Petriflow objects", "main": "dist/petriflow.js", "module": "dist/petriflow.esm.js",