@instructure/ui-codemods 8.20.1-snapshot.5 → 8.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [8.21.0](https://github.com/instructure/instructure-ui/compare/v8.20.0...v8.21.0) (2022-03-30)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-codemods
9
+
6
10
  # [8.20.0](https://github.com/instructure/instructure-ui/compare/v8.19.0...v8.20.0) (2022-03-22)
7
11
 
8
12
  **Note:** Version bump only for package @instructure/ui-codemods
package/README.md CHANGED
@@ -53,6 +53,29 @@ This codemod upgrades more complex changes like Button, also outputs any manual
53
53
  jscodeshift -t node_modules/@instructure/ui-codemods/lib/updateV7Props.js <path> -fileName updateV7PropsWarnings.txt
54
54
  ```
55
55
 
56
+ ### Codemod for breaking changes after updating the dependencies to V8
57
+
58
+ ```sh
59
+ jscodeshift -t node_modules/@instructure/ui-codemods/lib/updateV8Breaking.js <path>
60
+ ```
61
+
62
+ This codemod updates breaking changes after a v8 upgrade. Run this in a project after you have upgraded your dependencies to InstUI v8.
63
+
64
+ ### Codemod for adding a wrapper to ReactDOM.render()
65
+
66
+ ```sh
67
+ jscodeshift -t node_modules/@instructure/ui-codemods/lib/updateV8ReactDOM.js <path> -fileName updateV8ReactDOM.txt
68
+ ```
69
+
70
+ This codemod updates ReactDOM.render calls with a given wrapper, for example:
71
+ ReactDOM.render(<div />) -> ReactDOM.render(<Root><div /></Root>).
72
+ Parameters (all optional):
73
+
74
+ - `fileName`: supplying this will append to the given file the warnings.
75
+ - `wrapperPath`: The import path for the wrapper, default value is '@canvas/react-root'.
76
+ - `wrapperTag`: The tag to wrap render calls in, default is 'Root'.
77
+ - `isDefaultImport`: Is the given tag a defult import? Default value is `true`.
78
+
56
79
  [npm]: https://img.shields.io/npm/v/@instructure/ui-codemods.svg
57
80
  [npm-url]: https://npmjs.com/package/@instructure/ui-codemods
58
81
  [license-badge]: https://img.shields.io/npm/l/instructure-ui.svg?style=flat-square
@@ -23,8 +23,11 @@
23
23
  */
24
24
 
25
25
  import {
26
+ CallExpression,
26
27
  Collection,
28
+ Identifier,
27
29
  ImportDeclaration,
30
+ ImportDefaultSpecifier,
28
31
  ImportSpecifier,
29
32
  JSCodeshift,
30
33
  JSXAttribute,
@@ -36,7 +39,9 @@ import {
36
39
  JSXSpreadAttribute,
37
40
  JSXSpreadChild,
38
41
  JSXText,
39
- Literal
42
+ Literal,
43
+ MemberExpression,
44
+ SpreadElement
40
45
  } from 'jscodeshift'
41
46
  import type { LiteralKind } from 'ast-types/gen/kinds'
42
47
  import fs from 'fs'
@@ -260,7 +265,7 @@ function renameElements(
260
265
  for (const elem of root) {
261
266
  if (isJSXElement(elem)) {
262
267
  renameElement(elem, currentName, newName)
263
- } else {
268
+ } else if (!(isJSXText(elem) && elem.value.trim().length === 0)) {
264
269
  printWarning(
265
270
  filePath,
266
271
  elem.loc?.start.line,
@@ -325,13 +330,15 @@ function renameElement(node: JSXElement, currentName: string, newName: string) {
325
330
  }
326
331
 
327
332
  /**
328
- * Figures out if a certain component is imported in a AST tree, e.g.
333
+ * Figures out if a certain component is imported in a AST tree.
329
334
  * If it's imported and renamed (e.g. `import {Button as BTN} ...`) then it
330
335
  * returns the renamed name of the import
331
336
  * @param j the JSCodeshift API
332
337
  * @param root the collection to check
333
- * @param name imported name, e.g. Button
334
- * @param path import path, or paths, e.g. @instructure/ui-buttons.
338
+ * @param name imported name, e.g. Button. If its a default import its ignored
339
+ * @param path import path, or paths, e.g. `@instructure/ui-buttons`. Uses
340
+ * `string.indexOf()` to search for matches, so substring matches are returned
341
+ * too.
335
342
  * @return the name its imported as, undefined if it's not imported
336
343
  */
337
344
  function findImport(
@@ -346,6 +353,10 @@ function findImport(
346
353
  importPaths.forEach((path) => {
347
354
  if (path.node.specifiers) {
348
355
  path.node.specifiers.forEach((specifier) => {
356
+ if (isImportDefaultSpecifier(specifier) && specifier.local) {
357
+ importedName = specifier.local.name
358
+ return
359
+ }
349
360
  if (isImportSpecifier(specifier) && specifier.imported.name === name) {
350
361
  // is it imported via an alias? e.g. import { A as B } ..
351
362
  if (
@@ -365,6 +376,39 @@ function findImport(
365
376
  return importedName
366
377
  }
367
378
 
379
+ /**
380
+ * Finds every imported component from the given path in the given collection.
381
+ * If an import is renamed it returns the renamed name. If `exactMatch` is true
382
+ * importPath is searched via `string.indexOf()` so it can be a substring
383
+ * For example calling it with "@instructure/ui` on a collection with
384
+ * `exactMatch = true` with this collection:
385
+ * ```
386
+ * import { a } from "@instructure/ui"
387
+ * import { b } from "@instructure/ui-buttons"
388
+ * import { c } from "react"
389
+ * ```
390
+ * returns `["a", "b"]`
391
+ */
392
+ function findEveryImport(
393
+ j: JSCodeshift,
394
+ root: Collection,
395
+ importPath: string,
396
+ exactMatch = true
397
+ ) {
398
+ const imports: string[] = []
399
+ const everyInstUIImport = findImportPath(j, root, importPath, exactMatch)
400
+ everyInstUIImport.forEach((path) => {
401
+ if (path.node.specifiers) {
402
+ path.node.specifiers.forEach((specifier) => {
403
+ if (specifier.local) {
404
+ imports.push(specifier.local.name)
405
+ }
406
+ })
407
+ }
408
+ })
409
+ return imports
410
+ }
411
+
368
412
  /**
369
413
  * Adds a new import if needed (not imported yet). If its imported it returns
370
414
  * the value under it's imported at (e.g. an alias).
@@ -374,13 +418,15 @@ function findImport(
374
418
  * @param pathToAdd import path, or paths. If it
375
419
  * has multiple values it will search them all for this import, if it's not
376
420
  * found it will use the first element of the array to add the import.
421
+ * @param isDefaultImport If true its added as a default import
377
422
  * @returns the name under it's imported at
378
423
  */
379
424
  function addImportIfNeeded(
380
425
  j: JSCodeshift,
381
426
  root: Collection,
382
427
  name: string,
383
- pathToAdd: string | string[]
428
+ pathToAdd: string | string[],
429
+ isDefaultImport = false
384
430
  ) {
385
431
  // if its imported already return the import name
386
432
  const importedName = findImport(j, root, name, pathToAdd)
@@ -392,40 +438,44 @@ function addImportIfNeeded(
392
438
  root,
393
439
  pathToAdd
394
440
  )
441
+ const importSpecifier = isDefaultImport
442
+ ? j.importDefaultSpecifier(j.identifier(name))
443
+ : j.importSpecifier(j.identifier(name))
395
444
  if (paths.length == 0) {
396
445
  // not imported yet, just add a new line
397
446
  const newPath = typeof pathToAdd === 'string' ? pathToAdd : pathToAdd[0]
398
447
  root
399
448
  .find(j.ImportDeclaration)
400
449
  .at(-1)
401
- .insertAfter(
402
- j.importDeclaration(
403
- [j.importSpecifier(j.identifier(name))],
404
- j.literal(newPath)
405
- )
406
- )
450
+ .insertAfter(j.importDeclaration([importSpecifier], j.literal(newPath)))
407
451
  } else {
408
- paths.nodes()[0].specifiers!.push(j.importSpecifier(j.identifier(name)))
452
+ paths.nodes()[0].specifiers!.push(importSpecifier)
409
453
  }
410
454
  return name
411
455
  }
412
456
 
413
457
  /**
414
- * Finds all lines that import from importPath, e.g.
415
- * `findImportPath(j, root, ["@instructure/ui", "@instructure/ui-buttons"])`
416
- * with the following root:
458
+ * Finds all lines that import from `importPath`. For example with the
459
+ * following root:
417
460
  * ```
418
461
  * import { a } from "@instructure/ui"
419
462
  * import { b } from "@instructure/ui-buttons"
420
463
  * import { c } from "react"
421
464
  * ```
422
- * will return lines 1 and 2
465
+ * `findImportPath(j, root, "@instructure/ui-buttons")`
466
+ * will return line 2.
467
+ * If exactMatch is `false` It uses `string.indexOf()` to find results, so
468
+ * it returns substring matches too.
423
469
  */
424
470
  function findImportPath(
425
471
  j: JSCodeshift,
426
472
  root: Collection,
427
- importPath: string | string[]
473
+ importPath: string | string[],
474
+ exactMatch = true
428
475
  ) {
476
+ const matcher = exactMatch
477
+ ? (a: string, b: string) => a === b
478
+ : (a: string, b: string) => a.indexOf(b) > -1
429
479
  return (
430
480
  root
431
481
  .find(j.ImportDeclaration)
@@ -434,12 +484,12 @@ function findImportPath(
434
484
  const importSource = astPath.node.source.value // e.g. "@instructure/ui"
435
485
  if (importSource && typeof importSource === 'string') {
436
486
  if (typeof importPath === 'string') {
437
- if (importSource.indexOf(importPath) > -1) {
487
+ if (matcher(importSource, importPath)) {
438
488
  return true
439
489
  }
440
490
  } else {
441
491
  for (const anImport of importPath) {
442
- if (importSource === anImport) {
492
+ if (matcher(importSource, anImport)) {
443
493
  return true
444
494
  }
445
495
  }
@@ -467,10 +517,40 @@ function removeAllChildren(element: JSXElement) {
467
517
 
468
518
  // type checkers
469
519
  type astElem = { type: string }
520
+ function isSpreadElement(elem?: astElem | null): elem is SpreadElement {
521
+ return elem !== null && elem !== undefined && elem.type === 'SpreadElement'
522
+ }
523
+
470
524
  function isImportSpecifier(elem?: astElem | null): elem is ImportSpecifier {
471
525
  return elem !== null && elem !== undefined && elem.type === 'ImportSpecifier'
472
526
  }
473
527
 
528
+ function isImportDefaultSpecifier(
529
+ elem?: astElem | null
530
+ ): elem is ImportDefaultSpecifier {
531
+ return (
532
+ elem !== null &&
533
+ elem !== undefined &&
534
+ elem.type === 'ImportDefaultSpecifier'
535
+ )
536
+ }
537
+
538
+ function isLiteral(elem?: astElem | null): elem is Literal {
539
+ return elem !== null && elem !== undefined && elem.type === 'Literal'
540
+ }
541
+
542
+ function isIdentifier(elem?: astElem | null): elem is Identifier {
543
+ return elem !== null && elem !== undefined && elem.type === 'Identifier'
544
+ }
545
+
546
+ function isMemberExpression(elem?: astElem | null): elem is MemberExpression {
547
+ return elem !== null && elem !== undefined && elem.type == 'MemberExpression'
548
+ }
549
+
550
+ function isCallExpression(elem?: astElem | null): elem is CallExpression {
551
+ return elem !== null && elem !== undefined && elem.type == 'CallExpression'
552
+ }
553
+
474
554
  function isJSXAttribue(elem?: astElem | null): elem is JSXAttribute {
475
555
  return elem !== null && elem !== undefined && elem.type === 'JSXAttribute'
476
556
  }
@@ -487,6 +567,10 @@ function isJSXIdentifier(elem?: astElem | null): elem is JSXIdentifier {
487
567
  return elem !== null && elem !== undefined && elem.type == 'JSXIdentifier'
488
568
  }
489
569
 
570
+ function isJSXFragment(elem?: astElem | null): elem is JSXFragment {
571
+ return elem !== null && elem !== undefined && elem.type == 'JSXFragment'
572
+ }
573
+
490
574
  // Name of a tag that looks like "List.Item"
491
575
  function isJSXMemberExpression(
492
576
  elem?: astElem | null
@@ -504,10 +588,6 @@ function isJSXExpressionContainer(
504
588
  )
505
589
  }
506
590
 
507
- function isLiteral(elem?: astElem | null): elem is Literal {
508
- return elem !== null && elem !== undefined && elem.type === 'Literal'
509
- }
510
-
511
591
  const warnings: string[] = []
512
592
  function printWarning(
513
593
  filePath: string,
@@ -534,6 +614,7 @@ export {
534
614
  findElements,
535
615
  findAttribute,
536
616
  findImport,
617
+ findEveryImport,
537
618
  addImportIfNeeded,
538
619
  renameElements,
539
620
  getVisibleChildren,
@@ -541,10 +622,16 @@ export {
541
622
  printWarning,
542
623
  writeWarningsToFile,
543
624
  // type checkers
625
+ isSpreadElement,
626
+ isIdentifier,
627
+ isImportSpecifier,
628
+ isMemberExpression,
629
+ isCallExpression,
544
630
  isJSXAttribue,
545
631
  isJSXElement,
546
632
  isJSXText,
547
633
  isJSXIdentifier,
634
+ isJSXFragment,
548
635
  isJSXMemberExpression,
549
636
  isJSXExpressionContainer,
550
637
  isLiteral
@@ -34,7 +34,7 @@ import type {
34
34
  ComponentUpdateData,
35
35
  UpdatePropNamesOptions
36
36
  } from '../updatePropNames'
37
- import { printWarning } from './v7PropsUpdateHelpers'
37
+ import { printWarning } from './codemodHelpers'
38
38
 
39
39
  /**
40
40
  * Replaces deprecated pros and their values based on the given config
@@ -24,7 +24,7 @@
24
24
 
25
25
  import type { API, Collection, FileInfo, JSCodeshift } from 'jscodeshift'
26
26
  import formatSource from './utils/formatSource'
27
- import { findImport, writeWarningsToFile } from './helpers/v7PropsUpdateHelpers'
27
+ import { findImport, writeWarningsToFile } from './helpers/codemodHelpers'
28
28
  import updateV7ButtonsMisc from './utils/updateV7ButtonsMisc'
29
29
  import updateV7ButtonsWithText from './utils/updateV7ButtonsWithText'
30
30
  import updateV7ButtonsIconCircle from './utils/updateV7ButtonsIconCircle'
@@ -0,0 +1,49 @@
1
+ /*
2
+ * The MIT License (MIT)
3
+ *
4
+ * Copyright (c) 2015 - present Instructure, Inc.
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in all
14
+ * copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ * SOFTWARE.
23
+ */
24
+
25
+ import { API, Collection, FileInfo, JSCodeshift } from 'jscodeshift'
26
+ import { writeWarningsToFile } from './helpers/codemodHelpers'
27
+ import formatSource from './utils/formatSource'
28
+ import { updateToV8Theming } from './utils/updateToV8Theming'
29
+ import updateV8ThemeProp from './utils/updateV8ThemeProp'
30
+
31
+ export default function updateV8Breaking(
32
+ file: FileInfo,
33
+ api: API,
34
+ options?: { fileName: string }
35
+ ) {
36
+ const j = api.jscodeshift
37
+ const root = j(file.source)
38
+ const hasModifications = doUpdate(j, root, file.path)
39
+ if (options && options.fileName) {
40
+ writeWarningsToFile(options.fileName)
41
+ }
42
+ return hasModifications ? formatSource(root.toSource(), file.path) : null
43
+ }
44
+
45
+ function doUpdate(j: JSCodeshift, root: Collection, filePath: string) {
46
+ const themeUpdated = updateToV8Theming(j, root, filePath)
47
+ const themePropUpdated = updateV8ThemeProp(j, root)
48
+ return themeUpdated || themePropUpdated
49
+ }
@@ -0,0 +1,61 @@
1
+ /*
2
+ * The MIT License (MIT)
3
+ *
4
+ * Copyright (c) 2015 - present Instructure, Inc.
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in all
14
+ * copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ * SOFTWARE.
23
+ */
24
+
25
+ import type { API, FileInfo } from 'jscodeshift'
26
+ import { writeWarningsToFile } from './helpers/codemodHelpers'
27
+ import formatSource from './utils/formatSource'
28
+ import updateV8RenderProp from './utils/updateV8RenderProp'
29
+
30
+ export default function updateV8Breaking(
31
+ file: FileInfo,
32
+ api: API,
33
+ options?: {
34
+ fileName: string
35
+ wrapperPath: string
36
+ wrapperTag: string
37
+ isDefaultImport: true
38
+ }
39
+ ) {
40
+ const j = api.jscodeshift
41
+ const root = j(file.source)
42
+ const finalOptions = {
43
+ wrapperPath: '@canvas/react-root',
44
+ wrapperTag: 'Root',
45
+ isDefaultImport: true
46
+ }
47
+ if (options && options.wrapperPath) {
48
+ finalOptions.wrapperPath = options.wrapperPath
49
+ }
50
+ if (options && options.wrapperTag) {
51
+ finalOptions.wrapperTag = options.wrapperTag
52
+ }
53
+ if (options && options.isDefaultImport) {
54
+ finalOptions.isDefaultImport = options.isDefaultImport
55
+ }
56
+ const hasModifications = updateV8RenderProp(j, root, file.path, finalOptions)
57
+ if (options && options.fileName) {
58
+ writeWarningsToFile(options.fileName)
59
+ }
60
+ return hasModifications ? formatSource(root.toSource(), file.path) : null
61
+ }
@@ -29,7 +29,7 @@ import {
29
29
  isJSXAttribue,
30
30
  printWarning,
31
31
  renameElements
32
- } from '../helpers/v7PropsUpdateHelpers'
32
+ } from '../helpers/codemodHelpers'
33
33
  import { Collection, JSCodeshift, Literal } from 'jscodeshift'
34
34
 
35
35
  /**
@@ -26,14 +26,18 @@ import prettier from 'prettier'
26
26
 
27
27
  export default function formatSource(source: string, sourcePath: string) {
28
28
  let options = null
29
-
29
+ const extension = sourcePath.split('.').pop()
30
+ let parser = 'babel'
31
+ if (extension === 'ts' || extension === 'tsx') {
32
+ parser = 'typescript'
33
+ }
30
34
  try {
31
35
  options = prettier.resolveConfig.sync(sourcePath)
32
36
  if (options) {
33
37
  // Set the parser argument if the consumer did not set one to avoid a console warning
34
38
  options = {
35
39
  ...options,
36
- parser: options.parser || 'babel'
40
+ parser: options.parser || parser
37
41
  }
38
42
  }
39
43
  } catch (err) {
@@ -43,7 +47,7 @@ export default function formatSource(source: string, sourcePath: string) {
43
47
  return prettier.format(
44
48
  source,
45
49
  options || {
46
- parser: 'babel',
50
+ parser: parser,
47
51
  semi: false,
48
52
  singleQuote: true,
49
53
  trailingComma: 'none'
@@ -0,0 +1,84 @@
1
+ /*
2
+ * The MIT License (MIT)
3
+ *
4
+ * Copyright (c) 2015 - present Instructure, Inc.
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in all
14
+ * copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ * SOFTWARE.
23
+ */
24
+
25
+ import { Collection, JSCodeshift } from 'jscodeshift'
26
+ import {
27
+ addImportIfNeeded,
28
+ findElements,
29
+ findEveryImport,
30
+ findImport,
31
+ isIdentifier,
32
+ isMemberExpression,
33
+ renameElements
34
+ } from '../helpers/codemodHelpers'
35
+
36
+ /**
37
+ * Does the following changes:
38
+ * 1. `<ApplyTheme` -> `<InstUISettingsProvider`
39
+ * 2. `Menu.theme` -> `Menu.componentId` (for every InstUI component)
40
+ */
41
+ export function updateToV8Theming(
42
+ j: JSCodeshift,
43
+ root: Collection,
44
+ filePath: string
45
+ ) {
46
+ let hasModifications = false
47
+ const importedName = findImport(j, root, 'ApplyTheme', [
48
+ '@instructure/ui',
49
+ '@instructure/ui-themeable'
50
+ ])
51
+ // <ApplyTheme> -> <InstUISettingsProvider>
52
+ if (importedName) {
53
+ const applyThemeElements = findElements(filePath, j, root, importedName)
54
+ const instUISettingsProvider = addImportIfNeeded(
55
+ j,
56
+ root,
57
+ 'InstUISettingsProvider',
58
+ '@instructure/emotion'
59
+ )
60
+ renameElements(
61
+ filePath,
62
+ applyThemeElements,
63
+ importedName,
64
+ instUISettingsProvider
65
+ )
66
+ hasModifications = true
67
+ }
68
+ // Menu.theme -> Menu.componentId (for every InstUI component)
69
+ const importedComponents = findEveryImport(j, root, '@instructure/ui', false)
70
+ root.find(j.MemberExpression).forEach((path) => {
71
+ const astNode = path.value
72
+ if (
73
+ isMemberExpression(astNode) &&
74
+ isIdentifier(astNode.object) &&
75
+ importedComponents.includes(astNode.object.name) &&
76
+ isIdentifier(astNode.property) &&
77
+ astNode.property.name === 'theme'
78
+ ) {
79
+ hasModifications = true
80
+ astNode.property.name = 'componentId'
81
+ }
82
+ })
83
+ return hasModifications
84
+ }
@@ -32,7 +32,7 @@ import {
32
32
  isJSXText,
33
33
  printWarning,
34
34
  removeAllChildren
35
- } from '../helpers/v7PropsUpdateHelpers'
35
+ } from '../helpers/codemodHelpers'
36
36
 
37
37
  /**
38
38
  * Does the following updates on a <CloseButton>:
@@ -40,7 +40,7 @@ import {
40
40
  printWarning,
41
41
  removeAllChildren,
42
42
  renameElements
43
- } from '../helpers/v7PropsUpdateHelpers'
43
+ } from '../helpers/codemodHelpers'
44
44
 
45
45
  /**
46
46
  * Does the following updates on a <Button>:
@@ -29,7 +29,7 @@ import {
29
29
  isJSXExpressionContainer,
30
30
  isLiteral,
31
31
  printWarning
32
- } from '../helpers/v7PropsUpdateHelpers'
32
+ } from '../helpers/codemodHelpers'
33
33
  import { Collection, JSCodeshift } from 'jscodeshift'
34
34
 
35
35
  /**
@@ -22,7 +22,7 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- import { findAttribute, findElements } from '../helpers/v7PropsUpdateHelpers'
25
+ import { findAttribute, findElements } from '../helpers/codemodHelpers'
26
26
  import { Collection, JSCodeshift, Literal } from 'jscodeshift'
27
27
 
28
28
  /**
@@ -30,7 +30,7 @@ import {
30
30
  findImport,
31
31
  printWarning,
32
32
  renameElements
33
- } from '../helpers/v7PropsUpdateHelpers'
33
+ } from '../helpers/codemodHelpers'
34
34
  import { Literal } from 'jscodeshift'
35
35
 
36
36
  /**
@@ -36,7 +36,7 @@ import {
36
36
  isJSXExpressionContainer,
37
37
  isLiteral,
38
38
  printWarning
39
- } from '../helpers/v7PropsUpdateHelpers'
39
+ } from '../helpers/codemodHelpers'
40
40
 
41
41
  /**
42
42
  * Does the following update on a <Heading>:
@@ -30,7 +30,7 @@ import {
30
30
  findImport,
31
31
  printWarning,
32
32
  renameElements
33
- } from '../helpers/v7PropsUpdateHelpers'
33
+ } from '../helpers/codemodHelpers'
34
34
 
35
35
  /**
36
36
  * Does the following update on a <List>:
@@ -46,7 +46,7 @@ export default function updateV7Lists(
46
46
  filePath: string
47
47
  ) {
48
48
  const importName = findImport(j, root, 'List', [
49
- '@instructure/ui-lists',
49
+ '@instructure/ui-list',
50
50
  '@instructure/ui'
51
51
  ])
52
52
  if (!importName) {
@@ -28,7 +28,7 @@ import {
28
28
  findImport,
29
29
  isJSXAttribue,
30
30
  printWarning
31
- } from '../helpers/v7PropsUpdateHelpers'
31
+ } from '../helpers/codemodHelpers'
32
32
 
33
33
  /**
34
34
  * Does the following updates on a <Pill>:
@@ -38,7 +38,7 @@ import {
38
38
  isJSXMemberExpression,
39
39
  isJSXText,
40
40
  printWarning
41
- } from '../helpers/v7PropsUpdateHelpers'
41
+ } from '../helpers/codemodHelpers'
42
42
 
43
43
  /**
44
44
  * Does the following updates on a <Popover>:
@@ -29,7 +29,7 @@ import {
29
29
  isJSXAttribue,
30
30
  isLiteral,
31
31
  printWarning
32
- } from '../helpers/v7PropsUpdateHelpers'
32
+ } from '../helpers/codemodHelpers'
33
33
 
34
34
  type SizeValue = 'small' | 'medium' | 'large'
35
35
 
@@ -0,0 +1,142 @@
1
+ /*
2
+ * The MIT License (MIT)
3
+ *
4
+ * Copyright (c) 2015 - present Instructure, Inc.
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in all
14
+ * copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ * SOFTWARE.
23
+ */
24
+
25
+ import {
26
+ Collection,
27
+ JSCodeshift,
28
+ JSXElement,
29
+ JSXExpressionContainer,
30
+ JSXFragment
31
+ } from 'jscodeshift'
32
+ import {
33
+ addImportIfNeeded,
34
+ findImport,
35
+ isCallExpression,
36
+ isIdentifier,
37
+ isJSXElement,
38
+ isJSXFragment,
39
+ isLiteral,
40
+ isMemberExpression,
41
+ isSpreadElement,
42
+ printWarning
43
+ } from '../helpers/codemodHelpers'
44
+
45
+ export type UpdateV8RenderPropOptions = {
46
+ wrapperPath: string
47
+ wrapperTag: string
48
+ isDefaultImport: boolean
49
+ }
50
+
51
+ /**
52
+ * Updates ReactDOM.render calls with a given wrapper, for example:
53
+ * ReactDOM.render(<div />) -> ReactDOM.render(<Root><div /></Root>)
54
+ */
55
+ export default function updateV8RenderProp(
56
+ j: JSCodeshift,
57
+ root: Collection,
58
+ filePath: string,
59
+ options: UpdateV8RenderPropOptions
60
+ ) {
61
+ let functionImport: string | undefined
62
+ const defaultImport = findImport(j, root, 'ReactDOM', 'react-dom')
63
+ if (!defaultImport) {
64
+ functionImport = findImport(j, root, 'render', 'react-dom')
65
+ }
66
+ if (!functionImport && !defaultImport) {
67
+ return false
68
+ }
69
+ let hasModifications = false
70
+ root.find(j.CallExpression).forEach((path) => {
71
+ const astNode = path.value.callee
72
+ // it's a function import: import {render} from 'react-dom'; render()
73
+ const foundFunctionImport =
74
+ functionImport && isIdentifier(astNode) && astNode.name === functionImport
75
+ // it's a default import: import ReactDOM from 'react-dom'; ReactDOM.render()
76
+ const foundDefaultImport =
77
+ defaultImport &&
78
+ isMemberExpression(astNode) &&
79
+ isIdentifier(astNode.object) &&
80
+ astNode.object.name === defaultImport &&
81
+ isIdentifier(astNode.property) &&
82
+ astNode.property.name === 'render'
83
+ if (foundFunctionImport || foundDefaultImport) {
84
+ hasModifications = true
85
+ // add import
86
+ addImportIfNeeded(j, root, options.wrapperTag, options.wrapperPath, true)
87
+ // wrap in <Root>
88
+ const args = path.value.arguments
89
+ if (args.length === 0) {
90
+ printWarning(
91
+ filePath,
92
+ path.value.loc?.start.line,
93
+ 'ReactDOM.render() seems to have 0 arguments, please check'
94
+ )
95
+ return
96
+ }
97
+ const firstArg = args[0]
98
+ if (isSpreadElement(firstArg)) {
99
+ printWarning(
100
+ filePath,
101
+ path.value.loc?.start.line,
102
+ 'ReactDOM.render()-s first argument is spread element, please update manually.'
103
+ )
104
+ return
105
+ } else {
106
+ let argToAdd: (JSXElement | JSXExpressionContainer | JSXFragment)[]
107
+ if (
108
+ isJSXElement(firstArg) ||
109
+ (isJSXFragment(firstArg) &&
110
+ firstArg.children &&
111
+ firstArg.children.length > 0)
112
+ ) {
113
+ argToAdd = [firstArg]
114
+ } else if (
115
+ isLiteral(firstArg) ||
116
+ isIdentifier(firstArg) ||
117
+ isCallExpression(firstArg)
118
+ ) {
119
+ argToAdd = [j.jsxExpressionContainer(firstArg)]
120
+ } else if (
121
+ isJSXFragment(firstArg) &&
122
+ (!firstArg.children || firstArg.children.length == 0)
123
+ ) {
124
+ return // no need to style empty tag
125
+ } else {
126
+ printWarning(
127
+ filePath,
128
+ path.value.loc?.start.line,
129
+ 'ReactDOM.render()-s first argument is some strange type, please update manually.'
130
+ )
131
+ return
132
+ }
133
+ args[0] = j.jsxElement(
134
+ j.jsxOpeningElement(j.jsxIdentifier(options.wrapperTag)),
135
+ j.jsxClosingElement(j.jsxIdentifier(options.wrapperTag)),
136
+ argToAdd
137
+ )
138
+ }
139
+ }
140
+ })
141
+ return hasModifications
142
+ }
@@ -22,34 +22,14 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- import { API, FileInfo } from 'jscodeshift'
26
- import formatSource from './utils/formatSource'
25
+ import { Collection, JSCodeshift } from 'jscodeshift'
26
+ import { findEveryImport } from '../helpers/codemodHelpers'
27
27
 
28
28
  /**
29
29
  * Renames components theme={} prop to themeOverride={}
30
30
  */
31
- export default function updateV8Props(file: FileInfo, api: API) {
32
- const j = api.jscodeshift
33
- const root = j(file.source)
34
- const instUIImports: string[] = []
35
- root
36
- .find(j.ImportDeclaration)
37
- .filter((path) => {
38
- const importSource = path.node.source.value
39
- if (importSource && typeof importSource === 'string') {
40
- return !!importSource.match(/@instructure\/ui/gm)
41
- }
42
- return false
43
- })
44
- .forEach((path) => {
45
- if (path.node.specifiers) {
46
- path.node.specifiers.forEach((specifier) => {
47
- if (specifier.local) {
48
- instUIImports.push(specifier.local.name)
49
- }
50
- })
51
- }
52
- })
31
+ export default function updateV8ThemeProp(j: JSCodeshift, root: Collection) {
32
+ const instUIImports = findEveryImport(j, root, '@instructure/ui', false)
53
33
  let isChanged = false
54
34
  instUIImports.forEach((instUIImport) => {
55
35
  const elems = root
@@ -67,8 +47,5 @@ export default function updateV8Props(file: FileInfo, api: API) {
67
47
  isChanged = true
68
48
  }
69
49
  })
70
- if (isChanged) {
71
- return formatSource(root.toSource(), file.path)
72
- }
73
- return null
50
+ return isChanged
74
51
  }
@@ -27,7 +27,7 @@ import {
27
27
  findElements,
28
28
  findImport,
29
29
  printWarning
30
- } from '../helpers/v7PropsUpdateHelpers'
30
+ } from '../helpers/codemodHelpers'
31
31
 
32
32
  /**
33
33
  * Warns about the deprecation of DeprecatedButton, Media, MetricsList,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-codemods",
3
- "version": "8.20.1-snapshot.5+b20e944b1",
3
+ "version": "8.21.0",
4
4
  "description": "Codemod scripts to help upgrade Instructure UI libraries.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "main": "./lib/index.js",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "license": "MIT",
19
19
  "devDependencies": {
20
- "@instructure/ui-babel-preset": "8.20.1-snapshot.5+b20e944b1",
20
+ "@instructure/ui-babel-preset": "8.21.0",
21
21
  "@types/jscodeshift": "^0.11.3",
22
22
  "@types/prettier": "^2",
23
23
  "jest": "^24.9.0"
@@ -29,6 +29,5 @@
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"
32
- },
33
- "gitHead": "b20e944b13616f430d7b27eb61ccdb3eb3c87fcf"
32
+ }
34
33
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.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.esnext.intl.d.ts","../../node_modules/@types/prettier/index.d.ts","./lib/utils/formatSource.ts","./lib/utils/requireUncached.ts","../../node_modules/ast-types/types.d.ts","../../node_modules/ast-types/gen/namedTypes.d.ts","../../node_modules/ast-types/gen/kinds.d.ts","../../node_modules/ast-types/gen/builders.d.ts","../../node_modules/ast-types/lib/types.d.ts","../../node_modules/ast-types/lib/path.d.ts","../../node_modules/ast-types/lib/scope.d.ts","../../node_modules/ast-types/lib/node-path.d.ts","../../node_modules/ast-types/lib/path-visitor.d.ts","../../node_modules/ast-types/gen/visitor.d.ts","../../node_modules/ast-types/main.d.ts","../../node_modules/recast/lib/options.d.ts","../../node_modules/recast/lib/parser.d.ts","../../node_modules/recast/lib/printer.d.ts","../../node_modules/recast/main.d.ts","../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts","../../node_modules/@types/jscodeshift/src/collections/Node.d.ts","../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts","../../node_modules/@types/jscodeshift/src/Collection.d.ts","../../node_modules/@types/jscodeshift/src/template.d.ts","../../node_modules/@types/jscodeshift/src/core.d.ts","../../node_modules/@types/jscodeshift/index.d.ts","./lib/helpers/v7PropsUpdateHelpers.ts","./lib/helpers/replaceDeprecatedProps.ts","./lib/updatePropNames.ts","./lib/index.ts","./lib/helpers/replaceDeprecatedImports.ts","./lib/updateImports.ts","./lib/utils/updateV7ButtonsMisc.ts","./lib/utils/updateV7ButtonsWithText.ts","./lib/utils/updateV7ButtonsIconCircle.ts","./lib/utils/updateV7ButtonsClose.ts","./lib/utils/UpdateV7ButtonsLink.ts","./lib/utils/updateV7Heading.ts","./lib/utils/updateV7Lists.ts","./lib/utils/updateV7Pill.ts","./lib/utils/updateV7Popover.ts","./lib/utils/updateV7Tabs.ts","./lib/utils/updateV7FocusableView.ts","./lib/utils/warnV7ComponentDeprecations.ts","./lib/updateV7Props.ts","./lib/updateV8Props.ts","../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/babel-plugin-macros/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/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/chai-string/index.d.ts","../../node_modules/@types/codemirror/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/color-convert/conversions.d.ts","../../node_modules/@types/color-convert/route.d.ts","../../node_modules/@types/color-convert/index.d.ts","../../node_modules/@types/component-emitter/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/cookie/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/decompress/index.d.ts","../../node_modules/@types/dirty-chai/index.d.ts","../../node_modules/@types/got/index.d.ts","../../node_modules/@types/download/index.d.ts","../../node_modules/@types/escape-html/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/git-url-parse/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/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/hoist-non-react-statics/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/@types/is-function/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/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/karma/node_modules/log4js/types/log4js.d.ts","../../node_modules/@types/karma/lib/constants.d.ts","../../node_modules/@types/karma/index.d.ts","../../node_modules/@types/linkify-it/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/mdurl/encode.d.ts","../../node_modules/@types/mdurl/decode.d.ts","../../node_modules/@types/mdurl/parse.d.ts","../../node_modules/@types/mdurl/format.d.ts","../../node_modules/@types/mdurl/index.d.ts","../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../node_modules/@types/markdown-it/lib/token.d.ts","../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../node_modules/@types/markdown-it/lib/index.d.ts","../../node_modules/@types/markdown-it/index.d.ts","../../node_modules/@types/marked/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/no-scroll/index.d.ts","../../node_modules/@types/node-fetch/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/npmlog/index.d.ts","../../node_modules/@types/overlayscrollbars/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/serve-index/index.d.ts","../../node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../node_modules/@types/sinon/index.d.ts","../../node_modules/@types/sinon-chai/index.d.ts","../../node_modules/@types/sizzle/index.d.ts","../../node_modules/@types/sockjs/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/@types/tern/lib/tern/index.d.ts","../../node_modules/@types/tern/lib/infer/index.d.ts","../../node_modules/@types/tern/index.d.ts","../../node_modules/@types/tinycolor2/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/vfile-message/types/index.d.ts","../../node_modules/@types/vfile/index.d.ts","../../node_modules/@types/webpack/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-env/index.d.ts","../../node_modules/@types/which/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","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":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","81c75c23ee3c4c727be65d34e6c96556b1d83bc570d3bb39f74b6567ff076629","5e954d03d0f8d94b7b97be5557aacc03f23ae0458bd770dd2cf76ba628eabefe","cc2dc362fc50995684e9f7e9b38ad9bdf19e74919294a694cbc05392352cad7d","abef3012ae70d98baa449664e9dda50c96fc68b0fd11a592d6590d85bb89cd10","456e83839c811cedebb65c8b05027120336b3bd6920259817d728ffc52d41e2f","ea79d9641e700b2b4a04a857ed1ef692c4caf988017fbabd64c4111f7c287673","0a90b9435b81f45b88c5fb8d30e85b77d3508eb0760dc40b9fb825fd29f92375","8cd7362102d928e21b291a013f80fc68a038d4506d26ea9948c676e3fa1110d9","90f6830fb380f4d2b69df018343ae80ce92991e85a0d7be8d214c643b39d1175","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","a1d51fd5a8f9c1c038799a43c038397ca3ed99ee73cc0b0aada897e7cc8aca91","6c9708ae545db5f8deb8ef774d412fd1b46adade794664d7c6cfd0a1f6dfd64f","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","67aee88594abc44cd58820dea2ed1a9d373c1c2a59941234e4abe797464bc4da","65d8bfb66a25ff068ea4ce271174b0b4c35aee664b349db941a5688f0e6d621d","f8cb94e0dffd21068a952754ec67d01d35a15fa61bd3af951f949e9b8bde7976","9928c4f48144f7d79716955310c857518d21ada0fcb7017fbf5921e547320cb8","3c7ef314f6691dbba43cb1310a82d610ea648cc4498cd685c3e25442ea2d98a0","2305508907ae4c993dda584411bfedac5821b8a55853caeebf2341f58b2fa027","4bdf362501ecd30c2037b91dda8d091fa2dd9b13990d0718bddb9e02919e35dc","033698cc687202275788d79572bf5318e7222ee137c3d2193c8de06284a7b7de","d917fa1fff91e0bf242a4a7993f34eb7b224b814d2663b281d509f948f83b7c2","ef790eb4ccbcd835fbd205adb5341adac15005784de70a9e3dca72a187ef26e7","feac8267121c929bc8bc290100b5dc2d1ca80f197e052a915e1211747481c1a9","5921723a4bc771109cdba4dd09f5d3063e5ff2455b95a8a830be9e3e022680ce","3481dcaaddf11ae09a53f4f21a2ded69ce993026376d436a2b53eea78dc2dbee","ac36f9dc6107ec54cb79db44a8c6810d64795b5c276caebc7df0f9c10e3bee7a","3a263bcc25feebe273086141df1098dbfaabeaaf73b343d639233facbaebb4c4","a0e5d0f800a20c8e6c780d998efdd34b1a2c91396327ef0c3403a9709a055347","9776e80a70c188179ff339908ca5b67c93ca169f4ee0f367acbe71a3c9690916","bd89bcb025755a4c1f110b6268e30bc2e0a9a62117f1ba427af9d13ee5117056","f315d71addaf52dbd5de8189c5afae1345e8af3ec6f9f19f23df585a615954bc","878a17e1066eddb0b940a1e64991a3a7b02fb6672d5d17f899db3772100a62d2","550455ca2792ce57b5a8e6d1061159e511ce197fba6b8773094387ec213f0522","58fd86c40988dab44961db8c8e62733082e64e852a85d3b18043d3e5c5c2d3bb","f0fb40417c0625a8681ef2e592c3942c7f814b392d8cec4cbf04084562bc3efa","2c23aaf9bf549b6000cee5c67c4a6f3fc265d68075f67aef729cf05c34f65543","d6e3a61fa993f8d8eb42637f9184b05c9dad8be1dc079db7776d3fc2907c5090","ce3468b067811109e247313980fe395f432680e7a87c1dc56e580c82c9728701","7240ce3a1ac6d990a4b352172fa55c1515a0df8e6f221959f5f9394d5c0b381b","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e","063857f728dfa41428c5a9a4a243e6bfb3a9e046916ce0fe9f864da9401c7d2f","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","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",{"version":"0c5004386ed814334d2d4abd1d8f2f0b63ea2134d5717d8fb2fb8aabc05288ef","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","4a8b6680f577878255690971bbfe6ec951ece19a0c86a493e66a715762d04db2","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},{"version":"f6ae17283c6912c202004178339d6d22f8c9edfe4e335f9f11b555c631633daf","affectsGlobalScope":true},{"version":"41071d2f1a39386d10bf36d1ba4712ad42a900047f16a109936df9e48f13673e","affectsGlobalScope":true},"4ff816bca793da4d9874123906772ef225619980908e25fd5d40475e12651be0","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","567a315b240a060518c532d38a46803b6d35e75dc14a9be435b6dc20c816741e","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","825080a15a8b14b40ac8c7f90c12a5a11efb0b3857dc02195eae2a3dc98aea14",{"version":"5849dc8dc641e09624b923c5efd78206d48903a68944124051d18ae8117cb475","affectsGlobalScope":true},"8f76c6bfb627f38ab44c35d1915dfa2d24d4b96307d9b6cc56df5bba246a3ab6","265aa5dae437b70cc82626488e3e68747e80fddeccc89ef47205b4dcaf864f47","81f6af9b1d8e4f9e3b7318763a1a93f909ee61e0477b41cc7f3281d9da6ca7f4",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","5469833e9e4eba5e382f9fad09f48eb2cfd133111694887fbcc120140601310c","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102","626520302b2c8880e9eaa3a6a12022cc8b577a32e4d903aef85e3dd275063da4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","753391328df8a591c71aea03b21aae20fddfda47778d5dcbb0a0b24a44b76d1b","add2b97bb56259dccf5ec3760a6eb1f97f0d84ef06779630cb21536ac8e01b06","ed61b2eb8e76abd015c280a448724e483f8c4c1a244548054116185cb031236e","6503fb6addf62f9b10f8564d9869ad824565a914ec1ac3dd7d13da14a3f57036","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","3816fc03ffd9cbd1a7a3362a264756a4a1d547caabea50ca68303046be40e376","0c417b4ec46b88fb62a43ec00204700b560d01eb5677c7faa8ecd34610f096a8","13d29cdeb64e8496424edf42749bbb47de5e42d201cf958911a4638cbcffbd3f","0f9e381eecc5860f693c31fe463b3ca20a64ca9b8db0cf6208cd4a053f064809","95902d5561c6aac5dfc40568a12b0aca324037749dcd32a81f23423bfde69bab","5dfb2aca4136abdc5a2740f14be8134a6e6b66fd53470bb2e954e40f8abfaf3e","577463167dd69bd81f76697dfc3f7b22b77a6152f60a602a9218e52e3183ad67","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","4b28e1c5bf88d891e07a1403358b81a51b3ba2eae1ffada51cca7476b5ac6407","7150ad575d28bf98fae321a1c0f10ad17b127927811f488ded6ff1d88d4244e5","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","93733466609dd8bf72eace502a24ca7574bd073d934216e628f1b615c8d3cb3c","45e9228761aabcadb79c82fb3008523db334491525bdb8e74e0f26eaf7a4f7f4","aeacac2778c9821512b6b889da79ac31606a863610c8f28da1e483579627bf90","569fdb354062fc098a6a3ba93a029edf22d6fe480cf72b231b3c07832b2e7c97","bf9876e62fb7f4237deafab8c7444770ef6e82b4cad2d5dc768664ff340feeb2","6cf60e76d37faf0fbc2f80a873eab0fd545f6b1bf300e7f0823f956ddb3083e9","6adaa6103086f931e3eee20f0987e86e8879e9d13aa6bd6075ccfc58b9c5681c","ee0af0f2b8d3b4d0baf669f2ff6fcef4a8816a473c894cc7c905029f7505fed0","619062cca9c6ac6bfb7774ea4e845a1e548b8a3f155a7802266a08befea48870","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"b6e8b63e2dec1b6742890259e31b094f8dff3b7558b10735da100ecccb4e07e5","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","24a09dc3e07d69b0a224dbd14b2994c40d1efd0954e759004b61b9e683dabe5f",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","0ad2a04de2246300db5468491b6d76f1f8de510822eaa0c89b46ada60f4f2cbe","7c1e19aaac1f980bf5842da2f40b19b50aa5d9429be97384a82219680ef70498","8868835a248a95ee97085831014d989ccfc87c0bc3dcffc2d628809d9648815f","a2f6708415475f137756bd1761d6003d72ed646af52ace1cb4e6f11b34ce2047","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","eb09cf44043f7d6e0208dca6f0555207015e91fff5ff77b9c21d63672f7d68d5","6f56706c6828d0299f46f8b1a79ecae0757b91b48e63baf6f0c5292d02037129","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"4a17452616730089378f7018860f0a8db04cb5f2efc6884bebd966da8b0002ab","012a04966bcb8a6f522ccd21f6efac3d837f3ea806c55b5849556aad22777f38","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e"],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"./lib","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[143],[98,143],[89,90,92,95,97,143],[89,143],[89,92,143],[118,143,150,151],[110,143,150],[115,118,142,143,150,154,155,156],[143,158],[143,162],[143,163,164],[143,163],[142,143,150,169],[118,143,150],[118,143],[143,150],[143,158,159],[132,143,150,173,175],[143,180,181],[143,178,179,180],[115,118,143,150,167,168],[143,152,168,169,184],[115,116,143,150,187],[118,120,132,142,143,150],[143,189],[143,195],[115,118,120,123,132,142,143,150],[143,200],[143,200,201],[67,143],[51,54,61,62,63,64,143],[54,57,65,143],[51,54,57,65,143],[51,54,57,61,62,64,65,66,143],[115,120,143,150,205,206],[115,143,150],[143,209,211,212,213,214,215,216,217,218,219,220,221],[143,209,210,212,213,214,215,216,217,218,219,220,221],[143,210,211,212,213,214,215,216,217,218,219,220,221],[143,209,210,211,213,214,215,216,217,218,219,220,221],[143,209,210,211,212,214,215,216,217,218,219,220,221],[143,209,210,211,212,213,215,216,217,218,219,220,221],[143,209,210,211,212,213,214,216,217,218,219,220,221],[143,209,210,211,212,213,214,215,217,218,219,220,221],[143,209,210,211,212,213,214,215,216,218,219,220,221],[143,209,210,211,212,213,214,215,216,217,219,220,221],[143,209,210,211,212,213,214,215,216,217,218,220,221],[143,209,210,211,212,213,214,215,216,217,218,219,221],[143,209,210,211,212,213,214,215,216,217,218,219,220],[143,241],[143,226],[143,230,231,232],[143,229],[143,231],[143,208,227,228,233,236,238,239,240],[143,228,234,235,241],[143,234,237],[143,228,229,234,241],[143,228,241],[143,222,223,224,225],[118,142,143,150,248,249],[118,132,143,150],[100,143],[103,143],[104,109,143],[105,115,116,123,132,142,143],[105,106,115,123,143],[107,143],[108,109,116,124,143],[109,132,139,143],[110,112,115,123,143],[111,143],[112,113,143],[114,115,143],[115,143],[115,116,117,132,142,143],[115,116,117,132,143],[118,123,132,142,143],[115,116,118,119,123,132,139,142,143],[118,120,132,139,142,143],[100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149],[115,121,143],[122,142,143],[112,115,123,132,143],[124,143],[125,143],[103,126,143],[127,141,143,147],[128,143],[129,143],[115,130,143],[130,131,143,145],[115,132,133,134,143],[132,134,143],[132,133,143],[135,143],[136,143],[115,137,138,143],[137,138,143],[109,123,132,139,143],[140,143],[123,141,143],[104,118,129,142,143],[109,143],[132,143,144],[143,145],[143,146],[104,109,115,117,126,132,142,143,145,147],[132,143,148],[143,195,258],[143,191,192,193,194],[143,262,301],[143,262,286,301],[143,301],[143,262],[143,262,287,301],[143,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300],[143,287,301],[116,143,185],[118,143,150,183],[143,158,304],[143,303],[143,311,312],[143,180,311],[143,180,312],[143,315],[143,150,189,317],[143,150,321,322,323,324,325,326,327,328,329,330,331],[143,320,321,330],[143,321,330],[143,308,320,321,330],[143,321],[109,143,320,330],[143,320,321,322,323,324,325,326,327,328,329,331],[109,143,150,310,315,316,319,332],[115,118,120,132,139,142,143,148,150],[143,337],[48,49,143],[48,143],[47,49,51,143],[48,54,55,143],[47,51,52,53,143],[47,51,54,56,143],[47,51,143],[47,143],[47,48,50,143],[47,48,50,51,52,54,55,56,143],[58,143],[57,58,59,60,143],[68,74,125,143],[68,69,71,143],[49,68,116,143],[71,143],[45,46,68,73,116,125,143],[45,46,68,70,116,125,143],[45,68,69,75,76,77,78,79,80,81,82,83,84,85,86,143],[45,68,143],[68,69,143],[44,143]],"referencedMap":[[303,1],[99,2],[98,3],[92,4],[91,1],[90,4],[89,1],[95,5],[93,4],[94,1],[97,4],[96,1],[152,6],[153,7],[157,8],[159,9],[160,9],[158,1],[161,1],[163,10],[165,11],[164,12],[162,1],[166,1],[170,13],[151,14],[171,1],[172,15],[173,16],[174,17],[176,18],[177,1],[182,19],[178,1],[181,20],[180,1],[169,21],[185,22],[186,1],[188,23],[175,24],[190,25],[196,26],[197,1],[155,1],[198,27],[199,1],[200,1],[201,28],[202,29],[68,30],[65,31],[62,32],[63,33],[64,32],[67,34],[66,30],[179,1],[203,1],[204,1],[207,35],[206,1],[205,1],[154,36],[208,1],[210,37],[211,38],[209,39],[212,40],[213,41],[214,42],[215,43],[216,44],[217,45],[218,46],[219,47],[220,48],[221,49],[242,50],[227,51],[233,52],[231,1],[230,53],[232,54],[241,55],[236,56],[238,57],[239,58],[240,59],[234,1],[235,59],[237,59],[229,59],[228,1],[243,1],[244,25],[223,1],[222,1],[225,51],[226,60],[224,51],[183,1],[187,1],[245,1],[246,1],[247,1],[249,1],[250,61],[248,62],[100,63],[101,63],[103,64],[104,65],[105,66],[106,67],[107,68],[108,69],[109,70],[110,71],[111,72],[112,73],[113,73],[114,74],[115,75],[116,76],[117,77],[102,1],[149,1],[118,78],[119,79],[120,80],[150,81],[121,82],[122,83],[123,84],[124,85],[125,86],[126,87],[127,88],[128,89],[129,90],[130,91],[131,92],[132,93],[134,94],[133,95],[135,96],[136,97],[137,98],[138,99],[139,100],[140,101],[141,102],[142,103],[143,104],[144,105],[145,106],[146,107],[147,108],[148,109],[251,1],[252,75],[253,1],[254,1],[255,1],[44,1],[256,1],[193,1],[168,1],[167,1],[257,26],[258,110],[191,1],[195,111],[259,16],[156,62],[260,1],[261,1],[194,1],[286,112],[287,113],[262,114],[265,114],[284,112],[285,112],[275,115],[274,115],[272,112],[267,112],[280,112],[278,112],[282,112],[266,112],[279,112],[283,112],[268,112],[269,112],[281,112],[263,112],[270,112],[271,112],[273,112],[277,112],[288,116],[276,112],[264,112],[301,117],[300,1],[295,116],[297,118],[296,116],[289,116],[290,116],[292,116],[294,116],[298,118],[299,118],[291,118],[293,118],[302,119],[184,120],[305,121],[304,122],[306,1],[307,14],[308,1],[309,1],[310,1],[313,123],[312,124],[311,125],[314,1],[316,126],[189,1],[318,127],[334,1],[332,128],[331,129],[322,130],[323,131],[324,131],[325,130],[326,130],[327,130],[328,132],[321,133],[329,129],[330,134],[320,1],[333,135],[319,1],[335,1],[336,136],[337,1],[338,137],[50,138],[49,139],[48,140],[56,141],[54,142],[55,143],[52,144],[53,145],[51,146],[57,147],[47,1],[192,1],[58,145],[59,148],[60,1],[61,149],[315,1],[9,1],[10,1],[14,1],[13,1],[3,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[4,1],[5,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[35,1],[36,1],[37,1],[8,1],[42,1],[38,1],[39,1],[40,1],[41,1],[2,1],[1,1],[43,1],[12,1],[11,1],[317,25],[73,150],[70,151],[69,152],[72,153],[74,154],[71,155],[87,156],[88,157],[79,158],[45,159],[46,1],[78,158],[77,158],[75,158],[76,158],[85,158],[80,158],[81,158],[82,158],[83,158],[84,158],[86,158]],"exportedModulesMap":[[303,1],[99,2],[98,3],[92,4],[91,1],[90,4],[89,1],[95,5],[93,4],[94,1],[97,4],[96,1],[152,6],[153,7],[157,8],[159,9],[160,9],[158,1],[161,1],[163,10],[165,11],[164,12],[162,1],[166,1],[170,13],[151,14],[171,1],[172,15],[173,16],[174,17],[176,18],[177,1],[182,19],[178,1],[181,20],[180,1],[169,21],[185,22],[186,1],[188,23],[175,24],[190,25],[196,26],[197,1],[155,1],[198,27],[199,1],[200,1],[201,28],[202,29],[68,30],[65,31],[62,32],[63,33],[64,32],[67,34],[66,30],[179,1],[203,1],[204,1],[207,35],[206,1],[205,1],[154,36],[208,1],[210,37],[211,38],[209,39],[212,40],[213,41],[214,42],[215,43],[216,44],[217,45],[218,46],[219,47],[220,48],[221,49],[242,50],[227,51],[233,52],[231,1],[230,53],[232,54],[241,55],[236,56],[238,57],[239,58],[240,59],[234,1],[235,59],[237,59],[229,59],[228,1],[243,1],[244,25],[223,1],[222,1],[225,51],[226,60],[224,51],[183,1],[187,1],[245,1],[246,1],[247,1],[249,1],[250,61],[248,62],[100,63],[101,63],[103,64],[104,65],[105,66],[106,67],[107,68],[108,69],[109,70],[110,71],[111,72],[112,73],[113,73],[114,74],[115,75],[116,76],[117,77],[102,1],[149,1],[118,78],[119,79],[120,80],[150,81],[121,82],[122,83],[123,84],[124,85],[125,86],[126,87],[127,88],[128,89],[129,90],[130,91],[131,92],[132,93],[134,94],[133,95],[135,96],[136,97],[137,98],[138,99],[139,100],[140,101],[141,102],[142,103],[143,104],[144,105],[145,106],[146,107],[147,108],[148,109],[251,1],[252,75],[253,1],[254,1],[255,1],[44,1],[256,1],[193,1],[168,1],[167,1],[257,26],[258,110],[191,1],[195,111],[259,16],[156,62],[260,1],[261,1],[194,1],[286,112],[287,113],[262,114],[265,114],[284,112],[285,112],[275,115],[274,115],[272,112],[267,112],[280,112],[278,112],[282,112],[266,112],[279,112],[283,112],[268,112],[269,112],[281,112],[263,112],[270,112],[271,112],[273,112],[277,112],[288,116],[276,112],[264,112],[301,117],[300,1],[295,116],[297,118],[296,116],[289,116],[290,116],[292,116],[294,116],[298,118],[299,118],[291,118],[293,118],[302,119],[184,120],[305,121],[304,122],[306,1],[307,14],[308,1],[309,1],[310,1],[313,123],[312,124],[311,125],[314,1],[316,126],[189,1],[318,127],[334,1],[332,128],[331,129],[322,130],[323,131],[324,131],[325,130],[326,130],[327,130],[328,132],[321,133],[329,129],[330,134],[320,1],[333,135],[319,1],[335,1],[336,136],[337,1],[338,137],[50,138],[49,139],[48,140],[56,141],[54,142],[55,143],[52,144],[53,145],[51,146],[57,147],[47,1],[192,1],[58,145],[59,148],[60,1],[61,149],[315,1],[9,1],[10,1],[14,1],[13,1],[3,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[4,1],[5,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[35,1],[36,1],[37,1],[8,1],[42,1],[38,1],[39,1],[40,1],[41,1],[2,1],[1,1],[43,1],[12,1],[11,1],[317,25],[73,150],[70,151],[69,152],[72,153],[74,154],[71,155],[87,156],[88,157],[79,158],[45,159],[46,1],[78,158],[77,158],[75,158],[76,158],[85,158],[80,158],[81,158],[82,158],[83,158],[84,158],[86,158]],"semanticDiagnosticsPerFile":[303,99,98,92,91,90,89,95,93,94,97,96,152,153,157,159,160,158,161,163,165,164,162,166,170,151,171,172,173,174,176,177,182,178,181,180,169,185,186,188,175,190,196,197,155,198,199,200,201,202,68,65,62,63,64,67,66,179,203,204,207,206,205,154,208,210,211,209,212,213,214,215,216,217,218,219,220,221,242,227,233,231,230,232,241,236,238,239,240,234,235,237,229,228,243,244,223,222,225,226,224,183,187,245,246,247,249,250,248,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,102,149,118,119,120,150,121,122,123,124,125,126,127,128,129,130,131,132,134,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,251,252,253,254,255,44,256,193,168,167,257,258,191,195,259,156,260,261,194,286,287,262,265,284,285,275,274,272,267,280,278,282,266,279,283,268,269,281,263,270,271,273,277,288,276,264,301,300,295,297,296,289,290,292,294,298,299,291,293,302,184,305,304,306,307,308,309,310,313,312,311,314,316,189,318,334,332,331,322,323,324,325,326,327,328,321,329,330,320,333,319,335,336,337,338,50,49,48,56,54,55,52,53,51,57,47,192,58,59,60,61,315,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,42,38,39,40,41,2,1,43,12,11,317,73,70,69,72,74,71,87,88,79,45,46,78,77,75,76,85,80,81,82,83,84,86]},"version":"4.5.5"}
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.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.esnext.intl.d.ts","../../node_modules/@types/prettier/index.d.ts","./lib/utils/formatSource.ts","./lib/utils/requireUncached.ts","../../node_modules/ast-types/types.d.ts","../../node_modules/ast-types/gen/namedTypes.d.ts","../../node_modules/ast-types/gen/kinds.d.ts","../../node_modules/ast-types/gen/builders.d.ts","../../node_modules/ast-types/lib/types.d.ts","../../node_modules/ast-types/lib/path.d.ts","../../node_modules/ast-types/lib/scope.d.ts","../../node_modules/ast-types/lib/node-path.d.ts","../../node_modules/ast-types/lib/path-visitor.d.ts","../../node_modules/ast-types/gen/visitor.d.ts","../../node_modules/ast-types/main.d.ts","../../node_modules/recast/lib/options.d.ts","../../node_modules/recast/lib/parser.d.ts","../../node_modules/recast/lib/printer.d.ts","../../node_modules/recast/main.d.ts","../../node_modules/@types/jscodeshift/src/collections/JSXElement.d.ts","../../node_modules/@types/jscodeshift/src/collections/Node.d.ts","../../node_modules/@types/jscodeshift/src/collections/VariableDeclarator.d.ts","../../node_modules/@types/jscodeshift/src/Collection.d.ts","../../node_modules/@types/jscodeshift/src/template.d.ts","../../node_modules/@types/jscodeshift/src/core.d.ts","../../node_modules/@types/jscodeshift/index.d.ts","./lib/helpers/codemodHelpers.ts","./lib/helpers/replaceDeprecatedProps.ts","./lib/updatePropNames.ts","./lib/index.ts","./lib/helpers/replaceDeprecatedImports.ts","./lib/updateImports.ts","./lib/utils/updateV7ButtonsMisc.ts","./lib/utils/updateV7ButtonsWithText.ts","./lib/utils/updateV7ButtonsIconCircle.ts","./lib/utils/updateV7ButtonsClose.ts","./lib/utils/UpdateV7ButtonsLink.ts","./lib/utils/updateV7Heading.ts","./lib/utils/updateV7Lists.ts","./lib/utils/updateV7Pill.ts","./lib/utils/updateV7Popover.ts","./lib/utils/updateV7Tabs.ts","./lib/utils/updateV7FocusableView.ts","./lib/utils/warnV7ComponentDeprecations.ts","./lib/updateV7Props.ts","./lib/utils/updateToV8Theming.ts","./lib/utils/updateV8ThemeProp.ts","./lib/updateV8Breaking.ts","./lib/utils/updateV8RenderProp.ts","./lib/updateV8ReactDOM.ts","../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/babel-plugin-macros/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/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/chai-string/index.d.ts","../../node_modules/@types/codemirror/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/color-convert/conversions.d.ts","../../node_modules/@types/color-convert/route.d.ts","../../node_modules/@types/color-convert/index.d.ts","../../node_modules/@types/component-emitter/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/cookie/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/decompress/index.d.ts","../../node_modules/@types/dirty-chai/index.d.ts","../../node_modules/@types/got/index.d.ts","../../node_modules/@types/download/index.d.ts","../../node_modules/@types/escape-html/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/git-url-parse/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/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/hoist-non-react-statics/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/@types/is-function/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/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/karma/node_modules/log4js/types/log4js.d.ts","../../node_modules/@types/karma/lib/constants.d.ts","../../node_modules/@types/karma/index.d.ts","../../node_modules/@types/linkify-it/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/mdurl/encode.d.ts","../../node_modules/@types/mdurl/decode.d.ts","../../node_modules/@types/mdurl/parse.d.ts","../../node_modules/@types/mdurl/format.d.ts","../../node_modules/@types/mdurl/index.d.ts","../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../node_modules/@types/markdown-it/lib/token.d.ts","../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../node_modules/@types/markdown-it/lib/index.d.ts","../../node_modules/@types/markdown-it/index.d.ts","../../node_modules/@types/marked/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/no-scroll/index.d.ts","../../node_modules/@types/node-fetch/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/npmlog/index.d.ts","../../node_modules/@types/overlayscrollbars/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/serve-index/index.d.ts","../../node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../node_modules/@types/sinon/index.d.ts","../../node_modules/@types/sinon-chai/index.d.ts","../../node_modules/@types/sizzle/index.d.ts","../../node_modules/@types/sockjs/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/@types/tern/lib/tern/index.d.ts","../../node_modules/@types/tern/lib/infer/index.d.ts","../../node_modules/@types/tern/index.d.ts","../../node_modules/@types/tinycolor2/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/vfile-message/types/index.d.ts","../../node_modules/@types/vfile/index.d.ts","../../node_modules/@types/webpack/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-env/index.d.ts","../../node_modules/@types/which/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","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":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","93c3eb4eb1f7d8e161fa35a6d38dce0d4080f7318b4eafb8db55373efbed33d2","5e954d03d0f8d94b7b97be5557aacc03f23ae0458bd770dd2cf76ba628eabefe","cc2dc362fc50995684e9f7e9b38ad9bdf19e74919294a694cbc05392352cad7d","abef3012ae70d98baa449664e9dda50c96fc68b0fd11a592d6590d85bb89cd10","456e83839c811cedebb65c8b05027120336b3bd6920259817d728ffc52d41e2f","ea79d9641e700b2b4a04a857ed1ef692c4caf988017fbabd64c4111f7c287673","0a90b9435b81f45b88c5fb8d30e85b77d3508eb0760dc40b9fb825fd29f92375","8cd7362102d928e21b291a013f80fc68a038d4506d26ea9948c676e3fa1110d9","90f6830fb380f4d2b69df018343ae80ce92991e85a0d7be8d214c643b39d1175","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","a1d51fd5a8f9c1c038799a43c038397ca3ed99ee73cc0b0aada897e7cc8aca91","6c9708ae545db5f8deb8ef774d412fd1b46adade794664d7c6cfd0a1f6dfd64f","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","67aee88594abc44cd58820dea2ed1a9d373c1c2a59941234e4abe797464bc4da","65d8bfb66a25ff068ea4ce271174b0b4c35aee664b349db941a5688f0e6d621d","f8cb94e0dffd21068a952754ec67d01d35a15fa61bd3af951f949e9b8bde7976","9928c4f48144f7d79716955310c857518d21ada0fcb7017fbf5921e547320cb8","3c7ef314f6691dbba43cb1310a82d610ea648cc4498cd685c3e25442ea2d98a0","2305508907ae4c993dda584411bfedac5821b8a55853caeebf2341f58b2fa027","4bdf362501ecd30c2037b91dda8d091fa2dd9b13990d0718bddb9e02919e35dc","addc914625f24d806914e971cbc6362316f32b89899aefd7cc962d0c81b1b206","3ce7e43234e0d165309615263e571b17e169efbf9250e096bfbab94f21d7722f","ef790eb4ccbcd835fbd205adb5341adac15005784de70a9e3dca72a187ef26e7","feac8267121c929bc8bc290100b5dc2d1ca80f197e052a915e1211747481c1a9","5921723a4bc771109cdba4dd09f5d3063e5ff2455b95a8a830be9e3e022680ce","3481dcaaddf11ae09a53f4f21a2ded69ce993026376d436a2b53eea78dc2dbee","ffd3479fe7d968b32af2d4a1f551b6ce567069f91a2d8835a64dbf83266f7551","5d881bdba725623ecb6afaa32c676854d8633ce0359b581f78eb02d5b835a0bf","5689dfb60b1d56ffb484563508e6ba2bdb46fbe3c8bed548683db29258740e1b","14690cfa393ecf2186c55c00b791d20de70635a11a4fb2959b3ddb4ba2dcf2d0","951f0c3c31b03c93b65c8e368939573835aa2d3c30906628ae754ba9c89e1214","6188ea791ad87fdec76fd89a5550fa6e2c0a28d8c30033b46f0e2e6ea963fa0f","ab7131c27e7e81f51e70c068029b75cbde6e615e0a793787a9032eaba234d974","f94392eea4f2f295b88c554d0a16bb18a62ae5236a317841822586a9ce5120f9","f1016e1d5ea289f503143421d6f6dc0be047f69a1246d65f8c84cb948209d999","03aeaa840954150a6f98f227be48f211d42eb85cf7cbcfbe6c4b548b70a4510d","ea2e5112a1b946fd6eaca3187498613b44793ad8497035992e4d4903adebb83e","edca23fed4b4c0a5e464d6591e01c8267d016809542b6caf832a158da2bca45e","56681ec36714f90436c4617b80045ea0cd9a973f850b8a56ffe3bbac2a360293","aa607f61df07d160b787d6f23dc436c71223c1215ff15db181dc6c26ccae7e90","65898425ed5b3b426b8e41ec65ba902a7283d3b515c96db3aa736df80e576462","5da8c05f566214b090a5cf8430b0d16492947d316ea4b74108fb20c10e4fe21b","82dc96bb268219ed424d2c4847ae5494a130e81a9055029b2ac1bdc131f2b277","fc73f7715d9fe788f362c7662b2980c98dbb09c1605c9d649afd7af00369e32c","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e","063857f728dfa41428c5a9a4a243e6bfb3a9e046916ce0fe9f864da9401c7d2f","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","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",{"version":"0c5004386ed814334d2d4abd1d8f2f0b63ea2134d5717d8fb2fb8aabc05288ef","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","4a8b6680f577878255690971bbfe6ec951ece19a0c86a493e66a715762d04db2","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},{"version":"f6ae17283c6912c202004178339d6d22f8c9edfe4e335f9f11b555c631633daf","affectsGlobalScope":true},{"version":"41071d2f1a39386d10bf36d1ba4712ad42a900047f16a109936df9e48f13673e","affectsGlobalScope":true},"4ff816bca793da4d9874123906772ef225619980908e25fd5d40475e12651be0","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","567a315b240a060518c532d38a46803b6d35e75dc14a9be435b6dc20c816741e","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","825080a15a8b14b40ac8c7f90c12a5a11efb0b3857dc02195eae2a3dc98aea14",{"version":"5849dc8dc641e09624b923c5efd78206d48903a68944124051d18ae8117cb475","affectsGlobalScope":true},"8f76c6bfb627f38ab44c35d1915dfa2d24d4b96307d9b6cc56df5bba246a3ab6","265aa5dae437b70cc82626488e3e68747e80fddeccc89ef47205b4dcaf864f47","81f6af9b1d8e4f9e3b7318763a1a93f909ee61e0477b41cc7f3281d9da6ca7f4",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","5469833e9e4eba5e382f9fad09f48eb2cfd133111694887fbcc120140601310c","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102","626520302b2c8880e9eaa3a6a12022cc8b577a32e4d903aef85e3dd275063da4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","753391328df8a591c71aea03b21aae20fddfda47778d5dcbb0a0b24a44b76d1b","add2b97bb56259dccf5ec3760a6eb1f97f0d84ef06779630cb21536ac8e01b06","ed61b2eb8e76abd015c280a448724e483f8c4c1a244548054116185cb031236e","6503fb6addf62f9b10f8564d9869ad824565a914ec1ac3dd7d13da14a3f57036","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","3816fc03ffd9cbd1a7a3362a264756a4a1d547caabea50ca68303046be40e376","0c417b4ec46b88fb62a43ec00204700b560d01eb5677c7faa8ecd34610f096a8","13d29cdeb64e8496424edf42749bbb47de5e42d201cf958911a4638cbcffbd3f","0f9e381eecc5860f693c31fe463b3ca20a64ca9b8db0cf6208cd4a053f064809","95902d5561c6aac5dfc40568a12b0aca324037749dcd32a81f23423bfde69bab","5dfb2aca4136abdc5a2740f14be8134a6e6b66fd53470bb2e954e40f8abfaf3e","577463167dd69bd81f76697dfc3f7b22b77a6152f60a602a9218e52e3183ad67","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","4b28e1c5bf88d891e07a1403358b81a51b3ba2eae1ffada51cca7476b5ac6407","7150ad575d28bf98fae321a1c0f10ad17b127927811f488ded6ff1d88d4244e5","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","93733466609dd8bf72eace502a24ca7574bd073d934216e628f1b615c8d3cb3c","45e9228761aabcadb79c82fb3008523db334491525bdb8e74e0f26eaf7a4f7f4","aeacac2778c9821512b6b889da79ac31606a863610c8f28da1e483579627bf90","569fdb354062fc098a6a3ba93a029edf22d6fe480cf72b231b3c07832b2e7c97","bf9876e62fb7f4237deafab8c7444770ef6e82b4cad2d5dc768664ff340feeb2","6cf60e76d37faf0fbc2f80a873eab0fd545f6b1bf300e7f0823f956ddb3083e9","6adaa6103086f931e3eee20f0987e86e8879e9d13aa6bd6075ccfc58b9c5681c","ee0af0f2b8d3b4d0baf669f2ff6fcef4a8816a473c894cc7c905029f7505fed0","619062cca9c6ac6bfb7774ea4e845a1e548b8a3f155a7802266a08befea48870","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"b6e8b63e2dec1b6742890259e31b094f8dff3b7558b10735da100ecccb4e07e5","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","24a09dc3e07d69b0a224dbd14b2994c40d1efd0954e759004b61b9e683dabe5f",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","0ad2a04de2246300db5468491b6d76f1f8de510822eaa0c89b46ada60f4f2cbe","7c1e19aaac1f980bf5842da2f40b19b50aa5d9429be97384a82219680ef70498","8868835a248a95ee97085831014d989ccfc87c0bc3dcffc2d628809d9648815f","a2f6708415475f137756bd1761d6003d72ed646af52ace1cb4e6f11b34ce2047","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","eb09cf44043f7d6e0208dca6f0555207015e91fff5ff77b9c21d63672f7d68d5","6f56706c6828d0299f46f8b1a79ecae0757b91b48e63baf6f0c5292d02037129","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"4a17452616730089378f7018860f0a8db04cb5f2efc6884bebd966da8b0002ab","012a04966bcb8a6f522ccd21f6efac3d837f3ea806c55b5849556aad22777f38","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e"],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"./lib","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[147],[102,147],[93,94,96,99,101,147],[93,147],[93,96,147],[122,147,154,155],[114,147,154],[119,122,146,147,154,158,159,160],[147,162],[147,166],[147,167,168],[147,167],[146,147,154,173],[122,147,154],[122,147],[147,154],[147,162,163],[136,147,154,177,179],[147,184,185],[147,182,183,184],[119,122,147,154,171,172],[147,156,172,173,188],[119,120,147,154,191],[122,124,136,146,147,154],[147,193],[147,199],[119,122,124,127,136,146,147,154],[147,204],[147,204,205],[67,147],[51,54,61,62,63,64,147],[54,57,65,147],[51,54,57,65,147],[51,54,57,61,62,64,65,66,147],[119,124,147,154,209,210],[119,147,154],[147,213,215,216,217,218,219,220,221,222,223,224,225],[147,213,214,216,217,218,219,220,221,222,223,224,225],[147,214,215,216,217,218,219,220,221,222,223,224,225],[147,213,214,215,217,218,219,220,221,222,223,224,225],[147,213,214,215,216,218,219,220,221,222,223,224,225],[147,213,214,215,216,217,219,220,221,222,223,224,225],[147,213,214,215,216,217,218,220,221,222,223,224,225],[147,213,214,215,216,217,218,219,221,222,223,224,225],[147,213,214,215,216,217,218,219,220,222,223,224,225],[147,213,214,215,216,217,218,219,220,221,223,224,225],[147,213,214,215,216,217,218,219,220,221,222,224,225],[147,213,214,215,216,217,218,219,220,221,222,223,225],[147,213,214,215,216,217,218,219,220,221,222,223,224],[147,245],[147,230],[147,234,235,236],[147,233],[147,235],[147,212,231,232,237,240,242,243,244],[147,232,238,239,245],[147,238,241],[147,232,233,238,245],[147,232,245],[147,226,227,228,229],[122,146,147,154,252,253],[122,136,147,154],[104,147],[107,147],[108,113,147],[109,119,120,127,136,146,147],[109,110,119,127,147],[111,147],[112,113,120,128,147],[113,136,143,147],[114,116,119,127,147],[115,147],[116,117,147],[118,119,147],[119,147],[119,120,121,136,146,147],[119,120,121,136,147],[122,127,136,146,147],[119,120,122,123,127,136,143,146,147],[122,124,136,143,146,147],[104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153],[119,125,147],[126,146,147],[116,119,127,136,147],[128,147],[129,147],[107,130,147],[131,145,147,151],[132,147],[133,147],[119,134,147],[134,135,147,149],[119,136,137,138,147],[136,138,147],[136,137,147],[139,147],[140,147],[119,141,142,147],[141,142,147],[113,127,136,143,147],[144,147],[127,145,147],[108,122,133,146,147],[113,147],[136,147,148],[147,149],[147,150],[108,113,119,121,130,136,146,147,149,151],[136,147,152],[147,199,262],[147,195,196,197,198],[147,266,305],[147,266,290,305],[147,305],[147,266],[147,266,291,305],[147,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304],[147,291,305],[120,147,189],[122,147,154,187],[147,162,308],[147,307],[147,315,316],[147,184,315],[147,184,316],[147,319],[147,154,193,321],[147,154,325,326,327,328,329,330,331,332,333,334,335],[147,324,325,334],[147,325,334],[147,312,324,325,334],[147,325],[113,147,324,334],[147,324,325,326,327,328,329,330,331,332,333,335],[113,147,154,314,319,320,323,336],[119,122,124,136,143,146,147,152,154],[147,341],[48,49,147],[48,147],[47,49,51,147],[48,54,55,147],[47,51,52,53,147],[47,51,54,56,147],[47,51,147],[47,147],[47,48,50,147],[47,48,50,51,52,54,55,56,147],[58,147],[57,58,59,60,147],[49,68,120,147],[68,74,129,147],[68,69,71,147],[71,147],[45,46,68,73,120,129,147],[45,46,68,70,120,129,147],[45,68,69,75,76,77,78,79,80,81,82,83,84,85,86,147],[45,68,69,88,89,147],[45,68,69,91,147],[68,69,147],[44,147]],"referencedMap":[[307,1],[103,2],[102,3],[96,4],[95,1],[94,4],[93,1],[99,5],[97,4],[98,1],[101,4],[100,1],[156,6],[157,7],[161,8],[163,9],[164,9],[162,1],[165,1],[167,10],[169,11],[168,12],[166,1],[170,1],[174,13],[155,14],[175,1],[176,15],[177,16],[178,17],[180,18],[181,1],[186,19],[182,1],[185,20],[184,1],[173,21],[189,22],[190,1],[192,23],[179,24],[194,25],[200,26],[201,1],[159,1],[202,27],[203,1],[204,1],[205,28],[206,29],[68,30],[65,31],[62,32],[63,33],[64,32],[67,34],[66,30],[183,1],[207,1],[208,1],[211,35],[210,1],[209,1],[158,36],[212,1],[214,37],[215,38],[213,39],[216,40],[217,41],[218,42],[219,43],[220,44],[221,45],[222,46],[223,47],[224,48],[225,49],[246,50],[231,51],[237,52],[235,1],[234,53],[236,54],[245,55],[240,56],[242,57],[243,58],[244,59],[238,1],[239,59],[241,59],[233,59],[232,1],[247,1],[248,25],[227,1],[226,1],[229,51],[230,60],[228,51],[187,1],[191,1],[249,1],[250,1],[251,1],[253,1],[254,61],[252,62],[104,63],[105,63],[107,64],[108,65],[109,66],[110,67],[111,68],[112,69],[113,70],[114,71],[115,72],[116,73],[117,73],[118,74],[119,75],[120,76],[121,77],[106,1],[153,1],[122,78],[123,79],[124,80],[154,81],[125,82],[126,83],[127,84],[128,85],[129,86],[130,87],[131,88],[132,89],[133,90],[134,91],[135,92],[136,93],[138,94],[137,95],[139,96],[140,97],[141,98],[142,99],[143,100],[144,101],[145,102],[146,103],[147,104],[148,105],[149,106],[150,107],[151,108],[152,109],[255,1],[256,75],[257,1],[258,1],[259,1],[44,1],[260,1],[197,1],[172,1],[171,1],[261,26],[262,110],[195,1],[199,111],[263,16],[160,62],[264,1],[265,1],[198,1],[290,112],[291,113],[266,114],[269,114],[288,112],[289,112],[279,115],[278,115],[276,112],[271,112],[284,112],[282,112],[286,112],[270,112],[283,112],[287,112],[272,112],[273,112],[285,112],[267,112],[274,112],[275,112],[277,112],[281,112],[292,116],[280,112],[268,112],[305,117],[304,1],[299,116],[301,118],[300,116],[293,116],[294,116],[296,116],[298,116],[302,118],[303,118],[295,118],[297,118],[306,119],[188,120],[309,121],[308,122],[310,1],[311,14],[312,1],[313,1],[314,1],[317,123],[316,124],[315,125],[318,1],[320,126],[193,1],[322,127],[338,1],[336,128],[335,129],[326,130],[327,131],[328,131],[329,130],[330,130],[331,130],[332,132],[325,133],[333,129],[334,134],[324,1],[337,135],[323,1],[339,1],[340,136],[341,1],[342,137],[50,138],[49,139],[48,140],[56,141],[54,142],[55,143],[52,144],[53,145],[51,146],[57,147],[47,1],[196,1],[58,145],[59,148],[60,1],[61,149],[319,1],[9,1],[10,1],[14,1],[13,1],[3,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[4,1],[5,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[35,1],[36,1],[37,1],[8,1],[42,1],[38,1],[39,1],[40,1],[41,1],[2,1],[1,1],[43,1],[12,1],[11,1],[321,25],[69,150],[73,151],[70,152],[72,153],[74,154],[71,155],[87,156],[90,157],[92,158],[79,159],[45,160],[46,1],[88,159],[78,159],[77,159],[75,159],[76,159],[85,159],[80,159],[81,159],[82,159],[83,159],[84,159],[91,159],[89,159],[86,159]],"exportedModulesMap":[[307,1],[103,2],[102,3],[96,4],[95,1],[94,4],[93,1],[99,5],[97,4],[98,1],[101,4],[100,1],[156,6],[157,7],[161,8],[163,9],[164,9],[162,1],[165,1],[167,10],[169,11],[168,12],[166,1],[170,1],[174,13],[155,14],[175,1],[176,15],[177,16],[178,17],[180,18],[181,1],[186,19],[182,1],[185,20],[184,1],[173,21],[189,22],[190,1],[192,23],[179,24],[194,25],[200,26],[201,1],[159,1],[202,27],[203,1],[204,1],[205,28],[206,29],[68,30],[65,31],[62,32],[63,33],[64,32],[67,34],[66,30],[183,1],[207,1],[208,1],[211,35],[210,1],[209,1],[158,36],[212,1],[214,37],[215,38],[213,39],[216,40],[217,41],[218,42],[219,43],[220,44],[221,45],[222,46],[223,47],[224,48],[225,49],[246,50],[231,51],[237,52],[235,1],[234,53],[236,54],[245,55],[240,56],[242,57],[243,58],[244,59],[238,1],[239,59],[241,59],[233,59],[232,1],[247,1],[248,25],[227,1],[226,1],[229,51],[230,60],[228,51],[187,1],[191,1],[249,1],[250,1],[251,1],[253,1],[254,61],[252,62],[104,63],[105,63],[107,64],[108,65],[109,66],[110,67],[111,68],[112,69],[113,70],[114,71],[115,72],[116,73],[117,73],[118,74],[119,75],[120,76],[121,77],[106,1],[153,1],[122,78],[123,79],[124,80],[154,81],[125,82],[126,83],[127,84],[128,85],[129,86],[130,87],[131,88],[132,89],[133,90],[134,91],[135,92],[136,93],[138,94],[137,95],[139,96],[140,97],[141,98],[142,99],[143,100],[144,101],[145,102],[146,103],[147,104],[148,105],[149,106],[150,107],[151,108],[152,109],[255,1],[256,75],[257,1],[258,1],[259,1],[44,1],[260,1],[197,1],[172,1],[171,1],[261,26],[262,110],[195,1],[199,111],[263,16],[160,62],[264,1],[265,1],[198,1],[290,112],[291,113],[266,114],[269,114],[288,112],[289,112],[279,115],[278,115],[276,112],[271,112],[284,112],[282,112],[286,112],[270,112],[283,112],[287,112],[272,112],[273,112],[285,112],[267,112],[274,112],[275,112],[277,112],[281,112],[292,116],[280,112],[268,112],[305,117],[304,1],[299,116],[301,118],[300,116],[293,116],[294,116],[296,116],[298,116],[302,118],[303,118],[295,118],[297,118],[306,119],[188,120],[309,121],[308,122],[310,1],[311,14],[312,1],[313,1],[314,1],[317,123],[316,124],[315,125],[318,1],[320,126],[193,1],[322,127],[338,1],[336,128],[335,129],[326,130],[327,131],[328,131],[329,130],[330,130],[331,130],[332,132],[325,133],[333,129],[334,134],[324,1],[337,135],[323,1],[339,1],[340,136],[341,1],[342,137],[50,138],[49,139],[48,140],[56,141],[54,142],[55,143],[52,144],[53,145],[51,146],[57,147],[47,1],[196,1],[58,145],[59,148],[60,1],[61,149],[319,1],[9,1],[10,1],[14,1],[13,1],[3,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[4,1],[5,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[34,1],[35,1],[36,1],[37,1],[8,1],[42,1],[38,1],[39,1],[40,1],[41,1],[2,1],[1,1],[43,1],[12,1],[11,1],[321,25],[69,150],[73,151],[70,152],[72,153],[74,154],[71,155],[87,156],[90,157],[92,158],[79,159],[45,160],[46,1],[88,159],[78,159],[77,159],[75,159],[76,159],[85,159],[80,159],[81,159],[82,159],[83,159],[84,159],[91,159],[89,159],[86,159]],"semanticDiagnosticsPerFile":[307,103,102,96,95,94,93,99,97,98,101,100,156,157,161,163,164,162,165,167,169,168,166,170,174,155,175,176,177,178,180,181,186,182,185,184,173,189,190,192,179,194,200,201,159,202,203,204,205,206,68,65,62,63,64,67,66,183,207,208,211,210,209,158,212,214,215,213,216,217,218,219,220,221,222,223,224,225,246,231,237,235,234,236,245,240,242,243,244,238,239,241,233,232,247,248,227,226,229,230,228,187,191,249,250,251,253,254,252,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,106,153,122,123,124,154,125,126,127,128,129,130,131,132,133,134,135,136,138,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,255,256,257,258,259,44,260,197,172,171,261,262,195,199,263,160,264,265,198,290,291,266,269,288,289,279,278,276,271,284,282,286,270,283,287,272,273,285,267,274,275,277,281,292,280,268,305,304,299,301,300,293,294,296,298,302,303,295,297,306,188,309,308,310,311,312,313,314,317,316,315,318,320,193,322,338,336,335,326,327,328,329,330,331,332,325,333,334,324,337,323,339,340,341,342,50,49,48,56,54,55,52,53,51,57,47,196,58,59,60,61,319,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,42,38,39,40,41,2,1,43,12,11,321,69,73,70,72,74,71,87,90,92,79,45,46,88,78,77,75,76,85,80,81,82,83,84,91,89,86]},"version":"4.5.5"}
package/LICENSE.md DELETED
@@ -1,27 +0,0 @@
1
- ---
2
- title: The MIT License (MIT)
3
- category: Getting Started
4
- order: 9
5
- ---
6
-
7
- # The MIT License (MIT)
8
-
9
- Copyright (c) 2015 Instructure, Inc.
10
-
11
- **Permission is hereby granted, free of charge, to any person obtaining a copy
12
- of this software and associated documentation files (the "Software"), to deal
13
- in the Software without restriction, including without limitation the rights
14
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
- copies of the Software, and to permit persons to whom the Software is
16
- furnished to do so, subject to the following conditions.**
17
-
18
- The above copyright notice and this permission notice shall be included in all
19
- copies or substantial portions of the Software.
20
-
21
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
- SOFTWARE.