@n8n/eslint-plugin-community-nodes 0.8.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/README.md +15 -13
  3. package/dist/plugin.d.ts +6 -0
  4. package/dist/plugin.d.ts.map +1 -1
  5. package/dist/plugin.js +2 -0
  6. package/dist/plugin.js.map +1 -1
  7. package/dist/rules/index.d.ts +1 -0
  8. package/dist/rules/index.d.ts.map +1 -1
  9. package/dist/rules/index.js +2 -0
  10. package/dist/rules/index.js.map +1 -1
  11. package/dist/rules/no-deprecated-workflow-functions.d.ts.map +1 -1
  12. package/dist/rules/no-deprecated-workflow-functions.js +1 -13
  13. package/dist/rules/no-deprecated-workflow-functions.js.map +1 -1
  14. package/dist/rules/no-http-request-with-manual-auth.d.ts +19 -0
  15. package/dist/rules/no-http-request-with-manual-auth.d.ts.map +1 -0
  16. package/dist/rules/no-http-request-with-manual-auth.js +65 -0
  17. package/dist/rules/no-http-request-with-manual-auth.js.map +1 -0
  18. package/dist/utils/ast-utils.d.ts +6 -0
  19. package/dist/utils/ast-utils.d.ts.map +1 -1
  20. package/dist/utils/ast-utils.js +21 -0
  21. package/dist/utils/ast-utils.js.map +1 -1
  22. package/docs/rules/ai-node-package-json.md +62 -0
  23. package/docs/rules/credential-documentation-url.md +5 -3
  24. package/docs/rules/no-http-request-with-manual-auth.md +57 -0
  25. package/package.json +1 -1
  26. package/src/plugin.ts +2 -0
  27. package/src/rules/index.ts +2 -0
  28. package/src/rules/no-deprecated-workflow-functions.ts +1 -17
  29. package/src/rules/no-http-request-with-manual-auth.test.ts +104 -0
  30. package/src/rules/no-http-request-with-manual-auth.ts +78 -0
  31. package/src/utils/ast-utils.ts +30 -0
  32. package/tsconfig.build.tsbuildinfo +1 -0
@@ -1,4 +1,4 @@
1
1
 
2
- > @n8n/eslint-plugin-community-nodes@0.8.0 build /home/runner/work/n8n/n8n/packages/@n8n/eslint-plugin-community-nodes
2
+ > @n8n/eslint-plugin-community-nodes@0.9.0 build /home/runner/work/n8n/n8n/packages/@n8n/eslint-plugin-community-nodes
3
3
  > tsc --project tsconfig.build.json
4
4
 
package/README.md CHANGED
@@ -43,18 +43,20 @@ export default [
43
43
  🔧 Automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/user-guide/command-line-interface#--fix).\
44
44
  💡 Manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
45
45
 
46
- | Name                             | Description | 💼 | ⚠️ | 🔧 | 💡 |
47
- | :--------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------- | :--- | :--- | :- | :- |
48
- | [credential-documentation-url](docs/rules/credential-documentation-url.md) | Enforce valid credential documentationUrl format (URL or camelCase slug) | ✅ ☑️ | | | |
49
- | [credential-password-field](docs/rules/credential-password-field.md) | Ensure credential fields with sensitive names have typeOptions.password = true | ✅ ☑️ | | 🔧 | |
50
- | [credential-test-required](docs/rules/credential-test-required.md) | Ensure credentials have a credential test | ✅ ☑️ | | | 💡 |
51
- | [icon-validation](docs/rules/icon-validation.md) | Validate node and credential icon files exist, are SVG format, and light/dark icons are different | ✅ ☑️ | | | 💡 |
52
- | [no-credential-reuse](docs/rules/no-credential-reuse.md) | Prevent credential re-use security issues by ensuring nodes only reference credentials from the same package | ✅ ☑️ | | | 💡 |
53
- | [no-deprecated-workflow-functions](docs/rules/no-deprecated-workflow-functions.md) | Disallow usage of deprecated functions and types from n8n-workflow package | ✅ ☑️ | | | 💡 |
54
- | [no-restricted-globals](docs/rules/no-restricted-globals.md) | Disallow usage of restricted global variables in community nodes. | ✅ | | | |
55
- | [no-restricted-imports](docs/rules/no-restricted-imports.md) | Disallow usage of restricted imports in community nodes. | ✅ | | | |
56
- | [node-usable-as-tool](docs/rules/node-usable-as-tool.md) | Ensure node classes have usableAsTool property | ☑️ | | 🔧 | |
57
- | [package-name-convention](docs/rules/package-name-convention.md) | Enforce correct package naming convention for n8n community nodes | ✅ ☑️ | | | 💡 |
58
- | [resource-operation-pattern](docs/rules/resource-operation-pattern.md) | Enforce proper resource/operation pattern for better UX in n8n nodes | | ☑️ | | |
46
+ | Name                             | Description | 💼 | ⚠️ | 🔧 | 💡 |
47
+ | :--------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------ | :--- | :--- | :- | :- |
48
+ | [ai-node-package-json](docs/rules/ai-node-package-json.md) | Enforce consistency between n8n.aiNodeSdkVersion and ai-node-sdk peer dependency in community node packages | ✅ ☑️ | | | |
49
+ | [credential-documentation-url](docs/rules/credential-documentation-url.md) | Enforce valid credential documentationUrl format (URL or lowercase alphanumeric slug) | ✅ ☑️ | | 🔧 | |
50
+ | [credential-password-field](docs/rules/credential-password-field.md) | Ensure credential fields with sensitive names have typeOptions.password = true | ✅ ☑️ | | 🔧 | |
51
+ | [credential-test-required](docs/rules/credential-test-required.md) | Ensure credentials have a credential test | ✅ ☑️ | | | 💡 |
52
+ | [icon-validation](docs/rules/icon-validation.md) | Validate node and credential icon files exist, are SVG format, and light/dark icons are different | ✅ ☑️ | | | 💡 |
53
+ | [no-credential-reuse](docs/rules/no-credential-reuse.md) | Prevent credential re-use security issues by ensuring nodes only reference credentials from the same package | ✅ ☑️ | | | 💡 |
54
+ | [no-deprecated-workflow-functions](docs/rules/no-deprecated-workflow-functions.md) | Disallow usage of deprecated functions and types from n8n-workflow package | ✅ ☑️ | | | 💡 |
55
+ | [no-http-request-with-manual-auth](docs/rules/no-http-request-with-manual-auth.md) | Disallow this.helpers.httpRequest() in functions that call this.getCredentials(). Use this.helpers.httpRequestWithAuthentication() instead. | ✅ ☑️ | | | |
56
+ | [no-restricted-globals](docs/rules/no-restricted-globals.md) | Disallow usage of restricted global variables in community nodes. | ✅ | | | |
57
+ | [no-restricted-imports](docs/rules/no-restricted-imports.md) | Disallow usage of restricted imports in community nodes. | ✅ | | | |
58
+ | [node-usable-as-tool](docs/rules/node-usable-as-tool.md) | Ensure node classes have usableAsTool property | ☑️ | | 🔧 | |
59
+ | [package-name-convention](docs/rules/package-name-convention.md) | Enforce correct package naming convention for n8n community nodes | ✅ ☑️ | | | 💡 |
60
+ | [resource-operation-pattern](docs/rules/resource-operation-pattern.md) | Enforce proper resource/operation pattern for better UX in n8n nodes | | ✅ ☑️ | | |
59
61
 
60
62
  <!-- end auto-generated rules list -->
package/dist/plugin.d.ts CHANGED
@@ -23,6 +23,7 @@ declare const configs: {
23
23
  '@n8n/community-nodes/package-name-convention': "error";
24
24
  '@n8n/community-nodes/credential-test-required': "error";
25
25
  '@n8n/community-nodes/no-credential-reuse': "error";
26
+ '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
26
27
  '@n8n/community-nodes/icon-validation': "error";
27
28
  '@n8n/community-nodes/resource-operation-pattern': "warn";
28
29
  '@n8n/community-nodes/credential-documentation-url': "error";
@@ -48,6 +49,7 @@ declare const configs: {
48
49
  '@n8n/community-nodes/package-name-convention': "error";
49
50
  '@n8n/community-nodes/credential-test-required': "error";
50
51
  '@n8n/community-nodes/no-credential-reuse': "error";
52
+ '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
51
53
  '@n8n/community-nodes/icon-validation': "error";
52
54
  '@n8n/community-nodes/credential-documentation-url': "error";
53
55
  '@n8n/community-nodes/resource-operation-pattern': "warn";
@@ -78,6 +80,7 @@ declare const pluginWithConfigs: {
78
80
  '@n8n/community-nodes/package-name-convention': "error";
79
81
  '@n8n/community-nodes/credential-test-required': "error";
80
82
  '@n8n/community-nodes/no-credential-reuse': "error";
83
+ '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
81
84
  '@n8n/community-nodes/icon-validation': "error";
82
85
  '@n8n/community-nodes/resource-operation-pattern': "warn";
83
86
  '@n8n/community-nodes/credential-documentation-url': "error";
@@ -103,6 +106,7 @@ declare const pluginWithConfigs: {
103
106
  '@n8n/community-nodes/package-name-convention': "error";
104
107
  '@n8n/community-nodes/credential-test-required': "error";
105
108
  '@n8n/community-nodes/no-credential-reuse': "error";
109
+ '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
106
110
  '@n8n/community-nodes/icon-validation': "error";
107
111
  '@n8n/community-nodes/credential-documentation-url': "error";
108
112
  '@n8n/community-nodes/resource-operation-pattern': "warn";
@@ -140,6 +144,7 @@ declare const n8nCommunityNodesPlugin: {
140
144
  '@n8n/community-nodes/package-name-convention': "error";
141
145
  '@n8n/community-nodes/credential-test-required': "error";
142
146
  '@n8n/community-nodes/no-credential-reuse': "error";
147
+ '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
143
148
  '@n8n/community-nodes/icon-validation': "error";
144
149
  '@n8n/community-nodes/resource-operation-pattern': "warn";
145
150
  '@n8n/community-nodes/credential-documentation-url': "error";
@@ -165,6 +170,7 @@ declare const n8nCommunityNodesPlugin: {
165
170
  '@n8n/community-nodes/package-name-convention': "error";
166
171
  '@n8n/community-nodes/credential-test-required': "error";
167
172
  '@n8n/community-nodes/no-credential-reuse': "error";
173
+ '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
168
174
  '@n8n/community-nodes/icon-validation': "error";
169
175
  '@n8n/community-nodes/credential-documentation-url': "error";
170
176
  '@n8n/community-nodes/resource-operation-pattern': "warn";
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAU,MAAM,QAAQ,CAAC;AAG7C,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAYzC,QAAA,MAAM,OAAO;;;;;;;;;;uBAHI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;CA0CE,CAAC;AAE1C,QAAA,MAAM,iBAAiB;;;;;;;;;;;2BA5CN,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;WAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;CA4CiC,CAAC;AAEzE,QAAA,MAAM,uBAAuB;;;;;;;;;;;2BA9CZ,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;WAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;CA8CU,CAAC;AAClD,eAAe,iBAAiB,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,uBAAuB,EAAE,CAAC"}
1
+ {"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAU,MAAM,QAAQ,CAAC;AAG7C,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAYzC,QAAA,MAAM,OAAO;;;;;;;;;;uBAHI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;CA4CE,CAAC;AAE1C,QAAA,MAAM,iBAAiB;;;;;;;;;;;2BA9CN,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;WAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;CA8CiC,CAAC;AAEzE,QAAA,MAAM,uBAAuB;;;;;;;;;;;2BAhDZ,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;WAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;CAgDU,CAAC;AAClD,eAAe,iBAAiB,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,uBAAuB,EAAE,CAAC"}
package/dist/plugin.js CHANGED
@@ -25,6 +25,7 @@ const configs = {
25
25
  '@n8n/community-nodes/package-name-convention': 'error',
26
26
  '@n8n/community-nodes/credential-test-required': 'error',
27
27
  '@n8n/community-nodes/no-credential-reuse': 'error',
28
+ '@n8n/community-nodes/no-http-request-with-manual-auth': 'error',
28
29
  '@n8n/community-nodes/icon-validation': 'error',
29
30
  '@n8n/community-nodes/resource-operation-pattern': 'warn',
30
31
  '@n8n/community-nodes/credential-documentation-url': 'error',
@@ -43,6 +44,7 @@ const configs = {
43
44
  '@n8n/community-nodes/package-name-convention': 'error',
44
45
  '@n8n/community-nodes/credential-test-required': 'error',
45
46
  '@n8n/community-nodes/no-credential-reuse': 'error',
47
+ '@n8n/community-nodes/no-http-request-with-manual-auth': 'error',
46
48
  '@n8n/community-nodes/icon-validation': 'error',
47
49
  '@n8n/community-nodes/credential-documentation-url': 'error',
48
50
  '@n8n/community-nodes/resource-operation-pattern': 'warn',
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAEA,OAAO,GAAG,MAAM,iBAAiB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AACxD,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAEzC,MAAM,MAAM,GAAG;IACd,IAAI,EAAE;QACL,IAAI,EAAE,GAAG,CAAC,IAAI;QACd,OAAO,EAAE,GAAG,CAAC,OAAO;QACpB,SAAS,EAAE,sBAAsB;KACjC;IACD,8EAA8E;IAC9E,KAAK,EAAE,KAA+B;CACd,CAAC;AAE1B,MAAM,OAAO,GAAG;IACf,WAAW,EAAE;QACZ,OAAO,EAAE,CAAC,+BAA+B,CAAC;QAC1C,OAAO,EAAE;YACR,sBAAsB,EAAE,MAAM;SAC9B;QACD,KAAK,EAAE;YACN,2CAA2C,EAAE,OAAO;YACpD,4CAA4C,EAAE,OAAO;YACrD,4CAA4C,EAAE,OAAO;YACrD,gDAAgD,EAAE,OAAO;YACzD,uDAAuD,EAAE,OAAO;YAChE,0CAA0C,EAAE,OAAO;YACnD,8CAA8C,EAAE,OAAO;YACvD,+CAA+C,EAAE,OAAO;YACxD,0CAA0C,EAAE,OAAO;YACnD,sCAAsC,EAAE,OAAO;YAC/C,iDAAiD,EAAE,MAAM;YACzD,mDAAmD,EAAE,OAAO;SAC5D;KACD;IACD,iCAAiC,EAAE;QAClC,OAAO,EAAE,CAAC,+BAA+B,CAAC;QAC1C,OAAO,EAAE;YACR,sBAAsB,EAAE,MAAM;SAC9B;QACD,KAAK,EAAE;YACN,2CAA2C,EAAE,OAAO;YACpD,gDAAgD,EAAE,OAAO;YACzD,uDAAuD,EAAE,OAAO;YAChE,0CAA0C,EAAE,OAAO;YACnD,8CAA8C,EAAE,OAAO;YACvD,+CAA+C,EAAE,OAAO;YACxD,0CAA0C,EAAE,OAAO;YACnD,sCAAsC,EAAE,OAAO;YAC/C,mDAAmD,EAAE,OAAO;YAC5D,iDAAiD,EAAE,MAAM;SACzD;KACD;CACuC,CAAC;AAE1C,MAAM,iBAAiB,GAAG,EAAE,GAAG,MAAM,EAAE,OAAO,EAA0B,CAAC;AAEzE,MAAM,uBAAuB,GAAG,iBAAiB,CAAC;AAClD,eAAe,iBAAiB,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,uBAAuB,EAAE,CAAC"}
1
+ {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAEA,OAAO,GAAG,MAAM,iBAAiB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AACxD,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAEzC,MAAM,MAAM,GAAG;IACd,IAAI,EAAE;QACL,IAAI,EAAE,GAAG,CAAC,IAAI;QACd,OAAO,EAAE,GAAG,CAAC,OAAO;QACpB,SAAS,EAAE,sBAAsB;KACjC;IACD,8EAA8E;IAC9E,KAAK,EAAE,KAA+B;CACd,CAAC;AAE1B,MAAM,OAAO,GAAG;IACf,WAAW,EAAE;QACZ,OAAO,EAAE,CAAC,+BAA+B,CAAC;QAC1C,OAAO,EAAE;YACR,sBAAsB,EAAE,MAAM;SAC9B;QACD,KAAK,EAAE;YACN,2CAA2C,EAAE,OAAO;YACpD,4CAA4C,EAAE,OAAO;YACrD,4CAA4C,EAAE,OAAO;YACrD,gDAAgD,EAAE,OAAO;YACzD,uDAAuD,EAAE,OAAO;YAChE,0CAA0C,EAAE,OAAO;YACnD,8CAA8C,EAAE,OAAO;YACvD,+CAA+C,EAAE,OAAO;YACxD,0CAA0C,EAAE,OAAO;YACnD,uDAAuD,EAAE,OAAO;YAChE,sCAAsC,EAAE,OAAO;YAC/C,iDAAiD,EAAE,MAAM;YACzD,mDAAmD,EAAE,OAAO;SAC5D;KACD;IACD,iCAAiC,EAAE;QAClC,OAAO,EAAE,CAAC,+BAA+B,CAAC;QAC1C,OAAO,EAAE;YACR,sBAAsB,EAAE,MAAM;SAC9B;QACD,KAAK,EAAE;YACN,2CAA2C,EAAE,OAAO;YACpD,gDAAgD,EAAE,OAAO;YACzD,uDAAuD,EAAE,OAAO;YAChE,0CAA0C,EAAE,OAAO;YACnD,8CAA8C,EAAE,OAAO;YACvD,+CAA+C,EAAE,OAAO;YACxD,0CAA0C,EAAE,OAAO;YACnD,uDAAuD,EAAE,OAAO;YAChE,sCAAsC,EAAE,OAAO;YAC/C,mDAAmD,EAAE,OAAO;YAC5D,iDAAiD,EAAE,MAAM;SACzD;KACD;CACuC,CAAC;AAE1C,MAAM,iBAAiB,GAAG,EAAE,GAAG,MAAM,EAAE,OAAO,EAA0B,CAAC;AAEzE,MAAM,uBAAuB,GAAG,iBAAiB,CAAC;AAClD,eAAe,iBAAiB,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,uBAAuB,EAAE,CAAC"}
@@ -8,6 +8,7 @@ export declare const rules: {
8
8
  'package-name-convention': import("@typescript-eslint/utils/ts-eslint").RuleModule<"renameTo" | "invalidPackageName", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
9
9
  'credential-test-required': import("@typescript-eslint/utils/ts-eslint").RuleModule<"addTemplate" | "missingCredentialTest", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
10
10
  'no-credential-reuse': import("@typescript-eslint/utils/ts-eslint").RuleModule<"didYouMean" | "useAvailable" | "credentialNotInPackage", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
11
+ 'no-http-request-with-manual-auth': import("@typescript-eslint/utils/ts-eslint").RuleModule<"useHttpRequestWithAuthentication", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
11
12
  'icon-validation': import("@typescript-eslint/utils/ts-eslint").RuleModule<"iconFileNotFound" | "iconNotSvg" | "lightDarkSame" | "invalidIconPath" | "missingIcon" | "addPlaceholder" | "addFileProtocol" | "changeExtension" | "similarIcon", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
12
13
  'resource-operation-pattern': import("@typescript-eslint/utils/ts-eslint").RuleModule<"tooManyOperationsWithoutResources", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
13
14
  'credential-documentation-url': import("@typescript-eslint/utils/ts-eslint").RuleModule<"invalidDocumentationUrl", [{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/rules/index.ts"],"names":[],"mappings":"AAeA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;CAauB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/rules/index.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;CAcuB,CAAC"}
@@ -5,6 +5,7 @@ import { CredentialTestRequiredRule } from './credential-test-required.js';
5
5
  import { IconValidationRule } from './icon-validation.js';
6
6
  import { NoCredentialReuseRule } from './no-credential-reuse.js';
7
7
  import { NoDeprecatedWorkflowFunctionsRule } from './no-deprecated-workflow-functions.js';
8
+ import { NoHttpRequestWithManualAuthRule } from './no-http-request-with-manual-auth.js';
8
9
  import { NoRestrictedGlobalsRule } from './no-restricted-globals.js';
9
10
  import { NoRestrictedImportsRule } from './no-restricted-imports.js';
10
11
  import { NodeUsableAsToolRule } from './node-usable-as-tool.js';
@@ -20,6 +21,7 @@ export const rules = {
20
21
  'package-name-convention': PackageNameConventionRule,
21
22
  'credential-test-required': CredentialTestRequiredRule,
22
23
  'no-credential-reuse': NoCredentialReuseRule,
24
+ 'no-http-request-with-manual-auth': NoHttpRequestWithManualAuthRule,
23
25
  'icon-validation': IconValidationRule,
24
26
  'resource-operation-pattern': ResourceOperationPatternRule,
25
27
  'credential-documentation-url': CredentialDocumentationUrlRule,
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/rules/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,iCAAiC,EAAE,MAAM,uCAAuC,CAAC;AAC1F,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAE/E,MAAM,CAAC,MAAM,KAAK,GAAG;IACpB,sBAAsB,EAAE,qBAAqB;IAC7C,uBAAuB,EAAE,uBAAuB;IAChD,uBAAuB,EAAE,uBAAuB;IAChD,2BAA2B,EAAE,2BAA2B;IACxD,kCAAkC,EAAE,iCAAiC;IACrE,qBAAqB,EAAE,oBAAoB;IAC3C,yBAAyB,EAAE,yBAAyB;IACpD,0BAA0B,EAAE,0BAA0B;IACtD,qBAAqB,EAAE,qBAAqB;IAC5C,iBAAiB,EAAE,kBAAkB;IACrC,4BAA4B,EAAE,4BAA4B;IAC1D,8BAA8B,EAAE,8BAA8B;CACtB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/rules/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,iCAAiC,EAAE,MAAM,uCAAuC,CAAC;AAC1F,OAAO,EAAE,+BAA+B,EAAE,MAAM,uCAAuC,CAAC;AACxF,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAE/E,MAAM,CAAC,MAAM,KAAK,GAAG;IACpB,sBAAsB,EAAE,qBAAqB;IAC7C,uBAAuB,EAAE,uBAAuB;IAChD,uBAAuB,EAAE,uBAAuB;IAChD,2BAA2B,EAAE,2BAA2B;IACxD,kCAAkC,EAAE,iCAAiC;IACrE,qBAAqB,EAAE,oBAAoB;IAC3C,yBAAyB,EAAE,yBAAyB;IACpD,0BAA0B,EAAE,0BAA0B;IACtD,qBAAqB,EAAE,qBAAqB;IAC5C,kCAAkC,EAAE,+BAA+B;IACnE,iBAAiB,EAAE,kBAAkB;IACrC,4BAA4B,EAAE,4BAA4B;IAC1D,8BAA8B,EAAE,8BAA8B;CACtB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"no-deprecated-workflow-functions.d.ts","sourceRoot":"","sources":["../../src/rules/no-deprecated-workflow-functions.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,iCAAiC,2RA6I5C,CAAC"}
1
+ {"version":3,"file":"no-deprecated-workflow-functions.d.ts","sourceRoot":"","sources":["../../src/rules/no-deprecated-workflow-functions.ts"],"names":[],"mappings":"AAyBA,eAAO,MAAM,iCAAiC,2RA6I5C,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { AST_NODE_TYPES } from '@typescript-eslint/utils';
2
- import { createRule } from '../utils/index.js';
2
+ import { createRule, isThisHelpersAccess } from '../utils/index.js';
3
3
  const DEPRECATED_FUNCTIONS = {
4
4
  request: 'httpRequest',
5
5
  requestWithAuthentication: 'httpRequestWithAuthentication',
@@ -141,18 +141,6 @@ export const NoDeprecatedWorkflowFunctionsRule = createRule({
141
141
  };
142
142
  },
143
143
  });
144
- /**
145
- * Check if the MemberExpression follows the this.helpers.* pattern
146
- */
147
- function isThisHelpersAccess(node) {
148
- if (node.object?.type === AST_NODE_TYPES.MemberExpression) {
149
- const outerObject = node.object;
150
- return (outerObject.object?.type === AST_NODE_TYPES.ThisExpression &&
151
- outerObject.property?.type === AST_NODE_TYPES.Identifier &&
152
- outerObject.property.name === 'helpers');
153
- }
154
- return false;
155
- }
156
144
  function getDeprecationMessage(functionName) {
157
145
  switch (functionName) {
158
146
  case 'request':
@@ -1 +1 @@
1
- {"version":3,"file":"no-deprecated-workflow-functions.js","sourceRoot":"","sources":["../../src/rules/no-deprecated-workflow-functions.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"no-deprecated-workflow-functions.js","sourceRoot":"","sources":["../../src/rules/no-deprecated-workflow-functions.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Flags `this.helpers.httpRequest()` in functions that also call `this.getCredentials()`.
3
+ * Those functions should use `this.helpers.httpRequestWithAuthentication()` instead.
4
+ *
5
+ * Uses a function-scope stack: if both `getCredentials` and `httpRequest` appear in
6
+ * the same function body, every `httpRequest` call is reported. Nested functions are
7
+ * checked independently.
8
+ *
9
+ * Alternatives considered:
10
+ * - Checking for credential variables in `httpRequest` arguments — misses the common
11
+ * pattern where options are built in a separate variable first.
12
+ * - Matching auth header names (`Authorization`, etc.) — brittle and requires deep
13
+ * AST traversal with no guarantee of coverage.
14
+ *
15
+ * Known false positive: a function that fetches credentials for a non-HTTP purpose
16
+ * and also makes an unauthenticated request. Use eslint-disable to suppress.
17
+ */
18
+ export declare const NoHttpRequestWithManualAuthRule: import("@typescript-eslint/utils/ts-eslint").RuleModule<"useHttpRequestWithAuthentication", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
19
+ //# sourceMappingURL=no-http-request-with-manual-auth.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-http-request-with-manual-auth.d.ts","sourceRoot":"","sources":["../../src/rules/no-http-request-with-manual-auth.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAWH,eAAO,MAAM,+BAA+B,qKAkD1C,CAAC"}
@@ -0,0 +1,65 @@
1
+ /**
2
+ * Flags `this.helpers.httpRequest()` in functions that also call `this.getCredentials()`.
3
+ * Those functions should use `this.helpers.httpRequestWithAuthentication()` instead.
4
+ *
5
+ * Uses a function-scope stack: if both `getCredentials` and `httpRequest` appear in
6
+ * the same function body, every `httpRequest` call is reported. Nested functions are
7
+ * checked independently.
8
+ *
9
+ * Alternatives considered:
10
+ * - Checking for credential variables in `httpRequest` arguments — misses the common
11
+ * pattern where options are built in a separate variable first.
12
+ * - Matching auth header names (`Authorization`, etc.) — brittle and requires deep
13
+ * AST traversal with no guarantee of coverage.
14
+ *
15
+ * Known false positive: a function that fetches credentials for a non-HTTP purpose
16
+ * and also makes an unauthenticated request. Use eslint-disable to suppress.
17
+ */
18
+ import { createRule, isThisHelpersMethodCall, isThisMethodCall } from '../utils/index.js';
19
+ export const NoHttpRequestWithManualAuthRule = createRule({
20
+ name: 'no-http-request-with-manual-auth',
21
+ meta: {
22
+ type: 'suggestion',
23
+ docs: {
24
+ description: 'Disallow this.helpers.httpRequest() in functions that call this.getCredentials(). Use this.helpers.httpRequestWithAuthentication() instead.',
25
+ },
26
+ messages: {
27
+ useHttpRequestWithAuthentication: "Avoid calling 'this.helpers.httpRequest()' in a function that retrieves credentials via 'this.getCredentials()'. Use 'this.helpers.httpRequestWithAuthentication()' instead — it handles authentication internally and benefits from future n8n improvements like token refresh and audit logging.",
28
+ },
29
+ schema: [],
30
+ hasSuggestions: false,
31
+ },
32
+ defaultOptions: [],
33
+ create(context) {
34
+ const scopeStack = [];
35
+ const pushScope = () => scopeStack.push({ getCredentialsCall: null, httpRequestCalls: [] });
36
+ const popScope = () => {
37
+ const scope = scopeStack.pop();
38
+ if (scope?.getCredentialsCall && scope.httpRequestCalls.length > 0) {
39
+ for (const call of scope.httpRequestCalls) {
40
+ context.report({ node: call, messageId: 'useHttpRequestWithAuthentication' });
41
+ }
42
+ }
43
+ };
44
+ return {
45
+ FunctionDeclaration: pushScope,
46
+ FunctionExpression: pushScope,
47
+ ArrowFunctionExpression: pushScope,
48
+ 'FunctionDeclaration:exit': popScope,
49
+ 'FunctionExpression:exit': popScope,
50
+ 'ArrowFunctionExpression:exit': popScope,
51
+ CallExpression(node) {
52
+ const scope = scopeStack[scopeStack.length - 1];
53
+ if (!scope)
54
+ return;
55
+ if (isThisMethodCall(node, 'getCredentials')) {
56
+ scope.getCredentialsCall = node;
57
+ }
58
+ if (isThisHelpersMethodCall(node, 'httpRequest')) {
59
+ scope.httpRequestCalls.push(node);
60
+ }
61
+ },
62
+ };
63
+ },
64
+ });
65
+ //# sourceMappingURL=no-http-request-with-manual-auth.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-http-request-with-manual-auth.js","sourceRoot":"","sources":["../../src/rules/no-http-request-with-manual-auth.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAIH,OAAO,EAAE,UAAU,EAAE,uBAAuB,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAO1F,MAAM,CAAC,MAAM,+BAA+B,GAAG,UAAU,CAAC;IACzD,IAAI,EAAE,kCAAkC;IACxC,IAAI,EAAE;QACL,IAAI,EAAE,YAAY;QAClB,IAAI,EAAE;YACL,WAAW,EACV,6IAA6I;SAC9I;QACD,QAAQ,EAAE;YACT,gCAAgC,EAC/B,oSAAoS;SACrS;QACD,MAAM,EAAE,EAAE;QACV,cAAc,EAAE,KAAK;KACrB;IACD,cAAc,EAAE,EAAE;IAClB,MAAM,CAAC,OAAO;QACb,MAAM,UAAU,GAAoB,EAAE,CAAC;QAEvC,MAAM,SAAS,GAAG,GAAG,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,kBAAkB,EAAE,IAAI,EAAE,gBAAgB,EAAE,EAAE,EAAE,CAAC,CAAC;QAE5F,MAAM,QAAQ,GAAG,GAAG,EAAE;YACrB,MAAM,KAAK,GAAG,UAAU,CAAC,GAAG,EAAE,CAAC;YAC/B,IAAI,KAAK,EAAE,kBAAkB,IAAI,KAAK,CAAC,gBAAgB,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBACpE,KAAK,MAAM,IAAI,IAAI,KAAK,CAAC,gBAAgB,EAAE,CAAC;oBAC3C,OAAO,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,kCAAkC,EAAE,CAAC,CAAC;gBAC/E,CAAC;YACF,CAAC;QACF,CAAC,CAAC;QAEF,OAAO;YACN,mBAAmB,EAAE,SAAS;YAC9B,kBAAkB,EAAE,SAAS;YAC7B,uBAAuB,EAAE,SAAS;YAClC,0BAA0B,EAAE,QAAQ;YACpC,yBAAyB,EAAE,QAAQ;YACnC,8BAA8B,EAAE,QAAQ;YAExC,cAAc,CAAC,IAA6B;gBAC3C,MAAM,KAAK,GAAG,UAAU,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;gBAChD,IAAI,CAAC,KAAK;oBAAE,OAAO;gBACnB,IAAI,gBAAgB,CAAC,IAAI,EAAE,gBAAgB,CAAC,EAAE,CAAC;oBAC9C,KAAK,CAAC,kBAAkB,GAAG,IAAI,CAAC;gBACjC,CAAC;gBACD,IAAI,uBAAuB,CAAC,IAAI,EAAE,aAAa,CAAC,EAAE,CAAC;oBAClD,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBACnC,CAAC;YACF,CAAC;SACD,CAAC;IACH,CAAC;CACD,CAAC,CAAC"}
@@ -23,5 +23,11 @@ export declare function extractCredentialNameFromArray(element: TSESTree.ArrayEx
23
23
  name: string;
24
24
  node: TSESTree.Node;
25
25
  } | null;
26
+ /** Matches the `this.helpers` MemberExpression (the object part of `this.helpers.foo`). */
27
+ export declare function isThisHelpersAccess(node: TSESTree.MemberExpression): boolean;
28
+ /** Matches a call expression of the form `this.methodName(...)`. */
29
+ export declare function isThisMethodCall(node: TSESTree.CallExpression, method: string): boolean;
30
+ /** Matches a call expression of the form `this.helpers.methodName(...)`. */
31
+ export declare function isThisHelpersMethodCall(node: TSESTree.CallExpression, method: string): boolean;
26
32
  export declare function findSimilarStrings(target: string, candidates: Set<string>, maxDistance?: number, maxResults?: number): string[];
27
33
  //# sourceMappingURL=ast-utils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ast-utils.d.ts","sourceRoot":"","sources":["../../src/utils/ast-utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAezD,wBAAgB,eAAe,CAAC,IAAI,EAAE,QAAQ,CAAC,gBAAgB,GAAG,OAAO,CAUxE;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,QAAQ,CAAC,gBAAgB,GAAG,OAAO,CAE9E;AAED,wBAAgB,iBAAiB,CAChC,IAAI,EAAE,QAAQ,CAAC,gBAAgB,EAC/B,YAAY,EAAE,MAAM,GAClB,QAAQ,CAAC,kBAAkB,GAAG,IAAI,CAQpC;AAED,wBAAgB,kBAAkB,CACjC,GAAG,EAAE,QAAQ,CAAC,gBAAgB,EAC9B,YAAY,EAAE,MAAM,GAClB,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAQ1B;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,CAK5F;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,GAAG,IAAI,CAG/E;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,GAAG,IAAI,GAAG,MAAM,GAAG,IAAI,CAevE;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,GAAG,IAAI,GAAG,OAAO,GAAG,IAAI,CAGjF;AAED,wBAAgB,gBAAgB,CAC/B,GAAG,EAAE,QAAQ,CAAC,gBAAgB,EAC9B,YAAY,EAAE,MAAM,GAClB,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAQ1B;AAED,wBAAgB,wBAAwB,CACvC,GAAG,EAAE,QAAQ,CAAC,gBAAgB,EAC9B,YAAY,EAAE,MAAM,GAClB,QAAQ,CAAC,eAAe,GAAG,IAAI,CAMjC;AAED,wBAAgB,oBAAoB,CACnC,IAAI,EAAE,QAAQ,CAAC,kBAAkB,EACjC,WAAW,EAAE,MAAM,GACjB,OAAO,CAST;AAED,wBAAgB,uBAAuB,CACtC,IAAI,EAAE,QAAQ,CAAC,gBAAgB,GAC7B,QAAQ,CAAC,gBAAgB,GAAG,IAAI,CAKlC;AAED,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAEvE;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,QAAQ,CAAC,cAAc,GAAG,OAAO,CAM1E;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,QAAQ,CAAC,cAAc,GAAG,OAAO,CAO1E;AAED,wBAAgB,8BAA8B,CAC7C,OAAO,EAAE,QAAQ,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,GACnD;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,CAAA;CAAE,GAAG,IAAI,CA6BjE;AAED,wBAAgB,8BAA8B,CAC7C,OAAO,EAAE,QAAQ,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,GACnD;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,QAAQ,CAAC,IAAI,CAAA;CAAE,GAAG,IAAI,CAG9C;AAED,wBAAgB,kBAAkB,CACjC,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,GAAG,CAAC,MAAM,CAAC,EACvB,WAAW,GAAE,MAAU,EACvB,UAAU,GAAE,MAAU,GACpB,MAAM,EAAE,CAeV"}
1
+ {"version":3,"file":"ast-utils.d.ts","sourceRoot":"","sources":["../../src/utils/ast-utils.ts"],"names":[],"mappings":"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"}
@@ -125,6 +125,27 @@ export function extractCredentialNameFromArray(element) {
125
125
  const info = extractCredentialInfoFromArray(element);
126
126
  return info ? { name: info.name, node: info.node } : null;
127
127
  }
128
+ /** Matches the `this.helpers` MemberExpression (the object part of `this.helpers.foo`). */
129
+ export function isThisHelpersAccess(node) {
130
+ return (node.object?.type === AST_NODE_TYPES.MemberExpression &&
131
+ node.object.object?.type === AST_NODE_TYPES.ThisExpression &&
132
+ node.object.property?.type === AST_NODE_TYPES.Identifier &&
133
+ node.object.property.name === 'helpers');
134
+ }
135
+ /** Matches a call expression of the form `this.methodName(...)`. */
136
+ export function isThisMethodCall(node, method) {
137
+ return (node.callee.type === AST_NODE_TYPES.MemberExpression &&
138
+ node.callee.object.type === AST_NODE_TYPES.ThisExpression &&
139
+ node.callee.property.type === AST_NODE_TYPES.Identifier &&
140
+ node.callee.property.name === method);
141
+ }
142
+ /** Matches a call expression of the form `this.helpers.methodName(...)`. */
143
+ export function isThisHelpersMethodCall(node, method) {
144
+ return (node.callee.type === AST_NODE_TYPES.MemberExpression &&
145
+ node.callee.property.type === AST_NODE_TYPES.Identifier &&
146
+ node.callee.property.name === method &&
147
+ isThisHelpersAccess(node.callee));
148
+ }
128
149
  export function findSimilarStrings(target, candidates, maxDistance = 3, maxResults = 3) {
129
150
  const matches = [];
130
151
  for (const candidate of candidates) {
@@ -1 +1 @@
1
- {"version":3,"file":"ast-utils.js","sourceRoot":"","sources":["../../src/utils/ast-utils.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ast-utils.js","sourceRoot":"","sources":["../../src/utils/ast-utils.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,62 @@
1
+ # Enforce consistency between n8n.aiNodeSdkVersion and ai-node-sdk peer dependency in community node packages (`@n8n/community-nodes/ai-node-package-json`)
2
+
3
+ 💼 This rule is enabled in the following configs: ✅ `recommended`, ☑️ `recommendedWithoutN8nCloudSupport`.
4
+
5
+ <!-- end auto-generated rule header -->
6
+
7
+ ## Rule Details
8
+
9
+ Enforces consistency between `n8n.aiNodeSdkVersion` in `package.json` and the `ai-node-sdk` peer dependency. When a community node uses the AI Node SDK, both fields must be present and correct.
10
+
11
+ The rule checks four conditions:
12
+
13
+ - `aiNodeSdkVersion` is declared inside the `n8n` section (not at the root level)
14
+ - `aiNodeSdkVersion` is a positive integer
15
+ - If `n8n.aiNodeSdkVersion` is set, `ai-node-sdk` must appear in `peerDependencies`
16
+ - If `ai-node-sdk` is in `peerDependencies`, `n8n.aiNodeSdkVersion` must be set
17
+
18
+ ## Examples
19
+
20
+ ### ❌ Incorrect
21
+
22
+ ```json
23
+ {
24
+ "name": "n8n-nodes-my-ai-node",
25
+ "n8n": {
26
+ "aiNodeSdkVersion": "1"
27
+ }
28
+ }
29
+ ```
30
+
31
+ ```json
32
+ {
33
+ "name": "n8n-nodes-my-ai-node",
34
+ "aiNodeSdkVersion": 1,
35
+ "peerDependencies": {
36
+ "ai-node-sdk": "*"
37
+ }
38
+ }
39
+ ```
40
+
41
+ ```json
42
+ {
43
+ "name": "n8n-nodes-my-ai-node",
44
+ "peerDependencies": {
45
+ "ai-node-sdk": "*"
46
+ }
47
+ }
48
+ ```
49
+
50
+ ### ✅ Correct
51
+
52
+ ```json
53
+ {
54
+ "name": "n8n-nodes-my-ai-node",
55
+ "n8n": {
56
+ "aiNodeSdkVersion": 1
57
+ },
58
+ "peerDependencies": {
59
+ "ai-node-sdk": "*"
60
+ }
61
+ }
62
+ ```
@@ -2,16 +2,18 @@
2
2
 
3
3
  💼 This rule is enabled in the following configs: ✅ `recommended`, ☑️ `recommendedWithoutN8nCloudSupport`.
4
4
 
5
+ 🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
6
+
5
7
  <!-- end auto-generated rule header -->
6
8
 
7
9
  ## Options
8
10
 
9
11
  <!-- begin auto-generated rule options list -->
10
12
 
11
- | Name | Description | Type |
12
- | :----------- | :----------------------------------------------------- | :------ |
13
+ | Name | Description | Type |
14
+ | :----------- | :--------------------------------------------------------- | :------ |
13
15
  | `allowSlugs` | Whether to allow lowercase alphanumeric slugs with slashes | Boolean |
14
- | `allowUrls` | Whether to allow valid URLs | Boolean |
16
+ | `allowUrls` | Whether to allow valid URLs | Boolean |
15
17
 
16
18
  <!-- end auto-generated rule options list -->
17
19
 
@@ -0,0 +1,57 @@
1
+ # Disallow this.helpers.httpRequest() in functions that call this.getCredentials(). Use this.helpers.httpRequestWithAuthentication() instead (`@n8n/community-nodes/no-http-request-with-manual-auth`)
2
+
3
+ 💼 This rule is enabled in the following configs: ✅ `recommended`, ☑️ `recommendedWithoutN8nCloudSupport`.
4
+
5
+ <!-- end auto-generated rule header -->
6
+
7
+ ## Rule Details
8
+
9
+ When a function calls `this.getCredentials()` to retrieve credentials, it should use `this.helpers.httpRequestWithAuthentication()` for HTTP requests instead of `this.helpers.httpRequest()`.
10
+
11
+ Manually extracting credentials and setting auth headers (e.g. `Authorization`) bypasses n8n's authentication layer, which provides:
12
+
13
+ - Consistent credential handling across all nodes
14
+ - Future improvements like token refresh and audit logging
15
+ - Better security review surface
16
+
17
+ ## Examples
18
+
19
+ ### ❌ Incorrect
20
+
21
+ ```typescript
22
+ async function apiRequest(this: IExecuteFunctions, endpoint: string) {
23
+ const credentials = await this.getCredentials('myServiceApi');
24
+
25
+ const options: IHttpRequestOptions = {
26
+ method: 'GET',
27
+ url: `https://api.example.com/${endpoint}`,
28
+ headers: {
29
+ Authorization: `Bearer ${credentials.apiKey}`,
30
+ },
31
+ };
32
+
33
+ return this.helpers.httpRequest(options);
34
+ }
35
+ ```
36
+
37
+ ### ✅ Correct
38
+
39
+ ```typescript
40
+ async function apiRequest(this: IExecuteFunctions, endpoint: string) {
41
+ const options: IHttpRequestOptions = {
42
+ method: 'GET',
43
+ url: `https://api.example.com/${endpoint}`,
44
+ };
45
+
46
+ return this.helpers.httpRequestWithAuthentication.call(this, 'myServiceApi', options);
47
+ }
48
+ ```
49
+
50
+ ## When to Disable
51
+
52
+ If a function genuinely retrieves credentials for a non-HTTP purpose (e.g. reading a config value) *and* also makes an unauthenticated HTTP request, you can suppress this rule with an inline comment:
53
+
54
+ ```typescript
55
+ // eslint-disable-next-line @n8n/community-nodes/no-http-request-with-manual-auth
56
+ return this.helpers.httpRequest(options);
57
+ ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@n8n/eslint-plugin-community-nodes",
3
3
  "type": "module",
4
- "version": "0.8.0",
4
+ "version": "0.9.0",
5
5
  "main": "./dist/plugin.js",
6
6
  "types": "./dist/plugin.d.ts",
7
7
  "exports": {
package/src/plugin.ts CHANGED
@@ -29,6 +29,7 @@ const configs = {
29
29
  '@n8n/community-nodes/package-name-convention': 'error',
30
30
  '@n8n/community-nodes/credential-test-required': 'error',
31
31
  '@n8n/community-nodes/no-credential-reuse': 'error',
32
+ '@n8n/community-nodes/no-http-request-with-manual-auth': 'error',
32
33
  '@n8n/community-nodes/icon-validation': 'error',
33
34
  '@n8n/community-nodes/resource-operation-pattern': 'warn',
34
35
  '@n8n/community-nodes/credential-documentation-url': 'error',
@@ -47,6 +48,7 @@ const configs = {
47
48
  '@n8n/community-nodes/package-name-convention': 'error',
48
49
  '@n8n/community-nodes/credential-test-required': 'error',
49
50
  '@n8n/community-nodes/no-credential-reuse': 'error',
51
+ '@n8n/community-nodes/no-http-request-with-manual-auth': 'error',
50
52
  '@n8n/community-nodes/icon-validation': 'error',
51
53
  '@n8n/community-nodes/credential-documentation-url': 'error',
52
54
  '@n8n/community-nodes/resource-operation-pattern': 'warn',
@@ -7,6 +7,7 @@ import { CredentialTestRequiredRule } from './credential-test-required.js';
7
7
  import { IconValidationRule } from './icon-validation.js';
8
8
  import { NoCredentialReuseRule } from './no-credential-reuse.js';
9
9
  import { NoDeprecatedWorkflowFunctionsRule } from './no-deprecated-workflow-functions.js';
10
+ import { NoHttpRequestWithManualAuthRule } from './no-http-request-with-manual-auth.js';
10
11
  import { NoRestrictedGlobalsRule } from './no-restricted-globals.js';
11
12
  import { NoRestrictedImportsRule } from './no-restricted-imports.js';
12
13
  import { NodeUsableAsToolRule } from './node-usable-as-tool.js';
@@ -23,6 +24,7 @@ export const rules = {
23
24
  'package-name-convention': PackageNameConventionRule,
24
25
  'credential-test-required': CredentialTestRequiredRule,
25
26
  'no-credential-reuse': NoCredentialReuseRule,
27
+ 'no-http-request-with-manual-auth': NoHttpRequestWithManualAuthRule,
26
28
  'icon-validation': IconValidationRule,
27
29
  'resource-operation-pattern': ResourceOperationPatternRule,
28
30
  'credential-documentation-url': CredentialDocumentationUrlRule,
@@ -1,7 +1,6 @@
1
- import type { TSESTree } from '@typescript-eslint/utils';
2
1
  import { AST_NODE_TYPES } from '@typescript-eslint/utils';
3
2
 
4
- import { createRule } from '../utils/index.js';
3
+ import { createRule, isThisHelpersAccess } from '../utils/index.js';
5
4
 
6
5
  const DEPRECATED_FUNCTIONS = {
7
6
  request: 'httpRequest',
@@ -167,21 +166,6 @@ export const NoDeprecatedWorkflowFunctionsRule = createRule({
167
166
  },
168
167
  });
169
168
 
170
- /**
171
- * Check if the MemberExpression follows the this.helpers.* pattern
172
- */
173
- function isThisHelpersAccess(node: TSESTree.MemberExpression): boolean {
174
- if (node.object?.type === AST_NODE_TYPES.MemberExpression) {
175
- const outerObject = node.object;
176
- return (
177
- outerObject.object?.type === AST_NODE_TYPES.ThisExpression &&
178
- outerObject.property?.type === AST_NODE_TYPES.Identifier &&
179
- outerObject.property.name === 'helpers'
180
- );
181
- }
182
- return false;
183
- }
184
-
185
169
  function getDeprecationMessage(functionName: string): string {
186
170
  switch (functionName) {
187
171
  case 'request':
@@ -0,0 +1,104 @@
1
+ import { RuleTester } from '@typescript-eslint/rule-tester';
2
+
3
+ import { NoHttpRequestWithManualAuthRule } from './no-http-request-with-manual-auth.js';
4
+
5
+ const ruleTester = new RuleTester();
6
+
7
+ ruleTester.run('no-http-request-with-manual-auth', NoHttpRequestWithManualAuthRule, {
8
+ valid: [
9
+ {
10
+ name: 'httpRequest and getCredentials at module top level (no function scope)',
11
+ code: `
12
+ const credentials = await this.getCredentials('myApi');
13
+ const result = await this.helpers.httpRequest({ url: 'https://api.example.com' });`,
14
+ },
15
+ {
16
+ name: 'httpRequest without getCredentials (unauthenticated call)',
17
+ code: `
18
+ async function makeRequest() {
19
+ return this.helpers.httpRequest({ url: 'https://public.api.com' });
20
+ }`,
21
+ },
22
+ {
23
+ name: 'httpRequestWithAuthentication with getCredentials (correct pattern)',
24
+ code: `
25
+ async function makeRequest() {
26
+ const credentials = await this.getCredentials('myApi');
27
+ return this.helpers.httpRequestWithAuthentication.call(this, 'myApi', {
28
+ url: 'https://api.example.com',
29
+ });
30
+ }`,
31
+ },
32
+ {
33
+ name: 'getCredentials called but no httpRequest in same function',
34
+ code: `
35
+ async function loadConfig() {
36
+ const credentials = await this.getCredentials('myApi');
37
+ return credentials.apiKey;
38
+ }`,
39
+ },
40
+ {
41
+ name: 'getCredentials in outer function, httpRequest in nested function (separate scopes)',
42
+ code: `
43
+ async function execute() {
44
+ const credentials = await this.getCredentials('myApi');
45
+ const makeRequest = async () => {
46
+ return this.helpers.httpRequest({ url: 'https://api.example.com' });
47
+ };
48
+ return makeRequest();
49
+ }`,
50
+ },
51
+ {
52
+ name: 'other object with helpers.httpRequest is not flagged',
53
+ code: `
54
+ async function test() {
55
+ const credentials = await this.getCredentials('myApi');
56
+ const otherObject = { helpers: { httpRequest: async () => {} } };
57
+ return otherObject.helpers.httpRequest({ url: 'https://example.com' });
58
+ }`,
59
+ },
60
+ ],
61
+ invalid: [
62
+ {
63
+ name: 'function calls both getCredentials and httpRequest',
64
+ code: `
65
+ async function makeRequest() {
66
+ const credentials = await this.getCredentials('myApi');
67
+ const options = {
68
+ headers: { Authorization: \`Bearer \${credentials.apiKey}\` },
69
+ url: 'https://api.example.com',
70
+ };
71
+ return this.helpers.httpRequest(options);
72
+ }`,
73
+ errors: [{ messageId: 'useHttpRequestWithAuthentication' }],
74
+ },
75
+ {
76
+ name: 'two httpRequest calls in a function that also calls getCredentials — both flagged',
77
+ code: `
78
+ async function makeRequests() {
79
+ const credentials = await this.getCredentials('myApi');
80
+ const r1 = await this.helpers.httpRequest({ url: 'https://api.example.com/a' });
81
+ const r2 = await this.helpers.httpRequest({ url: 'https://api.example.com/b' });
82
+ return [r1, r2];
83
+ }`,
84
+ errors: [
85
+ { messageId: 'useHttpRequestWithAuthentication' },
86
+ { messageId: 'useHttpRequestWithAuthentication' },
87
+ ],
88
+ },
89
+ {
90
+ name: 'class method pattern',
91
+ code: `
92
+ class MyNode {
93
+ async execute() {
94
+ const credentials = await this.getCredentials('myApi');
95
+ return this.helpers.httpRequest({
96
+ headers: { Authorization: credentials.apiKey },
97
+ url: 'https://api.example.com',
98
+ });
99
+ }
100
+ }`,
101
+ errors: [{ messageId: 'useHttpRequestWithAuthentication' }],
102
+ },
103
+ ],
104
+ });
@@ -0,0 +1,78 @@
1
+ /**
2
+ * Flags `this.helpers.httpRequest()` in functions that also call `this.getCredentials()`.
3
+ * Those functions should use `this.helpers.httpRequestWithAuthentication()` instead.
4
+ *
5
+ * Uses a function-scope stack: if both `getCredentials` and `httpRequest` appear in
6
+ * the same function body, every `httpRequest` call is reported. Nested functions are
7
+ * checked independently.
8
+ *
9
+ * Alternatives considered:
10
+ * - Checking for credential variables in `httpRequest` arguments — misses the common
11
+ * pattern where options are built in a separate variable first.
12
+ * - Matching auth header names (`Authorization`, etc.) — brittle and requires deep
13
+ * AST traversal with no guarantee of coverage.
14
+ *
15
+ * Known false positive: a function that fetches credentials for a non-HTTP purpose
16
+ * and also makes an unauthenticated request. Use eslint-disable to suppress.
17
+ */
18
+
19
+ import type { TSESTree } from '@typescript-eslint/utils';
20
+
21
+ import { createRule, isThisHelpersMethodCall, isThisMethodCall } from '../utils/index.js';
22
+
23
+ type FunctionScope = {
24
+ getCredentialsCall: TSESTree.CallExpression | null;
25
+ httpRequestCalls: TSESTree.CallExpression[];
26
+ };
27
+
28
+ export const NoHttpRequestWithManualAuthRule = createRule({
29
+ name: 'no-http-request-with-manual-auth',
30
+ meta: {
31
+ type: 'suggestion',
32
+ docs: {
33
+ description:
34
+ 'Disallow this.helpers.httpRequest() in functions that call this.getCredentials(). Use this.helpers.httpRequestWithAuthentication() instead.',
35
+ },
36
+ messages: {
37
+ useHttpRequestWithAuthentication:
38
+ "Avoid calling 'this.helpers.httpRequest()' in a function that retrieves credentials via 'this.getCredentials()'. Use 'this.helpers.httpRequestWithAuthentication()' instead — it handles authentication internally and benefits from future n8n improvements like token refresh and audit logging.",
39
+ },
40
+ schema: [],
41
+ hasSuggestions: false,
42
+ },
43
+ defaultOptions: [],
44
+ create(context) {
45
+ const scopeStack: FunctionScope[] = [];
46
+
47
+ const pushScope = () => scopeStack.push({ getCredentialsCall: null, httpRequestCalls: [] });
48
+
49
+ const popScope = () => {
50
+ const scope = scopeStack.pop();
51
+ if (scope?.getCredentialsCall && scope.httpRequestCalls.length > 0) {
52
+ for (const call of scope.httpRequestCalls) {
53
+ context.report({ node: call, messageId: 'useHttpRequestWithAuthentication' });
54
+ }
55
+ }
56
+ };
57
+
58
+ return {
59
+ FunctionDeclaration: pushScope,
60
+ FunctionExpression: pushScope,
61
+ ArrowFunctionExpression: pushScope,
62
+ 'FunctionDeclaration:exit': popScope,
63
+ 'FunctionExpression:exit': popScope,
64
+ 'ArrowFunctionExpression:exit': popScope,
65
+
66
+ CallExpression(node: TSESTree.CallExpression) {
67
+ const scope = scopeStack[scopeStack.length - 1];
68
+ if (!scope) return;
69
+ if (isThisMethodCall(node, 'getCredentials')) {
70
+ scope.getCredentialsCall = node;
71
+ }
72
+ if (isThisHelpersMethodCall(node, 'httpRequest')) {
73
+ scope.httpRequestCalls.push(node);
74
+ }
75
+ },
76
+ };
77
+ },
78
+ });
@@ -197,6 +197,36 @@ export function extractCredentialNameFromArray(
197
197
  return info ? { name: info.name, node: info.node } : null;
198
198
  }
199
199
 
200
+ /** Matches the `this.helpers` MemberExpression (the object part of `this.helpers.foo`). */
201
+ export function isThisHelpersAccess(node: TSESTree.MemberExpression): boolean {
202
+ return (
203
+ node.object?.type === AST_NODE_TYPES.MemberExpression &&
204
+ node.object.object?.type === AST_NODE_TYPES.ThisExpression &&
205
+ node.object.property?.type === AST_NODE_TYPES.Identifier &&
206
+ node.object.property.name === 'helpers'
207
+ );
208
+ }
209
+
210
+ /** Matches a call expression of the form `this.methodName(...)`. */
211
+ export function isThisMethodCall(node: TSESTree.CallExpression, method: string): boolean {
212
+ return (
213
+ node.callee.type === AST_NODE_TYPES.MemberExpression &&
214
+ node.callee.object.type === AST_NODE_TYPES.ThisExpression &&
215
+ node.callee.property.type === AST_NODE_TYPES.Identifier &&
216
+ node.callee.property.name === method
217
+ );
218
+ }
219
+
220
+ /** Matches a call expression of the form `this.helpers.methodName(...)`. */
221
+ export function isThisHelpersMethodCall(node: TSESTree.CallExpression, method: string): boolean {
222
+ return (
223
+ node.callee.type === AST_NODE_TYPES.MemberExpression &&
224
+ node.callee.property.type === AST_NODE_TYPES.Identifier &&
225
+ node.callee.property.name === method &&
226
+ isThisHelpersAccess(node.callee)
227
+ );
228
+ }
229
+
200
230
  export function findSimilarStrings(
201
231
  target: string,
202
232
  candidates: Set<string>,
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.8/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@eslint+core@0.14.0/node_modules/@eslint/core/dist/cjs/types.d.cts","../../../node_modules/.pnpm/eslint@9.29.0_jiti@2.6.1/node_modules/eslint/lib/types/use-at-your-own-risk.d.ts","../../../node_modules/.pnpm/eslint@9.29.0_jiti@2.6.1/node_modules/eslint/lib/types/index.d.ts","./package.json","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/typescript.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@8.35.0/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@8.35.0/node_modules/@typescript-eslint/types/dist/lib.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@8.35.0/node_modules/@typescript-eslint/types/dist/parser-options.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@8.35.0/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@8.35.0/node_modules/@typescript-eslint/types/dist/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts","../../../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/tsserverlibrary.d.ts","../../../node_modules/.pnpm/@typescript-eslint+project-service@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/project-service/dist/createProjectService.d.ts","../../../node_modules/.pnpm/@typescript-eslint+project-service@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/project-service/dist/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts","../../../node_modules/.pnpm/@typescript-eslint+visitor-keys@8.35.0/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts","../../../node_modules/.pnpm/@typescript-eslint+visitor-keys@8.35.0/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts","../../../node_modules/.pnpm/@typescript-eslint+visitor-keys@8.35.0/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/version.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@8.35.0_typescript@5.9.2/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@8.35.0/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@8.35.0_eslint@9.29.0_jiti@2.6.1__typescript@5.9.2/node_modules/@typescript-eslint/utils/dist/index.d.ts","../../../node_modules/.pnpm/fastest-levenshtein@1.0.16/node_modules/fastest-levenshtein/mod.d.ts","./src/utils/ast-utils.ts","./src/utils/file-utils.ts","./src/utils/rule-creator.ts","./src/utils/index.ts","./src/rules/ai-node-package-json.ts","./src/rules/credential-documentation-url.ts","./src/rules/credential-password-field.ts","./src/rules/credential-test-required.ts","./src/rules/icon-validation.ts","./src/rules/no-credential-reuse.ts","./src/rules/no-deprecated-workflow-functions.ts","./src/rules/no-http-request-with-manual-auth.ts","./src/rules/no-restricted-globals.ts","./src/rules/no-restricted-imports.ts","./src/rules/node-usable-as-tool.ts","./src/rules/package-name-convention.ts","./src/rules/resource-operation-pattern.ts","./src/rules/index.ts","./src/plugin.ts","../../../node_modules/.pnpm/@vitest+pretty-format@3.1.3/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.1.3/node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.1.3/node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/.pnpm/tinyrainbow@2.0.0/node_modules/tinyrainbow/dist/index-8b61d5bc.d.ts","../../../node_modules/.pnpm/tinyrainbow@2.0.0/node_modules/tinyrainbow/dist/node.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.1.3/node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+runner@3.1.3/node_modules/@vitest/runner/dist/tasks.d-hsdzc98-.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.1.3/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.1.3/node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/.pnpm/@vitest+runner@3.1.3/node_modules/@vitest/runner/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.1.3/node_modules/@vitest/utils/dist/error.d.ts","../../../node_modules/.pnpm/@vitest+runner@3.1.3/node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.17.57/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/common/html.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/common/token.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/.pnpm/parse5@7.1.2/node_modules/parse5/dist/index.d.ts","../../../node_modules/.pnpm/@types+tough-cookie@4.0.2/node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/.pnpm/@types+jsdom@20.0.1/node_modules/@types/jsdom/base.d.ts","../../../node_modules/.pnpm/@types+jsdom@20.0.1/node_modules/@types/jsdom/index.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/optional-types.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/environment.d.Dmw5ulng.d.ts","../../../node_modules/.pnpm/rollup@4.52.4/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/rollup@4.52.4/node_modules/rollup/dist/parseAst.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/types/customEvent.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/dist/node/moduleRunnerTransport.d-DJ_mE5sf.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/.pnpm/esbuild@0.25.10/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/.pnpm/lightningcss@1.30.2/node_modules/lightningcss/node/ast.d.ts","../../../node_modules/.pnpm/lightningcss@1.30.2/node_modules/lightningcss/node/targets.d.ts","../../../node_modules/.pnpm/lightningcss@1.30.2/node_modules/lightningcss/node/index.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/types/internal/lightningcssOptions.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/deprecations.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/util/promise_or.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/importer.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/logger/source_location.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/logger/source_span.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/logger/index.d.ts","../../../node_modules/.pnpm/immutable@5.1.3/node_modules/immutable/dist/immutable.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/boolean.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/calculation.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/color.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/function.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/list.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/map.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/mixin.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/number.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/string.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/argument_list.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/value/index.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/options.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/compile.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/exception.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/legacy/exception.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/legacy/plugin_this.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/legacy/function.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/legacy/importer.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/legacy/options.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/legacy/render.d.ts","../../../node_modules/.pnpm/sass@1.89.2/node_modules/sass/types/index.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/types/importGlob.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/types/metadata.d.ts","../../../node_modules/.pnpm/vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/@vitest+mocker@3.1.3_vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sas_d5191af294c339d87dbe002e1ba836eb/node_modules/@vitest/mocker/dist/registry.d-D765pazg.d.ts","../../../node_modules/.pnpm/@vitest+mocker@3.1.3_vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sas_d5191af294c339d87dbe002e1ba836eb/node_modules/@vitest/mocker/dist/types.d-D_aRZRdy.d.ts","../../../node_modules/.pnpm/@vitest+mocker@3.1.3_vite@6.3.5_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sas_d5191af294c339d87dbe002e1ba836eb/node_modules/@vitest/mocker/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.1.3/node_modules/@vitest/utils/dist/source-map.d.ts","../../../node_modules/.pnpm/vite-node@3.1.3_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite-node/dist/trace-mapping.d-DLVdEqOp.d.ts","../../../node_modules/.pnpm/vite-node@3.1.3_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite-node/dist/index.d-CWZbpOcv.d.ts","../../../node_modules/.pnpm/vite-node@3.1.3_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite-node/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+pretty-format@3.2.4/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.1.3/node_modules/@vitest/snapshot/dist/environment.d-DHdQ1Csl.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.1.3/node_modules/@vitest/snapshot/dist/rawSnapshot.d-lFsMJFUd.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.1.3/node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.1.3/node_modules/@vitest/snapshot/dist/environment.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/config.d.UqE-KR0o.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/worker.d.CHGSOG0s.d.ts","../../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../../node_modules/.pnpm/@types+chai@5.2.2/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/@vitest+runner@3.1.3/node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/benchmark.d.BwvBVTda.d.ts","../../../node_modules/.pnpm/vite-node@3.1.3_@types+node@20.19.21_jiti@2.6.1_lightningcss@1.30.2_sass@1.89.2_terser@5.16.1_tsx@4.19.3/node_modules/vite-node/dist/client.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/coverage.d.S9RMNXIe.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.1.3/node_modules/@vitest/snapshot/dist/manager.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/reporters.d.DG9VKi4m.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/worker.d.C-KN07Ls.d.ts","../../../node_modules/.pnpm/@vitest+expect@3.1.3/node_modules/@vitest/expect/dist/chai.d.cts","../../../node_modules/.pnpm/@vitest+spy@3.1.3/node_modules/@vitest/spy/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+expect@3.1.3/node_modules/@vitest/expect/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+expect@3.1.3/node_modules/@vitest/expect/index.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/global.d.CXRAxnWc.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/vite.d.D3ndlJcw.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/mocker.d.BE_2ls6u.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/chunks/suite.d.FvehnV49.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/dist/index.d.ts","../../../node_modules/.pnpm/vitest@3.1.3_@types+debug@4.1.12_@types+node@20.19.21_jiti@2.6.1_jsdom@23.0.1_bufferuti_c9312c8ab0039d3967d9bd06f4524652/node_modules/vitest/globals.d.ts"],"fileIdsList":[[61,222,265],[222,265,411],[222,265],[222,265,277,310,314,327,328,330],[222,265,329],[222,262,265],[222,264,265],[265],[222,265,270,299],[222,265,266,271,277,278,285,296,307],[222,265,266,267,277,285],[217,218,219,222,265],[222,265,268,308],[222,265,269,270,278,286],[222,265,270,296,304],[222,265,271,273,277,285],[222,264,265,272],[222,265,273,274],[222,265,275,277],[222,264,265,277],[222,265,277,278,279,296,307],[222,265,277,278,279,292,296,299],[222,260,265],[222,265,273,277,280,285,296,307],[222,265,277,278,280,281,285,296,304,307],[222,265,280,282,296,304,307],[220,221,222,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313],[222,265,277,283],[222,265,284,307,312],[222,265,273,277,285,296],[222,265,286],[222,265,287],[222,264,265,288],[222,262,263,264,265,266,267,268,269,270,271,272,273,274,275,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313],[222,265,290],[222,265,291],[222,265,277,292,293],[222,265,292,294,308,310],[222,265,277,296,297,299],[222,265,298,299],[222,265,296,297],[222,265,299],[222,265,300],[222,262,265,296],[222,265,277,302,303],[222,265,302,303],[222,265,270,285,296,304],[222,265,305],[222,265,285,306],[222,265,280,291,307],[222,265,270,308],[222,265,296,309],[222,265,284,310],[222,265,311],[222,265,277,279,288,296,299,307,310,312],[222,265,296,313],[71,74,222,265],[75,222,265],[71,119,128,139,142,222,265],[71,140,147,222,265],[71,99,100,222,265],[101,102,103,104,105,106,107,108,109,110,111,222,265],[71,99,222,265],[99,101,102,103,104,105,106,107,108,109,110,111,112,222,265],[113,114,119,140,142,144,145,148,222,265],[71,143,222,265],[71,119,142,222,265],[71,114,140,142,145,222,265],[71,143,144,222,265],[71,90,222,265],[146,222,265],[71,120,125,138,140,222,265],[71,114,119,120,125,138,140,222,265],[71,119,120,125,138,140,222,265],[121,122,123,124,126,127,128,129,130,131,132,133,134,135,136,137,139,141,222,265],[71,113,114,119,120,121,122,123,124,138,140,222,265],[120,121,122,123,124,126,127,129,130,131,132,133,134,135,136,137,138,139,141,222,265],[71,115,222,265],[116,117,142,222,265],[115,222,265],[71,113,114,142,222,265],[116,117,118,222,265],[66,222,265],[67,68,69,70,222,265],[66,68,222,265],[67,70,222,265],[66,81,222,265],[66,81,82,222,265],[72,73,79,82,83,84,85,86,87,91,92,93,94,222,265],[66,79,222,265],[71,222,265],[66,76,77,79,80,82,222,265],[66,71,79,222,265],[66,79,86,222,265],[79,90,222,265],[66,71,77,222,265],[71,77,78,222,265],[96,163,222,265],[164,165,166,167,168,222,265],[96,222,265],[169,170,171,172,222,265],[163,222,265],[154,222,265],[174,175,176,177,178,179,222,265],[96,152,163,173,180,183,222,265],[98,151,154,156,222,265],[159,160,222,265],[151,153,154,156,157,222,265],[96,98,150,222,265],[155,222,265],[96,97,150,152,153,155,157,222,265],[96,98,154,155,157,222,265],[149,222,265],[96,150,151,222,265],[154,155,222,265],[157,158,222,265],[155,157,158,222,265],[97,98,150,151,153,154,155,156,157,161,162,222,265],[71,95,222,265],[181,182,222,265],[88,89,222,265],[209,210,213,222,265,422],[222,265,423],[222,265,397,398],[210,211,213,214,215,222,265],[210,222,265],[210,211,213,222,265],[210,211,222,265],[222,265,405],[205,222,265,405,406],[205,222,265,405],[205,212,222,265],[206,222,265],[205,206,207,209,222,265],[205,222,265],[60,61,62,63,222,265,333],[64,222,265],[222,265,429,430],[222,265,429,430,431,432],[222,265,429,431],[222,265,429],[222,265,361,362],[222,265,316],[222,265,315,316],[222,265,315],[222,265,315,316,317,319,320,323,324,325,326],[222,265,316,320],[222,265,315,316,317,319,320,321,322],[222,265,315,320],[222,265,320,324],[222,265,316,317,318],[222,265,317],[222,265,315,316,320],[222,265,356],[222,265,354,356],[222,265,345,353,354,355,357,359],[222,265,343],[222,265,346,351,356,359],[222,265,342,359],[222,265,346,347,350,351,352,359],[222,265,346,347,348,350,351,359],[222,265,343,344,345,346,347,351,352,353,355,356,357,359],[222,265,359],[222,265,341,343,344,345,346,347,348,350,351,352,353,354,355,356,357,358],[222,265,341,359],[222,265,346,348,349,351,352,359],[222,265,350,359],[222,265,351,352,356,359],[222,265,344,354],[222,265,333,395,396],[60,222,265,333],[222,265,341,383],[222,265,370],[222,265,366,383],[222,265,365,366,367,370,382,383,384,385,386,387,388,389,390,391],[222,265,387],[222,265,365,367,370,388,389],[222,265,386,390],[222,265,365,368,369],[222,265,368],[222,265,365,366,367,370,382],[222,265,371,376,382],[222,265,382],[222,265,371,382],[222,265,371,372,373,374,375,376,377,378,379,380,381],[208,222,265],[222,232,236,265,307],[222,232,265,296,307],[222,227,265],[222,229,232,265,304,307],[222,265,285,304],[222,265,314],[222,227,265,314],[222,229,232,265,285,307],[222,224,225,228,231,265,277,296,307],[222,232,239,265],[222,224,230,265],[222,232,253,254,265],[222,228,232,265,299,307,314],[222,253,265,314],[222,226,227,265,314],[222,232,265],[222,226,227,228,229,230,231,232,233,234,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,254,255,256,257,258,259,265],[222,232,247,265],[222,232,239,240,265],[222,230,232,240,241,265],[222,231,265],[222,224,227,232,265],[222,232,236,240,241,265],[222,236,265],[222,230,232,235,265,307],[222,224,229,232,239,265],[222,265,296],[222,227,232,253,265,312,314],[222,265,401,402],[222,265,401],[222,265,277,278,280,281,282,285,296,304,307,313,314,333,334,335,336,338,339,340,360,364,393,394,395,396],[222,265,335,336,337,338],[222,265,335],[222,265,336],[222,265,392],[222,265,363],[222,265,333,396],[216,222,265,413,414,425],[213,216,222,265,404,407,408,425],[222,265,416],[222,265,331],[216,222,265,332,404,407,415,424,425],[222,265,399],[210,213,216,222,265,268,278,296,332,396,399,400,403,404,407,409,410,415,417,418,421,425,426],[216,222,265,413,414,415,425],[222,265,396,419,426],[222,265,312,410],[216,222,265,332,403,407,409,425],[210,213,216,222,265,268,278,296,312,331,332,396,399,400,403,404,407,408,409,410,413,414,415,416,417,418,419,420,421,422,424,425,426,427,428,433],[222,265,434],[222,265,329,330],[64,65,203,222,265],[184,189,222,265],[189,222,265],[71,163,189,222,265],[163,189,222,265,287],[163,184,189,222,265,287],[163,190,191,192,193,194,195,196,197,198,199,200,201,202,222,265],[71,184,189,222,265],[71,189,222,265],[163,184,189,222,265],[184,185,222,265],[95,186,222,265,278,287],[186,187,188,222,265],[184,222,265]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"191e6f8d16cdd7f6f8cf085b6bda2d7ecb539b89a30454f3db3da6fe71aef515","impliedFormat":1},{"version":"8a190298d0ff502ad1c7294ba6b0abb3a290fc905b3a00603016a97c363a4c7a","impliedFormat":1},{"version":"67f804b4fb29a6828571cea553ae8b754abecac92efbd69e026d55f228739e53","impliedFormat":1},"d83fcae2fd7d1a305da8f12b6723a3ffb50c381bba5d2eeb6a3201f103a57ea1",{"version":"bddc8143c3b0fe2a6462f9811d3b28ea422ffee80d75d3d97d65d6b69f583fad","impliedFormat":1},{"version":"c16023d4e38cf695d07598c72bc818210e6b3aed42149b13318ec0fccd0f3aa8","impliedFormat":1},{"version":"ad7a72aa6eac3252cdb17f5d8be7526da5fb79a9e996616638874b80f21816e5","impliedFormat":1},{"version":"12bffdbf179bfe787334d1aa31393bac5b79a84d2285ad94bcf36c1cce9eed57","impliedFormat":1},{"version":"0eb776339319d71a7498c7290ab969b63d4d114986e37a6bf565e108eb044b6a","impliedFormat":1},{"version":"92ebc3261b20037c4e078cd3d26bccedb719b3eec653925e103b6ced4a936c0d","impliedFormat":1},{"version":"9acc441d14a127dea0228cd2645203c3285b296f452f723f850dc2941d2b9c7e","impliedFormat":1},{"version":"a4075b7a8211620f01d7a0cffb2d31fde9a2a6a108dec4cbaa3856b6a8e8864a","impliedFormat":1},{"version":"73b15a0b7cf5c6df9076b9408c5ce682f11813453bf54c54cb284f075b5224cf","impliedFormat":1},{"version":"9254b745aad208ce7f8e82e72698dc40573c7cb828ea9d5cdf42a42528a81665","impliedFormat":1},{"version":"7eb92baa673b920122e72e714caf84b78323758a3a214fb6383d717948143668","impliedFormat":1},{"version":"f37616d5f3b755ef9d2765218b06b933faf05cf094d18107cf4c50d81b44b6b0","impliedFormat":1},{"version":"c61e09e2a01aacd789fbcdbea4d386701422b8539ddc0285203d2a6bd0c4c1b5","impliedFormat":1},{"version":"3b78a632fd8d0490bf0eb5f8df1455e6f33028fb7c373d3d75275d06bfb6a7d9","impliedFormat":1},{"version":"d923dc7686f8a0bdabdbb0e8e61e6a95c403a3d6bc6f303af5381c9cd973ee43","impliedFormat":1},{"version":"da633553c8248c6ee21fd93a667d71ba4dcefc64f33632e3dc20ded5cbdd317c","impliedFormat":1},{"version":"050e8efc9defdf21d4c12a2ec280758c13ce66303d3e4e591d003089d99cbe4b","impliedFormat":1},{"version":"3d05a0d945764eb254c814b13e21d8fa695dcfca75eb512d5db6e46889d609af","impliedFormat":1},{"version":"5d1201e776c3167527653c835035e4ad29cd79e0d6b139aa250ca74899e0741e","impliedFormat":1},{"version":"3419b0cd541f0b41ef816004fb069a971484b81eb0f3e1e221305711178362e8","impliedFormat":1},{"version":"ee1003cdce99e6cd28c9a9aa3f570cad400b89218b81f8f9d3b05025241d5db4","impliedFormat":1},{"version":"1fdf5c750e4164249aaa3095803330eae7cc9fb2523535811800460b98f8e7ed","impliedFormat":1},{"version":"9f4ef6fd452db4c4d5f96293732ee29c03f54755744342809dea96f63fd7227b","impliedFormat":1},{"version":"57cdb6dba0f7f107cd3ec872e52916ea2901c9a80611e7e669c2ccf3a2219f17","impliedFormat":1},{"version":"20d246417a79b06bca6fe01426258a3408068442899b990472e521eafd6ac5b4","impliedFormat":1},{"version":"c3f937028caf49d383b109a93128164de319c1a5ec3796c02da60acb580e1e9a","impliedFormat":1},{"version":"cf3849bd6f54b42c19db6327b026bdefea6c711f8a4e5b060b7e3e9d796f0f38","impliedFormat":1},{"version":"8a60ed93d81f472e270e213c5da23bdfc2a87b6616031f4d397aced25f727217","impliedFormat":1},{"version":"5f2b95921cc6b959e8ca7abc17943382f7e5fe0ea6ef36c5b8dc383def96b1f8","impliedFormat":1},{"version":"8856d9b7dd5de0586293f72134b1e372964a48252d96879d0d18f6dfeb92554b","impliedFormat":1},{"version":"6fd238cb782b3b6abad463d28f4afd772a51c1cd0ac1039153254c4b8d471866","impliedFormat":1},{"version":"58004a9240ee74db43ce3ab2343cc29473e969adcd592c6fce46939d94512d93","impliedFormat":1},{"version":"492409753b45983851b6d66272f384bcb2dfc045d48eb07e8c8998a571495e63","impliedFormat":1},{"version":"2db60104bde79eac5c47dcfa9738246190173cb76966d88e42959ca8d1ea7e27","impliedFormat":1},{"version":"95843bf16b621fa9aca3981ba7af0849e5a19b05de57a25c044c63ce4893093e","impliedFormat":1},{"version":"594c88e45a919f575775b6b5999b4662d583bfdde60709e92b3eb13e053008be","impliedFormat":1},{"version":"9e0b7af2247ab847874dc5ca0a92c4f28f55332b8241591bd06fafd3d184f605","impliedFormat":1},{"version":"39bff71bf16f3a020c438f5ddc1a24ab26c28dad91d324372eabbce88abaec74","impliedFormat":1},{"version":"2169a7026189e5c581d9da4a8aa433520edb3a1c0eed6b33ec445b5280ec0aa6","impliedFormat":1},{"version":"0651a8dd2c6446154e0994391f7bdebbde389dc7ec75ac4a0f727fff5255143c","impliedFormat":1},{"version":"2088a7c3bf5a885904de841f5fa6103d8689e439a3cb3273f3bac69c1b3a3b1b","impliedFormat":1},{"version":"6dbc5313fe49ecbab3215f1cb1733d7348b392f1ca12c331c5720f4ea0036f47","impliedFormat":1},{"version":"3ed4ef1f210705e2c320e5b05787d7b6e74b7920492a76bb8712857bb22fc915","impliedFormat":1},{"version":"6fca2337de679c9c118e9005f3ee7f41725690a923bbff4ee20401e879471acd","impliedFormat":1},{"version":"58f59363f3c50919bdc19c44e68b35bb471548486ca98f6e757de252d5d1e856","impliedFormat":1},{"version":"109381191d7b0beb0de64a68ce3735fff9c91944180bfb6abfe42080b116689b","impliedFormat":1},{"version":"b04f68c5b937801cebf5264072a6f4a1f76050a75fd0830d65ae0bf0275ed1fc","impliedFormat":1},{"version":"ad42060f3e0f92a294748f19d9490a8a6a980fb40dda0fd4627991d1361862cc","impliedFormat":1},{"version":"d07fa744d53680f1b038a8b8f1f966f06de0ff8e03161bfc3ee49fd48c7bfd53","impliedFormat":1},{"version":"ce6b390be6cdd541f54e393b87ce72b0d1171732f9e93c59716e622a5b2e3be5","impliedFormat":1},{"version":"5aa50acb079a18441d0984acda7d3dbbc66a326fccacb20a75d836e797bc8b80","impliedFormat":1},{"version":"6735eae673357ba7f9fc7e55af3b00e1415b32d3b639c38fb936151f336a5978","impliedFormat":1},{"version":"386ff073cfe770b93867e65c26e969d672aeb42fc5506279c71a0185fd653539","impliedFormat":1},{"version":"e967582e89f2a455eafd8bf1232dd81ee207709a48c07322e996ecb0672148bb","impliedFormat":1},{"version":"25528369e718c89acd957ae0e72b1b5105b1111329d31442d8d639ee020b3fce","impliedFormat":1},{"version":"8764a0ff3269684a2c85a54acd7e90d33876927140e28880b8a4c95e8ca63bd6","impliedFormat":1},{"version":"1d381320cf1cf9990e8bdc6bf43ffe220728fae7adfe45c754a44f8535d22486","impliedFormat":1},{"version":"ea09e3f830cb4da7a144e49803ebd79ad7871e21763fd0a0072ab8fb4aee43b5","impliedFormat":1},{"version":"02cbdc4c83ba725dfb0b9a230d9514eca2769190ea7ef6e6f29816e7ad21ea98","impliedFormat":1},{"version":"8490bd3f838bacccd8496893db204d1e9a559923f5bf54154444bf95596b55df","impliedFormat":1},{"version":"f1e533f10851941ccd2ee623988b26b07aecb84a290eb56627182bc4ca96d1a8","impliedFormat":1},{"version":"5d89916c41cc7051b9c83148d704c4e5aa20343a07efd14b953d16c693eda3ee","impliedFormat":1},{"version":"06124be387e6fc43c6a5727ecb8d6f5380c52878341a2cd065dc968e203029e0","impliedFormat":1},{"version":"44c575e350e5b2c7771137b2797eb3d755b67dd286622158a3855487a6182253","impliedFormat":1},{"version":"a088d5ba9a4fa3a96bcda498268269d163348229c43187950a9b2b7503d46813","impliedFormat":1},{"version":"cf5408ade74fb2ec127a10bb3b1079a386131818bc7ac67a002c4a6c3ec81b62","impliedFormat":1},{"version":"6cf129a29ce866e432f575c5e4c90f44f2fb72d070b9c3901acdb3cbb56fa46d","impliedFormat":1},{"version":"8af2fead6dd3a9cd0471d27018dd49f65f5cc264c4604a11aba4e46b2252eb89","impliedFormat":1},{"version":"677c78ed184c32e4ff0be1e4baf0fbf1a0cccd4f41532527735a2c43edd58a87","impliedFormat":1},{"version":"70415c6e264d10d01f7438d40e1a85b815ace6598e4a73f491b33db7820e1469","impliedFormat":1},{"version":"38fa05ec45e9bddcb55c47b437330c229655e3b0325b07dd72206a10bf329a05","impliedFormat":1},{"version":"8b11a987390721ea4930dcc7aca1dec606a2cd1b03fb27d05e4c995875ee54bb","impliedFormat":1},{"version":"3b05973f4a6dc88d28c125b744dc99d2a527bdb3c567eda1b439d10ce70246f5","impliedFormat":1},{"version":"2ee3f52f480021bd7d23fe72e66ba0ec8d0a464d2295ab612d409d45a3f9d7ae","impliedFormat":1},{"version":"95098f44f9d1961d2b1d1bde703e40819923d6a933ec853834235ba76470848d","impliedFormat":1},{"version":"c56439d9bf05c500219f2db6e49cd4b418f2f9fb14043dee96b2d115276012b8","impliedFormat":1},{"version":"55fa234a04eacdf253e0b46d72f6e3bd8a044339c43547a29cf3b9f29ccd050d","impliedFormat":1},{"version":"9811146d06f6b7615165f0dcd3d2aaea72adb260c8e747449b7a87c4c44f7ff1","impliedFormat":1},{"version":"b4e618b2d4422fa5fae63e999dccb69736b03ec7b0c6fd2d4dc833263d40921c","impliedFormat":1},{"version":"21a06a5d3e4f859723386772d4c481ed5b40f883ecd4ed9a8ec8bcb54a10e542","impliedFormat":1},{"version":"e7f90e75963afebd4c3c5f052703818eb0a7a689d6b2c3a499d9bcc545088095","impliedFormat":1},{"version":"5ef6b0404100d30e3b47c73021f2da740d1fa8088fda5adc741706cb3e73cf13","impliedFormat":1},{"version":"e5aab4fb9c264ecb0f8ca7cd0131b52e189dd5306bdd071802df591d9cf570ff","impliedFormat":1},{"version":"d1342658b16b92d24b961db5c1779dc03fe30194fd6fea0d15dc8e946f82d83f","impliedFormat":1},{"version":"cbd4ff12f799a44b629643edc686aeec830fbb867c69cb6609da57d205057717","impliedFormat":1},{"version":"4f4d1284bc93168a1a0b2888f528aa689828917cdc547802ab29c0d1f553be40","impliedFormat":1},{"version":"fd15b208613892273f0675f55b31c878e22a28d62d306e589867009592f67166","impliedFormat":1},{"version":"ef5bc836c5c0886cd8c9cf1cff6192f4f1e82ef1f8088c9f136586b9860051e0","impliedFormat":1},{"version":"6127fdf5f737133f2549d9377c313abc4ac2d0db451ad6a67df39d7ce017ebbe","impliedFormat":1},{"version":"ad94e4a61e7600b03442d6fe6cb91900771cb1485634af41645098d07f08edb3","impliedFormat":1},{"version":"d14cd6c9001dfa6f96660952945c344370109247764ab42b47d110fcbff678e7","impliedFormat":1},{"version":"d50100f49826047fec1247a4cd19c52b2fe90bfac1c239cf43e24bdde6915b89","impliedFormat":1},{"version":"4db00e3ce9cd4d68249907352b1f6c41c687b58f088bc2c8bff1bc41800bb732","impliedFormat":1},{"version":"a57492eab6e20bdb4f801a69a5636aad02d3d4ebb681032f2fec5ad8aa4d9462","impliedFormat":1},{"version":"71de65e470fb5a0920472a8b13d37fff8960822e34d709aee14599802c15770c","impliedFormat":1},{"version":"c0cbe98c4e104042383444c718d2ce2d0dd602e6b7d52dc3185bbdf289da1128","impliedFormat":1},{"version":"c3c8297d66976e60076da541ec418590bf26d1056980b9adfea2c14baaf2089e","impliedFormat":1},{"version":"17ec351733c9b9a5de7d0aee5f710ca792a19efc365bed93ec045b885c309fde","impliedFormat":1},{"version":"8bb061c812d97dedb8549ca46cd3b8bae3f2494ef681d9712c64c1b933801ebf","impliedFormat":1},{"version":"969ab03feed7516ece5c6c0468e6c39391ed75317dd641d5600736b131559ad6","impliedFormat":1},{"version":"54e989ecd24eec06935b7770caee22386e9b7cdc47aca29bb2be83080460db36","impliedFormat":1},{"version":"ef4529c51657c83eabdda0b7818c25b6c7d827bfd7a49f38553f7fd3deba94e3","impliedFormat":1},{"version":"89c710eef54f9726d13eb123a800285d9b5cf2eb64d98f4c3a7b0e5a162ad24f","impliedFormat":1},{"version":"a97990e77a23aea39060610aef4b4bb92154d5330ecb0b557324ba4c14a1db41","impliedFormat":1},{"version":"d2b89296b175b0a1a11ce09cc682e6f86b24d34abd1bdf8c932a82c4e99b551a","impliedFormat":1},{"version":"3c85c2b16d0a1fa45095793b90467bcef3bfeaa85b3fdc00ff1eb3c32ca97cb2","impliedFormat":1},{"version":"8cdd09ab2d9fe19d5cb3ca1dcb6c6437d6164a9de46405afe1954e533a77120e","impliedFormat":1},{"version":"b90283ab6c36fc580b06cb293629a9b37eaba24e17ff9ae2f0d874a3f3a962a1","impliedFormat":1},{"version":"c1425155d2396f10be607f43392284b6bfc98b542bb49c611eaa2038b6a72112","impliedFormat":1},{"version":"30e0e58b2b36491323f748cc938b93eba059d354abecee659ba0e9312a842a5d","impliedFormat":1},{"version":"c2d8eccfe4adada4730bbd4f2568627d5d4aeb27cfbc8d39aa974ce33e855977","impliedFormat":1},{"version":"21d0cc7ad656b0348bfd745fb598399c6f9531ffef6ff1b8996fe42c5f185f0a","impliedFormat":1},{"version":"d29d2e64870b453a96329bf0f88eccf270812fb1989e853588fd5f3b0bc94919","impliedFormat":1},{"version":"ea422c1715a51450b3bab549d86f4fd52612c37bac489c347e367e47cc26bda1","impliedFormat":1},{"version":"6eddc1432777582b4797eb53c43b9917b1ba8908a737f7823a7049620f98588b","impliedFormat":1},{"version":"79e7eb72b4d9ca2d268460d35fa7bfe01db96e93659752bd5fc5cbf5c5be8294","impliedFormat":1},{"version":"10ad4c890e509380deb83c8bec650899df9bd70ee20238f2221d6bdc36043a0e","impliedFormat":1},{"version":"1a3b837513da5afd3bb0b228dab3a089fce405344243e372672f641ededf9b48","impliedFormat":1},{"version":"901f6b020440eac80a83a7ca248ca244e2a296be6b1ed8645a884a4509e11fc7","impliedFormat":1},{"version":"b7eece07762a9a944f097ee05d6f6b642b1e2dd87e6fc1b09600d881e5475377","impliedFormat":1},{"version":"d7e605a0b7b42587e4f040612d26d53389d25673c93f4420df145d169e710556","signature":"1f289b76bbe856681399afc62fa350e88e8eaf97a2dc7c154ef71717fb869b3d"},{"version":"e1d057bf187042212353481eb1b4acc0dfc7a1c5fce4bf76c611a8b78c18fed8","signature":"2587434f5747292ea1950ed0e4c73f8ba15505791992ea1c622145aa69860e77"},{"version":"7fccad36c2de312bec92b5cdfe545854a558f608c458ac777f8a7e160b5df7c8","signature":"99b157dab282d0a7f0803f606acb9ab3788b873564b5054e87237ef08028fd24"},"5a47f2f4a1477aff08ee79a00735ce045195e720a7a11a4b24617a18706a06d9",{"version":"c5b11f0b829f3457a722c21a0e15a39785a7eaf4e009e6e80622621f273c3c6b","signature":"2f442c9f5258a085021817f8becd6591ddbb68167fc5632a7b13abade5f2374a"},{"version":"370f1674410e83a919537a0f38e9e054dc9a5d2fef3db8b053565781437781ec","signature":"36f856cae1466aab95d5c78afe36a3dcc93f1f334f1c5fd95327464535c9cf05"},{"version":"8ac078d1a36c0819bcb3c7ea6f136c1f4a4260975c1ce19fc31c193c11bcdc43","signature":"eb9cf69f4f48ad34c92be2eb92e08a9a226567420da0138bb13dbd68bebef78b"},{"version":"420c48b09e9de32af1187389ade1d71da47939a8c2104582ce104cb6d34a1440","signature":"a56f3414b071eca7c4ca68d99f8df8adf55a75371c223d9125a716dccbfbb295"},{"version":"88ecb4eaf17439fa0bbed905cfb4831a8c17a785613a347b1ddded15196d4b04","signature":"29297ca5a00aa5e7951de47ea8f4bbdafce47fdec6ef43386b9194a8aae2e323"},{"version":"3ea2906d0080d5014d929ebf03f4c23f1ce426f69c35710b4ec84da39872f8e4","signature":"3d7e773db990564ba969961b6df4b56d0e9e8cf7db4c454eb20e9ef9886d07dd"},{"version":"73b50d1bf9b75402a7d84dcffc163b855459f1a819bb71c2cd0b0211018978a3","signature":"6c04bd3598c97312ca405d7be7554ef7e47e27605ba631497171839eecba320f"},{"version":"f2f3ec294a2006041b6e2c9b2131cd713efefc69c12852968f5dca1ab42c4ae2","signature":"a2406e159c2c662fac382b6b73239e68b85880a6f841b358cb1a55ebd7164dea"},{"version":"6ed079bb7fc8a76bcc8eec616dc4dc450ac0becac0155f7947068fa01602fbf5","signature":"05f12e678ba893b5c38bf40aedf06da7ab20486f61d0932dde1cf68861355f00"},{"version":"1fa7e4a3fbca3d175e007b3f44020e84f29625bab00b33b342249d8bd99c0699","signature":"6d4dd149ee808d660d71afaf2503be85f342609e4eca1bff4ff89c872749f2d0"},{"version":"becc63fd5c492de402b851af7d92f78171fac58bbacdcdb48685a7e0d30a8b74","signature":"619520e3fea9c576a969f41ef5d00f814cc98d49a1136eb041b00eca84738e87"},{"version":"c297a1da60cab91ed167d9d1cef15b1e4f9bab141da74ce186729f84caddfb4f","signature":"6adbacd206e814db569080eef2b9c1af9fd9b2005ecd479675b60b5882e235c0"},{"version":"ef4d49afc2e470a2ecca825c46f386ea51ee32e11d26e5f3dfbfa0e14e99c614","signature":"00ffc5d503eb05ab2a4f9dca203fedeb0a65d87e83c15f9b41048fe5c1064caf"},{"version":"07dc34363a342422cbae35837fd19c682dd6fa7ef4b9e1bc7f53007d1f0732d7","signature":"a8ed6549613a6cc1e757989b8259ff00e54ae36600b958533a56e8f9e997d343"},{"version":"7a762569c74acff944c9fe31a98260045ca496fc24eadb09912d6616b39a26d0","signature":"fdb02cfcc2851b23b4db76c302c71573350caf140e9a0ab23ccefe8b3ae5c265"},{"version":"5c54a34e3d91727f7ae840bfe4d5d1c9a2f93c54cb7b6063d06ee4a6c3322656","impliedFormat":99},{"version":"07c0547e91d0c35c3d1bff1d2b7ffac3334b315e9eb5744a8440940e819ab13a","impliedFormat":99},{"version":"a6f223e9ef29edb1dc1ffa1a8507b9247589077081be99883ec5ac84d74e61d6","impliedFormat":99},{"version":"f9b028d3c3891dd817e24d53102132b8f696269309605e6ed4f0db2c113bbd82","impliedFormat":99},{"version":"fb7c8d90e52e2884509166f96f3d591020c7b7977ab473b746954b0c8d100960","impliedFormat":99},{"version":"373e16d44e57937558478c586396210e4eeac6c895787863381a6588185528e4","impliedFormat":99},{"version":"7c45fbd736e81fd9899cf4d75b242326ccda37eafdd9555e5b64a0ed59e8f6e9","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"daf54402364627db51d8ccdcf98620ca7bd88dbd0036053bff51b87714a299b4","impliedFormat":99},{"version":"9c2fe4e4ddf257e9b40d4d9fca28f86a8653a98492239a5ba27790019570cb71","impliedFormat":99},{"version":"f8433f2a07ccab79429b2fd66d12731a13f18061d4e7f8dc8559796086b22bc4","impliedFormat":99},{"version":"e64b03ee2d4d53929ea13a1e2b52aaba0685c86185b0f6f3346fc548b75a2245","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b8582f8bf95b9b901bf6cf47b9ee3560c7f340be0bd39cb432f21e9e136c36a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b042aa5d277ad6963e2837179fd2f8fbb01968ac67115b0833c0244e93d1d50","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"9e025aa38cad40827cc30aca974fe33fe2c4652fe8c88f48dadbbbd6300c8b07","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"5b75ca915164e4a7ad94a60729fe45b8a62e7750ab232d0122f8ccdd768f5314","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"3e5b3163e34f3dc24cba59db4bb90bcc33555cccac06b707501439bdcf3d4df4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b19db3600a17af69d4f33d08cc7076a7d19fb65bb36e442cac58929ec7c9482","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"09d479208911ac3ac6a7c2fe86217fc1abe6c4f04e2d52e4890e500699eeab32","affectsGlobalScope":true,"impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"c40b3d3cfbb1227c8935f681c2480a32b560e387dd771d329cdbd1641f2d6da5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"5b566927cad2ed2139655d55d690ffa87df378b956e7fe1c96024c4d9f75c4cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4a3720550d1787c8d6284040853c0781ff1e2cd8d842f2cb44547525ee34c36","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"f008d63ce0077f533e39df44b82d660707b15b0f8e31fbc153a62bb00b99bfe5","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"6bdb3144f8bf020f513651a6ea1cb8a378a612c0791042e0436fd9adf7372a17","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"3411c785dbe8fd42f7d644d1e05a7e72b624774a08a9356479754999419c3c5a","impliedFormat":99},{"version":"8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","impliedFormat":99},{"version":"66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","impliedFormat":99},{"version":"33f3795a4617f98b1bb8dac36312119d02f31897ae75436a1e109ce042b48ee8","impliedFormat":99},{"version":"2850c9c5dc28d34ad5f354117d0419f325fc8932d2a62eadc4dc52c018cd569b","impliedFormat":99},{"version":"c753948f7e0febe7aa1a5b71a714001a127a68861309b2c4127775aa9b6d4f24","impliedFormat":99},{"version":"3e7a40e023e1d4a9eef1a6f08a3ded8edacb67ae5fce072014205d730f717ba5","impliedFormat":99},{"version":"a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","impliedFormat":99},{"version":"382100b010774614310d994bbf16cc9cd291c14f0d417126c7a7cfad1dc1d3f8","impliedFormat":99},{"version":"91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","impliedFormat":99},{"version":"4fdf56315340bd1770eb52e1601c3a98e45b1d207202831357e99ce29c35b55c","impliedFormat":99},{"version":"927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","impliedFormat":99},{"version":"be6fd74528b32986fbf0cd2cfa9192a5ed7f369060b32a7adcb0c8d055708e61","impliedFormat":99},{"version":"cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","impliedFormat":1},{"version":"fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175","impliedFormat":1},{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8124828a11be7db984fcdab052fd4ff756b18edcfa8d71118b55388176210923","impliedFormat":99},{"version":"d06f9f2ba52c62a1d6cc63f4a015bc7ccd155f3bac2c07fbb979aec6013d966f","impliedFormat":99},{"version":"67f0933742a1e547fc31cc52c4183b2be0726ffa9689586b761cef241ca6b251","affectsGlobalScope":true,"impliedFormat":1},{"version":"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","impliedFormat":1},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"11443a1dcfaaa404c68d53368b5b818712b95dd19f188cab1669c39bee8b84b3","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"035d0934d304483f07148427a5bd5b98ac265dae914a6b49749fe23fbd893ec7","impliedFormat":99},{"version":"e2ed5b81cbed3a511b21a18ab2539e79ac1f4bc1d1d28f8d35d8104caa3b429f","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"333caa2bfff7f06017f114de738050dd99a765c7eb16571c6d25a38c0d5365dc","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"459920181700cec8cbdf2a5faca127f3f17fd8dd9d9e577ed3f5f3af5d12a2e4","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"70790a7f0040993ca66ab8a07a059a0f8256e7bb57d968ae945f696cbff4ac7a","impliedFormat":1},{"version":"d1b9a81e99a0050ca7f2d98d7eedc6cda768f0eb9fa90b602e7107433e64c04c","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"b215c4f0096f108020f666ffcc1f072c81e9f2f95464e894a5d5f34c5ea2a8b1","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"dfe54dab1fa4961a6bcfba68c4ca955f8b5bbeb5f2ab3c915aa7adaa2eabc03a","impliedFormat":1},{"version":"1251d53755b03cde02466064260bb88fd83c30006a46395b7d9167340bc59b73","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"4cdf27e29feae6c7826cdd5c91751cc35559125e8304f9e7aed8faef97dcf572","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"f7eebe1b25040d805aefe8971310b805cd49b8602ec206d25b38dc48c542f165","impliedFormat":1},{"version":"a18642ddf216f162052a16cba0944892c4c4c977d3306a87cb673d46abbb0cbf","impliedFormat":1},{"version":"509f8efdfc5f9f6b52284170e8d7413552f02d79518d1db691ee15acc0088676","impliedFormat":1},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":1},{"version":"c12fd3cca1287b6cbab2aaa0b7fae922bcb25a74546b4e0156db622cffa046b8","impliedFormat":1},{"version":"71b110829b8f5e7653352a132544ece2b9a10e93ba1c77453187673bd46f13ee","impliedFormat":1},{"version":"7b0537621a997a853ead2b46a4d85e654beeb96b9d034ea09bf3387348521d40","impliedFormat":1},{"version":"1223780c318ef42fd33ac772996335ed92d57cf7c0fc73178acab5e154971aab","impliedFormat":1},{"version":"0d04cbe88c8a25c2debd2eef03ec5674563e23ca9323fa82ede3577822653bd2","impliedFormat":1},{"version":"aaa70439f135c3fa0a34313de49e94cae3db954c8b8d6af0d56a46c998c2923f","impliedFormat":1},{"version":"2cee3ea4c39a53326148e6e78109affd48fa69eae386871c1f440315a6120f40","impliedFormat":1},{"version":"daf07c1ca8ccfb21ad958833546a4f414c418fe096dcebdbb90b02e12aa5c3a2","impliedFormat":1},{"version":"89ac5224feeb2de76fc52fc2a91c5f6448a98dbe4e8d726ecb1730fa64cd2d30","impliedFormat":1},{"version":"7feb39ba69b3fc6d55faca4f91f06d77d15ffedd3931b0ef7740e8b6fd488b15","impliedFormat":1},{"version":"acf00cfabe8c4de18bea655754ea39c4d04140257556bbf283255b695d00e36f","impliedFormat":1},{"version":"39b70d5f131fcfdeba404ee63aba25f26d8376a73bacd8275fb5a9f06219ac77","impliedFormat":1},{"version":"cdae26c737cf4534eeec210e42eab2d5f0c3855240d8dde3be4aee9194e4e781","impliedFormat":1},{"version":"5aa0c50083d0d9a423a46afaef78c7f42420759cfa038ad40e8b9e6cafc38831","impliedFormat":1},{"version":"10d6a49a99a593678ba4ea6073d53d005adfc383df24a9e93f86bf47de6ed857","impliedFormat":1},{"version":"1b7ea32849a7982047c2e5d372300a4c92338683864c9ab0f5bbd1acadae83a3","impliedFormat":1},{"version":"224083e6fcec1d300229da3d1dafc678c642863996cbfed7290df20954435a55","impliedFormat":1},{"version":"4248ac3167b1a1ce199fda9307abc314b3132527aeb94ec30dbcfe4c6a417b1b","impliedFormat":1},{"version":"c1606128c2ac5c6a3cc2cc24c4582a437141a8ed6542d7f5cbb7623835939831","impliedFormat":1},{"version":"ca055d26105248f745ea6259b4c498ebeed18c9b772e7f2b3a16f50226ff9078","impliedFormat":1},{"version":"ea6b2badb951d6dfa24bb7d7eb733327e5f9a15fc994d6dc1c54b2c7a83b6a0b","impliedFormat":1},{"version":"03fdf8dba650d830388b9985750d770dd435f95634717f41cea814863a9ac98b","impliedFormat":1},{"version":"6fd08e3ef1568cd0dc735c9015f6765e25143a4a0331d004a29c51b50eec402a","impliedFormat":1},{"version":"2e988cd4d24edac4936449630581c79686c8adac10357eb0cdb410c24f47c7f0","impliedFormat":1},{"version":"b813f62a37886ed986b0f6f8c5bf323b3fcae32c1952b71d75741e74ea9353cf","impliedFormat":1},{"version":"44a1a722038365972b1b52841e1132785bf5d75839dbc6cc1339f2d36f8507a1","impliedFormat":1},{"version":"83fe1053701101ac6d25364696fea50d2ceb2f81d1456bc11e682a20aaeac52e","impliedFormat":1},{"version":"4f228cb2089a5a135a1a8cefe612d5aebcef8258f7dbe3b7c4dad4e26a81ec08","impliedFormat":1},{"version":"7870becb94cbc11d2d01b77c4422589adcba4d8e59f726246d40cd0d129784d8","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","impliedFormat":1},{"version":"f70b8328a15ca1d10b1436b691e134a49bc30dcf3183a69bfaa7ba77e1b78ecd","impliedFormat":1},{"version":"ff3660e2664e6096196280deb4e176633b1bb1e58a7dcc9b021ec0e913a6f96f","impliedFormat":99},{"version":"b34b5f6b506abb206b1ea73c6a332b9ee9c8c98be0f6d17cdbda9430ecc1efab","impliedFormat":99},{"version":"75d4c746c3d16af0df61e7b0afe9606475a23335d9f34fcc525d388c21e9058b","impliedFormat":99},{"version":"fa959bf357232201c32566f45d97e70538c75a093c940af594865d12f31d4912","impliedFormat":99},{"version":"7d0eecfbb8fd85a40b3f1218d7b53f193d4194543a4053d0b007fcc869bd2594","impliedFormat":99},{"version":"e6233e1c976265e85aa8ad76c3881febe6264cb06ae3136f0257e1eab4a6cc5a","impliedFormat":99},{"version":"cc99b45397f724c65ab5b16dd2b9add8e2f49513621ccba4e3a564b939bfe706","impliedFormat":99},{"version":"4734f2650122fed32bf168723cbc2e7b64f0c281fec9fc7c37a23d68ee4d4033","impliedFormat":99},{"version":"5c54a34e3d91727f7ae840bfe4d5d1c9a2f93c54cb7b6063d06ee4a6c3322656","impliedFormat":99},{"version":"324ac98294dab54fbd580c7d0e707d94506d7b2c3d5efe981a8495f02cf9ad96","impliedFormat":99},{"version":"9ec72eb493ff209b470467e24264116b6a8616484bca438091433a545dfba17e","impliedFormat":99},{"version":"dd1e40affaae1edc4beefe3d9832e86a683dcfc66fdf8c93c851a47298b04276","impliedFormat":99},{"version":"49747416f08b3ba50500a215e7a55d75268b84e31e896a40313c8053e8dec908","impliedFormat":99},{"version":"bb14e4b17394d59bd9f08459ce36d460dca08bd885c1347cf4fa7166c5af80a3","impliedFormat":99},{"version":"b07c8a8ea750da9dea2d813f9d4f65d14c0090bb00c6dde9372ec1d38b74992e","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},{"version":"77217723774e80cf137592086cb40cd7607e106155a4c4071773574057863635","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"971a2c327ff166c770c5fb35699575ba2d13bba1f6d2757309c9be4b30036c8e","impliedFormat":99},{"version":"3dc60aac181aa635ad323906cdb76d723376299f0f7a4264f2f3e2ae9b8ecc1b","impliedFormat":99},{"version":"7bd51996fb7717941cbe094b05adc0d80b9503b350a77b789bbb0fc786f28053","impliedFormat":99},{"version":"b62006bbc815fe8190c7aee262aad6bff993e3f9ade70d7057dfceab6de79d2f","impliedFormat":99},{"version":"afcc5681df592abc74ab54dc6f5e2d693be55fc8bbfd811333d892b8dc006eca","impliedFormat":99},{"version":"cb0ec5ea8c0bb861262b62e0fbb899a85d86796de4caaadb53d747706fda82e3","impliedFormat":99},{"version":"3c1291fa957007538097ce38f7f0d65bf4c6ba6c2fad80ab806b71264fd296f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8d3c5051687a7454c8f54746ba62b86b91c1e77bce27fea8f86ffc2d0a1325","impliedFormat":99},{"version":"171c0308da0fc6251ea4184989d62c33dff3f277695ab1d556c421c0af59ddd3","affectsGlobalScope":true,"impliedFormat":99},{"version":"fe2d63fcfdde197391b6b70daf7be8c02a60afa90754a5f4a04bdc367f62793d","impliedFormat":99},{"version":"8f86cb232f12a7261a16b4afcd8222327255daac1620b00a734119baf2862fa5","affectsGlobalScope":true,"impliedFormat":99},{"version":"517cc3174b810f240eca5ba9ed938984e92ac3602c8dd9bc9580c0067f4b3620","impliedFormat":99},{"version":"5a88655bf852c8cc007d6bc874ab61d1d63fba97063020458177173c454e9b4a","impliedFormat":99},{"version":"7e4dfae2da12ec71ffd9f55f4641a6e05610ce0d6784838659490e259e4eb13c","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"88cc88cb2ae8d61e11ef2b550e282a8773d3f3a8fac8b15482fe3e1856d524db","impliedFormat":99},{"version":"ed09d42b14a604190e8c9fc972d18ea47d5c03c6c4a0003c9620dca915a1973d","affectsGlobalScope":true,"impliedFormat":99}],"root":[[186,204]],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":99,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[62,1],[412,2],[411,3],[60,3],[329,4],[330,5],[61,3],[262,6],[263,6],[264,7],[222,8],[265,9],[266,10],[267,11],[217,3],[220,12],[218,3],[219,3],[268,13],[269,14],[270,15],[271,16],[272,17],[273,18],[274,18],[276,3],[275,19],[277,20],[278,21],[279,22],[261,23],[221,3],[280,24],[281,25],[282,26],[314,27],[283,28],[284,29],[285,30],[286,31],[287,32],[288,33],[289,34],[290,35],[291,36],[292,37],[293,37],[294,38],[295,3],[296,39],[298,40],[297,41],[299,42],[300,43],[301,44],[302,45],[303,46],[304,47],[305,48],[306,49],[307,50],[308,51],[309,52],[310,53],[311,54],[312,55],[313,56],[328,3],[75,57],[76,58],[140,59],[148,60],[101,61],[102,61],[112,62],[100,63],[99,3],[103,61],[104,61],[105,61],[106,61],[107,61],[108,61],[109,61],[110,61],[111,61],[113,64],[149,65],[144,66],[114,67],[146,68],[145,69],[143,70],[147,71],[141,72],[126,72],[139,72],[127,72],[128,72],[129,72],[130,72],[131,72],[121,73],[132,72],[122,74],[133,72],[123,72],[138,75],[125,76],[120,3],[134,72],[135,72],[124,72],[136,72],[137,72],[142,77],[116,78],[118,79],[117,80],[115,81],[119,82],[67,83],[71,84],[68,3],[69,85],[70,86],[72,3],[73,83],[82,87],[83,88],[84,83],[95,89],[85,90],[80,91],[81,92],[86,93],[87,94],[91,95],[78,96],[79,97],[77,87],[92,3],[93,3],[94,3],[165,3],[167,98],[164,98],[169,99],[166,100],[168,98],[170,100],[173,101],[171,100],[172,100],[177,102],[179,103],[174,3],[175,3],[176,98],[180,104],[178,3],[184,105],[152,3],[97,100],[157,106],[161,107],[155,108],[151,109],[98,91],[156,110],[154,111],[162,112],[150,113],[153,114],[158,115],[159,116],[160,117],[163,118],[96,119],[182,3],[183,120],[181,3],[88,91],[90,121],[89,3],[421,3],[423,122],[424,123],[399,124],[397,3],[398,3],[205,3],[404,3],[216,125],[211,126],[214,127],[413,128],[405,3],[408,129],[407,130],[418,130],[406,131],[422,3],[213,132],[215,132],[207,133],[210,134],[400,133],[212,135],[206,3],[223,3],[340,3],[64,136],[63,137],[431,138],[433,139],[432,140],[430,141],[429,3],[185,3],[371,3],[361,3],[363,142],[362,3],[317,143],[326,144],[315,3],[316,145],[327,146],[322,147],[323,148],[321,149],[325,150],[319,151],[318,152],[324,153],[320,144],[357,154],[355,155],[356,156],[344,157],[345,155],[352,158],[343,159],[348,160],[358,3],[349,161],[354,162],[360,163],[359,164],[342,165],[350,166],[351,167],[346,168],[353,154],[347,169],[334,170],[333,171],[384,172],[365,3],[385,173],[367,174],[392,175],[386,3],[388,176],[389,176],[390,177],[387,3],[391,178],[370,179],[368,3],[369,180],[383,181],[366,3],[381,182],[372,183],[373,184],[374,184],[375,183],[382,185],[376,184],[377,182],[378,183],[379,184],[380,183],[341,3],[414,3],[208,3],[209,186],[58,3],[59,3],[10,3],[11,3],[13,3],[12,3],[2,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[3,3],[22,3],[23,3],[4,3],[24,3],[28,3],[25,3],[26,3],[27,3],[29,3],[30,3],[31,3],[5,3],[32,3],[33,3],[34,3],[35,3],[6,3],[39,3],[36,3],[37,3],[38,3],[40,3],[7,3],[41,3],[46,3],[47,3],[42,3],[43,3],[44,3],[45,3],[8,3],[51,3],[48,3],[49,3],[50,3],[52,3],[9,3],[53,3],[54,3],[55,3],[57,3],[56,3],[1,3],[74,83],[66,3],[239,187],[249,188],[238,187],[259,189],[230,190],[229,191],[258,192],[252,193],[257,194],[232,195],[246,196],[231,197],[255,198],[227,199],[226,192],[256,200],[228,201],[233,202],[234,3],[237,202],[224,3],[260,203],[250,204],[241,205],[242,206],[244,207],[240,208],[243,209],[253,192],[235,210],[236,211],[245,212],[225,213],[248,204],[247,202],[251,3],[254,214],[416,215],[402,216],[403,215],[401,3],[396,217],[339,218],[338,219],[336,219],[335,3],[337,220],[394,3],[393,221],[364,222],[395,223],[415,224],[409,225],[417,226],[332,227],[425,228],[427,229],[419,230],[428,231],[426,232],[420,233],[410,234],[434,235],[435,236],[331,237],[65,3],[204,238],[190,239],[191,240],[192,241],[193,242],[194,243],[203,244],[195,241],[196,239],[197,239],[198,245],[199,240],[200,246],[201,247],[202,239],[186,248],[187,249],[189,250],[188,251]],"latestChangedDtsFile":"./dist/plugin.d.ts","version":"5.9.2"}