node-red-contrib-tak-registration 0.3.2 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3329) hide show
  1. package/README.md +21 -3
  2. package/icons/tak.png +0 -0
  3. package/node_modules/@ampproject/remapping/LICENSE +202 -0
  4. package/node_modules/@ampproject/remapping/README.md +218 -0
  5. package/node_modules/@ampproject/remapping/dist/remapping.mjs +191 -0
  6. package/node_modules/@ampproject/remapping/dist/remapping.mjs.map +1 -0
  7. package/node_modules/@ampproject/remapping/dist/remapping.umd.js +196 -0
  8. package/node_modules/@ampproject/remapping/dist/remapping.umd.js.map +1 -0
  9. package/node_modules/@ampproject/remapping/dist/types/build-source-map-tree.d.ts +14 -0
  10. package/node_modules/@ampproject/remapping/dist/types/remapping.d.ts +19 -0
  11. package/node_modules/@ampproject/remapping/dist/types/source-map-tree.d.ts +42 -0
  12. package/node_modules/@ampproject/remapping/dist/types/source-map.d.ts +17 -0
  13. package/node_modules/@ampproject/remapping/dist/types/types.d.ts +14 -0
  14. package/node_modules/@ampproject/remapping/package.json +75 -0
  15. package/node_modules/@babel/code-frame/LICENSE +22 -0
  16. package/node_modules/@babel/code-frame/README.md +19 -0
  17. package/node_modules/@babel/code-frame/lib/index.js +142 -0
  18. package/node_modules/@babel/code-frame/lib/index.js.map +1 -0
  19. package/node_modules/@babel/code-frame/package.json +28 -0
  20. package/node_modules/@babel/compat-data/LICENSE +22 -0
  21. package/node_modules/@babel/compat-data/README.md +19 -0
  22. package/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
  23. package/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
  24. package/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2081 -0
  25. package/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
  26. package/node_modules/@babel/compat-data/data/native-modules.json +18 -0
  27. package/node_modules/@babel/compat-data/data/overlapping-plugins.json +25 -0
  28. package/node_modules/@babel/compat-data/data/plugin-bugfixes.json +201 -0
  29. package/node_modules/@babel/compat-data/data/plugins.json +763 -0
  30. package/node_modules/@babel/compat-data/native-modules.js +1 -0
  31. package/node_modules/@babel/compat-data/overlapping-plugins.js +1 -0
  32. package/node_modules/@babel/compat-data/package.json +40 -0
  33. package/node_modules/@babel/compat-data/plugin-bugfixes.js +1 -0
  34. package/node_modules/@babel/compat-data/plugins.js +1 -0
  35. package/node_modules/@babel/core/LICENSE +22 -0
  36. package/node_modules/@babel/core/README.md +19 -0
  37. package/node_modules/@babel/core/cjs-proxy.cjs +51 -0
  38. package/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
  39. package/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
  40. package/node_modules/@babel/core/lib/config/caching.js +261 -0
  41. package/node_modules/@babel/core/lib/config/caching.js.map +1 -0
  42. package/node_modules/@babel/core/lib/config/config-chain.js +467 -0
  43. package/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
  44. package/node_modules/@babel/core/lib/config/config-descriptors.js +189 -0
  45. package/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
  46. package/node_modules/@babel/core/lib/config/files/configuration.js +284 -0
  47. package/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
  48. package/node_modules/@babel/core/lib/config/files/import-meta-resolve.js +17 -0
  49. package/node_modules/@babel/core/lib/config/files/import-meta-resolve.js.map +1 -0
  50. package/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  51. package/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
  52. package/node_modules/@babel/core/lib/config/files/index-browser.js +59 -0
  53. package/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
  54. package/node_modules/@babel/core/lib/config/files/index.js +78 -0
  55. package/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
  56. package/node_modules/@babel/core/lib/config/files/module-types.js +155 -0
  57. package/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
  58. package/node_modules/@babel/core/lib/config/files/package.js +61 -0
  59. package/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
  60. package/node_modules/@babel/core/lib/config/files/plugins.js +206 -0
  61. package/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
  62. package/node_modules/@babel/core/lib/config/files/types.js +3 -0
  63. package/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
  64. package/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  65. package/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
  66. package/node_modules/@babel/core/lib/config/full.js +311 -0
  67. package/node_modules/@babel/core/lib/config/full.js.map +1 -0
  68. package/node_modules/@babel/core/lib/config/helpers/config-api.js +85 -0
  69. package/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
  70. package/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  71. package/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
  72. package/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  73. package/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
  74. package/node_modules/@babel/core/lib/config/index.js +73 -0
  75. package/node_modules/@babel/core/lib/config/index.js.map +1 -0
  76. package/node_modules/@babel/core/lib/config/item.js +67 -0
  77. package/node_modules/@babel/core/lib/config/item.js.map +1 -0
  78. package/node_modules/@babel/core/lib/config/partial.js +166 -0
  79. package/node_modules/@babel/core/lib/config/partial.js.map +1 -0
  80. package/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  81. package/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
  82. package/node_modules/@babel/core/lib/config/plugin.js +33 -0
  83. package/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
  84. package/node_modules/@babel/core/lib/config/printer.js +114 -0
  85. package/node_modules/@babel/core/lib/config/printer.js.map +1 -0
  86. package/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  87. package/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
  88. package/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  89. package/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
  90. package/node_modules/@babel/core/lib/config/util.js +31 -0
  91. package/node_modules/@babel/core/lib/config/util.js.map +1 -0
  92. package/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  93. package/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
  94. package/node_modules/@babel/core/lib/config/validation/options.js +193 -0
  95. package/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
  96. package/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  97. package/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
  98. package/node_modules/@babel/core/lib/config/validation/removed.js +69 -0
  99. package/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
  100. package/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  101. package/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
  102. package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  103. package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
  104. package/node_modules/@babel/core/lib/gensync-utils/async.js +93 -0
  105. package/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
  106. package/node_modules/@babel/core/lib/gensync-utils/fs.js +33 -0
  107. package/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
  108. package/node_modules/@babel/core/lib/gensync-utils/functional.js +33 -0
  109. package/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
  110. package/node_modules/@babel/core/lib/index.js +245 -0
  111. package/node_modules/@babel/core/lib/index.js.map +1 -0
  112. package/node_modules/@babel/core/lib/parse.js +48 -0
  113. package/node_modules/@babel/core/lib/parse.js.map +1 -0
  114. package/node_modules/@babel/core/lib/parser/index.js +79 -0
  115. package/node_modules/@babel/core/lib/parser/index.js.map +1 -0
  116. package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +329 -0
  117. package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
  118. package/node_modules/@babel/core/lib/tools/build-external-helpers.js +143 -0
  119. package/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
  120. package/node_modules/@babel/core/lib/transform-ast.js +51 -0
  121. package/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
  122. package/node_modules/@babel/core/lib/transform-file-browser.js +24 -0
  123. package/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
  124. package/node_modules/@babel/core/lib/transform-file.js +40 -0
  125. package/node_modules/@babel/core/lib/transform-file.js.map +1 -0
  126. package/node_modules/@babel/core/lib/transform.js +50 -0
  127. package/node_modules/@babel/core/lib/transform.js.map +1 -0
  128. package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +77 -0
  129. package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
  130. package/node_modules/@babel/core/lib/transformation/file/file.js +211 -0
  131. package/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
  132. package/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  133. package/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
  134. package/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  135. package/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
  136. package/node_modules/@babel/core/lib/transformation/index.js +99 -0
  137. package/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
  138. package/node_modules/@babel/core/lib/transformation/normalize-file.js +127 -0
  139. package/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
  140. package/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  141. package/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
  142. package/node_modules/@babel/core/lib/transformation/plugin-pass.js +48 -0
  143. package/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
  144. package/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
  145. package/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
  146. package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1012 -0
  147. package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
  148. package/node_modules/@babel/core/package.json +82 -0
  149. package/node_modules/@babel/core/src/config/files/index-browser.ts +109 -0
  150. package/node_modules/@babel/core/src/config/files/index.ts +29 -0
  151. package/node_modules/@babel/core/src/config/resolve-targets-browser.ts +40 -0
  152. package/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
  153. package/node_modules/@babel/core/src/transform-file-browser.ts +31 -0
  154. package/node_modules/@babel/core/src/transform-file.ts +55 -0
  155. package/node_modules/@babel/generator/LICENSE +22 -0
  156. package/node_modules/@babel/generator/README.md +19 -0
  157. package/node_modules/@babel/generator/lib/buffer.js +307 -0
  158. package/node_modules/@babel/generator/lib/buffer.js.map +1 -0
  159. package/node_modules/@babel/generator/lib/generators/base.js +92 -0
  160. package/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
  161. package/node_modules/@babel/generator/lib/generators/classes.js +177 -0
  162. package/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
  163. package/node_modules/@babel/generator/lib/generators/expressions.js +309 -0
  164. package/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
  165. package/node_modules/@babel/generator/lib/generators/flow.js +668 -0
  166. package/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
  167. package/node_modules/@babel/generator/lib/generators/index.js +128 -0
  168. package/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
  169. package/node_modules/@babel/generator/lib/generators/jsx.js +123 -0
  170. package/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
  171. package/node_modules/@babel/generator/lib/generators/methods.js +173 -0
  172. package/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
  173. package/node_modules/@babel/generator/lib/generators/modules.js +254 -0
  174. package/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
  175. package/node_modules/@babel/generator/lib/generators/statements.js +277 -0
  176. package/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
  177. package/node_modules/@babel/generator/lib/generators/template-literals.js +30 -0
  178. package/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
  179. package/node_modules/@babel/generator/lib/generators/types.js +220 -0
  180. package/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
  181. package/node_modules/@babel/generator/lib/generators/typescript.js +694 -0
  182. package/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
  183. package/node_modules/@babel/generator/lib/index.js +94 -0
  184. package/node_modules/@babel/generator/lib/index.js.map +1 -0
  185. package/node_modules/@babel/generator/lib/node/index.js +78 -0
  186. package/node_modules/@babel/generator/lib/node/index.js.map +1 -0
  187. package/node_modules/@babel/generator/lib/node/parentheses.js +305 -0
  188. package/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
  189. package/node_modules/@babel/generator/lib/node/whitespace.js +146 -0
  190. package/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
  191. package/node_modules/@babel/generator/lib/printer.js +651 -0
  192. package/node_modules/@babel/generator/lib/printer.js.map +1 -0
  193. package/node_modules/@babel/generator/lib/source-map.js +85 -0
  194. package/node_modules/@babel/generator/lib/source-map.js.map +1 -0
  195. package/node_modules/@babel/generator/package.json +38 -0
  196. package/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
  197. package/node_modules/@babel/helper-compilation-targets/README.md +19 -0
  198. package/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
  199. package/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
  200. package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
  201. package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
  202. package/node_modules/@babel/helper-compilation-targets/lib/index.js +224 -0
  203. package/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
  204. package/node_modules/@babel/helper-compilation-targets/lib/options.js +25 -0
  205. package/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
  206. package/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
  207. package/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
  208. package/node_modules/@babel/helper-compilation-targets/lib/targets.js +30 -0
  209. package/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
  210. package/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
  211. package/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
  212. package/node_modules/@babel/helper-compilation-targets/package.json +44 -0
  213. package/node_modules/@babel/helper-environment-visitor/LICENSE +22 -0
  214. package/node_modules/@babel/helper-environment-visitor/README.md +19 -0
  215. package/node_modules/@babel/helper-environment-visitor/lib/index.js +56 -0
  216. package/node_modules/@babel/helper-environment-visitor/lib/index.js.map +1 -0
  217. package/node_modules/@babel/helper-environment-visitor/package.json +29 -0
  218. package/node_modules/@babel/helper-function-name/LICENSE +22 -0
  219. package/node_modules/@babel/helper-function-name/README.md +19 -0
  220. package/node_modules/@babel/helper-function-name/lib/index.js +170 -0
  221. package/node_modules/@babel/helper-function-name/lib/index.js.map +1 -0
  222. package/node_modules/@babel/helper-function-name/package.json +25 -0
  223. package/node_modules/@babel/helper-hoist-variables/LICENSE +22 -0
  224. package/node_modules/@babel/helper-hoist-variables/README.md +19 -0
  225. package/node_modules/@babel/helper-hoist-variables/lib/index.js +50 -0
  226. package/node_modules/@babel/helper-hoist-variables/lib/index.js.map +1 -0
  227. package/node_modules/@babel/helper-hoist-variables/package.json +28 -0
  228. package/node_modules/@babel/helper-module-imports/LICENSE +22 -0
  229. package/node_modules/@babel/helper-module-imports/README.md +19 -0
  230. package/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
  231. package/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
  232. package/node_modules/@babel/helper-module-imports/lib/import-injector.js +240 -0
  233. package/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
  234. package/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
  235. package/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
  236. package/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
  237. package/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
  238. package/node_modules/@babel/helper-module-imports/package.json +28 -0
  239. package/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
  240. package/node_modules/@babel/helper-module-transforms/README.md +19 -0
  241. package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +52 -0
  242. package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
  243. package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
  244. package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
  245. package/node_modules/@babel/helper-module-transforms/lib/index.js +375 -0
  246. package/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
  247. package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +354 -0
  248. package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
  249. package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +349 -0
  250. package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
  251. package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +24 -0
  252. package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
  253. package/node_modules/@babel/helper-module-transforms/package.json +35 -0
  254. package/node_modules/@babel/helper-simple-access/LICENSE +22 -0
  255. package/node_modules/@babel/helper-simple-access/README.md +19 -0
  256. package/node_modules/@babel/helper-simple-access/lib/index.js +91 -0
  257. package/node_modules/@babel/helper-simple-access/lib/index.js.map +1 -0
  258. package/node_modules/@babel/helper-simple-access/package.json +28 -0
  259. package/node_modules/@babel/helper-split-export-declaration/LICENSE +22 -0
  260. package/node_modules/@babel/helper-split-export-declaration/README.md +19 -0
  261. package/node_modules/@babel/helper-split-export-declaration/lib/index.js +59 -0
  262. package/node_modules/@babel/helper-split-export-declaration/lib/index.js.map +1 -0
  263. package/node_modules/@babel/helper-split-export-declaration/package.json +24 -0
  264. package/node_modules/@babel/helper-string-parser/LICENSE +22 -0
  265. package/node_modules/@babel/helper-string-parser/README.md +19 -0
  266. package/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
  267. package/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
  268. package/node_modules/@babel/helper-string-parser/package.json +28 -0
  269. package/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
  270. package/node_modules/@babel/helper-validator-identifier/README.md +19 -0
  271. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
  272. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
  273. package/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
  274. package/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
  275. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
  276. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
  277. package/node_modules/@babel/helper-validator-identifier/package.json +28 -0
  278. package/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +75 -0
  279. package/node_modules/@babel/helper-validator-option/LICENSE +22 -0
  280. package/node_modules/@babel/helper-validator-option/README.md +19 -0
  281. package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
  282. package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
  283. package/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
  284. package/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
  285. package/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
  286. package/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
  287. package/node_modules/@babel/helper-validator-option/package.json +24 -0
  288. package/node_modules/@babel/helpers/LICENSE +22 -0
  289. package/node_modules/@babel/helpers/README.md +19 -0
  290. package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js +92 -0
  291. package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js.map +1 -0
  292. package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
  293. package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
  294. package/node_modules/@babel/helpers/lib/helpers/applyDecs.js +448 -0
  295. package/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
  296. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
  297. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
  298. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +365 -0
  299. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
  300. package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +410 -0
  301. package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
  302. package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +388 -0
  303. package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
  304. package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
  305. package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
  306. package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +70 -0
  307. package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
  308. package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
  309. package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
  310. package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
  311. package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
  312. package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
  313. package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
  314. package/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
  315. package/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
  316. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
  317. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
  318. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js +18 -0
  319. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js.map +1 -0
  320. package/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
  321. package/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
  322. package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
  323. package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
  324. package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +501 -0
  325. package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
  326. package/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
  327. package/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
  328. package/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
  329. package/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
  330. package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +66 -0
  331. package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
  332. package/node_modules/@babel/helpers/lib/helpers-generated.js +41 -0
  333. package/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
  334. package/node_modules/@babel/helpers/lib/helpers.js +1784 -0
  335. package/node_modules/@babel/helpers/lib/helpers.js.map +1 -0
  336. package/node_modules/@babel/helpers/lib/index.js +242 -0
  337. package/node_modules/@babel/helpers/lib/index.js.map +1 -0
  338. package/node_modules/@babel/helpers/package.json +33 -0
  339. package/node_modules/@babel/helpers/scripts/generate-helpers.js +64 -0
  340. package/node_modules/@babel/helpers/scripts/generate-regenerator-runtime.js +63 -0
  341. package/node_modules/@babel/helpers/scripts/package.json +1 -0
  342. package/node_modules/@babel/highlight/LICENSE +22 -0
  343. package/node_modules/@babel/highlight/README.md +19 -0
  344. package/node_modules/@babel/highlight/lib/index.js +96 -0
  345. package/node_modules/@babel/highlight/lib/index.js.map +1 -0
  346. package/node_modules/@babel/highlight/package.json +30 -0
  347. package/node_modules/@babel/parser/CHANGELOG.md +1073 -0
  348. package/node_modules/@babel/parser/LICENSE +19 -0
  349. package/node_modules/@babel/parser/README.md +19 -0
  350. package/node_modules/@babel/parser/bin/babel-parser.js +15 -0
  351. package/node_modules/@babel/parser/index.cjs +5 -0
  352. package/node_modules/@babel/parser/lib/index.js +14429 -0
  353. package/node_modules/@babel/parser/lib/index.js.map +1 -0
  354. package/node_modules/@babel/parser/lib/options.js +40 -0
  355. package/node_modules/@babel/parser/lib/options.js.map +1 -0
  356. package/node_modules/@babel/parser/lib/parse-error/credentials.js +28 -0
  357. package/node_modules/@babel/parser/lib/parse-error/credentials.js.map +1 -0
  358. package/node_modules/@babel/parser/lib/parse-error/module-errors.js +20 -0
  359. package/node_modules/@babel/parser/lib/parse-error/module-errors.js.map +1 -0
  360. package/node_modules/@babel/parser/lib/parse-error/pipeline-operator-errors.js +32 -0
  361. package/node_modules/@babel/parser/lib/parse-error/pipeline-operator-errors.js.map +1 -0
  362. package/node_modules/@babel/parser/lib/parse-error/standard-errors.js +220 -0
  363. package/node_modules/@babel/parser/lib/parse-error/standard-errors.js.map +1 -0
  364. package/node_modules/@babel/parser/lib/parse-error/strict-mode-errors.js +22 -0
  365. package/node_modules/@babel/parser/lib/parse-error/strict-mode-errors.js.map +1 -0
  366. package/node_modules/@babel/parser/lib/parse-error/to-node-description.js +39 -0
  367. package/node_modules/@babel/parser/lib/parse-error/to-node-description.js.map +1 -0
  368. package/node_modules/@babel/parser/lib/parse-error.js +106 -0
  369. package/node_modules/@babel/parser/lib/parse-error.js.map +1 -0
  370. package/node_modules/@babel/parser/lib/parser/base.js +36 -0
  371. package/node_modules/@babel/parser/lib/parser/base.js.map +1 -0
  372. package/node_modules/@babel/parser/lib/parser/comments.js +190 -0
  373. package/node_modules/@babel/parser/lib/parser/comments.js.map +1 -0
  374. package/node_modules/@babel/parser/lib/parser/expression.js +1824 -0
  375. package/node_modules/@babel/parser/lib/parser/expression.js.map +1 -0
  376. package/node_modules/@babel/parser/lib/parser/index.js +43 -0
  377. package/node_modules/@babel/parser/lib/parser/index.js.map +1 -0
  378. package/node_modules/@babel/parser/lib/parser/lval.js +421 -0
  379. package/node_modules/@babel/parser/lib/parser/lval.js.map +1 -0
  380. package/node_modules/@babel/parser/lib/parser/node.js +127 -0
  381. package/node_modules/@babel/parser/lib/parser/node.js.map +1 -0
  382. package/node_modules/@babel/parser/lib/parser/statement.js +2032 -0
  383. package/node_modules/@babel/parser/lib/parser/statement.js.map +1 -0
  384. package/node_modules/@babel/parser/lib/parser/util.js +238 -0
  385. package/node_modules/@babel/parser/lib/parser/util.js.map +1 -0
  386. package/node_modules/@babel/parser/lib/plugin-utils.js +136 -0
  387. package/node_modules/@babel/parser/lib/plugin-utils.js.map +1 -0
  388. package/node_modules/@babel/parser/lib/plugins/estree.js +340 -0
  389. package/node_modules/@babel/parser/lib/plugins/estree.js.map +1 -0
  390. package/node_modules/@babel/parser/lib/plugins/flow/index.js +2474 -0
  391. package/node_modules/@babel/parser/lib/plugins/flow/index.js.map +1 -0
  392. package/node_modules/@babel/parser/lib/plugins/flow/scope.js +44 -0
  393. package/node_modules/@babel/parser/lib/plugins/flow/scope.js.map +1 -0
  394. package/node_modules/@babel/parser/lib/plugins/jsx/index.js +444 -0
  395. package/node_modules/@babel/parser/lib/plugins/jsx/index.js.map +1 -0
  396. package/node_modules/@babel/parser/lib/plugins/jsx/xhtml.js +266 -0
  397. package/node_modules/@babel/parser/lib/plugins/jsx/xhtml.js.map +1 -0
  398. package/node_modules/@babel/parser/lib/plugins/placeholders.js +197 -0
  399. package/node_modules/@babel/parser/lib/plugins/placeholders.js.map +1 -0
  400. package/node_modules/@babel/parser/lib/plugins/typescript/index.js +2656 -0
  401. package/node_modules/@babel/parser/lib/plugins/typescript/index.js.map +1 -0
  402. package/node_modules/@babel/parser/lib/plugins/typescript/scope.js +119 -0
  403. package/node_modules/@babel/parser/lib/plugins/typescript/scope.js.map +1 -0
  404. package/node_modules/@babel/parser/lib/plugins/v8intrinsic.js +31 -0
  405. package/node_modules/@babel/parser/lib/plugins/v8intrinsic.js.map +1 -0
  406. package/node_modules/@babel/parser/lib/tokenizer/context.js +27 -0
  407. package/node_modules/@babel/parser/lib/tokenizer/context.js.map +1 -0
  408. package/node_modules/@babel/parser/lib/tokenizer/index.js +1119 -0
  409. package/node_modules/@babel/parser/lib/tokenizer/index.js.map +1 -0
  410. package/node_modules/@babel/parser/lib/tokenizer/state.js +82 -0
  411. package/node_modules/@babel/parser/lib/tokenizer/state.js.map +1 -0
  412. package/node_modules/@babel/parser/lib/tokenizer/types.js +586 -0
  413. package/node_modules/@babel/parser/lib/tokenizer/types.js.map +1 -0
  414. package/node_modules/@babel/parser/lib/util/class-scope.js +92 -0
  415. package/node_modules/@babel/parser/lib/util/class-scope.js.map +1 -0
  416. package/node_modules/@babel/parser/lib/util/expression-scope.js +147 -0
  417. package/node_modules/@babel/parser/lib/util/expression-scope.js.map +1 -0
  418. package/node_modules/@babel/parser/lib/util/identifier.js +62 -0
  419. package/node_modules/@babel/parser/lib/util/identifier.js.map +1 -0
  420. package/node_modules/@babel/parser/lib/util/location.js +39 -0
  421. package/node_modules/@babel/parser/lib/util/location.js.map +1 -0
  422. package/node_modules/@babel/parser/lib/util/production-parameter.js +49 -0
  423. package/node_modules/@babel/parser/lib/util/production-parameter.js.map +1 -0
  424. package/node_modules/@babel/parser/lib/util/scope.js +161 -0
  425. package/node_modules/@babel/parser/lib/util/scope.js.map +1 -0
  426. package/node_modules/@babel/parser/lib/util/scopeflags.js +106 -0
  427. package/node_modules/@babel/parser/lib/util/scopeflags.js.map +1 -0
  428. package/node_modules/@babel/parser/lib/util/whitespace.js +59 -0
  429. package/node_modules/@babel/parser/lib/util/whitespace.js.map +1 -0
  430. package/node_modules/@babel/parser/package.json +46 -0
  431. package/node_modules/@babel/parser/typings/babel-parser.d.ts +241 -0
  432. package/node_modules/@babel/template/LICENSE +22 -0
  433. package/node_modules/@babel/template/README.md +19 -0
  434. package/node_modules/@babel/template/lib/builder.js +69 -0
  435. package/node_modules/@babel/template/lib/builder.js.map +1 -0
  436. package/node_modules/@babel/template/lib/formatters.js +66 -0
  437. package/node_modules/@babel/template/lib/formatters.js.map +1 -0
  438. package/node_modules/@babel/template/lib/index.js +29 -0
  439. package/node_modules/@babel/template/lib/index.js.map +1 -0
  440. package/node_modules/@babel/template/lib/literal.js +69 -0
  441. package/node_modules/@babel/template/lib/literal.js.map +1 -0
  442. package/node_modules/@babel/template/lib/options.js +73 -0
  443. package/node_modules/@babel/template/lib/options.js.map +1 -0
  444. package/node_modules/@babel/template/lib/parse.js +160 -0
  445. package/node_modules/@babel/template/lib/parse.js.map +1 -0
  446. package/node_modules/@babel/template/lib/populate.js +122 -0
  447. package/node_modules/@babel/template/lib/populate.js.map +1 -0
  448. package/node_modules/@babel/template/lib/string.js +20 -0
  449. package/node_modules/@babel/template/lib/string.js.map +1 -0
  450. package/node_modules/@babel/template/package.json +27 -0
  451. package/node_modules/@babel/traverse/LICENSE +22 -0
  452. package/node_modules/@babel/traverse/README.md +19 -0
  453. package/node_modules/@babel/traverse/lib/cache.js +25 -0
  454. package/node_modules/@babel/traverse/lib/cache.js.map +1 -0
  455. package/node_modules/@babel/traverse/lib/context.js +115 -0
  456. package/node_modules/@babel/traverse/lib/context.js.map +1 -0
  457. package/node_modules/@babel/traverse/lib/hub.js +19 -0
  458. package/node_modules/@babel/traverse/lib/hub.js.map +1 -0
  459. package/node_modules/@babel/traverse/lib/index.js +93 -0
  460. package/node_modules/@babel/traverse/lib/index.js.map +1 -0
  461. package/node_modules/@babel/traverse/lib/path/ancestry.js +141 -0
  462. package/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
  463. package/node_modules/@babel/traverse/lib/path/comments.js +54 -0
  464. package/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
  465. package/node_modules/@babel/traverse/lib/path/context.js +222 -0
  466. package/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
  467. package/node_modules/@babel/traverse/lib/path/conversion.js +473 -0
  468. package/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
  469. package/node_modules/@babel/traverse/lib/path/evaluation.js +340 -0
  470. package/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
  471. package/node_modules/@babel/traverse/lib/path/family.js +336 -0
  472. package/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
  473. package/node_modules/@babel/traverse/lib/path/index.js +197 -0
  474. package/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
  475. package/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
  476. package/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
  477. package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
  478. package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
  479. package/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
  480. package/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
  481. package/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
  482. package/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
  483. package/node_modules/@babel/traverse/lib/path/introspection.js +385 -0
  484. package/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
  485. package/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
  486. package/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
  487. package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +38 -0
  488. package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
  489. package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +161 -0
  490. package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
  491. package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +44 -0
  492. package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
  493. package/node_modules/@babel/traverse/lib/path/modification.js +224 -0
  494. package/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
  495. package/node_modules/@babel/traverse/lib/path/removal.js +58 -0
  496. package/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
  497. package/node_modules/@babel/traverse/lib/path/replacement.js +205 -0
  498. package/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
  499. package/node_modules/@babel/traverse/lib/scope/binding.js +85 -0
  500. package/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
  501. package/node_modules/@babel/traverse/lib/scope/index.js +887 -0
  502. package/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
  503. package/node_modules/@babel/traverse/lib/scope/lib/renamer.js +113 -0
  504. package/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
  505. package/node_modules/@babel/traverse/lib/traverse-node.js +25 -0
  506. package/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
  507. package/node_modules/@babel/traverse/lib/types.js +3 -0
  508. package/node_modules/@babel/traverse/lib/types.js.map +1 -0
  509. package/node_modules/@babel/traverse/lib/visitors.js +218 -0
  510. package/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
  511. package/node_modules/@babel/traverse/package.json +37 -0
  512. package/node_modules/@babel/types/LICENSE +22 -0
  513. package/node_modules/@babel/types/README.md +19 -0
  514. package/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
  515. package/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
  516. package/node_modules/@babel/types/lib/asserts/generated/index.js +1231 -0
  517. package/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
  518. package/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
  519. package/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
  520. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
  521. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
  522. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +32 -0
  523. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
  524. package/node_modules/@babel/types/lib/builders/generated/index.js +1985 -0
  525. package/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
  526. package/node_modules/@babel/types/lib/builders/generated/uppercase.js +1526 -0
  527. package/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
  528. package/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
  529. package/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
  530. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
  531. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
  532. package/node_modules/@babel/types/lib/builders/validateNode.js +17 -0
  533. package/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
  534. package/node_modules/@babel/types/lib/clone/clone.js +12 -0
  535. package/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
  536. package/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
  537. package/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
  538. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
  539. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
  540. package/node_modules/@babel/types/lib/clone/cloneNode.js +100 -0
  541. package/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
  542. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
  543. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
  544. package/node_modules/@babel/types/lib/comments/addComment.js +15 -0
  545. package/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
  546. package/node_modules/@babel/types/lib/comments/addComments.js +22 -0
  547. package/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
  548. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
  549. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
  550. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
  551. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
  552. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
  553. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
  554. package/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
  555. package/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
  556. package/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
  557. package/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
  558. package/node_modules/@babel/types/lib/constants/generated/index.js +109 -0
  559. package/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
  560. package/node_modules/@babel/types/lib/constants/index.js +51 -0
  561. package/node_modules/@babel/types/lib/constants/index.js.map +1 -0
  562. package/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
  563. package/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
  564. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +64 -0
  565. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
  566. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
  567. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
  568. package/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
  569. package/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
  570. package/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
  571. package/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
  572. package/node_modules/@babel/types/lib/converters/toExpression.js +28 -0
  573. package/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
  574. package/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
  575. package/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
  576. package/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
  577. package/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
  578. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js +19 -0
  579. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
  580. package/node_modules/@babel/types/lib/converters/toStatement.js +40 -0
  581. package/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
  582. package/node_modules/@babel/types/lib/converters/valueToNode.js +77 -0
  583. package/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
  584. package/node_modules/@babel/types/lib/definitions/core.js +1663 -0
  585. package/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
  586. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +12 -0
  587. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
  588. package/node_modules/@babel/types/lib/definitions/experimental.js +134 -0
  589. package/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
  590. package/node_modules/@babel/types/lib/definitions/flow.js +488 -0
  591. package/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
  592. package/node_modules/@babel/types/lib/definitions/index.js +97 -0
  593. package/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
  594. package/node_modules/@babel/types/lib/definitions/jsx.js +158 -0
  595. package/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
  596. package/node_modules/@babel/types/lib/definitions/misc.js +32 -0
  597. package/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
  598. package/node_modules/@babel/types/lib/definitions/placeholders.js +30 -0
  599. package/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
  600. package/node_modules/@babel/types/lib/definitions/typescript.js +490 -0
  601. package/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
  602. package/node_modules/@babel/types/lib/definitions/utils.js +280 -0
  603. package/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
  604. package/node_modules/@babel/types/lib/index-legacy.d.ts +2748 -0
  605. package/node_modules/@babel/types/lib/index.d.ts +3266 -0
  606. package/node_modules/@babel/types/lib/index.js +570 -0
  607. package/node_modules/@babel/types/lib/index.js.flow +2602 -0
  608. package/node_modules/@babel/types/lib/index.js.map +1 -0
  609. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
  610. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
  611. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
  612. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
  613. package/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
  614. package/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
  615. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
  616. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
  617. package/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
  618. package/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
  619. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
  620. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
  621. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +65 -0
  622. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
  623. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +93 -0
  624. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
  625. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +14 -0
  626. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
  627. package/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
  628. package/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
  629. package/node_modules/@babel/types/lib/traverse/traverseFast.js +26 -0
  630. package/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
  631. package/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
  632. package/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
  633. package/node_modules/@babel/types/lib/utils/inherit.js +13 -0
  634. package/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
  635. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
  636. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
  637. package/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
  638. package/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
  639. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
  640. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
  641. package/node_modules/@babel/types/lib/validators/generated/index.js +2744 -0
  642. package/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
  643. package/node_modules/@babel/types/lib/validators/is.js +27 -0
  644. package/node_modules/@babel/types/lib/validators/is.js.map +1 -0
  645. package/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
  646. package/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
  647. package/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
  648. package/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
  649. package/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
  650. package/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
  651. package/node_modules/@babel/types/lib/validators/isLet.js +13 -0
  652. package/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
  653. package/node_modules/@babel/types/lib/validators/isNode.js +12 -0
  654. package/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
  655. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
  656. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
  657. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js +19 -0
  658. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
  659. package/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
  660. package/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
  661. package/node_modules/@babel/types/lib/validators/isScope.js +18 -0
  662. package/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
  663. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
  664. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
  665. package/node_modules/@babel/types/lib/validators/isType.js +21 -0
  666. package/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
  667. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
  668. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
  669. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
  670. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
  671. package/node_modules/@babel/types/lib/validators/isVar.js +15 -0
  672. package/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
  673. package/node_modules/@babel/types/lib/validators/matchesPattern.js +36 -0
  674. package/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
  675. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
  676. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
  677. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js +12 -0
  678. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
  679. package/node_modules/@babel/types/lib/validators/validate.js +30 -0
  680. package/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
  681. package/node_modules/@babel/types/package.json +41 -0
  682. package/node_modules/@istanbuljs/load-nyc-config/CHANGELOG.md +41 -0
  683. package/node_modules/@istanbuljs/load-nyc-config/LICENSE +16 -0
  684. package/node_modules/@istanbuljs/load-nyc-config/README.md +64 -0
  685. package/node_modules/@istanbuljs/load-nyc-config/index.js +166 -0
  686. package/node_modules/@istanbuljs/load-nyc-config/load-esm.js +12 -0
  687. package/node_modules/@istanbuljs/load-nyc-config/package.json +49 -0
  688. package/node_modules/@istanbuljs/schema/CHANGELOG.md +44 -0
  689. package/node_modules/@istanbuljs/schema/LICENSE +21 -0
  690. package/node_modules/@istanbuljs/schema/README.md +30 -0
  691. package/node_modules/@istanbuljs/schema/default-exclude.js +22 -0
  692. package/node_modules/@istanbuljs/schema/default-extension.js +10 -0
  693. package/node_modules/@istanbuljs/schema/index.js +466 -0
  694. package/node_modules/@istanbuljs/schema/package.json +30 -0
  695. package/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
  696. package/node_modules/@jridgewell/gen-mapping/README.md +227 -0
  697. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +230 -0
  698. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +1 -0
  699. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +236 -0
  700. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +1 -0
  701. package/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +90 -0
  702. package/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
  703. package/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +35 -0
  704. package/node_modules/@jridgewell/gen-mapping/package.json +77 -0
  705. package/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
  706. package/node_modules/@jridgewell/resolve-uri/README.md +40 -0
  707. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +242 -0
  708. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
  709. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +250 -0
  710. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
  711. package/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
  712. package/node_modules/@jridgewell/resolve-uri/package.json +69 -0
  713. package/node_modules/@jridgewell/set-array/LICENSE +19 -0
  714. package/node_modules/@jridgewell/set-array/README.md +37 -0
  715. package/node_modules/@jridgewell/set-array/dist/set-array.mjs +48 -0
  716. package/node_modules/@jridgewell/set-array/dist/set-array.mjs.map +1 -0
  717. package/node_modules/@jridgewell/set-array/dist/set-array.umd.js +58 -0
  718. package/node_modules/@jridgewell/set-array/dist/set-array.umd.js.map +1 -0
  719. package/node_modules/@jridgewell/set-array/dist/types/set-array.d.ts +26 -0
  720. package/node_modules/@jridgewell/set-array/package.json +66 -0
  721. package/node_modules/@jridgewell/set-array/src/set-array.ts +55 -0
  722. package/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
  723. package/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
  724. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
  725. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
  726. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
  727. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
  728. package/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
  729. package/node_modules/@jridgewell/sourcemap-codec/package.json +74 -0
  730. package/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
  731. package/node_modules/@jridgewell/trace-mapping/README.md +252 -0
  732. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +552 -0
  733. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
  734. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +566 -0
  735. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
  736. package/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
  737. package/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
  738. package/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
  739. package/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
  740. package/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
  741. package/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
  742. package/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
  743. package/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +74 -0
  744. package/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +92 -0
  745. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
  746. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
  747. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
  748. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
  749. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
  750. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
  751. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
  752. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/package.json +75 -0
  753. package/node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec/src/sourcemap-codec.ts +198 -0
  754. package/node_modules/@jridgewell/trace-mapping/package.json +75 -0
  755. package/node_modules/@protobufjs/aspromise/LICENSE +26 -0
  756. package/node_modules/@protobufjs/aspromise/README.md +13 -0
  757. package/node_modules/@protobufjs/aspromise/index.d.ts +13 -0
  758. package/node_modules/@protobufjs/aspromise/index.js +52 -0
  759. package/node_modules/@protobufjs/aspromise/package.json +21 -0
  760. package/node_modules/@protobufjs/aspromise/tests/index.js +130 -0
  761. package/node_modules/@protobufjs/base64/LICENSE +26 -0
  762. package/node_modules/@protobufjs/base64/README.md +19 -0
  763. package/node_modules/@protobufjs/base64/index.d.ts +32 -0
  764. package/node_modules/@protobufjs/base64/index.js +139 -0
  765. package/node_modules/@protobufjs/base64/package.json +21 -0
  766. package/node_modules/@protobufjs/base64/tests/index.js +46 -0
  767. package/node_modules/@protobufjs/codegen/LICENSE +26 -0
  768. package/node_modules/@protobufjs/codegen/README.md +49 -0
  769. package/node_modules/@protobufjs/codegen/index.d.ts +31 -0
  770. package/node_modules/@protobufjs/codegen/index.js +99 -0
  771. package/node_modules/@protobufjs/codegen/package.json +13 -0
  772. package/node_modules/@protobufjs/codegen/tests/index.js +13 -0
  773. package/node_modules/@protobufjs/eventemitter/LICENSE +26 -0
  774. package/node_modules/@protobufjs/eventemitter/README.md +22 -0
  775. package/node_modules/@protobufjs/eventemitter/index.d.ts +43 -0
  776. package/node_modules/@protobufjs/eventemitter/index.js +76 -0
  777. package/node_modules/@protobufjs/eventemitter/package.json +21 -0
  778. package/node_modules/@protobufjs/eventemitter/tests/index.js +47 -0
  779. package/node_modules/@protobufjs/fetch/LICENSE +26 -0
  780. package/node_modules/@protobufjs/fetch/README.md +13 -0
  781. package/node_modules/@protobufjs/fetch/index.d.ts +56 -0
  782. package/node_modules/@protobufjs/fetch/index.js +115 -0
  783. package/node_modules/@protobufjs/fetch/package.json +25 -0
  784. package/node_modules/@protobufjs/fetch/tests/index.js +16 -0
  785. package/node_modules/@protobufjs/float/LICENSE +26 -0
  786. package/node_modules/@protobufjs/float/README.md +102 -0
  787. package/node_modules/@protobufjs/float/bench/index.js +87 -0
  788. package/node_modules/@protobufjs/float/bench/suite.js +46 -0
  789. package/node_modules/@protobufjs/float/index.d.ts +83 -0
  790. package/node_modules/@protobufjs/float/index.js +335 -0
  791. package/node_modules/@protobufjs/float/package.json +26 -0
  792. package/node_modules/@protobufjs/float/tests/index.js +100 -0
  793. package/node_modules/@protobufjs/inquire/.npmignore +3 -0
  794. package/node_modules/@protobufjs/inquire/LICENSE +26 -0
  795. package/node_modules/@protobufjs/inquire/README.md +13 -0
  796. package/node_modules/@protobufjs/inquire/index.d.ts +9 -0
  797. package/node_modules/@protobufjs/inquire/index.js +17 -0
  798. package/node_modules/@protobufjs/inquire/package.json +21 -0
  799. package/node_modules/@protobufjs/inquire/tests/data/array.js +1 -0
  800. package/node_modules/@protobufjs/inquire/tests/data/emptyArray.js +1 -0
  801. package/node_modules/@protobufjs/inquire/tests/data/emptyObject.js +1 -0
  802. package/node_modules/@protobufjs/inquire/tests/data/object.js +1 -0
  803. package/node_modules/@protobufjs/inquire/tests/index.js +20 -0
  804. package/node_modules/@protobufjs/path/LICENSE +26 -0
  805. package/node_modules/@protobufjs/path/README.md +19 -0
  806. package/node_modules/@protobufjs/path/index.d.ts +22 -0
  807. package/node_modules/@protobufjs/path/index.js +65 -0
  808. package/node_modules/@protobufjs/path/package.json +21 -0
  809. package/node_modules/@protobufjs/path/tests/index.js +60 -0
  810. package/node_modules/@protobufjs/pool/.npmignore +3 -0
  811. package/node_modules/@protobufjs/pool/LICENSE +26 -0
  812. package/node_modules/@protobufjs/pool/README.md +13 -0
  813. package/node_modules/@protobufjs/pool/index.d.ts +32 -0
  814. package/node_modules/@protobufjs/pool/index.js +48 -0
  815. package/node_modules/@protobufjs/pool/package.json +21 -0
  816. package/node_modules/@protobufjs/pool/tests/index.js +33 -0
  817. package/node_modules/@protobufjs/utf8/.npmignore +3 -0
  818. package/node_modules/@protobufjs/utf8/LICENSE +26 -0
  819. package/node_modules/@protobufjs/utf8/README.md +20 -0
  820. package/node_modules/@protobufjs/utf8/index.d.ts +24 -0
  821. package/node_modules/@protobufjs/utf8/index.js +105 -0
  822. package/node_modules/@protobufjs/utf8/package.json +21 -0
  823. package/node_modules/@protobufjs/utf8/tests/data/utf8.txt +216 -0
  824. package/node_modules/@protobufjs/utf8/tests/index.js +57 -0
  825. package/node_modules/@turf/along/package.json +41 -69
  826. package/node_modules/@turf/angle/package.json +44 -75
  827. package/node_modules/@turf/area/package.json +38 -68
  828. package/node_modules/@turf/bbox/package.json +37 -81
  829. package/node_modules/@turf/bbox-clip/package.json +44 -81
  830. package/node_modules/@turf/bbox-polygon/package.json +36 -66
  831. package/node_modules/@turf/bearing/package.json +36 -70
  832. package/node_modules/@turf/bezier-spline/package.json +39 -67
  833. package/node_modules/@turf/boolean-clockwise/package.json +42 -83
  834. package/node_modules/@turf/boolean-contains/package.json +46 -80
  835. package/node_modules/@turf/boolean-crosses/package.json +45 -79
  836. package/node_modules/@turf/boolean-disjoint/package.json +44 -79
  837. package/node_modules/@turf/boolean-equal/package.json +47 -84
  838. package/node_modules/@turf/boolean-intersects/package.json +42 -77
  839. package/node_modules/@turf/boolean-overlap/package.json +48 -82
  840. package/node_modules/@turf/boolean-parallel/package.json +42 -73
  841. package/node_modules/@turf/boolean-point-in-polygon/package.json +37 -77
  842. package/node_modules/@turf/boolean-point-on-line/package.json +39 -73
  843. package/node_modules/@turf/boolean-within/package.json +46 -79
  844. package/node_modules/@turf/buffer/package.json +47 -84
  845. package/node_modules/@turf/center/package.json +42 -73
  846. package/node_modules/@turf/center-mean/package.json +45 -78
  847. package/node_modules/@turf/center-median/package.json +45 -76
  848. package/node_modules/@turf/center-of-mass/package.json +40 -68
  849. package/node_modules/@turf/centroid/package.json +40 -74
  850. package/node_modules/@turf/circle/package.json +41 -71
  851. package/node_modules/@turf/clean-coords/package.json +40 -75
  852. package/node_modules/@turf/clone/package.json +36 -81
  853. package/node_modules/@turf/clusters/package.json +39 -70
  854. package/node_modules/@turf/clusters-dbscan/package.json +51 -88
  855. package/node_modules/@turf/clusters-kmeans/package.json +53 -90
  856. package/node_modules/@turf/collect/package.json +42 -73
  857. package/node_modules/@turf/combine/package.json +37 -65
  858. package/node_modules/@turf/concave/package.json +56 -111
  859. package/node_modules/@turf/convex/package.json +39 -68
  860. package/node_modules/@turf/destination/package.json +41 -75
  861. package/node_modules/@turf/difference/package.json +35 -63
  862. package/node_modules/@turf/dissolve/package.json +38 -66
  863. package/node_modules/@turf/distance/package.json +38 -83
  864. package/node_modules/@turf/distance-weight/package.json +40 -72
  865. package/node_modules/@turf/ellipse/package.json +43 -75
  866. package/node_modules/@turf/envelope/package.json +36 -65
  867. package/node_modules/@turf/explode/package.json +36 -67
  868. package/node_modules/@turf/flatten/package.json +39 -73
  869. package/node_modules/@turf/flip/package.json +36 -64
  870. package/node_modules/@turf/great-circle/package.json +41 -78
  871. package/node_modules/@turf/helpers/package.json +38 -184
  872. package/node_modules/@turf/hex-grid/package.json +50 -97
  873. package/node_modules/@turf/interpolate/package.json +47 -78
  874. package/node_modules/@turf/intersect/package.json +39 -69
  875. package/node_modules/@turf/invariant/package.json +36 -126
  876. package/node_modules/@turf/isobands/package.json +52 -83
  877. package/node_modules/@turf/isolines/package.json +48 -79
  878. package/node_modules/@turf/kinks/package.json +35 -63
  879. package/node_modules/@turf/length/package.json +43 -78
  880. package/node_modules/@turf/line-arc/package.json +36 -65
  881. package/node_modules/@turf/line-chunk/package.json +44 -84
  882. package/node_modules/@turf/line-intersect/package.json +46 -85
  883. package/node_modules/@turf/line-offset/package.json +41 -78
  884. package/node_modules/@turf/line-overlap/package.json +48 -80
  885. package/node_modules/@turf/line-segment/package.json +38 -70
  886. package/node_modules/@turf/line-slice/package.json +39 -67
  887. package/node_modules/@turf/line-slice-along/package.json +36 -65
  888. package/node_modules/@turf/line-split/package.json +46 -77
  889. package/node_modules/@turf/line-to-polygon/package.json +43 -74
  890. package/node_modules/@turf/mask/package.json +35 -63
  891. package/node_modules/@turf/meta/package.json +39 -128
  892. package/node_modules/@turf/midpoint/package.json +36 -64
  893. package/node_modules/@turf/moran-index/package.json +39 -70
  894. package/node_modules/@turf/nearest-point/package.json +39 -69
  895. package/node_modules/@turf/nearest-point-on-line/package.json +40 -71
  896. package/node_modules/@turf/nearest-point-to-line/package.json +47 -78
  897. package/node_modules/@turf/planepoint/package.json +34 -62
  898. package/node_modules/@turf/point-grid/package.json +45 -80
  899. package/node_modules/@turf/point-on-feature/package.json +40 -68
  900. package/node_modules/@turf/point-to-line-distance/package.json +46 -78
  901. package/node_modules/@turf/points-within-polygon/package.json +35 -64
  902. package/node_modules/@turf/polygon-smooth/package.json +37 -68
  903. package/node_modules/@turf/polygon-tangents/package.json +43 -77
  904. package/node_modules/@turf/polygon-to-line/package.json +39 -69
  905. package/node_modules/@turf/polygonize/package.json +43 -77
  906. package/node_modules/@turf/projection/package.json +44 -77
  907. package/node_modules/@turf/random/package.json +34 -62
  908. package/node_modules/@turf/rectangle-grid/package.json +43 -77
  909. package/node_modules/@turf/rewind/package.json +43 -83
  910. package/node_modules/@turf/rhumb-bearing/package.json +43 -85
  911. package/node_modules/@turf/rhumb-destination/package.json +44 -85
  912. package/node_modules/@turf/rhumb-distance/package.json +44 -84
  913. package/node_modules/@turf/sample/package.json +32 -60
  914. package/node_modules/@turf/sector/package.json +37 -65
  915. package/node_modules/@turf/shortest-path/package.json +45 -79
  916. package/node_modules/@turf/simplify/package.json +43 -77
  917. package/node_modules/@turf/square/package.json +33 -62
  918. package/node_modules/@turf/square-grid/package.json +40 -69
  919. package/node_modules/@turf/standard-deviational-ellipse/package.json +43 -74
  920. package/node_modules/@turf/tag/package.json +38 -66
  921. package/node_modules/@turf/tesselate/package.json +40 -80
  922. package/node_modules/@turf/tin/package.json +34 -63
  923. package/node_modules/@turf/transform-rotate/package.json +45 -80
  924. package/node_modules/@turf/transform-scale/package.json +51 -86
  925. package/node_modules/@turf/transform-translate/package.json +44 -78
  926. package/node_modules/@turf/triangle-grid/package.json +42 -71
  927. package/node_modules/@turf/truncate/package.json +40 -72
  928. package/node_modules/@turf/turf/package.json +74 -102
  929. package/node_modules/@turf/union/package.json +39 -67
  930. package/node_modules/@turf/unkink-polygon/package.json +40 -68
  931. package/node_modules/@turf/voronoi/package.json +43 -83
  932. package/node_modules/@types/geojson/package.json +42 -66
  933. package/node_modules/@types/node/LICENSE +21 -0
  934. package/node_modules/@types/node/README.md +16 -0
  935. package/node_modules/@types/node/assert/strict.d.ts +8 -0
  936. package/node_modules/@types/node/assert.d.ts +972 -0
  937. package/node_modules/@types/node/async_hooks.d.ts +530 -0
  938. package/node_modules/@types/node/buffer.d.ts +2354 -0
  939. package/node_modules/@types/node/child_process.d.ts +1395 -0
  940. package/node_modules/@types/node/cluster.d.ts +414 -0
  941. package/node_modules/@types/node/console.d.ts +412 -0
  942. package/node_modules/@types/node/constants.d.ts +18 -0
  943. package/node_modules/@types/node/crypto.d.ts +3978 -0
  944. package/node_modules/@types/node/dgram.d.ts +545 -0
  945. package/node_modules/@types/node/diagnostics_channel.d.ts +191 -0
  946. package/node_modules/@types/node/dns/promises.d.ts +414 -0
  947. package/node_modules/@types/node/dns.d.ts +668 -0
  948. package/node_modules/@types/node/dom-events.d.ts +126 -0
  949. package/node_modules/@types/node/domain.d.ts +170 -0
  950. package/node_modules/@types/node/events.d.ts +753 -0
  951. package/node_modules/@types/node/fs/promises.d.ts +1197 -0
  952. package/node_modules/@types/node/fs.d.ts +4044 -0
  953. package/node_modules/@types/node/globals.d.ts +303 -0
  954. package/node_modules/@types/node/globals.global.d.ts +1 -0
  955. package/node_modules/@types/node/http.d.ts +1724 -0
  956. package/node_modules/@types/node/http2.d.ts +2129 -0
  957. package/node_modules/@types/node/https.d.ts +441 -0
  958. package/node_modules/@types/node/index.d.ts +133 -0
  959. package/node_modules/@types/node/inspector.d.ts +2748 -0
  960. package/node_modules/@types/node/module.d.ts +129 -0
  961. package/node_modules/@types/node/net.d.ts +888 -0
  962. package/node_modules/@types/node/os.d.ts +477 -0
  963. package/node_modules/@types/node/package.json +232 -0
  964. package/node_modules/@types/node/path.d.ts +191 -0
  965. package/node_modules/@types/node/perf_hooks.d.ts +638 -0
  966. package/node_modules/@types/node/process.d.ts +1494 -0
  967. package/node_modules/@types/node/punycode.d.ts +117 -0
  968. package/node_modules/@types/node/querystring.d.ts +131 -0
  969. package/node_modules/@types/node/readline/promises.d.ts +145 -0
  970. package/node_modules/@types/node/readline.d.ts +526 -0
  971. package/node_modules/@types/node/repl.d.ts +424 -0
  972. package/node_modules/@types/node/stream/consumers.d.ts +12 -0
  973. package/node_modules/@types/node/stream/promises.d.ts +42 -0
  974. package/node_modules/@types/node/stream/web.d.ts +330 -0
  975. package/node_modules/@types/node/stream.d.ts +1425 -0
  976. package/node_modules/@types/node/string_decoder.d.ts +67 -0
  977. package/node_modules/@types/node/test.d.ts +1432 -0
  978. package/node_modules/@types/node/timers/promises.d.ts +93 -0
  979. package/node_modules/@types/node/timers.d.ts +215 -0
  980. package/node_modules/@types/node/tls.d.ts +1130 -0
  981. package/node_modules/@types/node/trace_events.d.ts +182 -0
  982. package/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
  983. package/node_modules/@types/node/ts4.8/assert.d.ts +972 -0
  984. package/node_modules/@types/node/ts4.8/async_hooks.d.ts +530 -0
  985. package/node_modules/@types/node/ts4.8/buffer.d.ts +2354 -0
  986. package/node_modules/@types/node/ts4.8/child_process.d.ts +1395 -0
  987. package/node_modules/@types/node/ts4.8/cluster.d.ts +414 -0
  988. package/node_modules/@types/node/ts4.8/console.d.ts +412 -0
  989. package/node_modules/@types/node/ts4.8/constants.d.ts +18 -0
  990. package/node_modules/@types/node/ts4.8/crypto.d.ts +3977 -0
  991. package/node_modules/@types/node/ts4.8/dgram.d.ts +545 -0
  992. package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +191 -0
  993. package/node_modules/@types/node/ts4.8/dns/promises.d.ts +414 -0
  994. package/node_modules/@types/node/ts4.8/dns.d.ts +668 -0
  995. package/node_modules/@types/node/ts4.8/dom-events.d.ts +126 -0
  996. package/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
  997. package/node_modules/@types/node/ts4.8/events.d.ts +753 -0
  998. package/node_modules/@types/node/ts4.8/fs/promises.d.ts +1197 -0
  999. package/node_modules/@types/node/ts4.8/fs.d.ts +4044 -0
  1000. package/node_modules/@types/node/ts4.8/globals.d.ts +303 -0
  1001. package/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
  1002. package/node_modules/@types/node/ts4.8/http.d.ts +1724 -0
  1003. package/node_modules/@types/node/ts4.8/http2.d.ts +2129 -0
  1004. package/node_modules/@types/node/ts4.8/https.d.ts +441 -0
  1005. package/node_modules/@types/node/ts4.8/index.d.ts +88 -0
  1006. package/node_modules/@types/node/ts4.8/inspector.d.ts +2748 -0
  1007. package/node_modules/@types/node/ts4.8/module.d.ts +129 -0
  1008. package/node_modules/@types/node/ts4.8/net.d.ts +888 -0
  1009. package/node_modules/@types/node/ts4.8/os.d.ts +477 -0
  1010. package/node_modules/@types/node/ts4.8/path.d.ts +191 -0
  1011. package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +638 -0
  1012. package/node_modules/@types/node/ts4.8/process.d.ts +1494 -0
  1013. package/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
  1014. package/node_modules/@types/node/ts4.8/querystring.d.ts +131 -0
  1015. package/node_modules/@types/node/ts4.8/readline/promises.d.ts +145 -0
  1016. package/node_modules/@types/node/ts4.8/readline.d.ts +526 -0
  1017. package/node_modules/@types/node/ts4.8/repl.d.ts +424 -0
  1018. package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
  1019. package/node_modules/@types/node/ts4.8/stream/promises.d.ts +42 -0
  1020. package/node_modules/@types/node/ts4.8/stream/web.d.ts +330 -0
  1021. package/node_modules/@types/node/ts4.8/stream.d.ts +1396 -0
  1022. package/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
  1023. package/node_modules/@types/node/ts4.8/test.d.ts +1414 -0
  1024. package/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
  1025. package/node_modules/@types/node/ts4.8/timers.d.ts +215 -0
  1026. package/node_modules/@types/node/ts4.8/tls.d.ts +1130 -0
  1027. package/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
  1028. package/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
  1029. package/node_modules/@types/node/ts4.8/url.d.ts +915 -0
  1030. package/node_modules/@types/node/ts4.8/util.d.ts +2116 -0
  1031. package/node_modules/@types/node/ts4.8/v8.d.ts +635 -0
  1032. package/node_modules/@types/node/ts4.8/vm.d.ts +894 -0
  1033. package/node_modules/@types/node/ts4.8/wasi.d.ts +152 -0
  1034. package/node_modules/@types/node/ts4.8/worker_threads.d.ts +693 -0
  1035. package/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
  1036. package/node_modules/@types/node/tty.d.ts +208 -0
  1037. package/node_modules/@types/node/url.d.ts +915 -0
  1038. package/node_modules/@types/node/util.d.ts +2116 -0
  1039. package/node_modules/@types/node/v8.d.ts +635 -0
  1040. package/node_modules/@types/node/vm.d.ts +894 -0
  1041. package/node_modules/@types/node/wasi.d.ts +152 -0
  1042. package/node_modules/@types/node/worker_threads.d.ts +693 -0
  1043. package/node_modules/@types/node/zlib.d.ts +517 -0
  1044. package/node_modules/adm-zip/LICENSE +21 -21
  1045. package/node_modules/adm-zip/adm-zip.js +25 -22
  1046. package/node_modules/adm-zip/headers/mainHeader.js +2 -1
  1047. package/node_modules/adm-zip/package.json +28 -57
  1048. package/node_modules/adm-zip/util/utils.js +1 -0
  1049. package/node_modules/aggregate-error/index.d.ts +51 -0
  1050. package/node_modules/aggregate-error/index.js +47 -0
  1051. package/node_modules/aggregate-error/license +9 -0
  1052. package/node_modules/aggregate-error/package.json +41 -0
  1053. package/node_modules/aggregate-error/readme.md +61 -0
  1054. package/node_modules/ansi-regex/index.d.ts +37 -0
  1055. package/node_modules/ansi-regex/index.js +10 -0
  1056. package/node_modules/ansi-regex/license +9 -0
  1057. package/node_modules/ansi-regex/package.json +55 -0
  1058. package/node_modules/ansi-regex/readme.md +78 -0
  1059. package/node_modules/ansi-styles/index.js +165 -0
  1060. package/node_modules/ansi-styles/license +9 -0
  1061. package/node_modules/ansi-styles/package.json +56 -0
  1062. package/node_modules/ansi-styles/readme.md +147 -0
  1063. package/node_modules/append-transform/CHANGELOG.md +14 -0
  1064. package/node_modules/append-transform/index.js +91 -0
  1065. package/node_modules/append-transform/license +21 -0
  1066. package/node_modules/append-transform/package.json +47 -0
  1067. package/node_modules/append-transform/readme.md +76 -0
  1068. package/node_modules/archy/.travis.yml +4 -0
  1069. package/node_modules/archy/LICENSE +18 -0
  1070. package/node_modules/archy/examples/beep.js +24 -0
  1071. package/node_modules/archy/examples/multi_line.js +25 -0
  1072. package/node_modules/archy/index.js +35 -0
  1073. package/node_modules/archy/package.json +40 -0
  1074. package/node_modules/archy/readme.markdown +88 -0
  1075. package/node_modules/archy/test/beep.js +40 -0
  1076. package/node_modules/archy/test/multi_line.js +45 -0
  1077. package/node_modules/archy/test/non_unicode.js +40 -0
  1078. package/node_modules/argparse/CHANGELOG.md +185 -0
  1079. package/node_modules/argparse/LICENSE +21 -0
  1080. package/node_modules/argparse/README.md +257 -0
  1081. package/node_modules/argparse/index.js +3 -0
  1082. package/node_modules/argparse/lib/action/append/constant.js +47 -0
  1083. package/node_modules/argparse/lib/action/append.js +53 -0
  1084. package/node_modules/argparse/lib/action/count.js +40 -0
  1085. package/node_modules/argparse/lib/action/help.js +47 -0
  1086. package/node_modules/argparse/lib/action/store/constant.js +43 -0
  1087. package/node_modules/argparse/lib/action/store/false.js +27 -0
  1088. package/node_modules/argparse/lib/action/store/true.js +26 -0
  1089. package/node_modules/argparse/lib/action/store.js +50 -0
  1090. package/node_modules/argparse/lib/action/subparsers.js +149 -0
  1091. package/node_modules/argparse/lib/action/version.js +47 -0
  1092. package/node_modules/argparse/lib/action.js +146 -0
  1093. package/node_modules/argparse/lib/action_container.js +482 -0
  1094. package/node_modules/argparse/lib/argparse.js +14 -0
  1095. package/node_modules/argparse/lib/argument/error.js +50 -0
  1096. package/node_modules/argparse/lib/argument/exclusive.js +54 -0
  1097. package/node_modules/argparse/lib/argument/group.js +75 -0
  1098. package/node_modules/argparse/lib/argument_parser.js +1161 -0
  1099. package/node_modules/argparse/lib/const.js +21 -0
  1100. package/node_modules/argparse/lib/help/added_formatters.js +87 -0
  1101. package/node_modules/argparse/lib/help/formatter.js +795 -0
  1102. package/node_modules/argparse/lib/namespace.js +76 -0
  1103. package/node_modules/argparse/lib/utils.js +57 -0
  1104. package/node_modules/argparse/package.json +34 -0
  1105. package/node_modules/asynckit/package.json +40 -68
  1106. package/node_modules/axios/CHANGELOG.md +473 -837
  1107. package/node_modules/axios/LICENSE +4 -16
  1108. package/node_modules/axios/MIGRATION_GUIDE.md +3 -0
  1109. package/node_modules/axios/README.md +518 -114
  1110. package/node_modules/axios/SECURITY.md +4 -3
  1111. package/node_modules/axios/dist/axios.js +2759 -2070
  1112. package/node_modules/axios/dist/axios.js.map +1 -0
  1113. package/node_modules/axios/dist/axios.min.js +2 -2
  1114. package/node_modules/axios/dist/axios.min.js.map +1 -0
  1115. package/node_modules/axios/dist/browser/axios.cjs +3210 -0
  1116. package/node_modules/axios/dist/browser/axios.cjs.map +1 -0
  1117. package/node_modules/axios/dist/esm/axios.js +3232 -0
  1118. package/node_modules/axios/dist/esm/axios.js.map +1 -0
  1119. package/node_modules/axios/dist/esm/axios.min.js +2 -0
  1120. package/node_modules/axios/dist/esm/axios.min.js.map +1 -0
  1121. package/node_modules/axios/dist/node/axios.cjs +4237 -0
  1122. package/node_modules/axios/dist/node/axios.cjs.map +1 -0
  1123. package/node_modules/axios/index.d.cts +532 -0
  1124. package/node_modules/axios/index.d.ts +398 -72
  1125. package/node_modules/axios/index.js +41 -1
  1126. package/node_modules/axios/lib/adapters/adapters.js +59 -0
  1127. package/node_modules/axios/lib/adapters/http.js +479 -217
  1128. package/node_modules/axios/lib/adapters/xhr.js +95 -54
  1129. package/node_modules/axios/lib/axios.js +49 -20
  1130. package/node_modules/axios/lib/cancel/CancelToken.js +91 -89
  1131. package/node_modules/axios/lib/cancel/CanceledError.js +25 -0
  1132. package/node_modules/axios/lib/cancel/isCancel.js +2 -2
  1133. package/node_modules/axios/lib/core/Axios.js +155 -100
  1134. package/node_modules/axios/lib/core/AxiosError.js +100 -0
  1135. package/node_modules/axios/lib/core/AxiosHeaders.js +288 -0
  1136. package/node_modules/axios/lib/core/InterceptorManager.js +62 -45
  1137. package/node_modules/axios/lib/core/buildFullPath.js +5 -4
  1138. package/node_modules/axios/lib/core/dispatchRequest.js +27 -33
  1139. package/node_modules/axios/lib/core/mergeConfig.js +58 -52
  1140. package/node_modules/axios/lib/core/settle.js +8 -6
  1141. package/node_modules/axios/lib/core/transformData.js +15 -9
  1142. package/node_modules/axios/lib/defaults/index.js +76 -41
  1143. package/node_modules/axios/lib/defaults/transitional.js +1 -1
  1144. package/node_modules/axios/lib/env/classes/FormData.js +2 -0
  1145. package/node_modules/axios/lib/env/data.js +1 -3
  1146. package/node_modules/axios/lib/helpers/AxiosTransformStream.js +191 -0
  1147. package/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
  1148. package/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
  1149. package/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
  1150. package/node_modules/axios/lib/helpers/bind.js +3 -7
  1151. package/node_modules/axios/lib/helpers/buildURL.js +26 -33
  1152. package/node_modules/axios/lib/helpers/callbackify.js +16 -0
  1153. package/node_modules/axios/lib/helpers/combineURLs.js +3 -2
  1154. package/node_modules/axios/lib/helpers/cookies.js +43 -44
  1155. package/node_modules/axios/lib/helpers/deprecatedMethod.js +4 -2
  1156. package/node_modules/axios/lib/helpers/formDataToJSON.js +92 -0
  1157. package/node_modules/axios/lib/helpers/formDataToStream.js +111 -0
  1158. package/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
  1159. package/node_modules/axios/lib/helpers/isAbsoluteURL.js +3 -2
  1160. package/node_modules/axios/lib/helpers/isAxiosError.js +4 -3
  1161. package/node_modules/axios/lib/helpers/isURLSameOrigin.js +44 -45
  1162. package/node_modules/axios/lib/helpers/null.js +2 -0
  1163. package/node_modules/axios/lib/helpers/parseHeaders.js +24 -22
  1164. package/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  1165. package/node_modules/axios/lib/helpers/readBlob.js +15 -0
  1166. package/node_modules/axios/lib/helpers/speedometer.js +55 -0
  1167. package/node_modules/axios/lib/helpers/spread.js +3 -2
  1168. package/node_modules/axios/lib/helpers/throttle.js +33 -0
  1169. package/node_modules/axios/lib/helpers/toFormData.js +203 -39
  1170. package/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
  1171. package/node_modules/axios/lib/helpers/validator.js +27 -18
  1172. package/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
  1173. package/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  1174. package/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
  1175. package/node_modules/axios/lib/platform/browser/index.js +64 -0
  1176. package/node_modules/axios/lib/platform/index.js +3 -0
  1177. package/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
  1178. package/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
  1179. package/node_modules/axios/lib/platform/node/index.js +12 -0
  1180. package/node_modules/axios/lib/utils.js +517 -144
  1181. package/node_modules/axios/package.json +194 -93
  1182. package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  1183. package/node_modules/balanced-match/LICENSE.md +21 -0
  1184. package/node_modules/balanced-match/README.md +97 -0
  1185. package/node_modules/balanced-match/index.js +62 -0
  1186. package/node_modules/balanced-match/package.json +48 -0
  1187. package/node_modules/brace-expansion/LICENSE +21 -0
  1188. package/node_modules/brace-expansion/README.md +129 -0
  1189. package/node_modules/brace-expansion/index.js +201 -0
  1190. package/node_modules/brace-expansion/package.json +47 -0
  1191. package/node_modules/browserslist/LICENSE +20 -0
  1192. package/node_modules/browserslist/README.md +73 -0
  1193. package/node_modules/browserslist/browser.js +52 -0
  1194. package/node_modules/browserslist/cli.js +151 -0
  1195. package/node_modules/browserslist/error.d.ts +7 -0
  1196. package/node_modules/browserslist/error.js +12 -0
  1197. package/node_modules/browserslist/index.d.ts +200 -0
  1198. package/node_modules/browserslist/index.js +1196 -0
  1199. package/node_modules/browserslist/node.js +410 -0
  1200. package/node_modules/browserslist/package.json +44 -0
  1201. package/node_modules/browserslist/parse.js +78 -0
  1202. package/node_modules/caching-transform/index.js +102 -0
  1203. package/node_modules/caching-transform/license +21 -0
  1204. package/node_modules/caching-transform/package.json +46 -0
  1205. package/node_modules/caching-transform/readme.md +163 -0
  1206. package/node_modules/call-bind/package.json +78 -109
  1207. package/node_modules/camelcase/index.d.ts +63 -0
  1208. package/node_modules/camelcase/index.js +76 -0
  1209. package/node_modules/camelcase/license +9 -0
  1210. package/node_modules/camelcase/package.json +43 -0
  1211. package/node_modules/camelcase/readme.md +99 -0
  1212. package/node_modules/caniuse-lite/LICENSE +395 -0
  1213. package/node_modules/caniuse-lite/README.md +6 -0
  1214. package/node_modules/caniuse-lite/data/agents.js +1 -0
  1215. package/node_modules/caniuse-lite/data/browserVersions.js +1 -0
  1216. package/node_modules/caniuse-lite/data/browsers.js +1 -0
  1217. package/node_modules/caniuse-lite/data/features/aac.js +1 -0
  1218. package/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
  1219. package/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
  1220. package/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
  1221. package/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
  1222. package/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
  1223. package/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
  1224. package/node_modules/caniuse-lite/data/features/apng.js +1 -0
  1225. package/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
  1226. package/node_modules/caniuse-lite/data/features/array-find.js +1 -0
  1227. package/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
  1228. package/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
  1229. package/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
  1230. package/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
  1231. package/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
  1232. package/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
  1233. package/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
  1234. package/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
  1235. package/node_modules/caniuse-lite/data/features/audio.js +1 -0
  1236. package/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
  1237. package/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
  1238. package/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
  1239. package/node_modules/caniuse-lite/data/features/av1.js +1 -0
  1240. package/node_modules/caniuse-lite/data/features/avif.js +1 -0
  1241. package/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
  1242. package/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
  1243. package/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
  1244. package/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
  1245. package/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
  1246. package/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
  1247. package/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
  1248. package/node_modules/caniuse-lite/data/features/beacon.js +1 -0
  1249. package/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
  1250. package/node_modules/caniuse-lite/data/features/bigint.js +1 -0
  1251. package/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
  1252. package/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
  1253. package/node_modules/caniuse-lite/data/features/border-image.js +1 -0
  1254. package/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
  1255. package/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
  1256. package/node_modules/caniuse-lite/data/features/brotli.js +1 -0
  1257. package/node_modules/caniuse-lite/data/features/calc.js +1 -0
  1258. package/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
  1259. package/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
  1260. package/node_modules/caniuse-lite/data/features/canvas.js +1 -0
  1261. package/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
  1262. package/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
  1263. package/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
  1264. package/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
  1265. package/node_modules/caniuse-lite/data/features/classlist.js +1 -0
  1266. package/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
  1267. package/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
  1268. package/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
  1269. package/node_modules/caniuse-lite/data/features/colr.js +1 -0
  1270. package/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
  1271. package/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
  1272. package/node_modules/caniuse-lite/data/features/console-time.js +1 -0
  1273. package/node_modules/caniuse-lite/data/features/const.js +1 -0
  1274. package/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
  1275. package/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
  1276. package/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
  1277. package/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
  1278. package/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
  1279. package/node_modules/caniuse-lite/data/features/cors.js +1 -0
  1280. package/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
  1281. package/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
  1282. package/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
  1283. package/node_modules/caniuse-lite/data/features/css-all.js +1 -0
  1284. package/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
  1285. package/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
  1286. package/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
  1287. package/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
  1288. package/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
  1289. package/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
  1290. package/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
  1291. package/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
  1292. package/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
  1293. package/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
  1294. package/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
  1295. package/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
  1296. package/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
  1297. package/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
  1298. package/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
  1299. package/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
  1300. package/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
  1301. package/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
  1302. package/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
  1303. package/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
  1304. package/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
  1305. package/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
  1306. package/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
  1307. package/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
  1308. package/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
  1309. package/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
  1310. package/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
  1311. package/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
  1312. package/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
  1313. package/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
  1314. package/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
  1315. package/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
  1316. package/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
  1317. package/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
  1318. package/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
  1319. package/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
  1320. package/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
  1321. package/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
  1322. package/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
  1323. package/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
  1324. package/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
  1325. package/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
  1326. package/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
  1327. package/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
  1328. package/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
  1329. package/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
  1330. package/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
  1331. package/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
  1332. package/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
  1333. package/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
  1334. package/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
  1335. package/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
  1336. package/node_modules/caniuse-lite/data/features/css-has.js +1 -0
  1337. package/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
  1338. package/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
  1339. package/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
  1340. package/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
  1341. package/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
  1342. package/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
  1343. package/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
  1344. package/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
  1345. package/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
  1346. package/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
  1347. package/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
  1348. package/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
  1349. package/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
  1350. package/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
  1351. package/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
  1352. package/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
  1353. package/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
  1354. package/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
  1355. package/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
  1356. package/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
  1357. package/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
  1358. package/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
  1359. package/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
  1360. package/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
  1361. package/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
  1362. package/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
  1363. package/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
  1364. package/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
  1365. package/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
  1366. package/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
  1367. package/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
  1368. package/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
  1369. package/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
  1370. package/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
  1371. package/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
  1372. package/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
  1373. package/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
  1374. package/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
  1375. package/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
  1376. package/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
  1377. package/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
  1378. package/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
  1379. package/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
  1380. package/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
  1381. package/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
  1382. package/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
  1383. package/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
  1384. package/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
  1385. package/node_modules/caniuse-lite/data/features/css-scroll-timeline.js +1 -0
  1386. package/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
  1387. package/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
  1388. package/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
  1389. package/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
  1390. package/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
  1391. package/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
  1392. package/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
  1393. package/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
  1394. package/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
  1395. package/node_modules/caniuse-lite/data/features/css-table.js +1 -0
  1396. package/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
  1397. package/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
  1398. package/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
  1399. package/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
  1400. package/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
  1401. package/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
  1402. package/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
  1403. package/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
  1404. package/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
  1405. package/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
  1406. package/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
  1407. package/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
  1408. package/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
  1409. package/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
  1410. package/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
  1411. package/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
  1412. package/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
  1413. package/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
  1414. package/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
  1415. package/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
  1416. package/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
  1417. package/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
  1418. package/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
  1419. package/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
  1420. package/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
  1421. package/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
  1422. package/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
  1423. package/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
  1424. package/node_modules/caniuse-lite/data/features/customevent.js +1 -0
  1425. package/node_modules/caniuse-lite/data/features/datalist.js +1 -0
  1426. package/node_modules/caniuse-lite/data/features/dataset.js +1 -0
  1427. package/node_modules/caniuse-lite/data/features/datauri.js +1 -0
  1428. package/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
  1429. package/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
  1430. package/node_modules/caniuse-lite/data/features/decorators.js +1 -0
  1431. package/node_modules/caniuse-lite/data/features/details.js +1 -0
  1432. package/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
  1433. package/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
  1434. package/node_modules/caniuse-lite/data/features/dialog.js +1 -0
  1435. package/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
  1436. package/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
  1437. package/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
  1438. package/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
  1439. package/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
  1440. package/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
  1441. package/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
  1442. package/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
  1443. package/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
  1444. package/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
  1445. package/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
  1446. package/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
  1447. package/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
  1448. package/node_modules/caniuse-lite/data/features/download.js +1 -0
  1449. package/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
  1450. package/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
  1451. package/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
  1452. package/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
  1453. package/node_modules/caniuse-lite/data/features/eme.js +1 -0
  1454. package/node_modules/caniuse-lite/data/features/eot.js +1 -0
  1455. package/node_modules/caniuse-lite/data/features/es5.js +1 -0
  1456. package/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
  1457. package/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
  1458. package/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
  1459. package/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
  1460. package/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
  1461. package/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
  1462. package/node_modules/caniuse-lite/data/features/es6.js +1 -0
  1463. package/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
  1464. package/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
  1465. package/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
  1466. package/node_modules/caniuse-lite/data/features/fetch.js +1 -0
  1467. package/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
  1468. package/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
  1469. package/node_modules/caniuse-lite/data/features/filereader.js +1 -0
  1470. package/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
  1471. package/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
  1472. package/node_modules/caniuse-lite/data/features/flac.js +1 -0
  1473. package/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
  1474. package/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
  1475. package/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
  1476. package/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
  1477. package/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
  1478. package/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
  1479. package/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
  1480. package/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
  1481. package/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
  1482. package/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
  1483. package/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
  1484. package/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
  1485. package/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
  1486. package/node_modules/caniuse-lite/data/features/fontface.js +1 -0
  1487. package/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
  1488. package/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
  1489. package/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
  1490. package/node_modules/caniuse-lite/data/features/forms.js +1 -0
  1491. package/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
  1492. package/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
  1493. package/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
  1494. package/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
  1495. package/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
  1496. package/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
  1497. package/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
  1498. package/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
  1499. package/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
  1500. package/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
  1501. package/node_modules/caniuse-lite/data/features/heif.js +1 -0
  1502. package/node_modules/caniuse-lite/data/features/hevc.js +1 -0
  1503. package/node_modules/caniuse-lite/data/features/hidden.js +1 -0
  1504. package/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
  1505. package/node_modules/caniuse-lite/data/features/history.js +1 -0
  1506. package/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
  1507. package/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
  1508. package/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
  1509. package/node_modules/caniuse-lite/data/features/http2.js +1 -0
  1510. package/node_modules/caniuse-lite/data/features/http3.js +1 -0
  1511. package/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
  1512. package/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
  1513. package/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
  1514. package/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
  1515. package/node_modules/caniuse-lite/data/features/ime.js +1 -0
  1516. package/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
  1517. package/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
  1518. package/node_modules/caniuse-lite/data/features/imports.js +1 -0
  1519. package/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
  1520. package/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
  1521. package/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
  1522. package/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
  1523. package/node_modules/caniuse-lite/data/features/innertext.js +1 -0
  1524. package/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
  1525. package/node_modules/caniuse-lite/data/features/input-color.js +1 -0
  1526. package/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
  1527. package/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
  1528. package/node_modules/caniuse-lite/data/features/input-event.js +1 -0
  1529. package/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
  1530. package/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
  1531. package/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
  1532. package/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
  1533. package/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
  1534. package/node_modules/caniuse-lite/data/features/input-number.js +1 -0
  1535. package/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
  1536. package/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
  1537. package/node_modules/caniuse-lite/data/features/input-range.js +1 -0
  1538. package/node_modules/caniuse-lite/data/features/input-search.js +1 -0
  1539. package/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
  1540. package/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
  1541. package/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
  1542. package/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
  1543. package/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
  1544. package/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
  1545. package/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
  1546. package/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
  1547. package/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
  1548. package/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
  1549. package/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
  1550. package/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
  1551. package/node_modules/caniuse-lite/data/features/json.js +1 -0
  1552. package/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
  1553. package/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
  1554. package/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
  1555. package/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
  1556. package/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
  1557. package/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
  1558. package/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
  1559. package/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
  1560. package/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
  1561. package/node_modules/caniuse-lite/data/features/let.js +1 -0
  1562. package/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
  1563. package/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
  1564. package/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
  1565. package/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
  1566. package/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
  1567. package/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
  1568. package/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
  1569. package/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
  1570. package/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
  1571. package/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
  1572. package/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
  1573. package/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
  1574. package/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
  1575. package/node_modules/caniuse-lite/data/features/mathml.js +1 -0
  1576. package/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
  1577. package/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
  1578. package/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
  1579. package/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
  1580. package/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
  1581. package/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
  1582. package/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
  1583. package/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
  1584. package/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
  1585. package/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
  1586. package/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
  1587. package/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
  1588. package/node_modules/caniuse-lite/data/features/menu.js +1 -0
  1589. package/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
  1590. package/node_modules/caniuse-lite/data/features/meter.js +1 -0
  1591. package/node_modules/caniuse-lite/data/features/midi.js +1 -0
  1592. package/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
  1593. package/node_modules/caniuse-lite/data/features/mp3.js +1 -0
  1594. package/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
  1595. package/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
  1596. package/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
  1597. package/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
  1598. package/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
  1599. package/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
  1600. package/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
  1601. package/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
  1602. package/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
  1603. package/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
  1604. package/node_modules/caniuse-lite/data/features/notifications.js +1 -0
  1605. package/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
  1606. package/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
  1607. package/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
  1608. package/node_modules/caniuse-lite/data/features/object-values.js +1 -0
  1609. package/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
  1610. package/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
  1611. package/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
  1612. package/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
  1613. package/node_modules/caniuse-lite/data/features/ogv.js +1 -0
  1614. package/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
  1615. package/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
  1616. package/node_modules/caniuse-lite/data/features/online-status.js +1 -0
  1617. package/node_modules/caniuse-lite/data/features/opus.js +1 -0
  1618. package/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
  1619. package/node_modules/caniuse-lite/data/features/outline.js +1 -0
  1620. package/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
  1621. package/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
  1622. package/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
  1623. package/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
  1624. package/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
  1625. package/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
  1626. package/node_modules/caniuse-lite/data/features/path2d.js +1 -0
  1627. package/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
  1628. package/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
  1629. package/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
  1630. package/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
  1631. package/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
  1632. package/node_modules/caniuse-lite/data/features/picture.js +1 -0
  1633. package/node_modules/caniuse-lite/data/features/ping.js +1 -0
  1634. package/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
  1635. package/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
  1636. package/node_modules/caniuse-lite/data/features/pointer.js +1 -0
  1637. package/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
  1638. package/node_modules/caniuse-lite/data/features/portals.js +1 -0
  1639. package/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
  1640. package/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
  1641. package/node_modules/caniuse-lite/data/features/progress.js +1 -0
  1642. package/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
  1643. package/node_modules/caniuse-lite/data/features/promises.js +1 -0
  1644. package/node_modules/caniuse-lite/data/features/proximity.js +1 -0
  1645. package/node_modules/caniuse-lite/data/features/proxy.js +1 -0
  1646. package/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
  1647. package/node_modules/caniuse-lite/data/features/push-api.js +1 -0
  1648. package/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
  1649. package/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
  1650. package/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
  1651. package/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
  1652. package/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
  1653. package/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
  1654. package/node_modules/caniuse-lite/data/features/rellist.js +1 -0
  1655. package/node_modules/caniuse-lite/data/features/rem.js +1 -0
  1656. package/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
  1657. package/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
  1658. package/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
  1659. package/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
  1660. package/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
  1661. package/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
  1662. package/node_modules/caniuse-lite/data/features/ruby.js +1 -0
  1663. package/node_modules/caniuse-lite/data/features/run-in.js +1 -0
  1664. package/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
  1665. package/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
  1666. package/node_modules/caniuse-lite/data/features/script-async.js +1 -0
  1667. package/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
  1668. package/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
  1669. package/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
  1670. package/node_modules/caniuse-lite/data/features/sdch.js +1 -0
  1671. package/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
  1672. package/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
  1673. package/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
  1674. package/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
  1675. package/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
  1676. package/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
  1677. package/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
  1678. package/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
  1679. package/node_modules/caniuse-lite/data/features/sni.js +1 -0
  1680. package/node_modules/caniuse-lite/data/features/spdy.js +1 -0
  1681. package/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
  1682. package/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
  1683. package/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
  1684. package/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
  1685. package/node_modules/caniuse-lite/data/features/srcset.js +1 -0
  1686. package/node_modules/caniuse-lite/data/features/stream.js +1 -0
  1687. package/node_modules/caniuse-lite/data/features/streams.js +1 -0
  1688. package/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
  1689. package/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
  1690. package/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
  1691. package/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
  1692. package/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
  1693. package/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
  1694. package/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
  1695. package/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
  1696. package/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
  1697. package/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
  1698. package/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
  1699. package/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
  1700. package/node_modules/caniuse-lite/data/features/svg.js +1 -0
  1701. package/node_modules/caniuse-lite/data/features/sxg.js +1 -0
  1702. package/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
  1703. package/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
  1704. package/node_modules/caniuse-lite/data/features/template.js +1 -0
  1705. package/node_modules/caniuse-lite/data/features/temporal.js +1 -0
  1706. package/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
  1707. package/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
  1708. package/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
  1709. package/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
  1710. package/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
  1711. package/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
  1712. package/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
  1713. package/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
  1714. package/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
  1715. package/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
  1716. package/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
  1717. package/node_modules/caniuse-lite/data/features/touch.js +1 -0
  1718. package/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
  1719. package/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
  1720. package/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
  1721. package/node_modules/caniuse-lite/data/features/ttf.js +1 -0
  1722. package/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
  1723. package/node_modules/caniuse-lite/data/features/u2f.js +1 -0
  1724. package/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
  1725. package/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
  1726. package/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
  1727. package/node_modules/caniuse-lite/data/features/url.js +1 -0
  1728. package/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
  1729. package/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
  1730. package/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
  1731. package/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
  1732. package/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
  1733. package/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
  1734. package/node_modules/caniuse-lite/data/features/vibration.js +1 -0
  1735. package/node_modules/caniuse-lite/data/features/video.js +1 -0
  1736. package/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
  1737. package/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
  1738. package/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
  1739. package/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
  1740. package/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
  1741. package/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
  1742. package/node_modules/caniuse-lite/data/features/wasm.js +1 -0
  1743. package/node_modules/caniuse-lite/data/features/wav.js +1 -0
  1744. package/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
  1745. package/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
  1746. package/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
  1747. package/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
  1748. package/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
  1749. package/node_modules/caniuse-lite/data/features/web-share.js +1 -0
  1750. package/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
  1751. package/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
  1752. package/node_modules/caniuse-lite/data/features/webgl.js +1 -0
  1753. package/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
  1754. package/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
  1755. package/node_modules/caniuse-lite/data/features/webhid.js +1 -0
  1756. package/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
  1757. package/node_modules/caniuse-lite/data/features/webm.js +1 -0
  1758. package/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
  1759. package/node_modules/caniuse-lite/data/features/webp.js +1 -0
  1760. package/node_modules/caniuse-lite/data/features/websockets.js +1 -0
  1761. package/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
  1762. package/node_modules/caniuse-lite/data/features/webusb.js +1 -0
  1763. package/node_modules/caniuse-lite/data/features/webvr.js +1 -0
  1764. package/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
  1765. package/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
  1766. package/node_modules/caniuse-lite/data/features/webxr.js +1 -0
  1767. package/node_modules/caniuse-lite/data/features/will-change.js +1 -0
  1768. package/node_modules/caniuse-lite/data/features/woff.js +1 -0
  1769. package/node_modules/caniuse-lite/data/features/woff2.js +1 -0
  1770. package/node_modules/caniuse-lite/data/features/word-break.js +1 -0
  1771. package/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
  1772. package/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
  1773. package/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
  1774. package/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
  1775. package/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
  1776. package/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
  1777. package/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
  1778. package/node_modules/caniuse-lite/data/features/zstd.js +1 -0
  1779. package/node_modules/caniuse-lite/data/features.js +1 -0
  1780. package/node_modules/caniuse-lite/data/regions/AD.js +1 -0
  1781. package/node_modules/caniuse-lite/data/regions/AE.js +1 -0
  1782. package/node_modules/caniuse-lite/data/regions/AF.js +1 -0
  1783. package/node_modules/caniuse-lite/data/regions/AG.js +1 -0
  1784. package/node_modules/caniuse-lite/data/regions/AI.js +1 -0
  1785. package/node_modules/caniuse-lite/data/regions/AL.js +1 -0
  1786. package/node_modules/caniuse-lite/data/regions/AM.js +1 -0
  1787. package/node_modules/caniuse-lite/data/regions/AO.js +1 -0
  1788. package/node_modules/caniuse-lite/data/regions/AR.js +1 -0
  1789. package/node_modules/caniuse-lite/data/regions/AS.js +1 -0
  1790. package/node_modules/caniuse-lite/data/regions/AT.js +1 -0
  1791. package/node_modules/caniuse-lite/data/regions/AU.js +1 -0
  1792. package/node_modules/caniuse-lite/data/regions/AW.js +1 -0
  1793. package/node_modules/caniuse-lite/data/regions/AX.js +1 -0
  1794. package/node_modules/caniuse-lite/data/regions/AZ.js +1 -0
  1795. package/node_modules/caniuse-lite/data/regions/BA.js +1 -0
  1796. package/node_modules/caniuse-lite/data/regions/BB.js +1 -0
  1797. package/node_modules/caniuse-lite/data/regions/BD.js +1 -0
  1798. package/node_modules/caniuse-lite/data/regions/BE.js +1 -0
  1799. package/node_modules/caniuse-lite/data/regions/BF.js +1 -0
  1800. package/node_modules/caniuse-lite/data/regions/BG.js +1 -0
  1801. package/node_modules/caniuse-lite/data/regions/BH.js +1 -0
  1802. package/node_modules/caniuse-lite/data/regions/BI.js +1 -0
  1803. package/node_modules/caniuse-lite/data/regions/BJ.js +1 -0
  1804. package/node_modules/caniuse-lite/data/regions/BM.js +1 -0
  1805. package/node_modules/caniuse-lite/data/regions/BN.js +1 -0
  1806. package/node_modules/caniuse-lite/data/regions/BO.js +1 -0
  1807. package/node_modules/caniuse-lite/data/regions/BR.js +1 -0
  1808. package/node_modules/caniuse-lite/data/regions/BS.js +1 -0
  1809. package/node_modules/caniuse-lite/data/regions/BT.js +1 -0
  1810. package/node_modules/caniuse-lite/data/regions/BW.js +1 -0
  1811. package/node_modules/caniuse-lite/data/regions/BY.js +1 -0
  1812. package/node_modules/caniuse-lite/data/regions/BZ.js +1 -0
  1813. package/node_modules/caniuse-lite/data/regions/CA.js +1 -0
  1814. package/node_modules/caniuse-lite/data/regions/CD.js +1 -0
  1815. package/node_modules/caniuse-lite/data/regions/CF.js +1 -0
  1816. package/node_modules/caniuse-lite/data/regions/CG.js +1 -0
  1817. package/node_modules/caniuse-lite/data/regions/CH.js +1 -0
  1818. package/node_modules/caniuse-lite/data/regions/CI.js +1 -0
  1819. package/node_modules/caniuse-lite/data/regions/CK.js +1 -0
  1820. package/node_modules/caniuse-lite/data/regions/CL.js +1 -0
  1821. package/node_modules/caniuse-lite/data/regions/CM.js +1 -0
  1822. package/node_modules/caniuse-lite/data/regions/CN.js +1 -0
  1823. package/node_modules/caniuse-lite/data/regions/CO.js +1 -0
  1824. package/node_modules/caniuse-lite/data/regions/CR.js +1 -0
  1825. package/node_modules/caniuse-lite/data/regions/CU.js +1 -0
  1826. package/node_modules/caniuse-lite/data/regions/CV.js +1 -0
  1827. package/node_modules/caniuse-lite/data/regions/CX.js +1 -0
  1828. package/node_modules/caniuse-lite/data/regions/CY.js +1 -0
  1829. package/node_modules/caniuse-lite/data/regions/CZ.js +1 -0
  1830. package/node_modules/caniuse-lite/data/regions/DE.js +1 -0
  1831. package/node_modules/caniuse-lite/data/regions/DJ.js +1 -0
  1832. package/node_modules/caniuse-lite/data/regions/DK.js +1 -0
  1833. package/node_modules/caniuse-lite/data/regions/DM.js +1 -0
  1834. package/node_modules/caniuse-lite/data/regions/DO.js +1 -0
  1835. package/node_modules/caniuse-lite/data/regions/DZ.js +1 -0
  1836. package/node_modules/caniuse-lite/data/regions/EC.js +1 -0
  1837. package/node_modules/caniuse-lite/data/regions/EE.js +1 -0
  1838. package/node_modules/caniuse-lite/data/regions/EG.js +1 -0
  1839. package/node_modules/caniuse-lite/data/regions/ER.js +1 -0
  1840. package/node_modules/caniuse-lite/data/regions/ES.js +1 -0
  1841. package/node_modules/caniuse-lite/data/regions/ET.js +1 -0
  1842. package/node_modules/caniuse-lite/data/regions/FI.js +1 -0
  1843. package/node_modules/caniuse-lite/data/regions/FJ.js +1 -0
  1844. package/node_modules/caniuse-lite/data/regions/FK.js +1 -0
  1845. package/node_modules/caniuse-lite/data/regions/FM.js +1 -0
  1846. package/node_modules/caniuse-lite/data/regions/FO.js +1 -0
  1847. package/node_modules/caniuse-lite/data/regions/FR.js +1 -0
  1848. package/node_modules/caniuse-lite/data/regions/GA.js +1 -0
  1849. package/node_modules/caniuse-lite/data/regions/GB.js +1 -0
  1850. package/node_modules/caniuse-lite/data/regions/GD.js +1 -0
  1851. package/node_modules/caniuse-lite/data/regions/GE.js +1 -0
  1852. package/node_modules/caniuse-lite/data/regions/GF.js +1 -0
  1853. package/node_modules/caniuse-lite/data/regions/GG.js +1 -0
  1854. package/node_modules/caniuse-lite/data/regions/GH.js +1 -0
  1855. package/node_modules/caniuse-lite/data/regions/GI.js +1 -0
  1856. package/node_modules/caniuse-lite/data/regions/GL.js +1 -0
  1857. package/node_modules/caniuse-lite/data/regions/GM.js +1 -0
  1858. package/node_modules/caniuse-lite/data/regions/GN.js +1 -0
  1859. package/node_modules/caniuse-lite/data/regions/GP.js +1 -0
  1860. package/node_modules/caniuse-lite/data/regions/GQ.js +1 -0
  1861. package/node_modules/caniuse-lite/data/regions/GR.js +1 -0
  1862. package/node_modules/caniuse-lite/data/regions/GT.js +1 -0
  1863. package/node_modules/caniuse-lite/data/regions/GU.js +1 -0
  1864. package/node_modules/caniuse-lite/data/regions/GW.js +1 -0
  1865. package/node_modules/caniuse-lite/data/regions/GY.js +1 -0
  1866. package/node_modules/caniuse-lite/data/regions/HK.js +1 -0
  1867. package/node_modules/caniuse-lite/data/regions/HN.js +1 -0
  1868. package/node_modules/caniuse-lite/data/regions/HR.js +1 -0
  1869. package/node_modules/caniuse-lite/data/regions/HT.js +1 -0
  1870. package/node_modules/caniuse-lite/data/regions/HU.js +1 -0
  1871. package/node_modules/caniuse-lite/data/regions/ID.js +1 -0
  1872. package/node_modules/caniuse-lite/data/regions/IE.js +1 -0
  1873. package/node_modules/caniuse-lite/data/regions/IL.js +1 -0
  1874. package/node_modules/caniuse-lite/data/regions/IM.js +1 -0
  1875. package/node_modules/caniuse-lite/data/regions/IN.js +1 -0
  1876. package/node_modules/caniuse-lite/data/regions/IQ.js +1 -0
  1877. package/node_modules/caniuse-lite/data/regions/IR.js +1 -0
  1878. package/node_modules/caniuse-lite/data/regions/IS.js +1 -0
  1879. package/node_modules/caniuse-lite/data/regions/IT.js +1 -0
  1880. package/node_modules/caniuse-lite/data/regions/JE.js +1 -0
  1881. package/node_modules/caniuse-lite/data/regions/JM.js +1 -0
  1882. package/node_modules/caniuse-lite/data/regions/JO.js +1 -0
  1883. package/node_modules/caniuse-lite/data/regions/JP.js +1 -0
  1884. package/node_modules/caniuse-lite/data/regions/KE.js +1 -0
  1885. package/node_modules/caniuse-lite/data/regions/KG.js +1 -0
  1886. package/node_modules/caniuse-lite/data/regions/KH.js +1 -0
  1887. package/node_modules/caniuse-lite/data/regions/KI.js +1 -0
  1888. package/node_modules/caniuse-lite/data/regions/KM.js +1 -0
  1889. package/node_modules/caniuse-lite/data/regions/KN.js +1 -0
  1890. package/node_modules/caniuse-lite/data/regions/KP.js +1 -0
  1891. package/node_modules/caniuse-lite/data/regions/KR.js +1 -0
  1892. package/node_modules/caniuse-lite/data/regions/KW.js +1 -0
  1893. package/node_modules/caniuse-lite/data/regions/KY.js +1 -0
  1894. package/node_modules/caniuse-lite/data/regions/KZ.js +1 -0
  1895. package/node_modules/caniuse-lite/data/regions/LA.js +1 -0
  1896. package/node_modules/caniuse-lite/data/regions/LB.js +1 -0
  1897. package/node_modules/caniuse-lite/data/regions/LC.js +1 -0
  1898. package/node_modules/caniuse-lite/data/regions/LI.js +1 -0
  1899. package/node_modules/caniuse-lite/data/regions/LK.js +1 -0
  1900. package/node_modules/caniuse-lite/data/regions/LR.js +1 -0
  1901. package/node_modules/caniuse-lite/data/regions/LS.js +1 -0
  1902. package/node_modules/caniuse-lite/data/regions/LT.js +1 -0
  1903. package/node_modules/caniuse-lite/data/regions/LU.js +1 -0
  1904. package/node_modules/caniuse-lite/data/regions/LV.js +1 -0
  1905. package/node_modules/caniuse-lite/data/regions/LY.js +1 -0
  1906. package/node_modules/caniuse-lite/data/regions/MA.js +1 -0
  1907. package/node_modules/caniuse-lite/data/regions/MC.js +1 -0
  1908. package/node_modules/caniuse-lite/data/regions/MD.js +1 -0
  1909. package/node_modules/caniuse-lite/data/regions/ME.js +1 -0
  1910. package/node_modules/caniuse-lite/data/regions/MG.js +1 -0
  1911. package/node_modules/caniuse-lite/data/regions/MH.js +1 -0
  1912. package/node_modules/caniuse-lite/data/regions/MK.js +1 -0
  1913. package/node_modules/caniuse-lite/data/regions/ML.js +1 -0
  1914. package/node_modules/caniuse-lite/data/regions/MM.js +1 -0
  1915. package/node_modules/caniuse-lite/data/regions/MN.js +1 -0
  1916. package/node_modules/caniuse-lite/data/regions/MO.js +1 -0
  1917. package/node_modules/caniuse-lite/data/regions/MP.js +1 -0
  1918. package/node_modules/caniuse-lite/data/regions/MQ.js +1 -0
  1919. package/node_modules/caniuse-lite/data/regions/MR.js +1 -0
  1920. package/node_modules/caniuse-lite/data/regions/MS.js +1 -0
  1921. package/node_modules/caniuse-lite/data/regions/MT.js +1 -0
  1922. package/node_modules/caniuse-lite/data/regions/MU.js +1 -0
  1923. package/node_modules/caniuse-lite/data/regions/MV.js +1 -0
  1924. package/node_modules/caniuse-lite/data/regions/MW.js +1 -0
  1925. package/node_modules/caniuse-lite/data/regions/MX.js +1 -0
  1926. package/node_modules/caniuse-lite/data/regions/MY.js +1 -0
  1927. package/node_modules/caniuse-lite/data/regions/MZ.js +1 -0
  1928. package/node_modules/caniuse-lite/data/regions/NA.js +1 -0
  1929. package/node_modules/caniuse-lite/data/regions/NC.js +1 -0
  1930. package/node_modules/caniuse-lite/data/regions/NE.js +1 -0
  1931. package/node_modules/caniuse-lite/data/regions/NF.js +1 -0
  1932. package/node_modules/caniuse-lite/data/regions/NG.js +1 -0
  1933. package/node_modules/caniuse-lite/data/regions/NI.js +1 -0
  1934. package/node_modules/caniuse-lite/data/regions/NL.js +1 -0
  1935. package/node_modules/caniuse-lite/data/regions/NO.js +1 -0
  1936. package/node_modules/caniuse-lite/data/regions/NP.js +1 -0
  1937. package/node_modules/caniuse-lite/data/regions/NR.js +1 -0
  1938. package/node_modules/caniuse-lite/data/regions/NU.js +1 -0
  1939. package/node_modules/caniuse-lite/data/regions/NZ.js +1 -0
  1940. package/node_modules/caniuse-lite/data/regions/OM.js +1 -0
  1941. package/node_modules/caniuse-lite/data/regions/PA.js +1 -0
  1942. package/node_modules/caniuse-lite/data/regions/PE.js +1 -0
  1943. package/node_modules/caniuse-lite/data/regions/PF.js +1 -0
  1944. package/node_modules/caniuse-lite/data/regions/PG.js +1 -0
  1945. package/node_modules/caniuse-lite/data/regions/PH.js +1 -0
  1946. package/node_modules/caniuse-lite/data/regions/PK.js +1 -0
  1947. package/node_modules/caniuse-lite/data/regions/PL.js +1 -0
  1948. package/node_modules/caniuse-lite/data/regions/PM.js +1 -0
  1949. package/node_modules/caniuse-lite/data/regions/PN.js +1 -0
  1950. package/node_modules/caniuse-lite/data/regions/PR.js +1 -0
  1951. package/node_modules/caniuse-lite/data/regions/PS.js +1 -0
  1952. package/node_modules/caniuse-lite/data/regions/PT.js +1 -0
  1953. package/node_modules/caniuse-lite/data/regions/PW.js +1 -0
  1954. package/node_modules/caniuse-lite/data/regions/PY.js +1 -0
  1955. package/node_modules/caniuse-lite/data/regions/QA.js +1 -0
  1956. package/node_modules/caniuse-lite/data/regions/RE.js +1 -0
  1957. package/node_modules/caniuse-lite/data/regions/RO.js +1 -0
  1958. package/node_modules/caniuse-lite/data/regions/RS.js +1 -0
  1959. package/node_modules/caniuse-lite/data/regions/RU.js +1 -0
  1960. package/node_modules/caniuse-lite/data/regions/RW.js +1 -0
  1961. package/node_modules/caniuse-lite/data/regions/SA.js +1 -0
  1962. package/node_modules/caniuse-lite/data/regions/SB.js +1 -0
  1963. package/node_modules/caniuse-lite/data/regions/SC.js +1 -0
  1964. package/node_modules/caniuse-lite/data/regions/SD.js +1 -0
  1965. package/node_modules/caniuse-lite/data/regions/SE.js +1 -0
  1966. package/node_modules/caniuse-lite/data/regions/SG.js +1 -0
  1967. package/node_modules/caniuse-lite/data/regions/SH.js +1 -0
  1968. package/node_modules/caniuse-lite/data/regions/SI.js +1 -0
  1969. package/node_modules/caniuse-lite/data/regions/SK.js +1 -0
  1970. package/node_modules/caniuse-lite/data/regions/SL.js +1 -0
  1971. package/node_modules/caniuse-lite/data/regions/SM.js +1 -0
  1972. package/node_modules/caniuse-lite/data/regions/SN.js +1 -0
  1973. package/node_modules/caniuse-lite/data/regions/SO.js +1 -0
  1974. package/node_modules/caniuse-lite/data/regions/SR.js +1 -0
  1975. package/node_modules/caniuse-lite/data/regions/ST.js +1 -0
  1976. package/node_modules/caniuse-lite/data/regions/SV.js +1 -0
  1977. package/node_modules/caniuse-lite/data/regions/SY.js +1 -0
  1978. package/node_modules/caniuse-lite/data/regions/SZ.js +1 -0
  1979. package/node_modules/caniuse-lite/data/regions/TC.js +1 -0
  1980. package/node_modules/caniuse-lite/data/regions/TD.js +1 -0
  1981. package/node_modules/caniuse-lite/data/regions/TG.js +1 -0
  1982. package/node_modules/caniuse-lite/data/regions/TH.js +1 -0
  1983. package/node_modules/caniuse-lite/data/regions/TJ.js +1 -0
  1984. package/node_modules/caniuse-lite/data/regions/TK.js +1 -0
  1985. package/node_modules/caniuse-lite/data/regions/TL.js +1 -0
  1986. package/node_modules/caniuse-lite/data/regions/TM.js +1 -0
  1987. package/node_modules/caniuse-lite/data/regions/TN.js +1 -0
  1988. package/node_modules/caniuse-lite/data/regions/TO.js +1 -0
  1989. package/node_modules/caniuse-lite/data/regions/TR.js +1 -0
  1990. package/node_modules/caniuse-lite/data/regions/TT.js +1 -0
  1991. package/node_modules/caniuse-lite/data/regions/TV.js +1 -0
  1992. package/node_modules/caniuse-lite/data/regions/TW.js +1 -0
  1993. package/node_modules/caniuse-lite/data/regions/TZ.js +1 -0
  1994. package/node_modules/caniuse-lite/data/regions/UA.js +1 -0
  1995. package/node_modules/caniuse-lite/data/regions/UG.js +1 -0
  1996. package/node_modules/caniuse-lite/data/regions/US.js +1 -0
  1997. package/node_modules/caniuse-lite/data/regions/UY.js +1 -0
  1998. package/node_modules/caniuse-lite/data/regions/UZ.js +1 -0
  1999. package/node_modules/caniuse-lite/data/regions/VA.js +1 -0
  2000. package/node_modules/caniuse-lite/data/regions/VC.js +1 -0
  2001. package/node_modules/caniuse-lite/data/regions/VE.js +1 -0
  2002. package/node_modules/caniuse-lite/data/regions/VG.js +1 -0
  2003. package/node_modules/caniuse-lite/data/regions/VI.js +1 -0
  2004. package/node_modules/caniuse-lite/data/regions/VN.js +1 -0
  2005. package/node_modules/caniuse-lite/data/regions/VU.js +1 -0
  2006. package/node_modules/caniuse-lite/data/regions/WF.js +1 -0
  2007. package/node_modules/caniuse-lite/data/regions/WS.js +1 -0
  2008. package/node_modules/caniuse-lite/data/regions/YE.js +1 -0
  2009. package/node_modules/caniuse-lite/data/regions/YT.js +1 -0
  2010. package/node_modules/caniuse-lite/data/regions/ZA.js +1 -0
  2011. package/node_modules/caniuse-lite/data/regions/ZM.js +1 -0
  2012. package/node_modules/caniuse-lite/data/regions/ZW.js +1 -0
  2013. package/node_modules/caniuse-lite/data/regions/alt-af.js +1 -0
  2014. package/node_modules/caniuse-lite/data/regions/alt-an.js +1 -0
  2015. package/node_modules/caniuse-lite/data/regions/alt-as.js +1 -0
  2016. package/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -0
  2017. package/node_modules/caniuse-lite/data/regions/alt-na.js +1 -0
  2018. package/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -0
  2019. package/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -0
  2020. package/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -0
  2021. package/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
  2022. package/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
  2023. package/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
  2024. package/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
  2025. package/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
  2026. package/node_modules/caniuse-lite/dist/unpacker/feature.js +48 -0
  2027. package/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
  2028. package/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
  2029. package/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
  2030. package/node_modules/caniuse-lite/package.json +34 -0
  2031. package/node_modules/chalk/index.js +228 -0
  2032. package/node_modules/chalk/index.js.flow +93 -0
  2033. package/node_modules/chalk/license +9 -0
  2034. package/node_modules/chalk/package.json +71 -0
  2035. package/node_modules/chalk/readme.md +314 -0
  2036. package/node_modules/chalk/templates.js +128 -0
  2037. package/node_modules/chalk/types/index.d.ts +97 -0
  2038. package/node_modules/clean-stack/index.d.ts +47 -0
  2039. package/node_modules/clean-stack/index.js +40 -0
  2040. package/node_modules/clean-stack/license +9 -0
  2041. package/node_modules/clean-stack/package.json +39 -0
  2042. package/node_modules/clean-stack/readme.md +76 -0
  2043. package/node_modules/cliui/CHANGELOG.md +76 -0
  2044. package/node_modules/cliui/LICENSE.txt +14 -0
  2045. package/node_modules/cliui/README.md +115 -0
  2046. package/node_modules/cliui/index.js +354 -0
  2047. package/node_modules/cliui/package.json +65 -0
  2048. package/node_modules/color-convert/CHANGELOG.md +54 -0
  2049. package/node_modules/color-convert/LICENSE +21 -0
  2050. package/node_modules/color-convert/README.md +68 -0
  2051. package/node_modules/color-convert/conversions.js +868 -0
  2052. package/node_modules/color-convert/index.js +78 -0
  2053. package/node_modules/color-convert/package.json +46 -0
  2054. package/node_modules/color-convert/route.js +97 -0
  2055. package/node_modules/color-name/.eslintrc.json +43 -0
  2056. package/node_modules/color-name/.npmignore +107 -0
  2057. package/node_modules/color-name/LICENSE +8 -0
  2058. package/node_modules/color-name/README.md +11 -0
  2059. package/node_modules/color-name/index.js +152 -0
  2060. package/node_modules/color-name/package.json +25 -0
  2061. package/node_modules/color-name/test.js +7 -0
  2062. package/node_modules/combined-stream/package.json +14 -46
  2063. package/node_modules/commander/package.json +20 -53
  2064. package/node_modules/commondir/LICENSE +24 -0
  2065. package/node_modules/commondir/example/dir.js +3 -0
  2066. package/node_modules/commondir/index.js +29 -0
  2067. package/node_modules/commondir/package.json +34 -0
  2068. package/node_modules/commondir/readme.markdown +48 -0
  2069. package/node_modules/commondir/test/dirs.js +55 -0
  2070. package/node_modules/concat-map/.travis.yml +4 -0
  2071. package/node_modules/concat-map/LICENSE +18 -0
  2072. package/node_modules/concat-map/README.markdown +62 -0
  2073. package/node_modules/concat-map/example/map.js +6 -0
  2074. package/node_modules/concat-map/index.js +13 -0
  2075. package/node_modules/concat-map/package.json +43 -0
  2076. package/node_modules/concat-map/test/map.js +39 -0
  2077. package/node_modules/concaveman/node_modules/quickselect/package.json +43 -0
  2078. package/node_modules/{@turf/collect → concaveman}/node_modules/rbush/README.md +22 -95
  2079. package/node_modules/{@turf/unkink-polygon → concaveman}/node_modules/rbush/index.js +131 -181
  2080. package/node_modules/concaveman/node_modules/rbush/package.json +56 -0
  2081. package/node_modules/concaveman/node_modules/rbush/rbush.js +574 -0
  2082. package/node_modules/concaveman/node_modules/rbush/rbush.min.js +1 -0
  2083. package/node_modules/concaveman/package.json +15 -46
  2084. package/node_modules/convert-source-map/LICENSE +23 -0
  2085. package/node_modules/convert-source-map/README.md +123 -0
  2086. package/node_modules/convert-source-map/index.js +179 -0
  2087. package/node_modules/convert-source-map/package.json +41 -0
  2088. package/node_modules/cross-spawn/CHANGELOG.md +130 -0
  2089. package/node_modules/cross-spawn/LICENSE +21 -0
  2090. package/node_modules/cross-spawn/README.md +96 -0
  2091. package/node_modules/cross-spawn/index.js +39 -0
  2092. package/node_modules/cross-spawn/lib/enoent.js +59 -0
  2093. package/node_modules/cross-spawn/lib/parse.js +91 -0
  2094. package/node_modules/cross-spawn/lib/util/escape.js +45 -0
  2095. package/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  2096. package/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  2097. package/node_modules/cross-spawn/package.json +73 -0
  2098. package/node_modules/d3-array/package.json +19 -47
  2099. package/node_modules/d3-geo/package.json +24 -52
  2100. package/node_modules/d3-voronoi/package.json +19 -47
  2101. package/node_modules/debug/LICENSE +20 -0
  2102. package/node_modules/debug/README.md +481 -0
  2103. package/node_modules/debug/package.json +59 -0
  2104. package/node_modules/debug/src/browser.js +269 -0
  2105. package/node_modules/debug/src/common.js +274 -0
  2106. package/node_modules/debug/src/index.js +10 -0
  2107. package/node_modules/debug/src/node.js +263 -0
  2108. package/node_modules/decamelize/index.js +13 -0
  2109. package/node_modules/decamelize/license +21 -0
  2110. package/node_modules/decamelize/package.json +38 -0
  2111. package/node_modules/decamelize/readme.md +48 -0
  2112. package/node_modules/deep-equal/package.json +34 -64
  2113. package/node_modules/default-require-extensions/js.js +8 -0
  2114. package/node_modules/default-require-extensions/json.js +14 -0
  2115. package/node_modules/default-require-extensions/license +11 -0
  2116. package/node_modules/default-require-extensions/package.json +43 -0
  2117. package/node_modules/default-require-extensions/readme.md +27 -0
  2118. package/node_modules/define-properties/.eslintrc +10 -3
  2119. package/node_modules/define-properties/.github/FUNDING.yml +12 -0
  2120. package/node_modules/define-properties/.nycrc +9 -0
  2121. package/node_modules/define-properties/CHANGELOG.md +39 -0
  2122. package/node_modules/define-properties/README.md +11 -13
  2123. package/node_modules/define-properties/index.js +12 -17
  2124. package/node_modules/define-properties/package.json +85 -95
  2125. package/node_modules/delayed-stream/package.json +14 -49
  2126. package/node_modules/density-clustering/package.json +46 -70
  2127. package/node_modules/earcut/README.md +12 -3
  2128. package/node_modules/earcut/dist/earcut.dev.js +47 -50
  2129. package/node_modules/earcut/dist/earcut.min.js +1 -1
  2130. package/node_modules/earcut/package.json +26 -60
  2131. package/node_modules/earcut/src/earcut.js +46 -49
  2132. package/node_modules/electron-to-chromium/CHANGELOG.md +14 -0
  2133. package/node_modules/electron-to-chromium/LICENSE +5 -0
  2134. package/node_modules/electron-to-chromium/README.md +186 -0
  2135. package/node_modules/electron-to-chromium/chromium-versions.js +57 -0
  2136. package/node_modules/electron-to-chromium/chromium-versions.json +1 -0
  2137. package/node_modules/electron-to-chromium/full-chromium-versions.js +2726 -0
  2138. package/node_modules/electron-to-chromium/full-chromium-versions.json +1 -0
  2139. package/node_modules/electron-to-chromium/full-versions.js +1994 -0
  2140. package/node_modules/electron-to-chromium/full-versions.json +1 -0
  2141. package/node_modules/electron-to-chromium/index.js +36 -0
  2142. package/node_modules/electron-to-chromium/package.json +44 -0
  2143. package/node_modules/electron-to-chromium/versions.js +129 -0
  2144. package/node_modules/electron-to-chromium/versions.json +1 -0
  2145. package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  2146. package/node_modules/emoji-regex/README.md +73 -0
  2147. package/node_modules/emoji-regex/es2015/index.js +6 -0
  2148. package/node_modules/emoji-regex/es2015/text.js +6 -0
  2149. package/node_modules/emoji-regex/index.d.ts +23 -0
  2150. package/node_modules/emoji-regex/index.js +6 -0
  2151. package/node_modules/emoji-regex/package.json +50 -0
  2152. package/node_modules/emoji-regex/text.js +6 -0
  2153. package/node_modules/es6-error/CHANGELOG.md +26 -0
  2154. package/node_modules/es6-error/LICENSE.md +21 -0
  2155. package/node_modules/es6-error/README.md +59 -0
  2156. package/node_modules/es6-error/es6/index.js +72 -0
  2157. package/node_modules/es6-error/lib/index.js +79 -0
  2158. package/node_modules/es6-error/package.json +48 -0
  2159. package/node_modules/es6-error/typings/index.d.ts +1 -0
  2160. package/node_modules/escalade/dist/index.js +22 -0
  2161. package/node_modules/escalade/dist/index.mjs +22 -0
  2162. package/node_modules/escalade/index.d.ts +3 -0
  2163. package/node_modules/escalade/license +9 -0
  2164. package/node_modules/escalade/package.json +61 -0
  2165. package/node_modules/escalade/readme.md +211 -0
  2166. package/node_modules/escalade/sync/index.d.ts +2 -0
  2167. package/node_modules/escalade/sync/index.js +18 -0
  2168. package/node_modules/escalade/sync/index.mjs +18 -0
  2169. package/node_modules/escape-string-regexp/index.js +11 -0
  2170. package/node_modules/escape-string-regexp/license +21 -0
  2171. package/node_modules/escape-string-regexp/package.json +41 -0
  2172. package/node_modules/escape-string-regexp/readme.md +27 -0
  2173. package/node_modules/esprima/ChangeLog +235 -0
  2174. package/node_modules/esprima/LICENSE.BSD +21 -0
  2175. package/node_modules/esprima/README.md +46 -0
  2176. package/node_modules/esprima/bin/esparse.js +139 -0
  2177. package/node_modules/esprima/bin/esvalidate.js +236 -0
  2178. package/node_modules/esprima/dist/esprima.js +6709 -0
  2179. package/node_modules/esprima/package.json +112 -0
  2180. package/node_modules/fast-xml-parser/LICENSE +21 -0
  2181. package/node_modules/fast-xml-parser/README.md +367 -0
  2182. package/node_modules/fast-xml-parser/cli.js +101 -0
  2183. package/node_modules/fast-xml-parser/package.json +94 -0
  2184. package/node_modules/fast-xml-parser/src/json2xml.js +274 -0
  2185. package/node_modules/fast-xml-parser/src/nimndata.js +144 -0
  2186. package/node_modules/fast-xml-parser/src/node2json.js +42 -0
  2187. package/node_modules/fast-xml-parser/src/node2json_str.js +63 -0
  2188. package/node_modules/fast-xml-parser/src/parser.d.ts +79 -0
  2189. package/node_modules/fast-xml-parser/src/parser.js +76 -0
  2190. package/node_modules/fast-xml-parser/src/read.js +92 -0
  2191. package/node_modules/fast-xml-parser/src/util.js +108 -0
  2192. package/node_modules/fast-xml-parser/src/validator.js +413 -0
  2193. package/node_modules/fast-xml-parser/src/xmlNode.js +17 -0
  2194. package/node_modules/fast-xml-parser/src/xmlstr2xmlnode.js +339 -0
  2195. package/node_modules/find-cache-dir/index.js +67 -0
  2196. package/node_modules/find-cache-dir/license +9 -0
  2197. package/node_modules/find-cache-dir/package.json +44 -0
  2198. package/node_modules/find-cache-dir/readme.md +123 -0
  2199. package/node_modules/find-up/index.d.ts +137 -0
  2200. package/node_modules/find-up/index.js +89 -0
  2201. package/node_modules/find-up/license +9 -0
  2202. package/node_modules/find-up/package.json +53 -0
  2203. package/node_modules/find-up/readme.md +156 -0
  2204. package/node_modules/follow-redirects/README.md +8 -1
  2205. package/node_modules/follow-redirects/index.js +83 -36
  2206. package/node_modules/follow-redirects/package.json +38 -74
  2207. package/node_modules/foreground-child/CHANGELOG.md +99 -0
  2208. package/node_modules/foreground-child/LICENSE +15 -0
  2209. package/node_modules/foreground-child/README.md +62 -0
  2210. package/node_modules/foreground-child/changelog.sh +10 -0
  2211. package/node_modules/foreground-child/index.js +133 -0
  2212. package/node_modules/foreground-child/package.json +40 -0
  2213. package/node_modules/form-data/package.json +37 -70
  2214. package/node_modules/fromentries/LICENSE +20 -0
  2215. package/node_modules/fromentries/README.md +70 -0
  2216. package/node_modules/fromentries/index.d.ts +3 -0
  2217. package/node_modules/fromentries/index.js +7 -0
  2218. package/node_modules/fromentries/package.json +58 -0
  2219. package/node_modules/fs.realpath/LICENSE +43 -0
  2220. package/node_modules/fs.realpath/README.md +33 -0
  2221. package/node_modules/fs.realpath/index.js +66 -0
  2222. package/node_modules/fs.realpath/old.js +303 -0
  2223. package/node_modules/fs.realpath/package.json +26 -0
  2224. package/node_modules/function-bind/package.json +23 -56
  2225. package/node_modules/functions-have-names/.editorconfig +20 -0
  2226. package/node_modules/functions-have-names/.eslintrc +19 -0
  2227. package/node_modules/functions-have-names/.github/FUNDING.yml +12 -0
  2228. package/node_modules/functions-have-names/.nycrc +9 -0
  2229. package/node_modules/functions-have-names/CHANGELOG.md +89 -0
  2230. package/node_modules/functions-have-names/LICENSE +21 -0
  2231. package/node_modules/functions-have-names/README.md +40 -0
  2232. package/node_modules/functions-have-names/index.js +31 -0
  2233. package/node_modules/functions-have-names/package.json +55 -0
  2234. package/node_modules/functions-have-names/test/index.js +65 -0
  2235. package/node_modules/gensync/LICENSE +7 -0
  2236. package/node_modules/gensync/README.md +196 -0
  2237. package/node_modules/gensync/index.js +373 -0
  2238. package/node_modules/gensync/index.js.flow +32 -0
  2239. package/node_modules/gensync/package.json +37 -0
  2240. package/node_modules/gensync/test/.babelrc +5 -0
  2241. package/node_modules/gensync/test/index.test.js +489 -0
  2242. package/node_modules/geojson-equality/package.json +23 -55
  2243. package/node_modules/geojson-rbush/node_modules/quickselect/package.json +43 -0
  2244. package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/rbush/README.md +22 -95
  2245. package/node_modules/{@turf/collect → geojson-rbush}/node_modules/rbush/index.js +131 -181
  2246. package/node_modules/geojson-rbush/node_modules/rbush/package.json +56 -0
  2247. package/node_modules/geojson-rbush/node_modules/rbush/rbush.js +574 -0
  2248. package/node_modules/geojson-rbush/node_modules/rbush/rbush.min.js +1 -0
  2249. package/node_modules/geojson-rbush/package.json +32 -71
  2250. package/node_modules/get-caller-file/LICENSE.md +6 -0
  2251. package/node_modules/get-caller-file/README.md +41 -0
  2252. package/node_modules/get-caller-file/index.d.ts +2 -0
  2253. package/node_modules/get-caller-file/index.js +22 -0
  2254. package/node_modules/get-caller-file/index.js.map +1 -0
  2255. package/node_modules/get-caller-file/package.json +42 -0
  2256. package/node_modules/get-intrinsic/.eslintrc +3 -8
  2257. package/node_modules/get-intrinsic/.nycrc +0 -4
  2258. package/node_modules/get-intrinsic/CHANGELOG.md +53 -0
  2259. package/node_modules/get-intrinsic/README.md +7 -1
  2260. package/node_modules/get-intrinsic/index.js +29 -8
  2261. package/node_modules/get-intrinsic/package.json +91 -104
  2262. package/node_modules/get-intrinsic/test/GetIntrinsic.js +26 -12
  2263. package/node_modules/get-package-type/CHANGELOG.md +10 -0
  2264. package/node_modules/get-package-type/LICENSE +21 -0
  2265. package/node_modules/get-package-type/README.md +32 -0
  2266. package/node_modules/get-package-type/async.cjs +52 -0
  2267. package/node_modules/get-package-type/cache.cjs +3 -0
  2268. package/node_modules/get-package-type/index.cjs +7 -0
  2269. package/node_modules/get-package-type/is-node-modules.cjs +15 -0
  2270. package/node_modules/get-package-type/package.json +35 -0
  2271. package/node_modules/get-package-type/sync.cjs +42 -0
  2272. package/node_modules/glob/LICENSE +21 -0
  2273. package/node_modules/glob/README.md +378 -0
  2274. package/node_modules/glob/common.js +238 -0
  2275. package/node_modules/glob/glob.js +790 -0
  2276. package/node_modules/glob/package.json +55 -0
  2277. package/node_modules/glob/sync.js +486 -0
  2278. package/node_modules/globals/globals.json +1563 -0
  2279. package/node_modules/globals/index.js +2 -0
  2280. package/node_modules/globals/license +9 -0
  2281. package/node_modules/globals/package.json +41 -0
  2282. package/node_modules/globals/readme.md +41 -0
  2283. package/node_modules/graceful-fs/LICENSE +15 -0
  2284. package/node_modules/graceful-fs/README.md +143 -0
  2285. package/node_modules/graceful-fs/clone.js +23 -0
  2286. package/node_modules/graceful-fs/graceful-fs.js +448 -0
  2287. package/node_modules/graceful-fs/legacy-streams.js +118 -0
  2288. package/node_modules/graceful-fs/package.json +53 -0
  2289. package/node_modules/graceful-fs/polyfills.js +355 -0
  2290. package/node_modules/has/package.json +21 -46
  2291. package/node_modules/has-flag/index.js +8 -0
  2292. package/node_modules/has-flag/license +9 -0
  2293. package/node_modules/has-flag/package.json +44 -0
  2294. package/node_modules/has-flag/readme.md +70 -0
  2295. package/node_modules/has-property-descriptors/.eslintrc +13 -0
  2296. package/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
  2297. package/node_modules/has-property-descriptors/.nycrc +9 -0
  2298. package/node_modules/has-property-descriptors/CHANGELOG.md +16 -0
  2299. package/node_modules/has-property-descriptors/LICENSE +21 -0
  2300. package/node_modules/has-property-descriptors/README.md +43 -0
  2301. package/node_modules/has-property-descriptors/index.js +33 -0
  2302. package/node_modules/has-property-descriptors/package.json +70 -0
  2303. package/node_modules/has-property-descriptors/test/index.js +57 -0
  2304. package/node_modules/has-proto/.eslintrc +5 -0
  2305. package/node_modules/has-proto/.github/FUNDING.yml +12 -0
  2306. package/node_modules/has-proto/CHANGELOG.md +23 -0
  2307. package/node_modules/has-proto/LICENSE +21 -0
  2308. package/node_modules/has-proto/README.md +38 -0
  2309. package/node_modules/has-proto/index.js +11 -0
  2310. package/node_modules/has-proto/package.json +74 -0
  2311. package/node_modules/has-proto/test/index.js +19 -0
  2312. package/node_modules/has-symbols/package.json +99 -125
  2313. package/node_modules/has-tostringtag/package.json +82 -109
  2314. package/node_modules/hasha/index.d.ts +167 -0
  2315. package/node_modules/hasha/index.js +150 -0
  2316. package/node_modules/hasha/license +9 -0
  2317. package/node_modules/hasha/package.json +62 -0
  2318. package/node_modules/hasha/readme.md +129 -0
  2319. package/node_modules/hasha/thread.js +57 -0
  2320. package/node_modules/html-escaper/LICENSE.txt +19 -0
  2321. package/node_modules/html-escaper/README.md +97 -0
  2322. package/node_modules/html-escaper/cjs/index.js +65 -0
  2323. package/node_modules/html-escaper/cjs/package.json +1 -0
  2324. package/node_modules/html-escaper/esm/index.js +62 -0
  2325. package/node_modules/html-escaper/index.js +70 -0
  2326. package/node_modules/html-escaper/min.js +1 -0
  2327. package/node_modules/html-escaper/package.json +42 -0
  2328. package/node_modules/html-escaper/test/index.js +23 -0
  2329. package/node_modules/html-escaper/test/package.json +1 -0
  2330. package/node_modules/imurmurhash/README.md +122 -0
  2331. package/node_modules/imurmurhash/imurmurhash.js +138 -0
  2332. package/node_modules/imurmurhash/imurmurhash.min.js +12 -0
  2333. package/node_modules/imurmurhash/package.json +40 -0
  2334. package/node_modules/indent-string/index.d.ts +42 -0
  2335. package/node_modules/indent-string/index.js +35 -0
  2336. package/node_modules/indent-string/license +9 -0
  2337. package/node_modules/indent-string/package.json +37 -0
  2338. package/node_modules/indent-string/readme.md +70 -0
  2339. package/node_modules/inflight/LICENSE +15 -0
  2340. package/node_modules/inflight/README.md +37 -0
  2341. package/node_modules/inflight/inflight.js +54 -0
  2342. package/node_modules/inflight/package.json +29 -0
  2343. package/node_modules/inherits/LICENSE +16 -0
  2344. package/node_modules/inherits/README.md +42 -0
  2345. package/node_modules/inherits/inherits.js +9 -0
  2346. package/node_modules/inherits/inherits_browser.js +27 -0
  2347. package/node_modules/inherits/package.json +29 -0
  2348. package/node_modules/is-arguments/package.json +89 -114
  2349. package/node_modules/is-date-object/package.json +77 -108
  2350. package/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  2351. package/node_modules/is-fullwidth-code-point/index.js +50 -0
  2352. package/node_modules/is-fullwidth-code-point/license +9 -0
  2353. package/node_modules/is-fullwidth-code-point/package.json +42 -0
  2354. package/node_modules/is-fullwidth-code-point/readme.md +39 -0
  2355. package/node_modules/is-regex/package.json +84 -112
  2356. package/node_modules/is-stream/index.d.ts +79 -0
  2357. package/node_modules/is-stream/index.js +28 -0
  2358. package/node_modules/is-stream/license +9 -0
  2359. package/node_modules/is-stream/package.json +42 -0
  2360. package/node_modules/is-stream/readme.md +60 -0
  2361. package/node_modules/is-typedarray/LICENSE.md +18 -0
  2362. package/node_modules/is-typedarray/README.md +16 -0
  2363. package/node_modules/is-typedarray/index.js +41 -0
  2364. package/node_modules/is-typedarray/package.json +30 -0
  2365. package/node_modules/is-typedarray/test.js +34 -0
  2366. package/node_modules/is-windows/LICENSE +21 -0
  2367. package/node_modules/is-windows/README.md +95 -0
  2368. package/node_modules/is-windows/index.js +27 -0
  2369. package/node_modules/is-windows/package.json +71 -0
  2370. package/node_modules/isexe/.npmignore +2 -0
  2371. package/node_modules/isexe/LICENSE +15 -0
  2372. package/node_modules/isexe/README.md +51 -0
  2373. package/node_modules/isexe/index.js +57 -0
  2374. package/node_modules/isexe/mode.js +41 -0
  2375. package/node_modules/isexe/package.json +31 -0
  2376. package/node_modules/isexe/test/basic.js +221 -0
  2377. package/node_modules/isexe/windows.js +42 -0
  2378. package/node_modules/istanbul-lib-coverage/CHANGELOG.md +193 -0
  2379. package/node_modules/istanbul-lib-coverage/LICENSE +24 -0
  2380. package/node_modules/istanbul-lib-coverage/README.md +29 -0
  2381. package/node_modules/istanbul-lib-coverage/index.js +64 -0
  2382. package/node_modules/istanbul-lib-coverage/lib/coverage-map.js +134 -0
  2383. package/node_modules/istanbul-lib-coverage/lib/coverage-summary.js +112 -0
  2384. package/node_modules/istanbul-lib-coverage/lib/data-properties.js +12 -0
  2385. package/node_modules/istanbul-lib-coverage/lib/file-coverage.js +345 -0
  2386. package/node_modules/istanbul-lib-coverage/lib/percent.js +15 -0
  2387. package/node_modules/istanbul-lib-coverage/package.json +47 -0
  2388. package/node_modules/istanbul-lib-hook/CHANGELOG.md +184 -0
  2389. package/node_modules/istanbul-lib-hook/LICENSE +24 -0
  2390. package/node_modules/istanbul-lib-hook/README.md +6 -0
  2391. package/node_modules/istanbul-lib-hook/index.js +6 -0
  2392. package/node_modules/istanbul-lib-hook/lib/hook.js +237 -0
  2393. package/node_modules/istanbul-lib-hook/package.json +40 -0
  2394. package/node_modules/istanbul-lib-instrument/CHANGELOG.md +571 -0
  2395. package/node_modules/istanbul-lib-instrument/LICENSE +24 -0
  2396. package/node_modules/istanbul-lib-instrument/README.md +21 -0
  2397. package/node_modules/istanbul-lib-instrument/dist/constants.js +22 -0
  2398. package/node_modules/istanbul-lib-instrument/dist/index.js +42 -0
  2399. package/node_modules/istanbul-lib-instrument/dist/instrumenter.js +182 -0
  2400. package/node_modules/istanbul-lib-instrument/dist/read-coverage.js +87 -0
  2401. package/node_modules/istanbul-lib-instrument/dist/source-coverage.js +121 -0
  2402. package/node_modules/istanbul-lib-instrument/dist/visitor.js +683 -0
  2403. package/node_modules/istanbul-lib-instrument/package.json +54 -0
  2404. package/node_modules/istanbul-lib-processinfo/LICENSE +15 -0
  2405. package/node_modules/istanbul-lib-processinfo/README.md +188 -0
  2406. package/node_modules/istanbul-lib-processinfo/index.js +347 -0
  2407. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/CHANGELOG.md +229 -0
  2408. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/CONTRIBUTING.md +18 -0
  2409. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/LICENSE.md +9 -0
  2410. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/README.md +505 -0
  2411. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/bin/uuid +2 -0
  2412. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/index.js +9 -0
  2413. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  2414. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  2415. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  2416. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  2417. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/rng.js +19 -0
  2418. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  2419. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
  2420. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  2421. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  2422. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v35.js +64 -0
  2423. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v4.js +24 -0
  2424. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  2425. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  2426. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-browser/version.js +11 -0
  2427. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/index.js +9 -0
  2428. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/md5.js +13 -0
  2429. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/nil.js +1 -0
  2430. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/parse.js +35 -0
  2431. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/regex.js +1 -0
  2432. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/rng.js +12 -0
  2433. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  2434. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/stringify.js +29 -0
  2435. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v1.js +95 -0
  2436. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v3.js +4 -0
  2437. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v35.js +64 -0
  2438. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v4.js +24 -0
  2439. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/v5.js +4 -0
  2440. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/validate.js +7 -0
  2441. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/esm-node/version.js +11 -0
  2442. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/index.js +79 -0
  2443. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/md5-browser.js +223 -0
  2444. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/md5.js +23 -0
  2445. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/nil.js +8 -0
  2446. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/parse.js +45 -0
  2447. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/regex.js +8 -0
  2448. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/rng-browser.js +26 -0
  2449. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/rng.js +24 -0
  2450. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/sha1-browser.js +104 -0
  2451. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/sha1.js +23 -0
  2452. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/stringify.js +39 -0
  2453. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/uuid-bin.js +85 -0
  2454. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v1.js +107 -0
  2455. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v3.js +16 -0
  2456. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v35.js +78 -0
  2457. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v4.js +37 -0
  2458. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/v5.js +16 -0
  2459. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/validate.js +17 -0
  2460. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/dist/version.js +21 -0
  2461. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/package.json +135 -0
  2462. package/node_modules/istanbul-lib-processinfo/node_modules/uuid/wrapper.mjs +10 -0
  2463. package/node_modules/istanbul-lib-processinfo/package.json +42 -0
  2464. package/node_modules/istanbul-lib-report/CHANGELOG.md +192 -0
  2465. package/node_modules/istanbul-lib-report/LICENSE +24 -0
  2466. package/node_modules/istanbul-lib-report/README.md +43 -0
  2467. package/node_modules/istanbul-lib-report/index.js +40 -0
  2468. package/node_modules/istanbul-lib-report/lib/context.js +132 -0
  2469. package/node_modules/istanbul-lib-report/lib/file-writer.js +189 -0
  2470. package/node_modules/istanbul-lib-report/lib/path.js +169 -0
  2471. package/node_modules/istanbul-lib-report/lib/report-base.js +16 -0
  2472. package/node_modules/istanbul-lib-report/lib/summarizer-factory.js +284 -0
  2473. package/node_modules/istanbul-lib-report/lib/tree.js +137 -0
  2474. package/node_modules/istanbul-lib-report/lib/watermarks.js +15 -0
  2475. package/node_modules/istanbul-lib-report/lib/xml-writer.js +90 -0
  2476. package/node_modules/istanbul-lib-report/node_modules/has-flag/index.d.ts +39 -0
  2477. package/node_modules/istanbul-lib-report/node_modules/has-flag/index.js +8 -0
  2478. package/node_modules/istanbul-lib-report/node_modules/has-flag/license +9 -0
  2479. package/node_modules/istanbul-lib-report/node_modules/has-flag/package.json +46 -0
  2480. package/node_modules/istanbul-lib-report/node_modules/has-flag/readme.md +89 -0
  2481. package/node_modules/istanbul-lib-report/node_modules/lru-cache/LICENSE +15 -0
  2482. package/node_modules/istanbul-lib-report/node_modules/lru-cache/README.md +166 -0
  2483. package/node_modules/istanbul-lib-report/node_modules/lru-cache/index.js +334 -0
  2484. package/node_modules/istanbul-lib-report/node_modules/lru-cache/package.json +34 -0
  2485. package/node_modules/istanbul-lib-report/node_modules/make-dir/index.d.ts +66 -0
  2486. package/node_modules/istanbul-lib-report/node_modules/make-dir/index.js +155 -0
  2487. package/node_modules/istanbul-lib-report/node_modules/make-dir/license +9 -0
  2488. package/node_modules/istanbul-lib-report/node_modules/make-dir/package.json +63 -0
  2489. package/node_modules/istanbul-lib-report/node_modules/make-dir/readme.md +125 -0
  2490. package/node_modules/istanbul-lib-report/node_modules/semver/LICENSE +15 -0
  2491. package/node_modules/istanbul-lib-report/node_modules/semver/README.md +637 -0
  2492. package/node_modules/istanbul-lib-report/node_modules/semver/bin/semver.js +197 -0
  2493. package/node_modules/istanbul-lib-report/node_modules/semver/classes/comparator.js +141 -0
  2494. package/node_modules/istanbul-lib-report/node_modules/semver/classes/index.js +5 -0
  2495. package/node_modules/istanbul-lib-report/node_modules/semver/classes/range.js +539 -0
  2496. package/node_modules/istanbul-lib-report/node_modules/semver/classes/semver.js +302 -0
  2497. package/node_modules/istanbul-lib-report/node_modules/semver/functions/clean.js +6 -0
  2498. package/node_modules/istanbul-lib-report/node_modules/semver/functions/cmp.js +52 -0
  2499. package/node_modules/istanbul-lib-report/node_modules/semver/functions/coerce.js +52 -0
  2500. package/node_modules/istanbul-lib-report/node_modules/semver/functions/compare-build.js +7 -0
  2501. package/node_modules/istanbul-lib-report/node_modules/semver/functions/compare-loose.js +3 -0
  2502. package/node_modules/istanbul-lib-report/node_modules/semver/functions/compare.js +5 -0
  2503. package/node_modules/istanbul-lib-report/node_modules/semver/functions/diff.js +65 -0
  2504. package/node_modules/istanbul-lib-report/node_modules/semver/functions/eq.js +3 -0
  2505. package/node_modules/istanbul-lib-report/node_modules/semver/functions/gt.js +3 -0
  2506. package/node_modules/istanbul-lib-report/node_modules/semver/functions/gte.js +3 -0
  2507. package/node_modules/istanbul-lib-report/node_modules/semver/functions/inc.js +19 -0
  2508. package/node_modules/istanbul-lib-report/node_modules/semver/functions/lt.js +3 -0
  2509. package/node_modules/istanbul-lib-report/node_modules/semver/functions/lte.js +3 -0
  2510. package/node_modules/istanbul-lib-report/node_modules/semver/functions/major.js +3 -0
  2511. package/node_modules/istanbul-lib-report/node_modules/semver/functions/minor.js +3 -0
  2512. package/node_modules/istanbul-lib-report/node_modules/semver/functions/neq.js +3 -0
  2513. package/node_modules/istanbul-lib-report/node_modules/semver/functions/parse.js +16 -0
  2514. package/node_modules/istanbul-lib-report/node_modules/semver/functions/patch.js +3 -0
  2515. package/node_modules/istanbul-lib-report/node_modules/semver/functions/prerelease.js +6 -0
  2516. package/node_modules/istanbul-lib-report/node_modules/semver/functions/rcompare.js +3 -0
  2517. package/node_modules/istanbul-lib-report/node_modules/semver/functions/rsort.js +3 -0
  2518. package/node_modules/istanbul-lib-report/node_modules/semver/functions/satisfies.js +10 -0
  2519. package/node_modules/istanbul-lib-report/node_modules/semver/functions/sort.js +3 -0
  2520. package/node_modules/istanbul-lib-report/node_modules/semver/functions/valid.js +6 -0
  2521. package/node_modules/istanbul-lib-report/node_modules/semver/index.js +89 -0
  2522. package/node_modules/istanbul-lib-report/node_modules/semver/internal/constants.js +35 -0
  2523. package/node_modules/istanbul-lib-report/node_modules/semver/internal/debug.js +9 -0
  2524. package/node_modules/istanbul-lib-report/node_modules/semver/internal/identifiers.js +23 -0
  2525. package/node_modules/istanbul-lib-report/node_modules/semver/internal/parse-options.js +15 -0
  2526. package/node_modules/istanbul-lib-report/node_modules/semver/internal/re.js +212 -0
  2527. package/node_modules/istanbul-lib-report/node_modules/semver/package.json +87 -0
  2528. package/node_modules/istanbul-lib-report/node_modules/semver/preload.js +2 -0
  2529. package/node_modules/istanbul-lib-report/node_modules/semver/range.bnf +16 -0
  2530. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/gtr.js +4 -0
  2531. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/intersects.js +7 -0
  2532. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/ltr.js +4 -0
  2533. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/max-satisfying.js +25 -0
  2534. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/min-satisfying.js +24 -0
  2535. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/min-version.js +61 -0
  2536. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/outside.js +80 -0
  2537. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/simplify.js +47 -0
  2538. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/subset.js +247 -0
  2539. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/to-comparators.js +8 -0
  2540. package/node_modules/istanbul-lib-report/node_modules/semver/ranges/valid.js +11 -0
  2541. package/node_modules/istanbul-lib-report/node_modules/supports-color/browser.js +5 -0
  2542. package/node_modules/istanbul-lib-report/node_modules/supports-color/index.js +135 -0
  2543. package/node_modules/istanbul-lib-report/node_modules/supports-color/license +9 -0
  2544. package/node_modules/istanbul-lib-report/node_modules/supports-color/package.json +53 -0
  2545. package/node_modules/istanbul-lib-report/node_modules/supports-color/readme.md +76 -0
  2546. package/node_modules/istanbul-lib-report/node_modules/yallist/LICENSE +15 -0
  2547. package/node_modules/istanbul-lib-report/node_modules/yallist/README.md +204 -0
  2548. package/node_modules/istanbul-lib-report/node_modules/yallist/iterator.js +8 -0
  2549. package/node_modules/istanbul-lib-report/node_modules/yallist/package.json +29 -0
  2550. package/node_modules/istanbul-lib-report/node_modules/yallist/yallist.js +426 -0
  2551. package/node_modules/istanbul-lib-report/package.json +44 -0
  2552. package/node_modules/istanbul-lib-source-maps/CHANGELOG.md +295 -0
  2553. package/node_modules/istanbul-lib-source-maps/LICENSE +24 -0
  2554. package/node_modules/istanbul-lib-source-maps/README.md +11 -0
  2555. package/node_modules/istanbul-lib-source-maps/index.js +15 -0
  2556. package/node_modules/istanbul-lib-source-maps/lib/get-mapping.js +182 -0
  2557. package/node_modules/istanbul-lib-source-maps/lib/map-store.js +226 -0
  2558. package/node_modules/istanbul-lib-source-maps/lib/mapped.js +113 -0
  2559. package/node_modules/istanbul-lib-source-maps/lib/pathutils.js +21 -0
  2560. package/node_modules/istanbul-lib-source-maps/lib/transform-utils.js +21 -0
  2561. package/node_modules/istanbul-lib-source-maps/lib/transformer.js +147 -0
  2562. package/node_modules/istanbul-lib-source-maps/package.json +45 -0
  2563. package/node_modules/istanbul-reports/CHANGELOG.md +457 -0
  2564. package/node_modules/istanbul-reports/LICENSE +24 -0
  2565. package/node_modules/istanbul-reports/README.md +13 -0
  2566. package/node_modules/istanbul-reports/index.js +24 -0
  2567. package/node_modules/istanbul-reports/lib/clover/index.js +163 -0
  2568. package/node_modules/istanbul-reports/lib/cobertura/index.js +151 -0
  2569. package/node_modules/istanbul-reports/lib/html/annotator.js +305 -0
  2570. package/node_modules/istanbul-reports/lib/html/assets/base.css +224 -0
  2571. package/node_modules/istanbul-reports/lib/html/assets/block-navigation.js +86 -0
  2572. package/node_modules/istanbul-reports/lib/html/assets/favicon.png +0 -0
  2573. package/node_modules/istanbul-reports/lib/html/assets/sort-arrow-sprite.png +0 -0
  2574. package/node_modules/istanbul-reports/lib/html/assets/sorter.js +195 -0
  2575. package/node_modules/istanbul-reports/lib/html/assets/vendor/prettify.css +1 -0
  2576. package/node_modules/istanbul-reports/lib/html/assets/vendor/prettify.js +1 -0
  2577. package/node_modules/istanbul-reports/lib/html/index.js +421 -0
  2578. package/node_modules/istanbul-reports/lib/html/insertion-text.js +114 -0
  2579. package/node_modules/istanbul-reports/lib/html-spa/.babelrc +3 -0
  2580. package/node_modules/istanbul-reports/lib/html-spa/assets/bundle.js +30 -0
  2581. package/node_modules/istanbul-reports/lib/html-spa/assets/sort-arrow-sprite.png +0 -0
  2582. package/node_modules/istanbul-reports/lib/html-spa/assets/spa.css +298 -0
  2583. package/node_modules/istanbul-reports/lib/html-spa/index.js +176 -0
  2584. package/node_modules/istanbul-reports/lib/html-spa/src/fileBreadcrumbs.js +31 -0
  2585. package/node_modules/istanbul-reports/lib/html-spa/src/filterToggle.js +50 -0
  2586. package/node_modules/istanbul-reports/lib/html-spa/src/flattenToggle.js +25 -0
  2587. package/node_modules/istanbul-reports/lib/html-spa/src/getChildData.js +155 -0
  2588. package/node_modules/istanbul-reports/lib/html-spa/src/index.js +160 -0
  2589. package/node_modules/istanbul-reports/lib/html-spa/src/routing.js +52 -0
  2590. package/node_modules/istanbul-reports/lib/html-spa/src/summaryHeader.js +63 -0
  2591. package/node_modules/istanbul-reports/lib/html-spa/src/summaryTableHeader.js +130 -0
  2592. package/node_modules/istanbul-reports/lib/html-spa/src/summaryTableLine.js +159 -0
  2593. package/node_modules/istanbul-reports/lib/html-spa/webpack.config.js +22 -0
  2594. package/node_modules/istanbul-reports/lib/json/index.js +44 -0
  2595. package/node_modules/istanbul-reports/lib/json-summary/index.js +56 -0
  2596. package/node_modules/istanbul-reports/lib/lcov/index.js +33 -0
  2597. package/node_modules/istanbul-reports/lib/lcovonly/index.js +77 -0
  2598. package/node_modules/istanbul-reports/lib/none/index.js +10 -0
  2599. package/node_modules/istanbul-reports/lib/teamcity/index.js +67 -0
  2600. package/node_modules/istanbul-reports/lib/text/index.js +298 -0
  2601. package/node_modules/istanbul-reports/lib/text-lcov/index.js +17 -0
  2602. package/node_modules/istanbul-reports/lib/text-summary/index.js +62 -0
  2603. package/node_modules/istanbul-reports/package.json +60 -0
  2604. package/node_modules/js-tokens/CHANGELOG.md +151 -0
  2605. package/node_modules/js-tokens/LICENSE +21 -0
  2606. package/node_modules/js-tokens/README.md +240 -0
  2607. package/node_modules/js-tokens/index.js +23 -0
  2608. package/node_modules/js-tokens/package.json +30 -0
  2609. package/node_modules/js-yaml/CHANGELOG.md +557 -0
  2610. package/node_modules/js-yaml/LICENSE +21 -0
  2611. package/node_modules/js-yaml/README.md +299 -0
  2612. package/node_modules/js-yaml/bin/js-yaml.js +132 -0
  2613. package/node_modules/js-yaml/dist/js-yaml.js +3989 -0
  2614. package/node_modules/js-yaml/dist/js-yaml.min.js +1 -0
  2615. package/node_modules/js-yaml/index.js +7 -0
  2616. package/node_modules/js-yaml/lib/js-yaml/common.js +59 -0
  2617. package/node_modules/js-yaml/lib/js-yaml/dumper.js +850 -0
  2618. package/node_modules/js-yaml/lib/js-yaml/exception.js +43 -0
  2619. package/node_modules/js-yaml/lib/js-yaml/loader.js +1644 -0
  2620. package/node_modules/js-yaml/lib/js-yaml/mark.js +76 -0
  2621. package/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
  2622. package/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
  2623. package/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
  2624. package/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
  2625. package/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
  2626. package/node_modules/js-yaml/lib/js-yaml/schema.js +108 -0
  2627. package/node_modules/js-yaml/lib/js-yaml/type/binary.js +138 -0
  2628. package/node_modules/js-yaml/lib/js-yaml/type/bool.js +35 -0
  2629. package/node_modules/js-yaml/lib/js-yaml/type/float.js +116 -0
  2630. package/node_modules/js-yaml/lib/js-yaml/type/int.js +173 -0
  2631. package/node_modules/js-yaml/lib/js-yaml/type/js/function.js +93 -0
  2632. package/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +60 -0
  2633. package/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +28 -0
  2634. package/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
  2635. package/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
  2636. package/node_modules/js-yaml/lib/js-yaml/type/null.js +34 -0
  2637. package/node_modules/js-yaml/lib/js-yaml/type/omap.js +44 -0
  2638. package/node_modules/js-yaml/lib/js-yaml/type/pairs.js +53 -0
  2639. package/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
  2640. package/node_modules/js-yaml/lib/js-yaml/type/set.js +29 -0
  2641. package/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
  2642. package/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +88 -0
  2643. package/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
  2644. package/node_modules/js-yaml/lib/js-yaml.js +39 -0
  2645. package/node_modules/js-yaml/package.json +49 -0
  2646. package/node_modules/jsesc/LICENSE-MIT.txt +20 -0
  2647. package/node_modules/jsesc/README.md +421 -0
  2648. package/node_modules/jsesc/bin/jsesc +148 -0
  2649. package/node_modules/jsesc/jsesc.js +329 -0
  2650. package/node_modules/jsesc/man/jsesc.1 +94 -0
  2651. package/node_modules/jsesc/package.json +54 -0
  2652. package/node_modules/json5/LICENSE.md +23 -0
  2653. package/node_modules/json5/README.md +282 -0
  2654. package/node_modules/json5/dist/index.js +1737 -0
  2655. package/node_modules/json5/dist/index.min.js +1 -0
  2656. package/node_modules/json5/dist/index.min.mjs +1 -0
  2657. package/node_modules/json5/dist/index.mjs +1426 -0
  2658. package/node_modules/json5/lib/cli.js +152 -0
  2659. package/node_modules/json5/lib/index.d.ts +4 -0
  2660. package/node_modules/json5/lib/index.js +9 -0
  2661. package/node_modules/json5/lib/parse.d.ts +15 -0
  2662. package/node_modules/json5/lib/parse.js +1114 -0
  2663. package/node_modules/json5/lib/register.js +13 -0
  2664. package/node_modules/json5/lib/require.js +4 -0
  2665. package/node_modules/json5/lib/stringify.d.ts +89 -0
  2666. package/node_modules/json5/lib/stringify.js +261 -0
  2667. package/node_modules/json5/lib/unicode.d.ts +3 -0
  2668. package/node_modules/json5/lib/unicode.js +4 -0
  2669. package/node_modules/json5/lib/util.d.ts +5 -0
  2670. package/node_modules/json5/lib/util.js +35 -0
  2671. package/node_modules/json5/package.json +72 -0
  2672. package/node_modules/locate-path/index.d.ts +83 -0
  2673. package/node_modules/locate-path/index.js +65 -0
  2674. package/node_modules/locate-path/license +9 -0
  2675. package/node_modules/locate-path/package.json +45 -0
  2676. package/node_modules/locate-path/readme.md +122 -0
  2677. package/node_modules/lodash.flattendeep/LICENSE +47 -0
  2678. package/node_modules/lodash.flattendeep/README.md +18 -0
  2679. package/node_modules/lodash.flattendeep/index.js +350 -0
  2680. package/node_modules/lodash.flattendeep/package.json +17 -0
  2681. package/node_modules/long/LICENSE +202 -0
  2682. package/node_modules/long/README.md +280 -0
  2683. package/node_modules/long/index.d.ts +457 -0
  2684. package/node_modules/long/index.js +1467 -0
  2685. package/node_modules/long/package.json +50 -0
  2686. package/node_modules/long/umd/index.d.ts +2 -0
  2687. package/node_modules/long/umd/index.js +1432 -0
  2688. package/node_modules/long/umd/package.json +3 -0
  2689. package/node_modules/lru-cache/LICENSE +15 -0
  2690. package/node_modules/lru-cache/README.md +166 -0
  2691. package/node_modules/lru-cache/index.js +334 -0
  2692. package/node_modules/lru-cache/package.json +32 -0
  2693. package/node_modules/make-dir/index.d.ts +66 -0
  2694. package/node_modules/make-dir/index.js +156 -0
  2695. package/node_modules/make-dir/license +9 -0
  2696. package/node_modules/make-dir/package.json +59 -0
  2697. package/node_modules/make-dir/readme.md +125 -0
  2698. package/node_modules/mime-db/HISTORY.md +8 -0
  2699. package/node_modules/mime-db/LICENSE +19 -18
  2700. package/node_modules/mime-db/README.md +1 -1
  2701. package/node_modules/mime-db/db.json +54 -6
  2702. package/node_modules/mime-db/index.js +1 -0
  2703. package/node_modules/mime-db/package.json +24 -66
  2704. package/node_modules/mime-types/HISTORY.md +9 -0
  2705. package/node_modules/mime-types/README.md +1 -1
  2706. package/node_modules/mime-types/package.json +19 -62
  2707. package/node_modules/minimatch/LICENSE +15 -0
  2708. package/node_modules/minimatch/README.md +230 -0
  2709. package/node_modules/minimatch/minimatch.js +947 -0
  2710. package/node_modules/minimatch/package.json +33 -0
  2711. package/node_modules/ms/index.js +162 -0
  2712. package/node_modules/ms/license.md +21 -0
  2713. package/node_modules/ms/package.json +37 -0
  2714. package/node_modules/ms/readme.md +60 -0
  2715. package/node_modules/node-preload/CHANGELOG.md +61 -0
  2716. package/node_modules/node-preload/LICENSE +21 -0
  2717. package/node_modules/node-preload/README.md +47 -0
  2718. package/node_modules/node-preload/generate-require.js +31 -0
  2719. package/node_modules/node-preload/hook-spawn.js +21 -0
  2720. package/node_modules/node-preload/index.js +5 -0
  2721. package/node_modules/node-preload/internal-preload-module.js +25 -0
  2722. package/node_modules/node-preload/package.json +50 -0
  2723. package/node_modules/node-preload/preload-list-env.js +8 -0
  2724. package/node_modules/node-preload/preload-list.js +15 -0
  2725. package/node_modules/node-preload/preload-path/node-preload.js +11 -0
  2726. package/node_modules/node-preload/process-node-options.js +16 -0
  2727. package/node_modules/node-releases/LICENSE +21 -0
  2728. package/node_modules/node-releases/README.md +12 -0
  2729. package/node_modules/node-releases/data/processed/envs.json +1 -0
  2730. package/node_modules/node-releases/data/release-schedule/release-schedule.json +1 -0
  2731. package/node_modules/node-releases/package.json +19 -0
  2732. package/node_modules/nyc/CHANGELOG.md +1017 -0
  2733. package/node_modules/nyc/LICENSE.txt +16 -0
  2734. package/node_modules/nyc/README.md +388 -0
  2735. package/node_modules/nyc/bin/nyc.js +118 -0
  2736. package/node_modules/nyc/bin/wrap.js +4 -0
  2737. package/node_modules/nyc/index.js +546 -0
  2738. package/node_modules/nyc/lib/commands/check-coverage.js +28 -0
  2739. package/node_modules/nyc/lib/commands/helpers.js +74 -0
  2740. package/node_modules/nyc/lib/commands/instrument.js +63 -0
  2741. package/node_modules/nyc/lib/commands/merge.js +46 -0
  2742. package/node_modules/nyc/lib/commands/report.js +30 -0
  2743. package/node_modules/nyc/lib/config-util.js +65 -0
  2744. package/node_modules/nyc/lib/fs-promises.js +51 -0
  2745. package/node_modules/nyc/lib/hash.js +30 -0
  2746. package/node_modules/nyc/lib/instrumenters/istanbul.js +44 -0
  2747. package/node_modules/nyc/lib/instrumenters/noop.js +22 -0
  2748. package/node_modules/nyc/lib/process-args.js +39 -0
  2749. package/node_modules/nyc/lib/register-env.js +27 -0
  2750. package/node_modules/nyc/lib/source-maps.js +84 -0
  2751. package/node_modules/nyc/lib/wrap.js +28 -0
  2752. package/node_modules/nyc/package.json +107 -0
  2753. package/node_modules/object-assign/package.json +15 -49
  2754. package/node_modules/object-is/package.json +85 -112
  2755. package/node_modules/object-keys/package.json +86 -116
  2756. package/node_modules/once/LICENSE +15 -0
  2757. package/node_modules/once/README.md +79 -0
  2758. package/node_modules/once/once.js +42 -0
  2759. package/node_modules/once/package.json +33 -0
  2760. package/node_modules/p-limit/index.d.ts +38 -0
  2761. package/node_modules/p-limit/index.js +57 -0
  2762. package/node_modules/p-limit/license +9 -0
  2763. package/node_modules/p-limit/package.json +52 -0
  2764. package/node_modules/p-limit/readme.md +101 -0
  2765. package/node_modules/p-locate/index.d.ts +64 -0
  2766. package/node_modules/p-locate/index.js +52 -0
  2767. package/node_modules/p-locate/license +9 -0
  2768. package/node_modules/p-locate/package.json +53 -0
  2769. package/node_modules/p-locate/readme.md +90 -0
  2770. package/node_modules/p-map/index.d.ts +65 -0
  2771. package/node_modules/p-map/index.js +81 -0
  2772. package/node_modules/p-map/license +9 -0
  2773. package/node_modules/p-map/package.json +52 -0
  2774. package/node_modules/p-map/readme.md +99 -0
  2775. package/node_modules/p-try/index.d.ts +39 -0
  2776. package/node_modules/p-try/index.js +9 -0
  2777. package/node_modules/p-try/license +9 -0
  2778. package/node_modules/p-try/package.json +42 -0
  2779. package/node_modules/p-try/readme.md +58 -0
  2780. package/node_modules/package-hash/LICENSE +14 -0
  2781. package/node_modules/package-hash/README.md +79 -0
  2782. package/node_modules/package-hash/index.js +162 -0
  2783. package/node_modules/package-hash/package.json +60 -0
  2784. package/node_modules/path-exists/index.d.ts +28 -0
  2785. package/node_modules/path-exists/index.js +23 -0
  2786. package/node_modules/path-exists/license +9 -0
  2787. package/node_modules/path-exists/package.json +39 -0
  2788. package/node_modules/path-exists/readme.md +52 -0
  2789. package/node_modules/path-is-absolute/index.js +20 -0
  2790. package/node_modules/path-is-absolute/license +21 -0
  2791. package/node_modules/path-is-absolute/package.json +43 -0
  2792. package/node_modules/path-is-absolute/readme.md +59 -0
  2793. package/node_modules/path-key/index.d.ts +40 -0
  2794. package/node_modules/path-key/index.js +16 -0
  2795. package/node_modules/path-key/license +9 -0
  2796. package/node_modules/path-key/package.json +39 -0
  2797. package/node_modules/path-key/readme.md +61 -0
  2798. package/node_modules/picocolors/LICENSE +15 -0
  2799. package/node_modules/picocolors/README.md +21 -0
  2800. package/node_modules/picocolors/package.json +25 -0
  2801. package/node_modules/picocolors/picocolors.browser.js +4 -0
  2802. package/node_modules/picocolors/picocolors.d.ts +5 -0
  2803. package/node_modules/picocolors/picocolors.js +58 -0
  2804. package/node_modules/picocolors/types.ts +30 -0
  2805. package/node_modules/pkg-dir/index.d.ts +44 -0
  2806. package/node_modules/pkg-dir/index.js +17 -0
  2807. package/node_modules/pkg-dir/license +9 -0
  2808. package/node_modules/pkg-dir/package.json +56 -0
  2809. package/node_modules/pkg-dir/readme.md +66 -0
  2810. package/node_modules/point-in-polygon/package.json +19 -48
  2811. package/node_modules/polygon-clipping/package.json +41 -80
  2812. package/node_modules/process-on-spawn/CHANGELOG.md +10 -0
  2813. package/node_modules/process-on-spawn/LICENSE +21 -0
  2814. package/node_modules/process-on-spawn/README.md +64 -0
  2815. package/node_modules/process-on-spawn/index.js +112 -0
  2816. package/node_modules/process-on-spawn/package.json +34 -0
  2817. package/node_modules/protobufjs/LICENSE +39 -0
  2818. package/node_modules/protobufjs/README.md +740 -0
  2819. package/node_modules/protobufjs/dist/light/protobuf.js +7370 -0
  2820. package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -0
  2821. package/node_modules/protobufjs/dist/light/protobuf.min.js +8 -0
  2822. package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -0
  2823. package/node_modules/protobufjs/dist/minimal/protobuf.js +2731 -0
  2824. package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -0
  2825. package/node_modules/protobufjs/dist/minimal/protobuf.min.js +8 -0
  2826. package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -0
  2827. package/node_modules/protobufjs/dist/protobuf.js +9066 -0
  2828. package/node_modules/protobufjs/dist/protobuf.js.map +1 -0
  2829. package/node_modules/protobufjs/dist/protobuf.min.js +8 -0
  2830. package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -0
  2831. package/node_modules/protobufjs/ext/debug/README.md +4 -0
  2832. package/node_modules/protobufjs/ext/debug/index.js +71 -0
  2833. package/node_modules/protobufjs/ext/descriptor/README.md +72 -0
  2834. package/node_modules/protobufjs/ext/descriptor/index.d.ts +191 -0
  2835. package/node_modules/protobufjs/ext/descriptor/index.js +1052 -0
  2836. package/node_modules/protobufjs/ext/descriptor/test.js +54 -0
  2837. package/node_modules/protobufjs/google/LICENSE +27 -0
  2838. package/node_modules/protobufjs/google/README.md +1 -0
  2839. package/node_modules/protobufjs/google/api/annotations.json +83 -0
  2840. package/node_modules/protobufjs/google/api/annotations.proto +11 -0
  2841. package/node_modules/protobufjs/google/api/http.json +86 -0
  2842. package/node_modules/protobufjs/google/api/http.proto +31 -0
  2843. package/node_modules/protobufjs/google/protobuf/api.json +118 -0
  2844. package/node_modules/protobufjs/google/protobuf/api.proto +34 -0
  2845. package/node_modules/protobufjs/google/protobuf/descriptor.json +739 -0
  2846. package/node_modules/protobufjs/google/protobuf/descriptor.proto +286 -0
  2847. package/node_modules/protobufjs/google/protobuf/source_context.json +20 -0
  2848. package/node_modules/protobufjs/google/protobuf/source_context.proto +7 -0
  2849. package/node_modules/protobufjs/google/protobuf/type.json +202 -0
  2850. package/node_modules/protobufjs/google/protobuf/type.proto +89 -0
  2851. package/node_modules/protobufjs/index.d.ts +2741 -0
  2852. package/node_modules/protobufjs/index.js +4 -0
  2853. package/node_modules/protobufjs/light.d.ts +2 -0
  2854. package/node_modules/protobufjs/light.js +4 -0
  2855. package/node_modules/protobufjs/minimal.d.ts +2 -0
  2856. package/node_modules/protobufjs/minimal.js +4 -0
  2857. package/node_modules/protobufjs/package.json +111 -0
  2858. package/node_modules/protobufjs/scripts/postinstall.js +32 -0
  2859. package/node_modules/protobufjs/src/common.js +399 -0
  2860. package/node_modules/protobufjs/src/converter.js +301 -0
  2861. package/node_modules/protobufjs/src/decoder.js +129 -0
  2862. package/node_modules/protobufjs/src/encoder.js +100 -0
  2863. package/node_modules/protobufjs/src/enum.js +198 -0
  2864. package/node_modules/protobufjs/src/field.js +377 -0
  2865. package/node_modules/protobufjs/src/index-light.js +104 -0
  2866. package/node_modules/protobufjs/src/index-minimal.js +36 -0
  2867. package/node_modules/protobufjs/src/index.js +12 -0
  2868. package/node_modules/protobufjs/src/mapfield.js +126 -0
  2869. package/node_modules/protobufjs/src/message.js +139 -0
  2870. package/node_modules/protobufjs/src/method.js +160 -0
  2871. package/node_modules/protobufjs/src/namespace.js +433 -0
  2872. package/node_modules/protobufjs/src/object.js +243 -0
  2873. package/node_modules/protobufjs/src/oneof.js +203 -0
  2874. package/node_modules/protobufjs/src/parse.js +869 -0
  2875. package/node_modules/protobufjs/src/reader.js +411 -0
  2876. package/node_modules/protobufjs/src/reader_buffer.js +51 -0
  2877. package/node_modules/protobufjs/src/root.js +368 -0
  2878. package/node_modules/protobufjs/src/roots.js +18 -0
  2879. package/node_modules/protobufjs/src/rpc/service.js +142 -0
  2880. package/node_modules/protobufjs/src/rpc.js +36 -0
  2881. package/node_modules/protobufjs/src/service.js +167 -0
  2882. package/node_modules/protobufjs/src/tokenize.js +418 -0
  2883. package/node_modules/protobufjs/src/type.js +589 -0
  2884. package/node_modules/protobufjs/src/types.js +196 -0
  2885. package/node_modules/protobufjs/src/typescript.jsdoc +15 -0
  2886. package/node_modules/protobufjs/src/util/longbits.js +200 -0
  2887. package/node_modules/protobufjs/src/util/minimal.js +438 -0
  2888. package/node_modules/protobufjs/src/util.js +212 -0
  2889. package/node_modules/protobufjs/src/verifier.js +177 -0
  2890. package/node_modules/protobufjs/src/wrappers.js +102 -0
  2891. package/node_modules/protobufjs/src/writer.js +465 -0
  2892. package/node_modules/protobufjs/src/writer_buffer.js +85 -0
  2893. package/node_modules/protobufjs/tsconfig.json +8 -0
  2894. package/node_modules/proxy-from-env/.eslintrc +29 -0
  2895. package/node_modules/proxy-from-env/.travis.yml +10 -0
  2896. package/node_modules/proxy-from-env/LICENSE +20 -0
  2897. package/node_modules/proxy-from-env/README.md +131 -0
  2898. package/node_modules/proxy-from-env/index.js +108 -0
  2899. package/node_modules/proxy-from-env/package.json +34 -0
  2900. package/node_modules/proxy-from-env/test.js +483 -0
  2901. package/node_modules/quickselect/package.json +13 -41
  2902. package/node_modules/rbush/README.md +95 -22
  2903. package/node_modules/rbush/index.js +181 -131
  2904. package/node_modules/rbush/package.json +39 -71
  2905. package/node_modules/rbush/rbush.js +412 -360
  2906. package/node_modules/rbush/rbush.min.js +1 -1
  2907. package/node_modules/regexp.prototype.flags/.eslintrc +1 -0
  2908. package/node_modules/regexp.prototype.flags/CHANGELOG.md +19 -0
  2909. package/node_modules/regexp.prototype.flags/implementation.js +9 -0
  2910. package/node_modules/regexp.prototype.flags/package.json +98 -122
  2911. package/node_modules/regexp.prototype.flags/test/shimmed.js +2 -1
  2912. package/node_modules/regexp.prototype.flags/test/tests.js +7 -5
  2913. package/node_modules/release-zalgo/LICENSE +14 -0
  2914. package/node_modules/release-zalgo/README.md +194 -0
  2915. package/node_modules/release-zalgo/index.js +9 -0
  2916. package/node_modules/release-zalgo/lib/Async.js +21 -0
  2917. package/node_modules/release-zalgo/lib/Sync.js +24 -0
  2918. package/node_modules/release-zalgo/lib/Thenable.js +39 -0
  2919. package/node_modules/release-zalgo/lib/constants.js +6 -0
  2920. package/node_modules/release-zalgo/lib/unwrapSync.js +54 -0
  2921. package/node_modules/release-zalgo/package.json +49 -0
  2922. package/node_modules/require-directory/.jshintrc +67 -0
  2923. package/node_modules/require-directory/.npmignore +1 -0
  2924. package/node_modules/require-directory/.travis.yml +3 -0
  2925. package/node_modules/require-directory/LICENSE +22 -0
  2926. package/node_modules/require-directory/README.markdown +184 -0
  2927. package/node_modules/require-directory/index.js +86 -0
  2928. package/node_modules/require-directory/package.json +40 -0
  2929. package/node_modules/require-main-filename/CHANGELOG.md +26 -0
  2930. package/node_modules/require-main-filename/LICENSE.txt +14 -0
  2931. package/node_modules/require-main-filename/README.md +26 -0
  2932. package/node_modules/require-main-filename/index.js +18 -0
  2933. package/node_modules/require-main-filename/package.json +35 -0
  2934. package/node_modules/resolve-from/index.d.ts +31 -0
  2935. package/node_modules/resolve-from/index.js +47 -0
  2936. package/node_modules/resolve-from/license +9 -0
  2937. package/node_modules/resolve-from/package.json +36 -0
  2938. package/node_modules/resolve-from/readme.md +72 -0
  2939. package/node_modules/rimraf/CHANGELOG.md +65 -0
  2940. package/node_modules/rimraf/LICENSE +15 -0
  2941. package/node_modules/rimraf/README.md +101 -0
  2942. package/node_modules/rimraf/bin.js +68 -0
  2943. package/node_modules/rimraf/package.json +32 -0
  2944. package/node_modules/rimraf/rimraf.js +360 -0
  2945. package/node_modules/robust-predicates/package.json +25 -52
  2946. package/node_modules/semver/LICENSE +15 -0
  2947. package/node_modules/semver/README.md +443 -0
  2948. package/node_modules/semver/bin/semver.js +174 -0
  2949. package/node_modules/semver/package.json +38 -0
  2950. package/node_modules/semver/range.bnf +16 -0
  2951. package/node_modules/semver/semver.js +1643 -0
  2952. package/node_modules/set-blocking/CHANGELOG.md +26 -0
  2953. package/node_modules/set-blocking/LICENSE.txt +14 -0
  2954. package/node_modules/set-blocking/README.md +31 -0
  2955. package/node_modules/set-blocking/index.js +7 -0
  2956. package/node_modules/set-blocking/package.json +42 -0
  2957. package/node_modules/shebang-command/index.js +19 -0
  2958. package/node_modules/shebang-command/license +9 -0
  2959. package/node_modules/shebang-command/package.json +34 -0
  2960. package/node_modules/shebang-command/readme.md +34 -0
  2961. package/node_modules/shebang-regex/index.d.ts +22 -0
  2962. package/node_modules/shebang-regex/index.js +2 -0
  2963. package/node_modules/shebang-regex/license +9 -0
  2964. package/node_modules/shebang-regex/package.json +35 -0
  2965. package/node_modules/shebang-regex/readme.md +33 -0
  2966. package/node_modules/signal-exit/LICENSE.txt +16 -0
  2967. package/node_modules/signal-exit/README.md +39 -0
  2968. package/node_modules/signal-exit/index.js +202 -0
  2969. package/node_modules/signal-exit/package.json +38 -0
  2970. package/node_modules/signal-exit/signals.js +53 -0
  2971. package/node_modules/skmeans/package.json +18 -53
  2972. package/node_modules/source-map/CHANGELOG.md +301 -0
  2973. package/node_modules/source-map/LICENSE +28 -0
  2974. package/node_modules/source-map/README.md +742 -0
  2975. package/node_modules/source-map/dist/source-map.debug.js +3234 -0
  2976. package/node_modules/source-map/dist/source-map.js +3233 -0
  2977. package/node_modules/source-map/dist/source-map.min.js +2 -0
  2978. package/node_modules/source-map/dist/source-map.min.js.map +1 -0
  2979. package/node_modules/source-map/lib/array-set.js +121 -0
  2980. package/node_modules/source-map/lib/base64-vlq.js +140 -0
  2981. package/node_modules/source-map/lib/base64.js +67 -0
  2982. package/node_modules/source-map/lib/binary-search.js +111 -0
  2983. package/node_modules/source-map/lib/mapping-list.js +79 -0
  2984. package/node_modules/source-map/lib/quick-sort.js +114 -0
  2985. package/node_modules/source-map/lib/source-map-consumer.js +1145 -0
  2986. package/node_modules/source-map/lib/source-map-generator.js +425 -0
  2987. package/node_modules/source-map/lib/source-node.js +413 -0
  2988. package/node_modules/source-map/lib/util.js +488 -0
  2989. package/node_modules/source-map/package.json +73 -0
  2990. package/node_modules/source-map/source-map.d.ts +98 -0
  2991. package/node_modules/source-map/source-map.js +8 -0
  2992. package/node_modules/spawn-wrap/CHANGELOG.md +43 -0
  2993. package/node_modules/spawn-wrap/LICENSE +15 -0
  2994. package/node_modules/spawn-wrap/README.md +111 -0
  2995. package/node_modules/spawn-wrap/index.js +165 -0
  2996. package/node_modules/spawn-wrap/lib/debug.js +32 -0
  2997. package/node_modules/spawn-wrap/lib/exe-type.js +53 -0
  2998. package/node_modules/spawn-wrap/lib/homedir.js +5 -0
  2999. package/node_modules/spawn-wrap/lib/munge.js +84 -0
  3000. package/node_modules/spawn-wrap/lib/mungers/cmd.js +59 -0
  3001. package/node_modules/spawn-wrap/lib/mungers/env.js +49 -0
  3002. package/node_modules/spawn-wrap/lib/mungers/node.js +79 -0
  3003. package/node_modules/spawn-wrap/lib/mungers/npm.js +32 -0
  3004. package/node_modules/spawn-wrap/lib/mungers/sh.js +61 -0
  3005. package/node_modules/spawn-wrap/lib/mungers/shebang.js +43 -0
  3006. package/node_modules/spawn-wrap/lib/which-or-undefined.js +12 -0
  3007. package/node_modules/spawn-wrap/package.json +45 -0
  3008. package/node_modules/spawn-wrap/shim.js +156 -0
  3009. package/node_modules/splaytree/Readme.md +58 -57
  3010. package/node_modules/splaytree/dist/splay.esm.js +21 -8
  3011. package/node_modules/splaytree/dist/splay.esm.js.map +1 -1
  3012. package/node_modules/splaytree/dist/splay.js +21 -8
  3013. package/node_modules/splaytree/dist/splay.js.map +1 -1
  3014. package/node_modules/splaytree/package.json +36 -68
  3015. package/node_modules/splaytree/src/index.ts +16 -4
  3016. package/node_modules/sprintf-js/.npmignore +1 -0
  3017. package/node_modules/sprintf-js/LICENSE +24 -0
  3018. package/node_modules/sprintf-js/README.md +88 -0
  3019. package/node_modules/sprintf-js/bower.json +14 -0
  3020. package/node_modules/sprintf-js/demo/angular.html +20 -0
  3021. package/node_modules/sprintf-js/dist/angular-sprintf.min.js +4 -0
  3022. package/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
  3023. package/node_modules/sprintf-js/dist/angular-sprintf.min.map +1 -0
  3024. package/node_modules/sprintf-js/dist/sprintf.min.js +4 -0
  3025. package/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
  3026. package/node_modules/sprintf-js/dist/sprintf.min.map +1 -0
  3027. package/node_modules/sprintf-js/gruntfile.js +36 -0
  3028. package/node_modules/sprintf-js/package.json +22 -0
  3029. package/node_modules/sprintf-js/src/angular-sprintf.js +18 -0
  3030. package/node_modules/sprintf-js/src/sprintf.js +208 -0
  3031. package/node_modules/sprintf-js/test/test.js +82 -0
  3032. package/node_modules/string-width/index.d.ts +29 -0
  3033. package/node_modules/string-width/index.js +47 -0
  3034. package/node_modules/string-width/license +9 -0
  3035. package/node_modules/string-width/package.json +56 -0
  3036. package/node_modules/string-width/readme.md +50 -0
  3037. package/node_modules/strip-ansi/index.d.ts +17 -0
  3038. package/node_modules/strip-ansi/index.js +4 -0
  3039. package/node_modules/strip-ansi/license +9 -0
  3040. package/node_modules/strip-ansi/package.json +54 -0
  3041. package/node_modules/strip-ansi/readme.md +46 -0
  3042. package/node_modules/strip-bom/index.d.ts +14 -0
  3043. package/node_modules/strip-bom/index.js +15 -0
  3044. package/node_modules/strip-bom/license +9 -0
  3045. package/node_modules/strip-bom/package.json +42 -0
  3046. package/node_modules/strip-bom/readme.md +54 -0
  3047. package/node_modules/strnum/.vscode/launch.json +25 -0
  3048. package/node_modules/strnum/LICENSE +21 -0
  3049. package/node_modules/strnum/README.md +86 -0
  3050. package/node_modules/strnum/package.json +24 -0
  3051. package/node_modules/strnum/strnum.js +124 -0
  3052. package/node_modules/strnum/strnum.test.js +150 -0
  3053. package/node_modules/supports-color/browser.js +5 -0
  3054. package/node_modules/supports-color/index.js +131 -0
  3055. package/node_modules/supports-color/license +9 -0
  3056. package/node_modules/supports-color/package.json +53 -0
  3057. package/node_modules/supports-color/readme.md +66 -0
  3058. package/node_modules/test-exclude/CHANGELOG.md +352 -0
  3059. package/node_modules/test-exclude/LICENSE.txt +14 -0
  3060. package/node_modules/test-exclude/README.md +96 -0
  3061. package/node_modules/test-exclude/index.js +161 -0
  3062. package/node_modules/test-exclude/is-outside-dir-posix.js +7 -0
  3063. package/node_modules/test-exclude/is-outside-dir-win32.js +10 -0
  3064. package/node_modules/test-exclude/is-outside-dir.js +7 -0
  3065. package/node_modules/test-exclude/package.json +45 -0
  3066. package/node_modules/tinyqueue/package.json +34 -59
  3067. package/node_modules/to-fast-properties/index.js +27 -0
  3068. package/node_modules/to-fast-properties/license +10 -0
  3069. package/node_modules/to-fast-properties/package.json +35 -0
  3070. package/node_modules/to-fast-properties/readme.md +37 -0
  3071. package/node_modules/topojson-client/package.json +28 -56
  3072. package/node_modules/topojson-server/package.json +27 -55
  3073. package/node_modules/turf-jsts/package.json +33 -68
  3074. package/node_modules/type-fest/index.d.ts +20 -0
  3075. package/node_modules/type-fest/license +9 -0
  3076. package/node_modules/type-fest/package.json +51 -0
  3077. package/node_modules/type-fest/readme.md +635 -0
  3078. package/node_modules/type-fest/source/basic.d.ts +67 -0
  3079. package/node_modules/type-fest/source/except.d.ts +22 -0
  3080. package/node_modules/type-fest/source/literal-union.d.ts +33 -0
  3081. package/node_modules/type-fest/source/merge-exclusive.d.ts +39 -0
  3082. package/node_modules/type-fest/source/merge.d.ts +22 -0
  3083. package/node_modules/type-fest/source/mutable.d.ts +22 -0
  3084. package/node_modules/type-fest/source/opaque.d.ts +40 -0
  3085. package/node_modules/type-fest/source/package-json.d.ts +501 -0
  3086. package/node_modules/type-fest/source/partial-deep.d.ts +72 -0
  3087. package/node_modules/type-fest/source/promisable.d.ts +23 -0
  3088. package/node_modules/type-fest/source/readonly-deep.d.ts +59 -0
  3089. package/node_modules/type-fest/source/require-at-least-one.d.ts +32 -0
  3090. package/node_modules/type-fest/source/require-exactly-one.d.ts +36 -0
  3091. package/node_modules/type-fest/source/set-optional.d.ts +32 -0
  3092. package/node_modules/type-fest/source/set-required.d.ts +32 -0
  3093. package/node_modules/typedarray-to-buffer/.airtap.yml +15 -0
  3094. package/node_modules/typedarray-to-buffer/.travis.yml +11 -0
  3095. package/node_modules/typedarray-to-buffer/LICENSE +21 -0
  3096. package/node_modules/typedarray-to-buffer/README.md +85 -0
  3097. package/node_modules/typedarray-to-buffer/index.js +25 -0
  3098. package/node_modules/typedarray-to-buffer/package.json +50 -0
  3099. package/node_modules/typedarray-to-buffer/test/basic.js +50 -0
  3100. package/node_modules/update-browserslist-db/LICENSE +20 -0
  3101. package/node_modules/update-browserslist-db/README.md +22 -0
  3102. package/node_modules/update-browserslist-db/check-npm-version.js +16 -0
  3103. package/node_modules/update-browserslist-db/cli.js +42 -0
  3104. package/node_modules/update-browserslist-db/index.d.ts +6 -0
  3105. package/node_modules/update-browserslist-db/index.js +317 -0
  3106. package/node_modules/update-browserslist-db/package.json +40 -0
  3107. package/node_modules/update-browserslist-db/utils.js +22 -0
  3108. package/node_modules/uuid/CHANGELOG.md +39 -0
  3109. package/node_modules/uuid/README.md +30 -73
  3110. package/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
  3111. package/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
  3112. package/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
  3113. package/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
  3114. package/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
  3115. package/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
  3116. package/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
  3117. package/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
  3118. package/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
  3119. package/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
  3120. package/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
  3121. package/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
  3122. package/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
  3123. package/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
  3124. package/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
  3125. package/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
  3126. package/node_modules/uuid/dist/esm-browser/md5.js +23 -23
  3127. package/node_modules/uuid/dist/esm-browser/native.js +4 -0
  3128. package/node_modules/uuid/dist/esm-browser/parse.js +2 -2
  3129. package/node_modules/uuid/dist/esm-browser/rng.js +4 -5
  3130. package/node_modules/uuid/dist/esm-browser/sha1.js +26 -26
  3131. package/node_modules/uuid/dist/esm-browser/stringify.js +9 -6
  3132. package/node_modules/uuid/dist/esm-browser/v1.js +17 -17
  3133. package/node_modules/uuid/dist/esm-browser/v3.js +1 -1
  3134. package/node_modules/uuid/dist/esm-browser/v35.js +12 -10
  3135. package/node_modules/uuid/dist/esm-browser/v4.js +9 -4
  3136. package/node_modules/uuid/dist/esm-browser/v5.js +1 -1
  3137. package/node_modules/uuid/dist/esm-browser/version.js +1 -1
  3138. package/node_modules/uuid/dist/esm-node/native.js +4 -0
  3139. package/node_modules/uuid/dist/esm-node/stringify.js +7 -3
  3140. package/node_modules/uuid/dist/esm-node/v1.js +2 -2
  3141. package/node_modules/uuid/dist/esm-node/v35.js +6 -4
  3142. package/node_modules/uuid/dist/esm-node/v4.js +7 -2
  3143. package/node_modules/uuid/dist/esm-node/version.js +1 -1
  3144. package/node_modules/uuid/dist/index.js +18 -18
  3145. package/node_modules/uuid/dist/native-browser.js +11 -0
  3146. package/node_modules/uuid/dist/native.js +15 -0
  3147. package/node_modules/uuid/dist/rng-browser.js +2 -3
  3148. package/node_modules/uuid/dist/stringify.js +8 -3
  3149. package/node_modules/uuid/dist/v1.js +2 -2
  3150. package/node_modules/uuid/dist/v35.js +7 -5
  3151. package/node_modules/uuid/dist/v4.js +8 -2
  3152. package/node_modules/uuid/dist/version.js +1 -1
  3153. package/node_modules/uuid/package.json +87 -120
  3154. package/node_modules/which/CHANGELOG.md +166 -0
  3155. package/node_modules/which/LICENSE +15 -0
  3156. package/node_modules/which/README.md +54 -0
  3157. package/node_modules/which/bin/node-which +52 -0
  3158. package/node_modules/which/package.json +43 -0
  3159. package/node_modules/which/which.js +125 -0
  3160. package/node_modules/which-module/LICENSE +13 -0
  3161. package/node_modules/which-module/README.md +58 -0
  3162. package/node_modules/which-module/index.js +9 -0
  3163. package/node_modules/which-module/package.json +41 -0
  3164. package/node_modules/wrap-ansi/index.js +186 -0
  3165. package/node_modules/wrap-ansi/license +9 -0
  3166. package/node_modules/wrap-ansi/node_modules/ansi-styles/index.d.ts +345 -0
  3167. package/node_modules/wrap-ansi/node_modules/ansi-styles/index.js +163 -0
  3168. package/node_modules/wrap-ansi/node_modules/ansi-styles/license +9 -0
  3169. package/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +56 -0
  3170. package/node_modules/wrap-ansi/node_modules/ansi-styles/readme.md +152 -0
  3171. package/node_modules/wrap-ansi/node_modules/color-convert/CHANGELOG.md +54 -0
  3172. package/node_modules/wrap-ansi/node_modules/color-convert/LICENSE +21 -0
  3173. package/node_modules/wrap-ansi/node_modules/color-convert/README.md +68 -0
  3174. package/node_modules/wrap-ansi/node_modules/color-convert/conversions.js +839 -0
  3175. package/node_modules/wrap-ansi/node_modules/color-convert/index.js +81 -0
  3176. package/node_modules/wrap-ansi/node_modules/color-convert/package.json +48 -0
  3177. package/node_modules/wrap-ansi/node_modules/color-convert/route.js +97 -0
  3178. package/node_modules/wrap-ansi/node_modules/color-name/LICENSE +8 -0
  3179. package/node_modules/wrap-ansi/node_modules/color-name/README.md +11 -0
  3180. package/node_modules/wrap-ansi/node_modules/color-name/index.js +152 -0
  3181. package/node_modules/wrap-ansi/node_modules/color-name/package.json +28 -0
  3182. package/node_modules/wrap-ansi/package.json +61 -0
  3183. package/node_modules/wrap-ansi/readme.md +97 -0
  3184. package/node_modules/wrappy/LICENSE +15 -0
  3185. package/node_modules/wrappy/README.md +36 -0
  3186. package/node_modules/wrappy/package.json +29 -0
  3187. package/node_modules/wrappy/wrappy.js +33 -0
  3188. package/node_modules/write-file-atomic/CHANGELOG.md +32 -0
  3189. package/node_modules/write-file-atomic/LICENSE +6 -0
  3190. package/node_modules/write-file-atomic/README.md +72 -0
  3191. package/node_modules/write-file-atomic/index.js +259 -0
  3192. package/node_modules/write-file-atomic/package.json +48 -0
  3193. package/node_modules/y18n/CHANGELOG.md +35 -0
  3194. package/node_modules/y18n/LICENSE +13 -0
  3195. package/node_modules/y18n/README.md +109 -0
  3196. package/node_modules/y18n/index.js +188 -0
  3197. package/node_modules/y18n/package.json +39 -0
  3198. package/node_modules/yallist/LICENSE +15 -0
  3199. package/node_modules/yallist/README.md +204 -0
  3200. package/node_modules/yallist/iterator.js +8 -0
  3201. package/node_modules/yallist/package.json +29 -0
  3202. package/node_modules/yallist/yallist.js +426 -0
  3203. package/node_modules/yargs/CHANGELOG.md +420 -0
  3204. package/node_modules/yargs/LICENSE +21 -0
  3205. package/node_modules/yargs/README.md +140 -0
  3206. package/node_modules/yargs/build/lib/apply-extends.d.ts +2 -0
  3207. package/node_modules/yargs/build/lib/apply-extends.js +65 -0
  3208. package/node_modules/yargs/build/lib/argsert.d.ts +2 -0
  3209. package/node_modules/yargs/build/lib/argsert.js +65 -0
  3210. package/node_modules/yargs/build/lib/command.d.ts +64 -0
  3211. package/node_modules/yargs/build/lib/command.js +416 -0
  3212. package/node_modules/yargs/build/lib/common-types.d.ts +36 -0
  3213. package/node_modules/yargs/build/lib/common-types.js +25 -0
  3214. package/node_modules/yargs/build/lib/completion-templates.d.ts +2 -0
  3215. package/node_modules/yargs/build/lib/completion-templates.js +50 -0
  3216. package/node_modules/yargs/build/lib/completion.d.ts +21 -0
  3217. package/node_modules/yargs/build/lib/completion.js +135 -0
  3218. package/node_modules/yargs/build/lib/is-promise.d.ts +1 -0
  3219. package/node_modules/yargs/build/lib/is-promise.js +9 -0
  3220. package/node_modules/yargs/build/lib/levenshtein.d.ts +1 -0
  3221. package/node_modules/yargs/build/lib/levenshtein.js +58 -0
  3222. package/node_modules/yargs/build/lib/middleware.d.ts +10 -0
  3223. package/node_modules/yargs/build/lib/middleware.js +57 -0
  3224. package/node_modules/yargs/build/lib/obj-filter.d.ts +1 -0
  3225. package/node_modules/yargs/build/lib/obj-filter.js +14 -0
  3226. package/node_modules/yargs/build/lib/parse-command.d.ts +11 -0
  3227. package/node_modules/yargs/build/lib/parse-command.js +36 -0
  3228. package/node_modules/yargs/build/lib/process-argv.d.ts +2 -0
  3229. package/node_modules/yargs/build/lib/process-argv.js +31 -0
  3230. package/node_modules/yargs/build/lib/usage.d.ts +49 -0
  3231. package/node_modules/yargs/build/lib/usage.js +540 -0
  3232. package/node_modules/yargs/build/lib/validation.d.ts +34 -0
  3233. package/node_modules/yargs/build/lib/validation.js +330 -0
  3234. package/node_modules/yargs/build/lib/yargs.d.ts +274 -0
  3235. package/node_modules/yargs/build/lib/yargs.js +1190 -0
  3236. package/node_modules/yargs/build/lib/yerror.d.ts +4 -0
  3237. package/node_modules/yargs/build/lib/yerror.js +11 -0
  3238. package/node_modules/yargs/index.js +40 -0
  3239. package/node_modules/yargs/locales/be.json +46 -0
  3240. package/node_modules/yargs/locales/de.json +46 -0
  3241. package/node_modules/yargs/locales/en.json +51 -0
  3242. package/node_modules/yargs/locales/es.json +46 -0
  3243. package/node_modules/yargs/locales/fi.json +49 -0
  3244. package/node_modules/yargs/locales/fr.json +53 -0
  3245. package/node_modules/yargs/locales/hi.json +49 -0
  3246. package/node_modules/yargs/locales/hu.json +46 -0
  3247. package/node_modules/yargs/locales/id.json +50 -0
  3248. package/node_modules/yargs/locales/it.json +46 -0
  3249. package/node_modules/yargs/locales/ja.json +51 -0
  3250. package/node_modules/yargs/locales/ko.json +49 -0
  3251. package/node_modules/yargs/locales/nb.json +44 -0
  3252. package/node_modules/yargs/locales/nl.json +49 -0
  3253. package/node_modules/yargs/locales/nn.json +44 -0
  3254. package/node_modules/yargs/locales/pirate.json +13 -0
  3255. package/node_modules/yargs/locales/pl.json +49 -0
  3256. package/node_modules/yargs/locales/pt.json +45 -0
  3257. package/node_modules/yargs/locales/pt_BR.json +48 -0
  3258. package/node_modules/yargs/locales/ru.json +46 -0
  3259. package/node_modules/yargs/locales/th.json +46 -0
  3260. package/node_modules/yargs/locales/tr.json +48 -0
  3261. package/node_modules/yargs/locales/zh_CN.json +48 -0
  3262. package/node_modules/yargs/locales/zh_TW.json +47 -0
  3263. package/node_modules/yargs/package.json +92 -0
  3264. package/node_modules/yargs/yargs.js +14 -0
  3265. package/node_modules/yargs-parser/CHANGELOG.md +601 -0
  3266. package/node_modules/yargs-parser/LICENSE.txt +14 -0
  3267. package/node_modules/yargs-parser/README.md +449 -0
  3268. package/node_modules/yargs-parser/index.js +1032 -0
  3269. package/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
  3270. package/node_modules/yargs-parser/package.json +46 -0
  3271. package/package.json +16 -8
  3272. package/proto/contact.proto +14 -0
  3273. package/proto/cotevent.proto +44 -0
  3274. package/proto/detail.proto +78 -0
  3275. package/proto/group.proto +13 -0
  3276. package/proto/precisionlocation.proto +13 -0
  3277. package/proto/protocol.txt +352 -0
  3278. package/proto/status.proto +12 -0
  3279. package/proto/takcontrol.proto +24 -0
  3280. package/proto/takmessage.proto +18 -0
  3281. package/proto/takv.proto +15 -0
  3282. package/proto/track.proto +13 -0
  3283. package/tak-ingest.html +40 -0
  3284. package/tak-ingest.js +96 -0
  3285. package/tak-registration.html +11 -1
  3286. package/tak-registration.js +55 -7
  3287. package/node_modules/@turf/collect/node_modules/quickselect/package.json +0 -69
  3288. package/node_modules/@turf/collect/node_modules/rbush/package.json +0 -85
  3289. package/node_modules/@turf/collect/node_modules/rbush/rbush.js +0 -626
  3290. package/node_modules/@turf/collect/node_modules/rbush/rbush.min.js +0 -1
  3291. package/node_modules/@turf/unkink-polygon/node_modules/quickselect/package.json +0 -69
  3292. package/node_modules/@turf/unkink-polygon/node_modules/rbush/package.json +0 -85
  3293. package/node_modules/@turf/unkink-polygon/node_modules/rbush/rbush.js +0 -626
  3294. package/node_modules/@turf/unkink-polygon/node_modules/rbush/rbush.min.js +0 -1
  3295. package/node_modules/axios/UPGRADE_GUIDE.md +0 -168
  3296. package/node_modules/axios/dist/axios.map +0 -1
  3297. package/node_modules/axios/dist/axios.min.map +0 -1
  3298. package/node_modules/axios/lib/cancel/Cancel.js +0 -19
  3299. package/node_modules/axios/lib/core/createError.js +0 -18
  3300. package/node_modules/axios/lib/core/enhanceError.js +0 -43
  3301. package/node_modules/axios/lib/helpers/normalizeHeaderName.js +0 -12
  3302. package/node_modules/axios/tsconfig.json +0 -14
  3303. package/node_modules/axios/tslint.json +0 -6
  3304. package/node_modules/combined-stream/yarn.lock +0 -17
  3305. package/node_modules/d3-array/yarn.lock +0 -939
  3306. package/node_modules/define-properties/.jscs.json +0 -175
  3307. package/node_modules/define-properties/.travis.yml +0 -233
  3308. package/node_modules/define-properties/test/index.js +0 -125
  3309. package/node_modules/get-intrinsic/.eslintignore +0 -1
  3310. /package/node_modules/{@turf/collect → concaveman}/node_modules/quickselect/LICENSE +0 -0
  3311. /package/node_modules/{@turf/collect → concaveman}/node_modules/quickselect/README.md +0 -0
  3312. /package/node_modules/{@turf/collect → concaveman}/node_modules/quickselect/index.js +0 -0
  3313. /package/node_modules/{@turf/collect → concaveman}/node_modules/quickselect/quickselect.js +0 -0
  3314. /package/node_modules/{@turf/collect → concaveman}/node_modules/rbush/LICENSE +0 -0
  3315. /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/quickselect/LICENSE +0 -0
  3316. /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/quickselect/README.md +0 -0
  3317. /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/quickselect/index.js +0 -0
  3318. /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/quickselect/quickselect.js +0 -0
  3319. /package/node_modules/{@turf/unkink-polygon → geojson-rbush}/node_modules/rbush/LICENSE +0 -0
  3320. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuid.min.js +0 -0
  3321. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidNIL.min.js +0 -0
  3322. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidParse.min.js +0 -0
  3323. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidStringify.min.js +0 -0
  3324. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidValidate.min.js +0 -0
  3325. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidVersion.min.js +0 -0
  3326. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidv1.min.js +0 -0
  3327. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidv3.min.js +0 -0
  3328. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidv4.min.js +0 -0
  3329. /package/node_modules/{uuid → istanbul-lib-processinfo/node_modules/uuid}/dist/umd/uuidv5.min.js +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_types","require","_context","_identifier","_scope","_scopeflags","_parseError","_node","reservedTypes","Set","FlowErrors","ParseErrorEnum","AmbiguousConditionalArrow","AmbiguousDeclareModuleKind","AssignReservedType","reservedType","DeclareClassElement","DeclareClassFieldInitializer","DuplicateDeclareModuleExports","EnumBooleanMemberNotInitialized","memberName","enumName","EnumDuplicateMemberName","EnumInconsistentMemberValues","EnumInvalidExplicitType","invalidEnumType","EnumInvalidExplicitTypeUnknownSupplied","EnumInvalidMemberInitializerPrimaryType","explicitType","EnumInvalidMemberInitializerSymbolType","EnumInvalidMemberInitializerUnknownType","EnumInvalidMemberName","suggestion","EnumNumberMemberNotInitialized","EnumStringMemberInconsistentlyInitailized","GetterMayNotHaveThisParam","ImportReflectionHasImportType","ImportTypeShorthandOnlyInPureImport","InexactInsideExact","InexactInsideNonObject","InexactVariance","InvalidNonTypeImportInDeclareModule","MissingTypeParamDefault","NestedDeclareModule","NestedFlowComment","PatternIsOptional","Object","assign","message","reasonCode","SetterMayNotHaveThisParam","SpreadVariance","ThisParamAnnotationRequired","ThisParamBannedInConstructor","ThisParamMayNotBeOptional","ThisParamMustBeFirst","ThisParamNoDefault","TypeBeforeInitializer","TypeCastInPattern","UnexpectedExplicitInexactInObject","UnexpectedReservedType","UnexpectedReservedUnderscore","UnexpectedSpaceBetweenModuloChecks","UnexpectedSpreadType","UnexpectedSubtractionOperand","UnexpectedTokenAfterTypeParameter","UnexpectedTypeParameterBeforeAsyncArrowFunction","UnsupportedDeclareExportKind","unsupportedExportKind","UnsupportedStatementInDeclareModule","UnterminatedFlowComment","isEsModuleType","bodyElement","type","declaration","hasTypeImportKind","node","importKind","exportSuggestions","const","let","interface","partition","list","test","list1","list2","i","length","push","FLOW_PRAGMA_REGEX","_default","superClass","FlowParserMixin","constructor","args","flowPragma","undefined","getScopeHandler","FlowScopeHandler","shouldParseTypes","getPluginOption","shouldParseEnums","finishToken","val","addComment","comment","matches","exec","value","Error","flowParseTypeInitialiser","tok","oldInType","state","inType","expect","flowParseType","flowParsePredicate","startNode","moduloLoc","startLoc","next","expectContextual","lastTokStart","index","raise","at","eat","parseExpression","finishNode","flowParseTypeAndPredicateInitialiser","predicate","match","flowParseDeclareClass","flowParseInterfaceish","flowParseDeclareFunction","id","parseIdentifier","typeNode","typeContainer","typeParameters","flowParseTypeParameterDeclaration","tmp","flowParseFunctionTypeParams","params","rest","this","_this","returnType","typeAnnotation","resetEndLocation","semicolon","scope","declareName","name","BIND_FLOW_DECLARE_FN","loc","start","flowParseDeclare","insideModule","flowParseDeclareVariable","eatContextual","flowParseDeclareModuleExports","lastTokStartLoc","flowParseDeclareModule","isContextual","flowParseDeclareTypeAlias","flowParseDeclareOpaqueType","flowParseDeclareInterface","flowParseDeclareExportDeclaration","unexpected","flowParseTypeAnnotatableIdentifier","BIND_VAR","enter","SCOPE_OTHER","parseExprAtom","bodyNode","body","parseImport","exit","kind","hasModuleExport","forEach","default","isLet","label","parseExport","exportKind","flowParseTypeAnnotation","finished","flowParseTypeAlias","flowParseOpaqueType","isClass","flowParseRestrictedIdentifier","BIND_FUNCTION","BIND_LEXICAL","extends","flowParseInterfaceExtends","implements","mixins","flowParseObjectType","allowStatic","allowExact","allowSpread","allowProto","allowInexact","flowParseQualifiedTypeIdentifier","flowParseTypeParameterInstantiation","flowParseInterface","checkNotUnderscore","word","checkReservedType","has","liberal","right","declare","supertype","impltype","flowParseTypeParameter","requireDefault","nodeStartLoc","variance","flowParseVariance","ident","bound","defaultRequired","typeParameter","oldNoAnonFunctionType","noAnonFunctionType","flowParseTypeParameterInstantiationCallOrNew","flowParseTypeOrImplicitInstantiation","flowParseInterfaceType","flowParseObjectPropertyKey","flowParseObjectTypeIndexer","isStatic","static","lookahead","key","flowParseObjectTypeInternalSlot","method","optional","flowParseObjectTypeMethodish","startNodeAt","flowParseFunctionTypeParam","flowParseObjectTypeCallProperty","valueNode","nodeStart","callProperties","properties","indexers","internalSlots","endDelim","exact","inexact","protoStartLoc","inexactStartLoc","tokenIsLiteralPropertyName","propOrInexact","flowParseObjectTypeProperty","flowObjectTypeSemicolon","out","isInexactToken","argument","proto","flowCheckGetterSetterParams","property","paramCount","Errors","BadGetterArity","BadSetterArity","BadSetterRestParameter","_startLoc","node2","qualification","flowParseGenericType","flowParseTypeofType","flowParsePrimaryType","flowParseTupleType","types","pos","first","lh","isThis","reinterpretTypeAsFunctionTypeParam","flowIdentToTypeAnnotation","isGroupedType","tokenIsIdentifier","token","parseLiteral","parseLiteralAtNode","tokenIsKeyword","tokenLabelName","createIdentifier","flowParsePostfixType","seenOptionalIndexedAccess","canInsertSemicolon","elementType","objectType","indexType","flowParsePrefixType","flowParseAnonFunctionWithoutParens","param","flowParseIntersectionType","flowParseUnionType","allowPrimitiveOverride","typeCastToParameter","expression","end","parseFunctionBody","allowExpressionBody","isMethod","forwardNoArrowParamsConversionAt","parseFunctionBodyAndFinish","parseStatementLike","flags","strict","tokenIsKeywordOrIdentifier","flowParseEnumDeclaration","stmt","isValidDirective","parseExpressionStatement","expr","decorators","shouldParseExportDeclaration","tokenIsFlowInterfaceOrTypeOrOpaque","containsEsc","isExportDefaultSpecifier","parseExportDefaultExpression","parseConditional","refExpressionErrors","maybeInArrowParameters","nextCh","lookaheadCharCode","setOptionalParametersError","clone","originalNoArrowAt","noArrowAt","consequent","failed","tryParseConditionalConsequent","valid","invalid","getArrowLikeExpressions","alternate","parseMaybeAssign","noArrowParamsConversionAt","parseMaybeAssignAllowIn","pop","disallowInvalid","stack","arrows","finishArrowValidation","every","isAssignable","_node$extra","toAssignableList","extra","trailingCommaLoc","SCOPE_FUNCTION","SCOPE_ARROW","checkParams","parse","result","indexOf","parseParenItem","typeCastNode","assertModuleNodeAllowed","parseExportDeclaration","declarationNode","specifiers","parseExportSpecifiers","parseExportFrom","eatExportStar","maybeParseExportNamespaceSpecifier","hasNamespace","parseClassId","isStatement","optionalId","parseClassMember","classBody","member","parseClassMemberFromModifier","isIterator","readIterator","readWord1","fullWord","InvalidIdentifier","curPosition","identifierName","getTokenFromCode","code","input","charCodeAt","finishOp","isIteratorStart","isBinding","toAssignable","isLHS","left","exprList","toReferencedList","isParenthesizedExpr","_expr$extra","parenthesized","parseArrayLike","close","canBePattern","isTuple","elements","isValidLVal","isParenthesized","binding","parseClassProperty","parseClassPrivateProperty","isClassMethod","isClassProperty","isNonstaticConstructor","pushClassMethod","isGenerator","isAsync","isConstructor","allowsDirectSuper","isThisParam","pushClassPrivateMethod","parseClassSuper","superTypeParameters","implemented","checkGetterSetterParams","getObjectOrClassMethodParams","parsePropertyNamePrefixOperator","parseObjPropValue","prop","isPattern","isAccessor","parseAssignableListItemTypes","parseMaybeDefault","checkImportReflection","module","parseImportSpecifierLocal","specifier","local","finishImportSpecifier","isPotentialImportPhase","isExport","ch","applyImportPhase","phase","parseImportSpecifier","importedIsString","isInTypeOnlyImport","isMaybeTypeOnly","bindingType","firstIdent","imported","specifierTypeKind","isLookaheadContextual","as_ident","cloneIdentifier","ImportBindingIsString","importName","specifierIsTypeImport","checkReservedWord","parseBindingAtom","parseFunctionParams","parseVarId","decl","parseAsyncArrowFromCallExpression","call","shouldParseAsyncArrow","afterLeftParse","_jsx","jsx","hasPlugin","tryParse","error","context","currentContext","tc","j_oTag","j_expr","_jsx2","_jsx3","arrow","abort","_arrowExpression$extr","arrowExpression","resetStartLocationFromNode","maybeUnwrapTypeCastExpression","aborted","async","failState","thrown","parseArrow","shouldParseArrow","setArrowFunctionParameters","allowDuplicates","isArrowFunction","strictModeChanged","parseParenAndDistinguishExpression","canBeArrow","parseSubscripts","base","noCalls","callee","arguments","parseCallExpressionArguments","parseAsyncArrowWithTypeParameters","parseSubscript","subscriptState","isLookaheadToken_lt","optionalChainMember","stop","typeArguments","finishCallExpression","parseNewCallee","targs","parseArrowExpression","readToken_mult_modulo","hasFlowComment","nextToken","readToken_pipe_amp","parseTopLevel","file","program","fileNode","skipBlockComment","skipFlowComment","hasFlowCommentCompletion","commentSkip","shiftToFirstNonWhiteSpace","includes","ch2","ch3","slice","UnterminatedComment","flowEnumErrorBooleanMemberNotInitialized","flowEnumErrorInvalidMemberInitializer","enumContext","flowEnumErrorNumberMemberNotInitialized","flowEnumErrorStringMemberInconsistentlyInitailized","flowEnumMemberInit","endOfInit","literal","parseNumericLiteral","parseStringLiteral","parseBooleanLiteral","flowEnumMemberRaw","init","flowEnumCheckExplicitTypeMismatch","expectedType","flowEnumMembers","seenNames","members","booleanMembers","numberMembers","stringMembers","defaultedMembers","hasUnknownMembers","memberNode","toUpperCase","add","flowEnumStringMembers","initializedMembers","flowEnumParseExplicitType","flowEnumBody","nameLoc","empty","boolsLen","numsLen","strsLen","defaultedLen","nextTokenStart","afterNext","exports"],"sources":["../../../src/plugins/flow/index.ts"],"sourcesContent":["/*:: declare var invariant; */\n\nimport type Parser from \"../../parser\";\nimport {\n tokenIsIdentifier,\n tokenIsKeyword,\n tokenIsKeywordOrIdentifier,\n tokenIsLiteralPropertyName,\n tokenLabelName,\n tt,\n type TokenType,\n tokenIsFlowInterfaceOrTypeOrOpaque,\n} from \"../../tokenizer/types\";\nimport type * as N from \"../../types\";\nimport type { Position } from \"../../util/location\";\nimport { types as tc } from \"../../tokenizer/context\";\nimport * as charCodes from \"charcodes\";\nimport { isIteratorStart } from \"../../util/identifier\";\nimport FlowScopeHandler from \"./scope\";\nimport {\n BIND_LEXICAL,\n BIND_VAR,\n BIND_FUNCTION,\n BIND_FLOW_DECLARE_FN,\n SCOPE_ARROW,\n SCOPE_FUNCTION,\n SCOPE_OTHER,\n type BindingTypes,\n} from \"../../util/scopeflags\";\nimport type { ExpressionErrors } from \"../../parser/util\";\nimport type { ParseStatementFlag } from \"../../parser/statement\";\nimport { Errors, ParseErrorEnum } from \"../../parse-error\";\nimport { cloneIdentifier, type Undone } from \"../../parser/node\";\n\nconst reservedTypes = new Set([\n \"_\",\n \"any\",\n \"bool\",\n \"boolean\",\n \"empty\",\n \"extends\",\n \"false\",\n \"interface\",\n \"mixed\",\n \"null\",\n \"number\",\n \"static\",\n \"string\",\n \"true\",\n \"typeof\",\n \"void\",\n]);\n\n/* eslint sort-keys: \"error\" */\n// The Errors key follows https://github.com/facebook/flow/blob/master/src/parser/parse_error.ml unless it does not exist\nconst FlowErrors = ParseErrorEnum`flow`({\n AmbiguousConditionalArrow:\n \"Ambiguous expression: wrap the arrow functions in parentheses to disambiguate.\",\n AmbiguousDeclareModuleKind:\n \"Found both `declare module.exports` and `declare export` in the same module. Modules can only have 1 since they are either an ES module or they are a CommonJS module.\",\n // TODO: When we get proper string enums in typescript make this ReservedType.\n // Not really worth it to do the whole $Values dance with reservedTypes set.\n AssignReservedType: ({ reservedType }: { reservedType: string }) =>\n `Cannot overwrite reserved type ${reservedType}.`,\n DeclareClassElement:\n \"The `declare` modifier can only appear on class fields.\",\n DeclareClassFieldInitializer:\n \"Initializers are not allowed in fields with the `declare` modifier.\",\n DuplicateDeclareModuleExports:\n \"Duplicate `declare module.exports` statement.\",\n EnumBooleanMemberNotInitialized: ({\n memberName,\n enumName,\n }: {\n memberName: string;\n enumName: string;\n }) =>\n `Boolean enum members need to be initialized. Use either \\`${memberName} = true,\\` or \\`${memberName} = false,\\` in enum \\`${enumName}\\`.`,\n EnumDuplicateMemberName: ({\n memberName,\n enumName,\n }: {\n memberName: string;\n enumName: string;\n }) =>\n `Enum member names need to be unique, but the name \\`${memberName}\\` has already been used before in enum \\`${enumName}\\`.`,\n EnumInconsistentMemberValues: ({ enumName }: { enumName: string }) =>\n `Enum \\`${enumName}\\` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers.`,\n EnumInvalidExplicitType: ({\n invalidEnumType,\n enumName,\n }: {\n invalidEnumType: string;\n enumName: string;\n }) =>\n `Enum type \\`${invalidEnumType}\\` is not valid. Use one of \\`boolean\\`, \\`number\\`, \\`string\\`, or \\`symbol\\` in enum \\`${enumName}\\`.`,\n EnumInvalidExplicitTypeUnknownSupplied: ({\n enumName,\n }: {\n enumName: string;\n }) =>\n `Supplied enum type is not valid. Use one of \\`boolean\\`, \\`number\\`, \\`string\\`, or \\`symbol\\` in enum \\`${enumName}\\`.`,\n\n // TODO: When moving to typescript, we should either have each of the\n // following errors only accept the specific strings they want:\n //\n // ...PrimaryType: explicitType: \"string\" | \"number\" | \"boolean\"\n // ...SymbolType: explicitType: \"symbol\"\n // ...UnknownType: explicitType: null\n //\n // Or, alternatively, merge these three errors together into one\n // `EnumInvalidMemberInitializer` error that can accept `EnumExplicitType`\n // without alteration, and then just have its message change based on the\n // explicitType.\n EnumInvalidMemberInitializerPrimaryType: ({\n enumName,\n memberName,\n explicitType,\n }: {\n enumName: string;\n memberName: string;\n explicitType: EnumExplicitType;\n }) =>\n `Enum \\`${enumName}\\` has type \\`${explicitType}\\`, so the initializer of \\`${memberName}\\` needs to be a ${explicitType} literal.`,\n EnumInvalidMemberInitializerSymbolType: ({\n enumName,\n memberName,\n }: {\n enumName: string;\n memberName: string;\n explicitType: EnumExplicitType;\n }) =>\n `Symbol enum members cannot be initialized. Use \\`${memberName},\\` in enum \\`${enumName}\\`.`,\n EnumInvalidMemberInitializerUnknownType: ({\n enumName,\n memberName,\n }: {\n enumName: string;\n memberName: string;\n explicitType: EnumExplicitType;\n }) =>\n `The enum member initializer for \\`${memberName}\\` needs to be a literal (either a boolean, number, or string) in enum \\`${enumName}\\`.`,\n EnumInvalidMemberName: ({\n enumName,\n memberName,\n suggestion,\n }: {\n enumName: string;\n memberName: string;\n suggestion: string;\n }) =>\n `Enum member names cannot start with lowercase 'a' through 'z'. Instead of using \\`${memberName}\\`, consider using \\`${suggestion}\\`, in enum \\`${enumName}\\`.`,\n EnumNumberMemberNotInitialized: ({\n enumName,\n memberName,\n }: {\n enumName: string;\n memberName: string;\n }) =>\n `Number enum members need to be initialized, e.g. \\`${memberName} = 1\\` in enum \\`${enumName}\\`.`,\n EnumStringMemberInconsistentlyInitailized: ({\n enumName,\n }: {\n enumName: string;\n }) =>\n `String enum members need to consistently either all use initializers, or use no initializers, in enum \\`${enumName}\\`.`,\n GetterMayNotHaveThisParam: \"A getter cannot have a `this` parameter.\",\n ImportReflectionHasImportType:\n \"An `import module` declaration can not use `type` or `typeof` keyword.\",\n ImportTypeShorthandOnlyInPureImport:\n \"The `type` and `typeof` keywords on named imports can only be used on regular `import` statements. It cannot be used with `import type` or `import typeof` statements.\",\n InexactInsideExact:\n \"Explicit inexact syntax cannot appear inside an explicit exact object type.\",\n InexactInsideNonObject:\n \"Explicit inexact syntax cannot appear in class or interface definitions.\",\n InexactVariance: \"Explicit inexact syntax cannot have variance.\",\n InvalidNonTypeImportInDeclareModule:\n \"Imports within a `declare module` body must always be `import type` or `import typeof`.\",\n MissingTypeParamDefault:\n \"Type parameter declaration needs a default, since a preceding type parameter declaration has a default.\",\n NestedDeclareModule:\n \"`declare module` cannot be used inside another `declare module`.\",\n NestedFlowComment: \"Cannot have a flow comment inside another flow comment.\",\n PatternIsOptional: {\n message:\n \"A binding pattern parameter cannot be optional in an implementation signature.\",\n // For consistency in TypeScript and Flow error codes\n ...(!process.env.BABEL_8_BREAKING\n ? { reasonCode: \"OptionalBindingPattern\" }\n : {}),\n },\n SetterMayNotHaveThisParam: \"A setter cannot have a `this` parameter.\",\n SpreadVariance: \"Spread properties cannot have variance.\",\n ThisParamAnnotationRequired:\n \"A type annotation is required for the `this` parameter.\",\n ThisParamBannedInConstructor:\n \"Constructors cannot have a `this` parameter; constructors don't bind `this` like other functions.\",\n ThisParamMayNotBeOptional: \"The `this` parameter cannot be optional.\",\n ThisParamMustBeFirst:\n \"The `this` parameter must be the first function parameter.\",\n ThisParamNoDefault: \"The `this` parameter may not have a default value.\",\n TypeBeforeInitializer:\n \"Type annotations must come before default assignments, e.g. instead of `age = 25: number` use `age: number = 25`.\",\n TypeCastInPattern:\n \"The type cast expression is expected to be wrapped with parenthesis.\",\n UnexpectedExplicitInexactInObject:\n \"Explicit inexact syntax must appear at the end of an inexact object.\",\n UnexpectedReservedType: ({ reservedType }: { reservedType: string }) =>\n `Unexpected reserved type ${reservedType}.`,\n UnexpectedReservedUnderscore:\n \"`_` is only allowed as a type argument to call or new.\",\n UnexpectedSpaceBetweenModuloChecks:\n \"Spaces between `%` and `checks` are not allowed here.\",\n UnexpectedSpreadType:\n \"Spread operator cannot appear in class or interface definitions.\",\n UnexpectedSubtractionOperand:\n 'Unexpected token, expected \"number\" or \"bigint\".',\n UnexpectedTokenAfterTypeParameter:\n \"Expected an arrow function after this type parameter declaration.\",\n UnexpectedTypeParameterBeforeAsyncArrowFunction:\n \"Type parameters must come after the async keyword, e.g. instead of `<T> async () => {}`, use `async <T>() => {}`.\",\n UnsupportedDeclareExportKind: ({\n unsupportedExportKind,\n suggestion,\n }: {\n unsupportedExportKind: string;\n suggestion: string;\n }) =>\n `\\`declare export ${unsupportedExportKind}\\` is not supported. Use \\`${suggestion}\\` instead.`,\n UnsupportedStatementInDeclareModule:\n \"Only declares and type imports are allowed inside declare module.\",\n UnterminatedFlowComment: \"Unterminated flow-comment.\",\n});\n/* eslint-disable sort-keys */\n\nfunction isEsModuleType(bodyElement: N.Node): boolean {\n return (\n bodyElement.type === \"DeclareExportAllDeclaration\" ||\n (bodyElement.type === \"DeclareExportDeclaration\" &&\n (!bodyElement.declaration ||\n (bodyElement.declaration.type !== \"TypeAlias\" &&\n bodyElement.declaration.type !== \"InterfaceDeclaration\")))\n );\n}\n\nfunction hasTypeImportKind(node: N.Node): boolean {\n return node.importKind === \"type\" || node.importKind === \"typeof\";\n}\n\nconst exportSuggestions = {\n const: \"declare export var\",\n let: \"declare export var\",\n type: \"export type\",\n interface: \"export interface\",\n};\n\n// Like Array#filter, but returns a tuple [ acceptedElements, discardedElements ]\nfunction partition<T>(\n list: T[],\n test: (c: T, b: number, a: T[]) => boolean | undefined | null,\n): [T[], T[]] {\n const list1: T[] = [];\n const list2: T[] = [];\n for (let i = 0; i < list.length; i++) {\n (test(list[i], i, list) ? list1 : list2).push(list[i]);\n }\n return [list1, list2];\n}\n\nconst FLOW_PRAGMA_REGEX = /\\*?\\s*@((?:no)?flow)\\b/;\n\n// Flow enums types\ntype EnumExplicitType = null | \"boolean\" | \"number\" | \"string\" | \"symbol\";\n\ntype EnumContext = {\n enumName: string;\n explicitType: EnumExplicitType;\n memberName: string;\n};\n\ntype EnumMemberInit =\n | {\n type: \"number\";\n loc: Position;\n value: N.Node;\n }\n | {\n type: \"string\";\n loc: Position;\n value: N.Node;\n }\n | {\n type: \"boolean\";\n loc: Position;\n value: N.Node;\n }\n | {\n type: \"invalid\";\n loc: Position;\n }\n | {\n type: \"none\";\n loc: Position;\n };\n\nexport default (superClass: typeof Parser) =>\n class FlowParserMixin extends superClass implements Parser {\n // The value of the @flow/@noflow pragma. Initially undefined, transitions\n // to \"@flow\" or \"@noflow\" if we see a pragma. Transitions to null if we are\n // past the initial comment.\n flowPragma: void | null | \"flow\" | \"noflow\" = undefined;\n\n getScopeHandler(): {\n new (...args: any): FlowScopeHandler;\n } {\n return FlowScopeHandler;\n }\n\n shouldParseTypes(): boolean {\n return this.getPluginOption(\"flow\", \"all\") || this.flowPragma === \"flow\";\n }\n\n shouldParseEnums(): boolean {\n return !!this.getPluginOption(\"flow\", \"enums\");\n }\n\n finishToken(type: TokenType, val: any): void {\n if (\n type !== tt.string &&\n type !== tt.semi &&\n type !== tt.interpreterDirective\n ) {\n if (this.flowPragma === undefined) {\n this.flowPragma = null;\n }\n }\n super.finishToken(type, val);\n }\n\n addComment(comment: N.Comment): void {\n if (this.flowPragma === undefined) {\n // Try to parse a flow pragma.\n const matches = FLOW_PRAGMA_REGEX.exec(comment.value);\n if (!matches) {\n // do nothing\n } else if (matches[1] === \"flow\") {\n this.flowPragma = \"flow\";\n } else if (matches[1] === \"noflow\") {\n this.flowPragma = \"noflow\";\n } else {\n throw new Error(\"Unexpected flow pragma\");\n }\n }\n super.addComment(comment);\n }\n\n flowParseTypeInitialiser(tok?: TokenType): N.FlowType {\n const oldInType = this.state.inType;\n this.state.inType = true;\n this.expect(tok || tt.colon);\n\n const type = this.flowParseType();\n this.state.inType = oldInType;\n return type;\n }\n\n flowParsePredicate(): N.FlowPredicate {\n const node = this.startNode();\n const moduloLoc = this.state.startLoc;\n this.next(); // eat `%`\n this.expectContextual(tt._checks);\n // Force '%' and 'checks' to be adjacent\n if (this.state.lastTokStart > moduloLoc.index + 1) {\n this.raise(FlowErrors.UnexpectedSpaceBetweenModuloChecks, {\n at: moduloLoc,\n });\n }\n if (this.eat(tt.parenL)) {\n node.value = super.parseExpression();\n this.expect(tt.parenR);\n return this.finishNode(node, \"DeclaredPredicate\");\n } else {\n return this.finishNode(node, \"InferredPredicate\");\n }\n }\n\n flowParseTypeAndPredicateInitialiser(): [\n N.FlowType | undefined | null,\n N.FlowPredicate | undefined | null,\n ] {\n const oldInType = this.state.inType;\n this.state.inType = true;\n this.expect(tt.colon);\n let type = null;\n let predicate = null;\n if (this.match(tt.modulo)) {\n this.state.inType = oldInType;\n predicate = this.flowParsePredicate();\n } else {\n type = this.flowParseType();\n this.state.inType = oldInType;\n if (this.match(tt.modulo)) {\n predicate = this.flowParsePredicate();\n }\n }\n return [type, predicate];\n }\n\n flowParseDeclareClass(\n node: Undone<N.FlowDeclareClass>,\n ): N.FlowDeclareClass {\n this.next();\n this.flowParseInterfaceish(node, /*isClass*/ true);\n return this.finishNode(node, \"DeclareClass\");\n }\n\n flowParseDeclareFunction(\n node: Undone<N.FlowDeclareFunction>,\n ): N.FlowDeclareFunction {\n this.next();\n\n const id = (node.id = this.parseIdentifier());\n\n const typeNode = this.startNode();\n const typeContainer = this.startNode<N.TypeAnnotation>();\n\n if (this.match(tt.lt)) {\n typeNode.typeParameters = this.flowParseTypeParameterDeclaration();\n } else {\n typeNode.typeParameters = null;\n }\n\n this.expect(tt.parenL);\n const tmp = this.flowParseFunctionTypeParams();\n typeNode.params = tmp.params;\n typeNode.rest = tmp.rest;\n typeNode.this = tmp._this;\n this.expect(tt.parenR);\n\n [typeNode.returnType, node.predicate] =\n this.flowParseTypeAndPredicateInitialiser();\n\n typeContainer.typeAnnotation = this.finishNode(\n typeNode,\n \"FunctionTypeAnnotation\",\n );\n\n id.typeAnnotation = this.finishNode(typeContainer, \"TypeAnnotation\");\n\n this.resetEndLocation(id);\n this.semicolon();\n\n this.scope.declareName(\n node.id.name,\n BIND_FLOW_DECLARE_FN,\n node.id.loc.start,\n );\n\n return this.finishNode(node, \"DeclareFunction\");\n }\n\n flowParseDeclare(\n node: Undone<N.FlowDeclare>,\n insideModule?: boolean,\n ): N.FlowDeclare {\n if (this.match(tt._class)) {\n return this.flowParseDeclareClass(node);\n } else if (this.match(tt._function)) {\n return this.flowParseDeclareFunction(node);\n } else if (this.match(tt._var)) {\n return this.flowParseDeclareVariable(node);\n } else if (this.eatContextual(tt._module)) {\n if (this.match(tt.dot)) {\n return this.flowParseDeclareModuleExports(node);\n } else {\n if (insideModule) {\n this.raise(FlowErrors.NestedDeclareModule, {\n at: this.state.lastTokStartLoc,\n });\n }\n return this.flowParseDeclareModule(node);\n }\n } else if (this.isContextual(tt._type)) {\n return this.flowParseDeclareTypeAlias(node);\n } else if (this.isContextual(tt._opaque)) {\n return this.flowParseDeclareOpaqueType(node);\n } else if (this.isContextual(tt._interface)) {\n return this.flowParseDeclareInterface(node);\n } else if (this.match(tt._export)) {\n return this.flowParseDeclareExportDeclaration(node, insideModule);\n } else {\n this.unexpected();\n }\n }\n\n flowParseDeclareVariable(\n node: Undone<N.FlowDeclareVariable>,\n ): N.FlowDeclareVariable {\n this.next();\n node.id = this.flowParseTypeAnnotatableIdentifier(\n /*allowPrimitiveOverride*/ true,\n );\n this.scope.declareName(node.id.name, BIND_VAR, node.id.loc.start);\n this.semicolon();\n return this.finishNode(node, \"DeclareVariable\");\n }\n\n flowParseDeclareModule(\n node: Undone<N.FlowDeclareModule>,\n ): N.FlowDeclareModule {\n this.scope.enter(SCOPE_OTHER);\n\n if (this.match(tt.string)) {\n node.id = super.parseExprAtom();\n } else {\n node.id = this.parseIdentifier();\n }\n\n const bodyNode = (node.body = this.startNode());\n // @ts-expect-error refine typings\n const body = (bodyNode.body = []);\n this.expect(tt.braceL);\n while (!this.match(tt.braceR)) {\n let bodyNode = this.startNode<N.ImportDeclaration>();\n\n if (this.match(tt._import)) {\n this.next();\n if (!this.isContextual(tt._type) && !this.match(tt._typeof)) {\n this.raise(FlowErrors.InvalidNonTypeImportInDeclareModule, {\n at: this.state.lastTokStartLoc,\n });\n }\n super.parseImport(bodyNode);\n } else {\n this.expectContextual(\n tt._declare,\n FlowErrors.UnsupportedStatementInDeclareModule,\n );\n // @ts-expect-error refine typings\n bodyNode = this.flowParseDeclare(bodyNode, true);\n }\n\n body.push(bodyNode);\n }\n\n this.scope.exit();\n\n this.expect(tt.braceR);\n\n this.finishNode(bodyNode, \"BlockStatement\");\n\n let kind: \"CommonJS\" | \"ES\" | null = null;\n let hasModuleExport = false;\n body.forEach(bodyElement => {\n if (isEsModuleType(bodyElement)) {\n if (kind === \"CommonJS\") {\n this.raise(FlowErrors.AmbiguousDeclareModuleKind, {\n at: bodyElement,\n });\n }\n kind = \"ES\";\n } else if (bodyElement.type === \"DeclareModuleExports\") {\n if (hasModuleExport) {\n this.raise(FlowErrors.DuplicateDeclareModuleExports, {\n at: bodyElement,\n });\n }\n if (kind === \"ES\") {\n this.raise(FlowErrors.AmbiguousDeclareModuleKind, {\n at: bodyElement,\n });\n }\n kind = \"CommonJS\";\n hasModuleExport = true;\n }\n });\n\n node.kind = kind || \"CommonJS\";\n return this.finishNode(node, \"DeclareModule\");\n }\n\n flowParseDeclareExportDeclaration(\n node: Undone<N.FlowDeclareExportDeclaration>,\n insideModule?: boolean | null,\n ): N.FlowDeclareExportDeclaration {\n this.expect(tt._export);\n\n if (this.eat(tt._default)) {\n if (this.match(tt._function) || this.match(tt._class)) {\n // declare export default class ...\n // declare export default function ...\n node.declaration = this.flowParseDeclare(this.startNode());\n } else {\n // declare export default [type];\n node.declaration = this.flowParseType();\n this.semicolon();\n }\n node.default = true;\n\n return this.finishNode(node, \"DeclareExportDeclaration\");\n } else {\n if (\n this.match(tt._const) ||\n this.isLet() ||\n ((this.isContextual(tt._type) || this.isContextual(tt._interface)) &&\n !insideModule)\n ) {\n const label = this.state.value as\n | \"const\"\n | \"let\"\n | \"type\"\n | \"interface\";\n throw this.raise(FlowErrors.UnsupportedDeclareExportKind, {\n at: this.state.startLoc,\n unsupportedExportKind: label,\n suggestion: exportSuggestions[label],\n });\n }\n\n if (\n this.match(tt._var) || // declare export var ...\n this.match(tt._function) || // declare export function ...\n this.match(tt._class) || // declare export class ...\n this.isContextual(tt._opaque) // declare export opaque ..\n ) {\n node.declaration = this.flowParseDeclare(this.startNode());\n node.default = false;\n\n return this.finishNode(node, \"DeclareExportDeclaration\");\n } else if (\n this.match(tt.star) || // declare export * from ''\n this.match(tt.braceL) || // declare export {} ...\n this.isContextual(tt._interface) || // declare export interface ...\n this.isContextual(tt._type) || // declare export type ...\n this.isContextual(tt._opaque) // declare export opaque type ...\n ) {\n node = this.parseExport(\n node as Undone<N.ExportNamedDeclaration | N.ExportAllDeclaration>,\n /* decorators */ null,\n );\n if (node.type === \"ExportNamedDeclaration\") {\n node.type = \"ExportDeclaration\";\n node.default = false;\n delete node.exportKind;\n }\n\n node.type = \"Declare\" + node.type;\n\n return node as N.Node;\n }\n }\n\n this.unexpected();\n }\n\n flowParseDeclareModuleExports(\n node: Undone<N.FlowDeclareModuleExports>,\n ): N.FlowDeclareModuleExports {\n this.next();\n this.expectContextual(tt._exports);\n node.typeAnnotation = this.flowParseTypeAnnotation();\n this.semicolon();\n\n return this.finishNode(node, \"DeclareModuleExports\");\n }\n\n flowParseDeclareTypeAlias(\n node: Undone<N.FlowDeclareTypeAlias>,\n ): N.FlowDeclareTypeAlias {\n this.next();\n const finished = this.flowParseTypeAlias(node);\n // Don't do finishNode as we don't want to process comments twice\n finished.type = \"DeclareTypeAlias\";\n return finished;\n }\n\n flowParseDeclareOpaqueType(\n node: Undone<N.FlowDeclareOpaqueType>,\n ): N.FlowDeclareOpaqueType {\n this.next();\n const finished = this.flowParseOpaqueType(node, true);\n // Don't do finishNode as we don't want to process comments twice\n finished.type = \"DeclareOpaqueType\";\n return finished;\n }\n\n flowParseDeclareInterface(\n node: Undone<N.FlowDeclareInterface>,\n ): N.FlowDeclareInterface {\n this.next();\n this.flowParseInterfaceish(node, /* isClass */ false);\n return this.finishNode(node, \"DeclareInterface\");\n }\n\n // Interfaces\n\n flowParseInterfaceish(node: Undone<N.FlowDeclare>, isClass: boolean): void {\n node.id = this.flowParseRestrictedIdentifier(\n /* liberal */ !isClass,\n /* declaration */ true,\n );\n\n this.scope.declareName(\n node.id.name,\n isClass ? BIND_FUNCTION : BIND_LEXICAL,\n node.id.loc.start,\n );\n\n if (this.match(tt.lt)) {\n node.typeParameters = this.flowParseTypeParameterDeclaration();\n } else {\n node.typeParameters = null;\n }\n\n node.extends = [];\n\n if (this.eat(tt._extends)) {\n do {\n node.extends.push(this.flowParseInterfaceExtends());\n } while (!isClass && this.eat(tt.comma));\n }\n\n if (isClass) {\n node.implements = [];\n node.mixins = [];\n\n if (this.eatContextual(tt._mixins)) {\n do {\n node.mixins.push(this.flowParseInterfaceExtends());\n } while (this.eat(tt.comma));\n }\n\n if (this.eatContextual(tt._implements)) {\n do {\n node.implements.push(this.flowParseInterfaceExtends());\n } while (this.eat(tt.comma));\n }\n }\n\n node.body = this.flowParseObjectType({\n allowStatic: isClass,\n allowExact: false,\n allowSpread: false,\n allowProto: isClass,\n allowInexact: false,\n });\n }\n\n flowParseInterfaceExtends(): N.FlowInterfaceExtends {\n const node = this.startNode();\n\n node.id = this.flowParseQualifiedTypeIdentifier();\n if (this.match(tt.lt)) {\n node.typeParameters = this.flowParseTypeParameterInstantiation();\n } else {\n node.typeParameters = null;\n }\n\n return this.finishNode(node, \"InterfaceExtends\");\n }\n\n flowParseInterface(node: Undone<N.FlowInterface>): N.FlowInterface {\n this.flowParseInterfaceish(node, /* isClass */ false);\n return this.finishNode(node, \"InterfaceDeclaration\");\n }\n\n checkNotUnderscore(word: string) {\n if (word === \"_\") {\n this.raise(FlowErrors.UnexpectedReservedUnderscore, {\n at: this.state.startLoc,\n });\n }\n }\n\n checkReservedType(word: string, startLoc: Position, declaration?: boolean) {\n if (!reservedTypes.has(word)) return;\n\n this.raise(\n declaration\n ? FlowErrors.AssignReservedType\n : FlowErrors.UnexpectedReservedType,\n {\n at: startLoc,\n reservedType: word,\n },\n );\n }\n\n flowParseRestrictedIdentifier(\n liberal?: boolean,\n declaration?: boolean,\n ): N.Identifier {\n this.checkReservedType(\n this.state.value,\n this.state.startLoc,\n declaration,\n );\n return this.parseIdentifier(liberal);\n }\n\n // Type aliases\n\n flowParseTypeAlias(node: Undone<N.FlowTypeAlias>): N.FlowTypeAlias {\n node.id = this.flowParseRestrictedIdentifier(\n /* liberal */ false,\n /* declaration */ true,\n );\n this.scope.declareName(node.id.name, BIND_LEXICAL, node.id.loc.start);\n\n if (this.match(tt.lt)) {\n node.typeParameters = this.flowParseTypeParameterDeclaration();\n } else {\n node.typeParameters = null;\n }\n\n node.right = this.flowParseTypeInitialiser(tt.eq);\n this.semicolon();\n\n return this.finishNode(node, \"TypeAlias\");\n }\n\n flowParseOpaqueType(\n node: Undone<N.FlowOpaqueType>,\n declare: boolean,\n ): N.FlowOpaqueType {\n this.expectContextual(tt._type);\n node.id = this.flowParseRestrictedIdentifier(\n /* liberal */ true,\n /* declaration */ true,\n );\n this.scope.declareName(node.id.name, BIND_LEXICAL, node.id.loc.start);\n\n if (this.match(tt.lt)) {\n node.typeParameters = this.flowParseTypeParameterDeclaration();\n } else {\n node.typeParameters = null;\n }\n\n // Parse the supertype\n node.supertype = null;\n if (this.match(tt.colon)) {\n node.supertype = this.flowParseTypeInitialiser(tt.colon);\n }\n\n node.impltype = null;\n if (!declare) {\n node.impltype = this.flowParseTypeInitialiser(tt.eq);\n }\n this.semicolon();\n\n return this.finishNode(node, \"OpaqueType\");\n }\n\n // Type annotations\n\n flowParseTypeParameter(requireDefault: boolean = false): N.TypeParameter {\n const nodeStartLoc = this.state.startLoc;\n\n const node = this.startNode<N.TypeParameter>();\n\n const variance = this.flowParseVariance();\n\n const ident = this.flowParseTypeAnnotatableIdentifier();\n node.name = ident.name;\n // @ts-expect-error migrate to Babel types\n node.variance = variance;\n // @ts-expect-error migrate to Babel types\n node.bound = ident.typeAnnotation;\n\n if (this.match(tt.eq)) {\n this.eat(tt.eq);\n // @ts-expect-error migrate to Babel types\n node.default = this.flowParseType();\n } else {\n if (requireDefault) {\n this.raise(FlowErrors.MissingTypeParamDefault, { at: nodeStartLoc });\n }\n }\n\n return this.finishNode(node, \"TypeParameter\");\n }\n\n flowParseTypeParameterDeclaration(): N.TypeParameterDeclaration {\n const oldInType = this.state.inType;\n const node = this.startNode<N.TypeParameterDeclaration>();\n node.params = [];\n\n this.state.inType = true;\n\n // istanbul ignore else: this condition is already checked at all call sites\n if (this.match(tt.lt) || this.match(tt.jsxTagStart)) {\n this.next();\n } else {\n this.unexpected();\n }\n\n let defaultRequired = false;\n\n do {\n const typeParameter = this.flowParseTypeParameter(defaultRequired);\n\n node.params.push(typeParameter);\n\n if (typeParameter.default) {\n defaultRequired = true;\n }\n\n if (!this.match(tt.gt)) {\n this.expect(tt.comma);\n }\n } while (!this.match(tt.gt));\n this.expect(tt.gt);\n\n this.state.inType = oldInType;\n\n return this.finishNode(node, \"TypeParameterDeclaration\");\n }\n\n flowParseTypeParameterInstantiation(): N.TypeParameterInstantiation {\n const node = this.startNode<N.TypeParameterInstantiation>();\n const oldInType = this.state.inType;\n node.params = [];\n\n this.state.inType = true;\n\n this.expect(tt.lt);\n const oldNoAnonFunctionType = this.state.noAnonFunctionType;\n this.state.noAnonFunctionType = false;\n while (!this.match(tt.gt)) {\n node.params.push(this.flowParseType());\n if (!this.match(tt.gt)) {\n this.expect(tt.comma);\n }\n }\n this.state.noAnonFunctionType = oldNoAnonFunctionType;\n this.expect(tt.gt);\n\n this.state.inType = oldInType;\n\n return this.finishNode(node, \"TypeParameterInstantiation\");\n }\n\n flowParseTypeParameterInstantiationCallOrNew(): N.TypeParameterInstantiation {\n const node = this.startNode<N.TypeParameterInstantiation>();\n const oldInType = this.state.inType;\n node.params = [];\n\n this.state.inType = true;\n\n this.expect(tt.lt);\n while (!this.match(tt.gt)) {\n node.params.push(this.flowParseTypeOrImplicitInstantiation());\n if (!this.match(tt.gt)) {\n this.expect(tt.comma);\n }\n }\n this.expect(tt.gt);\n\n this.state.inType = oldInType;\n\n return this.finishNode(node, \"TypeParameterInstantiation\");\n }\n\n flowParseInterfaceType(): N.FlowInterfaceType {\n const node = this.startNode<N.FlowInterfaceType>();\n this.expectContextual(tt._interface);\n\n node.extends = [];\n if (this.eat(tt._extends)) {\n do {\n node.extends.push(this.flowParseInterfaceExtends());\n } while (this.eat(tt.comma));\n }\n\n node.body = this.flowParseObjectType({\n allowStatic: false,\n allowExact: false,\n allowSpread: false,\n allowProto: false,\n allowInexact: false,\n });\n\n return this.finishNode(node, \"InterfaceTypeAnnotation\");\n }\n\n flowParseObjectPropertyKey(): N.Expression {\n return this.match(tt.num) || this.match(tt.string)\n ? super.parseExprAtom()\n : this.parseIdentifier(true);\n }\n\n flowParseObjectTypeIndexer(\n node: Undone<N.FlowObjectTypeIndexer>,\n isStatic: boolean,\n variance?: N.FlowVariance | null,\n ): N.FlowObjectTypeIndexer {\n node.static = isStatic;\n\n // Note: bracketL has already been consumed\n if (this.lookahead().type === tt.colon) {\n node.id = this.flowParseObjectPropertyKey();\n node.key = this.flowParseTypeInitialiser();\n } else {\n node.id = null;\n node.key = this.flowParseType();\n }\n this.expect(tt.bracketR);\n node.value = this.flowParseTypeInitialiser();\n node.variance = variance;\n\n return this.finishNode(node, \"ObjectTypeIndexer\");\n }\n\n flowParseObjectTypeInternalSlot(\n node: Undone<N.FlowObjectTypeInternalSlot>,\n isStatic: boolean,\n ): N.FlowObjectTypeInternalSlot {\n node.static = isStatic;\n // Note: both bracketL have already been consumed\n node.id = this.flowParseObjectPropertyKey();\n this.expect(tt.bracketR);\n this.expect(tt.bracketR);\n if (this.match(tt.lt) || this.match(tt.parenL)) {\n node.method = true;\n node.optional = false;\n node.value = this.flowParseObjectTypeMethodish(\n this.startNodeAt(node.loc.start),\n );\n } else {\n node.method = false;\n if (this.eat(tt.question)) {\n node.optional = true;\n }\n node.value = this.flowParseTypeInitialiser();\n }\n return this.finishNode(node, \"ObjectTypeInternalSlot\");\n }\n\n flowParseObjectTypeMethodish(\n node: Undone<N.FlowFunctionTypeAnnotation>,\n ): N.FlowFunctionTypeAnnotation {\n node.params = [];\n node.rest = null;\n node.typeParameters = null;\n node.this = null;\n\n if (this.match(tt.lt)) {\n node.typeParameters = this.flowParseTypeParameterDeclaration();\n }\n\n this.expect(tt.parenL);\n if (this.match(tt._this)) {\n node.this = this.flowParseFunctionTypeParam(/* first */ true);\n // match Flow parser behavior\n node.this.name = null;\n if (!this.match(tt.parenR)) {\n this.expect(tt.comma);\n }\n }\n while (!this.match(tt.parenR) && !this.match(tt.ellipsis)) {\n node.params.push(this.flowParseFunctionTypeParam(false));\n if (!this.match(tt.parenR)) {\n this.expect(tt.comma);\n }\n }\n\n if (this.eat(tt.ellipsis)) {\n node.rest = this.flowParseFunctionTypeParam(false);\n }\n this.expect(tt.parenR);\n node.returnType = this.flowParseTypeInitialiser();\n\n return this.finishNode(node, \"FunctionTypeAnnotation\");\n }\n\n flowParseObjectTypeCallProperty(\n node: Undone<N.FlowObjectTypeCallProperty>,\n isStatic: boolean,\n ): N.FlowObjectTypeCallProperty {\n const valueNode = this.startNode();\n node.static = isStatic;\n node.value = this.flowParseObjectTypeMethodish(valueNode);\n return this.finishNode(node, \"ObjectTypeCallProperty\");\n }\n\n flowParseObjectType({\n allowStatic,\n allowExact,\n allowSpread,\n allowProto,\n allowInexact,\n }: {\n allowStatic: boolean;\n allowExact: boolean;\n allowSpread: boolean;\n allowProto: boolean;\n allowInexact: boolean;\n }): N.FlowObjectTypeAnnotation {\n const oldInType = this.state.inType;\n this.state.inType = true;\n\n const nodeStart = this.startNode();\n\n nodeStart.callProperties = [];\n nodeStart.properties = [];\n nodeStart.indexers = [];\n nodeStart.internalSlots = [];\n\n let endDelim;\n let exact;\n let inexact = false;\n if (allowExact && this.match(tt.braceBarL)) {\n this.expect(tt.braceBarL);\n endDelim = tt.braceBarR;\n exact = true;\n } else {\n this.expect(tt.braceL);\n endDelim = tt.braceR;\n exact = false;\n }\n\n nodeStart.exact = exact;\n\n while (!this.match(endDelim)) {\n let isStatic = false;\n let protoStartLoc: Position | undefined | null = null;\n let inexactStartLoc: Position | undefined | null = null;\n const node = this.startNode();\n\n if (allowProto && this.isContextual(tt._proto)) {\n const lookahead = this.lookahead();\n\n if (lookahead.type !== tt.colon && lookahead.type !== tt.question) {\n this.next();\n protoStartLoc = this.state.startLoc;\n allowStatic = false;\n }\n }\n\n if (allowStatic && this.isContextual(tt._static)) {\n const lookahead = this.lookahead();\n\n // static is a valid identifier name\n if (lookahead.type !== tt.colon && lookahead.type !== tt.question) {\n this.next();\n isStatic = true;\n }\n }\n\n const variance = this.flowParseVariance();\n\n if (this.eat(tt.bracketL)) {\n if (protoStartLoc != null) {\n this.unexpected(protoStartLoc);\n }\n if (this.eat(tt.bracketL)) {\n if (variance) {\n this.unexpected(variance.loc.start);\n }\n nodeStart.internalSlots.push(\n this.flowParseObjectTypeInternalSlot(node, isStatic),\n );\n } else {\n nodeStart.indexers.push(\n this.flowParseObjectTypeIndexer(node, isStatic, variance),\n );\n }\n } else if (this.match(tt.parenL) || this.match(tt.lt)) {\n if (protoStartLoc != null) {\n this.unexpected(protoStartLoc);\n }\n if (variance) {\n this.unexpected(variance.loc.start);\n }\n nodeStart.callProperties.push(\n this.flowParseObjectTypeCallProperty(node, isStatic),\n );\n } else {\n let kind = \"init\";\n\n if (this.isContextual(tt._get) || this.isContextual(tt._set)) {\n const lookahead = this.lookahead();\n if (tokenIsLiteralPropertyName(lookahead.type)) {\n kind = this.state.value;\n this.next();\n }\n }\n\n const propOrInexact = this.flowParseObjectTypeProperty(\n node,\n isStatic,\n protoStartLoc,\n variance,\n kind,\n allowSpread,\n allowInexact ?? !exact,\n );\n\n if (propOrInexact === null) {\n inexact = true;\n inexactStartLoc = this.state.lastTokStartLoc;\n } else {\n nodeStart.properties.push(propOrInexact);\n }\n }\n\n this.flowObjectTypeSemicolon();\n\n if (\n inexactStartLoc &&\n !this.match(tt.braceR) &&\n !this.match(tt.braceBarR)\n ) {\n this.raise(FlowErrors.UnexpectedExplicitInexactInObject, {\n at: inexactStartLoc,\n });\n }\n }\n\n this.expect(endDelim);\n\n /* The inexact flag should only be added on ObjectTypeAnnotations that\n * are not the body of an interface, declare interface, or declare class.\n * Since spreads are only allowed in object types, checking that is\n * sufficient here.\n */\n if (allowSpread) {\n nodeStart.inexact = inexact;\n }\n\n const out = this.finishNode(nodeStart, \"ObjectTypeAnnotation\");\n\n this.state.inType = oldInType;\n\n return out;\n }\n\n flowParseObjectTypeProperty(\n node: Undone<N.FlowObjectTypeProperty | N.FlowObjectTypeSpreadProperty>,\n isStatic: boolean,\n protoStartLoc: Position | undefined | null,\n variance: N.FlowVariance | undefined | null,\n kind: string,\n allowSpread: boolean,\n allowInexact: boolean,\n ): N.FlowObjectTypeProperty | N.FlowObjectTypeSpreadProperty | null {\n if (this.eat(tt.ellipsis)) {\n const isInexactToken =\n this.match(tt.comma) ||\n this.match(tt.semi) ||\n this.match(tt.braceR) ||\n this.match(tt.braceBarR);\n\n if (isInexactToken) {\n if (!allowSpread) {\n this.raise(FlowErrors.InexactInsideNonObject, {\n at: this.state.lastTokStartLoc,\n });\n } else if (!allowInexact) {\n this.raise(FlowErrors.InexactInsideExact, {\n at: this.state.lastTokStartLoc,\n });\n }\n if (variance) {\n this.raise(FlowErrors.InexactVariance, { at: variance });\n }\n\n return null;\n }\n\n if (!allowSpread) {\n this.raise(FlowErrors.UnexpectedSpreadType, {\n at: this.state.lastTokStartLoc,\n });\n }\n if (protoStartLoc != null) {\n this.unexpected(protoStartLoc);\n }\n if (variance) {\n this.raise(FlowErrors.SpreadVariance, { at: variance });\n }\n\n node.argument = this.flowParseType();\n return this.finishNode(node, \"ObjectTypeSpreadProperty\");\n } else {\n node.key = this.flowParseObjectPropertyKey();\n node.static = isStatic;\n node.proto = protoStartLoc != null;\n node.kind = kind;\n\n let optional = false;\n if (this.match(tt.lt) || this.match(tt.parenL)) {\n // This is a method property\n node.method = true;\n\n if (protoStartLoc != null) {\n this.unexpected(protoStartLoc);\n }\n if (variance) {\n this.unexpected(variance.loc.start);\n }\n\n node.value = this.flowParseObjectTypeMethodish(\n this.startNodeAt(node.loc.start),\n );\n if (kind === \"get\" || kind === \"set\") {\n this.flowCheckGetterSetterParams(node);\n }\n /** Declared classes/interfaces do not allow spread */\n if (\n !allowSpread &&\n node.key.name === \"constructor\" &&\n node.value.this\n ) {\n this.raise(FlowErrors.ThisParamBannedInConstructor, {\n at: node.value.this,\n });\n }\n } else {\n if (kind !== \"init\") this.unexpected();\n\n node.method = false;\n\n if (this.eat(tt.question)) {\n optional = true;\n }\n node.value = this.flowParseTypeInitialiser();\n node.variance = variance;\n }\n\n node.optional = optional;\n\n return this.finishNode(node, \"ObjectTypeProperty\");\n }\n }\n\n // This is similar to checkGetterSetterParams, but as\n // @babel/parser uses non estree properties we cannot reuse it here\n flowCheckGetterSetterParams(\n property: Undone<\n N.FlowObjectTypeProperty | N.FlowObjectTypeSpreadProperty\n >,\n ): void {\n const paramCount = property.kind === \"get\" ? 0 : 1;\n const length =\n property.value.params.length + (property.value.rest ? 1 : 0);\n\n if (property.value.this) {\n this.raise(\n property.kind === \"get\"\n ? FlowErrors.GetterMayNotHaveThisParam\n : FlowErrors.SetterMayNotHaveThisParam,\n { at: property.value.this },\n );\n }\n\n if (length !== paramCount) {\n this.raise(\n property.kind === \"get\"\n ? Errors.BadGetterArity\n : Errors.BadSetterArity,\n { at: property },\n );\n }\n\n if (property.kind === \"set\" && property.value.rest) {\n this.raise(Errors.BadSetterRestParameter, { at: property });\n }\n }\n\n flowObjectTypeSemicolon(): void {\n if (\n !this.eat(tt.semi) &&\n !this.eat(tt.comma) &&\n !this.match(tt.braceR) &&\n !this.match(tt.braceBarR)\n ) {\n this.unexpected();\n }\n }\n\n flowParseQualifiedTypeIdentifier(\n startLoc?: Position,\n id?: N.Identifier,\n ): N.FlowQualifiedTypeIdentifier {\n startLoc ??= this.state.startLoc;\n let node: N.Identifier | N.FlowQualifiedTypeIdentifier =\n id || this.flowParseRestrictedIdentifier(true);\n\n while (this.eat(tt.dot)) {\n const node2 = this.startNodeAt<N.FlowQualifiedTypeIdentifier>(startLoc);\n node2.qualification = node;\n node2.id = this.flowParseRestrictedIdentifier(true);\n node = this.finishNode(node2, \"QualifiedTypeIdentifier\");\n }\n\n return node;\n }\n\n flowParseGenericType(\n startLoc: Position,\n id: N.Identifier,\n ): N.FlowGenericTypeAnnotation {\n const node = this.startNodeAt(startLoc);\n\n node.typeParameters = null;\n node.id = this.flowParseQualifiedTypeIdentifier(startLoc, id);\n\n if (this.match(tt.lt)) {\n node.typeParameters = this.flowParseTypeParameterInstantiation();\n }\n\n return this.finishNode(node, \"GenericTypeAnnotation\");\n }\n\n flowParseTypeofType(): N.FlowTypeofTypeAnnotation {\n const node = this.startNode();\n this.expect(tt._typeof);\n node.argument = this.flowParsePrimaryType();\n return this.finishNode(node, \"TypeofTypeAnnotation\");\n }\n\n flowParseTupleType(): N.FlowTupleTypeAnnotation {\n const node = this.startNode();\n node.types = [];\n this.expect(tt.bracketL);\n // We allow trailing commas\n while (this.state.pos < this.length && !this.match(tt.bracketR)) {\n node.types.push(this.flowParseType());\n if (this.match(tt.bracketR)) break;\n this.expect(tt.comma);\n }\n this.expect(tt.bracketR);\n return this.finishNode(node, \"TupleTypeAnnotation\");\n }\n\n flowParseFunctionTypeParam(first: boolean): N.FlowFunctionTypeParam {\n let name = null;\n let optional = false;\n let typeAnnotation = null;\n const node = this.startNode<N.FlowFunctionTypeParam>();\n const lh = this.lookahead();\n const isThis = this.state.type === tt._this;\n\n if (lh.type === tt.colon || lh.type === tt.question) {\n if (isThis && !first) {\n this.raise(FlowErrors.ThisParamMustBeFirst, { at: node });\n }\n name = this.parseIdentifier(isThis);\n if (this.eat(tt.question)) {\n optional = true;\n if (isThis) {\n this.raise(FlowErrors.ThisParamMayNotBeOptional, { at: node });\n }\n }\n typeAnnotation = this.flowParseTypeInitialiser();\n } else {\n typeAnnotation = this.flowParseType();\n }\n node.name = name;\n node.optional = optional;\n node.typeAnnotation = typeAnnotation;\n return this.finishNode(node, \"FunctionTypeParam\");\n }\n\n reinterpretTypeAsFunctionTypeParam(\n type: N.FlowType,\n ): N.FlowFunctionTypeParam {\n const node = this.startNodeAt(type.loc.start);\n node.name = null;\n node.optional = false;\n node.typeAnnotation = type;\n return this.finishNode(node, \"FunctionTypeParam\");\n }\n\n flowParseFunctionTypeParams(params: N.FlowFunctionTypeParam[] = []): {\n params: N.FlowFunctionTypeParam[];\n rest: N.FlowFunctionTypeParam | undefined | null;\n _this: N.FlowFunctionTypeParam | undefined | null;\n } {\n let rest: N.FlowFunctionTypeParam | undefined | null = null;\n let _this: N.FlowFunctionTypeParam | undefined | null = null;\n if (this.match(tt._this)) {\n _this = this.flowParseFunctionTypeParam(/* first */ true);\n // match Flow parser behavior\n _this.name = null;\n if (!this.match(tt.parenR)) {\n this.expect(tt.comma);\n }\n }\n while (!this.match(tt.parenR) && !this.match(tt.ellipsis)) {\n params.push(this.flowParseFunctionTypeParam(false));\n if (!this.match(tt.parenR)) {\n this.expect(tt.comma);\n }\n }\n if (this.eat(tt.ellipsis)) {\n rest = this.flowParseFunctionTypeParam(false);\n }\n return { params, rest, _this };\n }\n\n flowIdentToTypeAnnotation(\n startLoc: Position,\n node: Undone<N.FlowTypeAnnotation>,\n id: N.Identifier,\n ): N.FlowTypeAnnotation {\n switch (id.name) {\n case \"any\":\n return this.finishNode(node, \"AnyTypeAnnotation\");\n\n case \"bool\":\n case \"boolean\":\n return this.finishNode(node, \"BooleanTypeAnnotation\");\n\n case \"mixed\":\n return this.finishNode(node, \"MixedTypeAnnotation\");\n\n case \"empty\":\n return this.finishNode(node, \"EmptyTypeAnnotation\");\n\n case \"number\":\n return this.finishNode(node, \"NumberTypeAnnotation\");\n\n case \"string\":\n return this.finishNode(node, \"StringTypeAnnotation\");\n\n case \"symbol\":\n return this.finishNode(node, \"SymbolTypeAnnotation\");\n\n default:\n this.checkNotUnderscore(id.name);\n return this.flowParseGenericType(startLoc, id);\n }\n }\n\n // The parsing of types roughly parallels the parsing of expressions, and\n // primary types are kind of like primary expressions...they're the\n // primitives with which other types are constructed.\n flowParsePrimaryType(): N.FlowTypeAnnotation {\n const startLoc = this.state.startLoc;\n const node = this.startNode();\n let tmp;\n let type;\n let isGroupedType = false;\n const oldNoAnonFunctionType = this.state.noAnonFunctionType;\n\n switch (this.state.type) {\n case tt.braceL:\n return this.flowParseObjectType({\n allowStatic: false,\n allowExact: false,\n allowSpread: true,\n allowProto: false,\n allowInexact: true,\n });\n\n case tt.braceBarL:\n return this.flowParseObjectType({\n allowStatic: false,\n allowExact: true,\n allowSpread: true,\n allowProto: false,\n allowInexact: false,\n });\n\n case tt.bracketL:\n this.state.noAnonFunctionType = false;\n type = this.flowParseTupleType();\n this.state.noAnonFunctionType = oldNoAnonFunctionType;\n return type;\n\n case tt.lt:\n node.typeParameters = this.flowParseTypeParameterDeclaration();\n this.expect(tt.parenL);\n tmp = this.flowParseFunctionTypeParams();\n node.params = tmp.params;\n node.rest = tmp.rest;\n node.this = tmp._this;\n this.expect(tt.parenR);\n\n this.expect(tt.arrow);\n\n node.returnType = this.flowParseType();\n\n return this.finishNode(node, \"FunctionTypeAnnotation\");\n\n case tt.parenL:\n this.next();\n\n // Check to see if this is actually a grouped type\n if (!this.match(tt.parenR) && !this.match(tt.ellipsis)) {\n if (tokenIsIdentifier(this.state.type) || this.match(tt._this)) {\n const token = this.lookahead().type;\n isGroupedType = token !== tt.question && token !== tt.colon;\n } else {\n isGroupedType = true;\n }\n }\n\n if (isGroupedType) {\n this.state.noAnonFunctionType = false;\n type = this.flowParseType();\n this.state.noAnonFunctionType = oldNoAnonFunctionType;\n\n // A `,` or a `) =>` means this is an anonymous function type\n if (\n this.state.noAnonFunctionType ||\n !(\n this.match(tt.comma) ||\n (this.match(tt.parenR) && this.lookahead().type === tt.arrow)\n )\n ) {\n this.expect(tt.parenR);\n return type;\n } else {\n // Eat a comma if there is one\n this.eat(tt.comma);\n }\n }\n\n if (type) {\n tmp = this.flowParseFunctionTypeParams([\n this.reinterpretTypeAsFunctionTypeParam(type),\n ]);\n } else {\n tmp = this.flowParseFunctionTypeParams();\n }\n\n node.params = tmp.params;\n node.rest = tmp.rest;\n node.this = tmp._this;\n\n this.expect(tt.parenR);\n\n this.expect(tt.arrow);\n\n node.returnType = this.flowParseType();\n\n node.typeParameters = null;\n\n return this.finishNode(node, \"FunctionTypeAnnotation\");\n\n case tt.string:\n return this.parseLiteral<N.StringLiteralTypeAnnotation>(\n this.state.value,\n \"StringLiteralTypeAnnotation\",\n );\n\n case tt._true:\n case tt._false:\n node.value = this.match(tt._true);\n this.next();\n return this.finishNode(\n node as Undone<N.BooleanLiteralTypeAnnotation>,\n \"BooleanLiteralTypeAnnotation\",\n );\n\n case tt.plusMin:\n if (this.state.value === \"-\") {\n this.next();\n if (this.match(tt.num)) {\n return this.parseLiteralAtNode<N.NumberLiteralTypeAnnotation>(\n -this.state.value,\n \"NumberLiteralTypeAnnotation\",\n node,\n );\n }\n\n if (this.match(tt.bigint)) {\n return this.parseLiteralAtNode<N.BigIntLiteralTypeAnnotation>(\n -this.state.value,\n \"BigIntLiteralTypeAnnotation\",\n node,\n );\n }\n\n throw this.raise(FlowErrors.UnexpectedSubtractionOperand, {\n at: this.state.startLoc,\n });\n }\n this.unexpected();\n return;\n case tt.num:\n return this.parseLiteral(\n this.state.value,\n \"NumberLiteralTypeAnnotation\",\n );\n\n case tt.bigint:\n return this.parseLiteral(\n this.state.value,\n \"BigIntLiteralTypeAnnotation\",\n );\n\n case tt._void:\n this.next();\n return this.finishNode(node, \"VoidTypeAnnotation\");\n\n case tt._null:\n this.next();\n return this.finishNode(node, \"NullLiteralTypeAnnotation\");\n\n case tt._this:\n this.next();\n return this.finishNode(node, \"ThisTypeAnnotation\");\n\n case tt.star:\n this.next();\n return this.finishNode(node, \"ExistsTypeAnnotation\");\n\n case tt._typeof:\n return this.flowParseTypeofType();\n\n default:\n if (tokenIsKeyword(this.state.type)) {\n const label = tokenLabelName(this.state.type);\n this.next();\n return super.createIdentifier(node as Undone<N.Identifier>, label);\n } else if (tokenIsIdentifier(this.state.type)) {\n if (this.isContextual(tt._interface)) {\n return this.flowParseInterfaceType();\n }\n\n return this.flowIdentToTypeAnnotation(\n startLoc,\n node,\n this.parseIdentifier(),\n );\n }\n }\n\n this.unexpected();\n }\n\n flowParsePostfixType(): N.FlowTypeAnnotation {\n const startLoc = this.state.startLoc;\n let type = this.flowParsePrimaryType();\n let seenOptionalIndexedAccess = false;\n while (\n (this.match(tt.bracketL) || this.match(tt.questionDot)) &&\n !this.canInsertSemicolon()\n ) {\n const node = this.startNodeAt(startLoc);\n const optional = this.eat(tt.questionDot);\n seenOptionalIndexedAccess = seenOptionalIndexedAccess || optional;\n this.expect(tt.bracketL);\n if (!optional && this.match(tt.bracketR)) {\n node.elementType = type;\n this.next(); // eat `]`\n type = this.finishNode(node, \"ArrayTypeAnnotation\");\n } else {\n node.objectType = type;\n node.indexType = this.flowParseType();\n this.expect(tt.bracketR);\n if (seenOptionalIndexedAccess) {\n node.optional = optional;\n type = this.finishNode<N.FlowOptionalIndexedAccessType>(\n // @ts-expect-error todo(flow->ts)\n node,\n \"OptionalIndexedAccessType\",\n );\n } else {\n type = this.finishNode<N.FlowIndexedAccessType>(\n // @ts-expect-error todo(flow->ts)\n node,\n \"IndexedAccessType\",\n );\n }\n }\n }\n return type;\n }\n\n flowParsePrefixType(): N.FlowTypeAnnotation {\n const node = this.startNode();\n if (this.eat(tt.question)) {\n node.typeAnnotation = this.flowParsePrefixType();\n return this.finishNode(node, \"NullableTypeAnnotation\");\n } else {\n return this.flowParsePostfixType();\n }\n }\n\n flowParseAnonFunctionWithoutParens(): N.FlowTypeAnnotation {\n const param = this.flowParsePrefixType();\n if (!this.state.noAnonFunctionType && this.eat(tt.arrow)) {\n // TODO: This should be a type error. Passing in a SourceLocation, and it expects a Position.\n const node = this.startNodeAt(param.loc.start);\n node.params = [this.reinterpretTypeAsFunctionTypeParam(param)];\n node.rest = null;\n node.this = null;\n node.returnType = this.flowParseType();\n node.typeParameters = null;\n return this.finishNode(node, \"FunctionTypeAnnotation\");\n }\n return param;\n }\n\n flowParseIntersectionType(): N.FlowTypeAnnotation {\n const node = this.startNode();\n this.eat(tt.bitwiseAND);\n const type = this.flowParseAnonFunctionWithoutParens();\n node.types = [type];\n while (this.eat(tt.bitwiseAND)) {\n node.types.push(this.flowParseAnonFunctionWithoutParens());\n }\n return node.types.length === 1\n ? type\n : this.finishNode(node, \"IntersectionTypeAnnotation\");\n }\n\n flowParseUnionType(): N.FlowTypeAnnotation {\n const node = this.startNode();\n this.eat(tt.bitwiseOR);\n const type = this.flowParseIntersectionType();\n node.types = [type];\n while (this.eat(tt.bitwiseOR)) {\n node.types.push(this.flowParseIntersectionType());\n }\n return node.types.length === 1\n ? type\n : this.finishNode(node, \"UnionTypeAnnotation\");\n }\n\n flowParseType(): N.FlowTypeAnnotation {\n const oldInType = this.state.inType;\n this.state.inType = true;\n const type = this.flowParseUnionType();\n this.state.inType = oldInType;\n return type;\n }\n\n flowParseTypeOrImplicitInstantiation(): N.FlowTypeAnnotation {\n if (this.state.type === tt.name && this.state.value === \"_\") {\n const startLoc = this.state.startLoc;\n const node = this.parseIdentifier();\n return this.flowParseGenericType(startLoc, node);\n } else {\n return this.flowParseType();\n }\n }\n\n flowParseTypeAnnotation(): N.FlowTypeAnnotation {\n const node = this.startNode<N.FlowTypeAnnotation>();\n node.typeAnnotation = this.flowParseTypeInitialiser();\n return this.finishNode(node, \"TypeAnnotation\");\n }\n\n flowParseTypeAnnotatableIdentifier(\n allowPrimitiveOverride?: boolean,\n ): N.Identifier {\n const ident = allowPrimitiveOverride\n ? this.parseIdentifier()\n : this.flowParseRestrictedIdentifier();\n if (this.match(tt.colon)) {\n // @ts-expect-error: refine typings\n ident.typeAnnotation = this.flowParseTypeAnnotation();\n this.resetEndLocation(ident);\n }\n return ident;\n }\n\n typeCastToParameter(node: N.Node): N.Node {\n node.expression.typeAnnotation = node.typeAnnotation;\n\n this.resetEndLocation(node.expression, node.typeAnnotation.loc.end);\n\n return node.expression;\n }\n\n flowParseVariance(): N.FlowVariance | undefined | null {\n let variance = null;\n if (this.match(tt.plusMin)) {\n variance = this.startNode<N.FlowVariance>();\n if (this.state.value === \"+\") {\n variance.kind = \"plus\";\n } else {\n variance.kind = \"minus\";\n }\n this.next();\n return this.finishNode(variance, \"Variance\");\n }\n return variance;\n }\n\n // ==================================\n // Overrides\n // ==================================\n\n parseFunctionBody(\n node: N.Function,\n allowExpressionBody?: boolean | null,\n isMethod: boolean = false,\n ): void {\n if (allowExpressionBody) {\n this.forwardNoArrowParamsConversionAt(node, () =>\n super.parseFunctionBody(node, true, isMethod),\n );\n return;\n }\n\n super.parseFunctionBody(node, false, isMethod);\n }\n\n parseFunctionBodyAndFinish<\n T extends\n | N.Function\n | N.TSDeclareMethod\n | N.TSDeclareFunction\n | N.ClassPrivateMethod,\n >(node: Undone<T>, type: T[\"type\"], isMethod: boolean = false): T {\n if (this.match(tt.colon)) {\n const typeNode = this.startNode<N.TypeAnnotation>();\n\n [\n typeNode.typeAnnotation,\n // @ts-expect-error predicate may not exist\n node.predicate,\n ] = this.flowParseTypeAndPredicateInitialiser();\n\n node.returnType = typeNode.typeAnnotation\n ? this.finishNode(typeNode, \"TypeAnnotation\")\n : null;\n }\n\n return super.parseFunctionBodyAndFinish(node, type, isMethod);\n }\n\n // interfaces and enums\n parseStatementLike(flags: ParseStatementFlag): N.Statement {\n // strict mode handling of `interface` since it's a reserved word\n if (this.state.strict && this.isContextual(tt._interface)) {\n const lookahead = this.lookahead();\n if (tokenIsKeywordOrIdentifier(lookahead.type)) {\n const node = this.startNode<N.FlowInterface>();\n this.next();\n return this.flowParseInterface(node);\n }\n } else if (this.shouldParseEnums() && this.isContextual(tt._enum)) {\n const node = this.startNode();\n this.next();\n return this.flowParseEnumDeclaration(node);\n }\n const stmt = super.parseStatementLike(flags);\n // We will parse a flow pragma in any comment before the first statement.\n if (this.flowPragma === undefined && !this.isValidDirective(stmt)) {\n this.flowPragma = null;\n }\n return stmt;\n }\n\n // declares, interfaces and type aliases\n parseExpressionStatement(\n node: N.ExpressionStatement,\n expr: N.Expression,\n decorators: N.Decorator[] | null,\n ): N.ExpressionStatement {\n if (expr.type === \"Identifier\") {\n if (expr.name === \"declare\") {\n if (\n this.match(tt._class) ||\n tokenIsIdentifier(this.state.type) ||\n this.match(tt._function) ||\n this.match(tt._var) ||\n this.match(tt._export)\n ) {\n // @ts-expect-error: refine typings\n return this.flowParseDeclare(node);\n }\n } else if (tokenIsIdentifier(this.state.type)) {\n if (expr.name === \"interface\") {\n // @ts-expect-error: refine typings\n return this.flowParseInterface(node);\n } else if (expr.name === \"type\") {\n // @ts-expect-error: refine typings\n return this.flowParseTypeAlias(node);\n } else if (expr.name === \"opaque\") {\n // @ts-expect-error: refine typings\n return this.flowParseOpaqueType(node, false);\n }\n }\n }\n\n return super.parseExpressionStatement(node, expr, decorators);\n }\n\n // export type\n shouldParseExportDeclaration(): boolean {\n const { type } = this.state;\n if (\n tokenIsFlowInterfaceOrTypeOrOpaque(type) ||\n (this.shouldParseEnums() && type === tt._enum)\n ) {\n return !this.state.containsEsc;\n }\n return super.shouldParseExportDeclaration();\n }\n\n isExportDefaultSpecifier(): boolean {\n const { type } = this.state;\n if (\n tokenIsFlowInterfaceOrTypeOrOpaque(type) ||\n (this.shouldParseEnums() && type === tt._enum)\n ) {\n return this.state.containsEsc;\n }\n\n return super.isExportDefaultSpecifier();\n }\n\n parseExportDefaultExpression(): N.Expression | N.Declaration {\n if (this.shouldParseEnums() && this.isContextual(tt._enum)) {\n const node = this.startNode();\n this.next();\n return this.flowParseEnumDeclaration(node);\n }\n return super.parseExportDefaultExpression();\n }\n\n parseConditional(\n expr: N.Expression,\n\n startLoc: Position,\n refExpressionErrors?: ExpressionErrors | null,\n ): N.Expression {\n if (!this.match(tt.question)) return expr;\n\n if (this.state.maybeInArrowParameters) {\n const nextCh = this.lookaheadCharCode();\n // These tokens cannot start an expression, so if one of them follows\n // ? then we are probably in an arrow function parameters list and we\n // don't parse the conditional expression.\n if (\n nextCh === charCodes.comma || // (a?, b) => c\n nextCh === charCodes.equalsTo || // (a? = b) => c\n nextCh === charCodes.colon || // (a?: b) => c\n nextCh === charCodes.rightParenthesis // (a?) => c\n ) {\n /*:: invariant(refExpressionErrors != null) */\n this.setOptionalParametersError(refExpressionErrors);\n return expr;\n }\n }\n\n this.expect(tt.question);\n const state = this.state.clone();\n const originalNoArrowAt = this.state.noArrowAt;\n const node = this.startNodeAt(startLoc);\n let { consequent, failed } = this.tryParseConditionalConsequent();\n let [valid, invalid] = this.getArrowLikeExpressions(consequent);\n\n if (failed || invalid.length > 0) {\n const noArrowAt = [...originalNoArrowAt];\n\n if (invalid.length > 0) {\n this.state = state;\n this.state.noArrowAt = noArrowAt;\n\n for (let i = 0; i < invalid.length; i++) {\n noArrowAt.push(invalid[i].start);\n }\n\n ({ consequent, failed } = this.tryParseConditionalConsequent());\n [valid, invalid] = this.getArrowLikeExpressions(consequent);\n }\n\n if (failed && valid.length > 1) {\n // if there are two or more possible correct ways of parsing, throw an\n // error.\n // e.g. Source: a ? (b): c => (d): e => f\n // Result 1: a ? b : (c => ((d): e => f))\n // Result 2: a ? ((b): c => d) : (e => f)\n this.raise(FlowErrors.AmbiguousConditionalArrow, {\n at: state.startLoc,\n });\n }\n\n if (failed && valid.length === 1) {\n this.state = state;\n noArrowAt.push(valid[0].start);\n this.state.noArrowAt = noArrowAt;\n ({ consequent, failed } = this.tryParseConditionalConsequent());\n }\n }\n\n this.getArrowLikeExpressions(consequent, true);\n\n this.state.noArrowAt = originalNoArrowAt;\n this.expect(tt.colon);\n\n node.test = expr;\n node.consequent = consequent;\n node.alternate = this.forwardNoArrowParamsConversionAt(node, () =>\n this.parseMaybeAssign(undefined, undefined),\n );\n\n return this.finishNode(node, \"ConditionalExpression\");\n }\n\n tryParseConditionalConsequent(): {\n consequent: N.Expression;\n failed: boolean;\n } {\n this.state.noArrowParamsConversionAt.push(this.state.start);\n\n const consequent = this.parseMaybeAssignAllowIn();\n const failed = !this.match(tt.colon);\n\n this.state.noArrowParamsConversionAt.pop();\n\n return { consequent, failed };\n }\n\n // Given an expression, walks through out its arrow functions whose body is\n // an expression and through out conditional expressions. It returns every\n // function which has been parsed with a return type but could have been\n // parenthesized expressions.\n // These functions are separated into two arrays: one containing the ones\n // whose parameters can be converted to assignable lists, one containing the\n // others.\n getArrowLikeExpressions(\n node: N.Expression,\n disallowInvalid?: boolean,\n ): [N.ArrowFunctionExpression[], N.ArrowFunctionExpression[]] {\n const stack = [node];\n const arrows: N.ArrowFunctionExpression[] = [];\n\n while (stack.length !== 0) {\n const node = stack.pop();\n if (node.type === \"ArrowFunctionExpression\") {\n if (node.typeParameters || !node.returnType) {\n // This is an arrow expression without ambiguity, so check its parameters\n // @ts-expect-error: refine typings\n this.finishArrowValidation(node);\n } else {\n // @ts-expect-error: refine typings\n arrows.push(node);\n }\n stack.push(node.body);\n } else if (node.type === \"ConditionalExpression\") {\n stack.push(node.consequent);\n stack.push(node.alternate);\n }\n }\n\n if (disallowInvalid) {\n arrows.forEach(node => this.finishArrowValidation(node));\n return [arrows, []];\n }\n\n return partition(arrows, node =>\n node.params.every(param => this.isAssignable(param, true)),\n );\n }\n\n finishArrowValidation(node: N.ArrowFunctionExpression) {\n this.toAssignableList(\n // node.params is Expression[] instead of $ReadOnlyArray<Pattern> because it\n // has not been converted yet.\n node.params as any as N.Expression[],\n node.extra?.trailingCommaLoc,\n /* isLHS */ false,\n );\n // Enter scope, as checkParams defines bindings\n this.scope.enter(SCOPE_FUNCTION | SCOPE_ARROW);\n // Use super's method to force the parameters to be checked\n super.checkParams(node, false, true);\n this.scope.exit();\n }\n\n forwardNoArrowParamsConversionAt<T>(\n node: Undone<N.Node>,\n parse: () => T,\n ): T {\n let result: T;\n if (this.state.noArrowParamsConversionAt.indexOf(node.start) !== -1) {\n this.state.noArrowParamsConversionAt.push(this.state.start);\n result = parse();\n this.state.noArrowParamsConversionAt.pop();\n } else {\n result = parse();\n }\n\n return result;\n }\n\n parseParenItem(\n node: N.Expression,\n\n startLoc: Position,\n ): N.Expression {\n node = super.parseParenItem(node, startLoc);\n if (this.eat(tt.question)) {\n node.optional = true;\n // Include questionmark in location of node\n // Don't use this.finishNode() as otherwise we might process comments twice and\n // include already consumed parens\n this.resetEndLocation(node);\n }\n\n if (this.match(tt.colon)) {\n const typeCastNode = this.startNodeAt(startLoc);\n typeCastNode.expression = node;\n typeCastNode.typeAnnotation = this.flowParseTypeAnnotation();\n\n return this.finishNode(typeCastNode, \"TypeCastExpression\");\n }\n\n return node;\n }\n\n assertModuleNodeAllowed(node: N.Node) {\n if (\n (node.type === \"ImportDeclaration\" &&\n (node.importKind === \"type\" || node.importKind === \"typeof\")) ||\n (node.type === \"ExportNamedDeclaration\" &&\n node.exportKind === \"type\") ||\n (node.type === \"ExportAllDeclaration\" && node.exportKind === \"type\")\n ) {\n // Allow Flowtype imports and exports in all conditions because\n // Flow itself does not care about 'sourceType'.\n return;\n }\n\n super.assertModuleNodeAllowed(node);\n }\n\n parseExportDeclaration(\n node: N.ExportNamedDeclaration,\n ): N.Declaration | undefined | null {\n if (this.isContextual(tt._type)) {\n node.exportKind = \"type\";\n\n const declarationNode = this.startNode();\n this.next();\n\n if (this.match(tt.braceL)) {\n // export type { foo, bar };\n node.specifiers = this.parseExportSpecifiers(\n /* isInTypeExport */ true,\n );\n super.parseExportFrom(node);\n return null;\n } else {\n // export type Foo = Bar;\n // @ts-expect-error: refine typings\n return this.flowParseTypeAlias(declarationNode);\n }\n } else if (this.isContextual(tt._opaque)) {\n node.exportKind = \"type\";\n\n const declarationNode = this.startNode();\n this.next();\n // export opaque type Foo = Bar;\n // @ts-expect-error: refine typings\n return this.flowParseOpaqueType(declarationNode, false);\n } else if (this.isContextual(tt._interface)) {\n node.exportKind = \"type\";\n const declarationNode = this.startNode();\n this.next();\n // @ts-expect-error: refine typings\n return this.flowParseInterface(declarationNode);\n } else if (this.shouldParseEnums() && this.isContextual(tt._enum)) {\n node.exportKind = \"value\";\n const declarationNode = this.startNode();\n this.next();\n // @ts-expect-error: refine typings\n return this.flowParseEnumDeclaration(declarationNode);\n } else {\n return super.parseExportDeclaration(node);\n }\n }\n\n eatExportStar(node: N.Node): boolean {\n if (super.eatExportStar(node)) return true;\n\n if (this.isContextual(tt._type) && this.lookahead().type === tt.star) {\n node.exportKind = \"type\";\n this.next();\n this.next();\n return true;\n }\n\n return false;\n }\n\n maybeParseExportNamespaceSpecifier(node: N.Node): boolean {\n const { startLoc } = this.state;\n const hasNamespace = super.maybeParseExportNamespaceSpecifier(node);\n if (hasNamespace && node.exportKind === \"type\") {\n this.unexpected(startLoc);\n }\n return hasNamespace;\n }\n\n parseClassId(\n node: N.Class,\n isStatement: boolean,\n optionalId?: boolean | null,\n ) {\n super.parseClassId(node, isStatement, optionalId);\n if (this.match(tt.lt)) {\n node.typeParameters = this.flowParseTypeParameterDeclaration();\n }\n }\n\n parseClassMember(\n classBody: N.ClassBody,\n member: any,\n state: N.ParseClassMemberState,\n ): void {\n const { startLoc } = this.state;\n if (this.isContextual(tt._declare)) {\n if (super.parseClassMemberFromModifier(classBody, member)) {\n // 'declare' is a class element name\n return;\n }\n\n member.declare = true;\n }\n\n super.parseClassMember(classBody, member, state);\n\n if (member.declare) {\n if (\n member.type !== \"ClassProperty\" &&\n member.type !== \"ClassPrivateProperty\" &&\n member.type !== \"PropertyDefinition\" // Used by estree plugin\n ) {\n this.raise(FlowErrors.DeclareClassElement, { at: startLoc });\n } else if (member.value) {\n this.raise(FlowErrors.DeclareClassFieldInitializer, {\n at: member.value,\n });\n }\n }\n }\n\n isIterator(word: string): boolean {\n return word === \"iterator\" || word === \"asyncIterator\";\n }\n\n readIterator(): void {\n const word = super.readWord1();\n const fullWord = \"@@\" + word;\n\n // Allow @@iterator and @@asyncIterator as a identifier only inside type\n if (!this.isIterator(word) || !this.state.inType) {\n this.raise(Errors.InvalidIdentifier, {\n at: this.state.curPosition(),\n identifierName: fullWord,\n });\n }\n\n this.finishToken(tt.name, fullWord);\n }\n\n // ensure that inside flow types, we bypass the jsx parser plugin\n getTokenFromCode(code: number): void {\n const next = this.input.charCodeAt(this.state.pos + 1);\n if (code === charCodes.leftCurlyBrace && next === charCodes.verticalBar) {\n this.finishOp(tt.braceBarL, 2);\n } else if (\n this.state.inType &&\n (code === charCodes.greaterThan || code === charCodes.lessThan)\n ) {\n this.finishOp(code === charCodes.greaterThan ? tt.gt : tt.lt, 1);\n } else if (this.state.inType && code === charCodes.questionMark) {\n if (next === charCodes.dot) {\n this.finishOp(tt.questionDot, 2);\n } else {\n // allow double nullable types in Flow: ??string\n this.finishOp(tt.question, 1);\n }\n } else if (\n isIteratorStart(code, next, this.input.charCodeAt(this.state.pos + 2))\n ) {\n this.state.pos += 2; // eat \"@@\"\n this.readIterator();\n } else {\n super.getTokenFromCode(code);\n }\n }\n\n isAssignable(node: N.Node, isBinding?: boolean): boolean {\n if (node.type === \"TypeCastExpression\") {\n return this.isAssignable(node.expression, isBinding);\n } else {\n return super.isAssignable(node, isBinding);\n }\n }\n\n toAssignable(node: N.Node, isLHS: boolean = false): void {\n if (\n !isLHS &&\n node.type === \"AssignmentExpression\" &&\n node.left.type === \"TypeCastExpression\"\n ) {\n node.left = this.typeCastToParameter(node.left);\n }\n super.toAssignable(node, isLHS);\n }\n\n // turn type casts that we found in function parameter head into type annotated params\n toAssignableList(\n exprList: N.Expression[],\n trailingCommaLoc: Position | undefined | null,\n isLHS: boolean,\n ): void {\n for (let i = 0; i < exprList.length; i++) {\n const expr = exprList[i];\n if (expr?.type === \"TypeCastExpression\") {\n exprList[i] = this.typeCastToParameter(expr);\n }\n }\n super.toAssignableList(exprList, trailingCommaLoc, isLHS);\n }\n\n // this is a list of nodes, from something like a call expression, we need to filter the\n // type casts that we've found that are illegal in this context\n toReferencedList(\n exprList: ReadonlyArray<N.Expression | undefined | null>,\n isParenthesizedExpr?: boolean,\n ): ReadonlyArray<N.Expression | undefined | null> {\n for (let i = 0; i < exprList.length; i++) {\n const expr = exprList[i];\n if (\n expr &&\n expr.type === \"TypeCastExpression\" &&\n !expr.extra?.parenthesized &&\n (exprList.length > 1 || !isParenthesizedExpr)\n ) {\n this.raise(FlowErrors.TypeCastInPattern, {\n at: expr.typeAnnotation,\n });\n }\n }\n\n return exprList;\n }\n\n parseArrayLike(\n close: TokenType,\n canBePattern: boolean,\n isTuple: boolean,\n refExpressionErrors?: ExpressionErrors | null,\n ): N.ArrayExpression | N.TupleExpression {\n const node = super.parseArrayLike(\n close,\n canBePattern,\n isTuple,\n refExpressionErrors,\n );\n\n // This could be an array pattern:\n // ([a: string, b: string]) => {}\n // In this case, we don't have to call toReferencedList. We will\n // call it, if needed, when we are sure that it is a parenthesized\n // expression by calling toReferencedListDeep.\n if (canBePattern && !this.state.maybeInArrowParameters) {\n this.toReferencedList(node.elements);\n }\n\n return node;\n }\n\n isValidLVal(type: string, isParenthesized: boolean, binding: BindingTypes) {\n return (\n type === \"TypeCastExpression\" ||\n super.isValidLVal(type, isParenthesized, binding)\n );\n }\n\n // parse class property type annotations\n parseClassProperty(node: N.ClassProperty): N.ClassProperty {\n if (this.match(tt.colon)) {\n // @ts-expect-error refine typings\n node.typeAnnotation = this.flowParseTypeAnnotation();\n }\n return super.parseClassProperty(node);\n }\n\n parseClassPrivateProperty(\n node: N.ClassPrivateProperty,\n ): N.ClassPrivateProperty {\n if (this.match(tt.colon)) {\n // @ts-expect-error refine typings\n node.typeAnnotation = this.flowParseTypeAnnotation();\n }\n return super.parseClassPrivateProperty(node);\n }\n\n // determine whether or not we're currently in the position where a class method would appear\n isClassMethod(): boolean {\n return this.match(tt.lt) || super.isClassMethod();\n }\n\n // determine whether or not we're currently in the position where a class property would appear\n isClassProperty(): boolean {\n return this.match(tt.colon) || super.isClassProperty();\n }\n\n isNonstaticConstructor(method: N.ClassMethod | N.ClassProperty): boolean {\n return !this.match(tt.colon) && super.isNonstaticConstructor(method);\n }\n\n // parse type parameters for class methods\n pushClassMethod(\n classBody: N.ClassBody,\n method: N.ClassMethod,\n isGenerator: boolean,\n isAsync: boolean,\n isConstructor: boolean,\n allowsDirectSuper: boolean,\n ): void {\n if ((method as any).variance) {\n this.unexpected((method as any).variance.loc.start);\n }\n delete (method as any).variance;\n if (this.match(tt.lt)) {\n method.typeParameters = this.flowParseTypeParameterDeclaration();\n }\n\n super.pushClassMethod(\n classBody,\n method,\n isGenerator,\n isAsync,\n isConstructor,\n allowsDirectSuper,\n );\n\n if (method.params && isConstructor) {\n const params = method.params;\n if (params.length > 0 && this.isThisParam(params[0])) {\n this.raise(FlowErrors.ThisParamBannedInConstructor, { at: method });\n }\n // estree support\n } else if (\n // @ts-expect-error TS does not know about the face that estree can replace ClassMethod with MethodDefinition\n method.type === \"MethodDefinition\" &&\n isConstructor &&\n // @ts-expect-error estree\n method.value.params\n ) {\n // @ts-expect-error estree\n const params = method.value.params;\n if (params.length > 0 && this.isThisParam(params[0])) {\n this.raise(FlowErrors.ThisParamBannedInConstructor, { at: method });\n }\n }\n }\n\n pushClassPrivateMethod(\n classBody: N.ClassBody,\n method: N.ClassPrivateMethod,\n isGenerator: boolean,\n isAsync: boolean,\n ): void {\n if ((method as any).variance) {\n this.unexpected((method as any).variance.loc.start);\n }\n delete (method as any).variance;\n if (this.match(tt.lt)) {\n method.typeParameters = this.flowParseTypeParameterDeclaration();\n }\n\n super.pushClassPrivateMethod(classBody, method, isGenerator, isAsync);\n }\n\n // parse a the super class type parameters and implements\n parseClassSuper(node: N.Class): void {\n super.parseClassSuper(node);\n if (node.superClass && this.match(tt.lt)) {\n node.superTypeParameters = this.flowParseTypeParameterInstantiation();\n }\n if (this.isContextual(tt._implements)) {\n this.next();\n const implemented: N.FlowClassImplements[] = (node.implements = []);\n do {\n const node = this.startNode();\n node.id = this.flowParseRestrictedIdentifier(/*liberal*/ true);\n if (this.match(tt.lt)) {\n node.typeParameters = this.flowParseTypeParameterInstantiation();\n } else {\n node.typeParameters = null;\n }\n implemented.push(this.finishNode(node, \"ClassImplements\"));\n } while (this.eat(tt.comma));\n }\n }\n\n checkGetterSetterParams(method: N.ObjectMethod | N.ClassMethod): void {\n super.checkGetterSetterParams(method);\n const params = this.getObjectOrClassMethodParams(method);\n if (params.length > 0) {\n const param = params[0];\n if (this.isThisParam(param) && method.kind === \"get\") {\n this.raise(FlowErrors.GetterMayNotHaveThisParam, { at: param });\n } else if (this.isThisParam(param)) {\n this.raise(FlowErrors.SetterMayNotHaveThisParam, { at: param });\n }\n }\n }\n\n parsePropertyNamePrefixOperator(\n node: N.ObjectOrClassMember | N.ClassMember,\n ): void {\n node.variance = this.flowParseVariance();\n }\n\n // parse type parameters for object method shorthand\n parseObjPropValue(\n prop: Undone<N.ObjectMethod | N.ObjectProperty>,\n startLoc: Position | undefined | null,\n isGenerator: boolean,\n isAsync: boolean,\n isPattern: boolean,\n isAccessor: boolean,\n refExpressionErrors?: ExpressionErrors | null,\n ): N.ObjectMethod | N.ObjectProperty {\n if ((prop as any).variance) {\n this.unexpected((prop as any).variance.loc.start);\n }\n delete (prop as any).variance;\n\n let typeParameters;\n\n // method shorthand\n if (this.match(tt.lt) && !isAccessor) {\n typeParameters = this.flowParseTypeParameterDeclaration();\n if (!this.match(tt.parenL)) this.unexpected();\n }\n\n const result = super.parseObjPropValue(\n prop,\n startLoc,\n isGenerator,\n isAsync,\n isPattern,\n isAccessor,\n refExpressionErrors,\n );\n\n // add typeParameters if we found them\n if (typeParameters) {\n // @ts-expect-error: refine typings\n (result.value || result).typeParameters = typeParameters;\n }\n return result;\n }\n\n parseAssignableListItemTypes(param: N.Pattern): N.Pattern {\n if (this.eat(tt.question)) {\n if (param.type !== \"Identifier\") {\n this.raise(FlowErrors.PatternIsOptional, { at: param });\n }\n if (this.isThisParam(param)) {\n this.raise(FlowErrors.ThisParamMayNotBeOptional, { at: param });\n }\n\n (param as any as N.Identifier).optional = true;\n }\n if (this.match(tt.colon)) {\n // @ts-expect-error: refine typings\n param.typeAnnotation = this.flowParseTypeAnnotation();\n } else if (this.isThisParam(param)) {\n this.raise(FlowErrors.ThisParamAnnotationRequired, { at: param });\n }\n\n if (this.match(tt.eq) && this.isThisParam(param)) {\n this.raise(FlowErrors.ThisParamNoDefault, { at: param });\n }\n\n this.resetEndLocation(param);\n return param;\n }\n\n parseMaybeDefault(\n startLoc?: Position | null,\n left?: N.Pattern | null,\n ): N.Pattern {\n const node = super.parseMaybeDefault(startLoc, left);\n\n if (\n node.type === \"AssignmentPattern\" &&\n node.typeAnnotation &&\n node.right.start < node.typeAnnotation.start\n ) {\n this.raise(FlowErrors.TypeBeforeInitializer, {\n at: node.typeAnnotation,\n });\n }\n\n return node;\n }\n\n checkImportReflection(node: Undone<N.ImportDeclaration>) {\n super.checkImportReflection(node);\n if (node.module && node.importKind !== \"value\") {\n this.raise(FlowErrors.ImportReflectionHasImportType, {\n at: node.specifiers[0].loc.start,\n });\n }\n }\n\n parseImportSpecifierLocal<\n T extends\n | N.ImportSpecifier\n | N.ImportDefaultSpecifier\n | N.ImportNamespaceSpecifier,\n >(node: N.ImportDeclaration, specifier: Undone<T>, type: T[\"type\"]): void {\n specifier.local = hasTypeImportKind(node)\n ? this.flowParseRestrictedIdentifier(\n /* liberal */ true,\n /* declaration */ true,\n )\n : this.parseIdentifier();\n\n node.specifiers.push(this.finishImportSpecifier(specifier, type));\n }\n\n isPotentialImportPhase(isExport: boolean): boolean {\n if (super.isPotentialImportPhase(isExport)) return true;\n if (this.isContextual(tt._type)) {\n if (!isExport) return true;\n const ch = this.lookaheadCharCode();\n return ch === charCodes.leftCurlyBrace || ch === charCodes.asterisk;\n }\n return !isExport && this.isContextual(tt._typeof);\n }\n\n applyImportPhase(\n node: Undone<N.ImportDeclaration | N.ExportNamedDeclaration>,\n isExport: boolean,\n phase: string | null,\n loc?: Position,\n ): void {\n super.applyImportPhase(node, isExport, phase, loc);\n if (isExport) {\n if (!phase && this.match(tt._default)) {\n // TODO: Align with our TS AST and always add .exportKind\n return;\n }\n (node as N.ExportNamedDeclaration).exportKind =\n phase === \"type\" ? phase : \"value\";\n } else {\n if (phase === \"type\" && this.match(tt.star)) this.unexpected();\n (node as N.ImportDeclaration).importKind =\n phase === \"type\" || phase === \"typeof\" ? phase : \"value\";\n }\n }\n\n // parse import-type/typeof shorthand\n parseImportSpecifier(\n specifier: any,\n importedIsString: boolean,\n isInTypeOnlyImport: boolean,\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n isMaybeTypeOnly: boolean,\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n bindingType: BindingTypes | undefined,\n ): N.ImportSpecifier {\n const firstIdent = specifier.imported;\n\n let specifierTypeKind = null;\n if (firstIdent.type === \"Identifier\") {\n if (firstIdent.name === \"type\") {\n specifierTypeKind = \"type\";\n } else if (firstIdent.name === \"typeof\") {\n specifierTypeKind = \"typeof\";\n }\n }\n\n let isBinding = false;\n if (this.isContextual(tt._as) && !this.isLookaheadContextual(\"as\")) {\n const as_ident = this.parseIdentifier(true);\n if (\n specifierTypeKind !== null &&\n !tokenIsKeywordOrIdentifier(this.state.type)\n ) {\n // `import {type as ,` or `import {type as }`\n specifier.imported = as_ident;\n specifier.importKind = specifierTypeKind;\n specifier.local = cloneIdentifier(as_ident);\n } else {\n // `import {type as foo`\n specifier.imported = firstIdent;\n specifier.importKind = null;\n specifier.local = this.parseIdentifier();\n }\n } else {\n if (\n specifierTypeKind !== null &&\n tokenIsKeywordOrIdentifier(this.state.type)\n ) {\n // `import {type foo`\n specifier.imported = this.parseIdentifier(true);\n specifier.importKind = specifierTypeKind;\n } else {\n if (importedIsString) {\n /*:: invariant(firstIdent instanceof N.StringLiteral) */\n throw this.raise(Errors.ImportBindingIsString, {\n at: specifier,\n importName: firstIdent.value,\n });\n }\n /*:: invariant(firstIdent instanceof N.Node) */\n specifier.imported = firstIdent;\n specifier.importKind = null;\n }\n\n if (this.eatContextual(tt._as)) {\n specifier.local = this.parseIdentifier();\n } else {\n isBinding = true;\n specifier.local = cloneIdentifier(specifier.imported);\n }\n }\n\n const specifierIsTypeImport = hasTypeImportKind(specifier);\n\n if (isInTypeOnlyImport && specifierIsTypeImport) {\n this.raise(FlowErrors.ImportTypeShorthandOnlyInPureImport, {\n at: specifier,\n });\n }\n\n if (isInTypeOnlyImport || specifierIsTypeImport) {\n this.checkReservedType(\n specifier.local.name,\n specifier.local.loc.start,\n /* declaration */ true,\n );\n }\n\n if (isBinding && !isInTypeOnlyImport && !specifierIsTypeImport) {\n this.checkReservedWord(\n specifier.local.name,\n specifier.loc.start,\n true,\n true,\n );\n }\n\n return this.finishImportSpecifier(specifier, \"ImportSpecifier\");\n }\n\n parseBindingAtom(): N.Pattern {\n switch (this.state.type) {\n case tt._this:\n // \"this\" may be the name of a parameter, so allow it.\n return this.parseIdentifier(/* liberal */ true);\n default:\n return super.parseBindingAtom();\n }\n }\n\n // parse function type parameters - function foo<T>() {}\n parseFunctionParams(\n node: Undone<N.Function>,\n isConstructor: boolean,\n ): void {\n // @ts-expect-error kind may not index node\n const kind = node.kind;\n if (kind !== \"get\" && kind !== \"set\" && this.match(tt.lt)) {\n node.typeParameters = this.flowParseTypeParameterDeclaration();\n }\n super.parseFunctionParams(node, isConstructor);\n }\n\n // parse flow type annotations on variable declarator heads - let foo: string = bar\n parseVarId(\n decl: N.VariableDeclarator,\n kind: \"var\" | \"let\" | \"const\",\n ): void {\n super.parseVarId(decl, kind);\n if (this.match(tt.colon)) {\n // @ts-expect-error: refine typings\n decl.id.typeAnnotation = this.flowParseTypeAnnotation();\n this.resetEndLocation(decl.id); // set end position to end of type\n }\n }\n\n // parse the return type of an async arrow function - let foo = (async (): number => {});\n parseAsyncArrowFromCallExpression(\n node: N.ArrowFunctionExpression,\n call: N.CallExpression,\n ): N.ArrowFunctionExpression {\n if (this.match(tt.colon)) {\n const oldNoAnonFunctionType = this.state.noAnonFunctionType;\n this.state.noAnonFunctionType = true;\n // @ts-expect-error refine typings\n node.returnType = this.flowParseTypeAnnotation();\n this.state.noAnonFunctionType = oldNoAnonFunctionType;\n }\n\n return super.parseAsyncArrowFromCallExpression(node, call);\n }\n\n // todo description\n shouldParseAsyncArrow(): boolean {\n return this.match(tt.colon) || super.shouldParseAsyncArrow();\n }\n\n // We need to support type parameter declarations for arrow functions. This\n // is tricky. There are three situations we need to handle\n //\n // 1. This is either JSX or an arrow function. We'll try JSX first. If that\n // fails, we'll try an arrow function. If that fails, we'll throw the JSX\n // error.\n // 2. This is an arrow function. We'll parse the type parameter declaration,\n // parse the rest, make sure the rest is an arrow function, and go from\n // there\n // 3. This is neither. Just call the super method\n parseMaybeAssign(\n refExpressionErrors?: ExpressionErrors | null,\n afterLeftParse?: Function,\n ): N.Expression {\n let state = null;\n\n let jsx;\n\n if (\n this.hasPlugin(\"jsx\") &&\n (this.match(tt.jsxTagStart) || this.match(tt.lt))\n ) {\n state = this.state.clone();\n\n jsx = this.tryParse(\n () => super.parseMaybeAssign(refExpressionErrors, afterLeftParse),\n state,\n );\n\n /*:: invariant(!jsx.aborted) */\n /*:: invariant(jsx.node != null) */\n if (!jsx.error) return jsx.node;\n\n // Remove `tc.j_expr` and `tc.j_oTag` from context added\n // by parsing `jsxTagStart` to stop the JSX plugin from\n // messing with the tokens\n const { context } = this.state;\n const currentContext = context[context.length - 1];\n if (currentContext === tc.j_oTag || currentContext === tc.j_expr) {\n context.pop();\n }\n }\n\n if (jsx?.error || this.match(tt.lt)) {\n state = state || this.state.clone();\n\n let typeParameters: N.TypeParameterDeclaration;\n\n const arrow = this.tryParse(abort => {\n typeParameters = this.flowParseTypeParameterDeclaration();\n\n const arrowExpression = this.forwardNoArrowParamsConversionAt(\n typeParameters,\n () => {\n const result = super.parseMaybeAssign(\n refExpressionErrors,\n afterLeftParse,\n );\n\n this.resetStartLocationFromNode(result, typeParameters);\n\n return result;\n },\n );\n\n // <T>(() => {});\n // <T>(() => {}: any);\n if (arrowExpression.extra?.parenthesized) abort();\n\n // The above can return a TypeCastExpression when the arrow\n // expression is not wrapped in parens. See also `this.parseParenItem`.\n // (<T>() => {}: any);\n const expr = this.maybeUnwrapTypeCastExpression(arrowExpression);\n\n if (expr.type !== \"ArrowFunctionExpression\") abort();\n\n expr.typeParameters = typeParameters;\n this.resetStartLocationFromNode(expr, typeParameters);\n\n return arrowExpression;\n }, state);\n\n let arrowExpression:\n | N.ArrowFunctionExpression\n | N.TypeCastExpression\n | undefined\n | null = null;\n\n if (\n arrow.node &&\n // @ts-expect-error: refine tryParse typings\n this.maybeUnwrapTypeCastExpression(arrow.node).type ===\n \"ArrowFunctionExpression\"\n ) {\n if (!arrow.error && !arrow.aborted) {\n // <T> async () => {}\n // @ts-expect-error: refine tryParse typings\n if (arrow.node.async) {\n /*:: invariant(typeParameters) */\n this.raise(\n FlowErrors.UnexpectedTypeParameterBeforeAsyncArrowFunction,\n { at: typeParameters },\n );\n }\n // @ts-expect-error: refine tryParse typings\n return arrow.node;\n }\n\n // @ts-expect-error: refine typings\n arrowExpression = arrow.node;\n }\n\n // If we are here, both JSX and Flow parsing attempts failed.\n // Give the precedence to the JSX error, except if JSX had an\n // unrecoverable error while Flow didn't.\n // If the error is recoverable, we can only re-report it if there is\n // a node we can return.\n\n if (jsx?.node) {\n /*:: invariant(jsx.failState) */\n this.state = jsx.failState;\n return jsx.node;\n }\n\n if (arrowExpression) {\n /*:: invariant(arrow.failState) */\n this.state = arrow.failState;\n return arrowExpression;\n }\n\n if (jsx?.thrown) throw jsx.error;\n if (arrow.thrown) throw arrow.error;\n\n /*:: invariant(typeParameters) */\n throw this.raise(FlowErrors.UnexpectedTokenAfterTypeParameter, {\n at: typeParameters,\n });\n }\n\n return super.parseMaybeAssign(refExpressionErrors, afterLeftParse);\n }\n\n // handle return types for arrow functions\n parseArrow(\n node: Undone<N.ArrowFunctionExpression>,\n ): Undone<N.ArrowFunctionExpression> | undefined | null {\n if (this.match(tt.colon)) {\n // @ts-expect-error todo(flow->ts)\n const result = this.tryParse(() => {\n const oldNoAnonFunctionType = this.state.noAnonFunctionType;\n this.state.noAnonFunctionType = true;\n\n const typeNode = this.startNode<N.TypeAnnotation>();\n\n [\n typeNode.typeAnnotation,\n // @ts-expect-error (destructuring not supported yet)\n node.predicate,\n ] = this.flowParseTypeAndPredicateInitialiser();\n\n this.state.noAnonFunctionType = oldNoAnonFunctionType;\n\n if (this.canInsertSemicolon()) this.unexpected();\n if (!this.match(tt.arrow)) this.unexpected();\n\n return typeNode;\n });\n\n if (result.thrown) return null;\n /*:: invariant(result.node) */\n\n if (result.error) this.state = result.failState;\n\n // assign after it is clear it is an arrow\n // @ts-expect-error todo(flow->ts)\n node.returnType = result.node.typeAnnotation\n ? this.finishNode(result.node, \"TypeAnnotation\")\n : null;\n }\n\n return super.parseArrow(node);\n }\n\n shouldParseArrow(params: Array<N.Node>): boolean {\n return this.match(tt.colon) || super.shouldParseArrow(params);\n }\n\n setArrowFunctionParameters(\n node: N.ArrowFunctionExpression,\n params: N.Pattern[],\n ): void {\n if (this.state.noArrowParamsConversionAt.indexOf(node.start) !== -1) {\n node.params = params;\n } else {\n super.setArrowFunctionParameters(node, params);\n }\n }\n\n checkParams(\n node: N.Function,\n allowDuplicates: boolean,\n isArrowFunction?: boolean | null,\n strictModeChanged: boolean = true,\n ): void {\n if (\n isArrowFunction &&\n this.state.noArrowParamsConversionAt.indexOf(node.start) !== -1\n ) {\n return;\n }\n\n // ensure the `this` param is first, if it exists\n for (let i = 0; i < node.params.length; i++) {\n if (this.isThisParam(node.params[i]) && i > 0) {\n this.raise(FlowErrors.ThisParamMustBeFirst, { at: node.params[i] });\n }\n }\n\n super.checkParams(\n node,\n allowDuplicates,\n isArrowFunction,\n strictModeChanged,\n );\n }\n\n parseParenAndDistinguishExpression(canBeArrow: boolean): N.Expression {\n return super.parseParenAndDistinguishExpression(\n canBeArrow && this.state.noArrowAt.indexOf(this.state.start) === -1,\n );\n }\n\n parseSubscripts(\n base: N.Expression,\n\n startLoc: Position,\n noCalls?: boolean | null,\n ): N.Expression {\n if (\n base.type === \"Identifier\" &&\n base.name === \"async\" &&\n this.state.noArrowAt.indexOf(startLoc.index) !== -1\n ) {\n this.next();\n\n const node = this.startNodeAt(startLoc);\n node.callee = base;\n node.arguments = super.parseCallExpressionArguments(tt.parenR, false);\n base = this.finishNode(node, \"CallExpression\");\n } else if (\n base.type === \"Identifier\" &&\n base.name === \"async\" &&\n this.match(tt.lt)\n ) {\n const state = this.state.clone();\n const arrow = this.tryParse(\n abort => this.parseAsyncArrowWithTypeParameters(startLoc) || abort(),\n state,\n );\n\n /*:: invariant(arrow.node != null) */\n // @ts-expect-error: refine tryParse typings\n if (!arrow.error && !arrow.aborted) return arrow.node;\n\n const result = this.tryParse(\n () => super.parseSubscripts(base, startLoc, noCalls),\n state,\n );\n\n if (result.node && !result.error) return result.node;\n\n if (arrow.node) {\n this.state = arrow.failState;\n // @ts-expect-error: refine tryParse typings\n return arrow.node;\n }\n\n if (result.node) {\n this.state = result.failState;\n return result.node;\n }\n\n throw arrow.error || result.error;\n }\n\n return super.parseSubscripts(base, startLoc, noCalls);\n }\n\n parseSubscript(\n base: N.Expression,\n\n startLoc: Position,\n noCalls: boolean | undefined | null,\n subscriptState: N.ParseSubscriptState,\n ): N.Expression {\n if (this.match(tt.questionDot) && this.isLookaheadToken_lt()) {\n subscriptState.optionalChainMember = true;\n if (noCalls) {\n subscriptState.stop = true;\n return base;\n }\n this.next();\n const node = this.startNodeAt<N.OptionalCallExpression>(startLoc);\n node.callee = base;\n node.typeArguments = this.flowParseTypeParameterInstantiation();\n this.expect(tt.parenL);\n node.arguments = this.parseCallExpressionArguments(tt.parenR, false);\n node.optional = true;\n return this.finishCallExpression(node, /* optional */ true);\n } else if (!noCalls && this.shouldParseTypes() && this.match(tt.lt)) {\n const node = this.startNodeAt<\n N.OptionalCallExpression | N.CallExpression\n >(startLoc);\n node.callee = base;\n\n const result = this.tryParse(() => {\n node.typeArguments =\n this.flowParseTypeParameterInstantiationCallOrNew();\n this.expect(tt.parenL);\n node.arguments = super.parseCallExpressionArguments(tt.parenR, false);\n if (subscriptState.optionalChainMember) {\n (node as Undone<N.OptionalCallExpression>).optional = false;\n }\n return this.finishCallExpression(\n node,\n subscriptState.optionalChainMember,\n );\n });\n\n if (result.node) {\n if (result.error) this.state = result.failState;\n return result.node;\n }\n }\n\n return super.parseSubscript(\n base,\n\n startLoc,\n noCalls,\n subscriptState,\n );\n }\n\n parseNewCallee(node: N.NewExpression): void {\n super.parseNewCallee(node);\n\n let targs = null;\n if (this.shouldParseTypes() && this.match(tt.lt)) {\n targs = this.tryParse(() =>\n this.flowParseTypeParameterInstantiationCallOrNew(),\n ).node;\n }\n node.typeArguments = targs;\n }\n\n parseAsyncArrowWithTypeParameters(\n startLoc: Position,\n ): N.ArrowFunctionExpression | undefined | null {\n const node = this.startNodeAt<N.ArrowFunctionExpression>(startLoc);\n this.parseFunctionParams(node, false);\n if (!this.parseArrow(node)) return;\n return super.parseArrowExpression(\n node,\n /* params */ undefined,\n /* isAsync */ true,\n );\n }\n\n readToken_mult_modulo(code: number): void {\n const next = this.input.charCodeAt(this.state.pos + 1);\n if (\n code === charCodes.asterisk &&\n next === charCodes.slash &&\n this.state.hasFlowComment\n ) {\n this.state.hasFlowComment = false;\n this.state.pos += 2;\n this.nextToken();\n return;\n }\n\n super.readToken_mult_modulo(code);\n }\n\n readToken_pipe_amp(code: number): void {\n const next = this.input.charCodeAt(this.state.pos + 1);\n if (\n code === charCodes.verticalBar &&\n next === charCodes.rightCurlyBrace\n ) {\n // '|}'\n this.finishOp(tt.braceBarR, 2);\n return;\n }\n\n super.readToken_pipe_amp(code);\n }\n\n parseTopLevel(file: N.File, program: N.Program): N.File {\n const fileNode = super.parseTopLevel(file, program);\n if (this.state.hasFlowComment) {\n this.raise(FlowErrors.UnterminatedFlowComment, {\n at: this.state.curPosition(),\n });\n }\n return fileNode;\n }\n\n skipBlockComment(): N.CommentBlock | undefined {\n if (this.hasPlugin(\"flowComments\") && this.skipFlowComment()) {\n if (this.state.hasFlowComment) {\n throw this.raise(FlowErrors.NestedFlowComment, {\n at: this.state.startLoc,\n });\n }\n this.hasFlowCommentCompletion();\n const commentSkip = this.skipFlowComment();\n if (commentSkip) {\n this.state.pos += commentSkip;\n this.state.hasFlowComment = true;\n }\n return;\n }\n\n return super.skipBlockComment(this.state.hasFlowComment ? \"*-/\" : \"*/\");\n }\n\n skipFlowComment(): number | false {\n const { pos } = this.state;\n let shiftToFirstNonWhiteSpace = 2;\n while (\n [charCodes.space, charCodes.tab].includes(\n // @ts-expect-error testing whether a number is included\n this.input.charCodeAt(pos + shiftToFirstNonWhiteSpace),\n )\n ) {\n shiftToFirstNonWhiteSpace++;\n }\n\n const ch2 = this.input.charCodeAt(shiftToFirstNonWhiteSpace + pos);\n const ch3 = this.input.charCodeAt(shiftToFirstNonWhiteSpace + pos + 1);\n\n if (ch2 === charCodes.colon && ch3 === charCodes.colon) {\n return shiftToFirstNonWhiteSpace + 2; // check for /*::\n }\n if (\n this.input.slice(\n shiftToFirstNonWhiteSpace + pos,\n shiftToFirstNonWhiteSpace + pos + 12,\n ) === \"flow-include\"\n ) {\n return shiftToFirstNonWhiteSpace + 12; // check for /*flow-include\n }\n if (ch2 === charCodes.colon && ch3 !== charCodes.colon) {\n return shiftToFirstNonWhiteSpace; // check for /*:, advance up to :\n }\n return false;\n }\n\n hasFlowCommentCompletion(): void {\n const end = this.input.indexOf(\"*/\", this.state.pos);\n if (end === -1) {\n throw this.raise(Errors.UnterminatedComment, {\n at: this.state.curPosition(),\n });\n }\n }\n\n // Flow enum parsing\n\n flowEnumErrorBooleanMemberNotInitialized(\n loc: Position,\n {\n enumName,\n memberName,\n }: {\n enumName: string;\n memberName: string;\n },\n ): void {\n this.raise(FlowErrors.EnumBooleanMemberNotInitialized, {\n at: loc,\n memberName,\n enumName,\n });\n }\n\n flowEnumErrorInvalidMemberInitializer(\n loc: Position,\n enumContext: EnumContext,\n ) {\n return this.raise(\n !enumContext.explicitType\n ? FlowErrors.EnumInvalidMemberInitializerUnknownType\n : enumContext.explicitType === \"symbol\"\n ? FlowErrors.EnumInvalidMemberInitializerSymbolType\n : FlowErrors.EnumInvalidMemberInitializerPrimaryType,\n {\n at: loc,\n ...enumContext,\n },\n );\n }\n\n flowEnumErrorNumberMemberNotInitialized(\n loc: Position,\n {\n enumName,\n memberName,\n }: {\n enumName: string;\n memberName: string;\n },\n ): void {\n this.raise(FlowErrors.EnumNumberMemberNotInitialized, {\n at: loc,\n enumName,\n memberName,\n });\n }\n\n flowEnumErrorStringMemberInconsistentlyInitailized(\n node: N.Node,\n {\n enumName,\n }: {\n enumName: string;\n },\n ): void {\n this.raise(FlowErrors.EnumStringMemberInconsistentlyInitailized, {\n at: node,\n enumName,\n });\n }\n\n flowEnumMemberInit(): EnumMemberInit {\n const startLoc = this.state.startLoc;\n const endOfInit = () => this.match(tt.comma) || this.match(tt.braceR);\n switch (this.state.type) {\n case tt.num: {\n const literal = this.parseNumericLiteral(this.state.value);\n if (endOfInit()) {\n return { type: \"number\", loc: literal.loc.start, value: literal };\n }\n return { type: \"invalid\", loc: startLoc };\n }\n case tt.string: {\n const literal = this.parseStringLiteral(this.state.value);\n if (endOfInit()) {\n return { type: \"string\", loc: literal.loc.start, value: literal };\n }\n return { type: \"invalid\", loc: startLoc };\n }\n case tt._true:\n case tt._false: {\n const literal = this.parseBooleanLiteral(this.match(tt._true));\n if (endOfInit()) {\n return {\n type: \"boolean\",\n loc: literal.loc.start,\n value: literal,\n };\n }\n return { type: \"invalid\", loc: startLoc };\n }\n default:\n return { type: \"invalid\", loc: startLoc };\n }\n }\n\n flowEnumMemberRaw(): {\n id: N.Node;\n init: EnumMemberInit;\n } {\n const loc = this.state.startLoc;\n const id = this.parseIdentifier(true);\n const init = this.eat(tt.eq)\n ? this.flowEnumMemberInit()\n : { type: \"none\" as const, loc };\n return { id, init };\n }\n\n flowEnumCheckExplicitTypeMismatch(\n loc: Position,\n context: EnumContext,\n expectedType: EnumExplicitType,\n ): void {\n const { explicitType } = context;\n if (explicitType === null) {\n return;\n }\n if (explicitType !== expectedType) {\n this.flowEnumErrorInvalidMemberInitializer(loc, context);\n }\n }\n\n flowEnumMembers({\n enumName,\n explicitType,\n }: {\n enumName: string;\n explicitType: EnumExplicitType;\n }): {\n members: {\n booleanMembers: Array<N.Node>;\n numberMembers: Array<N.Node>;\n stringMembers: Array<N.Node>;\n defaultedMembers: Array<N.Node>;\n };\n hasUnknownMembers: boolean;\n } {\n const seenNames = new Set();\n const members = {\n // @ts-expect-error: migrate to Babel types\n booleanMembers: [],\n // @ts-expect-error: migrate to Babel types\n numberMembers: [],\n // @ts-expect-error: migrate to Babel types\n stringMembers: [],\n // @ts-expect-error: migrate to Babel types\n defaultedMembers: [],\n };\n let hasUnknownMembers = false;\n while (!this.match(tt.braceR)) {\n if (this.eat(tt.ellipsis)) {\n hasUnknownMembers = true;\n break;\n }\n const memberNode = this.startNode();\n const { id, init } = this.flowEnumMemberRaw();\n const memberName = id.name;\n if (memberName === \"\") {\n continue;\n }\n if (/^[a-z]/.test(memberName)) {\n this.raise(FlowErrors.EnumInvalidMemberName, {\n at: id,\n memberName,\n suggestion: memberName[0].toUpperCase() + memberName.slice(1),\n enumName,\n });\n }\n if (seenNames.has(memberName)) {\n this.raise(FlowErrors.EnumDuplicateMemberName, {\n at: id,\n memberName,\n enumName,\n });\n }\n seenNames.add(memberName);\n const context = { enumName, explicitType, memberName };\n memberNode.id = id;\n switch (init.type) {\n case \"boolean\": {\n this.flowEnumCheckExplicitTypeMismatch(\n init.loc,\n context,\n \"boolean\",\n );\n memberNode.init = init.value;\n members.booleanMembers.push(\n this.finishNode(memberNode, \"EnumBooleanMember\"),\n );\n break;\n }\n case \"number\": {\n this.flowEnumCheckExplicitTypeMismatch(init.loc, context, \"number\");\n memberNode.init = init.value;\n members.numberMembers.push(\n this.finishNode(memberNode, \"EnumNumberMember\"),\n );\n break;\n }\n case \"string\": {\n this.flowEnumCheckExplicitTypeMismatch(init.loc, context, \"string\");\n memberNode.init = init.value;\n members.stringMembers.push(\n this.finishNode(memberNode, \"EnumStringMember\"),\n );\n break;\n }\n case \"invalid\": {\n throw this.flowEnumErrorInvalidMemberInitializer(init.loc, context);\n }\n case \"none\": {\n switch (explicitType) {\n case \"boolean\":\n this.flowEnumErrorBooleanMemberNotInitialized(\n init.loc,\n context,\n );\n break;\n case \"number\":\n this.flowEnumErrorNumberMemberNotInitialized(init.loc, context);\n break;\n default:\n members.defaultedMembers.push(\n this.finishNode(memberNode, \"EnumDefaultedMember\"),\n );\n }\n }\n }\n\n if (!this.match(tt.braceR)) {\n this.expect(tt.comma);\n }\n }\n return { members, hasUnknownMembers };\n }\n\n flowEnumStringMembers(\n initializedMembers: Array<N.Node>,\n defaultedMembers: Array<N.Node>,\n {\n enumName,\n }: {\n enumName: string;\n },\n ): Array<N.Node> {\n if (initializedMembers.length === 0) {\n return defaultedMembers;\n } else if (defaultedMembers.length === 0) {\n return initializedMembers;\n } else if (defaultedMembers.length > initializedMembers.length) {\n for (const member of initializedMembers) {\n this.flowEnumErrorStringMemberInconsistentlyInitailized(member, {\n enumName,\n });\n }\n return defaultedMembers;\n } else {\n for (const member of defaultedMembers) {\n this.flowEnumErrorStringMemberInconsistentlyInitailized(member, {\n enumName,\n });\n }\n return initializedMembers;\n }\n }\n\n flowEnumParseExplicitType({\n enumName,\n }: {\n enumName: string;\n }): EnumExplicitType {\n if (!this.eatContextual(tt._of)) return null;\n\n if (!tokenIsIdentifier(this.state.type)) {\n throw this.raise(FlowErrors.EnumInvalidExplicitTypeUnknownSupplied, {\n at: this.state.startLoc,\n enumName,\n });\n }\n\n const { value } = this.state;\n this.next();\n\n if (\n value !== \"boolean\" &&\n value !== \"number\" &&\n value !== \"string\" &&\n value !== \"symbol\"\n ) {\n this.raise(FlowErrors.EnumInvalidExplicitType, {\n at: this.state.startLoc,\n enumName,\n invalidEnumType: value,\n });\n }\n\n return value;\n }\n\n flowEnumBody(node: Undone<N.Node>, id: N.Node): N.Node {\n const enumName = id.name;\n const nameLoc = id.loc.start;\n const explicitType = this.flowEnumParseExplicitType({ enumName });\n this.expect(tt.braceL);\n const { members, hasUnknownMembers } = this.flowEnumMembers({\n enumName,\n explicitType,\n });\n node.hasUnknownMembers = hasUnknownMembers;\n\n switch (explicitType) {\n case \"boolean\":\n node.explicitType = true;\n node.members = members.booleanMembers;\n this.expect(tt.braceR);\n return this.finishNode(node, \"EnumBooleanBody\");\n case \"number\":\n node.explicitType = true;\n node.members = members.numberMembers;\n this.expect(tt.braceR);\n return this.finishNode(node, \"EnumNumberBody\");\n case \"string\":\n node.explicitType = true;\n node.members = this.flowEnumStringMembers(\n members.stringMembers,\n members.defaultedMembers,\n { enumName },\n );\n this.expect(tt.braceR);\n return this.finishNode(node, \"EnumStringBody\");\n case \"symbol\":\n node.members = members.defaultedMembers;\n this.expect(tt.braceR);\n return this.finishNode(node, \"EnumSymbolBody\");\n default: {\n // `explicitType` is `null`\n const empty = () => {\n node.members = [];\n this.expect(tt.braceR);\n return this.finishNode(node, \"EnumStringBody\");\n };\n node.explicitType = false;\n\n const boolsLen = members.booleanMembers.length;\n const numsLen = members.numberMembers.length;\n const strsLen = members.stringMembers.length;\n const defaultedLen = members.defaultedMembers.length;\n\n if (!boolsLen && !numsLen && !strsLen && !defaultedLen) {\n return empty();\n } else if (!boolsLen && !numsLen) {\n node.members = this.flowEnumStringMembers(\n members.stringMembers,\n members.defaultedMembers,\n { enumName },\n );\n this.expect(tt.braceR);\n return this.finishNode(node, \"EnumStringBody\");\n } else if (!numsLen && !strsLen && boolsLen >= defaultedLen) {\n for (const member of members.defaultedMembers) {\n this.flowEnumErrorBooleanMemberNotInitialized(member.loc.start, {\n enumName,\n memberName: member.id.name,\n });\n }\n node.members = members.booleanMembers;\n this.expect(tt.braceR);\n return this.finishNode(node, \"EnumBooleanBody\");\n } else if (!boolsLen && !strsLen && numsLen >= defaultedLen) {\n for (const member of members.defaultedMembers) {\n this.flowEnumErrorNumberMemberNotInitialized(member.loc.start, {\n enumName,\n memberName: member.id.name,\n });\n }\n node.members = members.numberMembers;\n this.expect(tt.braceR);\n return this.finishNode(node, \"EnumNumberBody\");\n } else {\n this.raise(FlowErrors.EnumInconsistentMemberValues, {\n at: nameLoc,\n enumName,\n });\n return empty();\n }\n }\n }\n }\n\n flowParseEnumDeclaration(node: Undone<N.Node>): N.Node {\n const id = this.parseIdentifier();\n node.id = id;\n node.body = this.flowEnumBody(this.startNode(), id);\n return this.finishNode(node, \"EnumDeclaration\");\n }\n\n // check if the next token is a tt.lt\n isLookaheadToken_lt(): boolean {\n const next = this.nextTokenStart();\n if (this.input.charCodeAt(next) === charCodes.lessThan) {\n const afterNext = this.input.charCodeAt(next + 1);\n return (\n afterNext !== charCodes.lessThan && afterNext !== charCodes.equalsTo\n );\n }\n return false;\n }\n\n maybeUnwrapTypeCastExpression(node: N.Node) {\n return node.type === \"TypeCastExpression\" ? node.expression : node;\n }\n };\n"],"mappings":";;;;;;AAGA,IAAAA,MAAA,GAAAC,OAAA;AAYA,IAAAC,QAAA,GAAAD,OAAA;AAEA,IAAAE,WAAA,GAAAF,OAAA;AACA,IAAAG,MAAA,GAAAH,OAAA;AACA,IAAAI,WAAA,GAAAJ,OAAA;AAYA,IAAAK,WAAA,GAAAL,OAAA;AACA,IAAAM,KAAA,GAAAN,OAAA;AAEA,MAAMO,aAAa,GAAG,IAAIC,GAAG,CAAC,CAC5B,GAAG,EACH,KAAK,EACL,MAAM,EACN,SAAS,EACT,OAAO,EACP,SAAS,EACT,OAAO,EACP,WAAW,EACX,OAAO,EACP,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,QAAQ,EACR,MAAM,EACN,QAAQ,EACR,MAAM,CACP,CAAC;AAIF,MAAMC,UAAU,GAAG,IAAAC,0BAAc,CAAC,MAAK,CAAC;EACtCC,yBAAyB,EACvB,gFAAgF;EAClFC,0BAA0B,EACxB,wKAAwK;EAG1KC,kBAAkB,EAAEA,CAAC;IAAEC;EAAuC,CAAC,KAC5D,kCAAiCA,YAAa,GAAE;EACnDC,mBAAmB,EACjB,yDAAyD;EAC3DC,4BAA4B,EAC1B,qEAAqE;EACvEC,6BAA6B,EAC3B,+CAA+C;EACjDC,+BAA+B,EAAEA,CAAC;IAChCC,UAAU;IACVC;EAIF,CAAC,KACE,6DAA4DD,UAAW,mBAAkBA,UAAW,yBAAwBC,QAAS,KAAI;EAC5IC,uBAAuB,EAAEA,CAAC;IACxBF,UAAU;IACVC;EAIF,CAAC,KACE,uDAAsDD,UAAW,6CAA4CC,QAAS,KAAI;EAC7HE,4BAA4B,EAAEA,CAAC;IAAEF;EAA+B,CAAC,KAC9D,UAASA,QAAS,uKAAsK;EAC3LG,uBAAuB,EAAEA,CAAC;IACxBC,eAAe;IACfJ;EAIF,CAAC,KACE,eAAcI,eAAgB,4FAA2FJ,QAAS,KAAI;EACzIK,sCAAsC,EAAEA,CAAC;IACvCL;EAGF,CAAC,KACE,4GAA2GA,QAAS,KAAI;EAa3HM,uCAAuC,EAAEA,CAAC;IACxCN,QAAQ;IACRD,UAAU;IACVQ;EAKF,CAAC,KACE,UAASP,QAAS,iBAAgBO,YAAa,+BAA8BR,UAAW,oBAAmBQ,YAAa,WAAU;EACrIC,sCAAsC,EAAEA,CAAC;IACvCR,QAAQ;IACRD;EAKF,CAAC,KACE,oDAAmDA,UAAW,iBAAgBC,QAAS,KAAI;EAC9FS,uCAAuC,EAAEA,CAAC;IACxCT,QAAQ;IACRD;EAKF,CAAC,KACE,qCAAoCA,UAAW,4EAA2EC,QAAS,KAAI;EAC1IU,qBAAqB,EAAEA,CAAC;IACtBV,QAAQ;IACRD,UAAU;IACVY;EAKF,CAAC,KACE,qFAAoFZ,UAAW,wBAAuBY,UAAW,iBAAgBX,QAAS,KAAI;EACjKY,8BAA8B,EAAEA,CAAC;IAC/BZ,QAAQ;IACRD;EAIF,CAAC,KACE,sDAAqDA,UAAW,oBAAmBC,QAAS,KAAI;EACnGa,yCAAyC,EAAEA,CAAC;IAC1Cb;EAGF,CAAC,KACE,2GAA0GA,QAAS,KAAI;EAC1Hc,yBAAyB,EAAE,0CAA0C;EACrEC,6BAA6B,EAC3B,wEAAwE;EAC1EC,mCAAmC,EACjC,wKAAwK;EAC1KC,kBAAkB,EAChB,6EAA6E;EAC/EC,sBAAsB,EACpB,0EAA0E;EAC5EC,eAAe,EAAE,+CAA+C;EAChEC,mCAAmC,EACjC,yFAAyF;EAC3FC,uBAAuB,EACrB,yGAAyG;EAC3GC,mBAAmB,EACjB,kEAAkE;EACpEC,iBAAiB,EAAE,yDAAyD;EAC5EC,iBAAiB,EAAAC,MAAA,CAAAC,MAAA;IACfC,OAAO,EACL;EAAgF,GAG9E;IAAEC,UAAU,EAAE;EAAyB,CAAC,CAE7C;EACDC,yBAAyB,EAAE,0CAA0C;EACrEC,cAAc,EAAE,yCAAyC;EACzDC,2BAA2B,EACzB,yDAAyD;EAC3DC,4BAA4B,EAC1B,mGAAmG;EACrGC,yBAAyB,EAAE,0CAA0C;EACrEC,oBAAoB,EAClB,4DAA4D;EAC9DC,kBAAkB,EAAE,oDAAoD;EACxEC,qBAAqB,EACnB,mHAAmH;EACrHC,iBAAiB,EACf,sEAAsE;EACxEC,iCAAiC,EAC/B,sEAAsE;EACxEC,sBAAsB,EAAEA,CAAC;IAAE7C;EAAuC,CAAC,KAChE,4BAA2BA,YAAa,GAAE;EAC7C8C,4BAA4B,EAC1B,wDAAwD;EAC1DC,kCAAkC,EAChC,uDAAuD;EACzDC,oBAAoB,EAClB,kEAAkE;EACpEC,4BAA4B,EAC1B,kDAAkD;EACpDC,iCAAiC,EAC/B,mEAAmE;EACrEC,+CAA+C,EAC7C,mHAAmH;EACrHC,4BAA4B,EAAEA,CAAC;IAC7BC,qBAAqB;IACrBpC;EAIF,CAAC,KACE,oBAAmBoC,qBAAsB,8BAA6BpC,UAAW,aAAY;EAChGqC,mCAAmC,EACjC,mEAAmE;EACrEC,uBAAuB,EAAE;AAC3B,CAAC,CAAC;AAGF,SAASC,cAAcA,CAACC,WAAmB,EAAW;EACpD,OACEA,WAAW,CAACC,IAAI,KAAK,6BAA6B,IACjDD,WAAW,CAACC,IAAI,KAAK,0BAA0B,KAC7C,CAACD,WAAW,CAACE,WAAW,IACtBF,WAAW,CAACE,WAAW,CAACD,IAAI,KAAK,WAAW,IAC3CD,WAAW,CAACE,WAAW,CAACD,IAAI,KAAK,sBAAuB,CAAE;AAEpE;AAEA,SAASE,iBAAiBA,CAACC,IAAY,EAAW;EAChD,OAAOA,IAAI,CAACC,UAAU,KAAK,MAAM,IAAID,IAAI,CAACC,UAAU,KAAK,QAAQ;AACnE;AAEA,MAAMC,iBAAiB,GAAG;EACxBC,KAAK,EAAE,oBAAoB;EAC3BC,GAAG,EAAE,oBAAoB;EACzBP,IAAI,EAAE,aAAa;EACnBQ,SAAS,EAAE;AACb,CAAC;AAGD,SAASC,SAASA,CAChBC,IAAS,EACTC,IAA6D,EACjD;EACZ,MAAMC,KAAU,GAAG,EAAE;EACrB,MAAMC,KAAU,GAAG,EAAE;EACrB,KAAK,IAAIC,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGJ,IAAI,CAACK,MAAM,EAAED,CAAC,EAAE,EAAE;IACpC,CAACH,IAAI,CAACD,IAAI,CAACI,CAAC,CAAC,EAAEA,CAAC,EAAEJ,IAAI,CAAC,GAAGE,KAAK,GAAGC,KAAK,EAAEG,IAAI,CAACN,IAAI,CAACI,CAAC,CAAC,CAAC;EACxD;EACA,OAAO,CAACF,KAAK,EAAEC,KAAK,CAAC;AACvB;AAEA,MAAMI,iBAAiB,GAAG,wBAAwB;AAAC,IAAAC,QAAA,GAoCnCC,UAAyB,IACvC,MAAMC,eAAe,SAASD,UAAU,CAAmB;EAAAE,YAAA,GAAAC,IAAA;IAAA,SAAAA,IAAA;IAAA,KAIzDC,UAAU,GAAoCC,SAAS;EAAA;EAEvDC,eAAeA,CAAA,EAEb;IACA,OAAOC,cAAgB;EACzB;EAEAC,gBAAgBA,CAAA,EAAY;IAC1B,OAAO,IAAI,CAACC,eAAe,CAAC,MAAM,EAAE,KAAK,CAAC,IAAI,IAAI,CAACL,UAAU,KAAK,MAAM;EAC1E;EAEAM,gBAAgBA,CAAA,EAAY;IAC1B,OAAO,CAAC,CAAC,IAAI,CAACD,eAAe,CAAC,MAAM,EAAE,OAAO,CAAC;EAChD;EAEAE,WAAWA,CAAC9B,IAAe,EAAE+B,GAAQ,EAAQ;IAC3C,IACE/B,IAAI,QAAc,IAClBA,IAAI,OAAY,IAChBA,IAAI,OAA4B,EAChC;MACA,IAAI,IAAI,CAACuB,UAAU,KAAKC,SAAS,EAAE;QACjC,IAAI,CAACD,UAAU,GAAG,IAAI;MACxB;IACF;IACA,KAAK,CAACO,WAAW,CAAC9B,IAAI,EAAE+B,GAAG,CAAC;EAC9B;EAEAC,UAAUA,CAACC,OAAkB,EAAQ;IACnC,IAAI,IAAI,CAACV,UAAU,KAAKC,SAAS,EAAE;MAEjC,MAAMU,OAAO,GAAGjB,iBAAiB,CAACkB,IAAI,CAACF,OAAO,CAACG,KAAK,CAAC;MACrD,IAAI,CAACF,OAAO,EAAE,CAEd,CAAC,MAAM,IAAIA,OAAO,CAAC,CAAC,CAAC,KAAK,MAAM,EAAE;QAChC,IAAI,CAACX,UAAU,GAAG,MAAM;MAC1B,CAAC,MAAM,IAAIW,OAAO,CAAC,CAAC,CAAC,KAAK,QAAQ,EAAE;QAClC,IAAI,CAACX,UAAU,GAAG,QAAQ;MAC5B,CAAC,MAAM;QACL,MAAM,IAAIc,KAAK,CAAC,wBAAwB,CAAC;MAC3C;IACF;IACA,KAAK,CAACL,UAAU,CAACC,OAAO,CAAC;EAC3B;EAEAK,wBAAwBA,CAACC,GAAe,EAAc;IACpD,MAAMC,SAAS,GAAG,IAAI,CAACC,KAAK,CAACC,MAAM;IACnC,IAAI,CAACD,KAAK,CAACC,MAAM,GAAG,IAAI;IACxB,IAAI,CAACC,MAAM,CAACJ,GAAG,MAAY,CAAC;IAE5B,MAAMvC,IAAI,GAAG,IAAI,CAAC4C,aAAa,CAAC,CAAC;IACjC,IAAI,CAACH,KAAK,CAACC,MAAM,GAAGF,SAAS;IAC7B,OAAOxC,IAAI;EACb;EAEA6C,kBAAkBA,CAAA,EAAoB;IACpC,MAAM1C,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;IAC7B,MAAMC,SAAS,GAAG,IAAI,CAACN,KAAK,CAACO,QAAQ;IACrC,IAAI,CAACC,IAAI,CAAC,CAAC;IACX,IAAI,CAACC,gBAAgB,IAAW,CAAC;IAEjC,IAAI,IAAI,CAACT,KAAK,CAACU,YAAY,GAAGJ,SAAS,CAACK,KAAK,GAAG,CAAC,EAAE;MACjD,IAAI,CAACC,KAAK,CAACpH,UAAU,CAACoD,kCAAkC,EAAE;QACxDiE,EAAE,EAAEP;MACN,CAAC,CAAC;IACJ;IACA,IAAI,IAAI,CAACQ,GAAG,GAAU,CAAC,EAAE;MACvBpD,IAAI,CAACiC,KAAK,GAAG,KAAK,CAACoB,eAAe,CAAC,CAAC;MACpC,IAAI,CAACb,MAAM,GAAU,CAAC;MACtB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,mBAAmB,CAAC;IACnD,CAAC,MAAM;MACL,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,mBAAmB,CAAC;IACnD;EACF;EAEAuD,oCAAoCA,CAAA,EAGlC;IACA,MAAMlB,SAAS,GAAG,IAAI,CAACC,KAAK,CAACC,MAAM;IACnC,IAAI,CAACD,KAAK,CAACC,MAAM,GAAG,IAAI;IACxB,IAAI,CAACC,MAAM,GAAS,CAAC;IACrB,IAAI3C,IAAI,GAAG,IAAI;IACf,IAAI2D,SAAS,GAAG,IAAI;IACpB,IAAI,IAAI,CAACC,KAAK,GAAU,CAAC,EAAE;MACzB,IAAI,CAACnB,KAAK,CAACC,MAAM,GAAGF,SAAS;MAC7BmB,SAAS,GAAG,IAAI,CAACd,kBAAkB,CAAC,CAAC;IACvC,CAAC,MAAM;MACL7C,IAAI,GAAG,IAAI,CAAC4C,aAAa,CAAC,CAAC;MAC3B,IAAI,CAACH,KAAK,CAACC,MAAM,GAAGF,SAAS;MAC7B,IAAI,IAAI,CAACoB,KAAK,GAAU,CAAC,EAAE;QACzBD,SAAS,GAAG,IAAI,CAACd,kBAAkB,CAAC,CAAC;MACvC;IACF;IACA,OAAO,CAAC7C,IAAI,EAAE2D,SAAS,CAAC;EAC1B;EAEAE,qBAAqBA,CACnB1D,IAAgC,EACZ;IACpB,IAAI,CAAC8C,IAAI,CAAC,CAAC;IACX,IAAI,CAACa,qBAAqB,CAAC3D,IAAI,EAAc,IAAI,CAAC;IAClD,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,cAAc,CAAC;EAC9C;EAEA4D,wBAAwBA,CACtB5D,IAAmC,EACZ;IACvB,IAAI,CAAC8C,IAAI,CAAC,CAAC;IAEX,MAAMe,EAAE,GAAI7D,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACC,eAAe,CAAC,CAAE;IAE7C,MAAMC,QAAQ,GAAG,IAAI,CAACpB,SAAS,CAAC,CAAC;IACjC,MAAMqB,aAAa,GAAG,IAAI,CAACrB,SAAS,CAAmB,CAAC;IAExD,IAAI,IAAI,CAACc,KAAK,GAAM,CAAC,EAAE;MACrBM,QAAQ,CAACE,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;IACpE,CAAC,MAAM;MACLH,QAAQ,CAACE,cAAc,GAAG,IAAI;IAChC;IAEA,IAAI,CAACzB,MAAM,GAAU,CAAC;IACtB,MAAM2B,GAAG,GAAG,IAAI,CAACC,2BAA2B,CAAC,CAAC;IAC9CL,QAAQ,CAACM,MAAM,GAAGF,GAAG,CAACE,MAAM;IAC5BN,QAAQ,CAACO,IAAI,GAAGH,GAAG,CAACG,IAAI;IACxBP,QAAQ,CAACQ,IAAI,GAAGJ,GAAG,CAACK,KAAK;IACzB,IAAI,CAAChC,MAAM,GAAU,CAAC;IAEtB,CAACuB,QAAQ,CAACU,UAAU,EAAEzE,IAAI,CAACwD,SAAS,CAAC,GACnC,IAAI,CAACD,oCAAoC,CAAC,CAAC;IAE7CS,aAAa,CAACU,cAAc,GAAG,IAAI,CAACpB,UAAU,CAC5CS,QAAQ,EACR,wBACF,CAAC;IAEDF,EAAE,CAACa,cAAc,GAAG,IAAI,CAACpB,UAAU,CAACU,aAAa,EAAE,gBAAgB,CAAC;IAEpE,IAAI,CAACW,gBAAgB,CAACd,EAAE,CAAC;IACzB,IAAI,CAACe,SAAS,CAAC,CAAC;IAEhB,IAAI,CAACC,KAAK,CAACC,WAAW,CACpB9E,IAAI,CAAC6D,EAAE,CAACkB,IAAI,EACZC,gCAAoB,EACpBhF,IAAI,CAAC6D,EAAE,CAACoB,GAAG,CAACC,KACd,CAAC;IAED,OAAO,IAAI,CAAC5B,UAAU,CAACtD,IAAI,EAAE,iBAAiB,CAAC;EACjD;EAEAmF,gBAAgBA,CACdnF,IAA2B,EAC3BoF,YAAsB,EACP;IACf,IAAI,IAAI,CAAC3B,KAAK,GAAU,CAAC,EAAE;MACzB,OAAO,IAAI,CAACC,qBAAqB,CAAC1D,IAAI,CAAC;IACzC,CAAC,MAAM,IAAI,IAAI,CAACyD,KAAK,GAAa,CAAC,EAAE;MACnC,OAAO,IAAI,CAACG,wBAAwB,CAAC5D,IAAI,CAAC;IAC5C,CAAC,MAAM,IAAI,IAAI,CAACyD,KAAK,GAAQ,CAAC,EAAE;MAC9B,OAAO,IAAI,CAAC4B,wBAAwB,CAACrF,IAAI,CAAC;IAC5C,CAAC,MAAM,IAAI,IAAI,CAACsF,aAAa,IAAW,CAAC,EAAE;MACzC,IAAI,IAAI,CAAC7B,KAAK,GAAO,CAAC,EAAE;QACtB,OAAO,IAAI,CAAC8B,6BAA6B,CAACvF,IAAI,CAAC;MACjD,CAAC,MAAM;QACL,IAAIoF,YAAY,EAAE;UAChB,IAAI,CAAClC,KAAK,CAACpH,UAAU,CAACiC,mBAAmB,EAAE;YACzCoF,EAAE,EAAE,IAAI,CAACb,KAAK,CAACkD;UACjB,CAAC,CAAC;QACJ;QACA,OAAO,IAAI,CAACC,sBAAsB,CAACzF,IAAI,CAAC;MAC1C;IACF,CAAC,MAAM,IAAI,IAAI,CAAC0F,YAAY,IAAS,CAAC,EAAE;MACtC,OAAO,IAAI,CAACC,yBAAyB,CAAC3F,IAAI,CAAC;IAC7C,CAAC,MAAM,IAAI,IAAI,CAAC0F,YAAY,IAAW,CAAC,EAAE;MACxC,OAAO,IAAI,CAACE,0BAA0B,CAAC5F,IAAI,CAAC;IAC9C,CAAC,MAAM,IAAI,IAAI,CAAC0F,YAAY,IAAc,CAAC,EAAE;MAC3C,OAAO,IAAI,CAACG,yBAAyB,CAAC7F,IAAI,CAAC;IAC7C,CAAC,MAAM,IAAI,IAAI,CAACyD,KAAK,GAAW,CAAC,EAAE;MACjC,OAAO,IAAI,CAACqC,iCAAiC,CAAC9F,IAAI,EAAEoF,YAAY,CAAC;IACnE,CAAC,MAAM;MACL,IAAI,CAACW,UAAU,CAAC,CAAC;IACnB;EACF;EAEAV,wBAAwBA,CACtBrF,IAAmC,EACZ;IACvB,IAAI,CAAC8C,IAAI,CAAC,CAAC;IACX9C,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACmC,kCAAkC,CACpB,IAC7B,CAAC;IACD,IAAI,CAACnB,KAAK,CAACC,WAAW,CAAC9E,IAAI,CAAC6D,EAAE,CAACkB,IAAI,EAAEkB,oBAAQ,EAAEjG,IAAI,CAAC6D,EAAE,CAACoB,GAAG,CAACC,KAAK,CAAC;IACjE,IAAI,CAACN,SAAS,CAAC,CAAC;IAChB,OAAO,IAAI,CAACtB,UAAU,CAACtD,IAAI,EAAE,iBAAiB,CAAC;EACjD;EAEAyF,sBAAsBA,CACpBzF,IAAiC,EACZ;IACrB,IAAI,CAAC6E,KAAK,CAACqB,KAAK,CAACC,uBAAW,CAAC;IAE7B,IAAI,IAAI,CAAC1C,KAAK,IAAU,CAAC,EAAE;MACzBzD,IAAI,CAAC6D,EAAE,GAAG,KAAK,CAACuC,aAAa,CAAC,CAAC;IACjC,CAAC,MAAM;MACLpG,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACC,eAAe,CAAC,CAAC;IAClC;IAEA,MAAMuC,QAAQ,GAAIrG,IAAI,CAACsG,IAAI,GAAG,IAAI,CAAC3D,SAAS,CAAC,CAAE;IAE/C,MAAM2D,IAAI,GAAID,QAAQ,CAACC,IAAI,GAAG,EAAG;IACjC,IAAI,CAAC9D,MAAM,EAAU,CAAC;IACtB,OAAO,CAAC,IAAI,CAACiB,KAAK,EAAU,CAAC,EAAE;MAC7B,IAAI4C,QAAQ,GAAG,IAAI,CAAC1D,SAAS,CAAsB,CAAC;MAEpD,IAAI,IAAI,CAACc,KAAK,GAAW,CAAC,EAAE;QAC1B,IAAI,CAACX,IAAI,CAAC,CAAC;QACX,IAAI,CAAC,IAAI,CAAC4C,YAAY,IAAS,CAAC,IAAI,CAAC,IAAI,CAACjC,KAAK,GAAW,CAAC,EAAE;UAC3D,IAAI,CAACP,KAAK,CAACpH,UAAU,CAAC+B,mCAAmC,EAAE;YACzDsF,EAAE,EAAE,IAAI,CAACb,KAAK,CAACkD;UACjB,CAAC,CAAC;QACJ;QACA,KAAK,CAACe,WAAW,CAACF,QAAQ,CAAC;MAC7B,CAAC,MAAM;QACL,IAAI,CAACtD,gBAAgB,MAEnBjH,UAAU,CAAC2D,mCACb,CAAC;QAED4G,QAAQ,GAAG,IAAI,CAAClB,gBAAgB,CAACkB,QAAQ,EAAE,IAAI,CAAC;MAClD;MAEAC,IAAI,CAACzF,IAAI,CAACwF,QAAQ,CAAC;IACrB;IAEA,IAAI,CAACxB,KAAK,CAAC2B,IAAI,CAAC,CAAC;IAEjB,IAAI,CAAChE,MAAM,EAAU,CAAC;IAEtB,IAAI,CAACc,UAAU,CAAC+C,QAAQ,EAAE,gBAAgB,CAAC;IAE3C,IAAII,IAA8B,GAAG,IAAI;IACzC,IAAIC,eAAe,GAAG,KAAK;IAC3BJ,IAAI,CAACK,OAAO,CAAC/G,WAAW,IAAI;MAC1B,IAAID,cAAc,CAACC,WAAW,CAAC,EAAE;QAC/B,IAAI6G,IAAI,KAAK,UAAU,EAAE;UACvB,IAAI,CAACvD,KAAK,CAACpH,UAAU,CAACG,0BAA0B,EAAE;YAChDkH,EAAE,EAAEvD;UACN,CAAC,CAAC;QACJ;QACA6G,IAAI,GAAG,IAAI;MACb,CAAC,MAAM,IAAI7G,WAAW,CAACC,IAAI,KAAK,sBAAsB,EAAE;QACtD,IAAI6G,eAAe,EAAE;UACnB,IAAI,CAACxD,KAAK,CAACpH,UAAU,CAACQ,6BAA6B,EAAE;YACnD6G,EAAE,EAAEvD;UACN,CAAC,CAAC;QACJ;QACA,IAAI6G,IAAI,KAAK,IAAI,EAAE;UACjB,IAAI,CAACvD,KAAK,CAACpH,UAAU,CAACG,0BAA0B,EAAE;YAChDkH,EAAE,EAAEvD;UACN,CAAC,CAAC;QACJ;QACA6G,IAAI,GAAG,UAAU;QACjBC,eAAe,GAAG,IAAI;MACxB;IACF,CAAC,CAAC;IAEF1G,IAAI,CAACyG,IAAI,GAAGA,IAAI,IAAI,UAAU;IAC9B,OAAO,IAAI,CAACnD,UAAU,CAACtD,IAAI,EAAE,eAAe,CAAC;EAC/C;EAEA8F,iCAAiCA,CAC/B9F,IAA4C,EAC5CoF,YAA6B,EACG;IAChC,IAAI,CAAC5C,MAAM,GAAW,CAAC;IAEvB,IAAI,IAAI,CAACY,GAAG,GAAY,CAAC,EAAE;MACzB,IAAI,IAAI,CAACK,KAAK,GAAa,CAAC,IAAI,IAAI,CAACA,KAAK,GAAU,CAAC,EAAE;QAGrDzD,IAAI,CAACF,WAAW,GAAG,IAAI,CAACqF,gBAAgB,CAAC,IAAI,CAACxC,SAAS,CAAC,CAAC,CAAC;MAC5D,CAAC,MAAM;QAEL3C,IAAI,CAACF,WAAW,GAAG,IAAI,CAAC2C,aAAa,CAAC,CAAC;QACvC,IAAI,CAACmC,SAAS,CAAC,CAAC;MAClB;MACA5E,IAAI,CAAC4G,OAAO,GAAG,IAAI;MAEnB,OAAO,IAAI,CAACtD,UAAU,CAACtD,IAAI,EAAE,0BAA0B,CAAC;IAC1D,CAAC,MAAM;MACL,IACE,IAAI,CAACyD,KAAK,GAAU,CAAC,IACrB,IAAI,CAACoD,KAAK,CAAC,CAAC,IACX,CAAC,IAAI,CAACnB,YAAY,IAAS,CAAC,IAAI,IAAI,CAACA,YAAY,IAAc,CAAC,KAC/D,CAACN,YAAa,EAChB;QACA,MAAM0B,KAAK,GAAG,IAAI,CAACxE,KAAK,CAACL,KAIV;QACf,MAAM,IAAI,CAACiB,KAAK,CAACpH,UAAU,CAACyD,4BAA4B,EAAE;UACxD4D,EAAE,EAAE,IAAI,CAACb,KAAK,CAACO,QAAQ;UACvBrD,qBAAqB,EAAEsH,KAAK;UAC5B1J,UAAU,EAAE8C,iBAAiB,CAAC4G,KAAK;QACrC,CAAC,CAAC;MACJ;MAEA,IACE,IAAI,CAACrD,KAAK,GAAQ,CAAC,IACnB,IAAI,CAACA,KAAK,GAAa,CAAC,IACxB,IAAI,CAACA,KAAK,GAAU,CAAC,IACrB,IAAI,CAACiC,YAAY,IAAW,CAAC,EAC7B;QACA1F,IAAI,CAACF,WAAW,GAAG,IAAI,CAACqF,gBAAgB,CAAC,IAAI,CAACxC,SAAS,CAAC,CAAC,CAAC;QAC1D3C,IAAI,CAAC4G,OAAO,GAAG,KAAK;QAEpB,OAAO,IAAI,CAACtD,UAAU,CAACtD,IAAI,EAAE,0BAA0B,CAAC;MAC1D,CAAC,MAAM,IACL,IAAI,CAACyD,KAAK,GAAQ,CAAC,IACnB,IAAI,CAACA,KAAK,EAAU,CAAC,IACrB,IAAI,CAACiC,YAAY,IAAc,CAAC,IAChC,IAAI,CAACA,YAAY,IAAS,CAAC,IAC3B,IAAI,CAACA,YAAY,IAAW,CAAC,EAC7B;QACA1F,IAAI,GAAG,IAAI,CAAC+G,WAAW,CACrB/G,IAAI,EACa,IACnB,CAAC;QACD,IAAIA,IAAI,CAACH,IAAI,KAAK,wBAAwB,EAAE;UAC1CG,IAAI,CAACH,IAAI,GAAG,mBAAmB;UAC/BG,IAAI,CAAC4G,OAAO,GAAG,KAAK;UACpB,OAAO5G,IAAI,CAACgH,UAAU;QACxB;QAEAhH,IAAI,CAACH,IAAI,GAAG,SAAS,GAAGG,IAAI,CAACH,IAAI;QAEjC,OAAOG,IAAI;MACb;IACF;IAEA,IAAI,CAAC+F,UAAU,CAAC,CAAC;EACnB;EAEAR,6BAA6BA,CAC3BvF,IAAwC,EACZ;IAC5B,IAAI,CAAC8C,IAAI,CAAC,CAAC;IACX,IAAI,CAACC,gBAAgB,IAAY,CAAC;IAClC/C,IAAI,CAAC0E,cAAc,GAAG,IAAI,CAACuC,uBAAuB,CAAC,CAAC;IACpD,IAAI,CAACrC,SAAS,CAAC,CAAC;IAEhB,OAAO,IAAI,CAACtB,UAAU,CAACtD,IAAI,EAAE,sBAAsB,CAAC;EACtD;EAEA2F,yBAAyBA,CACvB3F,IAAoC,EACZ;IACxB,IAAI,CAAC8C,IAAI,CAAC,CAAC;IACX,MAAMoE,QAAQ,GAAG,IAAI,CAACC,kBAAkB,CAACnH,IAAI,CAAC;IAE9CkH,QAAQ,CAACrH,IAAI,GAAG,kBAAkB;IAClC,OAAOqH,QAAQ;EACjB;EAEAtB,0BAA0BA,CACxB5F,IAAqC,EACZ;IACzB,IAAI,CAAC8C,IAAI,CAAC,CAAC;IACX,MAAMoE,QAAQ,GAAG,IAAI,CAACE,mBAAmB,CAACpH,IAAI,EAAE,IAAI,CAAC;IAErDkH,QAAQ,CAACrH,IAAI,GAAG,mBAAmB;IACnC,OAAOqH,QAAQ;EACjB;EAEArB,yBAAyBA,CACvB7F,IAAoC,EACZ;IACxB,IAAI,CAAC8C,IAAI,CAAC,CAAC;IACX,IAAI,CAACa,qBAAqB,CAAC3D,IAAI,EAAgB,KAAK,CAAC;IACrD,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,kBAAkB,CAAC;EAClD;EAIA2D,qBAAqBA,CAAC3D,IAA2B,EAAEqH,OAAgB,EAAQ;IACzErH,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACyD,6BAA6B,CAC5B,CAACD,OAAO,EACJ,IACpB,CAAC;IAED,IAAI,CAACxC,KAAK,CAACC,WAAW,CACpB9E,IAAI,CAAC6D,EAAE,CAACkB,IAAI,EACZsC,OAAO,GAAGE,yBAAa,GAAGC,wBAAY,EACtCxH,IAAI,CAAC6D,EAAE,CAACoB,GAAG,CAACC,KACd,CAAC;IAED,IAAI,IAAI,CAACzB,KAAK,GAAM,CAAC,EAAE;MACrBzD,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;IAChE,CAAC,MAAM;MACLlE,IAAI,CAACiE,cAAc,GAAG,IAAI;IAC5B;IAEAjE,IAAI,CAACyH,OAAO,GAAG,EAAE;IAEjB,IAAI,IAAI,CAACrE,GAAG,GAAY,CAAC,EAAE;MACzB,GAAG;QACDpD,IAAI,CAACyH,OAAO,CAAC5G,IAAI,CAAC,IAAI,CAAC6G,yBAAyB,CAAC,CAAC,CAAC;MACrD,CAAC,QAAQ,CAACL,OAAO,IAAI,IAAI,CAACjE,GAAG,GAAS,CAAC;IACzC;IAEA,IAAIiE,OAAO,EAAE;MACXrH,IAAI,CAAC2H,UAAU,GAAG,EAAE;MACpB3H,IAAI,CAAC4H,MAAM,GAAG,EAAE;MAEhB,IAAI,IAAI,CAACtC,aAAa,IAAW,CAAC,EAAE;QAClC,GAAG;UACDtF,IAAI,CAAC4H,MAAM,CAAC/G,IAAI,CAAC,IAAI,CAAC6G,yBAAyB,CAAC,CAAC,CAAC;QACpD,CAAC,QAAQ,IAAI,CAACtE,GAAG,GAAS,CAAC;MAC7B;MAEA,IAAI,IAAI,CAACkC,aAAa,IAAe,CAAC,EAAE;QACtC,GAAG;UACDtF,IAAI,CAAC2H,UAAU,CAAC9G,IAAI,CAAC,IAAI,CAAC6G,yBAAyB,CAAC,CAAC,CAAC;QACxD,CAAC,QAAQ,IAAI,CAACtE,GAAG,GAAS,CAAC;MAC7B;IACF;IAEApD,IAAI,CAACsG,IAAI,GAAG,IAAI,CAACuB,mBAAmB,CAAC;MACnCC,WAAW,EAAET,OAAO;MACpBU,UAAU,EAAE,KAAK;MACjBC,WAAW,EAAE,KAAK;MAClBC,UAAU,EAAEZ,OAAO;MACnBa,YAAY,EAAE;IAChB,CAAC,CAAC;EACJ;EAEAR,yBAAyBA,CAAA,EAA2B;IAClD,MAAM1H,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;IAE7B3C,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACsE,gCAAgC,CAAC,CAAC;IACjD,IAAI,IAAI,CAAC1E,KAAK,GAAM,CAAC,EAAE;MACrBzD,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACmE,mCAAmC,CAAC,CAAC;IAClE,CAAC,MAAM;MACLpI,IAAI,CAACiE,cAAc,GAAG,IAAI;IAC5B;IAEA,OAAO,IAAI,CAACX,UAAU,CAACtD,IAAI,EAAE,kBAAkB,CAAC;EAClD;EAEAqI,kBAAkBA,CAACrI,IAA6B,EAAmB;IACjE,IAAI,CAAC2D,qBAAqB,CAAC3D,IAAI,EAAgB,KAAK,CAAC;IACrD,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,sBAAsB,CAAC;EACtD;EAEAsI,kBAAkBA,CAACC,IAAY,EAAE;IAC/B,IAAIA,IAAI,KAAK,GAAG,EAAE;MAChB,IAAI,CAACrF,KAAK,CAACpH,UAAU,CAACmD,4BAA4B,EAAE;QAClDkE,EAAE,EAAE,IAAI,CAACb,KAAK,CAACO;MACjB,CAAC,CAAC;IACJ;EACF;EAEA2F,iBAAiBA,CAACD,IAAY,EAAE1F,QAAkB,EAAE/C,WAAqB,EAAE;IACzE,IAAI,CAAClE,aAAa,CAAC6M,GAAG,CAACF,IAAI,CAAC,EAAE;IAE9B,IAAI,CAACrF,KAAK,CACRpD,WAAW,GACPhE,UAAU,CAACI,kBAAkB,GAC7BJ,UAAU,CAACkD,sBAAsB,EACrC;MACEmE,EAAE,EAAEN,QAAQ;MACZ1G,YAAY,EAAEoM;IAChB,CACF,CAAC;EACH;EAEAjB,6BAA6BA,CAC3BoB,OAAiB,EACjB5I,WAAqB,EACP;IACd,IAAI,CAAC0I,iBAAiB,CACpB,IAAI,CAAClG,KAAK,CAACL,KAAK,EAChB,IAAI,CAACK,KAAK,CAACO,QAAQ,EACnB/C,WACF,CAAC;IACD,OAAO,IAAI,CAACgE,eAAe,CAAC4E,OAAO,CAAC;EACtC;EAIAvB,kBAAkBA,CAACnH,IAA6B,EAAmB;IACjEA,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACyD,6BAA6B,CAC5B,KAAK,EACD,IACpB,CAAC;IACD,IAAI,CAACzC,KAAK,CAACC,WAAW,CAAC9E,IAAI,CAAC6D,EAAE,CAACkB,IAAI,EAAEyC,wBAAY,EAAExH,IAAI,CAAC6D,EAAE,CAACoB,GAAG,CAACC,KAAK,CAAC;IAErE,IAAI,IAAI,CAACzB,KAAK,GAAM,CAAC,EAAE;MACrBzD,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;IAChE,CAAC,MAAM;MACLlE,IAAI,CAACiE,cAAc,GAAG,IAAI;IAC5B;IAEAjE,IAAI,CAAC2I,KAAK,GAAG,IAAI,CAACxG,wBAAwB,GAAM,CAAC;IACjD,IAAI,CAACyC,SAAS,CAAC,CAAC;IAEhB,OAAO,IAAI,CAACtB,UAAU,CAACtD,IAAI,EAAE,WAAW,CAAC;EAC3C;EAEAoH,mBAAmBA,CACjBpH,IAA8B,EAC9B4I,OAAgB,EACE;IAClB,IAAI,CAAC7F,gBAAgB,IAAS,CAAC;IAC/B/C,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACyD,6BAA6B,CAC5B,IAAI,EACA,IACpB,CAAC;IACD,IAAI,CAACzC,KAAK,CAACC,WAAW,CAAC9E,IAAI,CAAC6D,EAAE,CAACkB,IAAI,EAAEyC,wBAAY,EAAExH,IAAI,CAAC6D,EAAE,CAACoB,GAAG,CAACC,KAAK,CAAC;IAErE,IAAI,IAAI,CAACzB,KAAK,GAAM,CAAC,EAAE;MACrBzD,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;IAChE,CAAC,MAAM;MACLlE,IAAI,CAACiE,cAAc,GAAG,IAAI;IAC5B;IAGAjE,IAAI,CAAC6I,SAAS,GAAG,IAAI;IACrB,IAAI,IAAI,CAACpF,KAAK,GAAS,CAAC,EAAE;MACxBzD,IAAI,CAAC6I,SAAS,GAAG,IAAI,CAAC1G,wBAAwB,GAAS,CAAC;IAC1D;IAEAnC,IAAI,CAAC8I,QAAQ,GAAG,IAAI;IACpB,IAAI,CAACF,OAAO,EAAE;MACZ5I,IAAI,CAAC8I,QAAQ,GAAG,IAAI,CAAC3G,wBAAwB,GAAM,CAAC;IACtD;IACA,IAAI,CAACyC,SAAS,CAAC,CAAC;IAEhB,OAAO,IAAI,CAACtB,UAAU,CAACtD,IAAI,EAAE,YAAY,CAAC;EAC5C;EAIA+I,sBAAsBA,CAACC,cAAuB,GAAG,KAAK,EAAmB;IACvE,MAAMC,YAAY,GAAG,IAAI,CAAC3G,KAAK,CAACO,QAAQ;IAExC,MAAM7C,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAkB,CAAC;IAE9C,MAAMuG,QAAQ,GAAG,IAAI,CAACC,iBAAiB,CAAC,CAAC;IAEzC,MAAMC,KAAK,GAAG,IAAI,CAACpD,kCAAkC,CAAC,CAAC;IACvDhG,IAAI,CAAC+E,IAAI,GAAGqE,KAAK,CAACrE,IAAI;IAEtB/E,IAAI,CAACkJ,QAAQ,GAAGA,QAAQ;IAExBlJ,IAAI,CAACqJ,KAAK,GAAGD,KAAK,CAAC1E,cAAc;IAEjC,IAAI,IAAI,CAACjB,KAAK,GAAM,CAAC,EAAE;MACrB,IAAI,CAACL,GAAG,GAAM,CAAC;MAEfpD,IAAI,CAAC4G,OAAO,GAAG,IAAI,CAACnE,aAAa,CAAC,CAAC;IACrC,CAAC,MAAM;MACL,IAAIuG,cAAc,EAAE;QAClB,IAAI,CAAC9F,KAAK,CAACpH,UAAU,CAACgC,uBAAuB,EAAE;UAAEqF,EAAE,EAAE8F;QAAa,CAAC,CAAC;MACtE;IACF;IAEA,OAAO,IAAI,CAAC3F,UAAU,CAACtD,IAAI,EAAE,eAAe,CAAC;EAC/C;EAEAkE,iCAAiCA,CAAA,EAA+B;IAC9D,MAAM7B,SAAS,GAAG,IAAI,CAACC,KAAK,CAACC,MAAM;IACnC,MAAMvC,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAA6B,CAAC;IACzD3C,IAAI,CAACqE,MAAM,GAAG,EAAE;IAEhB,IAAI,CAAC/B,KAAK,CAACC,MAAM,GAAG,IAAI;IAGxB,IAAI,IAAI,CAACkB,KAAK,GAAM,CAAC,IAAI,IAAI,CAACA,KAAK,IAAe,CAAC,EAAE;MACnD,IAAI,CAACX,IAAI,CAAC,CAAC;IACb,CAAC,MAAM;MACL,IAAI,CAACiD,UAAU,CAAC,CAAC;IACnB;IAEA,IAAIuD,eAAe,GAAG,KAAK;IAE3B,GAAG;MACD,MAAMC,aAAa,GAAG,IAAI,CAACR,sBAAsB,CAACO,eAAe,CAAC;MAElEtJ,IAAI,CAACqE,MAAM,CAACxD,IAAI,CAAC0I,aAAa,CAAC;MAE/B,IAAIA,aAAa,CAAC3C,OAAO,EAAE;QACzB0C,eAAe,GAAG,IAAI;MACxB;MAEA,IAAI,CAAC,IAAI,CAAC7F,KAAK,GAAM,CAAC,EAAE;QACtB,IAAI,CAACjB,MAAM,GAAS,CAAC;MACvB;IACF,CAAC,QAAQ,CAAC,IAAI,CAACiB,KAAK,GAAM,CAAC;IAC3B,IAAI,CAACjB,MAAM,GAAM,CAAC;IAElB,IAAI,CAACF,KAAK,CAACC,MAAM,GAAGF,SAAS;IAE7B,OAAO,IAAI,CAACiB,UAAU,CAACtD,IAAI,EAAE,0BAA0B,CAAC;EAC1D;EAEAoI,mCAAmCA,CAAA,EAAiC;IAClE,MAAMpI,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAA+B,CAAC;IAC3D,MAAMN,SAAS,GAAG,IAAI,CAACC,KAAK,CAACC,MAAM;IACnCvC,IAAI,CAACqE,MAAM,GAAG,EAAE;IAEhB,IAAI,CAAC/B,KAAK,CAACC,MAAM,GAAG,IAAI;IAExB,IAAI,CAACC,MAAM,GAAM,CAAC;IAClB,MAAMgH,qBAAqB,GAAG,IAAI,CAAClH,KAAK,CAACmH,kBAAkB;IAC3D,IAAI,CAACnH,KAAK,CAACmH,kBAAkB,GAAG,KAAK;IACrC,OAAO,CAAC,IAAI,CAAChG,KAAK,GAAM,CAAC,EAAE;MACzBzD,IAAI,CAACqE,MAAM,CAACxD,IAAI,CAAC,IAAI,CAAC4B,aAAa,CAAC,CAAC,CAAC;MACtC,IAAI,CAAC,IAAI,CAACgB,KAAK,GAAM,CAAC,EAAE;QACtB,IAAI,CAACjB,MAAM,GAAS,CAAC;MACvB;IACF;IACA,IAAI,CAACF,KAAK,CAACmH,kBAAkB,GAAGD,qBAAqB;IACrD,IAAI,CAAChH,MAAM,GAAM,CAAC;IAElB,IAAI,CAACF,KAAK,CAACC,MAAM,GAAGF,SAAS;IAE7B,OAAO,IAAI,CAACiB,UAAU,CAACtD,IAAI,EAAE,4BAA4B,CAAC;EAC5D;EAEA0J,4CAA4CA,CAAA,EAAiC;IAC3E,MAAM1J,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAA+B,CAAC;IAC3D,MAAMN,SAAS,GAAG,IAAI,CAACC,KAAK,CAACC,MAAM;IACnCvC,IAAI,CAACqE,MAAM,GAAG,EAAE;IAEhB,IAAI,CAAC/B,KAAK,CAACC,MAAM,GAAG,IAAI;IAExB,IAAI,CAACC,MAAM,GAAM,CAAC;IAClB,OAAO,CAAC,IAAI,CAACiB,KAAK,GAAM,CAAC,EAAE;MACzBzD,IAAI,CAACqE,MAAM,CAACxD,IAAI,CAAC,IAAI,CAAC8I,oCAAoC,CAAC,CAAC,CAAC;MAC7D,IAAI,CAAC,IAAI,CAAClG,KAAK,GAAM,CAAC,EAAE;QACtB,IAAI,CAACjB,MAAM,GAAS,CAAC;MACvB;IACF;IACA,IAAI,CAACA,MAAM,GAAM,CAAC;IAElB,IAAI,CAACF,KAAK,CAACC,MAAM,GAAGF,SAAS;IAE7B,OAAO,IAAI,CAACiB,UAAU,CAACtD,IAAI,EAAE,4BAA4B,CAAC;EAC5D;EAEA4J,sBAAsBA,CAAA,EAAwB;IAC5C,MAAM5J,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAsB,CAAC;IAClD,IAAI,CAACI,gBAAgB,IAAc,CAAC;IAEpC/C,IAAI,CAACyH,OAAO,GAAG,EAAE;IACjB,IAAI,IAAI,CAACrE,GAAG,GAAY,CAAC,EAAE;MACzB,GAAG;QACDpD,IAAI,CAACyH,OAAO,CAAC5G,IAAI,CAAC,IAAI,CAAC6G,yBAAyB,CAAC,CAAC,CAAC;MACrD,CAAC,QAAQ,IAAI,CAACtE,GAAG,GAAS,CAAC;IAC7B;IAEApD,IAAI,CAACsG,IAAI,GAAG,IAAI,CAACuB,mBAAmB,CAAC;MACnCC,WAAW,EAAE,KAAK;MAClBC,UAAU,EAAE,KAAK;MACjBC,WAAW,EAAE,KAAK;MAClBC,UAAU,EAAE,KAAK;MACjBC,YAAY,EAAE;IAChB,CAAC,CAAC;IAEF,OAAO,IAAI,CAAC5E,UAAU,CAACtD,IAAI,EAAE,yBAAyB,CAAC;EACzD;EAEA6J,0BAA0BA,CAAA,EAAiB;IACzC,OAAO,IAAI,CAACpG,KAAK,IAAO,CAAC,IAAI,IAAI,CAACA,KAAK,IAAU,CAAC,GAC9C,KAAK,CAAC2C,aAAa,CAAC,CAAC,GACrB,IAAI,CAACtC,eAAe,CAAC,IAAI,CAAC;EAChC;EAEAgG,0BAA0BA,CACxB9J,IAAqC,EACrC+J,QAAiB,EACjBb,QAAgC,EACP;IACzBlJ,IAAI,CAACgK,MAAM,GAAGD,QAAQ;IAGtB,IAAI,IAAI,CAACE,SAAS,CAAC,CAAC,CAACpK,IAAI,OAAa,EAAE;MACtCG,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACgG,0BAA0B,CAAC,CAAC;MAC3C7J,IAAI,CAACkK,GAAG,GAAG,IAAI,CAAC/H,wBAAwB,CAAC,CAAC;IAC5C,CAAC,MAAM;MACLnC,IAAI,CAAC6D,EAAE,GAAG,IAAI;MACd7D,IAAI,CAACkK,GAAG,GAAG,IAAI,CAACzH,aAAa,CAAC,CAAC;IACjC;IACA,IAAI,CAACD,MAAM,EAAY,CAAC;IACxBxC,IAAI,CAACiC,KAAK,GAAG,IAAI,CAACE,wBAAwB,CAAC,CAAC;IAC5CnC,IAAI,CAACkJ,QAAQ,GAAGA,QAAQ;IAExB,OAAO,IAAI,CAAC5F,UAAU,CAACtD,IAAI,EAAE,mBAAmB,CAAC;EACnD;EAEAmK,+BAA+BA,CAC7BnK,IAA0C,EAC1C+J,QAAiB,EACa;IAC9B/J,IAAI,CAACgK,MAAM,GAAGD,QAAQ;IAEtB/J,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACgG,0BAA0B,CAAC,CAAC;IAC3C,IAAI,CAACrH,MAAM,EAAY,CAAC;IACxB,IAAI,CAACA,MAAM,EAAY,CAAC;IACxB,IAAI,IAAI,CAACiB,KAAK,GAAM,CAAC,IAAI,IAAI,CAACA,KAAK,GAAU,CAAC,EAAE;MAC9CzD,IAAI,CAACoK,MAAM,GAAG,IAAI;MAClBpK,IAAI,CAACqK,QAAQ,GAAG,KAAK;MACrBrK,IAAI,CAACiC,KAAK,GAAG,IAAI,CAACqI,4BAA4B,CAC5C,IAAI,CAACC,WAAW,CAACvK,IAAI,CAACiF,GAAG,CAACC,KAAK,CACjC,CAAC;IACH,CAAC,MAAM;MACLlF,IAAI,CAACoK,MAAM,GAAG,KAAK;MACnB,IAAI,IAAI,CAAChH,GAAG,GAAY,CAAC,EAAE;QACzBpD,IAAI,CAACqK,QAAQ,GAAG,IAAI;MACtB;MACArK,IAAI,CAACiC,KAAK,GAAG,IAAI,CAACE,wBAAwB,CAAC,CAAC;IAC9C;IACA,OAAO,IAAI,CAACmB,UAAU,CAACtD,IAAI,EAAE,wBAAwB,CAAC;EACxD;EAEAsK,4BAA4BA,CAC1BtK,IAA0C,EACZ;IAC9BA,IAAI,CAACqE,MAAM,GAAG,EAAE;IAChBrE,IAAI,CAACsE,IAAI,GAAG,IAAI;IAChBtE,IAAI,CAACiE,cAAc,GAAG,IAAI;IAC1BjE,IAAI,CAACuE,IAAI,GAAG,IAAI;IAEhB,IAAI,IAAI,CAACd,KAAK,GAAM,CAAC,EAAE;MACrBzD,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;IAChE;IAEA,IAAI,CAAC1B,MAAM,GAAU,CAAC;IACtB,IAAI,IAAI,CAACiB,KAAK,GAAS,CAAC,EAAE;MACxBzD,IAAI,CAACuE,IAAI,GAAG,IAAI,CAACiG,0BAA0B,CAAa,IAAI,CAAC;MAE7DxK,IAAI,CAACuE,IAAI,CAACQ,IAAI,GAAG,IAAI;MACrB,IAAI,CAAC,IAAI,CAACtB,KAAK,GAAU,CAAC,EAAE;QAC1B,IAAI,CAACjB,MAAM,GAAS,CAAC;MACvB;IACF;IACA,OAAO,CAAC,IAAI,CAACiB,KAAK,GAAU,CAAC,IAAI,CAAC,IAAI,CAACA,KAAK,GAAY,CAAC,EAAE;MACzDzD,IAAI,CAACqE,MAAM,CAACxD,IAAI,CAAC,IAAI,CAAC2J,0BAA0B,CAAC,KAAK,CAAC,CAAC;MACxD,IAAI,CAAC,IAAI,CAAC/G,KAAK,GAAU,CAAC,EAAE;QAC1B,IAAI,CAACjB,MAAM,GAAS,CAAC;MACvB;IACF;IAEA,IAAI,IAAI,CAACY,GAAG,GAAY,CAAC,EAAE;MACzBpD,IAAI,CAACsE,IAAI,GAAG,IAAI,CAACkG,0BAA0B,CAAC,KAAK,CAAC;IACpD;IACA,IAAI,CAAChI,MAAM,GAAU,CAAC;IACtBxC,IAAI,CAACyE,UAAU,GAAG,IAAI,CAACtC,wBAAwB,CAAC,CAAC;IAEjD,OAAO,IAAI,CAACmB,UAAU,CAACtD,IAAI,EAAE,wBAAwB,CAAC;EACxD;EAEAyK,+BAA+BA,CAC7BzK,IAA0C,EAC1C+J,QAAiB,EACa;IAC9B,MAAMW,SAAS,GAAG,IAAI,CAAC/H,SAAS,CAAC,CAAC;IAClC3C,IAAI,CAACgK,MAAM,GAAGD,QAAQ;IACtB/J,IAAI,CAACiC,KAAK,GAAG,IAAI,CAACqI,4BAA4B,CAACI,SAAS,CAAC;IACzD,OAAO,IAAI,CAACpH,UAAU,CAACtD,IAAI,EAAE,wBAAwB,CAAC;EACxD;EAEA6H,mBAAmBA,CAAC;IAClBC,WAAW;IACXC,UAAU;IACVC,WAAW;IACXC,UAAU;IACVC;EAOF,CAAC,EAA8B;IAC7B,MAAM7F,SAAS,GAAG,IAAI,CAACC,KAAK,CAACC,MAAM;IACnC,IAAI,CAACD,KAAK,CAACC,MAAM,GAAG,IAAI;IAExB,MAAMoI,SAAS,GAAG,IAAI,CAAChI,SAAS,CAAC,CAAC;IAElCgI,SAAS,CAACC,cAAc,GAAG,EAAE;IAC7BD,SAAS,CAACE,UAAU,GAAG,EAAE;IACzBF,SAAS,CAACG,QAAQ,GAAG,EAAE;IACvBH,SAAS,CAACI,aAAa,GAAG,EAAE;IAE5B,IAAIC,QAAQ;IACZ,IAAIC,KAAK;IACT,IAAIC,OAAO,GAAG,KAAK;IACnB,IAAInD,UAAU,IAAI,IAAI,CAACtE,KAAK,EAAa,CAAC,EAAE;MAC1C,IAAI,CAACjB,MAAM,EAAa,CAAC;MACzBwI,QAAQ,IAAe;MACvBC,KAAK,GAAG,IAAI;IACd,CAAC,MAAM;MACL,IAAI,CAACzI,MAAM,EAAU,CAAC;MACtBwI,QAAQ,IAAY;MACpBC,KAAK,GAAG,KAAK;IACf;IAEAN,SAAS,CAACM,KAAK,GAAGA,KAAK;IAEvB,OAAO,CAAC,IAAI,CAACxH,KAAK,CAACuH,QAAQ,CAAC,EAAE;MAC5B,IAAIjB,QAAQ,GAAG,KAAK;MACpB,IAAIoB,aAA0C,GAAG,IAAI;MACrD,IAAIC,eAA4C,GAAG,IAAI;MACvD,MAAMpL,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;MAE7B,IAAIsF,UAAU,IAAI,IAAI,CAACvC,YAAY,IAAU,CAAC,EAAE;QAC9C,MAAMuE,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC,CAAC;QAElC,IAAIA,SAAS,CAACpK,IAAI,OAAa,IAAIoK,SAAS,CAACpK,IAAI,OAAgB,EAAE;UACjE,IAAI,CAACiD,IAAI,CAAC,CAAC;UACXqI,aAAa,GAAG,IAAI,CAAC7I,KAAK,CAACO,QAAQ;UACnCiF,WAAW,GAAG,KAAK;QACrB;MACF;MAEA,IAAIA,WAAW,IAAI,IAAI,CAACpC,YAAY,IAAW,CAAC,EAAE;QAChD,MAAMuE,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC,CAAC;QAGlC,IAAIA,SAAS,CAACpK,IAAI,OAAa,IAAIoK,SAAS,CAACpK,IAAI,OAAgB,EAAE;UACjE,IAAI,CAACiD,IAAI,CAAC,CAAC;UACXiH,QAAQ,GAAG,IAAI;QACjB;MACF;MAEA,MAAMb,QAAQ,GAAG,IAAI,CAACC,iBAAiB,CAAC,CAAC;MAEzC,IAAI,IAAI,CAAC/F,GAAG,EAAY,CAAC,EAAE;QACzB,IAAI+H,aAAa,IAAI,IAAI,EAAE;UACzB,IAAI,CAACpF,UAAU,CAACoF,aAAa,CAAC;QAChC;QACA,IAAI,IAAI,CAAC/H,GAAG,EAAY,CAAC,EAAE;UACzB,IAAI8F,QAAQ,EAAE;YACZ,IAAI,CAACnD,UAAU,CAACmD,QAAQ,CAACjE,GAAG,CAACC,KAAK,CAAC;UACrC;UACAyF,SAAS,CAACI,aAAa,CAAClK,IAAI,CAC1B,IAAI,CAACsJ,+BAA+B,CAACnK,IAAI,EAAE+J,QAAQ,CACrD,CAAC;QACH,CAAC,MAAM;UACLY,SAAS,CAACG,QAAQ,CAACjK,IAAI,CACrB,IAAI,CAACiJ,0BAA0B,CAAC9J,IAAI,EAAE+J,QAAQ,EAAEb,QAAQ,CAC1D,CAAC;QACH;MACF,CAAC,MAAM,IAAI,IAAI,CAACzF,KAAK,GAAU,CAAC,IAAI,IAAI,CAACA,KAAK,GAAM,CAAC,EAAE;QACrD,IAAI0H,aAAa,IAAI,IAAI,EAAE;UACzB,IAAI,CAACpF,UAAU,CAACoF,aAAa,CAAC;QAChC;QACA,IAAIjC,QAAQ,EAAE;UACZ,IAAI,CAACnD,UAAU,CAACmD,QAAQ,CAACjE,GAAG,CAACC,KAAK,CAAC;QACrC;QACAyF,SAAS,CAACC,cAAc,CAAC/J,IAAI,CAC3B,IAAI,CAAC4J,+BAA+B,CAACzK,IAAI,EAAE+J,QAAQ,CACrD,CAAC;MACH,CAAC,MAAM;QACL,IAAItD,IAAI,GAAG,MAAM;QAEjB,IAAI,IAAI,CAACf,YAAY,GAAQ,CAAC,IAAI,IAAI,CAACA,YAAY,IAAQ,CAAC,EAAE;UAC5D,MAAMuE,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC,CAAC;UAClC,IAAI,IAAAoB,iCAA0B,EAACpB,SAAS,CAACpK,IAAI,CAAC,EAAE;YAC9C4G,IAAI,GAAG,IAAI,CAACnE,KAAK,CAACL,KAAK;YACvB,IAAI,CAACa,IAAI,CAAC,CAAC;UACb;QACF;QAEA,MAAMwI,aAAa,GAAG,IAAI,CAACC,2BAA2B,CACpDvL,IAAI,EACJ+J,QAAQ,EACRoB,aAAa,EACbjC,QAAQ,EACRzC,IAAI,EACJuB,WAAW,EACXE,YAAY,WAAZA,YAAY,GAAI,CAAC+C,KACnB,CAAC;QAED,IAAIK,aAAa,KAAK,IAAI,EAAE;UAC1BJ,OAAO,GAAG,IAAI;UACdE,eAAe,GAAG,IAAI,CAAC9I,KAAK,CAACkD,eAAe;QAC9C,CAAC,MAAM;UACLmF,SAAS,CAACE,UAAU,CAAChK,IAAI,CAACyK,aAAa,CAAC;QAC1C;MACF;MAEA,IAAI,CAACE,uBAAuB,CAAC,CAAC;MAE9B,IACEJ,eAAe,IACf,CAAC,IAAI,CAAC3H,KAAK,EAAU,CAAC,IACtB,CAAC,IAAI,CAACA,KAAK,EAAa,CAAC,EACzB;QACA,IAAI,CAACP,KAAK,CAACpH,UAAU,CAACiD,iCAAiC,EAAE;UACvDoE,EAAE,EAAEiI;QACN,CAAC,CAAC;MACJ;IACF;IAEA,IAAI,CAAC5I,MAAM,CAACwI,QAAQ,CAAC;IAOrB,IAAIhD,WAAW,EAAE;MACf2C,SAAS,CAACO,OAAO,GAAGA,OAAO;IAC7B;IAEA,MAAMO,GAAG,GAAG,IAAI,CAACnI,UAAU,CAACqH,SAAS,EAAE,sBAAsB,CAAC;IAE9D,IAAI,CAACrI,KAAK,CAACC,MAAM,GAAGF,SAAS;IAE7B,OAAOoJ,GAAG;EACZ;EAEAF,2BAA2BA,CACzBvL,IAAuE,EACvE+J,QAAiB,EACjBoB,aAA0C,EAC1CjC,QAA2C,EAC3CzC,IAAY,EACZuB,WAAoB,EACpBE,YAAqB,EAC6C;IAClE,IAAI,IAAI,CAAC9E,GAAG,GAAY,CAAC,EAAE;MACzB,MAAMsI,cAAc,GAClB,IAAI,CAACjI,KAAK,GAAS,CAAC,IACpB,IAAI,CAACA,KAAK,GAAQ,CAAC,IACnB,IAAI,CAACA,KAAK,EAAU,CAAC,IACrB,IAAI,CAACA,KAAK,EAAa,CAAC;MAE1B,IAAIiI,cAAc,EAAE;QAClB,IAAI,CAAC1D,WAAW,EAAE;UAChB,IAAI,CAAC9E,KAAK,CAACpH,UAAU,CAAC6B,sBAAsB,EAAE;YAC5CwF,EAAE,EAAE,IAAI,CAACb,KAAK,CAACkD;UACjB,CAAC,CAAC;QACJ,CAAC,MAAM,IAAI,CAAC0C,YAAY,EAAE;UACxB,IAAI,CAAChF,KAAK,CAACpH,UAAU,CAAC4B,kBAAkB,EAAE;YACxCyF,EAAE,EAAE,IAAI,CAACb,KAAK,CAACkD;UACjB,CAAC,CAAC;QACJ;QACA,IAAI0D,QAAQ,EAAE;UACZ,IAAI,CAAChG,KAAK,CAACpH,UAAU,CAAC8B,eAAe,EAAE;YAAEuF,EAAE,EAAE+F;UAAS,CAAC,CAAC;QAC1D;QAEA,OAAO,IAAI;MACb;MAEA,IAAI,CAAClB,WAAW,EAAE;QAChB,IAAI,CAAC9E,KAAK,CAACpH,UAAU,CAACqD,oBAAoB,EAAE;UAC1CgE,EAAE,EAAE,IAAI,CAACb,KAAK,CAACkD;QACjB,CAAC,CAAC;MACJ;MACA,IAAI2F,aAAa,IAAI,IAAI,EAAE;QACzB,IAAI,CAACpF,UAAU,CAACoF,aAAa,CAAC;MAChC;MACA,IAAIjC,QAAQ,EAAE;QACZ,IAAI,CAAChG,KAAK,CAACpH,UAAU,CAACyC,cAAc,EAAE;UAAE4E,EAAE,EAAE+F;QAAS,CAAC,CAAC;MACzD;MAEAlJ,IAAI,CAAC2L,QAAQ,GAAG,IAAI,CAAClJ,aAAa,CAAC,CAAC;MACpC,OAAO,IAAI,CAACa,UAAU,CAACtD,IAAI,EAAE,0BAA0B,CAAC;IAC1D,CAAC,MAAM;MACLA,IAAI,CAACkK,GAAG,GAAG,IAAI,CAACL,0BAA0B,CAAC,CAAC;MAC5C7J,IAAI,CAACgK,MAAM,GAAGD,QAAQ;MACtB/J,IAAI,CAAC4L,KAAK,GAAGT,aAAa,IAAI,IAAI;MAClCnL,IAAI,CAACyG,IAAI,GAAGA,IAAI;MAEhB,IAAI4D,QAAQ,GAAG,KAAK;MACpB,IAAI,IAAI,CAAC5G,KAAK,GAAM,CAAC,IAAI,IAAI,CAACA,KAAK,GAAU,CAAC,EAAE;QAE9CzD,IAAI,CAACoK,MAAM,GAAG,IAAI;QAElB,IAAIe,aAAa,IAAI,IAAI,EAAE;UACzB,IAAI,CAACpF,UAAU,CAACoF,aAAa,CAAC;QAChC;QACA,IAAIjC,QAAQ,EAAE;UACZ,IAAI,CAACnD,UAAU,CAACmD,QAAQ,CAACjE,GAAG,CAACC,KAAK,CAAC;QACrC;QAEAlF,IAAI,CAACiC,KAAK,GAAG,IAAI,CAACqI,4BAA4B,CAC5C,IAAI,CAACC,WAAW,CAACvK,IAAI,CAACiF,GAAG,CAACC,KAAK,CACjC,CAAC;QACD,IAAIuB,IAAI,KAAK,KAAK,IAAIA,IAAI,KAAK,KAAK,EAAE;UACpC,IAAI,CAACoF,2BAA2B,CAAC7L,IAAI,CAAC;QACxC;QAEA,IACE,CAACgI,WAAW,IACZhI,IAAI,CAACkK,GAAG,CAACnF,IAAI,KAAK,aAAa,IAC/B/E,IAAI,CAACiC,KAAK,CAACsC,IAAI,EACf;UACA,IAAI,CAACrB,KAAK,CAACpH,UAAU,CAAC2C,4BAA4B,EAAE;YAClD0E,EAAE,EAAEnD,IAAI,CAACiC,KAAK,CAACsC;UACjB,CAAC,CAAC;QACJ;MACF,CAAC,MAAM;QACL,IAAIkC,IAAI,KAAK,MAAM,EAAE,IAAI,CAACV,UAAU,CAAC,CAAC;QAEtC/F,IAAI,CAACoK,MAAM,GAAG,KAAK;QAEnB,IAAI,IAAI,CAAChH,GAAG,GAAY,CAAC,EAAE;UACzBiH,QAAQ,GAAG,IAAI;QACjB;QACArK,IAAI,CAACiC,KAAK,GAAG,IAAI,CAACE,wBAAwB,CAAC,CAAC;QAC5CnC,IAAI,CAACkJ,QAAQ,GAAGA,QAAQ;MAC1B;MAEAlJ,IAAI,CAACqK,QAAQ,GAAGA,QAAQ;MAExB,OAAO,IAAI,CAAC/G,UAAU,CAACtD,IAAI,EAAE,oBAAoB,CAAC;IACpD;EACF;EAIA6L,2BAA2BA,CACzBC,QAEC,EACK;IACN,MAAMC,UAAU,GAAGD,QAAQ,CAACrF,IAAI,KAAK,KAAK,GAAG,CAAC,GAAG,CAAC;IAClD,MAAM7F,MAAM,GACVkL,QAAQ,CAAC7J,KAAK,CAACoC,MAAM,CAACzD,MAAM,IAAIkL,QAAQ,CAAC7J,KAAK,CAACqC,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;IAE9D,IAAIwH,QAAQ,CAAC7J,KAAK,CAACsC,IAAI,EAAE;MACvB,IAAI,CAACrB,KAAK,CACR4I,QAAQ,CAACrF,IAAI,KAAK,KAAK,GACnB3K,UAAU,CAACyB,yBAAyB,GACpCzB,UAAU,CAACwC,yBAAyB,EACxC;QAAE6E,EAAE,EAAE2I,QAAQ,CAAC7J,KAAK,CAACsC;MAAK,CAC5B,CAAC;IACH;IAEA,IAAI3D,MAAM,KAAKmL,UAAU,EAAE;MACzB,IAAI,CAAC7I,KAAK,CACR4I,QAAQ,CAACrF,IAAI,KAAK,KAAK,GACnBuF,kBAAM,CAACC,cAAc,GACrBD,kBAAM,CAACE,cAAc,EACzB;QAAE/I,EAAE,EAAE2I;MAAS,CACjB,CAAC;IACH;IAEA,IAAIA,QAAQ,CAACrF,IAAI,KAAK,KAAK,IAAIqF,QAAQ,CAAC7J,KAAK,CAACqC,IAAI,EAAE;MAClD,IAAI,CAACpB,KAAK,CAAC8I,kBAAM,CAACG,sBAAsB,EAAE;QAAEhJ,EAAE,EAAE2I;MAAS,CAAC,CAAC;IAC7D;EACF;EAEAN,uBAAuBA,CAAA,EAAS;IAC9B,IACE,CAAC,IAAI,CAACpI,GAAG,GAAQ,CAAC,IAClB,CAAC,IAAI,CAACA,GAAG,GAAS,CAAC,IACnB,CAAC,IAAI,CAACK,KAAK,EAAU,CAAC,IACtB,CAAC,IAAI,CAACA,KAAK,EAAa,CAAC,EACzB;MACA,IAAI,CAACsC,UAAU,CAAC,CAAC;IACnB;EACF;EAEAoC,gCAAgCA,CAC9BtF,QAAmB,EACnBgB,EAAiB,EACc;IAAA,IAAAuI,SAAA;IAC/B,CAAAA,SAAA,GAAAvJ,QAAQ,YAAAuJ,SAAA,GAARvJ,QAAQ,GAAK,IAAI,CAACP,KAAK,CAACO,QAAQ;IAChC,IAAI7C,IAAkD,GACpD6D,EAAE,IAAI,IAAI,CAACyD,6BAA6B,CAAC,IAAI,CAAC;IAEhD,OAAO,IAAI,CAAClE,GAAG,GAAO,CAAC,EAAE;MACvB,MAAMiJ,KAAK,GAAG,IAAI,CAAC9B,WAAW,CAAgC1H,QAAQ,CAAC;MACvEwJ,KAAK,CAACC,aAAa,GAAGtM,IAAI;MAC1BqM,KAAK,CAACxI,EAAE,GAAG,IAAI,CAACyD,6BAA6B,CAAC,IAAI,CAAC;MACnDtH,IAAI,GAAG,IAAI,CAACsD,UAAU,CAAC+I,KAAK,EAAE,yBAAyB,CAAC;IAC1D;IAEA,OAAOrM,IAAI;EACb;EAEAuM,oBAAoBA,CAClB1J,QAAkB,EAClBgB,EAAgB,EACa;IAC7B,MAAM7D,IAAI,GAAG,IAAI,CAACuK,WAAW,CAAC1H,QAAQ,CAAC;IAEvC7C,IAAI,CAACiE,cAAc,GAAG,IAAI;IAC1BjE,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACsE,gCAAgC,CAACtF,QAAQ,EAAEgB,EAAE,CAAC;IAE7D,IAAI,IAAI,CAACJ,KAAK,GAAM,CAAC,EAAE;MACrBzD,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACmE,mCAAmC,CAAC,CAAC;IAClE;IAEA,OAAO,IAAI,CAAC9E,UAAU,CAACtD,IAAI,EAAE,uBAAuB,CAAC;EACvD;EAEAwM,mBAAmBA,CAAA,EAA+B;IAChD,MAAMxM,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;IAC7B,IAAI,CAACH,MAAM,GAAW,CAAC;IACvBxC,IAAI,CAAC2L,QAAQ,GAAG,IAAI,CAACc,oBAAoB,CAAC,CAAC;IAC3C,OAAO,IAAI,CAACnJ,UAAU,CAACtD,IAAI,EAAE,sBAAsB,CAAC;EACtD;EAEA0M,kBAAkBA,CAAA,EAA8B;IAC9C,MAAM1M,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;IAC7B3C,IAAI,CAAC2M,KAAK,GAAG,EAAE;IACf,IAAI,CAACnK,MAAM,EAAY,CAAC;IAExB,OAAO,IAAI,CAACF,KAAK,CAACsK,GAAG,GAAG,IAAI,CAAChM,MAAM,IAAI,CAAC,IAAI,CAAC6C,KAAK,EAAY,CAAC,EAAE;MAC/DzD,IAAI,CAAC2M,KAAK,CAAC9L,IAAI,CAAC,IAAI,CAAC4B,aAAa,CAAC,CAAC,CAAC;MACrC,IAAI,IAAI,CAACgB,KAAK,EAAY,CAAC,EAAE;MAC7B,IAAI,CAACjB,MAAM,GAAS,CAAC;IACvB;IACA,IAAI,CAACA,MAAM,EAAY,CAAC;IACxB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,qBAAqB,CAAC;EACrD;EAEAwK,0BAA0BA,CAACqC,KAAc,EAA2B;IAClE,IAAI9H,IAAI,GAAG,IAAI;IACf,IAAIsF,QAAQ,GAAG,KAAK;IACpB,IAAI3F,cAAc,GAAG,IAAI;IACzB,MAAM1E,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAA0B,CAAC;IACtD,MAAMmK,EAAE,GAAG,IAAI,CAAC7C,SAAS,CAAC,CAAC;IAC3B,MAAM8C,MAAM,GAAG,IAAI,CAACzK,KAAK,CAACzC,IAAI,OAAa;IAE3C,IAAIiN,EAAE,CAACjN,IAAI,OAAa,IAAIiN,EAAE,CAACjN,IAAI,OAAgB,EAAE;MACnD,IAAIkN,MAAM,IAAI,CAACF,KAAK,EAAE;QACpB,IAAI,CAAC3J,KAAK,CAACpH,UAAU,CAAC6C,oBAAoB,EAAE;UAAEwE,EAAE,EAAEnD;QAAK,CAAC,CAAC;MAC3D;MACA+E,IAAI,GAAG,IAAI,CAACjB,eAAe,CAACiJ,MAAM,CAAC;MACnC,IAAI,IAAI,CAAC3J,GAAG,GAAY,CAAC,EAAE;QACzBiH,QAAQ,GAAG,IAAI;QACf,IAAI0C,MAAM,EAAE;UACV,IAAI,CAAC7J,KAAK,CAACpH,UAAU,CAAC4C,yBAAyB,EAAE;YAAEyE,EAAE,EAAEnD;UAAK,CAAC,CAAC;QAChE;MACF;MACA0E,cAAc,GAAG,IAAI,CAACvC,wBAAwB,CAAC,CAAC;IAClD,CAAC,MAAM;MACLuC,cAAc,GAAG,IAAI,CAACjC,aAAa,CAAC,CAAC;IACvC;IACAzC,IAAI,CAAC+E,IAAI,GAAGA,IAAI;IAChB/E,IAAI,CAACqK,QAAQ,GAAGA,QAAQ;IACxBrK,IAAI,CAAC0E,cAAc,GAAGA,cAAc;IACpC,OAAO,IAAI,CAACpB,UAAU,CAACtD,IAAI,EAAE,mBAAmB,CAAC;EACnD;EAEAgN,kCAAkCA,CAChCnN,IAAgB,EACS;IACzB,MAAMG,IAAI,GAAG,IAAI,CAACuK,WAAW,CAAC1K,IAAI,CAACoF,GAAG,CAACC,KAAK,CAAC;IAC7ClF,IAAI,CAAC+E,IAAI,GAAG,IAAI;IAChB/E,IAAI,CAACqK,QAAQ,GAAG,KAAK;IACrBrK,IAAI,CAAC0E,cAAc,GAAG7E,IAAI;IAC1B,OAAO,IAAI,CAACyD,UAAU,CAACtD,IAAI,EAAE,mBAAmB,CAAC;EACnD;EAEAoE,2BAA2BA,CAACC,MAAiC,GAAG,EAAE,EAIhE;IACA,IAAIC,IAAgD,GAAG,IAAI;IAC3D,IAAIE,KAAiD,GAAG,IAAI;IAC5D,IAAI,IAAI,CAACf,KAAK,GAAS,CAAC,EAAE;MACxBe,KAAK,GAAG,IAAI,CAACgG,0BAA0B,CAAa,IAAI,CAAC;MAEzDhG,KAAK,CAACO,IAAI,GAAG,IAAI;MACjB,IAAI,CAAC,IAAI,CAACtB,KAAK,GAAU,CAAC,EAAE;QAC1B,IAAI,CAACjB,MAAM,GAAS,CAAC;MACvB;IACF;IACA,OAAO,CAAC,IAAI,CAACiB,KAAK,GAAU,CAAC,IAAI,CAAC,IAAI,CAACA,KAAK,GAAY,CAAC,EAAE;MACzDY,MAAM,CAACxD,IAAI,CAAC,IAAI,CAAC2J,0BAA0B,CAAC,KAAK,CAAC,CAAC;MACnD,IAAI,CAAC,IAAI,CAAC/G,KAAK,GAAU,CAAC,EAAE;QAC1B,IAAI,CAACjB,MAAM,GAAS,CAAC;MACvB;IACF;IACA,IAAI,IAAI,CAACY,GAAG,GAAY,CAAC,EAAE;MACzBkB,IAAI,GAAG,IAAI,CAACkG,0BAA0B,CAAC,KAAK,CAAC;IAC/C;IACA,OAAO;MAAEnG,MAAM;MAAEC,IAAI;MAAEE;IAAM,CAAC;EAChC;EAEAyI,yBAAyBA,CACvBpK,QAAkB,EAClB7C,IAAkC,EAClC6D,EAAgB,EACM;IACtB,QAAQA,EAAE,CAACkB,IAAI;MACb,KAAK,KAAK;QACR,OAAO,IAAI,CAACzB,UAAU,CAACtD,IAAI,EAAE,mBAAmB,CAAC;MAEnD,KAAK,MAAM;MACX,KAAK,SAAS;QACZ,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,uBAAuB,CAAC;MAEvD,KAAK,OAAO;QACV,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,qBAAqB,CAAC;MAErD,KAAK,OAAO;QACV,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,qBAAqB,CAAC;MAErD,KAAK,QAAQ;QACX,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,sBAAsB,CAAC;MAEtD,KAAK,QAAQ;QACX,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,sBAAsB,CAAC;MAEtD,KAAK,QAAQ;QACX,OAAO,IAAI,CAACsD,UAAU,CAACtD,IAAI,EAAE,sBAAsB,CAAC;MAEtD;QACE,IAAI,CAACsI,kBAAkB,CAACzE,EAAE,CAACkB,IAAI,CAAC;QAChC,OAAO,IAAI,CAACwH,oBAAoB,CAAC1J,QAAQ,EAAEgB,EAAE,CAAC;IAClD;EACF;EAKA4I,oBAAoBA,CAAA,EAAyB;IAC3C,MAAM5J,QAAQ,GAAG,IAAI,CAACP,KAAK,CAACO,QAAQ;IACpC,MAAM7C,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;IAC7B,IAAIwB,GAAG;IACP,IAAItE,IAAI;IACR,IAAIqN,aAAa,GAAG,KAAK;IACzB,MAAM1D,qBAAqB,GAAG,IAAI,CAAClH,KAAK,CAACmH,kBAAkB;IAE3D,QAAQ,IAAI,CAACnH,KAAK,CAACzC,IAAI;MACrB;QACE,OAAO,IAAI,CAACgI,mBAAmB,CAAC;UAC9BC,WAAW,EAAE,KAAK;UAClBC,UAAU,EAAE,KAAK;UACjBC,WAAW,EAAE,IAAI;UACjBC,UAAU,EAAE,KAAK;UACjBC,YAAY,EAAE;QAChB,CAAC,CAAC;MAEJ;QACE,OAAO,IAAI,CAACL,mBAAmB,CAAC;UAC9BC,WAAW,EAAE,KAAK;UAClBC,UAAU,EAAE,IAAI;UAChBC,WAAW,EAAE,IAAI;UACjBC,UAAU,EAAE,KAAK;UACjBC,YAAY,EAAE;QAChB,CAAC,CAAC;MAEJ;QACE,IAAI,CAAC5F,KAAK,CAACmH,kBAAkB,GAAG,KAAK;QACrC5J,IAAI,GAAG,IAAI,CAAC6M,kBAAkB,CAAC,CAAC;QAChC,IAAI,CAACpK,KAAK,CAACmH,kBAAkB,GAAGD,qBAAqB;QACrD,OAAO3J,IAAI;MAEb;QACEG,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;QAC9D,IAAI,CAAC1B,MAAM,GAAU,CAAC;QACtB2B,GAAG,GAAG,IAAI,CAACC,2BAA2B,CAAC,CAAC;QACxCpE,IAAI,CAACqE,MAAM,GAAGF,GAAG,CAACE,MAAM;QACxBrE,IAAI,CAACsE,IAAI,GAAGH,GAAG,CAACG,IAAI;QACpBtE,IAAI,CAACuE,IAAI,GAAGJ,GAAG,CAACK,KAAK;QACrB,IAAI,CAAChC,MAAM,GAAU,CAAC;QAEtB,IAAI,CAACA,MAAM,GAAS,CAAC;QAErBxC,IAAI,CAACyE,UAAU,GAAG,IAAI,CAAChC,aAAa,CAAC,CAAC;QAEtC,OAAO,IAAI,CAACa,UAAU,CAACtD,IAAI,EAAE,wBAAwB,CAAC;MAExD;QACE,IAAI,CAAC8C,IAAI,CAAC,CAAC;QAGX,IAAI,CAAC,IAAI,CAACW,KAAK,GAAU,CAAC,IAAI,CAAC,IAAI,CAACA,KAAK,GAAY,CAAC,EAAE;UACtD,IAAI,IAAA0J,wBAAiB,EAAC,IAAI,CAAC7K,KAAK,CAACzC,IAAI,CAAC,IAAI,IAAI,CAAC4D,KAAK,GAAS,CAAC,EAAE;YAC9D,MAAM2J,KAAK,GAAG,IAAI,CAACnD,SAAS,CAAC,CAAC,CAACpK,IAAI;YACnCqN,aAAa,GAAGE,KAAK,OAAgB,IAAIA,KAAK,OAAa;UAC7D,CAAC,MAAM;YACLF,aAAa,GAAG,IAAI;UACtB;QACF;QAEA,IAAIA,aAAa,EAAE;UACjB,IAAI,CAAC5K,KAAK,CAACmH,kBAAkB,GAAG,KAAK;UACrC5J,IAAI,GAAG,IAAI,CAAC4C,aAAa,CAAC,CAAC;UAC3B,IAAI,CAACH,KAAK,CAACmH,kBAAkB,GAAGD,qBAAqB;UAGrD,IACE,IAAI,CAAClH,KAAK,CAACmH,kBAAkB,IAC7B,EACE,IAAI,CAAChG,KAAK,GAAS,CAAC,IACnB,IAAI,CAACA,KAAK,GAAU,CAAC,IAAI,IAAI,CAACwG,SAAS,CAAC,CAAC,CAACpK,IAAI,OAAc,CAC9D,EACD;YACA,IAAI,CAAC2C,MAAM,GAAU,CAAC;YACtB,OAAO3C,IAAI;UACb,CAAC,MAAM;YAEL,IAAI,CAACuD,GAAG,GAAS,CAAC;UACpB;QACF;QAEA,IAAIvD,IAAI,EAAE;UACRsE,GAAG,GAAG,IAAI,CAACC,2BAA2B,CAAC,CACrC,IAAI,CAAC4I,kCAAkC,CAACnN,IAAI,CAAC,CAC9C,CAAC;QACJ,CAAC,MAAM;UACLsE,GAAG,GAAG,IAAI,CAACC,2BAA2B,CAAC,CAAC;QAC1C;QAEApE,IAAI,CAACqE,MAAM,GAAGF,GAAG,CAACE,MAAM;QACxBrE,IAAI,CAACsE,IAAI,GAAGH,GAAG,CAACG,IAAI;QACpBtE,IAAI,CAACuE,IAAI,GAAGJ,GAAG,CAACK,KAAK;QAErB,IAAI,CAAChC,MAAM,GAAU,CAAC;QAEtB,IAAI,CAACA,MAAM,GAAS,CAAC;QAErBxC,IAAI,CAACyE,UAAU,GAAG,IAAI,CAAChC,aAAa,CAAC,CAAC;QAEtCzC,IAAI,CAACiE,cAAc,GAAG,IAAI;QAE1B,OAAO,IAAI,CAACX,UAAU,CAACtD,IAAI,EAAE,wBAAwB,CAAC;MAExD;QACE,OAAO,IAAI,CAACqN,YAAY,CACtB,IAAI,CAAC/K,KAAK,CAACL,KAAK,EAChB,6BACF,CAAC;MAEH;MACA;QACEjC,IAAI,CAACiC,KAAK,GAAG,IAAI,CAACwB,KAAK,GAAS,CAAC;QACjC,IAAI,CAACX,IAAI,CAAC,CAAC;QACX,OAAO,IAAI,CAACQ,UAAU,CACpBtD,IAAI,EACJ,8BACF,CAAC;MAEH;QACE,IAAI,IAAI,CAACsC,KAAK,CAACL,KAAK,KAAK,GAAG,EAAE;UAC5B,IAAI,CAACa,IAAI,CAAC,CAAC;UACX,IAAI,IAAI,CAACW,KAAK,IAAO,CAAC,EAAE;YACtB,OAAO,IAAI,CAAC6J,kBAAkB,CAC5B,CAAC,IAAI,CAAChL,KAAK,CAACL,KAAK,EACjB,6BAA6B,EAC7BjC,IACF,CAAC;UACH;UAEA,IAAI,IAAI,CAACyD,KAAK,IAAU,CAAC,EAAE;YACzB,OAAO,IAAI,CAAC6J,kBAAkB,CAC5B,CAAC,IAAI,CAAChL,KAAK,CAACL,KAAK,EACjB,6BAA6B,EAC7BjC,IACF,CAAC;UACH;UAEA,MAAM,IAAI,CAACkD,KAAK,CAACpH,UAAU,CAACsD,4BAA4B,EAAE;YACxD+D,EAAE,EAAE,IAAI,CAACb,KAAK,CAACO;UACjB,CAAC,CAAC;QACJ;QACA,IAAI,CAACkD,UAAU,CAAC,CAAC;QACjB;MACF;QACE,OAAO,IAAI,CAACsH,YAAY,CACtB,IAAI,CAAC/K,KAAK,CAACL,KAAK,EAChB,6BACF,CAAC;MAEH;QACE,OAAO,IAAI,CAACoL,YAAY,CACtB,IAAI,CAAC/K,KAAK,CAACL,KAAK,EAChB,6BACF,CAAC;MAEH;QACE,IAAI,CAACa,IAAI,CAAC,CAAC;QACX,OAAO,IAAI,CAACQ,UAAU,CAACtD,IAAI,EAAE,oBAAoB,CAAC;MAEpD;QACE,IAAI,CAAC8C,IAAI,CAAC,CAAC;QACX,OAAO,IAAI,CAACQ,UAAU,CAACtD,IAAI,EAAE,2BAA2B,CAAC;MAE3D;QACE,IAAI,CAAC8C,IAAI,CAAC,CAAC;QACX,OAAO,IAAI,CAACQ,UAAU,CAACtD,IAAI,EAAE,oBAAoB,CAAC;MAEpD;QACE,IAAI,CAAC8C,IAAI,CAAC,CAAC;QACX,OAAO,IAAI,CAACQ,UAAU,CAACtD,IAAI,EAAE,sBAAsB,CAAC;MAEtD;QACE,OAAO,IAAI,CAACwM,mBAAmB,CAAC,CAAC;MAEnC;QACE,IAAI,IAAAe,qBAAc,EAAC,IAAI,CAACjL,KAAK,CAACzC,IAAI,CAAC,EAAE;UACnC,MAAMiH,KAAK,GAAG,IAAA0G,qBAAc,EAAC,IAAI,CAAClL,KAAK,CAACzC,IAAI,CAAC;UAC7C,IAAI,CAACiD,IAAI,CAAC,CAAC;UACX,OAAO,KAAK,CAAC2K,gBAAgB,CAACzN,IAAI,EAA0B8G,KAAK,CAAC;QACpE,CAAC,MAAM,IAAI,IAAAqG,wBAAiB,EAAC,IAAI,CAAC7K,KAAK,CAACzC,IAAI,CAAC,EAAE;UAC7C,IAAI,IAAI,CAAC6F,YAAY,IAAc,CAAC,EAAE;YACpC,OAAO,IAAI,CAACkE,sBAAsB,CAAC,CAAC;UACtC;UAEA,OAAO,IAAI,CAACqD,yBAAyB,CACnCpK,QAAQ,EACR7C,IAAI,EACJ,IAAI,CAAC8D,eAAe,CAAC,CACvB,CAAC;QACH;IACJ;IAEA,IAAI,CAACiC,UAAU,CAAC,CAAC;EACnB;EAEA2H,oBAAoBA,CAAA,EAAyB;IAC3C,MAAM7K,QAAQ,GAAG,IAAI,CAACP,KAAK,CAACO,QAAQ;IACpC,IAAIhD,IAAI,GAAG,IAAI,CAAC4M,oBAAoB,CAAC,CAAC;IACtC,IAAIkB,yBAAyB,GAAG,KAAK;IACrC,OACE,CAAC,IAAI,CAAClK,KAAK,EAAY,CAAC,IAAI,IAAI,CAACA,KAAK,GAAe,CAAC,KACtD,CAAC,IAAI,CAACmK,kBAAkB,CAAC,CAAC,EAC1B;MACA,MAAM5N,IAAI,GAAG,IAAI,CAACuK,WAAW,CAAC1H,QAAQ,CAAC;MACvC,MAAMwH,QAAQ,GAAG,IAAI,CAACjH,GAAG,GAAe,CAAC;MACzCuK,yBAAyB,GAAGA,yBAAyB,IAAItD,QAAQ;MACjE,IAAI,CAAC7H,MAAM,EAAY,CAAC;MACxB,IAAI,CAAC6H,QAAQ,IAAI,IAAI,CAAC5G,KAAK,EAAY,CAAC,EAAE;QACxCzD,IAAI,CAAC6N,WAAW,GAAGhO,IAAI;QACvB,IAAI,CAACiD,IAAI,CAAC,CAAC;QACXjD,IAAI,GAAG,IAAI,CAACyD,UAAU,CAACtD,IAAI,EAAE,qBAAqB,CAAC;MACrD,CAAC,MAAM;QACLA,IAAI,CAAC8N,UAAU,GAAGjO,IAAI;QACtBG,IAAI,CAAC+N,SAAS,GAAG,IAAI,CAACtL,aAAa,CAAC,CAAC;QACrC,IAAI,CAACD,MAAM,EAAY,CAAC;QACxB,IAAImL,yBAAyB,EAAE;UAC7B3N,IAAI,CAACqK,QAAQ,GAAGA,QAAQ;UACxBxK,IAAI,GAAG,IAAI,CAACyD,UAAU,CAEpBtD,IAAI,EACJ,2BACF,CAAC;QACH,CAAC,MAAM;UACLH,IAAI,GAAG,IAAI,CAACyD,UAAU,CAEpBtD,IAAI,EACJ,mBACF,CAAC;QACH;MACF;IACF;IACA,OAAOH,IAAI;EACb;EAEAmO,mBAAmBA,CAAA,EAAyB;IAC1C,MAAMhO,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;IAC7B,IAAI,IAAI,CAACS,GAAG,GAAY,CAAC,EAAE;MACzBpD,IAAI,CAAC0E,cAAc,GAAG,IAAI,CAACsJ,mBAAmB,CAAC,CAAC;MAChD,OAAO,IAAI,CAAC1K,UAAU,CAACtD,IAAI,EAAE,wBAAwB,CAAC;IACxD,CAAC,MAAM;MACL,OAAO,IAAI,CAAC0N,oBAAoB,CAAC,CAAC;IACpC;EACF;EAEAO,kCAAkCA,CAAA,EAAyB;IACzD,MAAMC,KAAK,GAAG,IAAI,CAACF,mBAAmB,CAAC,CAAC;IACxC,IAAI,CAAC,IAAI,CAAC1L,KAAK,CAACmH,kBAAkB,IAAI,IAAI,CAACrG,GAAG,GAAS,CAAC,EAAE;MAExD,MAAMpD,IAAI,GAAG,IAAI,CAACuK,WAAW,CAAC2D,KAAK,CAACjJ,GAAG,CAACC,KAAK,CAAC;MAC9ClF,IAAI,CAACqE,MAAM,GAAG,CAAC,IAAI,CAAC2I,kCAAkC,CAACkB,KAAK,CAAC,CAAC;MAC9DlO,IAAI,CAACsE,IAAI,GAAG,IAAI;MAChBtE,IAAI,CAACuE,IAAI,GAAG,IAAI;MAChBvE,IAAI,CAACyE,UAAU,GAAG,IAAI,CAAChC,aAAa,CAAC,CAAC;MACtCzC,IAAI,CAACiE,cAAc,GAAG,IAAI;MAC1B,OAAO,IAAI,CAACX,UAAU,CAACtD,IAAI,EAAE,wBAAwB,CAAC;IACxD;IACA,OAAOkO,KAAK;EACd;EAEAC,yBAAyBA,CAAA,EAAyB;IAChD,MAAMnO,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;IAC7B,IAAI,CAACS,GAAG,GAAc,CAAC;IACvB,MAAMvD,IAAI,GAAG,IAAI,CAACoO,kCAAkC,CAAC,CAAC;IACtDjO,IAAI,CAAC2M,KAAK,GAAG,CAAC9M,IAAI,CAAC;IACnB,OAAO,IAAI,CAACuD,GAAG,GAAc,CAAC,EAAE;MAC9BpD,IAAI,CAAC2M,KAAK,CAAC9L,IAAI,CAAC,IAAI,CAACoN,kCAAkC,CAAC,CAAC,CAAC;IAC5D;IACA,OAAOjO,IAAI,CAAC2M,KAAK,CAAC/L,MAAM,KAAK,CAAC,GAC1Bf,IAAI,GACJ,IAAI,CAACyD,UAAU,CAACtD,IAAI,EAAE,4BAA4B,CAAC;EACzD;EAEAoO,kBAAkBA,CAAA,EAAyB;IACzC,MAAMpO,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;IAC7B,IAAI,CAACS,GAAG,GAAa,CAAC;IACtB,MAAMvD,IAAI,GAAG,IAAI,CAACsO,yBAAyB,CAAC,CAAC;IAC7CnO,IAAI,CAAC2M,KAAK,GAAG,CAAC9M,IAAI,CAAC;IACnB,OAAO,IAAI,CAACuD,GAAG,GAAa,CAAC,EAAE;MAC7BpD,IAAI,CAAC2M,KAAK,CAAC9L,IAAI,CAAC,IAAI,CAACsN,yBAAyB,CAAC,CAAC,CAAC;IACnD;IACA,OAAOnO,IAAI,CAAC2M,KAAK,CAAC/L,MAAM,KAAK,CAAC,GAC1Bf,IAAI,GACJ,IAAI,CAACyD,UAAU,CAACtD,IAAI,EAAE,qBAAqB,CAAC;EAClD;EAEAyC,aAAaA,CAAA,EAAyB;IACpC,MAAMJ,SAAS,GAAG,IAAI,CAACC,KAAK,CAACC,MAAM;IACnC,IAAI,CAACD,KAAK,CAACC,MAAM,GAAG,IAAI;IACxB,MAAM1C,IAAI,GAAG,IAAI,CAACuO,kBAAkB,CAAC,CAAC;IACtC,IAAI,CAAC9L,KAAK,CAACC,MAAM,GAAGF,SAAS;IAC7B,OAAOxC,IAAI;EACb;EAEA8J,oCAAoCA,CAAA,EAAyB;IAC3D,IAAI,IAAI,CAACrH,KAAK,CAACzC,IAAI,QAAY,IAAI,IAAI,CAACyC,KAAK,CAACL,KAAK,KAAK,GAAG,EAAE;MAC3D,MAAMY,QAAQ,GAAG,IAAI,CAACP,KAAK,CAACO,QAAQ;MACpC,MAAM7C,IAAI,GAAG,IAAI,CAAC8D,eAAe,CAAC,CAAC;MACnC,OAAO,IAAI,CAACyI,oBAAoB,CAAC1J,QAAQ,EAAE7C,IAAI,CAAC;IAClD,CAAC,MAAM;MACL,OAAO,IAAI,CAACyC,aAAa,CAAC,CAAC;IAC7B;EACF;EAEAwE,uBAAuBA,CAAA,EAAyB;IAC9C,MAAMjH,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAuB,CAAC;IACnD3C,IAAI,CAAC0E,cAAc,GAAG,IAAI,CAACvC,wBAAwB,CAAC,CAAC;IACrD,OAAO,IAAI,CAACmB,UAAU,CAACtD,IAAI,EAAE,gBAAgB,CAAC;EAChD;EAEAgG,kCAAkCA,CAChCqI,sBAAgC,EAClB;IACd,MAAMjF,KAAK,GAAGiF,sBAAsB,GAChC,IAAI,CAACvK,eAAe,CAAC,CAAC,GACtB,IAAI,CAACwD,6BAA6B,CAAC,CAAC;IACxC,IAAI,IAAI,CAAC7D,KAAK,GAAS,CAAC,EAAE;MAExB2F,KAAK,CAAC1E,cAAc,GAAG,IAAI,CAACuC,uBAAuB,CAAC,CAAC;MACrD,IAAI,CAACtC,gBAAgB,CAACyE,KAAK,CAAC;IAC9B;IACA,OAAOA,KAAK;EACd;EAEAkF,mBAAmBA,CAACtO,IAAY,EAAU;IACxCA,IAAI,CAACuO,UAAU,CAAC7J,cAAc,GAAG1E,IAAI,CAAC0E,cAAc;IAEpD,IAAI,CAACC,gBAAgB,CAAC3E,IAAI,CAACuO,UAAU,EAAEvO,IAAI,CAAC0E,cAAc,CAACO,GAAG,CAACuJ,GAAG,CAAC;IAEnE,OAAOxO,IAAI,CAACuO,UAAU;EACxB;EAEApF,iBAAiBA,CAAA,EAAsC;IACrD,IAAID,QAAQ,GAAG,IAAI;IACnB,IAAI,IAAI,CAACzF,KAAK,GAAW,CAAC,EAAE;MAC1ByF,QAAQ,GAAG,IAAI,CAACvG,SAAS,CAAiB,CAAC;MAC3C,IAAI,IAAI,CAACL,KAAK,CAACL,KAAK,KAAK,GAAG,EAAE;QAC5BiH,QAAQ,CAACzC,IAAI,GAAG,MAAM;MACxB,CAAC,MAAM;QACLyC,QAAQ,CAACzC,IAAI,GAAG,OAAO;MACzB;MACA,IAAI,CAAC3D,IAAI,CAAC,CAAC;MACX,OAAO,IAAI,CAACQ,UAAU,CAAC4F,QAAQ,EAAE,UAAU,CAAC;IAC9C;IACA,OAAOA,QAAQ;EACjB;EAMAuF,iBAAiBA,CACfzO,IAAgB,EAChB0O,mBAAoC,EACpCC,QAAiB,GAAG,KAAK,EACnB;IACN,IAAID,mBAAmB,EAAE;MACvB,IAAI,CAACE,gCAAgC,CAAC5O,IAAI,EAAE,MAC1C,KAAK,CAACyO,iBAAiB,CAACzO,IAAI,EAAE,IAAI,EAAE2O,QAAQ,CAC9C,CAAC;MACD;IACF;IAEA,KAAK,CAACF,iBAAiB,CAACzO,IAAI,EAAE,KAAK,EAAE2O,QAAQ,CAAC;EAChD;EAEAE,0BAA0BA,CAMxB7O,IAAe,EAAEH,IAAe,EAAE8O,QAAiB,GAAG,KAAK,EAAK;IAChE,IAAI,IAAI,CAAClL,KAAK,GAAS,CAAC,EAAE;MACxB,MAAMM,QAAQ,GAAG,IAAI,CAACpB,SAAS,CAAmB,CAAC;MAEnD,CACEoB,QAAQ,CAACW,cAAc,EAEvB1E,IAAI,CAACwD,SAAS,CACf,GAAG,IAAI,CAACD,oCAAoC,CAAC,CAAC;MAE/CvD,IAAI,CAACyE,UAAU,GAAGV,QAAQ,CAACW,cAAc,GACrC,IAAI,CAACpB,UAAU,CAACS,QAAQ,EAAE,gBAAgB,CAAC,GAC3C,IAAI;IACV;IAEA,OAAO,KAAK,CAAC8K,0BAA0B,CAAC7O,IAAI,EAAEH,IAAI,EAAE8O,QAAQ,CAAC;EAC/D;EAGAG,kBAAkBA,CAACC,KAAyB,EAAe;IAEzD,IAAI,IAAI,CAACzM,KAAK,CAAC0M,MAAM,IAAI,IAAI,CAACtJ,YAAY,IAAc,CAAC,EAAE;MACzD,MAAMuE,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC,CAAC;MAClC,IAAI,IAAAgF,iCAA0B,EAAChF,SAAS,CAACpK,IAAI,CAAC,EAAE;QAC9C,MAAMG,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAkB,CAAC;QAC9C,IAAI,CAACG,IAAI,CAAC,CAAC;QACX,OAAO,IAAI,CAACuF,kBAAkB,CAACrI,IAAI,CAAC;MACtC;IACF,CAAC,MAAM,IAAI,IAAI,CAAC0B,gBAAgB,CAAC,CAAC,IAAI,IAAI,CAACgE,YAAY,IAAS,CAAC,EAAE;MACjE,MAAM1F,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;MAC7B,IAAI,CAACG,IAAI,CAAC,CAAC;MACX,OAAO,IAAI,CAACoM,wBAAwB,CAAClP,IAAI,CAAC;IAC5C;IACA,MAAMmP,IAAI,GAAG,KAAK,CAACL,kBAAkB,CAACC,KAAK,CAAC;IAE5C,IAAI,IAAI,CAAC3N,UAAU,KAAKC,SAAS,IAAI,CAAC,IAAI,CAAC+N,gBAAgB,CAACD,IAAI,CAAC,EAAE;MACjE,IAAI,CAAC/N,UAAU,GAAG,IAAI;IACxB;IACA,OAAO+N,IAAI;EACb;EAGAE,wBAAwBA,CACtBrP,IAA2B,EAC3BsP,IAAkB,EAClBC,UAAgC,EACT;IACvB,IAAID,IAAI,CAACzP,IAAI,KAAK,YAAY,EAAE;MAC9B,IAAIyP,IAAI,CAACvK,IAAI,KAAK,SAAS,EAAE;QAC3B,IACE,IAAI,CAACtB,KAAK,GAAU,CAAC,IACrB,IAAA0J,wBAAiB,EAAC,IAAI,CAAC7K,KAAK,CAACzC,IAAI,CAAC,IAClC,IAAI,CAAC4D,KAAK,GAAa,CAAC,IACxB,IAAI,CAACA,KAAK,GAAQ,CAAC,IACnB,IAAI,CAACA,KAAK,GAAW,CAAC,EACtB;UAEA,OAAO,IAAI,CAAC0B,gBAAgB,CAACnF,IAAI,CAAC;QACpC;MACF,CAAC,MAAM,IAAI,IAAAmN,wBAAiB,EAAC,IAAI,CAAC7K,KAAK,CAACzC,IAAI,CAAC,EAAE;QAC7C,IAAIyP,IAAI,CAACvK,IAAI,KAAK,WAAW,EAAE;UAE7B,OAAO,IAAI,CAACsD,kBAAkB,CAACrI,IAAI,CAAC;QACtC,CAAC,MAAM,IAAIsP,IAAI,CAACvK,IAAI,KAAK,MAAM,EAAE;UAE/B,OAAO,IAAI,CAACoC,kBAAkB,CAACnH,IAAI,CAAC;QACtC,CAAC,MAAM,IAAIsP,IAAI,CAACvK,IAAI,KAAK,QAAQ,EAAE;UAEjC,OAAO,IAAI,CAACqC,mBAAmB,CAACpH,IAAI,EAAE,KAAK,CAAC;QAC9C;MACF;IACF;IAEA,OAAO,KAAK,CAACqP,wBAAwB,CAACrP,IAAI,EAAEsP,IAAI,EAAEC,UAAU,CAAC;EAC/D;EAGAC,4BAA4BA,CAAA,EAAY;IACtC,MAAM;MAAE3P;IAAK,CAAC,GAAG,IAAI,CAACyC,KAAK;IAC3B,IACE,IAAAmN,yCAAkC,EAAC5P,IAAI,CAAC,IACvC,IAAI,CAAC6B,gBAAgB,CAAC,CAAC,IAAI7B,IAAI,QAAc,EAC9C;MACA,OAAO,CAAC,IAAI,CAACyC,KAAK,CAACoN,WAAW;IAChC;IACA,OAAO,KAAK,CAACF,4BAA4B,CAAC,CAAC;EAC7C;EAEAG,wBAAwBA,CAAA,EAAY;IAClC,MAAM;MAAE9P;IAAK,CAAC,GAAG,IAAI,CAACyC,KAAK;IAC3B,IACE,IAAAmN,yCAAkC,EAAC5P,IAAI,CAAC,IACvC,IAAI,CAAC6B,gBAAgB,CAAC,CAAC,IAAI7B,IAAI,QAAc,EAC9C;MACA,OAAO,IAAI,CAACyC,KAAK,CAACoN,WAAW;IAC/B;IAEA,OAAO,KAAK,CAACC,wBAAwB,CAAC,CAAC;EACzC;EAEAC,4BAA4BA,CAAA,EAAiC;IAC3D,IAAI,IAAI,CAAClO,gBAAgB,CAAC,CAAC,IAAI,IAAI,CAACgE,YAAY,IAAS,CAAC,EAAE;MAC1D,MAAM1F,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;MAC7B,IAAI,CAACG,IAAI,CAAC,CAAC;MACX,OAAO,IAAI,CAACoM,wBAAwB,CAAClP,IAAI,CAAC;IAC5C;IACA,OAAO,KAAK,CAAC4P,4BAA4B,CAAC,CAAC;EAC7C;EAEAC,gBAAgBA,CACdP,IAAkB,EAElBzM,QAAkB,EAClBiN,mBAA6C,EAC/B;IACd,IAAI,CAAC,IAAI,CAACrM,KAAK,GAAY,CAAC,EAAE,OAAO6L,IAAI;IAEzC,IAAI,IAAI,CAAChN,KAAK,CAACyN,sBAAsB,EAAE;MACrC,MAAMC,MAAM,GAAG,IAAI,CAACC,iBAAiB,CAAC,CAAC;MAIvC,IACED,MAAM,OAAoB,IAC1BA,MAAM,OAAuB,IAC7BA,MAAM,OAAoB,IAC1BA,MAAM,OAA+B,EACrC;QAEA,IAAI,CAACE,0BAA0B,CAACJ,mBAAmB,CAAC;QACpD,OAAOR,IAAI;MACb;IACF;IAEA,IAAI,CAAC9M,MAAM,GAAY,CAAC;IACxB,MAAMF,KAAK,GAAG,IAAI,CAACA,KAAK,CAAC6N,KAAK,CAAC,CAAC;IAChC,MAAMC,iBAAiB,GAAG,IAAI,CAAC9N,KAAK,CAAC+N,SAAS;IAC9C,MAAMrQ,IAAI,GAAG,IAAI,CAACuK,WAAW,CAAC1H,QAAQ,CAAC;IACvC,IAAI;MAAEyN,UAAU;MAAEC;IAAO,CAAC,GAAG,IAAI,CAACC,6BAA6B,CAAC,CAAC;IACjE,IAAI,CAACC,KAAK,EAAEC,OAAO,CAAC,GAAG,IAAI,CAACC,uBAAuB,CAACL,UAAU,CAAC;IAE/D,IAAIC,MAAM,IAAIG,OAAO,CAAC9P,MAAM,GAAG,CAAC,EAAE;MAChC,MAAMyP,SAAS,GAAG,CAAC,GAAGD,iBAAiB,CAAC;MAExC,IAAIM,OAAO,CAAC9P,MAAM,GAAG,CAAC,EAAE;QACtB,IAAI,CAAC0B,KAAK,GAAGA,KAAK;QAClB,IAAI,CAACA,KAAK,CAAC+N,SAAS,GAAGA,SAAS;QAEhC,KAAK,IAAI1P,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAG+P,OAAO,CAAC9P,MAAM,EAAED,CAAC,EAAE,EAAE;UACvC0P,SAAS,CAACxP,IAAI,CAAC6P,OAAO,CAAC/P,CAAC,CAAC,CAACuE,KAAK,CAAC;QAClC;QAEA,CAAC;UAAEoL,UAAU;UAAEC;QAAO,CAAC,GAAG,IAAI,CAACC,6BAA6B,CAAC,CAAC;QAC9D,CAACC,KAAK,EAAEC,OAAO,CAAC,GAAG,IAAI,CAACC,uBAAuB,CAACL,UAAU,CAAC;MAC7D;MAEA,IAAIC,MAAM,IAAIE,KAAK,CAAC7P,MAAM,GAAG,CAAC,EAAE;QAM9B,IAAI,CAACsC,KAAK,CAACpH,UAAU,CAACE,yBAAyB,EAAE;UAC/CmH,EAAE,EAAEb,KAAK,CAACO;QACZ,CAAC,CAAC;MACJ;MAEA,IAAI0N,MAAM,IAAIE,KAAK,CAAC7P,MAAM,KAAK,CAAC,EAAE;QAChC,IAAI,CAAC0B,KAAK,GAAGA,KAAK;QAClB+N,SAAS,CAACxP,IAAI,CAAC4P,KAAK,CAAC,CAAC,CAAC,CAACvL,KAAK,CAAC;QAC9B,IAAI,CAAC5C,KAAK,CAAC+N,SAAS,GAAGA,SAAS;QAChC,CAAC;UAAEC,UAAU;UAAEC;QAAO,CAAC,GAAG,IAAI,CAACC,6BAA6B,CAAC,CAAC;MAChE;IACF;IAEA,IAAI,CAACG,uBAAuB,CAACL,UAAU,EAAE,IAAI,CAAC;IAE9C,IAAI,CAAChO,KAAK,CAAC+N,SAAS,GAAGD,iBAAiB;IACxC,IAAI,CAAC5N,MAAM,GAAS,CAAC;IAErBxC,IAAI,CAACQ,IAAI,GAAG8O,IAAI;IAChBtP,IAAI,CAACsQ,UAAU,GAAGA,UAAU;IAC5BtQ,IAAI,CAAC4Q,SAAS,GAAG,IAAI,CAAChC,gCAAgC,CAAC5O,IAAI,EAAE,MAC3D,IAAI,CAAC6Q,gBAAgB,CAACxP,SAAS,EAAEA,SAAS,CAC5C,CAAC;IAED,OAAO,IAAI,CAACiC,UAAU,CAACtD,IAAI,EAAE,uBAAuB,CAAC;EACvD;EAEAwQ,6BAA6BA,CAAA,EAG3B;IACA,IAAI,CAAClO,KAAK,CAACwO,yBAAyB,CAACjQ,IAAI,CAAC,IAAI,CAACyB,KAAK,CAAC4C,KAAK,CAAC;IAE3D,MAAMoL,UAAU,GAAG,IAAI,CAACS,uBAAuB,CAAC,CAAC;IACjD,MAAMR,MAAM,GAAG,CAAC,IAAI,CAAC9M,KAAK,GAAS,CAAC;IAEpC,IAAI,CAACnB,KAAK,CAACwO,yBAAyB,CAACE,GAAG,CAAC,CAAC;IAE1C,OAAO;MAAEV,UAAU;MAAEC;IAAO,CAAC;EAC/B;EASAI,uBAAuBA,CACrB3Q,IAAkB,EAClBiR,eAAyB,EACmC;IAC5D,MAAMC,KAAK,GAAG,CAAClR,IAAI,CAAC;IACpB,MAAMmR,MAAmC,GAAG,EAAE;IAE9C,OAAOD,KAAK,CAACtQ,MAAM,KAAK,CAAC,EAAE;MACzB,MAAMZ,IAAI,GAAGkR,KAAK,CAACF,GAAG,CAAC,CAAC;MACxB,IAAIhR,IAAI,CAACH,IAAI,KAAK,yBAAyB,EAAE;QAC3C,IAAIG,IAAI,CAACiE,cAAc,IAAI,CAACjE,IAAI,CAACyE,UAAU,EAAE;UAG3C,IAAI,CAAC2M,qBAAqB,CAACpR,IAAI,CAAC;QAClC,CAAC,MAAM;UAELmR,MAAM,CAACtQ,IAAI,CAACb,IAAI,CAAC;QACnB;QACAkR,KAAK,CAACrQ,IAAI,CAACb,IAAI,CAACsG,IAAI,CAAC;MACvB,CAAC,MAAM,IAAItG,IAAI,CAACH,IAAI,KAAK,uBAAuB,EAAE;QAChDqR,KAAK,CAACrQ,IAAI,CAACb,IAAI,CAACsQ,UAAU,CAAC;QAC3BY,KAAK,CAACrQ,IAAI,CAACb,IAAI,CAAC4Q,SAAS,CAAC;MAC5B;IACF;IAEA,IAAIK,eAAe,EAAE;MACnBE,MAAM,CAACxK,OAAO,CAAC3G,IAAI,IAAI,IAAI,CAACoR,qBAAqB,CAACpR,IAAI,CAAC,CAAC;MACxD,OAAO,CAACmR,MAAM,EAAE,EAAE,CAAC;IACrB;IAEA,OAAO7Q,SAAS,CAAC6Q,MAAM,EAAEnR,IAAI,IAC3BA,IAAI,CAACqE,MAAM,CAACgN,KAAK,CAACnD,KAAK,IAAI,IAAI,CAACoD,YAAY,CAACpD,KAAK,EAAE,IAAI,CAAC,CAC3D,CAAC;EACH;EAEAkD,qBAAqBA,CAACpR,IAA+B,EAAE;IAAA,IAAAuR,WAAA;IACrD,IAAI,CAACC,gBAAgB,CAGnBxR,IAAI,CAACqE,MAAM,GAAAkN,WAAA,GACXvR,IAAI,CAACyR,KAAK,qBAAVF,WAAA,CAAYG,gBAAgB,EAChB,KACd,CAAC;IAED,IAAI,CAAC7M,KAAK,CAACqB,KAAK,CAACyL,0BAAc,GAAGC,uBAAW,CAAC;IAE9C,KAAK,CAACC,WAAW,CAAC7R,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC;IACpC,IAAI,CAAC6E,KAAK,CAAC2B,IAAI,CAAC,CAAC;EACnB;EAEAoI,gCAAgCA,CAC9B5O,IAAoB,EACpB8R,KAAc,EACX;IACH,IAAIC,MAAS;IACb,IAAI,IAAI,CAACzP,KAAK,CAACwO,yBAAyB,CAACkB,OAAO,CAAChS,IAAI,CAACkF,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE;MACnE,IAAI,CAAC5C,KAAK,CAACwO,yBAAyB,CAACjQ,IAAI,CAAC,IAAI,CAACyB,KAAK,CAAC4C,KAAK,CAAC;MAC3D6M,MAAM,GAAGD,KAAK,CAAC,CAAC;MAChB,IAAI,CAACxP,KAAK,CAACwO,yBAAyB,CAACE,GAAG,CAAC,CAAC;IAC5C,CAAC,MAAM;MACLe,MAAM,GAAGD,KAAK,CAAC,CAAC;IAClB;IAEA,OAAOC,MAAM;EACf;EAEAE,cAAcA,CACZjS,IAAkB,EAElB6C,QAAkB,EACJ;IACd7C,IAAI,GAAG,KAAK,CAACiS,cAAc,CAACjS,IAAI,EAAE6C,QAAQ,CAAC;IAC3C,IAAI,IAAI,CAACO,GAAG,GAAY,CAAC,EAAE;MACzBpD,IAAI,CAACqK,QAAQ,GAAG,IAAI;MAIpB,IAAI,CAAC1F,gBAAgB,CAAC3E,IAAI,CAAC;IAC7B;IAEA,IAAI,IAAI,CAACyD,KAAK,GAAS,CAAC,EAAE;MACxB,MAAMyO,YAAY,GAAG,IAAI,CAAC3H,WAAW,CAAC1H,QAAQ,CAAC;MAC/CqP,YAAY,CAAC3D,UAAU,GAAGvO,IAAI;MAC9BkS,YAAY,CAACxN,cAAc,GAAG,IAAI,CAACuC,uBAAuB,CAAC,CAAC;MAE5D,OAAO,IAAI,CAAC3D,UAAU,CAAC4O,YAAY,EAAE,oBAAoB,CAAC;IAC5D;IAEA,OAAOlS,IAAI;EACb;EAEAmS,uBAAuBA,CAACnS,IAAY,EAAE;IACpC,IACGA,IAAI,CAACH,IAAI,KAAK,mBAAmB,KAC/BG,IAAI,CAACC,UAAU,KAAK,MAAM,IAAID,IAAI,CAACC,UAAU,KAAK,QAAQ,CAAC,IAC7DD,IAAI,CAACH,IAAI,KAAK,wBAAwB,IACrCG,IAAI,CAACgH,UAAU,KAAK,MAAO,IAC5BhH,IAAI,CAACH,IAAI,KAAK,sBAAsB,IAAIG,IAAI,CAACgH,UAAU,KAAK,MAAO,EACpE;MAGA;IACF;IAEA,KAAK,CAACmL,uBAAuB,CAACnS,IAAI,CAAC;EACrC;EAEAoS,sBAAsBA,CACpBpS,IAA8B,EACI;IAClC,IAAI,IAAI,CAAC0F,YAAY,IAAS,CAAC,EAAE;MAC/B1F,IAAI,CAACgH,UAAU,GAAG,MAAM;MAExB,MAAMqL,eAAe,GAAG,IAAI,CAAC1P,SAAS,CAAC,CAAC;MACxC,IAAI,CAACG,IAAI,CAAC,CAAC;MAEX,IAAI,IAAI,CAACW,KAAK,EAAU,CAAC,EAAE;QAEzBzD,IAAI,CAACsS,UAAU,GAAG,IAAI,CAACC,qBAAqB,CACrB,IACvB,CAAC;QACD,KAAK,CAACC,eAAe,CAACxS,IAAI,CAAC;QAC3B,OAAO,IAAI;MACb,CAAC,MAAM;QAGL,OAAO,IAAI,CAACmH,kBAAkB,CAACkL,eAAe,CAAC;MACjD;IACF,CAAC,MAAM,IAAI,IAAI,CAAC3M,YAAY,IAAW,CAAC,EAAE;MACxC1F,IAAI,CAACgH,UAAU,GAAG,MAAM;MAExB,MAAMqL,eAAe,GAAG,IAAI,CAAC1P,SAAS,CAAC,CAAC;MACxC,IAAI,CAACG,IAAI,CAAC,CAAC;MAGX,OAAO,IAAI,CAACsE,mBAAmB,CAACiL,eAAe,EAAE,KAAK,CAAC;IACzD,CAAC,MAAM,IAAI,IAAI,CAAC3M,YAAY,IAAc,CAAC,EAAE;MAC3C1F,IAAI,CAACgH,UAAU,GAAG,MAAM;MACxB,MAAMqL,eAAe,GAAG,IAAI,CAAC1P,SAAS,CAAC,CAAC;MACxC,IAAI,CAACG,IAAI,CAAC,CAAC;MAEX,OAAO,IAAI,CAACuF,kBAAkB,CAACgK,eAAe,CAAC;IACjD,CAAC,MAAM,IAAI,IAAI,CAAC3Q,gBAAgB,CAAC,CAAC,IAAI,IAAI,CAACgE,YAAY,IAAS,CAAC,EAAE;MACjE1F,IAAI,CAACgH,UAAU,GAAG,OAAO;MACzB,MAAMqL,eAAe,GAAG,IAAI,CAAC1P,SAAS,CAAC,CAAC;MACxC,IAAI,CAACG,IAAI,CAAC,CAAC;MAEX,OAAO,IAAI,CAACoM,wBAAwB,CAACmD,eAAe,CAAC;IACvD,CAAC,MAAM;MACL,OAAO,KAAK,CAACD,sBAAsB,CAACpS,IAAI,CAAC;IAC3C;EACF;EAEAyS,aAAaA,CAACzS,IAAY,EAAW;IACnC,IAAI,KAAK,CAACyS,aAAa,CAACzS,IAAI,CAAC,EAAE,OAAO,IAAI;IAE1C,IAAI,IAAI,CAAC0F,YAAY,IAAS,CAAC,IAAI,IAAI,CAACuE,SAAS,CAAC,CAAC,CAACpK,IAAI,OAAY,EAAE;MACpEG,IAAI,CAACgH,UAAU,GAAG,MAAM;MACxB,IAAI,CAAClE,IAAI,CAAC,CAAC;MACX,IAAI,CAACA,IAAI,CAAC,CAAC;MACX,OAAO,IAAI;IACb;IAEA,OAAO,KAAK;EACd;EAEA4P,kCAAkCA,CAAC1S,IAAY,EAAW;IACxD,MAAM;MAAE6C;IAAS,CAAC,GAAG,IAAI,CAACP,KAAK;IAC/B,MAAMqQ,YAAY,GAAG,KAAK,CAACD,kCAAkC,CAAC1S,IAAI,CAAC;IACnE,IAAI2S,YAAY,IAAI3S,IAAI,CAACgH,UAAU,KAAK,MAAM,EAAE;MAC9C,IAAI,CAACjB,UAAU,CAAClD,QAAQ,CAAC;IAC3B;IACA,OAAO8P,YAAY;EACrB;EAEAC,YAAYA,CACV5S,IAAa,EACb6S,WAAoB,EACpBC,UAA2B,EAC3B;IACA,KAAK,CAACF,YAAY,CAAC5S,IAAI,EAAE6S,WAAW,EAAEC,UAAU,CAAC;IACjD,IAAI,IAAI,CAACrP,KAAK,GAAM,CAAC,EAAE;MACrBzD,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;IAChE;EACF;EAEA6O,gBAAgBA,CACdC,SAAsB,EACtBC,MAAW,EACX3Q,KAA8B,EACxB;IACN,MAAM;MAAEO;IAAS,CAAC,GAAG,IAAI,CAACP,KAAK;IAC/B,IAAI,IAAI,CAACoD,YAAY,IAAY,CAAC,EAAE;MAClC,IAAI,KAAK,CAACwN,4BAA4B,CAACF,SAAS,EAAEC,MAAM,CAAC,EAAE;QAEzD;MACF;MAEAA,MAAM,CAACrK,OAAO,GAAG,IAAI;IACvB;IAEA,KAAK,CAACmK,gBAAgB,CAACC,SAAS,EAAEC,MAAM,EAAE3Q,KAAK,CAAC;IAEhD,IAAI2Q,MAAM,CAACrK,OAAO,EAAE;MAClB,IACEqK,MAAM,CAACpT,IAAI,KAAK,eAAe,IAC/BoT,MAAM,CAACpT,IAAI,KAAK,sBAAsB,IACtCoT,MAAM,CAACpT,IAAI,KAAK,oBAAoB,EACpC;QACA,IAAI,CAACqD,KAAK,CAACpH,UAAU,CAACM,mBAAmB,EAAE;UAAE+G,EAAE,EAAEN;QAAS,CAAC,CAAC;MAC9D,CAAC,MAAM,IAAIoQ,MAAM,CAAChR,KAAK,EAAE;QACvB,IAAI,CAACiB,KAAK,CAACpH,UAAU,CAACO,4BAA4B,EAAE;UAClD8G,EAAE,EAAE8P,MAAM,CAAChR;QACb,CAAC,CAAC;MACJ;IACF;EACF;EAEAkR,UAAUA,CAAC5K,IAAY,EAAW;IAChC,OAAOA,IAAI,KAAK,UAAU,IAAIA,IAAI,KAAK,eAAe;EACxD;EAEA6K,YAAYA,CAAA,EAAS;IACnB,MAAM7K,IAAI,GAAG,KAAK,CAAC8K,SAAS,CAAC,CAAC;IAC9B,MAAMC,QAAQ,GAAG,IAAI,GAAG/K,IAAI;IAG5B,IAAI,CAAC,IAAI,CAAC4K,UAAU,CAAC5K,IAAI,CAAC,IAAI,CAAC,IAAI,CAACjG,KAAK,CAACC,MAAM,EAAE;MAChD,IAAI,CAACW,KAAK,CAAC8I,kBAAM,CAACuH,iBAAiB,EAAE;QACnCpQ,EAAE,EAAE,IAAI,CAACb,KAAK,CAACkR,WAAW,CAAC,CAAC;QAC5BC,cAAc,EAAEH;MAClB,CAAC,CAAC;IACJ;IAEA,IAAI,CAAC3R,WAAW,MAAU2R,QAAQ,CAAC;EACrC;EAGAI,gBAAgBA,CAACC,IAAY,EAAQ;IACnC,MAAM7Q,IAAI,GAAG,IAAI,CAAC8Q,KAAK,CAACC,UAAU,CAAC,IAAI,CAACvR,KAAK,CAACsK,GAAG,GAAG,CAAC,CAAC;IACtD,IAAI+G,IAAI,QAA6B,IAAI7Q,IAAI,QAA0B,EAAE;MACvE,IAAI,CAACgR,QAAQ,IAAe,CAAC,CAAC;IAChC,CAAC,MAAM,IACL,IAAI,CAACxR,KAAK,CAACC,MAAM,KAChBoR,IAAI,OAA0B,IAAIA,IAAI,OAAuB,CAAC,EAC/D;MACA,IAAI,CAACG,QAAQ,CAACH,IAAI,OAA0B,UAAgB,EAAE,CAAC,CAAC;IAClE,CAAC,MAAM,IAAI,IAAI,CAACrR,KAAK,CAACC,MAAM,IAAIoR,IAAI,OAA2B,EAAE;MAC/D,IAAI7Q,IAAI,OAAkB,EAAE;QAC1B,IAAI,CAACgR,QAAQ,KAAiB,CAAC,CAAC;MAClC,CAAC,MAAM;QAEL,IAAI,CAACA,QAAQ,KAAc,CAAC,CAAC;MAC/B;IACF,CAAC,MAAM,IACL,IAAAC,2BAAe,EAACJ,IAAI,EAAE7Q,IAAI,EAAE,IAAI,CAAC8Q,KAAK,CAACC,UAAU,CAAC,IAAI,CAACvR,KAAK,CAACsK,GAAG,GAAG,CAAC,CAAC,CAAC,EACtE;MACA,IAAI,CAACtK,KAAK,CAACsK,GAAG,IAAI,CAAC;MACnB,IAAI,CAACwG,YAAY,CAAC,CAAC;IACrB,CAAC,MAAM;MACL,KAAK,CAACM,gBAAgB,CAACC,IAAI,CAAC;IAC9B;EACF;EAEArC,YAAYA,CAACtR,IAAY,EAAEgU,SAAmB,EAAW;IACvD,IAAIhU,IAAI,CAACH,IAAI,KAAK,oBAAoB,EAAE;MACtC,OAAO,IAAI,CAACyR,YAAY,CAACtR,IAAI,CAACuO,UAAU,EAAEyF,SAAS,CAAC;IACtD,CAAC,MAAM;MACL,OAAO,KAAK,CAAC1C,YAAY,CAACtR,IAAI,EAAEgU,SAAS,CAAC;IAC5C;EACF;EAEAC,YAAYA,CAACjU,IAAY,EAAEkU,KAAc,GAAG,KAAK,EAAQ;IACvD,IACE,CAACA,KAAK,IACNlU,IAAI,CAACH,IAAI,KAAK,sBAAsB,IACpCG,IAAI,CAACmU,IAAI,CAACtU,IAAI,KAAK,oBAAoB,EACvC;MACAG,IAAI,CAACmU,IAAI,GAAG,IAAI,CAAC7F,mBAAmB,CAACtO,IAAI,CAACmU,IAAI,CAAC;IACjD;IACA,KAAK,CAACF,YAAY,CAACjU,IAAI,EAAEkU,KAAK,CAAC;EACjC;EAGA1C,gBAAgBA,CACd4C,QAAwB,EACxB1C,gBAA6C,EAC7CwC,KAAc,EACR;IACN,KAAK,IAAIvT,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGyT,QAAQ,CAACxT,MAAM,EAAED,CAAC,EAAE,EAAE;MACxC,MAAM2O,IAAI,GAAG8E,QAAQ,CAACzT,CAAC,CAAC;MACxB,IAAI,CAAA2O,IAAI,oBAAJA,IAAI,CAAEzP,IAAI,MAAK,oBAAoB,EAAE;QACvCuU,QAAQ,CAACzT,CAAC,CAAC,GAAG,IAAI,CAAC2N,mBAAmB,CAACgB,IAAI,CAAC;MAC9C;IACF;IACA,KAAK,CAACkC,gBAAgB,CAAC4C,QAAQ,EAAE1C,gBAAgB,EAAEwC,KAAK,CAAC;EAC3D;EAIAG,gBAAgBA,CACdD,QAAwD,EACxDE,mBAA6B,EACmB;IAChD,KAAK,IAAI3T,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGyT,QAAQ,CAACxT,MAAM,EAAED,CAAC,EAAE,EAAE;MAAA,IAAA4T,WAAA;MACxC,MAAMjF,IAAI,GAAG8E,QAAQ,CAACzT,CAAC,CAAC;MACxB,IACE2O,IAAI,IACJA,IAAI,CAACzP,IAAI,KAAK,oBAAoB,IAClC,GAAA0U,WAAA,GAACjF,IAAI,CAACmC,KAAK,aAAV8C,WAAA,CAAYC,aAAa,MACzBJ,QAAQ,CAACxT,MAAM,GAAG,CAAC,IAAI,CAAC0T,mBAAmB,CAAC,EAC7C;QACA,IAAI,CAACpR,KAAK,CAACpH,UAAU,CAACgD,iBAAiB,EAAE;UACvCqE,EAAE,EAAEmM,IAAI,CAAC5K;QACX,CAAC,CAAC;MACJ;IACF;IAEA,OAAO0P,QAAQ;EACjB;EAEAK,cAAcA,CACZC,KAAgB,EAChBC,YAAqB,EACrBC,OAAgB,EAChB9E,mBAA6C,EACN;IACvC,MAAM9P,IAAI,GAAG,KAAK,CAACyU,cAAc,CAC/BC,KAAK,EACLC,YAAY,EACZC,OAAO,EACP9E,mBACF,CAAC;IAOD,IAAI6E,YAAY,IAAI,CAAC,IAAI,CAACrS,KAAK,CAACyN,sBAAsB,EAAE;MACtD,IAAI,CAACsE,gBAAgB,CAACrU,IAAI,CAAC6U,QAAQ,CAAC;IACtC;IAEA,OAAO7U,IAAI;EACb;EAEA8U,WAAWA,CAACjV,IAAY,EAAEkV,eAAwB,EAAEC,OAAqB,EAAE;IACzE,OACEnV,IAAI,KAAK,oBAAoB,IAC7B,KAAK,CAACiV,WAAW,CAACjV,IAAI,EAAEkV,eAAe,EAAEC,OAAO,CAAC;EAErD;EAGAC,kBAAkBA,CAACjV,IAAqB,EAAmB;IACzD,IAAI,IAAI,CAACyD,KAAK,GAAS,CAAC,EAAE;MAExBzD,IAAI,CAAC0E,cAAc,GAAG,IAAI,CAACuC,uBAAuB,CAAC,CAAC;IACtD;IACA,OAAO,KAAK,CAACgO,kBAAkB,CAACjV,IAAI,CAAC;EACvC;EAEAkV,yBAAyBA,CACvBlV,IAA4B,EACJ;IACxB,IAAI,IAAI,CAACyD,KAAK,GAAS,CAAC,EAAE;MAExBzD,IAAI,CAAC0E,cAAc,GAAG,IAAI,CAACuC,uBAAuB,CAAC,CAAC;IACtD;IACA,OAAO,KAAK,CAACiO,yBAAyB,CAAClV,IAAI,CAAC;EAC9C;EAGAmV,aAAaA,CAAA,EAAY;IACvB,OAAO,IAAI,CAAC1R,KAAK,GAAM,CAAC,IAAI,KAAK,CAAC0R,aAAa,CAAC,CAAC;EACnD;EAGAC,eAAeA,CAAA,EAAY;IACzB,OAAO,IAAI,CAAC3R,KAAK,GAAS,CAAC,IAAI,KAAK,CAAC2R,eAAe,CAAC,CAAC;EACxD;EAEAC,sBAAsBA,CAACjL,MAAuC,EAAW;IACvE,OAAO,CAAC,IAAI,CAAC3G,KAAK,GAAS,CAAC,IAAI,KAAK,CAAC4R,sBAAsB,CAACjL,MAAM,CAAC;EACtE;EAGAkL,eAAeA,CACbtC,SAAsB,EACtB5I,MAAqB,EACrBmL,WAAoB,EACpBC,OAAgB,EAChBC,aAAsB,EACtBC,iBAA0B,EACpB;IACN,IAAKtL,MAAM,CAASlB,QAAQ,EAAE;MAC5B,IAAI,CAACnD,UAAU,CAAEqE,MAAM,CAASlB,QAAQ,CAACjE,GAAG,CAACC,KAAK,CAAC;IACrD;IACA,OAAQkF,MAAM,CAASlB,QAAQ;IAC/B,IAAI,IAAI,CAACzF,KAAK,GAAM,CAAC,EAAE;MACrB2G,MAAM,CAACnG,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;IAClE;IAEA,KAAK,CAACoR,eAAe,CACnBtC,SAAS,EACT5I,MAAM,EACNmL,WAAW,EACXC,OAAO,EACPC,aAAa,EACbC,iBACF,CAAC;IAED,IAAItL,MAAM,CAAC/F,MAAM,IAAIoR,aAAa,EAAE;MAClC,MAAMpR,MAAM,GAAG+F,MAAM,CAAC/F,MAAM;MAC5B,IAAIA,MAAM,CAACzD,MAAM,GAAG,CAAC,IAAI,IAAI,CAAC+U,WAAW,CAACtR,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE;QACpD,IAAI,CAACnB,KAAK,CAACpH,UAAU,CAAC2C,4BAA4B,EAAE;UAAE0E,EAAE,EAAEiH;QAAO,CAAC,CAAC;MACrE;IAEF,CAAC,MAAM,IAELA,MAAM,CAACvK,IAAI,KAAK,kBAAkB,IAClC4V,aAAa,IAEbrL,MAAM,CAACnI,KAAK,CAACoC,MAAM,EACnB;MAEA,MAAMA,MAAM,GAAG+F,MAAM,CAACnI,KAAK,CAACoC,MAAM;MAClC,IAAIA,MAAM,CAACzD,MAAM,GAAG,CAAC,IAAI,IAAI,CAAC+U,WAAW,CAACtR,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE;QACpD,IAAI,CAACnB,KAAK,CAACpH,UAAU,CAAC2C,4BAA4B,EAAE;UAAE0E,EAAE,EAAEiH;QAAO,CAAC,CAAC;MACrE;IACF;EACF;EAEAwL,sBAAsBA,CACpB5C,SAAsB,EACtB5I,MAA4B,EAC5BmL,WAAoB,EACpBC,OAAgB,EACV;IACN,IAAKpL,MAAM,CAASlB,QAAQ,EAAE;MAC5B,IAAI,CAACnD,UAAU,CAAEqE,MAAM,CAASlB,QAAQ,CAACjE,GAAG,CAACC,KAAK,CAAC;IACrD;IACA,OAAQkF,MAAM,CAASlB,QAAQ;IAC/B,IAAI,IAAI,CAACzF,KAAK,GAAM,CAAC,EAAE;MACrB2G,MAAM,CAACnG,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;IAClE;IAEA,KAAK,CAAC0R,sBAAsB,CAAC5C,SAAS,EAAE5I,MAAM,EAAEmL,WAAW,EAAEC,OAAO,CAAC;EACvE;EAGAK,eAAeA,CAAC7V,IAAa,EAAQ;IACnC,KAAK,CAAC6V,eAAe,CAAC7V,IAAI,CAAC;IAC3B,IAAIA,IAAI,CAACgB,UAAU,IAAI,IAAI,CAACyC,KAAK,GAAM,CAAC,EAAE;MACxCzD,IAAI,CAAC8V,mBAAmB,GAAG,IAAI,CAAC1N,mCAAmC,CAAC,CAAC;IACvE;IACA,IAAI,IAAI,CAAC1C,YAAY,IAAe,CAAC,EAAE;MACrC,IAAI,CAAC5C,IAAI,CAAC,CAAC;MACX,MAAMiT,WAAoC,GAAI/V,IAAI,CAAC2H,UAAU,GAAG,EAAG;MACnE,GAAG;QACD,MAAM3H,IAAI,GAAG,IAAI,CAAC2C,SAAS,CAAC,CAAC;QAC7B3C,IAAI,CAAC6D,EAAE,GAAG,IAAI,CAACyD,6BAA6B,CAAa,IAAI,CAAC;QAC9D,IAAI,IAAI,CAAC7D,KAAK,GAAM,CAAC,EAAE;UACrBzD,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACmE,mCAAmC,CAAC,CAAC;QAClE,CAAC,MAAM;UACLpI,IAAI,CAACiE,cAAc,GAAG,IAAI;QAC5B;QACA8R,WAAW,CAAClV,IAAI,CAAC,IAAI,CAACyC,UAAU,CAACtD,IAAI,EAAE,iBAAiB,CAAC,CAAC;MAC5D,CAAC,QAAQ,IAAI,CAACoD,GAAG,GAAS,CAAC;IAC7B;EACF;EAEA4S,uBAAuBA,CAAC5L,MAAsC,EAAQ;IACpE,KAAK,CAAC4L,uBAAuB,CAAC5L,MAAM,CAAC;IACrC,MAAM/F,MAAM,GAAG,IAAI,CAAC4R,4BAA4B,CAAC7L,MAAM,CAAC;IACxD,IAAI/F,MAAM,CAACzD,MAAM,GAAG,CAAC,EAAE;MACrB,MAAMsN,KAAK,GAAG7J,MAAM,CAAC,CAAC,CAAC;MACvB,IAAI,IAAI,CAACsR,WAAW,CAACzH,KAAK,CAAC,IAAI9D,MAAM,CAAC3D,IAAI,KAAK,KAAK,EAAE;QACpD,IAAI,CAACvD,KAAK,CAACpH,UAAU,CAACyB,yBAAyB,EAAE;UAAE4F,EAAE,EAAE+K;QAAM,CAAC,CAAC;MACjE,CAAC,MAAM,IAAI,IAAI,CAACyH,WAAW,CAACzH,KAAK,CAAC,EAAE;QAClC,IAAI,CAAChL,KAAK,CAACpH,UAAU,CAACwC,yBAAyB,EAAE;UAAE6E,EAAE,EAAE+K;QAAM,CAAC,CAAC;MACjE;IACF;EACF;EAEAgI,+BAA+BA,CAC7BlW,IAA2C,EACrC;IACNA,IAAI,CAACkJ,QAAQ,GAAG,IAAI,CAACC,iBAAiB,CAAC,CAAC;EAC1C;EAGAgN,iBAAiBA,CACfC,IAA+C,EAC/CvT,QAAqC,EACrC0S,WAAoB,EACpBC,OAAgB,EAChBa,SAAkB,EAClBC,UAAmB,EACnBxG,mBAA6C,EACV;IACnC,IAAKsG,IAAI,CAASlN,QAAQ,EAAE;MAC1B,IAAI,CAACnD,UAAU,CAAEqQ,IAAI,CAASlN,QAAQ,CAACjE,GAAG,CAACC,KAAK,CAAC;IACnD;IACA,OAAQkR,IAAI,CAASlN,QAAQ;IAE7B,IAAIjF,cAAc;IAGlB,IAAI,IAAI,CAACR,KAAK,GAAM,CAAC,IAAI,CAAC6S,UAAU,EAAE;MACpCrS,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;MACzD,IAAI,CAAC,IAAI,CAACT,KAAK,GAAU,CAAC,EAAE,IAAI,CAACsC,UAAU,CAAC,CAAC;IAC/C;IAEA,MAAMgM,MAAM,GAAG,KAAK,CAACoE,iBAAiB,CACpCC,IAAI,EACJvT,QAAQ,EACR0S,WAAW,EACXC,OAAO,EACPa,SAAS,EACTC,UAAU,EACVxG,mBACF,CAAC;IAGD,IAAI7L,cAAc,EAAE;MAElB,CAAC8N,MAAM,CAAC9P,KAAK,IAAI8P,MAAM,EAAE9N,cAAc,GAAGA,cAAc;IAC1D;IACA,OAAO8N,MAAM;EACf;EAEAwE,4BAA4BA,CAACrI,KAAgB,EAAa;IACxD,IAAI,IAAI,CAAC9K,GAAG,GAAY,CAAC,EAAE;MACzB,IAAI8K,KAAK,CAACrO,IAAI,KAAK,YAAY,EAAE;QAC/B,IAAI,CAACqD,KAAK,CAACpH,UAAU,CAACmC,iBAAiB,EAAE;UAAEkF,EAAE,EAAE+K;QAAM,CAAC,CAAC;MACzD;MACA,IAAI,IAAI,CAACyH,WAAW,CAACzH,KAAK,CAAC,EAAE;QAC3B,IAAI,CAAChL,KAAK,CAACpH,UAAU,CAAC4C,yBAAyB,EAAE;UAAEyE,EAAE,EAAE+K;QAAM,CAAC,CAAC;MACjE;MAECA,KAAK,CAAyB7D,QAAQ,GAAG,IAAI;IAChD;IACA,IAAI,IAAI,CAAC5G,KAAK,GAAS,CAAC,EAAE;MAExByK,KAAK,CAACxJ,cAAc,GAAG,IAAI,CAACuC,uBAAuB,CAAC,CAAC;IACvD,CAAC,MAAM,IAAI,IAAI,CAAC0O,WAAW,CAACzH,KAAK,CAAC,EAAE;MAClC,IAAI,CAAChL,KAAK,CAACpH,UAAU,CAAC0C,2BAA2B,EAAE;QAAE2E,EAAE,EAAE+K;MAAM,CAAC,CAAC;IACnE;IAEA,IAAI,IAAI,CAACzK,KAAK,GAAM,CAAC,IAAI,IAAI,CAACkS,WAAW,CAACzH,KAAK,CAAC,EAAE;MAChD,IAAI,CAAChL,KAAK,CAACpH,UAAU,CAAC8C,kBAAkB,EAAE;QAAEuE,EAAE,EAAE+K;MAAM,CAAC,CAAC;IAC1D;IAEA,IAAI,CAACvJ,gBAAgB,CAACuJ,KAAK,CAAC;IAC5B,OAAOA,KAAK;EACd;EAEAsI,iBAAiBA,CACf3T,QAA0B,EAC1BsR,IAAuB,EACZ;IACX,MAAMnU,IAAI,GAAG,KAAK,CAACwW,iBAAiB,CAAC3T,QAAQ,EAAEsR,IAAI,CAAC;IAEpD,IACEnU,IAAI,CAACH,IAAI,KAAK,mBAAmB,IACjCG,IAAI,CAAC0E,cAAc,IACnB1E,IAAI,CAAC2I,KAAK,CAACzD,KAAK,GAAGlF,IAAI,CAAC0E,cAAc,CAACQ,KAAK,EAC5C;MACA,IAAI,CAAChC,KAAK,CAACpH,UAAU,CAAC+C,qBAAqB,EAAE;QAC3CsE,EAAE,EAAEnD,IAAI,CAAC0E;MACX,CAAC,CAAC;IACJ;IAEA,OAAO1E,IAAI;EACb;EAEAyW,qBAAqBA,CAACzW,IAAiC,EAAE;IACvD,KAAK,CAACyW,qBAAqB,CAACzW,IAAI,CAAC;IACjC,IAAIA,IAAI,CAAC0W,MAAM,IAAI1W,IAAI,CAACC,UAAU,KAAK,OAAO,EAAE;MAC9C,IAAI,CAACiD,KAAK,CAACpH,UAAU,CAAC0B,6BAA6B,EAAE;QACnD2F,EAAE,EAAEnD,IAAI,CAACsS,UAAU,CAAC,CAAC,CAAC,CAACrN,GAAG,CAACC;MAC7B,CAAC,CAAC;IACJ;EACF;EAEAyR,yBAAyBA,CAKvB3W,IAAyB,EAAE4W,SAAoB,EAAE/W,IAAe,EAAQ;IACxE+W,SAAS,CAACC,KAAK,GAAG9W,iBAAiB,CAACC,IAAI,CAAC,GACrC,IAAI,CAACsH,6BAA6B,CAClB,IAAI,EACA,IACpB,CAAC,GACD,IAAI,CAACxD,eAAe,CAAC,CAAC;IAE1B9D,IAAI,CAACsS,UAAU,CAACzR,IAAI,CAAC,IAAI,CAACiW,qBAAqB,CAACF,SAAS,EAAE/W,IAAI,CAAC,CAAC;EACnE;EAEAkX,sBAAsBA,CAACC,QAAiB,EAAW;IACjD,IAAI,KAAK,CAACD,sBAAsB,CAACC,QAAQ,CAAC,EAAE,OAAO,IAAI;IACvD,IAAI,IAAI,CAACtR,YAAY,IAAS,CAAC,EAAE;MAC/B,IAAI,CAACsR,QAAQ,EAAE,OAAO,IAAI;MAC1B,MAAMC,EAAE,GAAG,IAAI,CAAChH,iBAAiB,CAAC,CAAC;MACnC,OAAOgH,EAAE,QAA6B,IAAIA,EAAE,OAAuB;IACrE;IACA,OAAO,CAACD,QAAQ,IAAI,IAAI,CAACtR,YAAY,GAAW,CAAC;EACnD;EAEAwR,gBAAgBA,CACdlX,IAA4D,EAC5DgX,QAAiB,EACjBG,KAAoB,EACpBlS,GAAc,EACR;IACN,KAAK,CAACiS,gBAAgB,CAAClX,IAAI,EAAEgX,QAAQ,EAAEG,KAAK,EAAElS,GAAG,CAAC;IAClD,IAAI+R,QAAQ,EAAE;MACZ,IAAI,CAACG,KAAK,IAAI,IAAI,CAAC1T,KAAK,GAAY,CAAC,EAAE;QAErC;MACF;MACCzD,IAAI,CAA8BgH,UAAU,GAC3CmQ,KAAK,KAAK,MAAM,GAAGA,KAAK,GAAG,OAAO;IACtC,CAAC,MAAM;MACL,IAAIA,KAAK,KAAK,MAAM,IAAI,IAAI,CAAC1T,KAAK,GAAQ,CAAC,EAAE,IAAI,CAACsC,UAAU,CAAC,CAAC;MAC7D/F,IAAI,CAAyBC,UAAU,GACtCkX,KAAK,KAAK,MAAM,IAAIA,KAAK,KAAK,QAAQ,GAAGA,KAAK,GAAG,OAAO;IAC5D;EACF;EAGAC,oBAAoBA,CAClBR,SAAc,EACdS,gBAAyB,EACzBC,kBAA2B,EAE3BC,eAAwB,EAExBC,WAAqC,EAClB;IACnB,MAAMC,UAAU,GAAGb,SAAS,CAACc,QAAQ;IAErC,IAAIC,iBAAiB,GAAG,IAAI;IAC5B,IAAIF,UAAU,CAAC5X,IAAI,KAAK,YAAY,EAAE;MACpC,IAAI4X,UAAU,CAAC1S,IAAI,KAAK,MAAM,EAAE;QAC9B4S,iBAAiB,GAAG,MAAM;MAC5B,CAAC,MAAM,IAAIF,UAAU,CAAC1S,IAAI,KAAK,QAAQ,EAAE;QACvC4S,iBAAiB,GAAG,QAAQ;MAC9B;IACF;IAEA,IAAI3D,SAAS,GAAG,KAAK;IACrB,IAAI,IAAI,CAACtO,YAAY,GAAO,CAAC,IAAI,CAAC,IAAI,CAACkS,qBAAqB,CAAC,IAAI,CAAC,EAAE;MAClE,MAAMC,QAAQ,GAAG,IAAI,CAAC/T,eAAe,CAAC,IAAI,CAAC;MAC3C,IACE6T,iBAAiB,KAAK,IAAI,IAC1B,CAAC,IAAA1I,iCAA0B,EAAC,IAAI,CAAC3M,KAAK,CAACzC,IAAI,CAAC,EAC5C;QAEA+W,SAAS,CAACc,QAAQ,GAAGG,QAAQ;QAC7BjB,SAAS,CAAC3W,UAAU,GAAG0X,iBAAiB;QACxCf,SAAS,CAACC,KAAK,GAAG,IAAAiB,qBAAe,EAACD,QAAQ,CAAC;MAC7C,CAAC,MAAM;QAELjB,SAAS,CAACc,QAAQ,GAAGD,UAAU;QAC/Bb,SAAS,CAAC3W,UAAU,GAAG,IAAI;QAC3B2W,SAAS,CAACC,KAAK,GAAG,IAAI,CAAC/S,eAAe,CAAC,CAAC;MAC1C;IACF,CAAC,MAAM;MACL,IACE6T,iBAAiB,KAAK,IAAI,IAC1B,IAAA1I,iCAA0B,EAAC,IAAI,CAAC3M,KAAK,CAACzC,IAAI,CAAC,EAC3C;QAEA+W,SAAS,CAACc,QAAQ,GAAG,IAAI,CAAC5T,eAAe,CAAC,IAAI,CAAC;QAC/C8S,SAAS,CAAC3W,UAAU,GAAG0X,iBAAiB;MAC1C,CAAC,MAAM;QACL,IAAIN,gBAAgB,EAAE;UAEpB,MAAM,IAAI,CAACnU,KAAK,CAAC8I,kBAAM,CAAC+L,qBAAqB,EAAE;YAC7C5U,EAAE,EAAEyT,SAAS;YACboB,UAAU,EAAEP,UAAU,CAACxV;UACzB,CAAC,CAAC;QACJ;QAEA2U,SAAS,CAACc,QAAQ,GAAGD,UAAU;QAC/Bb,SAAS,CAAC3W,UAAU,GAAG,IAAI;MAC7B;MAEA,IAAI,IAAI,CAACqF,aAAa,GAAO,CAAC,EAAE;QAC9BsR,SAAS,CAACC,KAAK,GAAG,IAAI,CAAC/S,eAAe,CAAC,CAAC;MAC1C,CAAC,MAAM;QACLkQ,SAAS,GAAG,IAAI;QAChB4C,SAAS,CAACC,KAAK,GAAG,IAAAiB,qBAAe,EAAClB,SAAS,CAACc,QAAQ,CAAC;MACvD;IACF;IAEA,MAAMO,qBAAqB,GAAGlY,iBAAiB,CAAC6W,SAAS,CAAC;IAE1D,IAAIU,kBAAkB,IAAIW,qBAAqB,EAAE;MAC/C,IAAI,CAAC/U,KAAK,CAACpH,UAAU,CAAC2B,mCAAmC,EAAE;QACzD0F,EAAE,EAAEyT;MACN,CAAC,CAAC;IACJ;IAEA,IAAIU,kBAAkB,IAAIW,qBAAqB,EAAE;MAC/C,IAAI,CAACzP,iBAAiB,CACpBoO,SAAS,CAACC,KAAK,CAAC9R,IAAI,EACpB6R,SAAS,CAACC,KAAK,CAAC5R,GAAG,CAACC,KAAK,EACP,IACpB,CAAC;IACH;IAEA,IAAI8O,SAAS,IAAI,CAACsD,kBAAkB,IAAI,CAACW,qBAAqB,EAAE;MAC9D,IAAI,CAACC,iBAAiB,CACpBtB,SAAS,CAACC,KAAK,CAAC9R,IAAI,EACpB6R,SAAS,CAAC3R,GAAG,CAACC,KAAK,EACnB,IAAI,EACJ,IACF,CAAC;IACH;IAEA,OAAO,IAAI,CAAC4R,qBAAqB,CAACF,SAAS,EAAE,iBAAiB,CAAC;EACjE;EAEAuB,gBAAgBA,CAAA,EAAc;IAC5B,QAAQ,IAAI,CAAC7V,KAAK,CAACzC,IAAI;MACrB;QAEE,OAAO,IAAI,CAACiE,eAAe,CAAe,IAAI,CAAC;MACjD;QACE,OAAO,KAAK,CAACqU,gBAAgB,CAAC,CAAC;IACnC;EACF;EAGAC,mBAAmBA,CACjBpY,IAAwB,EACxByV,aAAsB,EAChB;IAEN,MAAMhP,IAAI,GAAGzG,IAAI,CAACyG,IAAI;IACtB,IAAIA,IAAI,KAAK,KAAK,IAAIA,IAAI,KAAK,KAAK,IAAI,IAAI,CAAChD,KAAK,GAAM,CAAC,EAAE;MACzDzD,IAAI,CAACiE,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;IAChE;IACA,KAAK,CAACkU,mBAAmB,CAACpY,IAAI,EAAEyV,aAAa,CAAC;EAChD;EAGA4C,UAAUA,CACRC,IAA0B,EAC1B7R,IAA6B,EACvB;IACN,KAAK,CAAC4R,UAAU,CAACC,IAAI,EAAE7R,IAAI,CAAC;IAC5B,IAAI,IAAI,CAAChD,KAAK,GAAS,CAAC,EAAE;MAExB6U,IAAI,CAACzU,EAAE,CAACa,cAAc,GAAG,IAAI,CAACuC,uBAAuB,CAAC,CAAC;MACvD,IAAI,CAACtC,gBAAgB,CAAC2T,IAAI,CAACzU,EAAE,CAAC;IAChC;EACF;EAGA0U,iCAAiCA,CAC/BvY,IAA+B,EAC/BwY,IAAsB,EACK;IAC3B,IAAI,IAAI,CAAC/U,KAAK,GAAS,CAAC,EAAE;MACxB,MAAM+F,qBAAqB,GAAG,IAAI,CAAClH,KAAK,CAACmH,kBAAkB;MAC3D,IAAI,CAACnH,KAAK,CAACmH,kBAAkB,GAAG,IAAI;MAEpCzJ,IAAI,CAACyE,UAAU,GAAG,IAAI,CAACwC,uBAAuB,CAAC,CAAC;MAChD,IAAI,CAAC3E,KAAK,CAACmH,kBAAkB,GAAGD,qBAAqB;IACvD;IAEA,OAAO,KAAK,CAAC+O,iCAAiC,CAACvY,IAAI,EAAEwY,IAAI,CAAC;EAC5D;EAGAC,qBAAqBA,CAAA,EAAY;IAC/B,OAAO,IAAI,CAAChV,KAAK,GAAS,CAAC,IAAI,KAAK,CAACgV,qBAAqB,CAAC,CAAC;EAC9D;EAYA5H,gBAAgBA,CACdf,mBAA6C,EAC7C4I,cAAyB,EACX;IAAA,IAAAC,IAAA;IACd,IAAIrW,KAAK,GAAG,IAAI;IAEhB,IAAIsW,GAAG;IAEP,IACE,IAAI,CAACC,SAAS,CAAC,KAAK,CAAC,KACpB,IAAI,CAACpV,KAAK,IAAe,CAAC,IAAI,IAAI,CAACA,KAAK,GAAM,CAAC,CAAC,EACjD;MACAnB,KAAK,GAAG,IAAI,CAACA,KAAK,CAAC6N,KAAK,CAAC,CAAC;MAE1ByI,GAAG,GAAG,IAAI,CAACE,QAAQ,CACjB,MAAM,KAAK,CAACjI,gBAAgB,CAACf,mBAAmB,EAAE4I,cAAc,CAAC,EACjEpW,KACF,CAAC;MAID,IAAI,CAACsW,GAAG,CAACG,KAAK,EAAE,OAAOH,GAAG,CAAC5Y,IAAI;MAK/B,MAAM;QAAEgZ;MAAQ,CAAC,GAAG,IAAI,CAAC1W,KAAK;MAC9B,MAAM2W,cAAc,GAAGD,OAAO,CAACA,OAAO,CAACpY,MAAM,GAAG,CAAC,CAAC;MAClD,IAAIqY,cAAc,KAAKC,cAAE,CAACC,MAAM,IAAIF,cAAc,KAAKC,cAAE,CAACE,MAAM,EAAE;QAChEJ,OAAO,CAAChI,GAAG,CAAC,CAAC;MACf;IACF;IAEA,IAAI,CAAA2H,IAAA,GAAAC,GAAG,aAAHD,IAAA,CAAKI,KAAK,IAAI,IAAI,CAACtV,KAAK,GAAM,CAAC,EAAE;MAAA,IAAA4V,KAAA,EAAAC,KAAA;MACnChX,KAAK,GAAGA,KAAK,IAAI,IAAI,CAACA,KAAK,CAAC6N,KAAK,CAAC,CAAC;MAEnC,IAAIlM,cAA0C;MAE9C,MAAMsV,KAAK,GAAG,IAAI,CAACT,QAAQ,CAACU,KAAK,IAAI;QAAA,IAAAC,qBAAA;QACnCxV,cAAc,GAAG,IAAI,CAACC,iCAAiC,CAAC,CAAC;QAEzD,MAAMwV,eAAe,GAAG,IAAI,CAAC9K,gCAAgC,CAC3D3K,cAAc,EACd,MAAM;UACJ,MAAM8N,MAAM,GAAG,KAAK,CAAClB,gBAAgB,CACnCf,mBAAmB,EACnB4I,cACF,CAAC;UAED,IAAI,CAACiB,0BAA0B,CAAC5H,MAAM,EAAE9N,cAAc,CAAC;UAEvD,OAAO8N,MAAM;QACf,CACF,CAAC;QAID,KAAA0H,qBAAA,GAAIC,eAAe,CAACjI,KAAK,aAArBgI,qBAAA,CAAuBjF,aAAa,EAAEgF,KAAK,CAAC,CAAC;QAKjD,MAAMlK,IAAI,GAAG,IAAI,CAACsK,6BAA6B,CAACF,eAAe,CAAC;QAEhE,IAAIpK,IAAI,CAACzP,IAAI,KAAK,yBAAyB,EAAE2Z,KAAK,CAAC,CAAC;QAEpDlK,IAAI,CAACrL,cAAc,GAAGA,cAAc;QACpC,IAAI,CAAC0V,0BAA0B,CAACrK,IAAI,EAAErL,cAAc,CAAC;QAErD,OAAOyV,eAAe;MACxB,CAAC,EAAEpX,KAAK,CAAC;MAET,IAAIoX,eAII,GAAG,IAAI;MAEf,IACEH,KAAK,CAACvZ,IAAI,IAEV,IAAI,CAAC4Z,6BAA6B,CAACL,KAAK,CAACvZ,IAAI,CAAC,CAACH,IAAI,KACjD,yBAAyB,EAC3B;QACA,IAAI,CAAC0Z,KAAK,CAACR,KAAK,IAAI,CAACQ,KAAK,CAACM,OAAO,EAAE;UAGlC,IAAIN,KAAK,CAACvZ,IAAI,CAAC8Z,KAAK,EAAE;YAEpB,IAAI,CAAC5W,KAAK,CACRpH,UAAU,CAACwD,+CAA+C,EAC1D;cAAE6D,EAAE,EAAEc;YAAe,CACvB,CAAC;UACH;UAEA,OAAOsV,KAAK,CAACvZ,IAAI;QACnB;QAGA0Z,eAAe,GAAGH,KAAK,CAACvZ,IAAI;MAC9B;MAQA,KAAAqZ,KAAA,GAAIT,GAAG,aAAHS,KAAA,CAAKrZ,IAAI,EAAE;QAEb,IAAI,CAACsC,KAAK,GAAGsW,GAAG,CAACmB,SAAS;QAC1B,OAAOnB,GAAG,CAAC5Y,IAAI;MACjB;MAEA,IAAI0Z,eAAe,EAAE;QAEnB,IAAI,CAACpX,KAAK,GAAGiX,KAAK,CAACQ,SAAS;QAC5B,OAAOL,eAAe;MACxB;MAEA,KAAAJ,KAAA,GAAIV,GAAG,aAAHU,KAAA,CAAKU,MAAM,EAAE,MAAMpB,GAAG,CAACG,KAAK;MAChC,IAAIQ,KAAK,CAACS,MAAM,EAAE,MAAMT,KAAK,CAACR,KAAK;MAGnC,MAAM,IAAI,CAAC7V,KAAK,CAACpH,UAAU,CAACuD,iCAAiC,EAAE;QAC7D8D,EAAE,EAAEc;MACN,CAAC,CAAC;IACJ;IAEA,OAAO,KAAK,CAAC4M,gBAAgB,CAACf,mBAAmB,EAAE4I,cAAc,CAAC;EACpE;EAGAuB,UAAUA,CACRja,IAAuC,EACe;IACtD,IAAI,IAAI,CAACyD,KAAK,GAAS,CAAC,EAAE;MAExB,MAAMsO,MAAM,GAAG,IAAI,CAAC+G,QAAQ,CAAC,MAAM;QACjC,MAAMtP,qBAAqB,GAAG,IAAI,CAAClH,KAAK,CAACmH,kBAAkB;QAC3D,IAAI,CAACnH,KAAK,CAACmH,kBAAkB,GAAG,IAAI;QAEpC,MAAM1F,QAAQ,GAAG,IAAI,CAACpB,SAAS,CAAmB,CAAC;QAEnD,CACEoB,QAAQ,CAACW,cAAc,EAEvB1E,IAAI,CAACwD,SAAS,CACf,GAAG,IAAI,CAACD,oCAAoC,CAAC,CAAC;QAE/C,IAAI,CAACjB,KAAK,CAACmH,kBAAkB,GAAGD,qBAAqB;QAErD,IAAI,IAAI,CAACoE,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC7H,UAAU,CAAC,CAAC;QAChD,IAAI,CAAC,IAAI,CAACtC,KAAK,GAAS,CAAC,EAAE,IAAI,CAACsC,UAAU,CAAC,CAAC;QAE5C,OAAOhC,QAAQ;MACjB,CAAC,CAAC;MAEF,IAAIgO,MAAM,CAACiI,MAAM,EAAE,OAAO,IAAI;MAG9B,IAAIjI,MAAM,CAACgH,KAAK,EAAE,IAAI,CAACzW,KAAK,GAAGyP,MAAM,CAACgI,SAAS;MAI/C/Z,IAAI,CAACyE,UAAU,GAAGsN,MAAM,CAAC/R,IAAI,CAAC0E,cAAc,GACxC,IAAI,CAACpB,UAAU,CAACyO,MAAM,CAAC/R,IAAI,EAAE,gBAAgB,CAAC,GAC9C,IAAI;IACV;IAEA,OAAO,KAAK,CAACia,UAAU,CAACja,IAAI,CAAC;EAC/B;EAEAka,gBAAgBA,CAAC7V,MAAqB,EAAW;IAC/C,OAAO,IAAI,CAACZ,KAAK,GAAS,CAAC,IAAI,KAAK,CAACyW,gBAAgB,CAAC7V,MAAM,CAAC;EAC/D;EAEA8V,0BAA0BA,CACxBna,IAA+B,EAC/BqE,MAAmB,EACb;IACN,IAAI,IAAI,CAAC/B,KAAK,CAACwO,yBAAyB,CAACkB,OAAO,CAAChS,IAAI,CAACkF,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE;MACnElF,IAAI,CAACqE,MAAM,GAAGA,MAAM;IACtB,CAAC,MAAM;MACL,KAAK,CAAC8V,0BAA0B,CAACna,IAAI,EAAEqE,MAAM,CAAC;IAChD;EACF;EAEAwN,WAAWA,CACT7R,IAAgB,EAChBoa,eAAwB,EACxBC,eAAgC,EAChCC,iBAA0B,GAAG,IAAI,EAC3B;IACN,IACED,eAAe,IACf,IAAI,CAAC/X,KAAK,CAACwO,yBAAyB,CAACkB,OAAO,CAAChS,IAAI,CAACkF,KAAK,CAAC,KAAK,CAAC,CAAC,EAC/D;MACA;IACF;IAGA,KAAK,IAAIvE,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGX,IAAI,CAACqE,MAAM,CAACzD,MAAM,EAAED,CAAC,EAAE,EAAE;MAC3C,IAAI,IAAI,CAACgV,WAAW,CAAC3V,IAAI,CAACqE,MAAM,CAAC1D,CAAC,CAAC,CAAC,IAAIA,CAAC,GAAG,CAAC,EAAE;QAC7C,IAAI,CAACuC,KAAK,CAACpH,UAAU,CAAC6C,oBAAoB,EAAE;UAAEwE,EAAE,EAAEnD,IAAI,CAACqE,MAAM,CAAC1D,CAAC;QAAE,CAAC,CAAC;MACrE;IACF;IAEA,KAAK,CAACkR,WAAW,CACf7R,IAAI,EACJoa,eAAe,EACfC,eAAe,EACfC,iBACF,CAAC;EACH;EAEAC,kCAAkCA,CAACC,UAAmB,EAAgB;IACpE,OAAO,KAAK,CAACD,kCAAkC,CAC7CC,UAAU,IAAI,IAAI,CAAClY,KAAK,CAAC+N,SAAS,CAAC2B,OAAO,CAAC,IAAI,CAAC1P,KAAK,CAAC4C,KAAK,CAAC,KAAK,CAAC,CACpE,CAAC;EACH;EAEAuV,eAAeA,CACbC,IAAkB,EAElB7X,QAAkB,EAClB8X,OAAwB,EACV;IACd,IACED,IAAI,CAAC7a,IAAI,KAAK,YAAY,IAC1B6a,IAAI,CAAC3V,IAAI,KAAK,OAAO,IACrB,IAAI,CAACzC,KAAK,CAAC+N,SAAS,CAAC2B,OAAO,CAACnP,QAAQ,CAACI,KAAK,CAAC,KAAK,CAAC,CAAC,EACnD;MACA,IAAI,CAACH,IAAI,CAAC,CAAC;MAEX,MAAM9C,IAAI,GAAG,IAAI,CAACuK,WAAW,CAAC1H,QAAQ,CAAC;MACvC7C,IAAI,CAAC4a,MAAM,GAAGF,IAAI;MAClB1a,IAAI,CAAC6a,SAAS,GAAG,KAAK,CAACC,4BAA4B,KAAY,KAAK,CAAC;MACrEJ,IAAI,GAAG,IAAI,CAACpX,UAAU,CAACtD,IAAI,EAAE,gBAAgB,CAAC;IAChD,CAAC,MAAM,IACL0a,IAAI,CAAC7a,IAAI,KAAK,YAAY,IAC1B6a,IAAI,CAAC3V,IAAI,KAAK,OAAO,IACrB,IAAI,CAACtB,KAAK,GAAM,CAAC,EACjB;MACA,MAAMnB,KAAK,GAAG,IAAI,CAACA,KAAK,CAAC6N,KAAK,CAAC,CAAC;MAChC,MAAMoJ,KAAK,GAAG,IAAI,CAACT,QAAQ,CACzBU,KAAK,IAAI,IAAI,CAACuB,iCAAiC,CAAClY,QAAQ,CAAC,IAAI2W,KAAK,CAAC,CAAC,EACpElX,KACF,CAAC;MAID,IAAI,CAACiX,KAAK,CAACR,KAAK,IAAI,CAACQ,KAAK,CAACM,OAAO,EAAE,OAAON,KAAK,CAACvZ,IAAI;MAErD,MAAM+R,MAAM,GAAG,IAAI,CAAC+G,QAAQ,CAC1B,MAAM,KAAK,CAAC2B,eAAe,CAACC,IAAI,EAAE7X,QAAQ,EAAE8X,OAAO,CAAC,EACpDrY,KACF,CAAC;MAED,IAAIyP,MAAM,CAAC/R,IAAI,IAAI,CAAC+R,MAAM,CAACgH,KAAK,EAAE,OAAOhH,MAAM,CAAC/R,IAAI;MAEpD,IAAIuZ,KAAK,CAACvZ,IAAI,EAAE;QACd,IAAI,CAACsC,KAAK,GAAGiX,KAAK,CAACQ,SAAS;QAE5B,OAAOR,KAAK,CAACvZ,IAAI;MACnB;MAEA,IAAI+R,MAAM,CAAC/R,IAAI,EAAE;QACf,IAAI,CAACsC,KAAK,GAAGyP,MAAM,CAACgI,SAAS;QAC7B,OAAOhI,MAAM,CAAC/R,IAAI;MACpB;MAEA,MAAMuZ,KAAK,CAACR,KAAK,IAAIhH,MAAM,CAACgH,KAAK;IACnC;IAEA,OAAO,KAAK,CAAC0B,eAAe,CAACC,IAAI,EAAE7X,QAAQ,EAAE8X,OAAO,CAAC;EACvD;EAEAK,cAAcA,CACZN,IAAkB,EAElB7X,QAAkB,EAClB8X,OAAmC,EACnCM,cAAqC,EACvB;IACd,IAAI,IAAI,CAACxX,KAAK,GAAe,CAAC,IAAI,IAAI,CAACyX,mBAAmB,CAAC,CAAC,EAAE;MAC5DD,cAAc,CAACE,mBAAmB,GAAG,IAAI;MACzC,IAAIR,OAAO,EAAE;QACXM,cAAc,CAACG,IAAI,GAAG,IAAI;QAC1B,OAAOV,IAAI;MACb;MACA,IAAI,CAAC5X,IAAI,CAAC,CAAC;MACX,MAAM9C,IAAI,GAAG,IAAI,CAACuK,WAAW,CAA2B1H,QAAQ,CAAC;MACjE7C,IAAI,CAAC4a,MAAM,GAAGF,IAAI;MAClB1a,IAAI,CAACqb,aAAa,GAAG,IAAI,CAACjT,mCAAmC,CAAC,CAAC;MAC/D,IAAI,CAAC5F,MAAM,GAAU,CAAC;MACtBxC,IAAI,CAAC6a,SAAS,GAAG,IAAI,CAACC,4BAA4B,KAAY,KAAK,CAAC;MACpE9a,IAAI,CAACqK,QAAQ,GAAG,IAAI;MACpB,OAAO,IAAI,CAACiR,oBAAoB,CAACtb,IAAI,EAAiB,IAAI,CAAC;IAC7D,CAAC,MAAM,IAAI,CAAC2a,OAAO,IAAI,IAAI,CAACnZ,gBAAgB,CAAC,CAAC,IAAI,IAAI,CAACiC,KAAK,GAAM,CAAC,EAAE;MACnE,MAAMzD,IAAI,GAAG,IAAI,CAACuK,WAAW,CAE3B1H,QAAQ,CAAC;MACX7C,IAAI,CAAC4a,MAAM,GAAGF,IAAI;MAElB,MAAM3I,MAAM,GAAG,IAAI,CAAC+G,QAAQ,CAAC,MAAM;QACjC9Y,IAAI,CAACqb,aAAa,GAChB,IAAI,CAAC3R,4CAA4C,CAAC,CAAC;QACrD,IAAI,CAAClH,MAAM,GAAU,CAAC;QACtBxC,IAAI,CAAC6a,SAAS,GAAG,KAAK,CAACC,4BAA4B,KAAY,KAAK,CAAC;QACrE,IAAIG,cAAc,CAACE,mBAAmB,EAAE;UACrCnb,IAAI,CAAsCqK,QAAQ,GAAG,KAAK;QAC7D;QACA,OAAO,IAAI,CAACiR,oBAAoB,CAC9Btb,IAAI,EACJib,cAAc,CAACE,mBACjB,CAAC;MACH,CAAC,CAAC;MAEF,IAAIpJ,MAAM,CAAC/R,IAAI,EAAE;QACf,IAAI+R,MAAM,CAACgH,KAAK,EAAE,IAAI,CAACzW,KAAK,GAAGyP,MAAM,CAACgI,SAAS;QAC/C,OAAOhI,MAAM,CAAC/R,IAAI;MACpB;IACF;IAEA,OAAO,KAAK,CAACgb,cAAc,CACzBN,IAAI,EAEJ7X,QAAQ,EACR8X,OAAO,EACPM,cACF,CAAC;EACH;EAEAM,cAAcA,CAACvb,IAAqB,EAAQ;IAC1C,KAAK,CAACub,cAAc,CAACvb,IAAI,CAAC;IAE1B,IAAIwb,KAAK,GAAG,IAAI;IAChB,IAAI,IAAI,CAACha,gBAAgB,CAAC,CAAC,IAAI,IAAI,CAACiC,KAAK,GAAM,CAAC,EAAE;MAChD+X,KAAK,GAAG,IAAI,CAAC1C,QAAQ,CAAC,MACpB,IAAI,CAACpP,4CAA4C,CAAC,CACpD,CAAC,CAAC1J,IAAI;IACR;IACAA,IAAI,CAACqb,aAAa,GAAGG,KAAK;EAC5B;EAEAT,iCAAiCA,CAC/BlY,QAAkB,EAC4B;IAC9C,MAAM7C,IAAI,GAAG,IAAI,CAACuK,WAAW,CAA4B1H,QAAQ,CAAC;IAClE,IAAI,CAACuV,mBAAmB,CAACpY,IAAI,EAAE,KAAK,CAAC;IACrC,IAAI,CAAC,IAAI,CAACia,UAAU,CAACja,IAAI,CAAC,EAAE;IAC5B,OAAO,KAAK,CAACyb,oBAAoB,CAC/Bzb,IAAI,EACSqB,SAAS,EACR,IAChB,CAAC;EACH;EAEAqa,qBAAqBA,CAAC/H,IAAY,EAAQ;IACxC,MAAM7Q,IAAI,GAAG,IAAI,CAAC8Q,KAAK,CAACC,UAAU,CAAC,IAAI,CAACvR,KAAK,CAACsK,GAAG,GAAG,CAAC,CAAC;IACtD,IACE+G,IAAI,OAAuB,IAC3B7Q,IAAI,OAAoB,IACxB,IAAI,CAACR,KAAK,CAACqZ,cAAc,EACzB;MACA,IAAI,CAACrZ,KAAK,CAACqZ,cAAc,GAAG,KAAK;MACjC,IAAI,CAACrZ,KAAK,CAACsK,GAAG,IAAI,CAAC;MACnB,IAAI,CAACgP,SAAS,CAAC,CAAC;MAChB;IACF;IAEA,KAAK,CAACF,qBAAqB,CAAC/H,IAAI,CAAC;EACnC;EAEAkI,kBAAkBA,CAAClI,IAAY,EAAQ;IACrC,MAAM7Q,IAAI,GAAG,IAAI,CAAC8Q,KAAK,CAACC,UAAU,CAAC,IAAI,CAACvR,KAAK,CAACsK,GAAG,GAAG,CAAC,CAAC;IACtD,IACE+G,IAAI,QAA0B,IAC9B7Q,IAAI,QAA8B,EAClC;MAEA,IAAI,CAACgR,QAAQ,IAAe,CAAC,CAAC;MAC9B;IACF;IAEA,KAAK,CAAC+H,kBAAkB,CAAClI,IAAI,CAAC;EAChC;EAEAmI,aAAaA,CAACC,IAAY,EAAEC,OAAkB,EAAU;IACtD,MAAMC,QAAQ,GAAG,KAAK,CAACH,aAAa,CAACC,IAAI,EAAEC,OAAO,CAAC;IACnD,IAAI,IAAI,CAAC1Z,KAAK,CAACqZ,cAAc,EAAE;MAC7B,IAAI,CAACzY,KAAK,CAACpH,UAAU,CAAC4D,uBAAuB,EAAE;QAC7CyD,EAAE,EAAE,IAAI,CAACb,KAAK,CAACkR,WAAW,CAAC;MAC7B,CAAC,CAAC;IACJ;IACA,OAAOyI,QAAQ;EACjB;EAEAC,gBAAgBA,CAAA,EAA+B;IAC7C,IAAI,IAAI,CAACrD,SAAS,CAAC,cAAc,CAAC,IAAI,IAAI,CAACsD,eAAe,CAAC,CAAC,EAAE;MAC5D,IAAI,IAAI,CAAC7Z,KAAK,CAACqZ,cAAc,EAAE;QAC7B,MAAM,IAAI,CAACzY,KAAK,CAACpH,UAAU,CAACkC,iBAAiB,EAAE;UAC7CmF,EAAE,EAAE,IAAI,CAACb,KAAK,CAACO;QACjB,CAAC,CAAC;MACJ;MACA,IAAI,CAACuZ,wBAAwB,CAAC,CAAC;MAC/B,MAAMC,WAAW,GAAG,IAAI,CAACF,eAAe,CAAC,CAAC;MAC1C,IAAIE,WAAW,EAAE;QACf,IAAI,CAAC/Z,KAAK,CAACsK,GAAG,IAAIyP,WAAW;QAC7B,IAAI,CAAC/Z,KAAK,CAACqZ,cAAc,GAAG,IAAI;MAClC;MACA;IACF;IAEA,OAAO,KAAK,CAACO,gBAAgB,CAAC,IAAI,CAAC5Z,KAAK,CAACqZ,cAAc,GAAG,KAAK,GAAG,IAAI,CAAC;EACzE;EAEAQ,eAAeA,CAAA,EAAmB;IAChC,MAAM;MAAEvP;IAAI,CAAC,GAAG,IAAI,CAACtK,KAAK;IAC1B,IAAIga,yBAAyB,GAAG,CAAC;IACjC,OACE,OAAgC,CAACC,QAAQ,CAEvC,IAAI,CAAC3I,KAAK,CAACC,UAAU,CAACjH,GAAG,GAAG0P,yBAAyB,CACvD,CAAC,EACD;MACAA,yBAAyB,EAAE;IAC7B;IAEA,MAAME,GAAG,GAAG,IAAI,CAAC5I,KAAK,CAACC,UAAU,CAACyI,yBAAyB,GAAG1P,GAAG,CAAC;IAClE,MAAM6P,GAAG,GAAG,IAAI,CAAC7I,KAAK,CAACC,UAAU,CAACyI,yBAAyB,GAAG1P,GAAG,GAAG,CAAC,CAAC;IAEtE,IAAI4P,GAAG,OAAoB,IAAIC,GAAG,OAAoB,EAAE;MACtD,OAAOH,yBAAyB,GAAG,CAAC;IACtC;IACA,IACE,IAAI,CAAC1I,KAAK,CAAC8I,KAAK,CACdJ,yBAAyB,GAAG1P,GAAG,EAC/B0P,yBAAyB,GAAG1P,GAAG,GAAG,EACpC,CAAC,KAAK,cAAc,EACpB;MACA,OAAO0P,yBAAyB,GAAG,EAAE;IACvC;IACA,IAAIE,GAAG,OAAoB,IAAIC,GAAG,OAAoB,EAAE;MACtD,OAAOH,yBAAyB;IAClC;IACA,OAAO,KAAK;EACd;EAEAF,wBAAwBA,CAAA,EAAS;IAC/B,MAAM5N,GAAG,GAAG,IAAI,CAACoF,KAAK,CAAC5B,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC1P,KAAK,CAACsK,GAAG,CAAC;IACpD,IAAI4B,GAAG,KAAK,CAAC,CAAC,EAAE;MACd,MAAM,IAAI,CAACtL,KAAK,CAAC8I,kBAAM,CAAC2Q,mBAAmB,EAAE;QAC3CxZ,EAAE,EAAE,IAAI,CAACb,KAAK,CAACkR,WAAW,CAAC;MAC7B,CAAC,CAAC;IACJ;EACF;EAIAoJ,wCAAwCA,CACtC3X,GAAa,EACb;IACExI,QAAQ;IACRD;EAIF,CAAC,EACK;IACN,IAAI,CAAC0G,KAAK,CAACpH,UAAU,CAACS,+BAA+B,EAAE;MACrD4G,EAAE,EAAE8B,GAAG;MACPzI,UAAU;MACVC;IACF,CAAC,CAAC;EACJ;EAEAogB,qCAAqCA,CACnC5X,GAAa,EACb6X,WAAwB,EACxB;IACA,OAAO,IAAI,CAAC5Z,KAAK,CACf,CAAC4Z,WAAW,CAAC9f,YAAY,GACrBlB,UAAU,CAACoB,uCAAuC,GAClD4f,WAAW,CAAC9f,YAAY,KAAK,QAAQ,GACrClB,UAAU,CAACmB,sCAAsC,GACjDnB,UAAU,CAACiB,uCAAuC,EAAAmB,MAAA,CAAAC,MAAA;MAEpDgF,EAAE,EAAE8B;IAAG,GACJ6X,WAAW,CAElB,CAAC;EACH;EAEAC,uCAAuCA,CACrC9X,GAAa,EACb;IACExI,QAAQ;IACRD;EAIF,CAAC,EACK;IACN,IAAI,CAAC0G,KAAK,CAACpH,UAAU,CAACuB,8BAA8B,EAAE;MACpD8F,EAAE,EAAE8B,GAAG;MACPxI,QAAQ;MACRD;IACF,CAAC,CAAC;EACJ;EAEAwgB,kDAAkDA,CAChDhd,IAAY,EACZ;IACEvD;EAGF,CAAC,EACK;IACN,IAAI,CAACyG,KAAK,CAACpH,UAAU,CAACwB,yCAAyC,EAAE;MAC/D6F,EAAE,EAAEnD,IAAI;MACRvD;IACF,CAAC,CAAC;EACJ;EAEAwgB,kBAAkBA,CAAA,EAAmB;IACnC,MAAMpa,QAAQ,GAAG,IAAI,CAACP,KAAK,CAACO,QAAQ;IACpC,MAAMqa,SAAS,GAAGA,CAAA,KAAM,IAAI,CAACzZ,KAAK,GAAS,CAAC,IAAI,IAAI,CAACA,KAAK,EAAU,CAAC;IACrE,QAAQ,IAAI,CAACnB,KAAK,CAACzC,IAAI;MACrB;QAAa;UACX,MAAMsd,OAAO,GAAG,IAAI,CAACC,mBAAmB,CAAC,IAAI,CAAC9a,KAAK,CAACL,KAAK,CAAC;UAC1D,IAAIib,SAAS,CAAC,CAAC,EAAE;YACf,OAAO;cAAErd,IAAI,EAAE,QAAQ;cAAEoF,GAAG,EAAEkY,OAAO,CAAClY,GAAG,CAACC,KAAK;cAAEjD,KAAK,EAAEkb;YAAQ,CAAC;UACnE;UACA,OAAO;YAAEtd,IAAI,EAAE,SAAS;YAAEoF,GAAG,EAAEpC;UAAS,CAAC;QAC3C;MACA;QAAgB;UACd,MAAMsa,OAAO,GAAG,IAAI,CAACE,kBAAkB,CAAC,IAAI,CAAC/a,KAAK,CAACL,KAAK,CAAC;UACzD,IAAIib,SAAS,CAAC,CAAC,EAAE;YACf,OAAO;cAAErd,IAAI,EAAE,QAAQ;cAAEoF,GAAG,EAAEkY,OAAO,CAAClY,GAAG,CAACC,KAAK;cAAEjD,KAAK,EAAEkb;YAAQ,CAAC;UACnE;UACA,OAAO;YAAEtd,IAAI,EAAE,SAAS;YAAEoF,GAAG,EAAEpC;UAAS,CAAC;QAC3C;MACA;MACA;QAAgB;UACd,MAAMsa,OAAO,GAAG,IAAI,CAACG,mBAAmB,CAAC,IAAI,CAAC7Z,KAAK,GAAS,CAAC,CAAC;UAC9D,IAAIyZ,SAAS,CAAC,CAAC,EAAE;YACf,OAAO;cACLrd,IAAI,EAAE,SAAS;cACfoF,GAAG,EAAEkY,OAAO,CAAClY,GAAG,CAACC,KAAK;cACtBjD,KAAK,EAAEkb;YACT,CAAC;UACH;UACA,OAAO;YAAEtd,IAAI,EAAE,SAAS;YAAEoF,GAAG,EAAEpC;UAAS,CAAC;QAC3C;MACA;QACE,OAAO;UAAEhD,IAAI,EAAE,SAAS;UAAEoF,GAAG,EAAEpC;QAAS,CAAC;IAC7C;EACF;EAEA0a,iBAAiBA,CAAA,EAGf;IACA,MAAMtY,GAAG,GAAG,IAAI,CAAC3C,KAAK,CAACO,QAAQ;IAC/B,MAAMgB,EAAE,GAAG,IAAI,CAACC,eAAe,CAAC,IAAI,CAAC;IACrC,MAAM0Z,IAAI,GAAG,IAAI,CAACpa,GAAG,GAAM,CAAC,GACxB,IAAI,CAAC6Z,kBAAkB,CAAC,CAAC,GACzB;MAAEpd,IAAI,EAAE,MAAe;MAAEoF;IAAI,CAAC;IAClC,OAAO;MAAEpB,EAAE;MAAE2Z;IAAK,CAAC;EACrB;EAEAC,iCAAiCA,CAC/BxY,GAAa,EACb+T,OAAoB,EACpB0E,YAA8B,EACxB;IACN,MAAM;MAAE1gB;IAAa,CAAC,GAAGgc,OAAO;IAChC,IAAIhc,YAAY,KAAK,IAAI,EAAE;MACzB;IACF;IACA,IAAIA,YAAY,KAAK0gB,YAAY,EAAE;MACjC,IAAI,CAACb,qCAAqC,CAAC5X,GAAG,EAAE+T,OAAO,CAAC;IAC1D;EACF;EAEA2E,eAAeA,CAAC;IACdlhB,QAAQ;IACRO;EAIF,CAAC,EAQC;IACA,MAAM4gB,SAAS,GAAG,IAAI/hB,GAAG,CAAC,CAAC;IAC3B,MAAMgiB,OAAO,GAAG;MAEdC,cAAc,EAAE,EAAE;MAElBC,aAAa,EAAE,EAAE;MAEjBC,aAAa,EAAE,EAAE;MAEjBC,gBAAgB,EAAE;IACpB,CAAC;IACD,IAAIC,iBAAiB,GAAG,KAAK;IAC7B,OAAO,CAAC,IAAI,CAACza,KAAK,EAAU,CAAC,EAAE;MAC7B,IAAI,IAAI,CAACL,GAAG,GAAY,CAAC,EAAE;QACzB8a,iBAAiB,GAAG,IAAI;QACxB;MACF;MACA,MAAMC,UAAU,GAAG,IAAI,CAACxb,SAAS,CAAC,CAAC;MACnC,MAAM;QAAEkB,EAAE;QAAE2Z;MAAK,CAAC,GAAG,IAAI,CAACD,iBAAiB,CAAC,CAAC;MAC7C,MAAM/gB,UAAU,GAAGqH,EAAE,CAACkB,IAAI;MAC1B,IAAIvI,UAAU,KAAK,EAAE,EAAE;QACrB;MACF;MACA,IAAI,QAAQ,CAACgE,IAAI,CAAChE,UAAU,CAAC,EAAE;QAC7B,IAAI,CAAC0G,KAAK,CAACpH,UAAU,CAACqB,qBAAqB,EAAE;UAC3CgG,EAAE,EAAEU,EAAE;UACNrH,UAAU;UACVY,UAAU,EAAEZ,UAAU,CAAC,CAAC,CAAC,CAAC4hB,WAAW,CAAC,CAAC,GAAG5hB,UAAU,CAACkgB,KAAK,CAAC,CAAC,CAAC;UAC7DjgB;QACF,CAAC,CAAC;MACJ;MACA,IAAImhB,SAAS,CAACnV,GAAG,CAACjM,UAAU,CAAC,EAAE;QAC7B,IAAI,CAAC0G,KAAK,CAACpH,UAAU,CAACY,uBAAuB,EAAE;UAC7CyG,EAAE,EAAEU,EAAE;UACNrH,UAAU;UACVC;QACF,CAAC,CAAC;MACJ;MACAmhB,SAAS,CAACS,GAAG,CAAC7hB,UAAU,CAAC;MACzB,MAAMwc,OAAO,GAAG;QAAEvc,QAAQ;QAAEO,YAAY;QAAER;MAAW,CAAC;MACtD2hB,UAAU,CAACta,EAAE,GAAGA,EAAE;MAClB,QAAQ2Z,IAAI,CAAC3d,IAAI;QACf,KAAK,SAAS;UAAE;YACd,IAAI,CAAC4d,iCAAiC,CACpCD,IAAI,CAACvY,GAAG,EACR+T,OAAO,EACP,SACF,CAAC;YACDmF,UAAU,CAACX,IAAI,GAAGA,IAAI,CAACvb,KAAK;YAC5B4b,OAAO,CAACC,cAAc,CAACjd,IAAI,CACzB,IAAI,CAACyC,UAAU,CAAC6a,UAAU,EAAE,mBAAmB,CACjD,CAAC;YACD;UACF;QACA,KAAK,QAAQ;UAAE;YACb,IAAI,CAACV,iCAAiC,CAACD,IAAI,CAACvY,GAAG,EAAE+T,OAAO,EAAE,QAAQ,CAAC;YACnEmF,UAAU,CAACX,IAAI,GAAGA,IAAI,CAACvb,KAAK;YAC5B4b,OAAO,CAACE,aAAa,CAACld,IAAI,CACxB,IAAI,CAACyC,UAAU,CAAC6a,UAAU,EAAE,kBAAkB,CAChD,CAAC;YACD;UACF;QACA,KAAK,QAAQ;UAAE;YACb,IAAI,CAACV,iCAAiC,CAACD,IAAI,CAACvY,GAAG,EAAE+T,OAAO,EAAE,QAAQ,CAAC;YACnEmF,UAAU,CAACX,IAAI,GAAGA,IAAI,CAACvb,KAAK;YAC5B4b,OAAO,CAACG,aAAa,CAACnd,IAAI,CACxB,IAAI,CAACyC,UAAU,CAAC6a,UAAU,EAAE,kBAAkB,CAChD,CAAC;YACD;UACF;QACA,KAAK,SAAS;UAAE;YACd,MAAM,IAAI,CAACtB,qCAAqC,CAACW,IAAI,CAACvY,GAAG,EAAE+T,OAAO,CAAC;UACrE;QACA,KAAK,MAAM;UAAE;YACX,QAAQhc,YAAY;cAClB,KAAK,SAAS;gBACZ,IAAI,CAAC4f,wCAAwC,CAC3CY,IAAI,CAACvY,GAAG,EACR+T,OACF,CAAC;gBACD;cACF,KAAK,QAAQ;gBACX,IAAI,CAAC+D,uCAAuC,CAACS,IAAI,CAACvY,GAAG,EAAE+T,OAAO,CAAC;gBAC/D;cACF;gBACE6E,OAAO,CAACI,gBAAgB,CAACpd,IAAI,CAC3B,IAAI,CAACyC,UAAU,CAAC6a,UAAU,EAAE,qBAAqB,CACnD,CAAC;YACL;UACF;MACF;MAEA,IAAI,CAAC,IAAI,CAAC1a,KAAK,EAAU,CAAC,EAAE;QAC1B,IAAI,CAACjB,MAAM,GAAS,CAAC;MACvB;IACF;IACA,OAAO;MAAEqb,OAAO;MAAEK;IAAkB,CAAC;EACvC;EAEAI,qBAAqBA,CACnBC,kBAAiC,EACjCN,gBAA+B,EAC/B;IACExhB;EAGF,CAAC,EACc;IACf,IAAI8hB,kBAAkB,CAAC3d,MAAM,KAAK,CAAC,EAAE;MACnC,OAAOqd,gBAAgB;IACzB,CAAC,MAAM,IAAIA,gBAAgB,CAACrd,MAAM,KAAK,CAAC,EAAE;MACxC,OAAO2d,kBAAkB;IAC3B,CAAC,MAAM,IAAIN,gBAAgB,CAACrd,MAAM,GAAG2d,kBAAkB,CAAC3d,MAAM,EAAE;MAC9D,KAAK,MAAMqS,MAAM,IAAIsL,kBAAkB,EAAE;QACvC,IAAI,CAACvB,kDAAkD,CAAC/J,MAAM,EAAE;UAC9DxW;QACF,CAAC,CAAC;MACJ;MACA,OAAOwhB,gBAAgB;IACzB,CAAC,MAAM;MACL,KAAK,MAAMhL,MAAM,IAAIgL,gBAAgB,EAAE;QACrC,IAAI,CAACjB,kDAAkD,CAAC/J,MAAM,EAAE;UAC9DxW;QACF,CAAC,CAAC;MACJ;MACA,OAAO8hB,kBAAkB;IAC3B;EACF;EAEAC,yBAAyBA,CAAC;IACxB/hB;EAGF,CAAC,EAAoB;IACnB,IAAI,CAAC,IAAI,CAAC6I,aAAa,IAAO,CAAC,EAAE,OAAO,IAAI;IAE5C,IAAI,CAAC,IAAA6H,wBAAiB,EAAC,IAAI,CAAC7K,KAAK,CAACzC,IAAI,CAAC,EAAE;MACvC,MAAM,IAAI,CAACqD,KAAK,CAACpH,UAAU,CAACgB,sCAAsC,EAAE;QAClEqG,EAAE,EAAE,IAAI,CAACb,KAAK,CAACO,QAAQ;QACvBpG;MACF,CAAC,CAAC;IACJ;IAEA,MAAM;MAAEwF;IAAM,CAAC,GAAG,IAAI,CAACK,KAAK;IAC5B,IAAI,CAACQ,IAAI,CAAC,CAAC;IAEX,IACEb,KAAK,KAAK,SAAS,IACnBA,KAAK,KAAK,QAAQ,IAClBA,KAAK,KAAK,QAAQ,IAClBA,KAAK,KAAK,QAAQ,EAClB;MACA,IAAI,CAACiB,KAAK,CAACpH,UAAU,CAACc,uBAAuB,EAAE;QAC7CuG,EAAE,EAAE,IAAI,CAACb,KAAK,CAACO,QAAQ;QACvBpG,QAAQ;QACRI,eAAe,EAAEoF;MACnB,CAAC,CAAC;IACJ;IAEA,OAAOA,KAAK;EACd;EAEAwc,YAAYA,CAACze,IAAoB,EAAE6D,EAAU,EAAU;IACrD,MAAMpH,QAAQ,GAAGoH,EAAE,CAACkB,IAAI;IACxB,MAAM2Z,OAAO,GAAG7a,EAAE,CAACoB,GAAG,CAACC,KAAK;IAC5B,MAAMlI,YAAY,GAAG,IAAI,CAACwhB,yBAAyB,CAAC;MAAE/hB;IAAS,CAAC,CAAC;IACjE,IAAI,CAAC+F,MAAM,EAAU,CAAC;IACtB,MAAM;MAAEqb,OAAO;MAAEK;IAAkB,CAAC,GAAG,IAAI,CAACP,eAAe,CAAC;MAC1DlhB,QAAQ;MACRO;IACF,CAAC,CAAC;IACFgD,IAAI,CAACke,iBAAiB,GAAGA,iBAAiB;IAE1C,QAAQlhB,YAAY;MAClB,KAAK,SAAS;QACZgD,IAAI,CAAChD,YAAY,GAAG,IAAI;QACxBgD,IAAI,CAAC6d,OAAO,GAAGA,OAAO,CAACC,cAAc;QACrC,IAAI,CAACtb,MAAM,EAAU,CAAC;QACtB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,iBAAiB,CAAC;MACjD,KAAK,QAAQ;QACXA,IAAI,CAAChD,YAAY,GAAG,IAAI;QACxBgD,IAAI,CAAC6d,OAAO,GAAGA,OAAO,CAACE,aAAa;QACpC,IAAI,CAACvb,MAAM,EAAU,CAAC;QACtB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,gBAAgB,CAAC;MAChD,KAAK,QAAQ;QACXA,IAAI,CAAChD,YAAY,GAAG,IAAI;QACxBgD,IAAI,CAAC6d,OAAO,GAAG,IAAI,CAACS,qBAAqB,CACvCT,OAAO,CAACG,aAAa,EACrBH,OAAO,CAACI,gBAAgB,EACxB;UAAExhB;QAAS,CACb,CAAC;QACD,IAAI,CAAC+F,MAAM,EAAU,CAAC;QACtB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,gBAAgB,CAAC;MAChD,KAAK,QAAQ;QACXA,IAAI,CAAC6d,OAAO,GAAGA,OAAO,CAACI,gBAAgB;QACvC,IAAI,CAACzb,MAAM,EAAU,CAAC;QACtB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,gBAAgB,CAAC;MAChD;QAAS;UAEP,MAAM2e,KAAK,GAAGA,CAAA,KAAM;YAClB3e,IAAI,CAAC6d,OAAO,GAAG,EAAE;YACjB,IAAI,CAACrb,MAAM,EAAU,CAAC;YACtB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,gBAAgB,CAAC;UAChD,CAAC;UACDA,IAAI,CAAChD,YAAY,GAAG,KAAK;UAEzB,MAAM4hB,QAAQ,GAAGf,OAAO,CAACC,cAAc,CAACld,MAAM;UAC9C,MAAMie,OAAO,GAAGhB,OAAO,CAACE,aAAa,CAACnd,MAAM;UAC5C,MAAMke,OAAO,GAAGjB,OAAO,CAACG,aAAa,CAACpd,MAAM;UAC5C,MAAMme,YAAY,GAAGlB,OAAO,CAACI,gBAAgB,CAACrd,MAAM;UAEpD,IAAI,CAACge,QAAQ,IAAI,CAACC,OAAO,IAAI,CAACC,OAAO,IAAI,CAACC,YAAY,EAAE;YACtD,OAAOJ,KAAK,CAAC,CAAC;UAChB,CAAC,MAAM,IAAI,CAACC,QAAQ,IAAI,CAACC,OAAO,EAAE;YAChC7e,IAAI,CAAC6d,OAAO,GAAG,IAAI,CAACS,qBAAqB,CACvCT,OAAO,CAACG,aAAa,EACrBH,OAAO,CAACI,gBAAgB,EACxB;cAAExhB;YAAS,CACb,CAAC;YACD,IAAI,CAAC+F,MAAM,EAAU,CAAC;YACtB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,gBAAgB,CAAC;UAChD,CAAC,MAAM,IAAI,CAAC6e,OAAO,IAAI,CAACC,OAAO,IAAIF,QAAQ,IAAIG,YAAY,EAAE;YAC3D,KAAK,MAAM9L,MAAM,IAAI4K,OAAO,CAACI,gBAAgB,EAAE;cAC7C,IAAI,CAACrB,wCAAwC,CAAC3J,MAAM,CAAChO,GAAG,CAACC,KAAK,EAAE;gBAC9DzI,QAAQ;gBACRD,UAAU,EAAEyW,MAAM,CAACpP,EAAE,CAACkB;cACxB,CAAC,CAAC;YACJ;YACA/E,IAAI,CAAC6d,OAAO,GAAGA,OAAO,CAACC,cAAc;YACrC,IAAI,CAACtb,MAAM,EAAU,CAAC;YACtB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,iBAAiB,CAAC;UACjD,CAAC,MAAM,IAAI,CAAC4e,QAAQ,IAAI,CAACE,OAAO,IAAID,OAAO,IAAIE,YAAY,EAAE;YAC3D,KAAK,MAAM9L,MAAM,IAAI4K,OAAO,CAACI,gBAAgB,EAAE;cAC7C,IAAI,CAAClB,uCAAuC,CAAC9J,MAAM,CAAChO,GAAG,CAACC,KAAK,EAAE;gBAC7DzI,QAAQ;gBACRD,UAAU,EAAEyW,MAAM,CAACpP,EAAE,CAACkB;cACxB,CAAC,CAAC;YACJ;YACA/E,IAAI,CAAC6d,OAAO,GAAGA,OAAO,CAACE,aAAa;YACpC,IAAI,CAACvb,MAAM,EAAU,CAAC;YACtB,OAAO,IAAI,CAACc,UAAU,CAACtD,IAAI,EAAE,gBAAgB,CAAC;UAChD,CAAC,MAAM;YACL,IAAI,CAACkD,KAAK,CAACpH,UAAU,CAACa,4BAA4B,EAAE;cAClDwG,EAAE,EAAEub,OAAO;cACXjiB;YACF,CAAC,CAAC;YACF,OAAOkiB,KAAK,CAAC,CAAC;UAChB;QACF;IACF;EACF;EAEAzP,wBAAwBA,CAAClP,IAAoB,EAAU;IACrD,MAAM6D,EAAE,GAAG,IAAI,CAACC,eAAe,CAAC,CAAC;IACjC9D,IAAI,CAAC6D,EAAE,GAAGA,EAAE;IACZ7D,IAAI,CAACsG,IAAI,GAAG,IAAI,CAACmY,YAAY,CAAC,IAAI,CAAC9b,SAAS,CAAC,CAAC,EAAEkB,EAAE,CAAC;IACnD,OAAO,IAAI,CAACP,UAAU,CAACtD,IAAI,EAAE,iBAAiB,CAAC;EACjD;EAGAkb,mBAAmBA,CAAA,EAAY;IAC7B,MAAMpY,IAAI,GAAG,IAAI,CAACkc,cAAc,CAAC,CAAC;IAClC,IAAI,IAAI,CAACpL,KAAK,CAACC,UAAU,CAAC/Q,IAAI,CAAC,OAAuB,EAAE;MACtD,MAAMmc,SAAS,GAAG,IAAI,CAACrL,KAAK,CAACC,UAAU,CAAC/Q,IAAI,GAAG,CAAC,CAAC;MACjD,OACEmc,SAAS,OAAuB,IAAIA,SAAS,OAAuB;IAExE;IACA,OAAO,KAAK;EACd;EAEArF,6BAA6BA,CAAC5Z,IAAY,EAAE;IAC1C,OAAOA,IAAI,CAACH,IAAI,KAAK,oBAAoB,GAAGG,IAAI,CAACuO,UAAU,GAAGvO,IAAI;EACpE;AACF,CAAC;AAAAkf,OAAA,CAAAtY,OAAA,GAAA7F,QAAA"}
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _scope = require("../../util/scope");
8
+ var _scopeflags = require("../../util/scopeflags");
9
+ class FlowScope extends _scope.Scope {
10
+ constructor(...args) {
11
+ super(...args);
12
+ this.declareFunctions = new Set();
13
+ }
14
+ }
15
+ class FlowScopeHandler extends _scope.default {
16
+ createScope(flags) {
17
+ return new FlowScope(flags);
18
+ }
19
+ declareName(name, bindingType, loc) {
20
+ const scope = this.currentScope();
21
+ if (bindingType & _scopeflags.BIND_FLAGS_FLOW_DECLARE_FN) {
22
+ this.checkRedeclarationInScope(scope, name, bindingType, loc);
23
+ this.maybeExportDefined(scope, name);
24
+ scope.declareFunctions.add(name);
25
+ return;
26
+ }
27
+ super.declareName(name, bindingType, loc);
28
+ }
29
+ isRedeclaredInScope(scope, name, bindingType) {
30
+ if (super.isRedeclaredInScope(scope, name, bindingType)) return true;
31
+ if (bindingType & _scopeflags.BIND_FLAGS_FLOW_DECLARE_FN) {
32
+ return !scope.declareFunctions.has(name) && (scope.lexical.has(name) || scope.functions.has(name));
33
+ }
34
+ return false;
35
+ }
36
+ checkLocalExport(id) {
37
+ if (!this.scopeStack[0].declareFunctions.has(id.name)) {
38
+ super.checkLocalExport(id);
39
+ }
40
+ }
41
+ }
42
+ exports.default = FlowScopeHandler;
43
+
44
+ //# sourceMappingURL=scope.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_scope","require","_scopeflags","FlowScope","Scope","constructor","args","declareFunctions","Set","FlowScopeHandler","ScopeHandler","createScope","flags","declareName","name","bindingType","loc","scope","currentScope","BIND_FLAGS_FLOW_DECLARE_FN","checkRedeclarationInScope","maybeExportDefined","add","isRedeclaredInScope","has","lexical","functions","checkLocalExport","id","scopeStack","exports","default"],"sources":["../../../src/plugins/flow/scope.ts"],"sourcesContent":["import type { Position } from \"../../util/location\";\nimport ScopeHandler, { Scope } from \"../../util/scope\";\nimport {\n BIND_FLAGS_FLOW_DECLARE_FN,\n type ScopeFlags,\n type BindingTypes,\n} from \"../../util/scopeflags\";\nimport type * as N from \"../../types\";\n\n// Reference implementation: https://github.com/facebook/flow/blob/23aeb2a2ef6eb4241ce178fde5d8f17c5f747fb5/src/typing/env.ml#L536-L584\nclass FlowScope extends Scope {\n // declare function foo(): type;\n declareFunctions: Set<string> = new Set();\n}\n\nexport default class FlowScopeHandler extends ScopeHandler<FlowScope> {\n createScope(flags: ScopeFlags): FlowScope {\n return new FlowScope(flags);\n }\n\n declareName(name: string, bindingType: BindingTypes, loc: Position) {\n const scope = this.currentScope();\n if (bindingType & BIND_FLAGS_FLOW_DECLARE_FN) {\n this.checkRedeclarationInScope(scope, name, bindingType, loc);\n this.maybeExportDefined(scope, name);\n scope.declareFunctions.add(name);\n return;\n }\n\n super.declareName(name, bindingType, loc);\n }\n\n isRedeclaredInScope(\n scope: FlowScope,\n name: string,\n bindingType: BindingTypes,\n ): boolean {\n if (super.isRedeclaredInScope(scope, name, bindingType)) return true;\n\n if (bindingType & BIND_FLAGS_FLOW_DECLARE_FN) {\n return (\n !scope.declareFunctions.has(name) &&\n (scope.lexical.has(name) || scope.functions.has(name))\n );\n }\n\n return false;\n }\n\n checkLocalExport(id: N.Identifier) {\n if (!this.scopeStack[0].declareFunctions.has(id.name)) {\n super.checkLocalExport(id);\n }\n }\n}\n"],"mappings":";;;;;;AACA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,WAAA,GAAAD,OAAA;AAQA,MAAME,SAAS,SAASC,YAAK,CAAC;EAAAC,YAAA,GAAAC,IAAA;IAAA,SAAAA,IAAA;IAAA,KAE5BC,gBAAgB,GAAgB,IAAIC,GAAG,CAAC,CAAC;EAAA;AAC3C;AAEe,MAAMC,gBAAgB,SAASC,cAAY,CAAY;EACpEC,WAAWA,CAACC,KAAiB,EAAa;IACxC,OAAO,IAAIT,SAAS,CAACS,KAAK,CAAC;EAC7B;EAEAC,WAAWA,CAACC,IAAY,EAAEC,WAAyB,EAAEC,GAAa,EAAE;IAClE,MAAMC,KAAK,GAAG,IAAI,CAACC,YAAY,CAAC,CAAC;IACjC,IAAIH,WAAW,GAAGI,sCAA0B,EAAE;MAC5C,IAAI,CAACC,yBAAyB,CAACH,KAAK,EAAEH,IAAI,EAAEC,WAAW,EAAEC,GAAG,CAAC;MAC7D,IAAI,CAACK,kBAAkB,CAACJ,KAAK,EAAEH,IAAI,CAAC;MACpCG,KAAK,CAACV,gBAAgB,CAACe,GAAG,CAACR,IAAI,CAAC;MAChC;IACF;IAEA,KAAK,CAACD,WAAW,CAACC,IAAI,EAAEC,WAAW,EAAEC,GAAG,CAAC;EAC3C;EAEAO,mBAAmBA,CACjBN,KAAgB,EAChBH,IAAY,EACZC,WAAyB,EAChB;IACT,IAAI,KAAK,CAACQ,mBAAmB,CAACN,KAAK,EAAEH,IAAI,EAAEC,WAAW,CAAC,EAAE,OAAO,IAAI;IAEpE,IAAIA,WAAW,GAAGI,sCAA0B,EAAE;MAC5C,OACE,CAACF,KAAK,CAACV,gBAAgB,CAACiB,GAAG,CAACV,IAAI,CAAC,KAChCG,KAAK,CAACQ,OAAO,CAACD,GAAG,CAACV,IAAI,CAAC,IAAIG,KAAK,CAACS,SAAS,CAACF,GAAG,CAACV,IAAI,CAAC,CAAC;IAE1D;IAEA,OAAO,KAAK;EACd;EAEAa,gBAAgBA,CAACC,EAAgB,EAAE;IACjC,IAAI,CAAC,IAAI,CAACC,UAAU,CAAC,CAAC,CAAC,CAACtB,gBAAgB,CAACiB,GAAG,CAACI,EAAE,CAACd,IAAI,CAAC,EAAE;MACrD,KAAK,CAACa,gBAAgB,CAACC,EAAE,CAAC;IAC5B;EACF;AACF;AAACE,OAAA,CAAAC,OAAA,GAAAtB,gBAAA"}