@scoutqa/playwright 1.58.0-fork.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (172) hide show
  1. package/ThirdPartyNotices.txt +3919 -0
  2. package/cli.js +19 -0
  3. package/index.d.ts +17 -0
  4. package/index.js +17 -0
  5. package/index.mjs +18 -0
  6. package/jsx-runtime.js +42 -0
  7. package/jsx-runtime.mjs +21 -0
  8. package/lib/agents/agentParser.js +89 -0
  9. package/lib/agents/copilot-setup-steps.yml +34 -0
  10. package/lib/agents/generateAgents.js +348 -0
  11. package/lib/agents/playwright-test-coverage.prompt.md +31 -0
  12. package/lib/agents/playwright-test-generate.prompt.md +8 -0
  13. package/lib/agents/playwright-test-generator.agent.md +88 -0
  14. package/lib/agents/playwright-test-heal.prompt.md +6 -0
  15. package/lib/agents/playwright-test-healer.agent.md +55 -0
  16. package/lib/agents/playwright-test-plan.prompt.md +9 -0
  17. package/lib/agents/playwright-test-planner.agent.md +73 -0
  18. package/lib/common/config.js +281 -0
  19. package/lib/common/configLoader.js +344 -0
  20. package/lib/common/esmLoaderHost.js +104 -0
  21. package/lib/common/expectBundle.js +43 -0
  22. package/lib/common/expectBundleImpl.js +407 -0
  23. package/lib/common/fixtures.js +302 -0
  24. package/lib/common/globals.js +58 -0
  25. package/lib/common/ipc.js +60 -0
  26. package/lib/common/poolBuilder.js +85 -0
  27. package/lib/common/process.js +132 -0
  28. package/lib/common/suiteUtils.js +140 -0
  29. package/lib/common/test.js +322 -0
  30. package/lib/common/testLoader.js +101 -0
  31. package/lib/common/testType.js +298 -0
  32. package/lib/common/validators.js +68 -0
  33. package/lib/fsWatcher.js +67 -0
  34. package/lib/index.js +721 -0
  35. package/lib/internalsForTest.js +42 -0
  36. package/lib/isomorphic/events.js +77 -0
  37. package/lib/isomorphic/folders.js +30 -0
  38. package/lib/isomorphic/stringInternPool.js +69 -0
  39. package/lib/isomorphic/teleReceiver.js +523 -0
  40. package/lib/isomorphic/teleSuiteUpdater.js +157 -0
  41. package/lib/isomorphic/testServerConnection.js +225 -0
  42. package/lib/isomorphic/testServerInterface.js +16 -0
  43. package/lib/isomorphic/testTree.js +329 -0
  44. package/lib/isomorphic/types.d.js +16 -0
  45. package/lib/loader/loaderMain.js +59 -0
  46. package/lib/matchers/expect.js +324 -0
  47. package/lib/matchers/matcherHint.js +87 -0
  48. package/lib/matchers/matchers.js +382 -0
  49. package/lib/matchers/toBeTruthy.js +73 -0
  50. package/lib/matchers/toEqual.js +99 -0
  51. package/lib/matchers/toHaveURL.js +102 -0
  52. package/lib/matchers/toMatchAriaSnapshot.js +159 -0
  53. package/lib/matchers/toMatchSnapshot.js +341 -0
  54. package/lib/matchers/toMatchText.js +99 -0
  55. package/lib/mcp/browser/actions.d.js +16 -0
  56. package/lib/mcp/browser/browserContextFactory.js +321 -0
  57. package/lib/mcp/browser/browserServerBackend.js +77 -0
  58. package/lib/mcp/browser/config.js +418 -0
  59. package/lib/mcp/browser/context.js +285 -0
  60. package/lib/mcp/browser/response.js +352 -0
  61. package/lib/mcp/browser/sessionLog.js +160 -0
  62. package/lib/mcp/browser/tab.js +328 -0
  63. package/lib/mcp/browser/tools/common.js +63 -0
  64. package/lib/mcp/browser/tools/console.js +44 -0
  65. package/lib/mcp/browser/tools/dialogs.js +60 -0
  66. package/lib/mcp/browser/tools/evaluate.js +59 -0
  67. package/lib/mcp/browser/tools/files.js +58 -0
  68. package/lib/mcp/browser/tools/form.js +63 -0
  69. package/lib/mcp/browser/tools/install.js +69 -0
  70. package/lib/mcp/browser/tools/keyboard.js +84 -0
  71. package/lib/mcp/browser/tools/mouse.js +107 -0
  72. package/lib/mcp/browser/tools/navigate.js +62 -0
  73. package/lib/mcp/browser/tools/network.js +60 -0
  74. package/lib/mcp/browser/tools/pdf.js +48 -0
  75. package/lib/mcp/browser/tools/runCode.js +77 -0
  76. package/lib/mcp/browser/tools/screenshot.js +105 -0
  77. package/lib/mcp/browser/tools/snapshot.js +191 -0
  78. package/lib/mcp/browser/tools/tabs.js +67 -0
  79. package/lib/mcp/browser/tools/tool.js +50 -0
  80. package/lib/mcp/browser/tools/tracing.js +74 -0
  81. package/lib/mcp/browser/tools/utils.js +94 -0
  82. package/lib/mcp/browser/tools/verify.js +143 -0
  83. package/lib/mcp/browser/tools/wait.js +63 -0
  84. package/lib/mcp/browser/tools.js +82 -0
  85. package/lib/mcp/browser/watchdog.js +44 -0
  86. package/lib/mcp/config.d.js +16 -0
  87. package/lib/mcp/extension/cdpRelay.js +351 -0
  88. package/lib/mcp/extension/extensionContextFactory.js +76 -0
  89. package/lib/mcp/extension/protocol.js +28 -0
  90. package/lib/mcp/index.js +61 -0
  91. package/lib/mcp/log.js +35 -0
  92. package/lib/mcp/program.js +93 -0
  93. package/lib/mcp/sdk/exports.js +28 -0
  94. package/lib/mcp/sdk/http.js +152 -0
  95. package/lib/mcp/sdk/inProcessTransport.js +71 -0
  96. package/lib/mcp/sdk/server.js +207 -0
  97. package/lib/mcp/sdk/tool.js +47 -0
  98. package/lib/mcp/test/browserBackend.js +98 -0
  99. package/lib/mcp/test/generatorTools.js +122 -0
  100. package/lib/mcp/test/plannerTools.js +144 -0
  101. package/lib/mcp/test/seed.js +82 -0
  102. package/lib/mcp/test/streams.js +44 -0
  103. package/lib/mcp/test/testBackend.js +99 -0
  104. package/lib/mcp/test/testContext.js +279 -0
  105. package/lib/mcp/test/testTool.js +30 -0
  106. package/lib/mcp/test/testTools.js +108 -0
  107. package/lib/plugins/gitCommitInfoPlugin.js +198 -0
  108. package/lib/plugins/index.js +28 -0
  109. package/lib/plugins/webServerPlugin.js +237 -0
  110. package/lib/program.js +417 -0
  111. package/lib/reporters/base.js +609 -0
  112. package/lib/reporters/blob.js +139 -0
  113. package/lib/reporters/dot.js +82 -0
  114. package/lib/reporters/empty.js +32 -0
  115. package/lib/reporters/github.js +128 -0
  116. package/lib/reporters/html.js +623 -0
  117. package/lib/reporters/internalReporter.js +140 -0
  118. package/lib/reporters/json.js +255 -0
  119. package/lib/reporters/junit.js +232 -0
  120. package/lib/reporters/line.js +113 -0
  121. package/lib/reporters/list.js +231 -0
  122. package/lib/reporters/listModeReporter.js +69 -0
  123. package/lib/reporters/markdown.js +144 -0
  124. package/lib/reporters/merge.js +546 -0
  125. package/lib/reporters/multiplexer.js +112 -0
  126. package/lib/reporters/reporterV2.js +102 -0
  127. package/lib/reporters/teleEmitter.js +319 -0
  128. package/lib/reporters/versions/blobV1.js +16 -0
  129. package/lib/runner/dispatcher.js +533 -0
  130. package/lib/runner/failureTracker.js +72 -0
  131. package/lib/runner/lastRun.js +77 -0
  132. package/lib/runner/loadUtils.js +334 -0
  133. package/lib/runner/loaderHost.js +89 -0
  134. package/lib/runner/processHost.js +180 -0
  135. package/lib/runner/projectUtils.js +241 -0
  136. package/lib/runner/rebase.js +189 -0
  137. package/lib/runner/reporters.js +138 -0
  138. package/lib/runner/sigIntWatcher.js +96 -0
  139. package/lib/runner/storage.js +91 -0
  140. package/lib/runner/taskRunner.js +127 -0
  141. package/lib/runner/tasks.js +410 -0
  142. package/lib/runner/testGroups.js +125 -0
  143. package/lib/runner/testRunner.js +398 -0
  144. package/lib/runner/testServer.js +269 -0
  145. package/lib/runner/uiModeReporter.js +30 -0
  146. package/lib/runner/vcs.js +72 -0
  147. package/lib/runner/watchMode.js +396 -0
  148. package/lib/runner/workerHost.js +104 -0
  149. package/lib/third_party/pirates.js +62 -0
  150. package/lib/third_party/tsconfig-loader.js +103 -0
  151. package/lib/transform/babelBundle.js +43 -0
  152. package/lib/transform/babelBundleImpl.js +461 -0
  153. package/lib/transform/babelHighlightUtils.js +63 -0
  154. package/lib/transform/compilationCache.js +272 -0
  155. package/lib/transform/esmLoader.js +103 -0
  156. package/lib/transform/portTransport.js +67 -0
  157. package/lib/transform/transform.js +296 -0
  158. package/lib/util.js +403 -0
  159. package/lib/utilsBundle.js +43 -0
  160. package/lib/utilsBundleImpl.js +100 -0
  161. package/lib/worker/fixtureRunner.js +258 -0
  162. package/lib/worker/testInfo.js +557 -0
  163. package/lib/worker/testTracing.js +345 -0
  164. package/lib/worker/timeoutManager.js +174 -0
  165. package/lib/worker/util.js +31 -0
  166. package/lib/worker/workerMain.js +529 -0
  167. package/package.json +72 -0
  168. package/test.d.ts +18 -0
  169. package/test.js +24 -0
  170. package/test.mjs +34 -0
  171. package/types/test.d.ts +10277 -0
  172. package/types/testReporter.d.ts +827 -0
@@ -0,0 +1,3919 @@
1
+ microsoft/playwright
2
+
3
+ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
4
+
5
+ This project incorporates components from the projects listed below. The original copyright notices and the licenses under which Microsoft received such components are set forth below. Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise.
6
+
7
+ - @ampproject/remapping@2.2.1 (https://github.com/ampproject/remapping)
8
+ - @babel/code-frame@7.27.1 (https://github.com/babel/babel)
9
+ - @babel/compat-data@7.28.0 (https://github.com/babel/babel)
10
+ - @babel/core@7.28.0 (https://github.com/babel/babel)
11
+ - @babel/generator@7.28.0 (https://github.com/babel/babel)
12
+ - @babel/helper-annotate-as-pure@7.27.3 (https://github.com/babel/babel)
13
+ - @babel/helper-compilation-targets@7.27.2 (https://github.com/babel/babel)
14
+ - @babel/helper-create-class-features-plugin@7.27.1 (https://github.com/babel/babel)
15
+ - @babel/helper-globals@7.28.0 (https://github.com/babel/babel)
16
+ - @babel/helper-member-expression-to-functions@7.27.1 (https://github.com/babel/babel)
17
+ - @babel/helper-module-imports@7.27.1 (https://github.com/babel/babel)
18
+ - @babel/helper-module-transforms@7.27.3 (https://github.com/babel/babel)
19
+ - @babel/helper-optimise-call-expression@7.27.1 (https://github.com/babel/babel)
20
+ - @babel/helper-plugin-utils@7.27.1 (https://github.com/babel/babel)
21
+ - @babel/helper-replace-supers@7.27.1 (https://github.com/babel/babel)
22
+ - @babel/helper-skip-transparent-expression-wrappers@7.27.1 (https://github.com/babel/babel)
23
+ - @babel/helper-string-parser@7.27.1 (https://github.com/babel/babel)
24
+ - @babel/helper-validator-identifier@7.27.1 (https://github.com/babel/babel)
25
+ - @babel/helper-validator-identifier@7.28.5 (https://github.com/babel/babel)
26
+ - @babel/helper-validator-option@7.27.1 (https://github.com/babel/babel)
27
+ - @babel/helpers@7.28.2 (https://github.com/babel/babel)
28
+ - @babel/parser@7.28.0 (https://github.com/babel/babel)
29
+ - @babel/plugin-proposal-decorators@7.28.0 (https://github.com/babel/babel)
30
+ - @babel/plugin-syntax-async-generators@7.8.4 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators)
31
+ - @babel/plugin-syntax-decorators@7.27.1 (https://github.com/babel/babel)
32
+ - @babel/plugin-syntax-import-attributes@7.27.1 (https://github.com/babel/babel)
33
+ - @babel/plugin-syntax-json-strings@7.8.3 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings)
34
+ - @babel/plugin-syntax-jsx@7.27.1 (https://github.com/babel/babel)
35
+ - @babel/plugin-syntax-object-rest-spread@7.8.3 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread)
36
+ - @babel/plugin-syntax-optional-catch-binding@7.8.3 (https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding)
37
+ - @babel/plugin-syntax-typescript@7.27.1 (https://github.com/babel/babel)
38
+ - @babel/plugin-transform-class-properties@7.27.1 (https://github.com/babel/babel)
39
+ - @babel/plugin-transform-class-static-block@7.27.1 (https://github.com/babel/babel)
40
+ - @babel/plugin-transform-destructuring@7.28.0 (https://github.com/babel/babel)
41
+ - @babel/plugin-transform-explicit-resource-management@7.28.0 (https://github.com/babel/babel)
42
+ - @babel/plugin-transform-export-namespace-from@7.27.1 (https://github.com/babel/babel)
43
+ - @babel/plugin-transform-logical-assignment-operators@7.27.1 (https://github.com/babel/babel)
44
+ - @babel/plugin-transform-modules-commonjs@7.27.1 (https://github.com/babel/babel)
45
+ - @babel/plugin-transform-nullish-coalescing-operator@7.27.1 (https://github.com/babel/babel)
46
+ - @babel/plugin-transform-numeric-separator@7.27.1 (https://github.com/babel/babel)
47
+ - @babel/plugin-transform-optional-chaining@7.27.1 (https://github.com/babel/babel)
48
+ - @babel/plugin-transform-private-methods@7.27.1 (https://github.com/babel/babel)
49
+ - @babel/plugin-transform-private-property-in-object@7.27.1 (https://github.com/babel/babel)
50
+ - @babel/plugin-transform-react-jsx@7.27.1 (https://github.com/babel/babel)
51
+ - @babel/plugin-transform-typescript@7.28.0 (https://github.com/babel/babel)
52
+ - @babel/preset-typescript@7.27.1 (https://github.com/babel/babel)
53
+ - @babel/template@7.27.2 (https://github.com/babel/babel)
54
+ - @babel/traverse@7.28.0 (https://github.com/babel/babel)
55
+ - @babel/types@7.28.2 (https://github.com/babel/babel)
56
+ - @jest/diff-sequences@30.0.1 (https://github.com/jestjs/jest)
57
+ - @jest/expect-utils@30.2.0 (https://github.com/jestjs/jest)
58
+ - @jest/get-type@30.1.0 (https://github.com/jestjs/jest)
59
+ - @jest/pattern@30.0.1 (https://github.com/jestjs/jest)
60
+ - @jest/schemas@30.0.5 (https://github.com/jestjs/jest)
61
+ - @jest/types@30.2.0 (https://github.com/jestjs/jest)
62
+ - @jridgewell/gen-mapping@0.3.12 (https://github.com/jridgewell/sourcemaps)
63
+ - @jridgewell/resolve-uri@3.1.1 (https://github.com/jridgewell/resolve-uri)
64
+ - @jridgewell/sourcemap-codec@1.5.4 (https://github.com/jridgewell/sourcemaps)
65
+ - @jridgewell/trace-mapping@0.3.29 (https://github.com/jridgewell/sourcemaps)
66
+ - @sinclair/typebox@0.34.41 (https://github.com/sinclairzx81/typebox)
67
+ - @types/istanbul-lib-coverage@2.0.6 (https://github.com/DefinitelyTyped/DefinitelyTyped)
68
+ - @types/istanbul-lib-report@3.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
69
+ - @types/istanbul-reports@3.0.4 (https://github.com/DefinitelyTyped/DefinitelyTyped)
70
+ - @types/node@24.9.2 (https://github.com/DefinitelyTyped/DefinitelyTyped)
71
+ - @types/stack-utils@2.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
72
+ - @types/yargs-parser@21.0.3 (https://github.com/DefinitelyTyped/DefinitelyTyped)
73
+ - @types/yargs@17.0.34 (https://github.com/DefinitelyTyped/DefinitelyTyped)
74
+ - ansi-colors@4.1.3 (https://github.com/doowb/ansi-colors)
75
+ - ansi-styles@4.3.0 (https://github.com/chalk/ansi-styles)
76
+ - ansi-styles@5.2.0 (https://github.com/chalk/ansi-styles)
77
+ - anymatch@3.1.3 (https://github.com/micromatch/anymatch)
78
+ - binary-extensions@2.2.0 (https://github.com/sindresorhus/binary-extensions)
79
+ - braces@3.0.3 (https://github.com/micromatch/braces)
80
+ - browserslist@4.25.1 (https://github.com/browserslist/browserslist)
81
+ - buffer-from@1.1.2 (https://github.com/LinusU/buffer-from)
82
+ - caniuse-lite@1.0.30001731 (https://github.com/browserslist/caniuse-lite)
83
+ - chalk@4.1.2 (https://github.com/chalk/chalk)
84
+ - chokidar@3.6.0 (https://github.com/paulmillr/chokidar)
85
+ - ci-info@4.3.1 (https://github.com/watson/ci-info)
86
+ - codemirror@5.65.18 (https://github.com/codemirror/CodeMirror)
87
+ - color-convert@2.0.1 (https://github.com/Qix-/color-convert)
88
+ - color-name@1.1.4 (https://github.com/colorjs/color-name)
89
+ - convert-source-map@2.0.0 (https://github.com/thlorenz/convert-source-map)
90
+ - debug@4.4.0 (https://github.com/debug-js/debug)
91
+ - electron-to-chromium@1.5.192 (https://github.com/kilian/electron-to-chromium)
92
+ - enquirer@2.3.6 (https://github.com/enquirer/enquirer)
93
+ - escalade@3.2.0 (https://github.com/lukeed/escalade)
94
+ - escape-string-regexp@2.0.0 (https://github.com/sindresorhus/escape-string-regexp)
95
+ - expect@30.2.0 (https://github.com/jestjs/jest)
96
+ - fill-range@7.1.1 (https://github.com/jonschlinkert/fill-range)
97
+ - gensync@1.0.0-beta.2 (https://github.com/loganfsmyth/gensync)
98
+ - get-east-asian-width@1.3.0 (https://github.com/sindresorhus/get-east-asian-width)
99
+ - glob-parent@5.1.2 (https://github.com/gulpjs/glob-parent)
100
+ - graceful-fs@4.2.11 (https://github.com/isaacs/node-graceful-fs)
101
+ - has-flag@4.0.0 (https://github.com/sindresorhus/has-flag)
102
+ - is-binary-path@2.1.0 (https://github.com/sindresorhus/is-binary-path)
103
+ - is-extglob@2.1.1 (https://github.com/jonschlinkert/is-extglob)
104
+ - is-glob@4.0.3 (https://github.com/micromatch/is-glob)
105
+ - is-number@7.0.0 (https://github.com/jonschlinkert/is-number)
106
+ - jest-diff@30.2.0 (https://github.com/jestjs/jest)
107
+ - jest-matcher-utils@30.2.0 (https://github.com/jestjs/jest)
108
+ - jest-message-util@30.2.0 (https://github.com/jestjs/jest)
109
+ - jest-mock@30.2.0 (https://github.com/jestjs/jest)
110
+ - jest-regex-util@30.0.1 (https://github.com/jestjs/jest)
111
+ - jest-util@30.2.0 (https://github.com/jestjs/jest)
112
+ - js-tokens@4.0.0 (https://github.com/lydell/js-tokens)
113
+ - jsesc@3.1.0 (https://github.com/mathiasbynens/jsesc)
114
+ - json5@2.2.3 (https://github.com/json5/json5)
115
+ - lru-cache@5.1.1 (https://github.com/isaacs/node-lru-cache)
116
+ - micromatch@4.0.8 (https://github.com/micromatch/micromatch)
117
+ - ms@2.1.3 (https://github.com/vercel/ms)
118
+ - node-releases@2.0.19 (https://github.com/chicoxyzzy/node-releases)
119
+ - normalize-path@3.0.0 (https://github.com/jonschlinkert/normalize-path)
120
+ - picocolors@1.1.1 (https://github.com/alexeyraspopov/picocolors)
121
+ - picomatch@2.3.1 (https://github.com/micromatch/picomatch)
122
+ - picomatch@4.0.3 (https://github.com/micromatch/picomatch)
123
+ - pretty-format@30.2.0 (https://github.com/jestjs/jest)
124
+ - react-is@18.3.1 (https://github.com/facebook/react)
125
+ - readdirp@3.6.0 (https://github.com/paulmillr/readdirp)
126
+ - semver@6.3.1 (https://github.com/npm/node-semver)
127
+ - slash@3.0.0 (https://github.com/sindresorhus/slash)
128
+ - source-map-support@0.5.21 (https://github.com/evanw/node-source-map-support)
129
+ - source-map@0.6.1 (https://github.com/mozilla/source-map)
130
+ - stack-utils@2.0.6 (https://github.com/tapjs/stack-utils)
131
+ - stoppable@1.1.0 (https://github.com/hunterloftis/stoppable)
132
+ - supports-color@7.2.0 (https://github.com/chalk/supports-color)
133
+ - to-regex-range@5.0.1 (https://github.com/micromatch/to-regex-range)
134
+ - undici-types@7.16.0 (https://github.com/nodejs/undici)
135
+ - update-browserslist-db@1.1.3 (https://github.com/browserslist/update-db)
136
+ - yallist@3.1.1 (https://github.com/isaacs/yallist)
137
+
138
+ %% @ampproject/remapping@2.2.1 NOTICES AND INFORMATION BEGIN HERE
139
+ =========================================
140
+ Apache License
141
+ Version 2.0, January 2004
142
+ http://www.apache.org/licenses/
143
+
144
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
145
+
146
+ 1. Definitions.
147
+
148
+ "License" shall mean the terms and conditions for use, reproduction,
149
+ and distribution as defined by Sections 1 through 9 of this document.
150
+
151
+ "Licensor" shall mean the copyright owner or entity authorized by
152
+ the copyright owner that is granting the License.
153
+
154
+ "Legal Entity" shall mean the union of the acting entity and all
155
+ other entities that control, are controlled by, or are under common
156
+ control with that entity. For the purposes of this definition,
157
+ "control" means (i) the power, direct or indirect, to cause the
158
+ direction or management of such entity, whether by contract or
159
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
160
+ outstanding shares, or (iii) beneficial ownership of such entity.
161
+
162
+ "You" (or "Your") shall mean an individual or Legal Entity
163
+ exercising permissions granted by this License.
164
+
165
+ "Source" form shall mean the preferred form for making modifications,
166
+ including but not limited to software source code, documentation
167
+ source, and configuration files.
168
+
169
+ "Object" form shall mean any form resulting from mechanical
170
+ transformation or translation of a Source form, including but
171
+ not limited to compiled object code, generated documentation,
172
+ and conversions to other media types.
173
+
174
+ "Work" shall mean the work of authorship, whether in Source or
175
+ Object form, made available under the License, as indicated by a
176
+ copyright notice that is included in or attached to the work
177
+ (an example is provided in the Appendix below).
178
+
179
+ "Derivative Works" shall mean any work, whether in Source or Object
180
+ form, that is based on (or derived from) the Work and for which the
181
+ editorial revisions, annotations, elaborations, or other modifications
182
+ represent, as a whole, an original work of authorship. For the purposes
183
+ of this License, Derivative Works shall not include works that remain
184
+ separable from, or merely link (or bind by name) to the interfaces of,
185
+ the Work and Derivative Works thereof.
186
+
187
+ "Contribution" shall mean any work of authorship, including
188
+ the original version of the Work and any modifications or additions
189
+ to that Work or Derivative Works thereof, that is intentionally
190
+ submitted to Licensor for inclusion in the Work by the copyright owner
191
+ or by an individual or Legal Entity authorized to submit on behalf of
192
+ the copyright owner. For the purposes of this definition, "submitted"
193
+ means any form of electronic, verbal, or written communication sent
194
+ to the Licensor or its representatives, including but not limited to
195
+ communication on electronic mailing lists, source code control systems,
196
+ and issue tracking systems that are managed by, or on behalf of, the
197
+ Licensor for the purpose of discussing and improving the Work, but
198
+ excluding communication that is conspicuously marked or otherwise
199
+ designated in writing by the copyright owner as "Not a Contribution."
200
+
201
+ "Contributor" shall mean Licensor and any individual or Legal Entity
202
+ on behalf of whom a Contribution has been received by Licensor and
203
+ subsequently incorporated within the Work.
204
+
205
+ 2. Grant of Copyright License. Subject to the terms and conditions of
206
+ this License, each Contributor hereby grants to You a perpetual,
207
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
208
+ copyright license to reproduce, prepare Derivative Works of,
209
+ publicly display, publicly perform, sublicense, and distribute the
210
+ Work and such Derivative Works in Source or Object form.
211
+
212
+ 3. Grant of Patent License. Subject to the terms and conditions of
213
+ this License, each Contributor hereby grants to You a perpetual,
214
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
215
+ (except as stated in this section) patent license to make, have made,
216
+ use, offer to sell, sell, import, and otherwise transfer the Work,
217
+ where such license applies only to those patent claims licensable
218
+ by such Contributor that are necessarily infringed by their
219
+ Contribution(s) alone or by combination of their Contribution(s)
220
+ with the Work to which such Contribution(s) was submitted. If You
221
+ institute patent litigation against any entity (including a
222
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
223
+ or a Contribution incorporated within the Work constitutes direct
224
+ or contributory patent infringement, then any patent licenses
225
+ granted to You under this License for that Work shall terminate
226
+ as of the date such litigation is filed.
227
+
228
+ 4. Redistribution. You may reproduce and distribute copies of the
229
+ Work or Derivative Works thereof in any medium, with or without
230
+ modifications, and in Source or Object form, provided that You
231
+ meet the following conditions:
232
+
233
+ (a) You must give any other recipients of the Work or
234
+ Derivative Works a copy of this License; and
235
+
236
+ (b) You must cause any modified files to carry prominent notices
237
+ stating that You changed the files; and
238
+
239
+ (c) You must retain, in the Source form of any Derivative Works
240
+ that You distribute, all copyright, patent, trademark, and
241
+ attribution notices from the Source form of the Work,
242
+ excluding those notices that do not pertain to any part of
243
+ the Derivative Works; and
244
+
245
+ (d) If the Work includes a "NOTICE" text file as part of its
246
+ distribution, then any Derivative Works that You distribute must
247
+ include a readable copy of the attribution notices contained
248
+ within such NOTICE file, excluding those notices that do not
249
+ pertain to any part of the Derivative Works, in at least one
250
+ of the following places: within a NOTICE text file distributed
251
+ as part of the Derivative Works; within the Source form or
252
+ documentation, if provided along with the Derivative Works; or,
253
+ within a display generated by the Derivative Works, if and
254
+ wherever such third-party notices normally appear. The contents
255
+ of the NOTICE file are for informational purposes only and
256
+ do not modify the License. You may add Your own attribution
257
+ notices within Derivative Works that You distribute, alongside
258
+ or as an addendum to the NOTICE text from the Work, provided
259
+ that such additional attribution notices cannot be construed
260
+ as modifying the License.
261
+
262
+ You may add Your own copyright statement to Your modifications and
263
+ may provide additional or different license terms and conditions
264
+ for use, reproduction, or distribution of Your modifications, or
265
+ for any such Derivative Works as a whole, provided Your use,
266
+ reproduction, and distribution of the Work otherwise complies with
267
+ the conditions stated in this License.
268
+
269
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
270
+ any Contribution intentionally submitted for inclusion in the Work
271
+ by You to the Licensor shall be under the terms and conditions of
272
+ this License, without any additional terms or conditions.
273
+ Notwithstanding the above, nothing herein shall supersede or modify
274
+ the terms of any separate license agreement you may have executed
275
+ with Licensor regarding such Contributions.
276
+
277
+ 6. Trademarks. This License does not grant permission to use the trade
278
+ names, trademarks, service marks, or product names of the Licensor,
279
+ except as required for reasonable and customary use in describing the
280
+ origin of the Work and reproducing the content of the NOTICE file.
281
+
282
+ 7. Disclaimer of Warranty. Unless required by applicable law or
283
+ agreed to in writing, Licensor provides the Work (and each
284
+ Contributor provides its Contributions) on an "AS IS" BASIS,
285
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
286
+ implied, including, without limitation, any warranties or conditions
287
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
288
+ PARTICULAR PURPOSE. You are solely responsible for determining the
289
+ appropriateness of using or redistributing the Work and assume any
290
+ risks associated with Your exercise of permissions under this License.
291
+
292
+ 8. Limitation of Liability. In no event and under no legal theory,
293
+ whether in tort (including negligence), contract, or otherwise,
294
+ unless required by applicable law (such as deliberate and grossly
295
+ negligent acts) or agreed to in writing, shall any Contributor be
296
+ liable to You for damages, including any direct, indirect, special,
297
+ incidental, or consequential damages of any character arising as a
298
+ result of this License or out of the use or inability to use the
299
+ Work (including but not limited to damages for loss of goodwill,
300
+ work stoppage, computer failure or malfunction, or any and all
301
+ other commercial damages or losses), even if such Contributor
302
+ has been advised of the possibility of such damages.
303
+
304
+ 9. Accepting Warranty or Additional Liability. While redistributing
305
+ the Work or Derivative Works thereof, You may choose to offer,
306
+ and charge a fee for, acceptance of support, warranty, indemnity,
307
+ or other liability obligations and/or rights consistent with this
308
+ License. However, in accepting such obligations, You may act only
309
+ on Your own behalf and on Your sole responsibility, not on behalf
310
+ of any other Contributor, and only if You agree to indemnify,
311
+ defend, and hold each Contributor harmless for any liability
312
+ incurred by, or claims asserted against, such Contributor by reason
313
+ of your accepting any such warranty or additional liability.
314
+
315
+ END OF TERMS AND CONDITIONS
316
+
317
+ APPENDIX: How to apply the Apache License to your work.
318
+
319
+ To apply the Apache License to your work, attach the following
320
+ boilerplate notice, with the fields enclosed by brackets "[]"
321
+ replaced with your own identifying information. (Don't include
322
+ the brackets!) The text should be enclosed in the appropriate
323
+ comment syntax for the file format. We also recommend that a
324
+ file or class name and description of purpose be included on the
325
+ same "printed page" as the copyright notice for easier
326
+ identification within third-party archives.
327
+
328
+ Copyright [yyyy] [name of copyright owner]
329
+
330
+ Licensed under the Apache License, Version 2.0 (the "License");
331
+ you may not use this file except in compliance with the License.
332
+ You may obtain a copy of the License at
333
+
334
+ http://www.apache.org/licenses/LICENSE-2.0
335
+
336
+ Unless required by applicable law or agreed to in writing, software
337
+ distributed under the License is distributed on an "AS IS" BASIS,
338
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
339
+ See the License for the specific language governing permissions and
340
+ limitations under the License.
341
+ =========================================
342
+ END OF @ampproject/remapping@2.2.1 AND INFORMATION
343
+
344
+ %% @babel/code-frame@7.27.1 NOTICES AND INFORMATION BEGIN HERE
345
+ =========================================
346
+ MIT License
347
+
348
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
349
+
350
+ Permission is hereby granted, free of charge, to any person obtaining
351
+ a copy of this software and associated documentation files (the
352
+ "Software"), to deal in the Software without restriction, including
353
+ without limitation the rights to use, copy, modify, merge, publish,
354
+ distribute, sublicense, and/or sell copies of the Software, and to
355
+ permit persons to whom the Software is furnished to do so, subject to
356
+ the following conditions:
357
+
358
+ The above copyright notice and this permission notice shall be
359
+ included in all copies or substantial portions of the Software.
360
+
361
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
362
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
363
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
364
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
365
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
366
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
367
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
368
+ =========================================
369
+ END OF @babel/code-frame@7.27.1 AND INFORMATION
370
+
371
+ %% @babel/compat-data@7.28.0 NOTICES AND INFORMATION BEGIN HERE
372
+ =========================================
373
+ MIT License
374
+
375
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
376
+
377
+ Permission is hereby granted, free of charge, to any person obtaining
378
+ a copy of this software and associated documentation files (the
379
+ "Software"), to deal in the Software without restriction, including
380
+ without limitation the rights to use, copy, modify, merge, publish,
381
+ distribute, sublicense, and/or sell copies of the Software, and to
382
+ permit persons to whom the Software is furnished to do so, subject to
383
+ the following conditions:
384
+
385
+ The above copyright notice and this permission notice shall be
386
+ included in all copies or substantial portions of the Software.
387
+
388
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
389
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
390
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
391
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
392
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
393
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
394
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
395
+ =========================================
396
+ END OF @babel/compat-data@7.28.0 AND INFORMATION
397
+
398
+ %% @babel/core@7.28.0 NOTICES AND INFORMATION BEGIN HERE
399
+ =========================================
400
+ MIT License
401
+
402
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
403
+
404
+ Permission is hereby granted, free of charge, to any person obtaining
405
+ a copy of this software and associated documentation files (the
406
+ "Software"), to deal in the Software without restriction, including
407
+ without limitation the rights to use, copy, modify, merge, publish,
408
+ distribute, sublicense, and/or sell copies of the Software, and to
409
+ permit persons to whom the Software is furnished to do so, subject to
410
+ the following conditions:
411
+
412
+ The above copyright notice and this permission notice shall be
413
+ included in all copies or substantial portions of the Software.
414
+
415
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
416
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
417
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
418
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
419
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
420
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
421
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
422
+ =========================================
423
+ END OF @babel/core@7.28.0 AND INFORMATION
424
+
425
+ %% @babel/generator@7.28.0 NOTICES AND INFORMATION BEGIN HERE
426
+ =========================================
427
+ MIT License
428
+
429
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
430
+
431
+ Permission is hereby granted, free of charge, to any person obtaining
432
+ a copy of this software and associated documentation files (the
433
+ "Software"), to deal in the Software without restriction, including
434
+ without limitation the rights to use, copy, modify, merge, publish,
435
+ distribute, sublicense, and/or sell copies of the Software, and to
436
+ permit persons to whom the Software is furnished to do so, subject to
437
+ the following conditions:
438
+
439
+ The above copyright notice and this permission notice shall be
440
+ included in all copies or substantial portions of the Software.
441
+
442
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
443
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
444
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
445
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
446
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
447
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
448
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
449
+ =========================================
450
+ END OF @babel/generator@7.28.0 AND INFORMATION
451
+
452
+ %% @babel/helper-annotate-as-pure@7.27.3 NOTICES AND INFORMATION BEGIN HERE
453
+ =========================================
454
+ MIT License
455
+
456
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
457
+
458
+ Permission is hereby granted, free of charge, to any person obtaining
459
+ a copy of this software and associated documentation files (the
460
+ "Software"), to deal in the Software without restriction, including
461
+ without limitation the rights to use, copy, modify, merge, publish,
462
+ distribute, sublicense, and/or sell copies of the Software, and to
463
+ permit persons to whom the Software is furnished to do so, subject to
464
+ the following conditions:
465
+
466
+ The above copyright notice and this permission notice shall be
467
+ included in all copies or substantial portions of the Software.
468
+
469
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
470
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
471
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
472
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
473
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
474
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
475
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
476
+ =========================================
477
+ END OF @babel/helper-annotate-as-pure@7.27.3 AND INFORMATION
478
+
479
+ %% @babel/helper-compilation-targets@7.27.2 NOTICES AND INFORMATION BEGIN HERE
480
+ =========================================
481
+ MIT License
482
+
483
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
484
+
485
+ Permission is hereby granted, free of charge, to any person obtaining
486
+ a copy of this software and associated documentation files (the
487
+ "Software"), to deal in the Software without restriction, including
488
+ without limitation the rights to use, copy, modify, merge, publish,
489
+ distribute, sublicense, and/or sell copies of the Software, and to
490
+ permit persons to whom the Software is furnished to do so, subject to
491
+ the following conditions:
492
+
493
+ The above copyright notice and this permission notice shall be
494
+ included in all copies or substantial portions of the Software.
495
+
496
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
497
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
498
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
499
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
500
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
501
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
502
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
503
+ =========================================
504
+ END OF @babel/helper-compilation-targets@7.27.2 AND INFORMATION
505
+
506
+ %% @babel/helper-create-class-features-plugin@7.27.1 NOTICES AND INFORMATION BEGIN HERE
507
+ =========================================
508
+ MIT License
509
+
510
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
511
+
512
+ Permission is hereby granted, free of charge, to any person obtaining
513
+ a copy of this software and associated documentation files (the
514
+ "Software"), to deal in the Software without restriction, including
515
+ without limitation the rights to use, copy, modify, merge, publish,
516
+ distribute, sublicense, and/or sell copies of the Software, and to
517
+ permit persons to whom the Software is furnished to do so, subject to
518
+ the following conditions:
519
+
520
+ The above copyright notice and this permission notice shall be
521
+ included in all copies or substantial portions of the Software.
522
+
523
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
524
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
525
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
526
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
527
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
528
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
529
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
530
+ =========================================
531
+ END OF @babel/helper-create-class-features-plugin@7.27.1 AND INFORMATION
532
+
533
+ %% @babel/helper-globals@7.28.0 NOTICES AND INFORMATION BEGIN HERE
534
+ =========================================
535
+ MIT License
536
+
537
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
538
+
539
+ Permission is hereby granted, free of charge, to any person obtaining
540
+ a copy of this software and associated documentation files (the
541
+ "Software"), to deal in the Software without restriction, including
542
+ without limitation the rights to use, copy, modify, merge, publish,
543
+ distribute, sublicense, and/or sell copies of the Software, and to
544
+ permit persons to whom the Software is furnished to do so, subject to
545
+ the following conditions:
546
+
547
+ The above copyright notice and this permission notice shall be
548
+ included in all copies or substantial portions of the Software.
549
+
550
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
551
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
552
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
553
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
554
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
555
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
556
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
557
+ =========================================
558
+ END OF @babel/helper-globals@7.28.0 AND INFORMATION
559
+
560
+ %% @babel/helper-member-expression-to-functions@7.27.1 NOTICES AND INFORMATION BEGIN HERE
561
+ =========================================
562
+ MIT License
563
+
564
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
565
+
566
+ Permission is hereby granted, free of charge, to any person obtaining
567
+ a copy of this software and associated documentation files (the
568
+ "Software"), to deal in the Software without restriction, including
569
+ without limitation the rights to use, copy, modify, merge, publish,
570
+ distribute, sublicense, and/or sell copies of the Software, and to
571
+ permit persons to whom the Software is furnished to do so, subject to
572
+ the following conditions:
573
+
574
+ The above copyright notice and this permission notice shall be
575
+ included in all copies or substantial portions of the Software.
576
+
577
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
578
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
579
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
580
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
581
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
582
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
583
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
584
+ =========================================
585
+ END OF @babel/helper-member-expression-to-functions@7.27.1 AND INFORMATION
586
+
587
+ %% @babel/helper-module-imports@7.27.1 NOTICES AND INFORMATION BEGIN HERE
588
+ =========================================
589
+ MIT License
590
+
591
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
592
+
593
+ Permission is hereby granted, free of charge, to any person obtaining
594
+ a copy of this software and associated documentation files (the
595
+ "Software"), to deal in the Software without restriction, including
596
+ without limitation the rights to use, copy, modify, merge, publish,
597
+ distribute, sublicense, and/or sell copies of the Software, and to
598
+ permit persons to whom the Software is furnished to do so, subject to
599
+ the following conditions:
600
+
601
+ The above copyright notice and this permission notice shall be
602
+ included in all copies or substantial portions of the Software.
603
+
604
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
605
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
606
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
607
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
608
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
609
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
610
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
611
+ =========================================
612
+ END OF @babel/helper-module-imports@7.27.1 AND INFORMATION
613
+
614
+ %% @babel/helper-module-transforms@7.27.3 NOTICES AND INFORMATION BEGIN HERE
615
+ =========================================
616
+ MIT License
617
+
618
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
619
+
620
+ Permission is hereby granted, free of charge, to any person obtaining
621
+ a copy of this software and associated documentation files (the
622
+ "Software"), to deal in the Software without restriction, including
623
+ without limitation the rights to use, copy, modify, merge, publish,
624
+ distribute, sublicense, and/or sell copies of the Software, and to
625
+ permit persons to whom the Software is furnished to do so, subject to
626
+ the following conditions:
627
+
628
+ The above copyright notice and this permission notice shall be
629
+ included in all copies or substantial portions of the Software.
630
+
631
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
632
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
633
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
634
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
635
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
636
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
637
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
638
+ =========================================
639
+ END OF @babel/helper-module-transforms@7.27.3 AND INFORMATION
640
+
641
+ %% @babel/helper-optimise-call-expression@7.27.1 NOTICES AND INFORMATION BEGIN HERE
642
+ =========================================
643
+ MIT License
644
+
645
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
646
+
647
+ Permission is hereby granted, free of charge, to any person obtaining
648
+ a copy of this software and associated documentation files (the
649
+ "Software"), to deal in the Software without restriction, including
650
+ without limitation the rights to use, copy, modify, merge, publish,
651
+ distribute, sublicense, and/or sell copies of the Software, and to
652
+ permit persons to whom the Software is furnished to do so, subject to
653
+ the following conditions:
654
+
655
+ The above copyright notice and this permission notice shall be
656
+ included in all copies or substantial portions of the Software.
657
+
658
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
659
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
660
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
661
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
662
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
663
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
664
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
665
+ =========================================
666
+ END OF @babel/helper-optimise-call-expression@7.27.1 AND INFORMATION
667
+
668
+ %% @babel/helper-plugin-utils@7.27.1 NOTICES AND INFORMATION BEGIN HERE
669
+ =========================================
670
+ MIT License
671
+
672
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
673
+
674
+ Permission is hereby granted, free of charge, to any person obtaining
675
+ a copy of this software and associated documentation files (the
676
+ "Software"), to deal in the Software without restriction, including
677
+ without limitation the rights to use, copy, modify, merge, publish,
678
+ distribute, sublicense, and/or sell copies of the Software, and to
679
+ permit persons to whom the Software is furnished to do so, subject to
680
+ the following conditions:
681
+
682
+ The above copyright notice and this permission notice shall be
683
+ included in all copies or substantial portions of the Software.
684
+
685
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
686
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
687
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
688
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
689
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
690
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
691
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
692
+ =========================================
693
+ END OF @babel/helper-plugin-utils@7.27.1 AND INFORMATION
694
+
695
+ %% @babel/helper-replace-supers@7.27.1 NOTICES AND INFORMATION BEGIN HERE
696
+ =========================================
697
+ MIT License
698
+
699
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
700
+
701
+ Permission is hereby granted, free of charge, to any person obtaining
702
+ a copy of this software and associated documentation files (the
703
+ "Software"), to deal in the Software without restriction, including
704
+ without limitation the rights to use, copy, modify, merge, publish,
705
+ distribute, sublicense, and/or sell copies of the Software, and to
706
+ permit persons to whom the Software is furnished to do so, subject to
707
+ the following conditions:
708
+
709
+ The above copyright notice and this permission notice shall be
710
+ included in all copies or substantial portions of the Software.
711
+
712
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
713
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
714
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
715
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
716
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
717
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
718
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
719
+ =========================================
720
+ END OF @babel/helper-replace-supers@7.27.1 AND INFORMATION
721
+
722
+ %% @babel/helper-skip-transparent-expression-wrappers@7.27.1 NOTICES AND INFORMATION BEGIN HERE
723
+ =========================================
724
+ MIT License
725
+
726
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
727
+
728
+ Permission is hereby granted, free of charge, to any person obtaining
729
+ a copy of this software and associated documentation files (the
730
+ "Software"), to deal in the Software without restriction, including
731
+ without limitation the rights to use, copy, modify, merge, publish,
732
+ distribute, sublicense, and/or sell copies of the Software, and to
733
+ permit persons to whom the Software is furnished to do so, subject to
734
+ the following conditions:
735
+
736
+ The above copyright notice and this permission notice shall be
737
+ included in all copies or substantial portions of the Software.
738
+
739
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
740
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
741
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
742
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
743
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
744
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
745
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
746
+ =========================================
747
+ END OF @babel/helper-skip-transparent-expression-wrappers@7.27.1 AND INFORMATION
748
+
749
+ %% @babel/helper-string-parser@7.27.1 NOTICES AND INFORMATION BEGIN HERE
750
+ =========================================
751
+ MIT License
752
+
753
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
754
+
755
+ Permission is hereby granted, free of charge, to any person obtaining
756
+ a copy of this software and associated documentation files (the
757
+ "Software"), to deal in the Software without restriction, including
758
+ without limitation the rights to use, copy, modify, merge, publish,
759
+ distribute, sublicense, and/or sell copies of the Software, and to
760
+ permit persons to whom the Software is furnished to do so, subject to
761
+ the following conditions:
762
+
763
+ The above copyright notice and this permission notice shall be
764
+ included in all copies or substantial portions of the Software.
765
+
766
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
767
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
768
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
769
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
770
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
771
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
772
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
773
+ =========================================
774
+ END OF @babel/helper-string-parser@7.27.1 AND INFORMATION
775
+
776
+ %% @babel/helper-validator-identifier@7.27.1 NOTICES AND INFORMATION BEGIN HERE
777
+ =========================================
778
+ MIT License
779
+
780
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
781
+
782
+ Permission is hereby granted, free of charge, to any person obtaining
783
+ a copy of this software and associated documentation files (the
784
+ "Software"), to deal in the Software without restriction, including
785
+ without limitation the rights to use, copy, modify, merge, publish,
786
+ distribute, sublicense, and/or sell copies of the Software, and to
787
+ permit persons to whom the Software is furnished to do so, subject to
788
+ the following conditions:
789
+
790
+ The above copyright notice and this permission notice shall be
791
+ included in all copies or substantial portions of the Software.
792
+
793
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
794
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
795
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
796
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
797
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
798
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
799
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
800
+ =========================================
801
+ END OF @babel/helper-validator-identifier@7.27.1 AND INFORMATION
802
+
803
+ %% @babel/helper-validator-identifier@7.28.5 NOTICES AND INFORMATION BEGIN HERE
804
+ =========================================
805
+ MIT License
806
+
807
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
808
+
809
+ Permission is hereby granted, free of charge, to any person obtaining
810
+ a copy of this software and associated documentation files (the
811
+ "Software"), to deal in the Software without restriction, including
812
+ without limitation the rights to use, copy, modify, merge, publish,
813
+ distribute, sublicense, and/or sell copies of the Software, and to
814
+ permit persons to whom the Software is furnished to do so, subject to
815
+ the following conditions:
816
+
817
+ The above copyright notice and this permission notice shall be
818
+ included in all copies or substantial portions of the Software.
819
+
820
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
821
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
822
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
823
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
824
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
825
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
826
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
827
+ =========================================
828
+ END OF @babel/helper-validator-identifier@7.28.5 AND INFORMATION
829
+
830
+ %% @babel/helper-validator-option@7.27.1 NOTICES AND INFORMATION BEGIN HERE
831
+ =========================================
832
+ MIT License
833
+
834
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
835
+
836
+ Permission is hereby granted, free of charge, to any person obtaining
837
+ a copy of this software and associated documentation files (the
838
+ "Software"), to deal in the Software without restriction, including
839
+ without limitation the rights to use, copy, modify, merge, publish,
840
+ distribute, sublicense, and/or sell copies of the Software, and to
841
+ permit persons to whom the Software is furnished to do so, subject to
842
+ the following conditions:
843
+
844
+ The above copyright notice and this permission notice shall be
845
+ included in all copies or substantial portions of the Software.
846
+
847
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
848
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
849
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
850
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
851
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
852
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
853
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
854
+ =========================================
855
+ END OF @babel/helper-validator-option@7.27.1 AND INFORMATION
856
+
857
+ %% @babel/helpers@7.28.2 NOTICES AND INFORMATION BEGIN HERE
858
+ =========================================
859
+ MIT License
860
+
861
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
862
+ Copyright (c) 2014-present, Facebook, Inc. (ONLY ./src/helpers/regenerator* files)
863
+
864
+ Permission is hereby granted, free of charge, to any person obtaining
865
+ a copy of this software and associated documentation files (the
866
+ "Software"), to deal in the Software without restriction, including
867
+ without limitation the rights to use, copy, modify, merge, publish,
868
+ distribute, sublicense, and/or sell copies of the Software, and to
869
+ permit persons to whom the Software is furnished to do so, subject to
870
+ the following conditions:
871
+
872
+ The above copyright notice and this permission notice shall be
873
+ included in all copies or substantial portions of the Software.
874
+
875
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
876
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
877
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
878
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
879
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
880
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
881
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
882
+ =========================================
883
+ END OF @babel/helpers@7.28.2 AND INFORMATION
884
+
885
+ %% @babel/parser@7.28.0 NOTICES AND INFORMATION BEGIN HERE
886
+ =========================================
887
+ Copyright (C) 2012-2014 by various contributors (see AUTHORS)
888
+
889
+ Permission is hereby granted, free of charge, to any person obtaining a copy
890
+ of this software and associated documentation files (the "Software"), to deal
891
+ in the Software without restriction, including without limitation the rights
892
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
893
+ copies of the Software, and to permit persons to whom the Software is
894
+ furnished to do so, subject to the following conditions:
895
+
896
+ The above copyright notice and this permission notice shall be included in
897
+ all copies or substantial portions of the Software.
898
+
899
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
900
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
901
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
902
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
903
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
904
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
905
+ THE SOFTWARE.
906
+ =========================================
907
+ END OF @babel/parser@7.28.0 AND INFORMATION
908
+
909
+ %% @babel/plugin-proposal-decorators@7.28.0 NOTICES AND INFORMATION BEGIN HERE
910
+ =========================================
911
+ MIT License
912
+
913
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
914
+
915
+ Permission is hereby granted, free of charge, to any person obtaining
916
+ a copy of this software and associated documentation files (the
917
+ "Software"), to deal in the Software without restriction, including
918
+ without limitation the rights to use, copy, modify, merge, publish,
919
+ distribute, sublicense, and/or sell copies of the Software, and to
920
+ permit persons to whom the Software is furnished to do so, subject to
921
+ the following conditions:
922
+
923
+ The above copyright notice and this permission notice shall be
924
+ included in all copies or substantial portions of the Software.
925
+
926
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
927
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
928
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
929
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
930
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
931
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
932
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
933
+ =========================================
934
+ END OF @babel/plugin-proposal-decorators@7.28.0 AND INFORMATION
935
+
936
+ %% @babel/plugin-syntax-async-generators@7.8.4 NOTICES AND INFORMATION BEGIN HERE
937
+ =========================================
938
+ MIT License
939
+
940
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
941
+
942
+ Permission is hereby granted, free of charge, to any person obtaining
943
+ a copy of this software and associated documentation files (the
944
+ "Software"), to deal in the Software without restriction, including
945
+ without limitation the rights to use, copy, modify, merge, publish,
946
+ distribute, sublicense, and/or sell copies of the Software, and to
947
+ permit persons to whom the Software is furnished to do so, subject to
948
+ the following conditions:
949
+
950
+ The above copyright notice and this permission notice shall be
951
+ included in all copies or substantial portions of the Software.
952
+
953
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
954
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
955
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
956
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
957
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
958
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
959
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
960
+ =========================================
961
+ END OF @babel/plugin-syntax-async-generators@7.8.4 AND INFORMATION
962
+
963
+ %% @babel/plugin-syntax-decorators@7.27.1 NOTICES AND INFORMATION BEGIN HERE
964
+ =========================================
965
+ MIT License
966
+
967
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
968
+
969
+ Permission is hereby granted, free of charge, to any person obtaining
970
+ a copy of this software and associated documentation files (the
971
+ "Software"), to deal in the Software without restriction, including
972
+ without limitation the rights to use, copy, modify, merge, publish,
973
+ distribute, sublicense, and/or sell copies of the Software, and to
974
+ permit persons to whom the Software is furnished to do so, subject to
975
+ the following conditions:
976
+
977
+ The above copyright notice and this permission notice shall be
978
+ included in all copies or substantial portions of the Software.
979
+
980
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
981
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
982
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
983
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
984
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
985
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
986
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
987
+ =========================================
988
+ END OF @babel/plugin-syntax-decorators@7.27.1 AND INFORMATION
989
+
990
+ %% @babel/plugin-syntax-import-attributes@7.27.1 NOTICES AND INFORMATION BEGIN HERE
991
+ =========================================
992
+ MIT License
993
+
994
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
995
+
996
+ Permission is hereby granted, free of charge, to any person obtaining
997
+ a copy of this software and associated documentation files (the
998
+ "Software"), to deal in the Software without restriction, including
999
+ without limitation the rights to use, copy, modify, merge, publish,
1000
+ distribute, sublicense, and/or sell copies of the Software, and to
1001
+ permit persons to whom the Software is furnished to do so, subject to
1002
+ the following conditions:
1003
+
1004
+ The above copyright notice and this permission notice shall be
1005
+ included in all copies or substantial portions of the Software.
1006
+
1007
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1008
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1009
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1010
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1011
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1012
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1013
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1014
+ =========================================
1015
+ END OF @babel/plugin-syntax-import-attributes@7.27.1 AND INFORMATION
1016
+
1017
+ %% @babel/plugin-syntax-json-strings@7.8.3 NOTICES AND INFORMATION BEGIN HERE
1018
+ =========================================
1019
+ MIT License
1020
+
1021
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1022
+
1023
+ Permission is hereby granted, free of charge, to any person obtaining
1024
+ a copy of this software and associated documentation files (the
1025
+ "Software"), to deal in the Software without restriction, including
1026
+ without limitation the rights to use, copy, modify, merge, publish,
1027
+ distribute, sublicense, and/or sell copies of the Software, and to
1028
+ permit persons to whom the Software is furnished to do so, subject to
1029
+ the following conditions:
1030
+
1031
+ The above copyright notice and this permission notice shall be
1032
+ included in all copies or substantial portions of the Software.
1033
+
1034
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1035
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1036
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1037
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1038
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1039
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1040
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1041
+ =========================================
1042
+ END OF @babel/plugin-syntax-json-strings@7.8.3 AND INFORMATION
1043
+
1044
+ %% @babel/plugin-syntax-jsx@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1045
+ =========================================
1046
+ MIT License
1047
+
1048
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1049
+
1050
+ Permission is hereby granted, free of charge, to any person obtaining
1051
+ a copy of this software and associated documentation files (the
1052
+ "Software"), to deal in the Software without restriction, including
1053
+ without limitation the rights to use, copy, modify, merge, publish,
1054
+ distribute, sublicense, and/or sell copies of the Software, and to
1055
+ permit persons to whom the Software is furnished to do so, subject to
1056
+ the following conditions:
1057
+
1058
+ The above copyright notice and this permission notice shall be
1059
+ included in all copies or substantial portions of the Software.
1060
+
1061
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1062
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1063
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1064
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1065
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1066
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1067
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1068
+ =========================================
1069
+ END OF @babel/plugin-syntax-jsx@7.27.1 AND INFORMATION
1070
+
1071
+ %% @babel/plugin-syntax-object-rest-spread@7.8.3 NOTICES AND INFORMATION BEGIN HERE
1072
+ =========================================
1073
+ MIT License
1074
+
1075
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1076
+
1077
+ Permission is hereby granted, free of charge, to any person obtaining
1078
+ a copy of this software and associated documentation files (the
1079
+ "Software"), to deal in the Software without restriction, including
1080
+ without limitation the rights to use, copy, modify, merge, publish,
1081
+ distribute, sublicense, and/or sell copies of the Software, and to
1082
+ permit persons to whom the Software is furnished to do so, subject to
1083
+ the following conditions:
1084
+
1085
+ The above copyright notice and this permission notice shall be
1086
+ included in all copies or substantial portions of the Software.
1087
+
1088
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1089
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1090
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1091
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1092
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1093
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1094
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1095
+ =========================================
1096
+ END OF @babel/plugin-syntax-object-rest-spread@7.8.3 AND INFORMATION
1097
+
1098
+ %% @babel/plugin-syntax-optional-catch-binding@7.8.3 NOTICES AND INFORMATION BEGIN HERE
1099
+ =========================================
1100
+ MIT License
1101
+
1102
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1103
+
1104
+ Permission is hereby granted, free of charge, to any person obtaining
1105
+ a copy of this software and associated documentation files (the
1106
+ "Software"), to deal in the Software without restriction, including
1107
+ without limitation the rights to use, copy, modify, merge, publish,
1108
+ distribute, sublicense, and/or sell copies of the Software, and to
1109
+ permit persons to whom the Software is furnished to do so, subject to
1110
+ the following conditions:
1111
+
1112
+ The above copyright notice and this permission notice shall be
1113
+ included in all copies or substantial portions of the Software.
1114
+
1115
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1116
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1117
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1118
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1119
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1120
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1121
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1122
+ =========================================
1123
+ END OF @babel/plugin-syntax-optional-catch-binding@7.8.3 AND INFORMATION
1124
+
1125
+ %% @babel/plugin-syntax-typescript@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1126
+ =========================================
1127
+ MIT License
1128
+
1129
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1130
+
1131
+ Permission is hereby granted, free of charge, to any person obtaining
1132
+ a copy of this software and associated documentation files (the
1133
+ "Software"), to deal in the Software without restriction, including
1134
+ without limitation the rights to use, copy, modify, merge, publish,
1135
+ distribute, sublicense, and/or sell copies of the Software, and to
1136
+ permit persons to whom the Software is furnished to do so, subject to
1137
+ the following conditions:
1138
+
1139
+ The above copyright notice and this permission notice shall be
1140
+ included in all copies or substantial portions of the Software.
1141
+
1142
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1143
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1144
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1145
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1146
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1147
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1148
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1149
+ =========================================
1150
+ END OF @babel/plugin-syntax-typescript@7.27.1 AND INFORMATION
1151
+
1152
+ %% @babel/plugin-transform-class-properties@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1153
+ =========================================
1154
+ MIT License
1155
+
1156
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1157
+
1158
+ Permission is hereby granted, free of charge, to any person obtaining
1159
+ a copy of this software and associated documentation files (the
1160
+ "Software"), to deal in the Software without restriction, including
1161
+ without limitation the rights to use, copy, modify, merge, publish,
1162
+ distribute, sublicense, and/or sell copies of the Software, and to
1163
+ permit persons to whom the Software is furnished to do so, subject to
1164
+ the following conditions:
1165
+
1166
+ The above copyright notice and this permission notice shall be
1167
+ included in all copies or substantial portions of the Software.
1168
+
1169
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1170
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1171
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1172
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1173
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1174
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1175
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1176
+ =========================================
1177
+ END OF @babel/plugin-transform-class-properties@7.27.1 AND INFORMATION
1178
+
1179
+ %% @babel/plugin-transform-class-static-block@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1180
+ =========================================
1181
+ MIT License
1182
+
1183
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1184
+
1185
+ Permission is hereby granted, free of charge, to any person obtaining
1186
+ a copy of this software and associated documentation files (the
1187
+ "Software"), to deal in the Software without restriction, including
1188
+ without limitation the rights to use, copy, modify, merge, publish,
1189
+ distribute, sublicense, and/or sell copies of the Software, and to
1190
+ permit persons to whom the Software is furnished to do so, subject to
1191
+ the following conditions:
1192
+
1193
+ The above copyright notice and this permission notice shall be
1194
+ included in all copies or substantial portions of the Software.
1195
+
1196
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1197
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1198
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1199
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1200
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1201
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1202
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1203
+ =========================================
1204
+ END OF @babel/plugin-transform-class-static-block@7.27.1 AND INFORMATION
1205
+
1206
+ %% @babel/plugin-transform-destructuring@7.28.0 NOTICES AND INFORMATION BEGIN HERE
1207
+ =========================================
1208
+ MIT License
1209
+
1210
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1211
+
1212
+ Permission is hereby granted, free of charge, to any person obtaining
1213
+ a copy of this software and associated documentation files (the
1214
+ "Software"), to deal in the Software without restriction, including
1215
+ without limitation the rights to use, copy, modify, merge, publish,
1216
+ distribute, sublicense, and/or sell copies of the Software, and to
1217
+ permit persons to whom the Software is furnished to do so, subject to
1218
+ the following conditions:
1219
+
1220
+ The above copyright notice and this permission notice shall be
1221
+ included in all copies or substantial portions of the Software.
1222
+
1223
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1224
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1225
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1226
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1227
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1228
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1229
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1230
+ =========================================
1231
+ END OF @babel/plugin-transform-destructuring@7.28.0 AND INFORMATION
1232
+
1233
+ %% @babel/plugin-transform-explicit-resource-management@7.28.0 NOTICES AND INFORMATION BEGIN HERE
1234
+ =========================================
1235
+ MIT License
1236
+
1237
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1238
+
1239
+ Permission is hereby granted, free of charge, to any person obtaining
1240
+ a copy of this software and associated documentation files (the
1241
+ "Software"), to deal in the Software without restriction, including
1242
+ without limitation the rights to use, copy, modify, merge, publish,
1243
+ distribute, sublicense, and/or sell copies of the Software, and to
1244
+ permit persons to whom the Software is furnished to do so, subject to
1245
+ the following conditions:
1246
+
1247
+ The above copyright notice and this permission notice shall be
1248
+ included in all copies or substantial portions of the Software.
1249
+
1250
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1251
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1252
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1253
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1254
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1255
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1256
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1257
+ =========================================
1258
+ END OF @babel/plugin-transform-explicit-resource-management@7.28.0 AND INFORMATION
1259
+
1260
+ %% @babel/plugin-transform-export-namespace-from@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1261
+ =========================================
1262
+ MIT License
1263
+
1264
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1265
+
1266
+ Permission is hereby granted, free of charge, to any person obtaining
1267
+ a copy of this software and associated documentation files (the
1268
+ "Software"), to deal in the Software without restriction, including
1269
+ without limitation the rights to use, copy, modify, merge, publish,
1270
+ distribute, sublicense, and/or sell copies of the Software, and to
1271
+ permit persons to whom the Software is furnished to do so, subject to
1272
+ the following conditions:
1273
+
1274
+ The above copyright notice and this permission notice shall be
1275
+ included in all copies or substantial portions of the Software.
1276
+
1277
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1278
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1279
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1280
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1281
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1282
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1283
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1284
+ =========================================
1285
+ END OF @babel/plugin-transform-export-namespace-from@7.27.1 AND INFORMATION
1286
+
1287
+ %% @babel/plugin-transform-logical-assignment-operators@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1288
+ =========================================
1289
+ MIT License
1290
+
1291
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1292
+
1293
+ Permission is hereby granted, free of charge, to any person obtaining
1294
+ a copy of this software and associated documentation files (the
1295
+ "Software"), to deal in the Software without restriction, including
1296
+ without limitation the rights to use, copy, modify, merge, publish,
1297
+ distribute, sublicense, and/or sell copies of the Software, and to
1298
+ permit persons to whom the Software is furnished to do so, subject to
1299
+ the following conditions:
1300
+
1301
+ The above copyright notice and this permission notice shall be
1302
+ included in all copies or substantial portions of the Software.
1303
+
1304
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1305
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1306
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1307
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1308
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1309
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1310
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1311
+ =========================================
1312
+ END OF @babel/plugin-transform-logical-assignment-operators@7.27.1 AND INFORMATION
1313
+
1314
+ %% @babel/plugin-transform-modules-commonjs@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1315
+ =========================================
1316
+ MIT License
1317
+
1318
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1319
+
1320
+ Permission is hereby granted, free of charge, to any person obtaining
1321
+ a copy of this software and associated documentation files (the
1322
+ "Software"), to deal in the Software without restriction, including
1323
+ without limitation the rights to use, copy, modify, merge, publish,
1324
+ distribute, sublicense, and/or sell copies of the Software, and to
1325
+ permit persons to whom the Software is furnished to do so, subject to
1326
+ the following conditions:
1327
+
1328
+ The above copyright notice and this permission notice shall be
1329
+ included in all copies or substantial portions of the Software.
1330
+
1331
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1332
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1333
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1334
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1335
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1336
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1337
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1338
+ =========================================
1339
+ END OF @babel/plugin-transform-modules-commonjs@7.27.1 AND INFORMATION
1340
+
1341
+ %% @babel/plugin-transform-nullish-coalescing-operator@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1342
+ =========================================
1343
+ MIT License
1344
+
1345
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1346
+
1347
+ Permission is hereby granted, free of charge, to any person obtaining
1348
+ a copy of this software and associated documentation files (the
1349
+ "Software"), to deal in the Software without restriction, including
1350
+ without limitation the rights to use, copy, modify, merge, publish,
1351
+ distribute, sublicense, and/or sell copies of the Software, and to
1352
+ permit persons to whom the Software is furnished to do so, subject to
1353
+ the following conditions:
1354
+
1355
+ The above copyright notice and this permission notice shall be
1356
+ included in all copies or substantial portions of the Software.
1357
+
1358
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1359
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1360
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1361
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1362
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1363
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1364
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1365
+ =========================================
1366
+ END OF @babel/plugin-transform-nullish-coalescing-operator@7.27.1 AND INFORMATION
1367
+
1368
+ %% @babel/plugin-transform-numeric-separator@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1369
+ =========================================
1370
+ MIT License
1371
+
1372
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1373
+
1374
+ Permission is hereby granted, free of charge, to any person obtaining
1375
+ a copy of this software and associated documentation files (the
1376
+ "Software"), to deal in the Software without restriction, including
1377
+ without limitation the rights to use, copy, modify, merge, publish,
1378
+ distribute, sublicense, and/or sell copies of the Software, and to
1379
+ permit persons to whom the Software is furnished to do so, subject to
1380
+ the following conditions:
1381
+
1382
+ The above copyright notice and this permission notice shall be
1383
+ included in all copies or substantial portions of the Software.
1384
+
1385
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1386
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1387
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1388
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1389
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1390
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1391
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1392
+ =========================================
1393
+ END OF @babel/plugin-transform-numeric-separator@7.27.1 AND INFORMATION
1394
+
1395
+ %% @babel/plugin-transform-optional-chaining@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1396
+ =========================================
1397
+ MIT License
1398
+
1399
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1400
+
1401
+ Permission is hereby granted, free of charge, to any person obtaining
1402
+ a copy of this software and associated documentation files (the
1403
+ "Software"), to deal in the Software without restriction, including
1404
+ without limitation the rights to use, copy, modify, merge, publish,
1405
+ distribute, sublicense, and/or sell copies of the Software, and to
1406
+ permit persons to whom the Software is furnished to do so, subject to
1407
+ the following conditions:
1408
+
1409
+ The above copyright notice and this permission notice shall be
1410
+ included in all copies or substantial portions of the Software.
1411
+
1412
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1413
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1414
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1415
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1416
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1417
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1418
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1419
+ =========================================
1420
+ END OF @babel/plugin-transform-optional-chaining@7.27.1 AND INFORMATION
1421
+
1422
+ %% @babel/plugin-transform-private-methods@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1423
+ =========================================
1424
+ MIT License
1425
+
1426
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1427
+
1428
+ Permission is hereby granted, free of charge, to any person obtaining
1429
+ a copy of this software and associated documentation files (the
1430
+ "Software"), to deal in the Software without restriction, including
1431
+ without limitation the rights to use, copy, modify, merge, publish,
1432
+ distribute, sublicense, and/or sell copies of the Software, and to
1433
+ permit persons to whom the Software is furnished to do so, subject to
1434
+ the following conditions:
1435
+
1436
+ The above copyright notice and this permission notice shall be
1437
+ included in all copies or substantial portions of the Software.
1438
+
1439
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1440
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1441
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1442
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1443
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1444
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1445
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1446
+ =========================================
1447
+ END OF @babel/plugin-transform-private-methods@7.27.1 AND INFORMATION
1448
+
1449
+ %% @babel/plugin-transform-private-property-in-object@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1450
+ =========================================
1451
+ MIT License
1452
+
1453
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1454
+
1455
+ Permission is hereby granted, free of charge, to any person obtaining
1456
+ a copy of this software and associated documentation files (the
1457
+ "Software"), to deal in the Software without restriction, including
1458
+ without limitation the rights to use, copy, modify, merge, publish,
1459
+ distribute, sublicense, and/or sell copies of the Software, and to
1460
+ permit persons to whom the Software is furnished to do so, subject to
1461
+ the following conditions:
1462
+
1463
+ The above copyright notice and this permission notice shall be
1464
+ included in all copies or substantial portions of the Software.
1465
+
1466
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1467
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1468
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1469
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1470
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1471
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1472
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1473
+ =========================================
1474
+ END OF @babel/plugin-transform-private-property-in-object@7.27.1 AND INFORMATION
1475
+
1476
+ %% @babel/plugin-transform-react-jsx@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1477
+ =========================================
1478
+ MIT License
1479
+
1480
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1481
+
1482
+ Permission is hereby granted, free of charge, to any person obtaining
1483
+ a copy of this software and associated documentation files (the
1484
+ "Software"), to deal in the Software without restriction, including
1485
+ without limitation the rights to use, copy, modify, merge, publish,
1486
+ distribute, sublicense, and/or sell copies of the Software, and to
1487
+ permit persons to whom the Software is furnished to do so, subject to
1488
+ the following conditions:
1489
+
1490
+ The above copyright notice and this permission notice shall be
1491
+ included in all copies or substantial portions of the Software.
1492
+
1493
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1494
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1495
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1496
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1497
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1498
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1499
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1500
+ =========================================
1501
+ END OF @babel/plugin-transform-react-jsx@7.27.1 AND INFORMATION
1502
+
1503
+ %% @babel/plugin-transform-typescript@7.28.0 NOTICES AND INFORMATION BEGIN HERE
1504
+ =========================================
1505
+ MIT License
1506
+
1507
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1508
+
1509
+ Permission is hereby granted, free of charge, to any person obtaining
1510
+ a copy of this software and associated documentation files (the
1511
+ "Software"), to deal in the Software without restriction, including
1512
+ without limitation the rights to use, copy, modify, merge, publish,
1513
+ distribute, sublicense, and/or sell copies of the Software, and to
1514
+ permit persons to whom the Software is furnished to do so, subject to
1515
+ the following conditions:
1516
+
1517
+ The above copyright notice and this permission notice shall be
1518
+ included in all copies or substantial portions of the Software.
1519
+
1520
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1521
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1522
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1523
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1524
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1525
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1526
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1527
+ =========================================
1528
+ END OF @babel/plugin-transform-typescript@7.28.0 AND INFORMATION
1529
+
1530
+ %% @babel/preset-typescript@7.27.1 NOTICES AND INFORMATION BEGIN HERE
1531
+ =========================================
1532
+ MIT License
1533
+
1534
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1535
+
1536
+ Permission is hereby granted, free of charge, to any person obtaining
1537
+ a copy of this software and associated documentation files (the
1538
+ "Software"), to deal in the Software without restriction, including
1539
+ without limitation the rights to use, copy, modify, merge, publish,
1540
+ distribute, sublicense, and/or sell copies of the Software, and to
1541
+ permit persons to whom the Software is furnished to do so, subject to
1542
+ the following conditions:
1543
+
1544
+ The above copyright notice and this permission notice shall be
1545
+ included in all copies or substantial portions of the Software.
1546
+
1547
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1548
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1549
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1550
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1551
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1552
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1553
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1554
+ =========================================
1555
+ END OF @babel/preset-typescript@7.27.1 AND INFORMATION
1556
+
1557
+ %% @babel/template@7.27.2 NOTICES AND INFORMATION BEGIN HERE
1558
+ =========================================
1559
+ MIT License
1560
+
1561
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1562
+
1563
+ Permission is hereby granted, free of charge, to any person obtaining
1564
+ a copy of this software and associated documentation files (the
1565
+ "Software"), to deal in the Software without restriction, including
1566
+ without limitation the rights to use, copy, modify, merge, publish,
1567
+ distribute, sublicense, and/or sell copies of the Software, and to
1568
+ permit persons to whom the Software is furnished to do so, subject to
1569
+ the following conditions:
1570
+
1571
+ The above copyright notice and this permission notice shall be
1572
+ included in all copies or substantial portions of the Software.
1573
+
1574
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1575
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1576
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1577
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1578
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1579
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1580
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1581
+ =========================================
1582
+ END OF @babel/template@7.27.2 AND INFORMATION
1583
+
1584
+ %% @babel/traverse@7.28.0 NOTICES AND INFORMATION BEGIN HERE
1585
+ =========================================
1586
+ MIT License
1587
+
1588
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1589
+
1590
+ Permission is hereby granted, free of charge, to any person obtaining
1591
+ a copy of this software and associated documentation files (the
1592
+ "Software"), to deal in the Software without restriction, including
1593
+ without limitation the rights to use, copy, modify, merge, publish,
1594
+ distribute, sublicense, and/or sell copies of the Software, and to
1595
+ permit persons to whom the Software is furnished to do so, subject to
1596
+ the following conditions:
1597
+
1598
+ The above copyright notice and this permission notice shall be
1599
+ included in all copies or substantial portions of the Software.
1600
+
1601
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1602
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1603
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1604
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1605
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1606
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1607
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1608
+ =========================================
1609
+ END OF @babel/traverse@7.28.0 AND INFORMATION
1610
+
1611
+ %% @babel/types@7.28.2 NOTICES AND INFORMATION BEGIN HERE
1612
+ =========================================
1613
+ MIT License
1614
+
1615
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
1616
+
1617
+ Permission is hereby granted, free of charge, to any person obtaining
1618
+ a copy of this software and associated documentation files (the
1619
+ "Software"), to deal in the Software without restriction, including
1620
+ without limitation the rights to use, copy, modify, merge, publish,
1621
+ distribute, sublicense, and/or sell copies of the Software, and to
1622
+ permit persons to whom the Software is furnished to do so, subject to
1623
+ the following conditions:
1624
+
1625
+ The above copyright notice and this permission notice shall be
1626
+ included in all copies or substantial portions of the Software.
1627
+
1628
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1629
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1630
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1631
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1632
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1633
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1634
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1635
+ =========================================
1636
+ END OF @babel/types@7.28.2 AND INFORMATION
1637
+
1638
+ %% @jest/diff-sequences@30.0.1 NOTICES AND INFORMATION BEGIN HERE
1639
+ =========================================
1640
+ MIT License
1641
+
1642
+ Copyright (c) Meta Platforms, Inc. and affiliates.
1643
+ Copyright Contributors to the Jest project.
1644
+
1645
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1646
+ of this software and associated documentation files (the "Software"), to deal
1647
+ in the Software without restriction, including without limitation the rights
1648
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1649
+ copies of the Software, and to permit persons to whom the Software is
1650
+ furnished to do so, subject to the following conditions:
1651
+
1652
+ The above copyright notice and this permission notice shall be included in all
1653
+ copies or substantial portions of the Software.
1654
+
1655
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1656
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1657
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1658
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1659
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1660
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1661
+ SOFTWARE.
1662
+ =========================================
1663
+ END OF @jest/diff-sequences@30.0.1 AND INFORMATION
1664
+
1665
+ %% @jest/expect-utils@30.2.0 NOTICES AND INFORMATION BEGIN HERE
1666
+ =========================================
1667
+ MIT License
1668
+
1669
+ Copyright (c) Meta Platforms, Inc. and affiliates.
1670
+ Copyright Contributors to the Jest project.
1671
+
1672
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1673
+ of this software and associated documentation files (the "Software"), to deal
1674
+ in the Software without restriction, including without limitation the rights
1675
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1676
+ copies of the Software, and to permit persons to whom the Software is
1677
+ furnished to do so, subject to the following conditions:
1678
+
1679
+ The above copyright notice and this permission notice shall be included in all
1680
+ copies or substantial portions of the Software.
1681
+
1682
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1683
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1684
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1685
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1686
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1687
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1688
+ SOFTWARE.
1689
+ =========================================
1690
+ END OF @jest/expect-utils@30.2.0 AND INFORMATION
1691
+
1692
+ %% @jest/get-type@30.1.0 NOTICES AND INFORMATION BEGIN HERE
1693
+ =========================================
1694
+ MIT License
1695
+
1696
+ Copyright (c) Meta Platforms, Inc. and affiliates.
1697
+ Copyright Contributors to the Jest project.
1698
+
1699
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1700
+ of this software and associated documentation files (the "Software"), to deal
1701
+ in the Software without restriction, including without limitation the rights
1702
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1703
+ copies of the Software, and to permit persons to whom the Software is
1704
+ furnished to do so, subject to the following conditions:
1705
+
1706
+ The above copyright notice and this permission notice shall be included in all
1707
+ copies or substantial portions of the Software.
1708
+
1709
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1710
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1711
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1712
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1713
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1714
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1715
+ SOFTWARE.
1716
+ =========================================
1717
+ END OF @jest/get-type@30.1.0 AND INFORMATION
1718
+
1719
+ %% @jest/pattern@30.0.1 NOTICES AND INFORMATION BEGIN HERE
1720
+ =========================================
1721
+ MIT License
1722
+
1723
+ Copyright (c) Meta Platforms, Inc. and affiliates.
1724
+ Copyright Contributors to the Jest project.
1725
+
1726
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1727
+ of this software and associated documentation files (the "Software"), to deal
1728
+ in the Software without restriction, including without limitation the rights
1729
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1730
+ copies of the Software, and to permit persons to whom the Software is
1731
+ furnished to do so, subject to the following conditions:
1732
+
1733
+ The above copyright notice and this permission notice shall be included in all
1734
+ copies or substantial portions of the Software.
1735
+
1736
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1737
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1738
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1739
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1740
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1741
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1742
+ SOFTWARE.
1743
+ =========================================
1744
+ END OF @jest/pattern@30.0.1 AND INFORMATION
1745
+
1746
+ %% @jest/schemas@30.0.5 NOTICES AND INFORMATION BEGIN HERE
1747
+ =========================================
1748
+ MIT License
1749
+
1750
+ Copyright (c) Meta Platforms, Inc. and affiliates.
1751
+ Copyright Contributors to the Jest project.
1752
+
1753
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1754
+ of this software and associated documentation files (the "Software"), to deal
1755
+ in the Software without restriction, including without limitation the rights
1756
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1757
+ copies of the Software, and to permit persons to whom the Software is
1758
+ furnished to do so, subject to the following conditions:
1759
+
1760
+ The above copyright notice and this permission notice shall be included in all
1761
+ copies or substantial portions of the Software.
1762
+
1763
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1764
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1765
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1766
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1767
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1768
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1769
+ SOFTWARE.
1770
+ =========================================
1771
+ END OF @jest/schemas@30.0.5 AND INFORMATION
1772
+
1773
+ %% @jest/types@30.2.0 NOTICES AND INFORMATION BEGIN HERE
1774
+ =========================================
1775
+ MIT License
1776
+
1777
+ Copyright (c) Meta Platforms, Inc. and affiliates.
1778
+ Copyright Contributors to the Jest project.
1779
+
1780
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1781
+ of this software and associated documentation files (the "Software"), to deal
1782
+ in the Software without restriction, including without limitation the rights
1783
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1784
+ copies of the Software, and to permit persons to whom the Software is
1785
+ furnished to do so, subject to the following conditions:
1786
+
1787
+ The above copyright notice and this permission notice shall be included in all
1788
+ copies or substantial portions of the Software.
1789
+
1790
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1791
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1792
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1793
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1794
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1795
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1796
+ SOFTWARE.
1797
+ =========================================
1798
+ END OF @jest/types@30.2.0 AND INFORMATION
1799
+
1800
+ %% @jridgewell/gen-mapping@0.3.12 NOTICES AND INFORMATION BEGIN HERE
1801
+ =========================================
1802
+ Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
1803
+
1804
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1805
+ of this software and associated documentation files (the "Software"), to deal
1806
+ in the Software without restriction, including without limitation the rights
1807
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1808
+ copies of the Software, and to permit persons to whom the Software is
1809
+ furnished to do so, subject to the following conditions:
1810
+
1811
+ The above copyright notice and this permission notice shall be included in
1812
+ all copies or substantial portions of the Software.
1813
+
1814
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1815
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1816
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1817
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1818
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1819
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1820
+ SOFTWARE.
1821
+ =========================================
1822
+ END OF @jridgewell/gen-mapping@0.3.12 AND INFORMATION
1823
+
1824
+ %% @jridgewell/resolve-uri@3.1.1 NOTICES AND INFORMATION BEGIN HERE
1825
+ =========================================
1826
+ Copyright 2019 Justin Ridgewell <jridgewell@google.com>
1827
+
1828
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1829
+ of this software and associated documentation files (the "Software"), to deal
1830
+ in the Software without restriction, including without limitation the rights
1831
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1832
+ copies of the Software, and to permit persons to whom the Software is
1833
+ furnished to do so, subject to the following conditions:
1834
+
1835
+ The above copyright notice and this permission notice shall be included in
1836
+ all copies or substantial portions of the Software.
1837
+
1838
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1839
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1840
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1841
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1842
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1843
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1844
+ SOFTWARE.
1845
+ =========================================
1846
+ END OF @jridgewell/resolve-uri@3.1.1 AND INFORMATION
1847
+
1848
+ %% @jridgewell/sourcemap-codec@1.5.4 NOTICES AND INFORMATION BEGIN HERE
1849
+ =========================================
1850
+ Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
1851
+
1852
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1853
+ of this software and associated documentation files (the "Software"), to deal
1854
+ in the Software without restriction, including without limitation the rights
1855
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1856
+ copies of the Software, and to permit persons to whom the Software is
1857
+ furnished to do so, subject to the following conditions:
1858
+
1859
+ The above copyright notice and this permission notice shall be included in
1860
+ all copies or substantial portions of the Software.
1861
+
1862
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1863
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1864
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1865
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1866
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1867
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1868
+ SOFTWARE.
1869
+ =========================================
1870
+ END OF @jridgewell/sourcemap-codec@1.5.4 AND INFORMATION
1871
+
1872
+ %% @jridgewell/trace-mapping@0.3.29 NOTICES AND INFORMATION BEGIN HERE
1873
+ =========================================
1874
+ Copyright 2024 Justin Ridgewell <justin@ridgewell.name>
1875
+
1876
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1877
+ of this software and associated documentation files (the "Software"), to deal
1878
+ in the Software without restriction, including without limitation the rights
1879
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1880
+ copies of the Software, and to permit persons to whom the Software is
1881
+ furnished to do so, subject to the following conditions:
1882
+
1883
+ The above copyright notice and this permission notice shall be included in
1884
+ all copies or substantial portions of the Software.
1885
+
1886
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1887
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1888
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1889
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1890
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1891
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1892
+ SOFTWARE.
1893
+ =========================================
1894
+ END OF @jridgewell/trace-mapping@0.3.29 AND INFORMATION
1895
+
1896
+ %% @sinclair/typebox@0.34.41 NOTICES AND INFORMATION BEGIN HERE
1897
+ =========================================
1898
+ TypeBox
1899
+
1900
+ Json Schema Type Builder with Static Type Resolution for TypeScript
1901
+
1902
+ The MIT License (MIT)
1903
+
1904
+ Copyright (c) 2017-2025 Haydn Paterson (sinclair) <haydn.developer@gmail.com>
1905
+
1906
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1907
+ of this software and associated documentation files (the "Software"), to deal
1908
+ in the Software without restriction, including without limitation the rights
1909
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1910
+ copies of the Software, and to permit persons to whom the Software is
1911
+ furnished to do so, subject to the following conditions:
1912
+
1913
+ The above copyright notice and this permission notice shall be included in
1914
+ all copies or substantial portions of the Software.
1915
+
1916
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1917
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1918
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1919
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1920
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1921
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1922
+ THE SOFTWARE.
1923
+ =========================================
1924
+ END OF @sinclair/typebox@0.34.41 AND INFORMATION
1925
+
1926
+ %% @types/istanbul-lib-coverage@2.0.6 NOTICES AND INFORMATION BEGIN HERE
1927
+ =========================================
1928
+ MIT License
1929
+
1930
+ Copyright (c) Microsoft Corporation.
1931
+
1932
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1933
+ of this software and associated documentation files (the "Software"), to deal
1934
+ in the Software without restriction, including without limitation the rights
1935
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1936
+ copies of the Software, and to permit persons to whom the Software is
1937
+ furnished to do so, subject to the following conditions:
1938
+
1939
+ The above copyright notice and this permission notice shall be included in all
1940
+ copies or substantial portions of the Software.
1941
+
1942
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1943
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1944
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1945
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1946
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1947
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1948
+ SOFTWARE
1949
+ =========================================
1950
+ END OF @types/istanbul-lib-coverage@2.0.6 AND INFORMATION
1951
+
1952
+ %% @types/istanbul-lib-report@3.0.3 NOTICES AND INFORMATION BEGIN HERE
1953
+ =========================================
1954
+ MIT License
1955
+
1956
+ Copyright (c) Microsoft Corporation.
1957
+
1958
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1959
+ of this software and associated documentation files (the "Software"), to deal
1960
+ in the Software without restriction, including without limitation the rights
1961
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1962
+ copies of the Software, and to permit persons to whom the Software is
1963
+ furnished to do so, subject to the following conditions:
1964
+
1965
+ The above copyright notice and this permission notice shall be included in all
1966
+ copies or substantial portions of the Software.
1967
+
1968
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1969
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1970
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1971
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1972
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1973
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1974
+ SOFTWARE
1975
+ =========================================
1976
+ END OF @types/istanbul-lib-report@3.0.3 AND INFORMATION
1977
+
1978
+ %% @types/istanbul-reports@3.0.4 NOTICES AND INFORMATION BEGIN HERE
1979
+ =========================================
1980
+ MIT License
1981
+
1982
+ Copyright (c) Microsoft Corporation.
1983
+
1984
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1985
+ of this software and associated documentation files (the "Software"), to deal
1986
+ in the Software without restriction, including without limitation the rights
1987
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1988
+ copies of the Software, and to permit persons to whom the Software is
1989
+ furnished to do so, subject to the following conditions:
1990
+
1991
+ The above copyright notice and this permission notice shall be included in all
1992
+ copies or substantial portions of the Software.
1993
+
1994
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1995
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1996
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1997
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1998
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1999
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2000
+ SOFTWARE
2001
+ =========================================
2002
+ END OF @types/istanbul-reports@3.0.4 AND INFORMATION
2003
+
2004
+ %% @types/node@24.9.2 NOTICES AND INFORMATION BEGIN HERE
2005
+ =========================================
2006
+ MIT License
2007
+
2008
+ Copyright (c) Microsoft Corporation.
2009
+
2010
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2011
+ of this software and associated documentation files (the "Software"), to deal
2012
+ in the Software without restriction, including without limitation the rights
2013
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2014
+ copies of the Software, and to permit persons to whom the Software is
2015
+ furnished to do so, subject to the following conditions:
2016
+
2017
+ The above copyright notice and this permission notice shall be included in all
2018
+ copies or substantial portions of the Software.
2019
+
2020
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2021
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2022
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2023
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2024
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2025
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2026
+ SOFTWARE
2027
+ =========================================
2028
+ END OF @types/node@24.9.2 AND INFORMATION
2029
+
2030
+ %% @types/stack-utils@2.0.3 NOTICES AND INFORMATION BEGIN HERE
2031
+ =========================================
2032
+ MIT License
2033
+
2034
+ Copyright (c) Microsoft Corporation.
2035
+
2036
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2037
+ of this software and associated documentation files (the "Software"), to deal
2038
+ in the Software without restriction, including without limitation the rights
2039
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2040
+ copies of the Software, and to permit persons to whom the Software is
2041
+ furnished to do so, subject to the following conditions:
2042
+
2043
+ The above copyright notice and this permission notice shall be included in all
2044
+ copies or substantial portions of the Software.
2045
+
2046
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2047
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2048
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2049
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2050
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2051
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2052
+ SOFTWARE
2053
+ =========================================
2054
+ END OF @types/stack-utils@2.0.3 AND INFORMATION
2055
+
2056
+ %% @types/yargs-parser@21.0.3 NOTICES AND INFORMATION BEGIN HERE
2057
+ =========================================
2058
+ MIT License
2059
+
2060
+ Copyright (c) Microsoft Corporation.
2061
+
2062
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2063
+ of this software and associated documentation files (the "Software"), to deal
2064
+ in the Software without restriction, including without limitation the rights
2065
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2066
+ copies of the Software, and to permit persons to whom the Software is
2067
+ furnished to do so, subject to the following conditions:
2068
+
2069
+ The above copyright notice and this permission notice shall be included in all
2070
+ copies or substantial portions of the Software.
2071
+
2072
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2073
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2074
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2075
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2076
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2077
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2078
+ SOFTWARE
2079
+ =========================================
2080
+ END OF @types/yargs-parser@21.0.3 AND INFORMATION
2081
+
2082
+ %% @types/yargs@17.0.34 NOTICES AND INFORMATION BEGIN HERE
2083
+ =========================================
2084
+ MIT License
2085
+
2086
+ Copyright (c) Microsoft Corporation.
2087
+
2088
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2089
+ of this software and associated documentation files (the "Software"), to deal
2090
+ in the Software without restriction, including without limitation the rights
2091
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2092
+ copies of the Software, and to permit persons to whom the Software is
2093
+ furnished to do so, subject to the following conditions:
2094
+
2095
+ The above copyright notice and this permission notice shall be included in all
2096
+ copies or substantial portions of the Software.
2097
+
2098
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2099
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2100
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2101
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2102
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2103
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2104
+ SOFTWARE
2105
+ =========================================
2106
+ END OF @types/yargs@17.0.34 AND INFORMATION
2107
+
2108
+ %% ansi-colors@4.1.3 NOTICES AND INFORMATION BEGIN HERE
2109
+ =========================================
2110
+ The MIT License (MIT)
2111
+
2112
+ Copyright (c) 2015-present, Brian Woodward.
2113
+
2114
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2115
+ of this software and associated documentation files (the "Software"), to deal
2116
+ in the Software without restriction, including without limitation the rights
2117
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2118
+ copies of the Software, and to permit persons to whom the Software is
2119
+ furnished to do so, subject to the following conditions:
2120
+
2121
+ The above copyright notice and this permission notice shall be included in
2122
+ all copies or substantial portions of the Software.
2123
+
2124
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2125
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2126
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2127
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2128
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2129
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2130
+ THE SOFTWARE.
2131
+ =========================================
2132
+ END OF ansi-colors@4.1.3 AND INFORMATION
2133
+
2134
+ %% ansi-styles@4.3.0 NOTICES AND INFORMATION BEGIN HERE
2135
+ =========================================
2136
+ MIT License
2137
+
2138
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2139
+
2140
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2141
+
2142
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2143
+
2144
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2145
+ =========================================
2146
+ END OF ansi-styles@4.3.0 AND INFORMATION
2147
+
2148
+ %% ansi-styles@5.2.0 NOTICES AND INFORMATION BEGIN HERE
2149
+ =========================================
2150
+ MIT License
2151
+
2152
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2153
+
2154
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2155
+
2156
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2157
+
2158
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2159
+ =========================================
2160
+ END OF ansi-styles@5.2.0 AND INFORMATION
2161
+
2162
+ %% anymatch@3.1.3 NOTICES AND INFORMATION BEGIN HERE
2163
+ =========================================
2164
+ The ISC License
2165
+
2166
+ Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
2167
+
2168
+ Permission to use, copy, modify, and/or distribute this software for any
2169
+ purpose with or without fee is hereby granted, provided that the above
2170
+ copyright notice and this permission notice appear in all copies.
2171
+
2172
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2173
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2174
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2175
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2176
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2177
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2178
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2179
+ =========================================
2180
+ END OF anymatch@3.1.3 AND INFORMATION
2181
+
2182
+ %% binary-extensions@2.2.0 NOTICES AND INFORMATION BEGIN HERE
2183
+ =========================================
2184
+ MIT License
2185
+
2186
+ Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
2187
+
2188
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2189
+
2190
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2191
+
2192
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2193
+ =========================================
2194
+ END OF binary-extensions@2.2.0 AND INFORMATION
2195
+
2196
+ %% braces@3.0.3 NOTICES AND INFORMATION BEGIN HERE
2197
+ =========================================
2198
+ The MIT License (MIT)
2199
+
2200
+ Copyright (c) 2014-present, Jon Schlinkert.
2201
+
2202
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2203
+ of this software and associated documentation files (the "Software"), to deal
2204
+ in the Software without restriction, including without limitation the rights
2205
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2206
+ copies of the Software, and to permit persons to whom the Software is
2207
+ furnished to do so, subject to the following conditions:
2208
+
2209
+ The above copyright notice and this permission notice shall be included in
2210
+ all copies or substantial portions of the Software.
2211
+
2212
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2213
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2214
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2215
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2216
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2217
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2218
+ THE SOFTWARE.
2219
+ =========================================
2220
+ END OF braces@3.0.3 AND INFORMATION
2221
+
2222
+ %% browserslist@4.25.1 NOTICES AND INFORMATION BEGIN HERE
2223
+ =========================================
2224
+ The MIT License (MIT)
2225
+
2226
+ Copyright 2014 Andrey Sitnik <andrey@sitnik.ru> and other contributors
2227
+
2228
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
2229
+ this software and associated documentation files (the "Software"), to deal in
2230
+ the Software without restriction, including without limitation the rights to
2231
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2232
+ the Software, and to permit persons to whom the Software is furnished to do so,
2233
+ subject to the following conditions:
2234
+
2235
+ The above copyright notice and this permission notice shall be included in all
2236
+ copies or substantial portions of the Software.
2237
+
2238
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2239
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2240
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2241
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2242
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2243
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2244
+ =========================================
2245
+ END OF browserslist@4.25.1 AND INFORMATION
2246
+
2247
+ %% buffer-from@1.1.2 NOTICES AND INFORMATION BEGIN HERE
2248
+ =========================================
2249
+ MIT License
2250
+
2251
+ Copyright (c) 2016, 2018 Linus Unnebäck
2252
+
2253
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2254
+ of this software and associated documentation files (the "Software"), to deal
2255
+ in the Software without restriction, including without limitation the rights
2256
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2257
+ copies of the Software, and to permit persons to whom the Software is
2258
+ furnished to do so, subject to the following conditions:
2259
+
2260
+ The above copyright notice and this permission notice shall be included in all
2261
+ copies or substantial portions of the Software.
2262
+
2263
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2264
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2265
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2266
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2267
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2268
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2269
+ SOFTWARE.
2270
+ =========================================
2271
+ END OF buffer-from@1.1.2 AND INFORMATION
2272
+
2273
+ %% caniuse-lite@1.0.30001731 NOTICES AND INFORMATION BEGIN HERE
2274
+ =========================================
2275
+ Attribution 4.0 International
2276
+
2277
+ =======================================================================
2278
+
2279
+ Creative Commons Corporation ("Creative Commons") is not a law firm and
2280
+ does not provide legal services or legal advice. Distribution of
2281
+ Creative Commons public licenses does not create a lawyer-client or
2282
+ other relationship. Creative Commons makes its licenses and related
2283
+ information available on an "as-is" basis. Creative Commons gives no
2284
+ warranties regarding its licenses, any material licensed under their
2285
+ terms and conditions, or any related information. Creative Commons
2286
+ disclaims all liability for damages resulting from their use to the
2287
+ fullest extent possible.
2288
+
2289
+ Using Creative Commons Public Licenses
2290
+
2291
+ Creative Commons public licenses provide a standard set of terms and
2292
+ conditions that creators and other rights holders may use to share
2293
+ original works of authorship and other material subject to copyright
2294
+ and certain other rights specified in the public license below. The
2295
+ following considerations are for informational purposes only, are not
2296
+ exhaustive, and do not form part of our licenses.
2297
+
2298
+ Considerations for licensors: Our public licenses are
2299
+ intended for use by those authorized to give the public
2300
+ permission to use material in ways otherwise restricted by
2301
+ copyright and certain other rights. Our licenses are
2302
+ irrevocable. Licensors should read and understand the terms
2303
+ and conditions of the license they choose before applying it.
2304
+ Licensors should also secure all rights necessary before
2305
+ applying our licenses so that the public can reuse the
2306
+ material as expected. Licensors should clearly mark any
2307
+ material not subject to the license. This includes other CC-
2308
+ licensed material, or material used under an exception or
2309
+ limitation to copyright. More considerations for licensors:
2310
+ wiki.creativecommons.org/Considerations_for_licensors
2311
+
2312
+ Considerations for the public: By using one of our public
2313
+ licenses, a licensor grants the public permission to use the
2314
+ licensed material under specified terms and conditions. If
2315
+ the licensor's permission is not necessary for any reason--for
2316
+ example, because of any applicable exception or limitation to
2317
+ copyright--then that use is not regulated by the license. Our
2318
+ licenses grant only permissions under copyright and certain
2319
+ other rights that a licensor has authority to grant. Use of
2320
+ the licensed material may still be restricted for other
2321
+ reasons, including because others have copyright or other
2322
+ rights in the material. A licensor may make special requests,
2323
+ such as asking that all changes be marked or described.
2324
+ Although not required by our licenses, you are encouraged to
2325
+ respect those requests where reasonable. More_considerations
2326
+ for the public:
2327
+ wiki.creativecommons.org/Considerations_for_licensees
2328
+
2329
+ =======================================================================
2330
+
2331
+ Creative Commons Attribution 4.0 International Public License
2332
+
2333
+ By exercising the Licensed Rights (defined below), You accept and agree
2334
+ to be bound by the terms and conditions of this Creative Commons
2335
+ Attribution 4.0 International Public License ("Public License"). To the
2336
+ extent this Public License may be interpreted as a contract, You are
2337
+ granted the Licensed Rights in consideration of Your acceptance of
2338
+ these terms and conditions, and the Licensor grants You such rights in
2339
+ consideration of benefits the Licensor receives from making the
2340
+ Licensed Material available under these terms and conditions.
2341
+
2342
+
2343
+ Section 1 -- Definitions.
2344
+
2345
+ a. Adapted Material means material subject to Copyright and Similar
2346
+ Rights that is derived from or based upon the Licensed Material
2347
+ and in which the Licensed Material is translated, altered,
2348
+ arranged, transformed, or otherwise modified in a manner requiring
2349
+ permission under the Copyright and Similar Rights held by the
2350
+ Licensor. For purposes of this Public License, where the Licensed
2351
+ Material is a musical work, performance, or sound recording,
2352
+ Adapted Material is always produced where the Licensed Material is
2353
+ synched in timed relation with a moving image.
2354
+
2355
+ b. Adapter's License means the license You apply to Your Copyright
2356
+ and Similar Rights in Your contributions to Adapted Material in
2357
+ accordance with the terms and conditions of this Public License.
2358
+
2359
+ c. Copyright and Similar Rights means copyright and/or similar rights
2360
+ closely related to copyright including, without limitation,
2361
+ performance, broadcast, sound recording, and Sui Generis Database
2362
+ Rights, without regard to how the rights are labeled or
2363
+ categorized. For purposes of this Public License, the rights
2364
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
2365
+ Rights.
2366
+
2367
+ d. Effective Technological Measures means those measures that, in the
2368
+ absence of proper authority, may not be circumvented under laws
2369
+ fulfilling obligations under Article 11 of the WIPO Copyright
2370
+ Treaty adopted on December 20, 1996, and/or similar international
2371
+ agreements.
2372
+
2373
+ e. Exceptions and Limitations means fair use, fair dealing, and/or
2374
+ any other exception or limitation to Copyright and Similar Rights
2375
+ that applies to Your use of the Licensed Material.
2376
+
2377
+ f. Licensed Material means the artistic or literary work, database,
2378
+ or other material to which the Licensor applied this Public
2379
+ License.
2380
+
2381
+ g. Licensed Rights means the rights granted to You subject to the
2382
+ terms and conditions of this Public License, which are limited to
2383
+ all Copyright and Similar Rights that apply to Your use of the
2384
+ Licensed Material and that the Licensor has authority to license.
2385
+
2386
+ h. Licensor means the individual(s) or entity(ies) granting rights
2387
+ under this Public License.
2388
+
2389
+ i. Share means to provide material to the public by any means or
2390
+ process that requires permission under the Licensed Rights, such
2391
+ as reproduction, public display, public performance, distribution,
2392
+ dissemination, communication, or importation, and to make material
2393
+ available to the public including in ways that members of the
2394
+ public may access the material from a place and at a time
2395
+ individually chosen by them.
2396
+
2397
+ j. Sui Generis Database Rights means rights other than copyright
2398
+ resulting from Directive 96/9/EC of the European Parliament and of
2399
+ the Council of 11 March 1996 on the legal protection of databases,
2400
+ as amended and/or succeeded, as well as other essentially
2401
+ equivalent rights anywhere in the world.
2402
+
2403
+ k. You means the individual or entity exercising the Licensed Rights
2404
+ under this Public License. Your has a corresponding meaning.
2405
+
2406
+
2407
+ Section 2 -- Scope.
2408
+
2409
+ a. License grant.
2410
+
2411
+ 1. Subject to the terms and conditions of this Public License,
2412
+ the Licensor hereby grants You a worldwide, royalty-free,
2413
+ non-sublicensable, non-exclusive, irrevocable license to
2414
+ exercise the Licensed Rights in the Licensed Material to:
2415
+
2416
+ a. reproduce and Share the Licensed Material, in whole or
2417
+ in part; and
2418
+
2419
+ b. produce, reproduce, and Share Adapted Material.
2420
+
2421
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
2422
+ Exceptions and Limitations apply to Your use, this Public
2423
+ License does not apply, and You do not need to comply with
2424
+ its terms and conditions.
2425
+
2426
+ 3. Term. The term of this Public License is specified in Section
2427
+ 6(a).
2428
+
2429
+ 4. Media and formats; technical modifications allowed. The
2430
+ Licensor authorizes You to exercise the Licensed Rights in
2431
+ all media and formats whether now known or hereafter created,
2432
+ and to make technical modifications necessary to do so. The
2433
+ Licensor waives and/or agrees not to assert any right or
2434
+ authority to forbid You from making technical modifications
2435
+ necessary to exercise the Licensed Rights, including
2436
+ technical modifications necessary to circumvent Effective
2437
+ Technological Measures. For purposes of this Public License,
2438
+ simply making modifications authorized by this Section 2(a)
2439
+ (4) never produces Adapted Material.
2440
+
2441
+ 5. Downstream recipients.
2442
+
2443
+ a. Offer from the Licensor -- Licensed Material. Every
2444
+ recipient of the Licensed Material automatically
2445
+ receives an offer from the Licensor to exercise the
2446
+ Licensed Rights under the terms and conditions of this
2447
+ Public License.
2448
+
2449
+ b. No downstream restrictions. You may not offer or impose
2450
+ any additional or different terms or conditions on, or
2451
+ apply any Effective Technological Measures to, the
2452
+ Licensed Material if doing so restricts exercise of the
2453
+ Licensed Rights by any recipient of the Licensed
2454
+ Material.
2455
+
2456
+ 6. No endorsement. Nothing in this Public License constitutes or
2457
+ may be construed as permission to assert or imply that You
2458
+ are, or that Your use of the Licensed Material is, connected
2459
+ with, or sponsored, endorsed, or granted official status by,
2460
+ the Licensor or others designated to receive attribution as
2461
+ provided in Section 3(a)(1)(A)(i).
2462
+
2463
+ b. Other rights.
2464
+
2465
+ 1. Moral rights, such as the right of integrity, are not
2466
+ licensed under this Public License, nor are publicity,
2467
+ privacy, and/or other similar personality rights; however, to
2468
+ the extent possible, the Licensor waives and/or agrees not to
2469
+ assert any such rights held by the Licensor to the limited
2470
+ extent necessary to allow You to exercise the Licensed
2471
+ Rights, but not otherwise.
2472
+
2473
+ 2. Patent and trademark rights are not licensed under this
2474
+ Public License.
2475
+
2476
+ 3. To the extent possible, the Licensor waives any right to
2477
+ collect royalties from You for the exercise of the Licensed
2478
+ Rights, whether directly or through a collecting society
2479
+ under any voluntary or waivable statutory or compulsory
2480
+ licensing scheme. In all other cases the Licensor expressly
2481
+ reserves any right to collect such royalties.
2482
+
2483
+
2484
+ Section 3 -- License Conditions.
2485
+
2486
+ Your exercise of the Licensed Rights is expressly made subject to the
2487
+ following conditions.
2488
+
2489
+ a. Attribution.
2490
+
2491
+ 1. If You Share the Licensed Material (including in modified
2492
+ form), You must:
2493
+
2494
+ a. retain the following if it is supplied by the Licensor
2495
+ with the Licensed Material:
2496
+
2497
+ i. identification of the creator(s) of the Licensed
2498
+ Material and any others designated to receive
2499
+ attribution, in any reasonable manner requested by
2500
+ the Licensor (including by pseudonym if
2501
+ designated);
2502
+
2503
+ ii. a copyright notice;
2504
+
2505
+ iii. a notice that refers to this Public License;
2506
+
2507
+ iv. a notice that refers to the disclaimer of
2508
+ warranties;
2509
+
2510
+ v. a URI or hyperlink to the Licensed Material to the
2511
+ extent reasonably practicable;
2512
+
2513
+ b. indicate if You modified the Licensed Material and
2514
+ retain an indication of any previous modifications; and
2515
+
2516
+ c. indicate the Licensed Material is licensed under this
2517
+ Public License, and include the text of, or the URI or
2518
+ hyperlink to, this Public License.
2519
+
2520
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
2521
+ reasonable manner based on the medium, means, and context in
2522
+ which You Share the Licensed Material. For example, it may be
2523
+ reasonable to satisfy the conditions by providing a URI or
2524
+ hyperlink to a resource that includes the required
2525
+ information.
2526
+
2527
+ 3. If requested by the Licensor, You must remove any of the
2528
+ information required by Section 3(a)(1)(A) to the extent
2529
+ reasonably practicable.
2530
+
2531
+ 4. If You Share Adapted Material You produce, the Adapter's
2532
+ License You apply must not prevent recipients of the Adapted
2533
+ Material from complying with this Public License.
2534
+
2535
+
2536
+ Section 4 -- Sui Generis Database Rights.
2537
+
2538
+ Where the Licensed Rights include Sui Generis Database Rights that
2539
+ apply to Your use of the Licensed Material:
2540
+
2541
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
2542
+ to extract, reuse, reproduce, and Share all or a substantial
2543
+ portion of the contents of the database;
2544
+
2545
+ b. if You include all or a substantial portion of the database
2546
+ contents in a database in which You have Sui Generis Database
2547
+ Rights, then the database in which You have Sui Generis Database
2548
+ Rights (but not its individual contents) is Adapted Material; and
2549
+
2550
+ c. You must comply with the conditions in Section 3(a) if You Share
2551
+ all or a substantial portion of the contents of the database.
2552
+
2553
+ For the avoidance of doubt, this Section 4 supplements and does not
2554
+ replace Your obligations under this Public License where the Licensed
2555
+ Rights include other Copyright and Similar Rights.
2556
+
2557
+
2558
+ Section 5 -- Disclaimer of Warranties and Limitation of Liability.
2559
+
2560
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
2561
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
2562
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
2563
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
2564
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
2565
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
2566
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
2567
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
2568
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
2569
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
2570
+
2571
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
2572
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
2573
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
2574
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
2575
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
2576
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
2577
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
2578
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
2579
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
2580
+
2581
+ c. The disclaimer of warranties and limitation of liability provided
2582
+ above shall be interpreted in a manner that, to the extent
2583
+ possible, most closely approximates an absolute disclaimer and
2584
+ waiver of all liability.
2585
+
2586
+
2587
+ Section 6 -- Term and Termination.
2588
+
2589
+ a. This Public License applies for the term of the Copyright and
2590
+ Similar Rights licensed here. However, if You fail to comply with
2591
+ this Public License, then Your rights under this Public License
2592
+ terminate automatically.
2593
+
2594
+ b. Where Your right to use the Licensed Material has terminated under
2595
+ Section 6(a), it reinstates:
2596
+
2597
+ 1. automatically as of the date the violation is cured, provided
2598
+ it is cured within 30 days of Your discovery of the
2599
+ violation; or
2600
+
2601
+ 2. upon express reinstatement by the Licensor.
2602
+
2603
+ For the avoidance of doubt, this Section 6(b) does not affect any
2604
+ right the Licensor may have to seek remedies for Your violations
2605
+ of this Public License.
2606
+
2607
+ c. For the avoidance of doubt, the Licensor may also offer the
2608
+ Licensed Material under separate terms or conditions or stop
2609
+ distributing the Licensed Material at any time; however, doing so
2610
+ will not terminate this Public License.
2611
+
2612
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
2613
+ License.
2614
+
2615
+
2616
+ Section 7 -- Other Terms and Conditions.
2617
+
2618
+ a. The Licensor shall not be bound by any additional or different
2619
+ terms or conditions communicated by You unless expressly agreed.
2620
+
2621
+ b. Any arrangements, understandings, or agreements regarding the
2622
+ Licensed Material not stated herein are separate from and
2623
+ independent of the terms and conditions of this Public License.
2624
+
2625
+
2626
+ Section 8 -- Interpretation.
2627
+
2628
+ a. For the avoidance of doubt, this Public License does not, and
2629
+ shall not be interpreted to, reduce, limit, restrict, or impose
2630
+ conditions on any use of the Licensed Material that could lawfully
2631
+ be made without permission under this Public License.
2632
+
2633
+ b. To the extent possible, if any provision of this Public License is
2634
+ deemed unenforceable, it shall be automatically reformed to the
2635
+ minimum extent necessary to make it enforceable. If the provision
2636
+ cannot be reformed, it shall be severed from this Public License
2637
+ without affecting the enforceability of the remaining terms and
2638
+ conditions.
2639
+
2640
+ c. No term or condition of this Public License will be waived and no
2641
+ failure to comply consented to unless expressly agreed to by the
2642
+ Licensor.
2643
+
2644
+ d. Nothing in this Public License constitutes or may be interpreted
2645
+ as a limitation upon, or waiver of, any privileges and immunities
2646
+ that apply to the Licensor or You, including from the legal
2647
+ processes of any jurisdiction or authority.
2648
+
2649
+
2650
+ =======================================================================
2651
+
2652
+ Creative Commons is not a party to its public
2653
+ licenses. Notwithstanding, Creative Commons may elect to apply one of
2654
+ its public licenses to material it publishes and in those instances
2655
+ will be considered the “Licensor.” The text of the Creative Commons
2656
+ public licenses is dedicated to the public domain under the CC0 Public
2657
+ Domain Dedication. Except for the limited purpose of indicating that
2658
+ material is shared under a Creative Commons public license or as
2659
+ otherwise permitted by the Creative Commons policies published at
2660
+ creativecommons.org/policies, Creative Commons does not authorize the
2661
+ use of the trademark "Creative Commons" or any other trademark or logo
2662
+ of Creative Commons without its prior written consent including,
2663
+ without limitation, in connection with any unauthorized modifications
2664
+ to any of its public licenses or any other arrangements,
2665
+ understandings, or agreements concerning use of licensed material. For
2666
+ the avoidance of doubt, this paragraph does not form part of the
2667
+ public licenses.
2668
+
2669
+ Creative Commons may be contacted at creativecommons.org.
2670
+ =========================================
2671
+ END OF caniuse-lite@1.0.30001731 AND INFORMATION
2672
+
2673
+ %% chalk@4.1.2 NOTICES AND INFORMATION BEGIN HERE
2674
+ =========================================
2675
+ MIT License
2676
+
2677
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2678
+
2679
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2680
+
2681
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2682
+
2683
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2684
+ =========================================
2685
+ END OF chalk@4.1.2 AND INFORMATION
2686
+
2687
+ %% chokidar@3.6.0 NOTICES AND INFORMATION BEGIN HERE
2688
+ =========================================
2689
+ The MIT License (MIT)
2690
+
2691
+ Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
2692
+
2693
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2694
+ of this software and associated documentation files (the “Software”), to deal
2695
+ in the Software without restriction, including without limitation the rights
2696
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2697
+ copies of the Software, and to permit persons to whom the Software is
2698
+ furnished to do so, subject to the following conditions:
2699
+
2700
+ The above copyright notice and this permission notice shall be included in
2701
+ all copies or substantial portions of the Software.
2702
+
2703
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2704
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2705
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2706
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2707
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2708
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2709
+ THE SOFTWARE.
2710
+ =========================================
2711
+ END OF chokidar@3.6.0 AND INFORMATION
2712
+
2713
+ %% ci-info@4.3.1 NOTICES AND INFORMATION BEGIN HERE
2714
+ =========================================
2715
+ The MIT License (MIT)
2716
+
2717
+ Copyright (c) 2016 Thomas Watson Steen
2718
+
2719
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2720
+ of this software and associated documentation files (the "Software"), to deal
2721
+ in the Software without restriction, including without limitation the rights
2722
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2723
+ copies of the Software, and to permit persons to whom the Software is
2724
+ furnished to do so, subject to the following conditions:
2725
+
2726
+ The above copyright notice and this permission notice shall be included in all
2727
+ copies or substantial portions of the Software.
2728
+
2729
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2730
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2731
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2732
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2733
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2734
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2735
+ SOFTWARE.
2736
+ =========================================
2737
+ END OF ci-info@4.3.1 AND INFORMATION
2738
+
2739
+ %% codemirror@5.65.18 NOTICES AND INFORMATION BEGIN HERE
2740
+ =========================================
2741
+ MIT License
2742
+
2743
+ Copyright (C) 2017 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
2744
+
2745
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2746
+ of this software and associated documentation files (the "Software"), to deal
2747
+ in the Software without restriction, including without limitation the rights
2748
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2749
+ copies of the Software, and to permit persons to whom the Software is
2750
+ furnished to do so, subject to the following conditions:
2751
+
2752
+ The above copyright notice and this permission notice shall be included in
2753
+ all copies or substantial portions of the Software.
2754
+
2755
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2756
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2757
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2758
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2759
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2760
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2761
+ THE SOFTWARE.
2762
+ =========================================
2763
+ END OF codemirror@5.65.18 AND INFORMATION
2764
+
2765
+ %% color-convert@2.0.1 NOTICES AND INFORMATION BEGIN HERE
2766
+ =========================================
2767
+ Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>
2768
+
2769
+ Permission is hereby granted, free of charge, to any person obtaining
2770
+ a copy of this software and associated documentation files (the
2771
+ "Software"), to deal in the Software without restriction, including
2772
+ without limitation the rights to use, copy, modify, merge, publish,
2773
+ distribute, sublicense, and/or sell copies of the Software, and to
2774
+ permit persons to whom the Software is furnished to do so, subject to
2775
+ the following conditions:
2776
+
2777
+ The above copyright notice and this permission notice shall be
2778
+ included in all copies or substantial portions of the Software.
2779
+
2780
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2781
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2782
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2783
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2784
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2785
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2786
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2787
+ =========================================
2788
+ END OF color-convert@2.0.1 AND INFORMATION
2789
+
2790
+ %% color-name@1.1.4 NOTICES AND INFORMATION BEGIN HERE
2791
+ =========================================
2792
+ The MIT License (MIT)
2793
+ Copyright (c) 2015 Dmitry Ivanov
2794
+
2795
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2796
+
2797
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2798
+
2799
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2800
+ =========================================
2801
+ END OF color-name@1.1.4 AND INFORMATION
2802
+
2803
+ %% convert-source-map@2.0.0 NOTICES AND INFORMATION BEGIN HERE
2804
+ =========================================
2805
+ Copyright 2013 Thorsten Lorenz.
2806
+ All rights reserved.
2807
+
2808
+ Permission is hereby granted, free of charge, to any person
2809
+ obtaining a copy of this software and associated documentation
2810
+ files (the "Software"), to deal in the Software without
2811
+ restriction, including without limitation the rights to use,
2812
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2813
+ copies of the Software, and to permit persons to whom the
2814
+ Software is furnished to do so, subject to the following
2815
+ conditions:
2816
+
2817
+ The above copyright notice and this permission notice shall be
2818
+ included in all copies or substantial portions of the Software.
2819
+
2820
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2821
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2822
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2823
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2824
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2825
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2826
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2827
+ OTHER DEALINGS IN THE SOFTWARE.
2828
+ =========================================
2829
+ END OF convert-source-map@2.0.0 AND INFORMATION
2830
+
2831
+ %% debug@4.4.0 NOTICES AND INFORMATION BEGIN HERE
2832
+ =========================================
2833
+ (The MIT License)
2834
+
2835
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
2836
+ Copyright (c) 2018-2021 Josh Junon
2837
+
2838
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software
2839
+ and associated documentation files (the 'Software'), to deal in the Software without restriction,
2840
+ including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
2841
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
2842
+ subject to the following conditions:
2843
+
2844
+ The above copyright notice and this permission notice shall be included in all copies or substantial
2845
+ portions of the Software.
2846
+
2847
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
2848
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2849
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2850
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2851
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2852
+ =========================================
2853
+ END OF debug@4.4.0 AND INFORMATION
2854
+
2855
+ %% electron-to-chromium@1.5.192 NOTICES AND INFORMATION BEGIN HERE
2856
+ =========================================
2857
+ Copyright 2018 Kilian Valkhof
2858
+
2859
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
2860
+
2861
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2862
+ =========================================
2863
+ END OF electron-to-chromium@1.5.192 AND INFORMATION
2864
+
2865
+ %% enquirer@2.3.6 NOTICES AND INFORMATION BEGIN HERE
2866
+ =========================================
2867
+ The MIT License (MIT)
2868
+
2869
+ Copyright (c) 2016-present, Jon Schlinkert.
2870
+
2871
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2872
+ of this software and associated documentation files (the "Software"), to deal
2873
+ in the Software without restriction, including without limitation the rights
2874
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2875
+ copies of the Software, and to permit persons to whom the Software is
2876
+ furnished to do so, subject to the following conditions:
2877
+
2878
+ The above copyright notice and this permission notice shall be included in
2879
+ all copies or substantial portions of the Software.
2880
+
2881
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2882
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2883
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2884
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2885
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2886
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2887
+ THE SOFTWARE.
2888
+ =========================================
2889
+ END OF enquirer@2.3.6 AND INFORMATION
2890
+
2891
+ %% escalade@3.2.0 NOTICES AND INFORMATION BEGIN HERE
2892
+ =========================================
2893
+ MIT License
2894
+
2895
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
2896
+
2897
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2898
+
2899
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2900
+
2901
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2902
+ =========================================
2903
+ END OF escalade@3.2.0 AND INFORMATION
2904
+
2905
+ %% escape-string-regexp@2.0.0 NOTICES AND INFORMATION BEGIN HERE
2906
+ =========================================
2907
+ MIT License
2908
+
2909
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2910
+
2911
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2912
+
2913
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2914
+
2915
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2916
+ =========================================
2917
+ END OF escape-string-regexp@2.0.0 AND INFORMATION
2918
+
2919
+ %% expect@30.2.0 NOTICES AND INFORMATION BEGIN HERE
2920
+ =========================================
2921
+ MIT License
2922
+
2923
+ Copyright (c) Meta Platforms, Inc. and affiliates.
2924
+ Copyright Contributors to the Jest project.
2925
+
2926
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2927
+ of this software and associated documentation files (the "Software"), to deal
2928
+ in the Software without restriction, including without limitation the rights
2929
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2930
+ copies of the Software, and to permit persons to whom the Software is
2931
+ furnished to do so, subject to the following conditions:
2932
+
2933
+ The above copyright notice and this permission notice shall be included in all
2934
+ copies or substantial portions of the Software.
2935
+
2936
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2937
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2938
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2939
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2940
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2941
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2942
+ SOFTWARE.
2943
+ =========================================
2944
+ END OF expect@30.2.0 AND INFORMATION
2945
+
2946
+ %% fill-range@7.1.1 NOTICES AND INFORMATION BEGIN HERE
2947
+ =========================================
2948
+ The MIT License (MIT)
2949
+
2950
+ Copyright (c) 2014-present, Jon Schlinkert.
2951
+
2952
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2953
+ of this software and associated documentation files (the "Software"), to deal
2954
+ in the Software without restriction, including without limitation the rights
2955
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2956
+ copies of the Software, and to permit persons to whom the Software is
2957
+ furnished to do so, subject to the following conditions:
2958
+
2959
+ The above copyright notice and this permission notice shall be included in
2960
+ all copies or substantial portions of the Software.
2961
+
2962
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2963
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2964
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2965
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2966
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2967
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2968
+ THE SOFTWARE.
2969
+ =========================================
2970
+ END OF fill-range@7.1.1 AND INFORMATION
2971
+
2972
+ %% gensync@1.0.0-beta.2 NOTICES AND INFORMATION BEGIN HERE
2973
+ =========================================
2974
+ Copyright 2018 Logan Smyth <loganfsmyth@gmail.com>
2975
+
2976
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2977
+
2978
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2979
+
2980
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2981
+ =========================================
2982
+ END OF gensync@1.0.0-beta.2 AND INFORMATION
2983
+
2984
+ %% get-east-asian-width@1.3.0 NOTICES AND INFORMATION BEGIN HERE
2985
+ =========================================
2986
+ MIT License
2987
+
2988
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2989
+
2990
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2991
+
2992
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2993
+
2994
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2995
+ =========================================
2996
+ END OF get-east-asian-width@1.3.0 AND INFORMATION
2997
+
2998
+ %% glob-parent@5.1.2 NOTICES AND INFORMATION BEGIN HERE
2999
+ =========================================
3000
+ The ISC License
3001
+
3002
+ Copyright (c) 2015, 2019 Elan Shanker
3003
+
3004
+ Permission to use, copy, modify, and/or distribute this software for any
3005
+ purpose with or without fee is hereby granted, provided that the above
3006
+ copyright notice and this permission notice appear in all copies.
3007
+
3008
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3009
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3010
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3011
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3012
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3013
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3014
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3015
+ =========================================
3016
+ END OF glob-parent@5.1.2 AND INFORMATION
3017
+
3018
+ %% graceful-fs@4.2.11 NOTICES AND INFORMATION BEGIN HERE
3019
+ =========================================
3020
+ The ISC License
3021
+
3022
+ Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
3023
+
3024
+ Permission to use, copy, modify, and/or distribute this software for any
3025
+ purpose with or without fee is hereby granted, provided that the above
3026
+ copyright notice and this permission notice appear in all copies.
3027
+
3028
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3029
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3030
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3031
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3032
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3033
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3034
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3035
+ =========================================
3036
+ END OF graceful-fs@4.2.11 AND INFORMATION
3037
+
3038
+ %% has-flag@4.0.0 NOTICES AND INFORMATION BEGIN HERE
3039
+ =========================================
3040
+ MIT License
3041
+
3042
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3043
+
3044
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3045
+
3046
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3047
+
3048
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3049
+ =========================================
3050
+ END OF has-flag@4.0.0 AND INFORMATION
3051
+
3052
+ %% is-binary-path@2.1.0 NOTICES AND INFORMATION BEGIN HERE
3053
+ =========================================
3054
+ MIT License
3055
+
3056
+ Copyright (c) 2019 Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)
3057
+
3058
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3059
+
3060
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3061
+
3062
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3063
+ =========================================
3064
+ END OF is-binary-path@2.1.0 AND INFORMATION
3065
+
3066
+ %% is-extglob@2.1.1 NOTICES AND INFORMATION BEGIN HERE
3067
+ =========================================
3068
+ The MIT License (MIT)
3069
+
3070
+ Copyright (c) 2014-2016, Jon Schlinkert
3071
+
3072
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3073
+ of this software and associated documentation files (the "Software"), to deal
3074
+ in the Software without restriction, including without limitation the rights
3075
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3076
+ copies of the Software, and to permit persons to whom the Software is
3077
+ furnished to do so, subject to the following conditions:
3078
+
3079
+ The above copyright notice and this permission notice shall be included in
3080
+ all copies or substantial portions of the Software.
3081
+
3082
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3083
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3084
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3085
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3086
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3087
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3088
+ THE SOFTWARE.
3089
+ =========================================
3090
+ END OF is-extglob@2.1.1 AND INFORMATION
3091
+
3092
+ %% is-glob@4.0.3 NOTICES AND INFORMATION BEGIN HERE
3093
+ =========================================
3094
+ The MIT License (MIT)
3095
+
3096
+ Copyright (c) 2014-2017, Jon Schlinkert.
3097
+
3098
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3099
+ of this software and associated documentation files (the "Software"), to deal
3100
+ in the Software without restriction, including without limitation the rights
3101
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3102
+ copies of the Software, and to permit persons to whom the Software is
3103
+ furnished to do so, subject to the following conditions:
3104
+
3105
+ The above copyright notice and this permission notice shall be included in
3106
+ all copies or substantial portions of the Software.
3107
+
3108
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3109
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3110
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3111
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3112
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3113
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3114
+ THE SOFTWARE.
3115
+ =========================================
3116
+ END OF is-glob@4.0.3 AND INFORMATION
3117
+
3118
+ %% is-number@7.0.0 NOTICES AND INFORMATION BEGIN HERE
3119
+ =========================================
3120
+ The MIT License (MIT)
3121
+
3122
+ Copyright (c) 2014-present, Jon Schlinkert.
3123
+
3124
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3125
+ of this software and associated documentation files (the "Software"), to deal
3126
+ in the Software without restriction, including without limitation the rights
3127
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3128
+ copies of the Software, and to permit persons to whom the Software is
3129
+ furnished to do so, subject to the following conditions:
3130
+
3131
+ The above copyright notice and this permission notice shall be included in
3132
+ all copies or substantial portions of the Software.
3133
+
3134
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3135
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3136
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3137
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3138
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3139
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3140
+ THE SOFTWARE.
3141
+ =========================================
3142
+ END OF is-number@7.0.0 AND INFORMATION
3143
+
3144
+ %% jest-diff@30.2.0 NOTICES AND INFORMATION BEGIN HERE
3145
+ =========================================
3146
+ MIT License
3147
+
3148
+ Copyright (c) Meta Platforms, Inc. and affiliates.
3149
+ Copyright Contributors to the Jest project.
3150
+
3151
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3152
+ of this software and associated documentation files (the "Software"), to deal
3153
+ in the Software without restriction, including without limitation the rights
3154
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3155
+ copies of the Software, and to permit persons to whom the Software is
3156
+ furnished to do so, subject to the following conditions:
3157
+
3158
+ The above copyright notice and this permission notice shall be included in all
3159
+ copies or substantial portions of the Software.
3160
+
3161
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3162
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3163
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3164
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3165
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3166
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3167
+ SOFTWARE.
3168
+ =========================================
3169
+ END OF jest-diff@30.2.0 AND INFORMATION
3170
+
3171
+ %% jest-matcher-utils@30.2.0 NOTICES AND INFORMATION BEGIN HERE
3172
+ =========================================
3173
+ MIT License
3174
+
3175
+ Copyright (c) Meta Platforms, Inc. and affiliates.
3176
+ Copyright Contributors to the Jest project.
3177
+
3178
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3179
+ of this software and associated documentation files (the "Software"), to deal
3180
+ in the Software without restriction, including without limitation the rights
3181
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3182
+ copies of the Software, and to permit persons to whom the Software is
3183
+ furnished to do so, subject to the following conditions:
3184
+
3185
+ The above copyright notice and this permission notice shall be included in all
3186
+ copies or substantial portions of the Software.
3187
+
3188
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3189
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3190
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3191
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3192
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3193
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3194
+ SOFTWARE.
3195
+ =========================================
3196
+ END OF jest-matcher-utils@30.2.0 AND INFORMATION
3197
+
3198
+ %% jest-message-util@30.2.0 NOTICES AND INFORMATION BEGIN HERE
3199
+ =========================================
3200
+ MIT License
3201
+
3202
+ Copyright (c) Meta Platforms, Inc. and affiliates.
3203
+ Copyright Contributors to the Jest project.
3204
+
3205
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3206
+ of this software and associated documentation files (the "Software"), to deal
3207
+ in the Software without restriction, including without limitation the rights
3208
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3209
+ copies of the Software, and to permit persons to whom the Software is
3210
+ furnished to do so, subject to the following conditions:
3211
+
3212
+ The above copyright notice and this permission notice shall be included in all
3213
+ copies or substantial portions of the Software.
3214
+
3215
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3216
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3217
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3218
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3219
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3220
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3221
+ SOFTWARE.
3222
+ =========================================
3223
+ END OF jest-message-util@30.2.0 AND INFORMATION
3224
+
3225
+ %% jest-mock@30.2.0 NOTICES AND INFORMATION BEGIN HERE
3226
+ =========================================
3227
+ MIT License
3228
+
3229
+ Copyright (c) Meta Platforms, Inc. and affiliates.
3230
+ Copyright Contributors to the Jest project.
3231
+
3232
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3233
+ of this software and associated documentation files (the "Software"), to deal
3234
+ in the Software without restriction, including without limitation the rights
3235
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3236
+ copies of the Software, and to permit persons to whom the Software is
3237
+ furnished to do so, subject to the following conditions:
3238
+
3239
+ The above copyright notice and this permission notice shall be included in all
3240
+ copies or substantial portions of the Software.
3241
+
3242
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3243
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3244
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3245
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3246
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3247
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3248
+ SOFTWARE.
3249
+ =========================================
3250
+ END OF jest-mock@30.2.0 AND INFORMATION
3251
+
3252
+ %% jest-regex-util@30.0.1 NOTICES AND INFORMATION BEGIN HERE
3253
+ =========================================
3254
+ MIT License
3255
+
3256
+ Copyright (c) Meta Platforms, Inc. and affiliates.
3257
+ Copyright Contributors to the Jest project.
3258
+
3259
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3260
+ of this software and associated documentation files (the "Software"), to deal
3261
+ in the Software without restriction, including without limitation the rights
3262
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3263
+ copies of the Software, and to permit persons to whom the Software is
3264
+ furnished to do so, subject to the following conditions:
3265
+
3266
+ The above copyright notice and this permission notice shall be included in all
3267
+ copies or substantial portions of the Software.
3268
+
3269
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3270
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3271
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3272
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3273
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3274
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3275
+ SOFTWARE.
3276
+ =========================================
3277
+ END OF jest-regex-util@30.0.1 AND INFORMATION
3278
+
3279
+ %% jest-util@30.2.0 NOTICES AND INFORMATION BEGIN HERE
3280
+ =========================================
3281
+ MIT License
3282
+
3283
+ Copyright (c) Meta Platforms, Inc. and affiliates.
3284
+ Copyright Contributors to the Jest project.
3285
+
3286
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3287
+ of this software and associated documentation files (the "Software"), to deal
3288
+ in the Software without restriction, including without limitation the rights
3289
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3290
+ copies of the Software, and to permit persons to whom the Software is
3291
+ furnished to do so, subject to the following conditions:
3292
+
3293
+ The above copyright notice and this permission notice shall be included in all
3294
+ copies or substantial portions of the Software.
3295
+
3296
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3297
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3298
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3299
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3300
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3301
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3302
+ SOFTWARE.
3303
+ =========================================
3304
+ END OF jest-util@30.2.0 AND INFORMATION
3305
+
3306
+ %% js-tokens@4.0.0 NOTICES AND INFORMATION BEGIN HERE
3307
+ =========================================
3308
+ The MIT License (MIT)
3309
+
3310
+ Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
3311
+
3312
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3313
+ of this software and associated documentation files (the "Software"), to deal
3314
+ in the Software without restriction, including without limitation the rights
3315
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3316
+ copies of the Software, and to permit persons to whom the Software is
3317
+ furnished to do so, subject to the following conditions:
3318
+
3319
+ The above copyright notice and this permission notice shall be included in
3320
+ all copies or substantial portions of the Software.
3321
+
3322
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3323
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3324
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3325
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3326
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3327
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3328
+ THE SOFTWARE.
3329
+ =========================================
3330
+ END OF js-tokens@4.0.0 AND INFORMATION
3331
+
3332
+ %% jsesc@3.1.0 NOTICES AND INFORMATION BEGIN HERE
3333
+ =========================================
3334
+ Copyright Mathias Bynens <https://mathiasbynens.be/>
3335
+
3336
+ Permission is hereby granted, free of charge, to any person obtaining
3337
+ a copy of this software and associated documentation files (the
3338
+ "Software"), to deal in the Software without restriction, including
3339
+ without limitation the rights to use, copy, modify, merge, publish,
3340
+ distribute, sublicense, and/or sell copies of the Software, and to
3341
+ permit persons to whom the Software is furnished to do so, subject to
3342
+ the following conditions:
3343
+
3344
+ The above copyright notice and this permission notice shall be
3345
+ included in all copies or substantial portions of the Software.
3346
+
3347
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3348
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3349
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3350
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
3351
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3352
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3353
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3354
+ =========================================
3355
+ END OF jsesc@3.1.0 AND INFORMATION
3356
+
3357
+ %% json5@2.2.3 NOTICES AND INFORMATION BEGIN HERE
3358
+ =========================================
3359
+ MIT License
3360
+
3361
+ Copyright (c) 2012-2018 Aseem Kishore, and [others].
3362
+
3363
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3364
+ of this software and associated documentation files (the "Software"), to deal
3365
+ in the Software without restriction, including without limitation the rights
3366
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3367
+ copies of the Software, and to permit persons to whom the Software is
3368
+ furnished to do so, subject to the following conditions:
3369
+
3370
+ The above copyright notice and this permission notice shall be included in all
3371
+ copies or substantial portions of the Software.
3372
+
3373
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3374
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3375
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3376
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3377
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3378
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3379
+ SOFTWARE.
3380
+
3381
+ [others]: https://github.com/json5/json5/contributors
3382
+ =========================================
3383
+ END OF json5@2.2.3 AND INFORMATION
3384
+
3385
+ %% lru-cache@5.1.1 NOTICES AND INFORMATION BEGIN HERE
3386
+ =========================================
3387
+ The ISC License
3388
+
3389
+ Copyright (c) Isaac Z. Schlueter and Contributors
3390
+
3391
+ Permission to use, copy, modify, and/or distribute this software for any
3392
+ purpose with or without fee is hereby granted, provided that the above
3393
+ copyright notice and this permission notice appear in all copies.
3394
+
3395
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3396
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3397
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3398
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3399
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3400
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3401
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3402
+ =========================================
3403
+ END OF lru-cache@5.1.1 AND INFORMATION
3404
+
3405
+ %% micromatch@4.0.8 NOTICES AND INFORMATION BEGIN HERE
3406
+ =========================================
3407
+ The MIT License (MIT)
3408
+
3409
+ Copyright (c) 2014-present, Jon Schlinkert.
3410
+
3411
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3412
+ of this software and associated documentation files (the "Software"), to deal
3413
+ in the Software without restriction, including without limitation the rights
3414
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3415
+ copies of the Software, and to permit persons to whom the Software is
3416
+ furnished to do so, subject to the following conditions:
3417
+
3418
+ The above copyright notice and this permission notice shall be included in
3419
+ all copies or substantial portions of the Software.
3420
+
3421
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3422
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3423
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3424
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3425
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3426
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3427
+ THE SOFTWARE.
3428
+ =========================================
3429
+ END OF micromatch@4.0.8 AND INFORMATION
3430
+
3431
+ %% ms@2.1.3 NOTICES AND INFORMATION BEGIN HERE
3432
+ =========================================
3433
+ The MIT License (MIT)
3434
+
3435
+ Copyright (c) 2020 Vercel, Inc.
3436
+
3437
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3438
+ of this software and associated documentation files (the "Software"), to deal
3439
+ in the Software without restriction, including without limitation the rights
3440
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3441
+ copies of the Software, and to permit persons to whom the Software is
3442
+ furnished to do so, subject to the following conditions:
3443
+
3444
+ The above copyright notice and this permission notice shall be included in all
3445
+ copies or substantial portions of the Software.
3446
+
3447
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3448
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3449
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3450
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3451
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3452
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3453
+ SOFTWARE.
3454
+ =========================================
3455
+ END OF ms@2.1.3 AND INFORMATION
3456
+
3457
+ %% node-releases@2.0.19 NOTICES AND INFORMATION BEGIN HERE
3458
+ =========================================
3459
+ The MIT License
3460
+
3461
+ Copyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy)
3462
+
3463
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3464
+ of this software and associated documentation files (the "Software"), to deal
3465
+ in the Software without restriction, including without limitation the rights
3466
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3467
+ copies of the Software, and to permit persons to whom the Software is
3468
+ furnished to do so, subject to the following conditions:
3469
+
3470
+ The above copyright notice and this permission notice shall be included in
3471
+ all copies or substantial portions of the Software.
3472
+
3473
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3474
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3475
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3476
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3477
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3478
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3479
+ THE SOFTWARE.
3480
+ =========================================
3481
+ END OF node-releases@2.0.19 AND INFORMATION
3482
+
3483
+ %% normalize-path@3.0.0 NOTICES AND INFORMATION BEGIN HERE
3484
+ =========================================
3485
+ The MIT License (MIT)
3486
+
3487
+ Copyright (c) 2014-2018, Jon Schlinkert.
3488
+
3489
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3490
+ of this software and associated documentation files (the "Software"), to deal
3491
+ in the Software without restriction, including without limitation the rights
3492
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3493
+ copies of the Software, and to permit persons to whom the Software is
3494
+ furnished to do so, subject to the following conditions:
3495
+
3496
+ The above copyright notice and this permission notice shall be included in
3497
+ all copies or substantial portions of the Software.
3498
+
3499
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3500
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3501
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3502
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3503
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3504
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3505
+ THE SOFTWARE.
3506
+ =========================================
3507
+ END OF normalize-path@3.0.0 AND INFORMATION
3508
+
3509
+ %% picocolors@1.1.1 NOTICES AND INFORMATION BEGIN HERE
3510
+ =========================================
3511
+ ISC License
3512
+
3513
+ Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
3514
+
3515
+ Permission to use, copy, modify, and/or distribute this software for any
3516
+ purpose with or without fee is hereby granted, provided that the above
3517
+ copyright notice and this permission notice appear in all copies.
3518
+
3519
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3520
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3521
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3522
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3523
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3524
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3525
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3526
+ =========================================
3527
+ END OF picocolors@1.1.1 AND INFORMATION
3528
+
3529
+ %% picomatch@2.3.1 NOTICES AND INFORMATION BEGIN HERE
3530
+ =========================================
3531
+ The MIT License (MIT)
3532
+
3533
+ Copyright (c) 2017-present, Jon Schlinkert.
3534
+
3535
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3536
+ of this software and associated documentation files (the "Software"), to deal
3537
+ in the Software without restriction, including without limitation the rights
3538
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3539
+ copies of the Software, and to permit persons to whom the Software is
3540
+ furnished to do so, subject to the following conditions:
3541
+
3542
+ The above copyright notice and this permission notice shall be included in
3543
+ all copies or substantial portions of the Software.
3544
+
3545
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3546
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3547
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3548
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3549
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3550
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3551
+ THE SOFTWARE.
3552
+ =========================================
3553
+ END OF picomatch@2.3.1 AND INFORMATION
3554
+
3555
+ %% picomatch@4.0.3 NOTICES AND INFORMATION BEGIN HERE
3556
+ =========================================
3557
+ The MIT License (MIT)
3558
+
3559
+ Copyright (c) 2017-present, Jon Schlinkert.
3560
+
3561
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3562
+ of this software and associated documentation files (the "Software"), to deal
3563
+ in the Software without restriction, including without limitation the rights
3564
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3565
+ copies of the Software, and to permit persons to whom the Software is
3566
+ furnished to do so, subject to the following conditions:
3567
+
3568
+ The above copyright notice and this permission notice shall be included in
3569
+ all copies or substantial portions of the Software.
3570
+
3571
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3572
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3573
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3574
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3575
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3576
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3577
+ THE SOFTWARE.
3578
+ =========================================
3579
+ END OF picomatch@4.0.3 AND INFORMATION
3580
+
3581
+ %% pretty-format@30.2.0 NOTICES AND INFORMATION BEGIN HERE
3582
+ =========================================
3583
+ MIT License
3584
+
3585
+ Copyright (c) Meta Platforms, Inc. and affiliates.
3586
+ Copyright Contributors to the Jest project.
3587
+
3588
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3589
+ of this software and associated documentation files (the "Software"), to deal
3590
+ in the Software without restriction, including without limitation the rights
3591
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3592
+ copies of the Software, and to permit persons to whom the Software is
3593
+ furnished to do so, subject to the following conditions:
3594
+
3595
+ The above copyright notice and this permission notice shall be included in all
3596
+ copies or substantial portions of the Software.
3597
+
3598
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3599
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3600
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3601
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3602
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3603
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3604
+ SOFTWARE.
3605
+ =========================================
3606
+ END OF pretty-format@30.2.0 AND INFORMATION
3607
+
3608
+ %% react-is@18.3.1 NOTICES AND INFORMATION BEGIN HERE
3609
+ =========================================
3610
+ MIT License
3611
+
3612
+ Copyright (c) Facebook, Inc. and its affiliates.
3613
+
3614
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3615
+ of this software and associated documentation files (the "Software"), to deal
3616
+ in the Software without restriction, including without limitation the rights
3617
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3618
+ copies of the Software, and to permit persons to whom the Software is
3619
+ furnished to do so, subject to the following conditions:
3620
+
3621
+ The above copyright notice and this permission notice shall be included in all
3622
+ copies or substantial portions of the Software.
3623
+
3624
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3625
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3626
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3627
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3628
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3629
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3630
+ SOFTWARE.
3631
+ =========================================
3632
+ END OF react-is@18.3.1 AND INFORMATION
3633
+
3634
+ %% readdirp@3.6.0 NOTICES AND INFORMATION BEGIN HERE
3635
+ =========================================
3636
+ MIT License
3637
+
3638
+ Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
3639
+
3640
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3641
+ of this software and associated documentation files (the "Software"), to deal
3642
+ in the Software without restriction, including without limitation the rights
3643
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3644
+ copies of the Software, and to permit persons to whom the Software is
3645
+ furnished to do so, subject to the following conditions:
3646
+
3647
+ The above copyright notice and this permission notice shall be included in all
3648
+ copies or substantial portions of the Software.
3649
+
3650
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3651
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3652
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3653
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3654
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3655
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3656
+ SOFTWARE.
3657
+ =========================================
3658
+ END OF readdirp@3.6.0 AND INFORMATION
3659
+
3660
+ %% semver@6.3.1 NOTICES AND INFORMATION BEGIN HERE
3661
+ =========================================
3662
+ The ISC License
3663
+
3664
+ Copyright (c) Isaac Z. Schlueter and Contributors
3665
+
3666
+ Permission to use, copy, modify, and/or distribute this software for any
3667
+ purpose with or without fee is hereby granted, provided that the above
3668
+ copyright notice and this permission notice appear in all copies.
3669
+
3670
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3671
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3672
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3673
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3674
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3675
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3676
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3677
+ =========================================
3678
+ END OF semver@6.3.1 AND INFORMATION
3679
+
3680
+ %% slash@3.0.0 NOTICES AND INFORMATION BEGIN HERE
3681
+ =========================================
3682
+ MIT License
3683
+
3684
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3685
+
3686
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3687
+
3688
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3689
+
3690
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3691
+ =========================================
3692
+ END OF slash@3.0.0 AND INFORMATION
3693
+
3694
+ %% source-map-support@0.5.21 NOTICES AND INFORMATION BEGIN HERE
3695
+ =========================================
3696
+ The MIT License (MIT)
3697
+
3698
+ Copyright (c) 2014 Evan Wallace
3699
+
3700
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3701
+ of this software and associated documentation files (the "Software"), to deal
3702
+ in the Software without restriction, including without limitation the rights
3703
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3704
+ copies of the Software, and to permit persons to whom the Software is
3705
+ furnished to do so, subject to the following conditions:
3706
+
3707
+ The above copyright notice and this permission notice shall be included in all
3708
+ copies or substantial portions of the Software.
3709
+
3710
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3711
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3712
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3713
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3714
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3715
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3716
+ SOFTWARE.
3717
+ =========================================
3718
+ END OF source-map-support@0.5.21 AND INFORMATION
3719
+
3720
+ %% source-map@0.6.1 NOTICES AND INFORMATION BEGIN HERE
3721
+ =========================================
3722
+ Copyright (c) 2009-2011, Mozilla Foundation and contributors
3723
+ All rights reserved.
3724
+
3725
+ Redistribution and use in source and binary forms, with or without
3726
+ modification, are permitted provided that the following conditions are met:
3727
+
3728
+ * Redistributions of source code must retain the above copyright notice, this
3729
+ list of conditions and the following disclaimer.
3730
+
3731
+ * Redistributions in binary form must reproduce the above copyright notice,
3732
+ this list of conditions and the following disclaimer in the documentation
3733
+ and/or other materials provided with the distribution.
3734
+
3735
+ * Neither the names of the Mozilla Foundation nor the names of project
3736
+ contributors may be used to endorse or promote products derived from this
3737
+ software without specific prior written permission.
3738
+
3739
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
3740
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
3741
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
3742
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
3743
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3744
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
3745
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
3746
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
3747
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3748
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3749
+ =========================================
3750
+ END OF source-map@0.6.1 AND INFORMATION
3751
+
3752
+ %% stack-utils@2.0.6 NOTICES AND INFORMATION BEGIN HERE
3753
+ =========================================
3754
+ The MIT License (MIT)
3755
+
3756
+ Copyright (c) 2016-2022 Isaac Z. Schlueter <i@izs.me>, James Talmage <james@talmage.io> (github.com/jamestalmage), and Contributors
3757
+
3758
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3759
+ of this software and associated documentation files (the "Software"), to deal
3760
+ in the Software without restriction, including without limitation the rights
3761
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3762
+ copies of the Software, and to permit persons to whom the Software is
3763
+ furnished to do so, subject to the following conditions:
3764
+
3765
+ The above copyright notice and this permission notice shall be included in
3766
+ all copies or substantial portions of the Software.
3767
+
3768
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3769
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3770
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3771
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3772
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3773
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3774
+ THE SOFTWARE.
3775
+ =========================================
3776
+ END OF stack-utils@2.0.6 AND INFORMATION
3777
+
3778
+ %% stoppable@1.1.0 NOTICES AND INFORMATION BEGIN HERE
3779
+ =========================================
3780
+ The MIT License (MIT)
3781
+
3782
+ Copyright (c) 2017 Hunter Loftis <hunter@hunterloftis.com>
3783
+
3784
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3785
+ of this software and associated documentation files (the "Software"), to deal
3786
+ in the Software without restriction, including without limitation the rights
3787
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3788
+ copies of the Software, and to permit persons to whom the Software is
3789
+ furnished to do so, subject to the following conditions:
3790
+
3791
+ The above copyright notice and this permission notice shall be included in
3792
+ all copies or substantial portions of the Software.
3793
+
3794
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3795
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3796
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3797
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3798
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3799
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3800
+ THE SOFTWARE.
3801
+ =========================================
3802
+ END OF stoppable@1.1.0 AND INFORMATION
3803
+
3804
+ %% supports-color@7.2.0 NOTICES AND INFORMATION BEGIN HERE
3805
+ =========================================
3806
+ MIT License
3807
+
3808
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3809
+
3810
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3811
+
3812
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3813
+
3814
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3815
+ =========================================
3816
+ END OF supports-color@7.2.0 AND INFORMATION
3817
+
3818
+ %% to-regex-range@5.0.1 NOTICES AND INFORMATION BEGIN HERE
3819
+ =========================================
3820
+ The MIT License (MIT)
3821
+
3822
+ Copyright (c) 2015-present, Jon Schlinkert.
3823
+
3824
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3825
+ of this software and associated documentation files (the "Software"), to deal
3826
+ in the Software without restriction, including without limitation the rights
3827
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3828
+ copies of the Software, and to permit persons to whom the Software is
3829
+ furnished to do so, subject to the following conditions:
3830
+
3831
+ The above copyright notice and this permission notice shall be included in
3832
+ all copies or substantial portions of the Software.
3833
+
3834
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3835
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3836
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3837
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3838
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3839
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3840
+ THE SOFTWARE.
3841
+ =========================================
3842
+ END OF to-regex-range@5.0.1 AND INFORMATION
3843
+
3844
+ %% undici-types@7.16.0 NOTICES AND INFORMATION BEGIN HERE
3845
+ =========================================
3846
+ MIT License
3847
+
3848
+ Copyright (c) Matteo Collina and Undici contributors
3849
+
3850
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3851
+ of this software and associated documentation files (the "Software"), to deal
3852
+ in the Software without restriction, including without limitation the rights
3853
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3854
+ copies of the Software, and to permit persons to whom the Software is
3855
+ furnished to do so, subject to the following conditions:
3856
+
3857
+ The above copyright notice and this permission notice shall be included in all
3858
+ copies or substantial portions of the Software.
3859
+
3860
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3861
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3862
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3863
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3864
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3865
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3866
+ SOFTWARE.
3867
+ =========================================
3868
+ END OF undici-types@7.16.0 AND INFORMATION
3869
+
3870
+ %% update-browserslist-db@1.1.3 NOTICES AND INFORMATION BEGIN HERE
3871
+ =========================================
3872
+ The MIT License (MIT)
3873
+
3874
+ Copyright 2022 Andrey Sitnik <andrey@sitnik.ru> and other contributors
3875
+
3876
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
3877
+ this software and associated documentation files (the "Software"), to deal in
3878
+ the Software without restriction, including without limitation the rights to
3879
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3880
+ the Software, and to permit persons to whom the Software is furnished to do so,
3881
+ subject to the following conditions:
3882
+
3883
+ The above copyright notice and this permission notice shall be included in all
3884
+ copies or substantial portions of the Software.
3885
+
3886
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3887
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3888
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3889
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3890
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3891
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3892
+ =========================================
3893
+ END OF update-browserslist-db@1.1.3 AND INFORMATION
3894
+
3895
+ %% yallist@3.1.1 NOTICES AND INFORMATION BEGIN HERE
3896
+ =========================================
3897
+ The ISC License
3898
+
3899
+ Copyright (c) Isaac Z. Schlueter and Contributors
3900
+
3901
+ Permission to use, copy, modify, and/or distribute this software for any
3902
+ purpose with or without fee is hereby granted, provided that the above
3903
+ copyright notice and this permission notice appear in all copies.
3904
+
3905
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3906
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3907
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3908
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3909
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3910
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3911
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3912
+ =========================================
3913
+ END OF yallist@3.1.1 AND INFORMATION
3914
+
3915
+ SUMMARY BEGIN HERE
3916
+ =========================================
3917
+ Total Packages: 130
3918
+ =========================================
3919
+ END OF SUMMARY