@markuplint/rules 2.0.0-rc.3 → 2.0.0-rc.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/attr-check.js +2 -2
- package/lib/case-sensitive-attr-name/index.d.ts +6 -2
- package/lib/case-sensitive-attr-name/index.js +28 -4
- package/lib/class-naming/index.js +1 -1
- package/lib/deprecated-attr/index.js +1 -1
- package/lib/deprecated-element/index.js +1 -1
- package/lib/helpers.d.ts +8 -8
- package/lib/helpers.js +26 -27
- package/lib/id-duplication/index.js +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/ineffective-attr/index.js +1 -1
- package/lib/invalid-attr/index.js +10 -3
- package/lib/landmark-roles/index.js +1 -1
- package/lib/no-boolean-attr-value/index.js +2 -2
- package/lib/no-refer-to-non-existent-id/index.js +2 -2
- package/lib/no-use-event-handler-attr/index.js +1 -1
- package/lib/permitted-contents/index.js +13 -13
- package/lib/permitted-contents/types.d.ts +8 -0
- package/lib/permitted-contents/types.js +2 -0
- package/lib/required-attr/index.js +2 -2
- package/lib/required-h1/index.js +2 -2
- package/lib/wai-aria/index.js +21 -21
- package/package.json +6 -6
- package/tsconfig.tsbuildinfo +1 -1
package/lib/attr-check.js
CHANGED
|
@@ -28,7 +28,7 @@ function attrCheck(t, name, value, isCustomRule, spec) {
|
|
|
28
28
|
(0, debug_1.log)('The "%s" attribute DOES\'NT EXIST in the spec', name);
|
|
29
29
|
return {
|
|
30
30
|
invalidType: 'non-existent',
|
|
31
|
-
message: t('{0} is {1:c}', t('the "{0}" {1}', name, 'attribute'), 'disallowed'),
|
|
31
|
+
message: t('{0} is {1:c}', t('the "{0*}" {1}', name, 'attribute'), 'disallowed'),
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
34
|
const nameCaseSensitive = /[A-Z]/.test(spec.name);
|
|
@@ -36,7 +36,7 @@ function attrCheck(t, name, value, isCustomRule, spec) {
|
|
|
36
36
|
(0, debug_1.log)('The "%s" attribute name is unmatched in case-sensitive', name);
|
|
37
37
|
return {
|
|
38
38
|
invalidType: 'non-existent',
|
|
39
|
-
message: t('{0} is {1:c}', t('the "{0}" {1}', name, 'attribute'), 'disallowed') +
|
|
39
|
+
message: t('{0} is {1:c}', t('the "{0*}" {1}', name, 'attribute'), 'disallowed') +
|
|
40
40
|
t('. ') +
|
|
41
41
|
t('Did you mean "{0*}"?', spec.name),
|
|
42
42
|
};
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
export declare type Value = '
|
|
2
|
-
|
|
1
|
+
export declare type Value = 'lower' | 'upper';
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated
|
|
4
|
+
*/
|
|
5
|
+
export declare type Value_v1 = 'no-upper' | 'no-lower';
|
|
6
|
+
declare const _default: import("@markuplint/ml-core").RuleSeed<Value | Value_v1, null>;
|
|
3
7
|
export default _default;
|
|
@@ -3,15 +3,27 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const ml_core_1 = require("@markuplint/ml-core");
|
|
4
4
|
exports.default = (0, ml_core_1.createRule)({
|
|
5
5
|
defaultServerity: 'warning',
|
|
6
|
-
defaultValue: '
|
|
6
|
+
defaultValue: 'lower',
|
|
7
7
|
async verify({ document, report, t }) {
|
|
8
8
|
await document.walkOn('Element', async (node) => {
|
|
9
9
|
if (node.isForeignElement || node.isCustomElement) {
|
|
10
10
|
return;
|
|
11
11
|
}
|
|
12
|
+
let value;
|
|
13
|
+
// Convert deprecated value
|
|
14
|
+
switch (node.rule.value) {
|
|
15
|
+
case 'no-lower':
|
|
16
|
+
value = 'upper';
|
|
17
|
+
break;
|
|
18
|
+
case 'no-upper':
|
|
19
|
+
value = 'lower';
|
|
20
|
+
break;
|
|
21
|
+
default:
|
|
22
|
+
value = node.rule.value;
|
|
23
|
+
}
|
|
12
24
|
const ms = node.rule.severity === 'error' ? 'must' : 'should';
|
|
13
|
-
const deny =
|
|
14
|
-
const cases =
|
|
25
|
+
const deny = value === 'lower' ? /[A-Z]/ : /[a-z]/;
|
|
26
|
+
const cases = value === 'lower' ? 'lower' : 'upper';
|
|
15
27
|
const message = t(`{0} ${ms} be {1}`, t('{0} of {1}', 'attribute names', 'HTML elements'), `${cases}case`);
|
|
16
28
|
const attrSpecs = (0, ml_core_1.getAttrSpecs)(node.nameWithNS, document.specs);
|
|
17
29
|
for (const attr of node.attributes) {
|
|
@@ -50,6 +62,18 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
50
62
|
return;
|
|
51
63
|
}
|
|
52
64
|
const attrSpecs = (0, ml_core_1.getAttrSpecs)(node.nameWithNS, document.specs);
|
|
65
|
+
let value;
|
|
66
|
+
// Convert deprecated value
|
|
67
|
+
switch (node.rule.value) {
|
|
68
|
+
case 'no-lower':
|
|
69
|
+
value = 'upper';
|
|
70
|
+
break;
|
|
71
|
+
case 'no-upper':
|
|
72
|
+
value = 'lower';
|
|
73
|
+
break;
|
|
74
|
+
default:
|
|
75
|
+
value = node.rule.value;
|
|
76
|
+
}
|
|
53
77
|
if (node.attributes) {
|
|
54
78
|
for (const attr of node.attributes) {
|
|
55
79
|
if (attr.attrType === 'ps-attr') {
|
|
@@ -69,7 +93,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
69
93
|
continue;
|
|
70
94
|
}
|
|
71
95
|
}
|
|
72
|
-
if (
|
|
96
|
+
if (value === 'lower') {
|
|
73
97
|
attr.name.fix(attr.name.raw.toLowerCase());
|
|
74
98
|
}
|
|
75
99
|
else {
|
|
@@ -25,7 +25,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
25
25
|
if (!classPatterns.some(pattern => (0, helpers_1.match)(className, pattern))) {
|
|
26
26
|
report({
|
|
27
27
|
scope: node,
|
|
28
|
-
message: t('{0} is unmatched with the below patterns: {1}', t('the "{0}" {1}', className, 'class name'), `"${classPatterns.join('", "')}"`),
|
|
28
|
+
message: t('{0} is unmatched with the below patterns: {1}', t('the "{0*}" {1}', className, 'class name'), `"${classPatterns.join('", "')}"`),
|
|
29
29
|
line: classAttr.line,
|
|
30
30
|
col: classAttr.col,
|
|
31
31
|
raw: classAttr.raw,
|
|
@@ -15,7 +15,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
15
15
|
return;
|
|
16
16
|
}
|
|
17
17
|
if (attrSpec.deprecated || attrSpec.obsolete) {
|
|
18
|
-
const message = t('{0} is {1:c}', t('the "{0}" {1}', name.potential, 'attribute'), attrSpec.obsolete ? 'obsolete' : 'deprecated');
|
|
18
|
+
const message = t('{0} is {1:c}', t('the "{0*}" {1}', name.potential, 'attribute'), attrSpec.obsolete ? 'obsolete' : 'deprecated');
|
|
19
19
|
report({
|
|
20
20
|
scope: element,
|
|
21
21
|
message,
|
|
@@ -13,7 +13,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
13
13
|
}
|
|
14
14
|
const spec = (0, ml_spec_1.getSpecByTagName)(el.nameWithNS, html_spec_1.default);
|
|
15
15
|
if (spec && (spec.obsolete || spec.deprecated || spec.nonStandard)) {
|
|
16
|
-
const message = t('{0} is {1:c}', t('the "{0}" {1}', el.nodeName, 'element'), spec.deprecated ? 'deprecated' : spec.obsolete ? 'obsolete' : 'non-standard');
|
|
16
|
+
const message = t('{0} is {1:c}', t('the "{0*}" {1}', el.nodeName, 'element'), spec.deprecated ? 'deprecated' : spec.obsolete ? 'obsolete' : 'non-standard');
|
|
17
17
|
report({
|
|
18
18
|
scope: el,
|
|
19
19
|
message,
|
package/lib/helpers.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Log } from './debug';
|
|
2
2
|
import type { Translator } from '@markuplint/i18n';
|
|
3
3
|
import type { Element, RuleConfigValue } from '@markuplint/ml-core';
|
|
4
|
-
import type { ARIRRoleAttribute, Attribute, PermittedRoles } from '@markuplint/ml-spec';
|
|
4
|
+
import type { ARIRRoleAttribute, Attribute, MLMLSpec, PermittedRoles } from '@markuplint/ml-spec';
|
|
5
5
|
export declare function attrMatches<T extends RuleConfigValue, R>(node: Element<T, R>, condition: Attribute['condition']): boolean;
|
|
6
6
|
export declare function match(needle: string, pattern: string): boolean;
|
|
7
7
|
/**
|
|
@@ -20,7 +20,7 @@ export declare function match(needle: string, pattern: string): boolean;
|
|
|
20
20
|
* Originally, it is not possible to define a name including ASCII upper alphas in the custom element, but it is not treated as illegal by the HTML parser.
|
|
21
21
|
*/
|
|
22
22
|
export declare const rePCENChar: string;
|
|
23
|
-
export declare function htmlSpec(nameWithNS: string): import("@markuplint/ml-spec").ElementSpec | null;
|
|
23
|
+
export declare function htmlSpec(specs: Readonly<MLMLSpec>, nameWithNS: string): import("@markuplint/ml-spec").ElementSpec | null;
|
|
24
24
|
export declare function isValidAttr(t: Translator, name: string, value: string, isDynamicValue: boolean, node: Element<any, any>, attrSpecs: Attribute[], log?: Log): false | {
|
|
25
25
|
invalidType: "non-existent" | "invalid-value";
|
|
26
26
|
message: string;
|
|
@@ -31,11 +31,11 @@ export declare function isValidAttr(t: Translator, name: string, value: string,
|
|
|
31
31
|
} | undefined;
|
|
32
32
|
};
|
|
33
33
|
export declare function toNormalizedValue(value: string, spec: Attribute): string;
|
|
34
|
-
export declare function ariaSpec(): {
|
|
34
|
+
export declare function ariaSpec(specs: Readonly<MLMLSpec>): {
|
|
35
35
|
roles: ARIRRoleAttribute[];
|
|
36
36
|
ariaAttrs: import("@markuplint/ml-spec").ARIAAttribute[];
|
|
37
37
|
};
|
|
38
|
-
export declare function getRoleSpec(roleName: string): {
|
|
38
|
+
export declare function getRoleSpec(specs: Readonly<MLMLSpec>, roleName: string): {
|
|
39
39
|
name: string;
|
|
40
40
|
isAbstract: boolean;
|
|
41
41
|
statesAndProps: import("@markuplint/ml-spec").ARIARoleOwnedPropOrState[];
|
|
@@ -48,9 +48,9 @@ export declare function getRoleSpec(roleName: string): {
|
|
|
48
48
|
* - If `true`, this mean is "Any".
|
|
49
49
|
* - If `false`, this mean is "No".
|
|
50
50
|
*/
|
|
51
|
-
export declare function getPermittedRoles(el: Element<any, any>): PermittedRoles;
|
|
52
|
-
export declare function getImplicitRole(el: Element<any, any>): string | false;
|
|
53
|
-
export declare function getComputedRole(el: Element<any, any>): {
|
|
51
|
+
export declare function getPermittedRoles(specs: Readonly<MLMLSpec>, el: Element<any, any>): PermittedRoles;
|
|
52
|
+
export declare function getImplicitRole(specs: Readonly<MLMLSpec>, el: Element<any, any>): string | false;
|
|
53
|
+
export declare function getComputedRole(specs: Readonly<MLMLSpec>, el: Element<any, any>): {
|
|
54
54
|
name: string;
|
|
55
55
|
isImplicit: boolean;
|
|
56
56
|
} | null;
|
|
@@ -63,7 +63,7 @@ export declare function getComputedRole(el: Element<any, any>): {
|
|
|
63
63
|
* @param tokenEnum
|
|
64
64
|
*/
|
|
65
65
|
export declare function checkAriaValue(type: string, value: string, tokenEnum: string[]): boolean;
|
|
66
|
-
export declare function checkAria(attrName: string, currentValue: string, role?: string): {
|
|
66
|
+
export declare function checkAria(specs: Readonly<MLMLSpec>, attrName: string, currentValue: string, role?: string): {
|
|
67
67
|
currentValue: string;
|
|
68
68
|
isValid: boolean;
|
|
69
69
|
} | {
|
package/lib/helpers.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.checkAria = exports.checkAriaValue = exports.getComputedRole = exports.getImplicitRole = exports.getPermittedRoles = exports.getRoleSpec = exports.ariaSpec = exports.toNormalizedValue = exports.isValidAttr = exports.htmlSpec = exports.rePCENChar = exports.match = exports.attrMatches = void 0;
|
|
4
|
-
const html_spec_1 = require("@markuplint/html-spec");
|
|
5
4
|
const attr_check_1 = require("./attr-check");
|
|
6
5
|
function attrMatches(node, condition) {
|
|
7
6
|
if (!condition) {
|
|
@@ -75,8 +74,8 @@ exports.rePCENChar = [
|
|
|
75
74
|
'[\uFDF0-\uFFFD]',
|
|
76
75
|
'[\uD800-\uDBFF][\uDC00-\uDFFF]',
|
|
77
76
|
].join('|');
|
|
78
|
-
function htmlSpec(nameWithNS) {
|
|
79
|
-
const spec =
|
|
77
|
+
function htmlSpec(specs, nameWithNS) {
|
|
78
|
+
const spec = specs.specs.find(spec => spec.name === nameWithNS);
|
|
80
79
|
return spec || null;
|
|
81
80
|
}
|
|
82
81
|
exports.htmlSpec = htmlSpec;
|
|
@@ -88,7 +87,7 @@ function isValidAttr(t, name, value, isDynamicValue, node, attrSpecs, log) {
|
|
|
88
87
|
if (!invalid && spec && spec.condition && !node.hasSpreadAttr && !attrMatches(node, spec.condition)) {
|
|
89
88
|
invalid = {
|
|
90
89
|
invalidType: 'non-existent',
|
|
91
|
-
message: t('{0} is {1}', t('the "{0}" {1}', name, 'attribute'), 'disallowed'),
|
|
90
|
+
message: t('{0} is {1}', t('the "{0*}" {1}', name, 'attribute'), 'disallowed'),
|
|
92
91
|
};
|
|
93
92
|
}
|
|
94
93
|
if (invalid && invalid.invalidType === 'invalid-value' && isDynamicValue) {
|
|
@@ -126,21 +125,21 @@ function toNormalizedValue(value, spec) {
|
|
|
126
125
|
return normalized;
|
|
127
126
|
}
|
|
128
127
|
exports.toNormalizedValue = toNormalizedValue;
|
|
129
|
-
function ariaSpec() {
|
|
130
|
-
const roles =
|
|
131
|
-
const ariaAttrs =
|
|
128
|
+
function ariaSpec(specs) {
|
|
129
|
+
const roles = specs.def['#roles'];
|
|
130
|
+
const ariaAttrs = specs.def['#ariaAttrs'];
|
|
132
131
|
return {
|
|
133
132
|
roles,
|
|
134
133
|
ariaAttrs,
|
|
135
134
|
};
|
|
136
135
|
}
|
|
137
136
|
exports.ariaSpec = ariaSpec;
|
|
138
|
-
function getRoleSpec(roleName) {
|
|
139
|
-
const role = getRoleByName(roleName);
|
|
137
|
+
function getRoleSpec(specs, roleName) {
|
|
138
|
+
const role = getRoleByName(specs, roleName);
|
|
140
139
|
if (!role) {
|
|
141
140
|
return null;
|
|
142
141
|
}
|
|
143
|
-
const superClassRoles = recursiveTraverseSuperClassRoles(roleName);
|
|
142
|
+
const superClassRoles = recursiveTraverseSuperClassRoles(specs, roleName);
|
|
144
143
|
return {
|
|
145
144
|
name: role.name,
|
|
146
145
|
isAbstract: !!role.isAbstract,
|
|
@@ -149,22 +148,22 @@ function getRoleSpec(roleName) {
|
|
|
149
148
|
};
|
|
150
149
|
}
|
|
151
150
|
exports.getRoleSpec = getRoleSpec;
|
|
152
|
-
function getRoleByName(roleName) {
|
|
153
|
-
const roles =
|
|
151
|
+
function getRoleByName(specs, roleName) {
|
|
152
|
+
const roles = specs.def['#roles'];
|
|
154
153
|
const role = roles.find(r => r.name === roleName);
|
|
155
154
|
return role;
|
|
156
155
|
}
|
|
157
|
-
function getSuperClassRoles(roleName) {
|
|
158
|
-
const role = getRoleByName(roleName);
|
|
159
|
-
return ((role === null || role === void 0 ? void 0 : role.generalization.map(roleName => getRoleByName(roleName)).filter((role) => !!role)) || null);
|
|
156
|
+
function getSuperClassRoles(specs, roleName) {
|
|
157
|
+
const role = getRoleByName(specs, roleName);
|
|
158
|
+
return ((role === null || role === void 0 ? void 0 : role.generalization.map(roleName => getRoleByName(specs, roleName)).filter((role) => !!role)) || null);
|
|
160
159
|
}
|
|
161
|
-
function recursiveTraverseSuperClassRoles(roleName) {
|
|
160
|
+
function recursiveTraverseSuperClassRoles(specs, roleName) {
|
|
162
161
|
const roles = [];
|
|
163
|
-
const superClassRoles = getSuperClassRoles(roleName);
|
|
162
|
+
const superClassRoles = getSuperClassRoles(specs, roleName);
|
|
164
163
|
if (superClassRoles) {
|
|
165
164
|
roles.push(...superClassRoles);
|
|
166
165
|
for (const superClassRole of superClassRoles) {
|
|
167
|
-
const ancestorRoles = recursiveTraverseSuperClassRoles(superClassRole.name);
|
|
166
|
+
const ancestorRoles = recursiveTraverseSuperClassRoles(specs, superClassRole.name);
|
|
168
167
|
roles.push(...ancestorRoles);
|
|
169
168
|
}
|
|
170
169
|
}
|
|
@@ -177,10 +176,10 @@ function recursiveTraverseSuperClassRoles(roleName) {
|
|
|
177
176
|
* - If `true`, this mean is "Any".
|
|
178
177
|
* - If `false`, this mean is "No".
|
|
179
178
|
*/
|
|
180
|
-
function getPermittedRoles(el) {
|
|
179
|
+
function getPermittedRoles(specs, el) {
|
|
181
180
|
var _a;
|
|
182
|
-
const implicitRole = getImplicitRole(el);
|
|
183
|
-
const spec = (_a = htmlSpec(el.nodeName)) === null || _a === void 0 ? void 0 : _a.permittedRoles;
|
|
181
|
+
const implicitRole = getImplicitRole(specs, el);
|
|
182
|
+
const spec = (_a = htmlSpec(specs, el.nodeName)) === null || _a === void 0 ? void 0 : _a.permittedRoles;
|
|
184
183
|
if (!spec) {
|
|
185
184
|
return true;
|
|
186
185
|
}
|
|
@@ -209,9 +208,9 @@ function mergeRoleList(implicitRole, permittedRoles) {
|
|
|
209
208
|
}
|
|
210
209
|
return permittedRoles;
|
|
211
210
|
}
|
|
212
|
-
function getImplicitRole(el) {
|
|
211
|
+
function getImplicitRole(specs, el) {
|
|
213
212
|
var _a;
|
|
214
|
-
const implicitRole = (_a = htmlSpec(el.nodeName)) === null || _a === void 0 ? void 0 : _a.implicitRole;
|
|
213
|
+
const implicitRole = (_a = htmlSpec(specs, el.nodeName)) === null || _a === void 0 ? void 0 : _a.implicitRole;
|
|
215
214
|
if (!implicitRole) {
|
|
216
215
|
return false;
|
|
217
216
|
}
|
|
@@ -225,7 +224,7 @@ function getImplicitRole(el) {
|
|
|
225
224
|
return implicitRole.role;
|
|
226
225
|
}
|
|
227
226
|
exports.getImplicitRole = getImplicitRole;
|
|
228
|
-
function getComputedRole(el) {
|
|
227
|
+
function getComputedRole(specs, el) {
|
|
229
228
|
const roleAttrTokens = el.getAttributeToken('role');
|
|
230
229
|
const roleAttr = roleAttrTokens[0];
|
|
231
230
|
if (roleAttr) {
|
|
@@ -235,7 +234,7 @@ function getComputedRole(el) {
|
|
|
235
234
|
isImplicit: false,
|
|
236
235
|
};
|
|
237
236
|
}
|
|
238
|
-
const implicitRole = getImplicitRole(el);
|
|
237
|
+
const implicitRole = getImplicitRole(specs, el);
|
|
239
238
|
if (implicitRole) {
|
|
240
239
|
return {
|
|
241
240
|
name: implicitRole,
|
|
@@ -287,8 +286,8 @@ function checkAriaValue(type, value, tokenEnum) {
|
|
|
287
286
|
return true;
|
|
288
287
|
}
|
|
289
288
|
exports.checkAriaValue = checkAriaValue;
|
|
290
|
-
function checkAria(attrName, currentValue, role) {
|
|
291
|
-
const ariaAttrs =
|
|
289
|
+
function checkAria(specs, attrName, currentValue, role) {
|
|
290
|
+
const ariaAttrs = specs.def['#ariaAttrs'];
|
|
292
291
|
const aria = ariaAttrs.find(a => a.name === attrName);
|
|
293
292
|
if (!aria) {
|
|
294
293
|
return {
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const ml_core_1 = require("@markuplint/ml-core");
|
|
4
4
|
exports.default = (0, ml_core_1.createRule)({
|
|
5
5
|
async verify({ document, report, t }) {
|
|
6
|
-
const message = t('{0} is {1:c}', t('{0} of {1}', t('the {0}', 'value'), t('the "{0}" {1}', 'id', 'attribute')), 'duplicated');
|
|
6
|
+
const message = t('{0} is {1:c}', t('{0} of {1}', t('the {0}', 'value'), t('the "{0*}" {1}', 'id', 'attribute')), 'duplicated');
|
|
7
7
|
const idStack = [];
|
|
8
8
|
await document.walkOn('Element', async (node) => {
|
|
9
9
|
const idAttrs = node.getAttributeToken('id');
|
package/lib/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ declare const _default: {
|
|
|
4
4
|
'attr-equal-space-before': import("packages/@markuplint/ml-core/lib").RuleSeed<"always" | "never" | "always-single-line" | "never-single-line", null>;
|
|
5
5
|
'attr-spacing': import("packages/@markuplint/ml-core/lib").RuleSeed<boolean, import("./attr-spacing").AttrSpasingOptions>;
|
|
6
6
|
'attr-value-quotes': import("packages/@markuplint/ml-core/lib").RuleSeed<import("./attr-value-quotes").Type, null>;
|
|
7
|
-
'case-sensitive-attr-name': import("packages/@markuplint/ml-core/lib").RuleSeed<import("./case-sensitive-attr-name").Value, null>;
|
|
7
|
+
'case-sensitive-attr-name': import("packages/@markuplint/ml-core/lib").RuleSeed<import("./case-sensitive-attr-name").Value | import("./case-sensitive-attr-name").Value_v1, null>;
|
|
8
8
|
'case-sensitive-tag-name': import("packages/@markuplint/ml-core/lib").RuleSeed<import("./case-sensitive-tag-name").Value, null>;
|
|
9
9
|
'character-reference': import("packages/@markuplint/ml-core/lib").RuleSeed<import("packages/@markuplint/ml-config/src").RuleConfigValue, null>;
|
|
10
10
|
'class-naming': import("packages/@markuplint/ml-core/lib").RuleSeed<import("./class-naming").Value, null>;
|
|
@@ -29,7 +29,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
29
29
|
raw: attr.raw,
|
|
30
30
|
line: attr.startLine,
|
|
31
31
|
col: attr.startCol,
|
|
32
|
-
message: t('{0} is {1:c}', t('the "{0}" {1}', name, 'attribute'), 'ineffective') +
|
|
32
|
+
message: t('{0} is {1:c}', t('the "{0*}" {1}', name, 'attribute'), 'ineffective') +
|
|
33
33
|
t('. ') +
|
|
34
34
|
t("It doesn't need {0}", t('the {0}', 'attribute')),
|
|
35
35
|
});
|
|
@@ -18,7 +18,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
18
18
|
const attrName = attr.getName();
|
|
19
19
|
const name = attrName.potential;
|
|
20
20
|
if (!node.isCustomElement && attr.attrType === 'html-attr' && attr.candidate) {
|
|
21
|
-
const message = t('{0} is {1:c}', t('the "{0}" {1}', attrName.raw, 'attribute'), 'disallowed') +
|
|
21
|
+
const message = t('{0} is {1:c}', t('the "{0*}" {1}', attrName.raw, 'attribute'), 'disallowed') +
|
|
22
22
|
t('. ') +
|
|
23
23
|
t('Did you mean "{0}"?', attr.candidate);
|
|
24
24
|
report({
|
|
@@ -43,6 +43,9 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
43
43
|
let invalid = false;
|
|
44
44
|
const customRule = node.rule.option.attrs ? node.rule.option.attrs[name] : null;
|
|
45
45
|
if (customRule) {
|
|
46
|
+
if (attr.attrType === 'html-attr' && attr.isDynamicValue) {
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
46
49
|
if ('enum' in customRule) {
|
|
47
50
|
invalid = (0, attr_check_1.attrCheck)(t, name.toLowerCase(), value, true, {
|
|
48
51
|
name,
|
|
@@ -56,7 +59,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
56
59
|
if (!(0, helpers_1.match)(value, customRule.pattern)) {
|
|
57
60
|
invalid = {
|
|
58
61
|
invalidType: 'invalid-value',
|
|
59
|
-
message: t('{0} is unmatched with the below patterns: {1}', t('the "{0}" {1}', name, 'attribute'), customRule.pattern),
|
|
62
|
+
message: t('{0} is unmatched with the below patterns: {1}', t('the "{0*}" {1}', name, 'attribute'), customRule.pattern),
|
|
60
63
|
};
|
|
61
64
|
}
|
|
62
65
|
}
|
|
@@ -66,7 +69,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
66
69
|
else if ('disallowed' in customRule && customRule.disallowed) {
|
|
67
70
|
invalid = {
|
|
68
71
|
invalidType: 'non-existent',
|
|
69
|
-
message: t('{0} is disallowed', t('the "{0}" {1}', name, 'attribute')),
|
|
72
|
+
message: t('{0} is disallowed', t('the "{0*}" {1}', name, 'attribute')),
|
|
70
73
|
};
|
|
71
74
|
}
|
|
72
75
|
}
|
|
@@ -87,6 +90,10 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
87
90
|
break;
|
|
88
91
|
}
|
|
89
92
|
case 'non-existent': {
|
|
93
|
+
const spec = (0, helpers_1.htmlSpec)(document.specs, node.nameWithNS);
|
|
94
|
+
if (spec === null || spec === void 0 ? void 0 : spec.possibleToAddProperties) {
|
|
95
|
+
continue;
|
|
96
|
+
}
|
|
90
97
|
report({
|
|
91
98
|
scope: node,
|
|
92
99
|
message: invalid.message,
|
|
@@ -78,7 +78,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
78
78
|
if (el.isDescendantByUUIDList(uuidList)) {
|
|
79
79
|
report({
|
|
80
80
|
scope: el,
|
|
81
|
-
message: t('{0} should be {1}', t('the "{0}" {1}', role, 'role'), 'top level'),
|
|
81
|
+
message: t('{0} should be {1}', t('the "{0*}" {1}', role, 'role'), 'top level'),
|
|
82
82
|
});
|
|
83
83
|
}
|
|
84
84
|
}
|
|
@@ -10,7 +10,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
10
10
|
return;
|
|
11
11
|
}
|
|
12
12
|
for (const attr of el.attributes) {
|
|
13
|
-
if (attr.attrType === 'ps-attr') {
|
|
13
|
+
if (attr.attrType === 'ps-attr' || attr.isDynamicValue) {
|
|
14
14
|
continue;
|
|
15
15
|
}
|
|
16
16
|
const name = attr.getName().potential;
|
|
@@ -36,7 +36,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
36
36
|
raw: extraRaw,
|
|
37
37
|
line: attr.spacesBeforeEqual.startLine,
|
|
38
38
|
col: attr.spacesBeforeEqual.startCol,
|
|
39
|
-
message: t('{0} is {1}', t('the "{0}" {1}', name, 'attribute'), t('a {0}', 'boolean attribute')) +
|
|
39
|
+
message: t('{0} is {1}', t('the "{0*}" {1}', name, 'attribute'), t('a {0}', 'boolean attribute')) +
|
|
40
40
|
t('. ') +
|
|
41
41
|
t("It doesn't need {0}", t('the {0}', 'value')),
|
|
42
42
|
});
|
|
@@ -4,7 +4,7 @@ const ml_core_1 = require("@markuplint/ml-core");
|
|
|
4
4
|
const helpers_1 = require("../helpers");
|
|
5
5
|
exports.default = (0, ml_core_1.createRule)({
|
|
6
6
|
async verify({ document, report, t }) {
|
|
7
|
-
const { ariaAttrs } = (0, helpers_1.ariaSpec)();
|
|
7
|
+
const { ariaAttrs } = (0, helpers_1.ariaSpec)(document.specs);
|
|
8
8
|
const idList = new Set();
|
|
9
9
|
let hasDynamicId = false;
|
|
10
10
|
await document.walkOn('Element', el => {
|
|
@@ -34,7 +34,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
34
34
|
return;
|
|
35
35
|
}
|
|
36
36
|
for (const attr of el.attributes) {
|
|
37
|
-
if (attr.attrType !== 'html-attr') {
|
|
37
|
+
if (attr.attrType !== 'html-attr' || attr.isDynamicValue) {
|
|
38
38
|
continue;
|
|
39
39
|
}
|
|
40
40
|
const name = attr.getName().potential;
|
|
@@ -28,7 +28,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
28
28
|
raw: attr.raw,
|
|
29
29
|
line: attr.startLine,
|
|
30
30
|
col: attr.startCol,
|
|
31
|
-
message: t('{0} is disallowed', t('the "{0}" {1}', name, 'attribute')),
|
|
31
|
+
message: t('{0} is disallowed', t('the "{0*}" {1}', name, 'attribute')),
|
|
32
32
|
});
|
|
33
33
|
}
|
|
34
34
|
});
|
|
@@ -23,13 +23,13 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
23
23
|
}
|
|
24
24
|
const specType = node.ns === 'html' ? 'HTML' : node.ns === 'svg' ? 'SVG' : 'Any Language';
|
|
25
25
|
const childNodes = node.getChildElementsAndTextNodeWithoutWhitespaces();
|
|
26
|
-
const spec = !node.isCustomElement && ((_a = (0, helpers_1.htmlSpec)(node.nameWithNS)) === null || _a === void 0 ? void 0 : _a.permittedStructures);
|
|
26
|
+
const spec = !node.isCustomElement && ((_a = (0, helpers_1.htmlSpec)(document.specs, node.nameWithNS)) === null || _a === void 0 ? void 0 : _a.permittedStructures);
|
|
27
27
|
const expGen = new permitted_content_spec_to_regexp_1.default(idCounter++);
|
|
28
28
|
if (spec) {
|
|
29
29
|
if (spec.ancestor && !node.closest(spec.ancestor)) {
|
|
30
30
|
report({
|
|
31
31
|
scope: node,
|
|
32
|
-
message: t('{0} must be {1}', t('the "{0}" {1}', node.nodeName, 'element'), t('{0} of {1}', 'descendant', t('the "{0}" {1}', spec.ancestor, 'element'))),
|
|
32
|
+
message: t('{0} must be {1}', t('the "{0*}" {1}', node.nodeName, 'element'), t('{0} of {1}', 'descendant', t('the "{0*}" {1}', spec.ancestor, 'element'))),
|
|
33
33
|
});
|
|
34
34
|
return;
|
|
35
35
|
}
|
|
@@ -45,11 +45,11 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
45
45
|
// console.log({ ...conditional, matched });
|
|
46
46
|
if (matched) {
|
|
47
47
|
try {
|
|
48
|
-
const parentExp = getRegExpFromParentNode(node, expGen);
|
|
48
|
+
const parentExp = getRegExpFromParentNode(document.specs, node, expGen);
|
|
49
49
|
const exp = expGen.specToRegExp(conditional.contents, parentExp, node.ns);
|
|
50
50
|
const conditionalResult = match(exp, childNodes, node.ns, false);
|
|
51
51
|
if (!conditionalResult) {
|
|
52
|
-
const message = t('{0} is {1:c}', t('{0} of {1}', t('the {0}', 'content'), t('the "{0}" {1}', node.nodeName, 'element')), 'invalid');
|
|
52
|
+
const message = t('{0} is {1:c}', t('{0} of {1}', t('the {0}', 'content'), t('the "{0*}" {1}', node.nodeName, 'element')), 'invalid');
|
|
53
53
|
report({
|
|
54
54
|
scope: node,
|
|
55
55
|
message: specType !== 'Any Language'
|
|
@@ -76,10 +76,10 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
76
76
|
}
|
|
77
77
|
if (!matched) {
|
|
78
78
|
try {
|
|
79
|
-
const exp = getRegExpFromNode(node, expGen);
|
|
79
|
+
const exp = getRegExpFromNode(document.specs, node, expGen);
|
|
80
80
|
const specResult = match(exp, childNodes, node.ns, false);
|
|
81
81
|
if (!specResult) {
|
|
82
|
-
const message = t('{0} is {1:c}', t('{0} of {1}', t('the {0}', 'content'), t('the "{0}" {1}', node.nodeName, 'element')), 'invalid');
|
|
82
|
+
const message = t('{0} is {1:c}', t('{0} of {1}', t('the {0}', 'content'), t('the "{0*}" {1}', node.nodeName, 'element')), 'invalid');
|
|
83
83
|
report({
|
|
84
84
|
scope: node,
|
|
85
85
|
message: specType !== 'Any Language'
|
|
@@ -103,7 +103,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
103
103
|
if (rule.tag.toLowerCase() !== node.nodeName.toLowerCase()) {
|
|
104
104
|
continue;
|
|
105
105
|
}
|
|
106
|
-
const parentExp = getRegExpFromParentNode(node, expGen);
|
|
106
|
+
const parentExp = getRegExpFromParentNode(document.specs, node, expGen);
|
|
107
107
|
try {
|
|
108
108
|
const exp = expGen.specToRegExp(rule.contents, parentExp, node.ns);
|
|
109
109
|
// Evaluate the custom element if the optional schema.
|
|
@@ -111,7 +111,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
111
111
|
if (!r) {
|
|
112
112
|
report({
|
|
113
113
|
scope: node,
|
|
114
|
-
message: t('{0} is {1:c}', t('{0} of {1}', t('the {0}', 'content'), t('the "{0}" {1}', node.nodeName, 'element')), 'invalid'),
|
|
114
|
+
message: t('{0} is {1:c}', t('{0} of {1}', t('the {0}', 'content'), t('the "{0*}" {1}', node.nodeName, 'element')), 'invalid'),
|
|
115
115
|
line: node.startLine,
|
|
116
116
|
col: node.startCol,
|
|
117
117
|
raw: node.raw,
|
|
@@ -148,22 +148,22 @@ function normalization(nodes, ownNS, evalCustomElement) {
|
|
|
148
148
|
})
|
|
149
149
|
.join('');
|
|
150
150
|
}
|
|
151
|
-
function getRegExpFromNode(node, expGen) {
|
|
151
|
+
function getRegExpFromNode(specs, node, expGen) {
|
|
152
152
|
var _a;
|
|
153
153
|
// console.log({ n: node.nodeName });
|
|
154
154
|
if (expMapOnNodeId.has(node.uuid)) {
|
|
155
155
|
return expMapOnNodeId.get(node.uuid);
|
|
156
156
|
}
|
|
157
|
-
const parentExp = node.parentNode ? getRegExpFromNode(node.parentNode, expGen) : null;
|
|
158
|
-
const spec = !node.isCustomElement && ((_a = (0, helpers_1.htmlSpec)(node.nameWithNS || node.nodeName.toLowerCase())) === null || _a === void 0 ? void 0 : _a.permittedStructures);
|
|
157
|
+
const parentExp = node.parentNode ? getRegExpFromNode(specs, node.parentNode, expGen) : null;
|
|
158
|
+
const spec = !node.isCustomElement && ((_a = (0, helpers_1.htmlSpec)(specs, node.nameWithNS || node.nodeName.toLowerCase())) === null || _a === void 0 ? void 0 : _a.permittedStructures);
|
|
159
159
|
const contentRule = spec ? spec.contents : true;
|
|
160
160
|
const exp = expGen.specToRegExp(contentRule, parentExp, node.ns || null);
|
|
161
161
|
expMapOnNodeId.set(node.uuid, exp);
|
|
162
162
|
return exp;
|
|
163
163
|
}
|
|
164
|
-
function getRegExpFromParentNode(node, expGen) {
|
|
164
|
+
function getRegExpFromParentNode(specs, node, expGen) {
|
|
165
165
|
// console.log({ p: node.nodeName });
|
|
166
|
-
const parentExp = node.parentNode ? getRegExpFromNode(node.parentNode, expGen) : null;
|
|
166
|
+
const parentExp = node.parentNode ? getRegExpFromNode(specs, node.parentNode, expGen) : null;
|
|
167
167
|
return parentExp;
|
|
168
168
|
}
|
|
169
169
|
const matchingCacheMap = new Map();
|
|
@@ -67,7 +67,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
if (invalid) {
|
|
70
|
-
const message = t('{0} expects {1}', t('the "{0}" {1}', node.nodeName, 'element'), t('the "{0}" {1}', spec.name, 'attribute'));
|
|
70
|
+
const message = t('{0} expects {1}', t('the "{0*}" {1}', node.nodeName, 'element'), t('the "{0*}" {1}', spec.name, 'attribute'));
|
|
71
71
|
report({
|
|
72
72
|
scope: node,
|
|
73
73
|
message,
|
|
@@ -78,7 +78,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
78
78
|
const matched = spec.values.some(pattern => (0, helpers_1.match)(value, pattern));
|
|
79
79
|
if (!matched) {
|
|
80
80
|
const expects = spec.values.length === 1 ? t(spec.values) : t('either {0}', t(spec.values));
|
|
81
|
-
const message = t('{0} expects {1}', t('the "{0}" {1}', spec.name, 'attribute'), expects);
|
|
81
|
+
const message = t('{0} expects {1}', t('the "{0*}" {1}', spec.name, 'attribute'), expects);
|
|
82
82
|
const attrToken = node.getAttributeToken(spec.name);
|
|
83
83
|
const valueToken = ((_a = attrToken[0]) === null || _a === void 0 ? void 0 : _a.attrType) === 'html-attr' ? attrToken[0].value : null;
|
|
84
84
|
const token = valueToken || attrToken[0];
|
package/lib/required-h1/index.js
CHANGED
|
@@ -20,7 +20,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
20
20
|
}
|
|
21
21
|
});
|
|
22
22
|
if (h1Stack.length === 0) {
|
|
23
|
-
const message = t('Require {0}', t('the "{0}" {1}', 'h1', 'element'));
|
|
23
|
+
const message = t('Require {0}', t('the "{0*}" {1}', 'h1', 'element'));
|
|
24
24
|
report({
|
|
25
25
|
message,
|
|
26
26
|
line: 1,
|
|
@@ -29,7 +29,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
29
29
|
});
|
|
30
30
|
}
|
|
31
31
|
else if (globalRule.option['expected-once'] && h1Stack.length > 1) {
|
|
32
|
-
const message = t('{0} is {1:c}', t('the "{0}" {1}', 'h1', 'element'), 'duplicated');
|
|
32
|
+
const message = t('{0} is {1:c}', t('the "{0*}" {1}', 'h1', 'element'), 'duplicated');
|
|
33
33
|
report({
|
|
34
34
|
message,
|
|
35
35
|
line: h1Stack[1].startLine,
|
package/lib/wai-aria/index.js
CHANGED
|
@@ -14,8 +14,8 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
14
14
|
async verify({ document, report, t }) {
|
|
15
15
|
await document.walkOn('Element', async (node) => {
|
|
16
16
|
const attrSpecs = (0, ml_core_1.getAttrSpecs)(node.nameWithNS, document.specs);
|
|
17
|
-
const html = (0, helpers_1.htmlSpec)(node.nodeName);
|
|
18
|
-
const { roles, ariaAttrs } = (0, helpers_1.ariaSpec)();
|
|
17
|
+
const html = (0, helpers_1.htmlSpec)(document.specs, node.nodeName);
|
|
18
|
+
const { roles, ariaAttrs } = (0, helpers_1.ariaSpec)(document.specs);
|
|
19
19
|
if (!html || !attrSpecs) {
|
|
20
20
|
return;
|
|
21
21
|
}
|
|
@@ -29,7 +29,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
29
29
|
// Not exist
|
|
30
30
|
report({
|
|
31
31
|
scope: node,
|
|
32
|
-
message: t('{0} according to {1}', t('{0} does not exist', t('the "{0}" {1}', value, 'role')), 'the WAI-ARIA specification') + `This "${value}" role does not exist in WAI-ARIA.`,
|
|
32
|
+
message: t('{0} according to {1}', t('{0} does not exist', t('the "{0*}" {1}', value, 'role')), 'the WAI-ARIA specification') + `This "${value}" role does not exist in WAI-ARIA.`,
|
|
33
33
|
line: roleAttr.startLine,
|
|
34
34
|
col: roleAttr.startCol,
|
|
35
35
|
raw: roleAttr.raw,
|
|
@@ -39,7 +39,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
39
39
|
// the abstract role
|
|
40
40
|
report({
|
|
41
41
|
scope: node,
|
|
42
|
-
message: t('{0} is {1}', t('the "{0}" {1}', value, 'role'), 'the abstract role'),
|
|
42
|
+
message: t('{0} is {1}', t('the "{0*}" {1}', value, 'role'), 'the abstract role'),
|
|
43
43
|
line: roleAttr.startLine,
|
|
44
44
|
col: roleAttr.startCol,
|
|
45
45
|
raw: roleAttr.raw,
|
|
@@ -47,12 +47,12 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
47
47
|
}
|
|
48
48
|
// Set the implicit role explicitly
|
|
49
49
|
if (node.rule.option.disallowSetImplicitRole) {
|
|
50
|
-
const implictRole = (0, helpers_1.getImplicitRole)(node);
|
|
50
|
+
const implictRole = (0, helpers_1.getImplicitRole)(document.specs, node);
|
|
51
51
|
if (implictRole && implictRole === value) {
|
|
52
52
|
// the implicit role
|
|
53
53
|
report({
|
|
54
54
|
scope: node,
|
|
55
|
-
message: t('{0} is {1}', t('the "{0}" {1}', value, 'role'), t('{0} of {1}', 'the implicit role', t('the "{0}" {1}', node.nodeName, 'element'))),
|
|
55
|
+
message: t('{0} is {1}', t('the "{0*}" {1}', value, 'role'), t('{0} of {1}', 'the implicit role', t('the "{0*}" {1}', node.nodeName, 'element'))),
|
|
56
56
|
line: roleAttr.startLine,
|
|
57
57
|
col: roleAttr.startCol,
|
|
58
58
|
raw: roleAttr.raw,
|
|
@@ -61,11 +61,11 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
61
61
|
}
|
|
62
62
|
// Permitted ARIA Roles
|
|
63
63
|
if (node.rule.option.permittedAriaRoles) {
|
|
64
|
-
const permittedRoles = (0, helpers_1.getPermittedRoles)(node);
|
|
64
|
+
const permittedRoles = (0, helpers_1.getPermittedRoles)(document.specs, node);
|
|
65
65
|
if (permittedRoles === false) {
|
|
66
66
|
report({
|
|
67
67
|
scope: node,
|
|
68
|
-
message: t('{0} according to {1}', t('Cannot overwrite {0}', t('{0} of {1}', t('the {0}', 'role'), t('the "{0}" {1}', node.nodeName, 'element'))), 'ARIA in HTML specification'),
|
|
68
|
+
message: t('{0} according to {1}', t('Cannot overwrite {0}', t('{0} of {1}', t('the {0}', 'role'), t('the "{0*}" {1}', node.nodeName, 'element'))), 'ARIA in HTML specification'),
|
|
69
69
|
line: roleAttr.startLine,
|
|
70
70
|
col: roleAttr.startCol,
|
|
71
71
|
raw: roleAttr.raw,
|
|
@@ -74,7 +74,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
74
74
|
else if (Array.isArray(permittedRoles) && !permittedRoles.includes(value)) {
|
|
75
75
|
report({
|
|
76
76
|
scope: node,
|
|
77
|
-
message: t('{0} according to {1}', t('Cannot overwrite {0} to {1}', t('the "{0}" {1}', value, 'role'), t('the "{0}" {1}', node.nodeName, 'element')), 'ARIA in HTML specification'),
|
|
77
|
+
message: t('{0} according to {1}', t('Cannot overwrite {0} to {1}', t('the "{0*}" {1}', value, 'role'), t('the "{0*}" {1}', node.nodeName, 'element')), 'ARIA in HTML specification'),
|
|
78
78
|
line: roleAttr.startLine,
|
|
79
79
|
col: roleAttr.startCol,
|
|
80
80
|
raw: roleAttr.raw,
|
|
@@ -82,9 +82,9 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
|
-
const computedRole = (0, helpers_1.getComputedRole)(node);
|
|
85
|
+
const computedRole = (0, helpers_1.getComputedRole)(document.specs, node);
|
|
86
86
|
if (computedRole) {
|
|
87
|
-
const role = (0, helpers_1.getRoleSpec)(computedRole.name);
|
|
87
|
+
const role = (0, helpers_1.getRoleSpec)(document.specs, computedRole.name);
|
|
88
88
|
if (role) {
|
|
89
89
|
// Checking aria-* on the role
|
|
90
90
|
for (const attr of node.attributes) {
|
|
@@ -95,7 +95,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
95
95
|
if (node.rule.option.checkingDeprecatedProps && statesAndProp.deprecated) {
|
|
96
96
|
report({
|
|
97
97
|
scope: node,
|
|
98
|
-
message: t('{0:c} on {1}', t('{0} is {1:c}', t('the "{0}" {1}', attrName, 'ARIA state/property'), 'deprecated'), t('the "{0}" {1}', role.name, 'role')),
|
|
98
|
+
message: t('{0:c} on {1}', t('{0} is {1:c}', t('the "{0*}" {1}', attrName, 'ARIA state/property'), 'deprecated'), t('the "{0*}" {1}', role.name, 'role')),
|
|
99
99
|
line: attr.startLine,
|
|
100
100
|
col: attr.startCol,
|
|
101
101
|
raw: attr.raw,
|
|
@@ -105,7 +105,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
105
105
|
else {
|
|
106
106
|
report({
|
|
107
107
|
scope: node,
|
|
108
|
-
message: t('{0:c} on {1}', t('{0} is {1:c}', t('the "{0}" {1}', attrName, 'ARIA state/property'), 'disallowed'), t('the "{0}" {1}', role.name, 'role')),
|
|
108
|
+
message: t('{0:c} on {1}', t('{0} is {1:c}', t('the "{0*}" {1}', attrName, 'ARIA state/property'), 'disallowed'), t('the "{0*}" {1}', role.name, 'role')),
|
|
109
109
|
line: attr.startLine,
|
|
110
110
|
col: attr.startCol,
|
|
111
111
|
raw: attr.raw,
|
|
@@ -124,7 +124,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
124
124
|
if (!has) {
|
|
125
125
|
report({
|
|
126
126
|
scope: node,
|
|
127
|
-
message: t('{0:c} on {1}', t('Require {0}', t('the "{0}" {1}', requiredProp, 'ARIA state/property')), t('the "{0}" {1}', role.name, 'role')),
|
|
127
|
+
message: t('{0:c} on {1}', t('Require {0}', t('the "{0*}" {1}', requiredProp, 'ARIA state/property')), t('the "{0*}" {1}', role.name, 'role')),
|
|
128
128
|
});
|
|
129
129
|
}
|
|
130
130
|
}
|
|
@@ -133,7 +133,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
133
133
|
}
|
|
134
134
|
else {
|
|
135
135
|
// No role element
|
|
136
|
-
const { ariaAttrs } = (0, helpers_1.ariaSpec)();
|
|
136
|
+
const { ariaAttrs } = (0, helpers_1.ariaSpec)(document.specs);
|
|
137
137
|
for (const attr of node.attributes) {
|
|
138
138
|
const attrName = attr.getName().potential.trim().toLowerCase();
|
|
139
139
|
if (/^aria-/i.test(attrName)) {
|
|
@@ -141,7 +141,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
141
141
|
if (ariaAttr && !ariaAttr.isGlobal) {
|
|
142
142
|
report({
|
|
143
143
|
scope: node,
|
|
144
|
-
message: t('{0} is not {1}', t('the "{0}" {1}', attrName, 'ARIA state/property'), 'global state/property'),
|
|
144
|
+
message: t('{0} is not {1}', t('the "{0*}" {1}', attrName, 'ARIA state/property'), 'global state/property'),
|
|
145
145
|
line: attr.startLine,
|
|
146
146
|
col: attr.startCol,
|
|
147
147
|
raw: attr.raw,
|
|
@@ -160,11 +160,11 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
160
160
|
const propSpec = ariaAttrs.find(p => p.name === attrName);
|
|
161
161
|
// Checking ARIA Value
|
|
162
162
|
if (node.rule.option.checkingValue) {
|
|
163
|
-
const result = (0, helpers_1.checkAria)(attrName, value, computedRole === null || computedRole === void 0 ? void 0 : computedRole.name);
|
|
163
|
+
const result = (0, helpers_1.checkAria)(document.specs, attrName, value, computedRole === null || computedRole === void 0 ? void 0 : computedRole.name);
|
|
164
164
|
if (!result.isValid) {
|
|
165
165
|
report({
|
|
166
166
|
scope: node,
|
|
167
|
-
message: t('{0:c} on {1}', t('{0} is {1:c}', t('the "{0}"', value), 'disallowed'), t('the "{0}" {1}', attrName, 'ARIA state/property')) +
|
|
167
|
+
message: t('{0:c} on {1}', t('{0} is {1:c}', t('the "{0}"', value), 'disallowed'), t('the "{0*}" {1}', attrName, 'ARIA state/property')) +
|
|
168
168
|
('enum' in result && result.enum.length
|
|
169
169
|
? t('. ') + t('Allowed values are: {0}', t(result.enum))
|
|
170
170
|
: ''),
|
|
@@ -189,7 +189,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
189
189
|
equivalentHtmlAttr.value === value) {
|
|
190
190
|
report({
|
|
191
191
|
scope: node,
|
|
192
|
-
message: t('{0} has {1}', t('the "{0}" {1}', attrName, 'ARIA state/property'), t('the same {0} as {1}', 'semantics', t('{0} or {1}', t('the current "{0}" {1}', equivalentHtmlAttr.htmlAttrName, 'attribute'), t('the implicit "{0}" {1}', equivalentHtmlAttr.htmlAttrName, 'attribute')))),
|
|
192
|
+
message: t('{0} has {1}', t('the "{0*}" {1}', attrName, 'ARIA state/property'), t('the same {0} as {1}', 'semantics', t('{0} or {1}', t('the current "{0}" {1}', equivalentHtmlAttr.htmlAttrName, 'attribute'), t('the implicit "{0}" {1}', equivalentHtmlAttr.htmlAttrName, 'attribute')))),
|
|
193
193
|
line: attr.startLine,
|
|
194
194
|
col: attr.startCol,
|
|
195
195
|
raw: attr.raw,
|
|
@@ -201,7 +201,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
201
201
|
}
|
|
202
202
|
report({
|
|
203
203
|
scope: node,
|
|
204
|
-
message: t('{0} contradicts {1}', t('the "{0}" {1}', attrName, 'ARIA state/property'), t('the current "{0}" {1}', equivalentHtmlAttr.htmlAttrName, 'attribute')),
|
|
204
|
+
message: t('{0} contradicts {1}', t('the "{0*}" {1}', attrName, 'ARIA state/property'), t('the current "{0}" {1}', equivalentHtmlAttr.htmlAttrName, 'attribute')),
|
|
205
205
|
line: attr.startLine,
|
|
206
206
|
col: attr.startCol,
|
|
207
207
|
raw: attr.raw,
|
|
@@ -211,7 +211,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
211
211
|
if (!equivalentHtmlAttr.isNotStrictEquivalent && (htmlAttrSpec === null || htmlAttrSpec === void 0 ? void 0 : htmlAttrSpec.type) === 'Boolean') {
|
|
212
212
|
report({
|
|
213
213
|
scope: node,
|
|
214
|
-
message: t('{0} contradicts {1}', t('the "{0}" {1}', attrName, 'ARIA state/property'), t('the implicit "{0}" {1}', equivalentHtmlAttr.htmlAttrName, 'attribute')),
|
|
214
|
+
message: t('{0} contradicts {1}', t('the "{0*}" {1}', attrName, 'ARIA state/property'), t('the implicit "{0}" {1}', equivalentHtmlAttr.htmlAttrName, 'attribute')),
|
|
215
215
|
line: attr.startLine,
|
|
216
216
|
col: attr.startCol,
|
|
217
217
|
raw: attr.raw,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/rules",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.5",
|
|
4
4
|
"description": "Rules for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"clean": "tsc --build --clean"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@markuplint/html-spec": "2.0.0-rc.
|
|
21
|
-
"@markuplint/ml-core": "2.0.0-rc.
|
|
22
|
-
"@markuplint/ml-spec": "2.0.0-rc.
|
|
23
|
-
"@markuplint/types": "2.0.0-rc.
|
|
20
|
+
"@markuplint/html-spec": "2.0.0-rc.5",
|
|
21
|
+
"@markuplint/ml-core": "2.0.0-rc.5",
|
|
22
|
+
"@markuplint/ml-spec": "2.0.0-rc.5",
|
|
23
|
+
"@markuplint/types": "2.0.0-rc.5",
|
|
24
24
|
"debug": "^4.3.2",
|
|
25
25
|
"tslib": "^2.3.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/debug": "^4.1.7"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "6faa4e54f16d3700d23953330abea89ccb9d6150"
|
|
31
31
|
}
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../i18n/lib/types.d.ts","../i18n/lib/translator.d.ts","../i18n/lib/index.d.ts","../ml-spec/lib/permitted-structres.d.ts","../ml-spec/lib/attributes.d.ts","../ml-spec/lib/types.d.ts","../ml-spec/lib/get-attr-specs.d.ts","../ml-spec/lib/get-spec-by-tag-name.d.ts","../ml-spec/lib/get-spec.d.ts","../ml-spec/lib/get-ns.d.ts","../ml-spec/lib/index.d.ts","../types/lib/css-syntax.d.ts","../types/lib/types.schema.d.ts","../types/lib/types.d.ts","../types/lib/whatwg/is-custom-element-name.d.ts","../types/lib/check.d.ts","../types/lib/index.d.ts","./src/create-message.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","./src/debug.ts","./src/attr-check.ts","../ml-config/lib/types.d.ts","../ml-config/lib/merge-config.d.ts","../ml-config/lib/utils.d.ts","../ml-config/lib/index.d.ts","../ml-core/lib/ruleset/index.d.ts","../ml-core/lib/convert-ruleset.d.ts","../ml-ast/lib/types.d.ts","../ml-ast/lib/index.d.ts","../ml-core/lib/ml-dom/tokens/token.d.ts","../ml-core/lib/ml-dom/tokens/attribute.d.ts","../ml-core/lib/ml-dom/index.d.ts","../ml-core/lib/ml-dom/helper/mapped-nodes.d.ts","../ml-core/lib/ml-dom/helper/create-node.d.ts","../ml-core/lib/ml-dom/helper/node-store.d.ts","../ml-core/lib/ml-dom/tokens/preprocessor-specific-attribute.d.ts","../ml-core/lib/ml-dom/tokens/abstract-element.d.ts","../ml-core/lib/ml-dom/helper/selector.d.ts","../ml-core/lib/ml-dom/helper/index.d.ts","../ml-core/lib/ml-dom/tokens/node.d.ts","../ml-core/lib/ml-dom/tokens/comment.d.ts","../ml-core/lib/ml-dom/tokens/doctype.d.ts","../ml-core/lib/ml-dom/tokens/text.d.ts","../ml-core/lib/ml-dom/tokens/omitted-element.d.ts","../ml-core/lib/ml-dom/tokens/element.d.ts","../ml-core/lib/ml-dom/tokens/element-close-tag.d.ts","../ml-core/lib/ml-dom/tokens/preprocessor-specific-block.d.ts","../ml-core/lib/ml-dom/tokens/index.d.ts","../ml-core/lib/ml-dom/types.d.ts","../ml-core/lib/ml-dom/helper/walkers.d.ts","../ml-core/lib/ml-dom/document.d.ts","../ml-core/lib/ml-rule/ml-rule-context.d.ts","../ml-core/lib/ml-rule/types.d.ts","../ml-core/lib/ml-rule/create-rule.d.ts","../ml-core/lib/ml-rule/ml-rule.d.ts","../ml-core/lib/ml-rule/index.d.ts","../ml-core/lib/types.d.ts","../ml-core/lib/ml-error/ml-parse-error.d.ts","../ml-core/lib/ml-core.d.ts","../ml-core/lib/plugin/types.d.ts","../ml-core/lib/plugin/plugin.d.ts","../ml-core/lib/plugin/index.d.ts","../ml-core/lib/ml-dom/helper/getindent.d.ts","../ml-core/lib/utils/get-location-from-chars.d.ts","../ml-core/lib/utils/index.d.ts","../ml-core/lib/configs.d.ts","../ml-core/lib/test/index.d.ts","../ml-core/lib/debug.d.ts","../ml-core/lib/index.d.ts","../html-spec/index.d.ts","./src/helpers.ts","./src/attr-duplication/index.ts","./src/attr-equal-space-after/index.ts","./src/attr-equal-space-before/index.ts","./src/attr-spacing/index.ts","./src/attr-value-quotes/index.ts","./src/case-sensitive-attr-name/index.ts","./src/case-sensitive-tag-name/index.ts","./src/character-reference/index.ts","./src/class-naming/index.ts","./src/deprecated-attr/index.ts","./src/deprecated-element/index.ts","./src/disallowed-element/index.ts","./src/doctype/index.ts","./src/id-duplication/index.ts","./src/indentation/index.ts","./src/ineffective-attr/index.ts","./src/invalid-attr/index.ts","./src/landmark-roles/index.ts","./src/no-boolean-attr-value/index.ts","./src/no-default-value/index.ts","./src/no-hard-code-id/index.ts","./src/no-refer-to-non-existent-id/index.ts","./src/no-use-event-handler-attr/index.ts","./src/permitted-contents/array.combination.ts","./src/permitted-contents/unfold-content-models-to-tags.ts","./src/permitted-contents/permitted-content.spec-to-regexp.ts","./src/permitted-contents/index.ts","./src/required-attr/index.ts","./src/required-element/index.ts","./src/required-h1/index.ts","./src/wai-aria/index.ts","./src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/bcp-47/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/css-tree/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/mdx-js__react/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/@types/mini-css-extract-plugin/node_modules/webpack/types.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mustache/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-dev-server/node_modules/webpack/types.d.ts","../../../node_modules/http-proxy-middleware/dist/types.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/response-interceptor.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/fix-request-body.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/public.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/index.d.ts","../../../node_modules/http-proxy-middleware/dist/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/codegen/code.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/codegen/scope.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/codegen/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/rules.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/util.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/validate/subschema.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/errors.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/validate/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/validate/datatype.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/additionalitems.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/propertynames.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/additionalproperties.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/anyof.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/oneof.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/limitnumber.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/multipleof.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/uniqueitems.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/format/format.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedproperties.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/unevaluated/unevaluateditems.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/validation/dependentrequired.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/vocabularies/errors.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/types/json-schema.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/types/jtd-schema.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/runtime/validation_error.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/ref_error.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/core.d.ts","../../../node_modules/uri-js/dist/es5/uri.all.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/resolve.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/compile/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/types/index.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/ajv/dist/ajv.d.ts","../../../node_modules/webpack-dev-middleware/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/webpack-dev-middleware/types/index.d.ts","../../../node_modules/chokidar/types/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/whatwg-mimetype/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/webpack-dev-middleware/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","56d0eb242037dacc548873cca58b20691f86a56d5039cd606e0f4c45d57a38d8","7aa09aeffcf2fd3f713bea715d7bc89ba0ad9633f4f64652a79c12fd4ae6ab17","86ae37fbd9fce5f0f7a4ec0c2aee97f504d99624c913463586abc5e642818216","223481752f49a6e25caa5062e5df3f1f1ef5089a72270a105c3221730b8b2a5a","55d2d6c7f615546f3b3a408368ebfc4314f535fb464beac86e102ff54c883539","39b4ab1bf470c42a34ad672fc2cb03558497a5783e6689891f5f2f1388ec4062","bb50b72f9c1020b2aac5e67d0f36e4ae7fb3ab263685f78fb55c297f884a2dfd","5c56c35a916b5199891eecb6295ae91dfacb92cbbca68de4128474ec8bb7acfd","6204b45bbc0cfc06c6781cba9ecf9c8134151e6384f86694491efd4cafbdd416","0f6e1366207419917adb76cb114757b0d027c11aa0bcf9af6652154ac0f4f37a","4d18ee67886c9b16e20e3768a799429ff828fe367a42fe71378c6c8ada59d232","d0b1e3e11ed7cf3f9a87b9538438920a480f22cf537f2fcc0480702f7fa0b0d7","fe17efc15c09a2713a51dea47b8a465439d35f12fa20c592801e4e1f3832e0fe","cf9b781cadd764325012852f799a194eac5f0e2bab89bb8b6ef50494e04a6abf","e001e626dcc1a99ddbf11c1514e30f12c72bb7b333e83763f68a9a246ae8ad8f","d43b711f5ff1cc4317321db198503f7fe2cde277316e3c9798d0ad2982e4c30a","ee1c0d1c8017580054968706d63e85f42384b02fee7673ab436da569426ab9fc",{"version":"a80a17c6b70c892de129aea289c8e23ff6a1e77dfe1e31ff6b75afc78f4e5609","signature":"e9174e0543b3652b3e408381b0ea032af23039b128ad4a3a1f26f4654f53ec21"},"6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"3b9afd718a4fd17bd4c14c3239dbe01d89233bdbfc955bf5a29010703191ee9c","signature":"9764de8ada19d70c82caa9ceac31390f85d303233423ad616a04a1ac72b7d774"},{"version":"2ad0fda139fa0bdb2743f241829fd6148c22016b881c413cc53e54a405d91bff","signature":"7d5cc5c68e2d6e976e820edaa58984998b9d469318dc18ed1bac194419393298"},"37445f276c8c74e206908e62ebdc92e20039c2745f213451ec7ad883ecd5071f","9cebc879f5f9bb8bb528044ae54e45946514589ee9a9261b5eab2e05111841d4","9b3c07ddff7e4f0c092c351da5782850390298a9050174156b881bc67f97a5dc","3e846bbed6945fa695b2a999410d4096f485c254230e93e355859af8749d33dd","ee6c6adbdbee0ae00dfefb53144f0cc330a4c5a438ba2c7d1a70350818a73146","9b33db8515f42c53ccf8597e4125b1c6f29b4d7bcad011f5a489f787d898507f","7f23bb7aaddd94dd6231bc8fa77d7e3926b8ffd87095c24290f2c67d24b16e58","d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","e3d0465e1f55bba40fa77a57c3e70fb67331c897865f6ea8713fb6c8197747c9","7e2de2b56d19c490055d809656eb2cd4fbaf8d285ed9d1f576859421db7dd997","2aa5097087ac3bba1312d8688ba7b5e4796588b5b10ad3037a3055bf1b839c13","61e065560757fd39d2eb9ce5407825a285929b0095d14017f6d9019d581ec450","b0670bd95983821cbc9cbbebe39784f0887128496ee337b08dba0feb7501fa25","5bfe85a019ea9280bed1be8b184d11fe252576fc4df33bb3efdf8c95fafeb097","53af6ad61e8bd939e7b250e25ff9dbb2346f7be2b829aaa343285ab612def96b","abb47e7e439d63fcdb3895fec01ff44deff3f6c7bc449c71e1ed8776eca362f8","5c24967c3b1280705bdf541e1ab90d46d9b9eebe938c87b41eca979b4772b787","dd20634d51965217889c41c8e8f7264c244b372d338eb53012917659daff8c3a","e4caeaf86d5d7f90a4afeb90dbd3a33159ebe34d1275a639ce0a22882d6482aa","f5ad87e89e48568546a6d0bd69965040abf89d02c95d6bccca8d25319514ed76","c9e3fd9d1925492ef6b8b555f07baea3b783d1e787c109c6b8be9bf1060f87a9","9722bb10a935428dccd8d17ef0888b91250db3f1ae46a42e21ff6a2816a314dc","541ce43cbf437b6121ce60195c9a747a030b2c57c53db127cefd0e18a45accd3","ca73f933c4576230805b6bded3c43f78f606ff048b14352ed02311bf02bf5db4","9cb27eb30484f306b68f8e2ad83c97b4740cd96b9b5e007626fe7ba7c22be5be","6bb29e58589d171e83dd3f0fba79984dff01db05f5e4003ab471436287ee9d21","2ed9951145168f1e101366322e2bed6c3aa39d5fdcd9c3dbeba9a5d9568ff595","9bdf67331be727e1589a98adf329fcab8a1e0dd2ef167d32edaa62dc0da8d561","e2914caf6dcf0a9c22a849df279fcf70e025f45a8aae75c42d0c97e591a1b532","9e1d8afbf14fbef9237d31e3dbfadccbd14032a5988ed384c1edfb9cd5d7c8fb","ad5b8145dce3ed9d856baa6d0a833d7347da5596a484e67f7089f36b835414fd","3b9c51c2edcc7134a1c5dd60b76905d71344dc264f9a89c3d203c58e9c2805bb","fb4742d55b29c065fea41c1a9f0f9a4d2eff3c7cd3737be6d8a2605477f88b23","4d67db8363e2676d8293a488b92ca4789905f361adb417b3adb4e9cef24c4cc0","2520d7ae590b2ccdda4b3647cc0cc17363c4fc44411d6e1e13c4bf766c2a83c8","5c801e438c7c9f3c2c8f739edcedc8870c3355e9c5a5f57f48a80b0cc89f8c77","f29e5c795942cb39b4ae749cbbe63c16b835fc72b53a951a8a39a88997469903","c96bf348fc0d9d42565dc423b69cc76bd3e1b7b83e17c382deef170d2065cfb2","7383e41983fd3e4cdbea4a82f255b4facd404cad648ef1f87a2a99e8e5849276","4bb30deeba1445b8cee229d90cb52ec3ae4ae0552c9a457102373f9aa795c4b0","4edba813e2167ea3232803eefd0a4a582623b1ce18877b37be870e44a5e05b05","c0361b15220d7423fa2d45c856e3869085a5545d58ce3d42f5970b449b83cf3f","b75fa94ba821ec5471ea98431612815152b1f4687d7100eaaa4b172fab9f24f8","9d05a5c14da47f875fce5e7b911a6e0f79038df59ee3c61d5448746fbe6b1120","e58bf85a801daba2927f22010cb42030a43310c0af4ba86a1be12ed9021cbd3c","1f3979af250f115aa5f4229cefa2241cab33831ed7a351e9d10c416b8bc1be39","3ffa52413f929d194a1eab5ec4b4bf5faf57ffd0b5f62d9ddfbab97c50240179","1a7a771e9cb6a4bb74e92db9a6aa8df5f0e72387e2ead7d47bdfdcceb2fdca14","5983be11dccf50796dd69cbe422f9d9c8966090c276ec01c558db4741d394165","d42497fd6e829852698dcd9036cc614ff8ab140ba3d3a4e0be03342d38962251","f812b18a5852990bedf1e0935b9985eeb65da9f2cf471b744aa8b5311a20c062","e27df3e134cd199055f6708781d1fbd65e88deccba1175ea902459a7d5564215","c833e8bfcd4ab8332968c17d5fec28be508685786808257d7748b0e858e63fcc","d538e20239797185a1ec04083deb9d080e1f20c221891e054c84f896189be6c5","12825df1a4e4782054965cf8b919f922f03568628b92826c192e79d648d88bb5","91af9f1a44d3e253308650907e1281761ba60112fa867cb04cb8ed486f51296b","dcd08fc176039062f50848dea3f78e22fd0030552543dac7d224cf0b12b1b0f7","b5cea6302f6b5fc45eec180d0a1fc76c43e3d5ed4da2a35eec83352069aa7667","ec8636836087a03298855e800fad45ee03291b8b83e905822717e7d248462925","a30485ebcfb2ddb752dc1ae492048b968239fa4d65d2c98125bb90084614eeb2","8639fb408e7a93e5d38e36cf5aa407d3f515e5a14f7280d1e134ceb38049461a","7056026faf48b146cc9fc402faa071f8d680496c1f6afbcc1c48a8826b42f661","a9d2619408faac61fe93f9def534fc6fed2935cbd8b7bcca76045ef93d896a97","03b0a5c7da3686b49c2250ceb43179e57331c24c7bbf86c49ad3d5be341c34c7","ead6d2c5a4cdb642cfca32449db0276c6bb4137780ac662dbcea4098c9510995","b77bf615eeae38ef0647f2dc0abbdd6d6003e7b8d9a671f86da5d0037cfe5195","9331cd6610504ffccd67a0fe240c5d63f6437928a4bffa1826c1a8f4aeefff8a","07974d1bbcbdd5ae6b8172532aab066079d02cb50111503db094b984bd7035b5","a71b6496223af71f8ec79b618f946fc8d5a39a77a5272130d621ea14b55d1183","8c598f11acd71dc6481620ee9c5db615f8bbbc4c49eba4c133b3e7796da492ea","3e38fff391dcaa814e284dc975b6e7d43443fe25d338be818a0cb98d723b74d0","1e33096bf0eeb7f15c0906370a9dee08157e9f8484b19113588295a7ac4d6717","a74b2012ea00bf9bc099d767b447ce9b9fcc50765dbf25b564abfcf6cce82eb0",{"version":"75ed125570eff8d305119bcf1d5adc0035fe4465e3809d532f6d73c294b35acf","signature":"305850db2f2331e691957bed21b1ebd1162886f5d6add2bdaafd394596cc69a1"},{"version":"ff3894d50d686cc1f961cfecabd3d84c313520f4020b38e6bc1161e186a6e433","signature":"4606a29da5207aaf532f2660db58227418a3ddfddc2110203efbf07c07c1528e"},"7e429b09200b85eb80003739018ec291930775b4c9934f96f2ee0f21b3f05555","a0d799302e59d442231df933eaea7a75736cd648832e9ea22c935348cd4eae0b","a05363d45470b5b9a6d7f789436540961f9f61090ba5888848ac2252e9262dc2","c963e6e86f4062e864c9f9e585004ff371fba0a2d1be82c6b1dfd399d9b12b1c","a578bb1bd2cac243a93d87ae695771ff01b09bc06fa5848e32ffeb2734113812","fec09c312f483f5f6083b87f4f1b053fbc2558485777144f343a8634d86fab8e","a11624424145731a343b0dd26f9c4c3ea780be12a45c8448473471c06615316e","d5d7b68f5369a210c235cd65458369888f8b839192d088c964f21cab3ac954db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","e2a56bb80f66ac0b6767fd7bb6b337ac3cb9cd4a368b13491e3fd1b5e26d93d6","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","fce6a1a1553ff7d54ffb8bb3ae488c9cb5f2f4f4e52212c1abe40f544819ef35","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"267af67ea520cabd16402522756b19ac63d9e2c1c86e7c4d1ddeb991c32e12c9","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07",{"version":"42c1b00421aa4d5f03b85a2639c1573d32bd82533f34423bbf1f5fb2b0ddc4d8","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","62cc84c2971b16cc82e1f7cb1dac7d8c70b589d492fbc2f6efbcbfc53b61d514","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","94998ffb6165ce44d492327169a7f7cb0e1e11a967f068fbda6796029a4a40dd","1cc502622a7f773e7cd75ecacd64d0bc83a2a6442dc16a7081f968702edf5051","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","af9abc3144d279b29affb0e6dd842609eca65fb44c712368f6a89bb264b34ef4",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","25268f34b96a70787a58f530623fc1c8fc958f9e2a8bf1f9c3de930b46eed814","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"1bc82f5b3bb93df76d19730c84467b0b346187198537135d63a672956f323720","affectsGlobalScope":true},"1a4f6207fac7bf7e94957a5c7cac0c33d07499bab60a197dabea4f452a544cd8","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","a425590b7e47c247eb42edb5e4ed742dcf7eb90a1c60f5ed78bcd242896f6e8d","4b0011a86baef7b2d7a95ce25e729c96f28c923a06cb0cbf9915135eae784aee","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","56dd85019d2374449708458f4acf4712d4c6f7b19ae597e910bab6ae75bc9e05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","501260c8b07a6e423fb6ebdea704e732ad529208e4fbbc517836fac8f8ae8895","dac991ec2b7f56b1a39f74a65cca109ec9cde62df848c5bd41524030c894e341","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","d64037d2df4c89d6d2113b1aaad4b59259d448dbd8862bc20003d1caef23b1d4","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","3054859381b164f72e31f3554b795761db2f4a54208587c55bdd690af83b3bc0","44a9aadd9a9e24c7fab7f5b271c8eb89d0e6af07bbc637adae7f15f1c1b6f70e","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd","a425590b7e47c247eb42edb5e4ed742dcf7eb90a1c60f5ed78bcd242896f6e8d","9aea9e19ab167201a1b9297ca13eab639ef6d7cb79189e5c0d13f4f69a500583","f90d85d4cb38445499bdb7e7b013e4f64d99d157a6fa0843e998495ceb27b520","2e178a87e7bf03a067cfb1cf5573e7c4899fcbc9f462a0b0c67d238e39b794a4","901becb8779e1089442378fda5623e607ee4588762a32e7692436f1ea81cf848","8286d84d2567b713fd6a1fdfbb1a0abc8cfa668ee1e0e83d7dd4ade5761f2750","f28dffc6bf9bbd8b9dc156aadb74d11de7faabf547eb9f0aebb8cd03e8750a6c","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","44a8d350600656882fd7462774e32e8d13788313ba2e36d2e8d5437ac91b98df","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b8870b5155d11a273c75718a4f19026da49f91c548703858cd3400d06c3bd3b8","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","8d26ae32e5c9c080e44aee4a67e5ef02b5fda0604e6fecbb7b753c537e5282d9","05c4e792dae38912ba333725cdf8c42d242337d006c0d887f4ce5a7787871a95","cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","d3d0d11d30c9878ada3356b9c36a2754b8c7b6204a41c86bfb1488c08ce263b0","a6493f1f479637ed89a3ebec03f6dc117e3b1851d7e938ac4c8501396b8639a8","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9d00e3a59eff68fa8c40e89953083eeaad1c5b2580ed7da2304424b249ecb237","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","4430dea494b0ee77bf823d9a7c4850a539e1060d5d865316bb23fb393e4f01d7","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","66e655f7c43558bae6703242cbd6c0551a94d0a97204bd4c4bbf7e77f24d1f85","72f7b32e023814078046c036ed4b7ad92414be0aebb63e805c682e14103ae38a","a89d8e67966d085ff971c9900cfa1abdd9732bab66d9c1914ecc15befdf8623d","7dfd0308261bb91b058eb91802690fe3f09192b263e070a19df4d629df29e265","608eb9d411ac76e93a10e05f8aae92b3a5cefc87594219b737df7c8737ba2bd7","cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","18cc75193738e5c88f89facc31481024911f04da53bb3294930ecacd112a8f6e","ba4b031dd45a786c046580b0859c9c82d3f655dceee6f6e2b935228a75aee3ee","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","19ff974f37a672180ddb3c6c2ed72fa319e516d4a5a3b234c65917c88bb77d0a","66408d81ba8962282b1a55da34c6bd767105141f54d0ba14dca330efe0c8f552","c71d7d5ef352a2ff67f064984e72026682b32db525e57e8d0b238e1444f40f2e","821e64ddbdfa10fac5f0aed1c1d4e1f275840400caa96357ddfd15d02e5afba1","1154651a6fbc1d60e448b903ec80f256f6771ced212ee1c3e5121168723621db","29b60c882e5a521114703ad62cbd6cf08459679f9e2a5365ba4cfc77f72eebb2","ca7f76d3ea132bde53dca1a0f33cda95397d20c248e452c050773f01504d9802","2f495fcb913e89c0dace4a79e5bd7214c674ef8a391c8056a77a084eb3c882f9","3c71707988135662b344d59c4f92d2ea37b1f198149b762693db61e30bdaae9a","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[151,201],[201],[151,152,153,154,155,201],[151,153,201],[176,201,208,209],[168,201,208],[201,208],[201,213,214,215,216,217,218,219,220,221,222,223,224],[173,201,208],[200,201,208,229],[176,201,208],[65,201],[201,234,235],[201,232,233,234],[173,176,201,208,227,228],[201,210,228,229,238],[174,201,208],[173,174,201,208,241],[201,244],[173,176,178,181,190,200,201,208],[201,248],[201,249],[201,253,257],[201,260,262,263,264,265,266,267,268,269,270,271,272],[201,260,261,263,264,265,266,267,268,269,270,271,272],[201,261,262,263,264,265,266,267,268,269,270,271,272],[201,260,261,262,264,265,266,267,268,269,270,271,272],[201,260,261,262,263,265,266,267,268,269,270,271,272],[201,260,261,262,263,264,266,267,268,269,270,271,272],[201,260,261,262,263,264,265,267,268,269,270,271,272],[201,260,261,262,263,264,265,266,268,269,270,271,272],[201,260,261,262,263,264,265,266,267,269,270,271,272],[201,260,261,262,263,264,265,266,267,268,270,271,272],[201,260,261,262,263,264,265,266,267,268,269,271,272],[201,260,261,262,263,264,265,266,267,268,269,270,272],[201,260,261,262,263,264,265,266,267,268,269,270,271],[201,278],[201,208,285],[176,181,197,201,234,280,282,283,284],[176,200,201,208,289,290],[158,201],[161,201],[162,167,201],[163,173,174,181,190,200,201],[163,164,173,181,201],[165,201],[166,167,174,182,201],[167,190,197,201],[168,170,173,181,201],[169,201],[170,171,201],[172,173,201],[173,201],[173,174,175,190,200,201],[173,174,175,190,201],[176,181,190,200,201],[173,174,176,177,181,190,197,200,201],[176,178,190,197,200,201],[158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207],[173,179,201],[180,200,201],[170,173,181,190,201],[182,201],[183,201],[161,184,201],[185,199,201,205],[186,201],[187,201],[173,188,201],[188,189,201,203],[173,190,191,192,201],[190,192,201],[190,191,201],[193,201],[194,201],[173,195,196,201],[195,196,201],[167,181,190,197,201],[198,201],[181,199,201],[162,176,187,200,201],[167,201],[190,201,202],[201,203],[201,204],[162,167,173,175,184,190,200,201,203,205],[190,201,206],[201,294],[201,295],[201,274,275,276,277],[200,201,208],[201,301],[174,201,239],[176,201,208,237],[201,307],[176,178,201,211,230,238,239,285,303,331,379,380],[201,208,312,313,314,315,316,317,318,319,320,321,322],[201,311,312,321],[201,312,321],[201,304,311,312,321],[201,311,312,313,314,315,316,317,318,319,320,322],[201,312],[167,201,311,321],[167,201,208,284,307,308,310,323],[201,383],[173,174,201,208],[176,190,201,208],[201,329],[201,327,328],[201,326,330],[176,181,200,201,208,239,247],[201,251,254],[201,251,254,255,256],[201,253],[201,252],[201,282],[201,233,280,281],[201,233,282],[201,335,336,340,367,368,372,375,376],[201,333,334],[201,333],[201,335,376],[201,335,336,372,374,376],[201,373,376,377],[201,376],[201,335,336,375,376],[201,335,336,338,339,375,376],[201,335,336,337,375,376],[201,335,336,340,367,368,369,370,371,375,376],[201,335,336,340,372,375],[201,340,376],[201,342,343,344,345,346,347,348,349,350,351,376],[201,365,376],[201,341,352,360,361,362,363,364,366],[201,345,376],[201,353,354,355,356,357,358,359,376],[201,233,332,377],[201,233,378],[174,176,201,208,301,378],[57,201],[47,48,201],[47,201],[75,201],[69,70,71,201],[69,201],[72,201],[72,73,201],[66,201],[57,72,73,74,79,103,104,105,106,109,110,112,113,114,115,201],[72,79,104,105,201],[57,72,73,76,86,95,96,97,116,201],[72,76,79,80,95,201],[95,96,201],[80,81,82,85,201],[72,76,95,201],[72,76,80,87,201],[84,201],[72,96,201],[95,96,98,201],[57,72,76,79,83,87,95,201],[76,77,201],[72,76,87,96,201],[72,76,79,87,96,201],[72,76,79,87,95,96,201],[72,76,77,79,84,95,96,201],[77,78,87,88,89,90,91,92,93,94,201],[72,76,77,79,86,95,96,116,201],[72,76,79,84,96,201],[57,72,76,79,87,96,201],[76,201],[72,95,201],[72,100,201],[100,101,102,201],[49,72,98,201],[49,72,98,100,116,201],[72,99,201],[107,108,201],[107,201],[72,103,201],[57,72,76,79,201],[49,57,72,73,76,103,201],[111,201],[52,201],[50,51,52,53,54,55,56,201],[50,51,57,201],[46,49,57,63,64,67,201],[46,116,201],[46,116,118,201],[46,49,57,63,201],[46,66,201],[46,57,116,117,201],[46,49,57,67,68,116,117,201],[46,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,145,146,147,148,149,201],[46,57,67,68,116,118,201],[46,201],[46,57,116,118,143,144,201],[46,57,118,142,143,201],[46,57,117,201],[46,116,117,118,201],[60,201],[60,61,62,201],[58,59,201],[176,178,201,211,230,238,239,301,303,331,380,385],[49,57],[49,57,63],[66],[57]],"referencedMap":[[153,1],[151,2],[156,3],[152,1],[154,4],[155,1],[157,2],[210,5],[211,6],[212,7],[213,2],[214,2],[215,2],[216,2],[217,2],[219,2],[225,8],[218,2],[223,2],[220,2],[221,2],[222,2],[224,2],[226,9],[230,10],[209,11],[231,2],[66,12],[236,13],[232,2],[235,14],[234,2],[229,15],[239,16],[240,17],[242,18],[243,17],[245,19],[246,2],[247,20],[248,2],[249,21],[250,22],[258,23],[233,2],[259,2],[261,24],[262,25],[260,26],[263,27],[264,28],[265,29],[266,30],[267,31],[268,32],[269,33],[270,34],[271,35],[272,36],[273,19],[279,37],[237,2],[286,38],[285,39],[241,2],[287,2],[65,2],[288,2],[290,2],[291,40],[158,41],[159,41],[161,42],[162,43],[163,44],[164,45],[165,46],[166,47],[167,48],[168,49],[169,50],[170,51],[171,51],[172,52],[173,53],[174,54],[175,55],[160,2],[207,2],[176,56],[177,57],[178,58],[208,59],[179,60],[180,61],[181,62],[182,63],[183,64],[184,65],[185,66],[186,67],[187,68],[188,69],[189,70],[190,71],[192,72],[191,73],[193,74],[194,75],[195,76],[196,77],[197,78],[198,79],[199,80],[200,81],[201,82],[202,83],[203,84],[204,85],[205,86],[206,87],[292,2],[293,2],[295,88],[294,89],[296,2],[276,2],[297,2],[228,2],[227,2],[274,2],[278,90],[298,2],[299,91],[300,2],[277,2],[302,92],[303,93],[238,94],[304,2],[305,2],[306,2],[308,95],[244,2],[309,2],[381,96],[325,39],[323,97],[322,98],[313,99],[314,100],[321,101],[315,100],[316,99],[317,99],[318,99],[319,102],[312,103],[320,98],[311,2],[324,104],[382,2],[383,2],[384,105],[281,2],[310,2],[380,106],[275,2],[289,107],[328,11],[330,108],[329,109],[327,11],[331,110],[326,111],[251,2],[255,112],[257,113],[256,112],[254,114],[253,115],[252,2],[283,116],[282,117],[280,118],[307,2],[284,2],[46,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[44,2],[41,2],[42,2],[43,2],[1,2],[9,2],[45,2],[373,2],[377,119],[333,2],[335,120],[334,121],[339,122],[375,123],[371,2],[374,124],[336,125],[337,126],[341,126],[340,127],[338,128],[372,129],[370,125],[376,130],[368,2],[369,2],[342,131],[347,125],[349,125],[344,125],[345,131],[351,125],[352,132],[343,125],[348,125],[350,125],[346,125],[366,133],[365,125],[367,134],[361,125],[363,125],[362,125],[358,125],[364,135],[359,125],[360,136],[353,125],[354,125],[355,125],[356,125],[357,125],[378,137],[332,138],[379,139],[301,39],[117,140],[49,141],[48,142],[47,2],[76,143],[75,2],[72,144],[70,145],[69,2],[71,145],[113,146],[74,147],[115,148],[116,149],[106,150],[98,151],[81,152],[110,153],[86,154],[80,155],[82,156],[85,157],[97,158],[79,159],[84,160],[78,161],[88,162],[89,163],[93,164],[92,165],[95,166],[87,167],[91,168],[83,161],[94,163],[90,169],[77,170],[96,171],[105,2],[101,172],[103,173],[99,174],[102,175],[100,176],[109,177],[108,178],[107,179],[73,146],[114,180],[104,181],[111,2],[112,182],[51,2],[53,183],[56,2],[54,183],[55,183],[57,184],[50,2],[52,185],[68,186],[119,187],[120,187],[121,187],[122,187],[123,187],[124,187],[125,187],[126,187],[127,188],[64,189],[67,190],[128,187],[129,191],[130,187],[131,187],[118,192],[132,187],[133,187],[150,193],[134,187],[135,194],[136,187],[137,187],[138,188],[139,187],[140,188],[141,188],[142,195],[145,196],[144,197],[143,198],[146,199],[147,187],[148,187],[149,188],[62,200],[58,200],[63,201],[60,202],[59,2],[61,200]],"exportedModulesMap":[[153,1],[151,2],[156,3],[152,1],[154,4],[155,1],[157,2],[210,5],[211,6],[212,7],[213,2],[214,2],[215,2],[216,2],[217,2],[219,2],[225,8],[218,2],[223,2],[220,2],[221,2],[222,2],[224,2],[226,9],[230,10],[209,11],[231,2],[66,12],[236,13],[232,2],[235,14],[234,2],[229,15],[239,16],[240,17],[242,18],[243,17],[245,19],[246,2],[247,20],[248,2],[249,21],[250,22],[258,23],[233,2],[259,2],[261,24],[262,25],[260,26],[263,27],[264,28],[265,29],[266,30],[267,31],[268,32],[269,33],[270,34],[271,35],[272,36],[273,19],[279,37],[237,2],[286,38],[285,39],[241,2],[287,2],[65,2],[288,2],[290,2],[291,40],[158,41],[159,41],[161,42],[162,43],[163,44],[164,45],[165,46],[166,47],[167,48],[168,49],[169,50],[170,51],[171,51],[172,52],[173,53],[174,54],[175,55],[160,2],[207,2],[176,56],[177,57],[178,58],[208,59],[179,60],[180,61],[181,62],[182,63],[183,64],[184,65],[185,66],[186,67],[187,68],[188,69],[189,70],[190,71],[192,72],[191,73],[193,74],[194,75],[195,76],[196,77],[197,78],[198,79],[199,80],[200,81],[201,82],[202,83],[203,84],[204,85],[205,86],[206,87],[292,2],[293,2],[295,88],[294,89],[296,2],[276,2],[297,2],[228,2],[227,2],[274,2],[278,90],[298,2],[299,91],[300,2],[277,2],[302,92],[303,93],[238,94],[304,2],[305,2],[306,2],[308,95],[244,2],[309,2],[381,203],[325,39],[323,97],[322,98],[313,99],[314,100],[321,101],[315,100],[316,99],[317,99],[318,99],[319,102],[312,103],[320,98],[311,2],[324,104],[382,2],[383,2],[384,105],[281,2],[310,2],[380,106],[275,2],[289,107],[328,11],[330,108],[329,109],[327,11],[331,110],[326,111],[251,2],[255,112],[257,113],[256,112],[254,114],[253,115],[252,2],[283,116],[282,117],[280,118],[307,2],[284,2],[46,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[44,2],[41,2],[42,2],[43,2],[1,2],[9,2],[45,2],[373,2],[377,119],[333,2],[335,120],[334,121],[339,122],[375,123],[371,2],[374,124],[336,125],[337,126],[341,126],[340,127],[338,128],[372,129],[370,125],[376,130],[368,2],[369,2],[342,131],[347,125],[349,125],[344,125],[345,131],[351,125],[352,132],[343,125],[348,125],[350,125],[346,125],[366,133],[365,125],[367,134],[361,125],[363,125],[362,125],[358,125],[364,135],[359,125],[360,136],[353,125],[354,125],[355,125],[356,125],[357,125],[378,137],[332,138],[379,139],[301,39],[117,140],[49,141],[48,142],[47,2],[76,143],[75,2],[72,144],[70,145],[69,2],[71,145],[113,146],[74,147],[115,148],[116,149],[106,150],[98,151],[81,152],[110,153],[86,154],[80,155],[82,156],[85,157],[97,158],[79,159],[84,160],[78,161],[88,162],[89,163],[93,164],[92,165],[95,166],[87,167],[91,168],[83,161],[94,163],[90,169],[77,170],[96,171],[105,2],[101,172],[103,173],[99,174],[102,175],[100,176],[109,177],[108,178],[107,179],[73,146],[114,180],[104,181],[111,2],[112,182],[51,2],[53,183],[56,2],[54,183],[55,183],[57,184],[50,2],[52,185],[68,204],[119,187],[120,187],[121,187],[122,187],[123,187],[124,187],[125,187],[126,187],[127,188],[64,205],[67,206],[128,187],[129,191],[130,187],[131,187],[118,192],[132,187],[133,187],[150,193],[134,187],[135,194],[136,187],[137,187],[138,188],[139,187],[140,188],[141,188],[145,196],[144,197],[143,207],[146,199],[147,187],[148,187],[149,188],[62,200],[58,200],[63,201],[60,202],[59,2],[61,200]],"semanticDiagnosticsPerFile":[153,151,156,152,154,155,157,210,211,212,213,214,215,216,217,219,225,218,223,220,221,222,224,226,230,209,231,66,236,232,235,234,229,239,240,242,243,245,246,247,248,249,250,258,233,259,261,262,260,263,264,265,266,267,268,269,270,271,272,273,279,237,286,285,241,287,65,288,290,291,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,160,207,176,177,178,208,179,180,181,182,183,184,185,186,187,188,189,190,192,191,193,194,195,196,197,198,199,200,201,202,203,204,205,206,292,293,295,294,296,276,297,228,227,274,278,298,299,300,277,302,303,238,304,305,306,308,244,309,381,325,323,322,313,314,321,315,316,317,318,319,312,320,311,324,382,383,384,281,310,380,275,289,328,330,329,327,331,326,251,255,257,256,254,253,252,283,282,280,307,284,46,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,44,41,42,43,1,9,45,373,377,333,335,334,339,375,371,374,336,337,341,340,338,372,370,376,368,369,342,347,349,344,345,351,352,343,348,350,346,366,365,367,361,363,362,358,364,359,360,353,354,355,356,357,378,332,379,301,117,49,48,47,76,75,72,70,69,71,113,74,115,116,106,98,81,110,86,80,82,85,97,79,84,78,88,89,93,92,95,87,91,83,94,90,77,96,105,101,103,99,102,100,109,108,107,73,114,104,111,112,51,53,56,54,55,57,50,52,68,119,120,121,122,123,124,125,126,127,64,67,128,129,130,131,118,132,133,150,134,135,136,137,138,139,140,141,142,145,144,143,146,147,148,149,62,58,63,60,59,61]},"version":"4.5.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../i18n/lib/types.d.ts","../i18n/lib/translator.d.ts","../i18n/lib/index.d.ts","../ml-spec/lib/permitted-structres.d.ts","../ml-spec/lib/attributes.d.ts","../ml-spec/lib/types.d.ts","../ml-spec/lib/get-attr-specs.d.ts","../ml-spec/lib/get-spec-by-tag-name.d.ts","../ml-spec/lib/get-spec.d.ts","../ml-spec/lib/get-ns.d.ts","../ml-spec/lib/index.d.ts","../types/lib/css-syntax.d.ts","../types/lib/types.schema.d.ts","../types/lib/types.d.ts","../types/lib/whatwg/is-custom-element-name.d.ts","../types/lib/check.d.ts","../types/lib/index.d.ts","./src/create-message.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","./src/debug.ts","./src/attr-check.ts","../ml-config/lib/types.d.ts","../ml-config/lib/merge-config.d.ts","../ml-config/lib/utils.d.ts","../ml-config/lib/index.d.ts","../ml-core/lib/ruleset/index.d.ts","../ml-core/lib/convert-ruleset.d.ts","../ml-ast/lib/types.d.ts","../ml-ast/lib/index.d.ts","../ml-core/lib/ml-dom/tokens/token.d.ts","../ml-core/lib/ml-dom/tokens/attribute.d.ts","../ml-core/lib/ml-dom/index.d.ts","../ml-core/lib/ml-dom/helper/mapped-nodes.d.ts","../ml-core/lib/ml-dom/helper/create-node.d.ts","../ml-core/lib/ml-dom/helper/node-store.d.ts","../ml-core/lib/ml-dom/tokens/preprocessor-specific-attribute.d.ts","../ml-core/lib/ml-dom/tokens/abstract-element.d.ts","../ml-core/lib/ml-dom/helper/selector.d.ts","../ml-core/lib/ml-dom/helper/index.d.ts","../ml-core/lib/ml-dom/tokens/node.d.ts","../ml-core/lib/ml-dom/tokens/comment.d.ts","../ml-core/lib/ml-dom/tokens/doctype.d.ts","../ml-core/lib/ml-dom/tokens/text.d.ts","../ml-core/lib/ml-dom/tokens/omitted-element.d.ts","../ml-core/lib/ml-dom/tokens/element.d.ts","../ml-core/lib/ml-dom/tokens/element-close-tag.d.ts","../ml-core/lib/ml-dom/tokens/preprocessor-specific-block.d.ts","../ml-core/lib/ml-dom/tokens/index.d.ts","../ml-core/lib/ml-dom/types.d.ts","../ml-core/lib/ml-dom/helper/walkers.d.ts","../ml-core/lib/ml-dom/document.d.ts","../ml-core/lib/ml-rule/ml-rule-context.d.ts","../ml-core/lib/ml-rule/types.d.ts","../ml-core/lib/ml-rule/create-rule.d.ts","../ml-core/lib/ml-rule/ml-rule.d.ts","../ml-core/lib/ml-rule/index.d.ts","../ml-core/lib/types.d.ts","../ml-core/lib/ml-error/ml-parse-error.d.ts","../ml-core/lib/ml-core.d.ts","../ml-core/lib/plugin/types.d.ts","../ml-core/lib/plugin/plugin.d.ts","../ml-core/lib/plugin/index.d.ts","../ml-core/lib/ml-dom/helper/getindent.d.ts","../ml-core/lib/utils/get-location-from-chars.d.ts","../ml-core/lib/utils/index.d.ts","../ml-core/lib/configs.d.ts","../ml-core/lib/test/index.d.ts","../ml-core/lib/debug.d.ts","../ml-core/lib/index.d.ts","./src/helpers.ts","./src/attr-duplication/index.ts","./src/attr-equal-space-after/index.ts","./src/attr-equal-space-before/index.ts","./src/attr-spacing/index.ts","./src/attr-value-quotes/index.ts","./src/case-sensitive-attr-name/index.ts","./src/case-sensitive-tag-name/index.ts","./src/character-reference/index.ts","./src/class-naming/index.ts","./src/deprecated-attr/index.ts","../html-spec/index.d.ts","./src/deprecated-element/index.ts","./src/disallowed-element/index.ts","./src/doctype/index.ts","./src/id-duplication/index.ts","./src/indentation/index.ts","./src/ineffective-attr/index.ts","./src/invalid-attr/index.ts","./src/landmark-roles/index.ts","./src/no-boolean-attr-value/index.ts","./src/no-default-value/index.ts","./src/no-hard-code-id/index.ts","./src/no-refer-to-non-existent-id/index.ts","./src/no-use-event-handler-attr/index.ts","./src/permitted-contents/array.combination.ts","./src/permitted-contents/unfold-content-models-to-tags.ts","./src/permitted-contents/permitted-content.spec-to-regexp.ts","./src/permitted-contents/index.ts","./src/required-attr/index.ts","./src/required-element/index.ts","./src/required-h1/index.ts","./src/wai-aria/index.ts","./src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/bcp-47/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/css-tree/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/mdx-js__react/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/@types/mini-css-extract-plugin/node_modules/webpack/types.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mustache/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-dev-middleware/index.d.ts","../../../node_modules/http-proxy-middleware/dist/types.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/response-interceptor.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/fix-request-body.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/public.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/index.d.ts","../../../node_modules/http-proxy-middleware/dist/index.d.ts","../../../node_modules/chokidar/types/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/whatwg-mimetype/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","56d0eb242037dacc548873cca58b20691f86a56d5039cd606e0f4c45d57a38d8","7aa09aeffcf2fd3f713bea715d7bc89ba0ad9633f4f64652a79c12fd4ae6ab17","86ae37fbd9fce5f0f7a4ec0c2aee97f504d99624c913463586abc5e642818216","223481752f49a6e25caa5062e5df3f1f1ef5089a72270a105c3221730b8b2a5a","7523bd0d855e27f6562095475f837fcd82c78e6850489bae06a7f59f6321d29d","a82a9449124268aea71fa84b9c156d75cd144300290315b2008e4b42ca302e57","bb50b72f9c1020b2aac5e67d0f36e4ae7fb3ab263685f78fb55c297f884a2dfd","5c56c35a916b5199891eecb6295ae91dfacb92cbbca68de4128474ec8bb7acfd","6204b45bbc0cfc06c6781cba9ecf9c8134151e6384f86694491efd4cafbdd416","0f6e1366207419917adb76cb114757b0d027c11aa0bcf9af6652154ac0f4f37a","4d18ee67886c9b16e20e3768a799429ff828fe367a42fe71378c6c8ada59d232","d0b1e3e11ed7cf3f9a87b9538438920a480f22cf537f2fcc0480702f7fa0b0d7","c4a955fd55bff6cd1742df2e028c89247de400d708f2bad3382cd4a09e948ce3","cf9b781cadd764325012852f799a194eac5f0e2bab89bb8b6ef50494e04a6abf","e001e626dcc1a99ddbf11c1514e30f12c72bb7b333e83763f68a9a246ae8ad8f","d43b711f5ff1cc4317321db198503f7fe2cde277316e3c9798d0ad2982e4c30a","ee1c0d1c8017580054968706d63e85f42384b02fee7673ab436da569426ab9fc","a80a17c6b70c892de129aea289c8e23ff6a1e77dfe1e31ff6b75afc78f4e5609","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"3b9afd718a4fd17bd4c14c3239dbe01d89233bdbfc955bf5a29010703191ee9c","signature":"9764de8ada19d70c82caa9ceac31390f85d303233423ad616a04a1ac72b7d774"},"aa8ac4116ddb0aaf63c7566b2c4fa0103c7ed6b2ef5d2d8902df1cedc46fee94","37445f276c8c74e206908e62ebdc92e20039c2745f213451ec7ad883ecd5071f","9cebc879f5f9bb8bb528044ae54e45946514589ee9a9261b5eab2e05111841d4","9b3c07ddff7e4f0c092c351da5782850390298a9050174156b881bc67f97a5dc","3e846bbed6945fa695b2a999410d4096f485c254230e93e355859af8749d33dd","ee6c6adbdbee0ae00dfefb53144f0cc330a4c5a438ba2c7d1a70350818a73146","9b33db8515f42c53ccf8597e4125b1c6f29b4d7bcad011f5a489f787d898507f","64f40059702696360311795ab2de8b0999704074fe6b1d8c301293d5a7b9c2bf","d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","e3d0465e1f55bba40fa77a57c3e70fb67331c897865f6ea8713fb6c8197747c9","7e2de2b56d19c490055d809656eb2cd4fbaf8d285ed9d1f576859421db7dd997","2aa5097087ac3bba1312d8688ba7b5e4796588b5b10ad3037a3055bf1b839c13","61e065560757fd39d2eb9ce5407825a285929b0095d14017f6d9019d581ec450","b0670bd95983821cbc9cbbebe39784f0887128496ee337b08dba0feb7501fa25","5bfe85a019ea9280bed1be8b184d11fe252576fc4df33bb3efdf8c95fafeb097","53af6ad61e8bd939e7b250e25ff9dbb2346f7be2b829aaa343285ab612def96b","abb47e7e439d63fcdb3895fec01ff44deff3f6c7bc449c71e1ed8776eca362f8","16fe3424b65cbb9120b5063dfd388f58b225bc339a2888b2b68fc34034dde9bd","dd20634d51965217889c41c8e8f7264c244b372d338eb53012917659daff8c3a","e4caeaf86d5d7f90a4afeb90dbd3a33159ebe34d1275a639ce0a22882d6482aa","f5ad87e89e48568546a6d0bd69965040abf89d02c95d6bccca8d25319514ed76","c9e3fd9d1925492ef6b8b555f07baea3b783d1e787c109c6b8be9bf1060f87a9","9722bb10a935428dccd8d17ef0888b91250db3f1ae46a42e21ff6a2816a314dc","541ce43cbf437b6121ce60195c9a747a030b2c57c53db127cefd0e18a45accd3","ca73f933c4576230805b6bded3c43f78f606ff048b14352ed02311bf02bf5db4","9cb27eb30484f306b68f8e2ad83c97b4740cd96b9b5e007626fe7ba7c22be5be","6bb29e58589d171e83dd3f0fba79984dff01db05f5e4003ab471436287ee9d21","2ed9951145168f1e101366322e2bed6c3aa39d5fdcd9c3dbeba9a5d9568ff595","9bdf67331be727e1589a98adf329fcab8a1e0dd2ef167d32edaa62dc0da8d561","e2914caf6dcf0a9c22a849df279fcf70e025f45a8aae75c42d0c97e591a1b532","15b01e8540235300bb4ed46e26f8f389cb676c5af0408b933c3fb9d421c6c5b3","ad5b8145dce3ed9d856baa6d0a833d7347da5596a484e67f7089f36b835414fd","3b9c51c2edcc7134a1c5dd60b76905d71344dc264f9a89c3d203c58e9c2805bb","fb4742d55b29c065fea41c1a9f0f9a4d2eff3c7cd3737be6d8a2605477f88b23","4d67db8363e2676d8293a488b92ca4789905f361adb417b3adb4e9cef24c4cc0","2520d7ae590b2ccdda4b3647cc0cc17363c4fc44411d6e1e13c4bf766c2a83c8","5c801e438c7c9f3c2c8f739edcedc8870c3355e9c5a5f57f48a80b0cc89f8c77","f29e5c795942cb39b4ae749cbbe63c16b835fc72b53a951a8a39a88997469903","c96bf348fc0d9d42565dc423b69cc76bd3e1b7b83e17c382deef170d2065cfb2","7383e41983fd3e4cdbea4a82f255b4facd404cad648ef1f87a2a99e8e5849276","4bb30deeba1445b8cee229d90cb52ec3ae4ae0552c9a457102373f9aa795c4b0","4edba813e2167ea3232803eefd0a4a582623b1ce18877b37be870e44a5e05b05","c0361b15220d7423fa2d45c856e3869085a5545d58ce3d42f5970b449b83cf3f","b75fa94ba821ec5471ea98431612815152b1f4687d7100eaaa4b172fab9f24f8","9d05a5c14da47f875fce5e7b911a6e0f79038df59ee3c61d5448746fbe6b1120","e58bf85a801daba2927f22010cb42030a43310c0af4ba86a1be12ed9021cbd3c","1f3979af250f115aa5f4229cefa2241cab33831ed7a351e9d10c416b8bc1be39","3ffa52413f929d194a1eab5ec4b4bf5faf57ffd0b5f62d9ddfbab97c50240179","1a7a771e9cb6a4bb74e92db9a6aa8df5f0e72387e2ead7d47bdfdcceb2fdca14",{"version":"d6ccf220d0e9912c9078882e6c48ab7c54f9af5b79646a308f0758fc6aacc804","signature":"886d6d31d8dc756df87b1aae0dce053c94c403e1bf80f92c751238733666d21d"},"f812b18a5852990bedf1e0935b9985eeb65da9f2cf471b744aa8b5311a20c062","e27df3e134cd199055f6708781d1fbd65e88deccba1175ea902459a7d5564215","c833e8bfcd4ab8332968c17d5fec28be508685786808257d7748b0e858e63fcc","d538e20239797185a1ec04083deb9d080e1f20c221891e054c84f896189be6c5","12825df1a4e4782054965cf8b919f922f03568628b92826c192e79d648d88bb5","267c58d12dc43218f7cc8a25e9880afb57120134f8e9be390e4d2d8b0786f258","dcd08fc176039062f50848dea3f78e22fd0030552543dac7d224cf0b12b1b0f7","b5cea6302f6b5fc45eec180d0a1fc76c43e3d5ed4da2a35eec83352069aa7667",{"version":"541ca654ee657b17efe53af48e1756067f912d69f7cb383013f97bc5123a687f","signature":"2750197852a883d374b40067ae1d710a7d1ed4df1f19fa40c5f6743ef2c1d9c7"},"3a5c2b4b4f17fa7683ca7a6c73ff97b6e51fd8cb168bb0d4ceb2220a5ba358ec","5983be11dccf50796dd69cbe422f9d9c8966090c276ec01c558db4741d394165","b53caf23dd4dc58292d43afd3df03d57cf1be358fbcafc65a84e7054decefd35","7056026faf48b146cc9fc402faa071f8d680496c1f6afbcc1c48a8826b42f661","a9d2619408faac61fe93f9def534fc6fed2935cbd8b7bcca76045ef93d896a97","9d061169928991d23d7fd83f9bb7ac6b5fd3f4b58d8da6e834f609f3edd41b8e","ead6d2c5a4cdb642cfca32449db0276c6bb4137780ac662dbcea4098c9510995","57604a58f4726077ef79aa4ed5e6e31069765235259c94f06b8e5cc025fbbd99",{"version":"dc02983023cb378136d3015e94a11fd696e3edad4c7e7f299688e70416e06c08","signature":"71834e5dacb2178a452710a4b7040022a2b5373efe58ac758c0bc8b8f834c758"},"ebe49d89a875e7290133d9b32a5210e614715b89abd5b94afad3ee8023c80ae5","dbee7825c56b43528ca7fa04d7d2791010fd9cca69d8e8b4c941a04a3408a5eb",{"version":"8c598f11acd71dc6481620ee9c5db615f8bbbc4c49eba4c133b3e7796da492ea","signature":"4e0cb1009b90882929ea9842df71bdb656aafdea3c046c8886814cbb46fae41f"},"3e38fff391dcaa814e284dc975b6e7d43443fe25d338be818a0cb98d723b74d0",{"version":"096df79bcd934ce9b4cb81c2a6ac27da07e535cca2524f3b76dde855e3bc1032","signature":"4e0cb1009b90882929ea9842df71bdb656aafdea3c046c8886814cbb46fae41f"},{"version":"287b9af7de4c1174bc6f504372a21e7da75e103fdaf2140bfbf83a97a4f93475","signature":"1bb1134c57bdd455f361e5606a7ad530a71708ddd1422cf30335dc744fd6e1a6"},{"version":"75ed125570eff8d305119bcf1d5adc0035fe4465e3809d532f6d73c294b35acf","signature":"305850db2f2331e691957bed21b1ebd1162886f5d6add2bdaafd394596cc69a1"},"ff3894d50d686cc1f961cfecabd3d84c313520f4020b38e6bc1161e186a6e433",{"version":"7e429b09200b85eb80003739018ec291930775b4c9934f96f2ee0f21b3f05555","signature":"21db6a18c9570e7e8e5e69ce65fabffca9f3d4027ccdc983ca137d97b6d765e5"},{"version":"01d5d0a5dd134264ee0ab3c993c724febba6d0aef978493d99939ec482f4d4da","signature":"398dcb58eda19c3628fdb3f1124eeff46c3cab7222a06a837de080658e338339"},{"version":"1c14a50f1546137fd123d281a21a4b0aa862f3d82e149628aeec15686e17cb4b","signature":"a1ba43a47cf15286b583263b23e2a420c7c678dee4fe78190aa4d22b7ef8ffd1"},"c963e6e86f4062e864c9f9e585004ff371fba0a2d1be82c6b1dfd399d9b12b1c","10aeb5e751a1a7ceb00ede98f133f0b46a7ceb13ae4122cb70bbbc44184c249d",{"version":"daa63dd3693e4df8c6fdf7287fccc61d744c24df256e18ab581ea1e753c0e117","signature":"28ea544140e8a56bbb6d98d0162ba47538941bed402f206750a6f0cc774f7f16"},{"version":"a11624424145731a343b0dd26f9c4c3ea780be12a45c8448473471c06615316e","signature":"af5002011b6ea0914869f324508478cf380d9de85cb1960cb6d8419d2180e64f"},"272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","e2a56bb80f66ac0b6767fd7bb6b337ac3cb9cd4a368b13491e3fd1b5e26d93d6","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"6dfd135b38ab97c536d9c966fc5a5a879a19c6ed75c2c9633902be1ef0945ff7","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","65cfd1c0bc729fbc2b49fe66bc5ebddba5aa3a978c748e1d2e0d07f502238ce2","713cb5c36e9452e3573d87fd4a911bfd4339aa21a7293f764689ae2dce4f198b",{"version":"42c1b00421aa4d5f03b85a2639c1573d32bd82533f34423bbf1f5fb2b0ddc4d8","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","62cc84c2971b16cc82e1f7cb1dac7d8c70b589d492fbc2f6efbcbfc53b61d514","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","a356dbb234a629456ea426c8eef1d8296a2fa4266afb6defb3691ad07140c84e","1cc502622a7f773e7cd75ecacd64d0bc83a2a6442dc16a7081f968702edf5051","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d168ca1638b27c95909b68805c84b8018dba87630bb1e4cc99be4ccdf119f39d","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","af9abc3144d279b29affb0e6dd842609eca65fb44c712368f6a89bb264b34ef4",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","ab9cce8526b1878586804696261de5505885a9b9bbe8af15e99b7387c81f2b6d","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e",{"version":"e9f2cdc4e98e73a606ff68c470a8cb4f23cd638c47649d71b90a2d9413102080","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"e4be0ff844c90e9112c7cde181f9f76c72272b7b137485f6fa7d1c66a2cc84bd","affectsGlobalScope":true},"1a4f6207fac7bf7e94957a5c7cac0c33d07499bab60a197dabea4f452a544cd8","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","71b4b77aaa2abca926f7195cca82367ca384f40e126201cf07a22b5efd5617e5","4b0011a86baef7b2d7a95ce25e729c96f28c923a06cb0cbf9915135eae784aee","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","56dd85019d2374449708458f4acf4712d4c6f7b19ae597e910bab6ae75bc9e05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","7a514f06ed8263440e9b50047f2532b9188c9c68422b4607f9d23affaebb3e63","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","711596a8f7e8a84ea3985bb2d03f1a6681ac7ecd132d48141d6d6a1287513d27","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","630ca25a5f50f64b0eacc40ba4c95f4469ec9dedb76ce522ee34806cbac63883","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","3054859381b164f72e31f3554b795761db2f4a54208587c55bdd690af83b3bc0","44a9aadd9a9e24c7fab7f5b271c8eb89d0e6af07bbc637adae7f15f1c1b6f70e","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd","194adacd491e778e9cdcbf3e47a9656b8ef9c3cc51a4448bfddf6305d9645986","9aea9e19ab167201a1b9297ca13eab639ef6d7cb79189e5c0d13f4f69a500583","f90d85d4cb38445499bdb7e7b013e4f64d99d157a6fa0843e998495ceb27b520","2e178a87e7bf03a067cfb1cf5573e7c4899fcbc9f462a0b0c67d238e39b794a4","901becb8779e1089442378fda5623e607ee4588762a32e7692436f1ea81cf848","8286d84d2567b713fd6a1fdfbb1a0abc8cfa668ee1e0e83d7dd4ade5761f2750","f28dffc6bf9bbd8b9dc156aadb74d11de7faabf547eb9f0aebb8cd03e8750a6c","ca7f76d3ea132bde53dca1a0f33cda95397d20c248e452c050773f01504d9802","2f495fcb913e89c0dace4a79e5bd7214c674ef8a391c8056a77a084eb3c882f9","3c71707988135662b344d59c4f92d2ea37b1f198149b762693db61e30bdaae9a","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[151,201],[201],[151,152,153,154,155,201],[151,153,201],[176,201,208,209],[168,201,208],[201,208],[201,213,214,215,216,217,218,219,220,221,222,223,224],[173,201,208],[200,201,208,229],[176,201,208],[65,201],[201,235,236],[201,232,233,234,235],[201,236],[173,176,201,208,227,228],[201,210,228,229,239],[174,201,208],[173,174,201,208,242],[201,245],[173,176,178,181,190,200,201,208],[201,249],[201,250],[201,256,258],[201,261,263,264,265,266,267,268,269,270,271,272,273],[201,261,262,264,265,266,267,268,269,270,271,272,273],[201,262,263,264,265,266,267,268,269,270,271,272,273],[201,261,262,263,265,266,267,268,269,270,271,272,273],[201,261,262,263,264,266,267,268,269,270,271,272,273],[201,261,262,263,264,265,267,268,269,270,271,272,273],[201,261,262,263,264,265,266,268,269,270,271,272,273],[201,261,262,263,264,265,266,267,269,270,271,272,273],[201,261,262,263,264,265,266,267,268,270,271,272,273],[201,261,262,263,264,265,266,267,268,269,271,272,273],[201,261,262,263,264,265,266,267,268,269,270,272,273],[201,261,262,263,264,265,266,267,268,269,270,271,273],[201,261,262,263,264,265,266,267,268,269,270,271,272],[201,279],[201,208,286],[176,181,197,201,235,281,283,284,285],[176,200,201,208,290,291],[158,201],[161,201],[162,167,201],[163,173,174,181,190,200,201],[163,164,173,181,201],[165,201],[166,167,174,182,201],[167,190,197,201],[168,170,173,181,201],[169,201],[170,171,201],[172,173,201],[173,201],[173,174,175,190,200,201],[173,174,175,190,201],[176,181,190,200,201],[173,174,176,177,181,190,197,200,201],[176,178,190,197,200,201],[158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207],[173,179,201],[180,200,201],[170,173,181,190,201],[182,201],[183,201],[161,184,201],[185,199,201,205],[186,201],[187,201],[173,188,201],[188,189,201,203],[173,190,191,192,201],[190,192,201],[190,191,201],[193,201],[194,201],[173,195,196,201],[195,196,201],[167,181,197,201],[198,201],[181,199,201],[162,176,187,200,201],[167,201],[190,201,202],[201,203],[201,204],[162,167,173,175,184,190,200,201,203,205],[190,201,206],[201,295],[201,296],[201,275,276,277,278],[200,201,208],[201,302],[174,201,240],[176,201,208,238],[201,308],[176,201,209,302],[176,178,201,211,230,239,240,302,304,326,332,333],[201,208,313,314,315,316,317,318,319,320,321,322,323],[201,312,313,322],[201,313,322],[201,305,312,313,322],[201,312,313,314,315,316,317,318,319,320,321,323],[201,313],[167,201,312,322],[167,201,208,285,308,309,311,324],[201,336],[173,174,201,208],[176,190,201,208],[201,330],[201,328,329],[201,327,331],[176,181,200,201,208,240,248],[201,252,253],[201,252,253,254,255],[201,257],[201,283],[201,234,281,282],[201,234,283],[57,201],[47,48,201],[47,201],[75,201],[69,70,71,201],[69,201],[72,201],[72,73,201],[66,201],[57,72,73,74,79,103,104,105,106,109,110,112,113,114,115,201],[72,79,104,105,201],[57,72,73,76,86,95,96,97,116,201],[72,76,79,80,95,201],[95,96,201],[80,81,82,85,201],[72,76,95,201],[72,76,80,87,201],[84,201],[72,96,201],[95,96,98,201],[57,72,76,79,83,87,95,201],[76,77,201],[72,76,87,96,201],[72,76,79,87,96,201],[72,76,79,87,95,96,201],[72,76,77,79,84,95,96,201],[77,78,87,88,89,90,91,92,93,94,201],[72,76,77,79,86,95,96,116,201],[72,76,79,84,96,201],[57,72,76,79,87,96,201],[76,201],[72,95,201],[72,100,201],[100,101,102,201],[49,72,98,201],[49,72,98,100,116,201],[72,99,201],[107,108,201],[107,201],[72,103,201],[57,72,76,79,201],[49,57,72,73,76,103,201],[111,201],[52,201],[50,51,52,53,54,55,56,201],[50,51,57,201],[46,49,57,63,64,67,201],[46,116,201],[46,116,117,201],[46,49,57,63,201],[46,66,201],[46,57,116,128,201],[46,49,57,67,68,116,201],[46,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,145,146,147,148,149,201],[46,57,67,68,116,117,201],[46,201],[46,57,116,117,143,144,201],[46,57,117,142,143,201],[46,57,128,201],[46,116,117,128,201],[60,201],[60,61,62,201],[58,59,201],[116],[66],[49,57,67,116],[57,72,116,121,122,123,124,126,133,148],[57,116],[57]],"referencedMap":[[153,1],[151,2],[156,3],[152,1],[154,4],[155,1],[157,2],[210,5],[211,6],[212,7],[213,2],[214,2],[215,2],[216,2],[217,2],[219,2],[225,8],[218,2],[223,2],[220,2],[221,2],[222,2],[224,2],[226,9],[230,10],[209,11],[231,2],[66,12],[237,13],[232,2],[236,14],[233,15],[235,2],[229,16],[240,17],[241,18],[243,19],[244,18],[246,20],[247,2],[248,21],[249,2],[250,22],[251,23],[259,24],[234,2],[260,2],[262,25],[263,26],[261,27],[264,28],[265,29],[266,30],[267,31],[268,32],[269,33],[270,34],[271,35],[272,36],[273,37],[274,20],[280,38],[238,2],[287,39],[286,40],[242,2],[288,2],[65,2],[289,2],[291,2],[292,41],[158,42],[159,42],[161,43],[162,44],[163,45],[164,46],[165,47],[166,48],[167,49],[168,50],[169,51],[170,52],[171,52],[172,53],[173,54],[174,55],[175,56],[160,2],[207,2],[176,57],[177,58],[178,59],[208,60],[179,61],[180,62],[181,63],[182,64],[183,65],[184,66],[185,67],[186,68],[187,69],[188,70],[189,71],[190,72],[192,73],[191,74],[193,75],[194,76],[195,77],[196,78],[197,79],[198,80],[199,81],[200,82],[201,83],[202,84],[203,85],[204,86],[205,87],[206,88],[293,2],[294,2],[296,89],[295,90],[297,2],[277,2],[298,2],[228,2],[227,2],[275,2],[279,91],[299,2],[300,92],[301,2],[278,2],[303,93],[304,94],[239,95],[305,2],[306,2],[307,2],[309,96],[245,2],[310,2],[326,97],[334,98],[324,99],[323,100],[314,101],[315,102],[322,103],[316,102],[317,101],[318,101],[319,101],[320,104],[313,105],[321,100],[312,2],[325,106],[335,2],[336,2],[337,107],[282,2],[311,2],[333,108],[276,2],[290,109],[329,11],[331,110],[330,111],[328,11],[332,112],[327,113],[252,2],[254,114],[256,115],[255,114],[253,2],[258,116],[257,2],[284,117],[283,118],[281,119],[308,2],[285,2],[46,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[44,2],[41,2],[42,2],[43,2],[1,2],[9,2],[45,2],[302,40],[128,120],[49,121],[48,122],[47,2],[76,123],[75,2],[72,124],[70,125],[69,2],[71,125],[113,126],[74,127],[115,128],[116,129],[106,130],[98,131],[81,132],[110,133],[86,134],[80,135],[82,136],[85,137],[97,138],[79,139],[84,140],[78,141],[88,142],[89,143],[93,144],[92,145],[95,146],[87,147],[91,148],[83,141],[94,143],[90,149],[77,150],[96,151],[105,2],[101,152],[103,153],[99,154],[102,155],[100,156],[109,157],[108,158],[107,159],[73,126],[114,160],[104,161],[111,2],[112,162],[51,2],[53,163],[56,2],[54,163],[55,163],[57,164],[50,2],[52,165],[68,166],[118,167],[119,167],[120,167],[121,167],[122,167],[123,167],[124,167],[125,167],[126,168],[64,169],[67,170],[127,167],[129,171],[130,167],[131,167],[117,172],[132,167],[133,167],[150,173],[134,167],[135,174],[136,167],[137,167],[138,168],[139,167],[140,168],[141,168],[142,175],[145,176],[144,177],[143,178],[146,179],[147,167],[148,167],[149,168],[62,180],[58,180],[63,181],[60,182],[59,2],[61,180]],"exportedModulesMap":[[153,1],[151,2],[156,3],[152,1],[154,4],[155,1],[157,2],[210,5],[211,6],[212,7],[213,2],[214,2],[215,2],[216,2],[217,2],[219,2],[225,8],[218,2],[223,2],[220,2],[221,2],[222,2],[224,2],[226,9],[230,10],[209,11],[231,2],[66,12],[237,13],[232,2],[236,14],[233,15],[235,2],[229,16],[240,17],[241,18],[243,19],[244,18],[246,20],[247,2],[248,21],[249,2],[250,22],[251,23],[259,24],[234,2],[260,2],[262,25],[263,26],[261,27],[264,28],[265,29],[266,30],[267,31],[268,32],[269,33],[270,34],[271,35],[272,36],[273,37],[274,20],[280,38],[238,2],[287,39],[286,40],[242,2],[288,2],[65,2],[289,2],[291,2],[292,41],[158,42],[159,42],[161,43],[162,44],[163,45],[164,46],[165,47],[166,48],[167,49],[168,50],[169,51],[170,52],[171,52],[172,53],[173,54],[174,55],[175,56],[160,2],[207,2],[176,57],[177,58],[178,59],[208,60],[179,61],[180,62],[181,63],[182,64],[183,65],[184,66],[185,67],[186,68],[187,69],[188,70],[189,71],[190,72],[192,73],[191,74],[193,75],[194,76],[195,77],[196,78],[197,79],[198,80],[199,81],[200,82],[201,83],[202,84],[203,85],[204,86],[205,87],[206,88],[293,2],[294,2],[296,89],[295,90],[297,2],[277,2],[298,2],[228,2],[227,2],[275,2],[279,91],[299,2],[300,92],[301,2],[278,2],[303,93],[304,94],[239,95],[305,2],[306,2],[307,2],[309,96],[245,2],[310,2],[326,97],[334,98],[324,99],[323,100],[314,101],[315,102],[322,103],[316,102],[317,101],[318,101],[319,101],[320,104],[313,105],[321,100],[312,2],[325,106],[335,2],[336,2],[337,107],[282,2],[311,2],[333,108],[276,2],[290,109],[329,11],[331,110],[330,111],[328,11],[332,112],[327,113],[252,2],[254,114],[256,115],[255,114],[253,2],[258,116],[257,2],[284,117],[283,118],[281,119],[308,2],[285,2],[46,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[44,2],[41,2],[42,2],[43,2],[1,2],[9,2],[45,2],[302,40],[128,120],[49,121],[48,122],[47,2],[76,123],[75,2],[72,124],[70,125],[69,2],[71,125],[113,126],[74,127],[115,128],[116,129],[106,130],[98,131],[81,132],[110,133],[86,134],[80,135],[82,136],[85,137],[97,138],[79,139],[84,140],[78,141],[88,142],[89,143],[93,144],[92,145],[95,146],[87,147],[91,148],[83,141],[94,143],[90,149],[77,150],[96,151],[105,2],[101,152],[103,153],[99,154],[102,155],[100,156],[109,157],[108,158],[107,159],[73,126],[114,160],[104,161],[111,2],[112,162],[51,2],[53,163],[56,2],[54,163],[55,163],[57,164],[50,2],[52,165],[68,166],[118,167],[119,167],[120,167],[121,167],[122,167],[123,167],[124,167],[125,167],[126,183],[64,169],[67,184],[127,167],[129,171],[130,167],[131,167],[117,185],[132,167],[133,167],[150,186],[134,167],[135,187],[136,167],[137,167],[138,183],[139,167],[140,183],[141,183],[145,187],[144,188],[143,178],[146,183],[147,167],[148,167],[149,183],[62,180],[58,180],[63,181],[60,182],[59,2],[61,180]],"semanticDiagnosticsPerFile":[153,151,156,152,154,155,157,210,211,212,213,214,215,216,217,219,225,218,223,220,221,222,224,226,230,209,231,66,237,232,236,233,235,229,240,241,243,244,246,247,248,249,250,251,259,234,260,262,263,261,264,265,266,267,268,269,270,271,272,273,274,280,238,287,286,242,288,65,289,291,292,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,160,207,176,177,178,208,179,180,181,182,183,184,185,186,187,188,189,190,192,191,193,194,195,196,197,198,199,200,201,202,203,204,205,206,293,294,296,295,297,277,298,228,227,275,279,299,300,301,278,303,304,239,305,306,307,309,245,310,326,334,324,323,314,315,322,316,317,318,319,320,313,321,312,325,335,336,337,282,311,333,276,290,329,331,330,328,332,327,252,254,256,255,253,258,257,284,283,281,308,285,46,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,44,41,42,43,1,9,45,302,128,49,48,47,76,75,72,70,69,71,113,74,115,116,106,98,81,110,86,80,82,85,97,79,84,78,88,89,93,92,95,87,91,83,94,90,77,96,105,101,103,99,102,100,109,108,107,73,114,104,111,112,51,53,56,54,55,57,50,52,68,118,119,120,121,122,123,124,125,126,64,67,127,129,130,131,117,132,133,150,134,135,136,137,138,139,140,141,142,145,144,143,146,147,148,149,62,58,63,60,59,61]},"version":"4.5.4"}
|