rechrome 1.18.1 → 1.20.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 (497) hide show
  1. package/README.md +8 -3
  2. package/package.json +5 -3
  3. package/rech.js +117 -12
  4. package/rech.ts +117 -12
  5. package/serve.js +4 -1
  6. package/serve.ts +4 -1
  7. package/vendor/playwright-cli/node_modules/playwright-core/README.md +3 -0
  8. package/vendor/playwright-cli/node_modules/playwright-core/ThirdPartyNotices.txt +13 -0
  9. package/vendor/playwright-cli/node_modules/playwright-core/bin/install_media_pack.ps1 +5 -0
  10. package/vendor/playwright-cli/node_modules/playwright-core/bin/install_webkit_wsl.ps1 +33 -0
  11. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +42 -0
  12. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +13 -0
  13. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +24 -0
  14. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +42 -0
  15. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +12 -0
  16. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +24 -0
  17. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +48 -0
  18. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +11 -0
  19. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +23 -0
  20. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +48 -0
  21. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +11 -0
  22. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +23 -0
  23. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +48 -0
  24. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +11 -0
  25. package/vendor/playwright-cli/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +24 -0
  26. package/vendor/playwright-cli/node_modules/playwright-core/browsers.json +81 -0
  27. package/vendor/playwright-cli/node_modules/playwright-core/cli.js +21 -0
  28. package/vendor/playwright-cli/node_modules/playwright-core/index.d.ts +17 -0
  29. package/vendor/playwright-cli/node_modules/playwright-core/index.js +32 -0
  30. package/vendor/playwright-cli/node_modules/playwright-core/index.mjs +28 -0
  31. package/vendor/playwright-cli/node_modules/playwright-core/lib/androidServerImpl.js +65 -0
  32. package/vendor/playwright-cli/node_modules/playwright-core/lib/bootstrap.js +77 -0
  33. package/vendor/playwright-cli/node_modules/playwright-core/lib/browserServerImpl.js +120 -0
  34. package/vendor/playwright-cli/node_modules/playwright-core/lib/cli/driver.js +98 -0
  35. package/vendor/playwright-cli/node_modules/playwright-core/lib/cli/program.js +597 -0
  36. package/vendor/playwright-cli/node_modules/playwright-core/lib/cli/programWithTestStub.js +74 -0
  37. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/android.js +361 -0
  38. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/api.js +137 -0
  39. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/artifact.js +79 -0
  40. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/browser.js +169 -0
  41. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/browserContext.js +583 -0
  42. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/browserType.js +153 -0
  43. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/cdpSession.js +55 -0
  44. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/channelOwner.js +194 -0
  45. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/clientHelper.js +64 -0
  46. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/clientInstrumentation.js +55 -0
  47. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/clientStackTrace.js +69 -0
  48. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/clock.js +68 -0
  49. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/connect.js +143 -0
  50. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/connection.js +322 -0
  51. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/consoleMessage.js +61 -0
  52. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/coverage.js +44 -0
  53. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/debugger.js +57 -0
  54. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/dialog.js +56 -0
  55. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/disposable.js +76 -0
  56. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/download.js +62 -0
  57. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/electron.js +138 -0
  58. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/elementHandle.js +281 -0
  59. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/errors.js +77 -0
  60. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/eventEmitter.js +314 -0
  61. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/events.js +103 -0
  62. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/fetch.js +367 -0
  63. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/fileChooser.js +46 -0
  64. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/fileUtils.js +34 -0
  65. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/frame.js +404 -0
  66. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/harRouter.js +99 -0
  67. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/input.js +84 -0
  68. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/jsHandle.js +105 -0
  69. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/jsonPipe.js +39 -0
  70. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/localUtils.js +60 -0
  71. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/locator.js +367 -0
  72. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/network.js +750 -0
  73. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/page.js +729 -0
  74. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/platform.js +77 -0
  75. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/playwright.js +71 -0
  76. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/screencast.js +48 -0
  77. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/selectors.js +57 -0
  78. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/stream.js +39 -0
  79. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/timeoutSettings.js +79 -0
  80. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/tracing.js +126 -0
  81. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/types.js +28 -0
  82. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/video.js +68 -0
  83. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/waiter.js +142 -0
  84. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/webError.js +39 -0
  85. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/worker.js +85 -0
  86. package/vendor/playwright-cli/node_modules/playwright-core/lib/client/writableStream.js +39 -0
  87. package/vendor/playwright-cli/node_modules/playwright-core/lib/coreBundle.js +68170 -0
  88. package/vendor/playwright-cli/node_modules/playwright-core/lib/electron/loader.js +67 -0
  89. package/vendor/playwright-cli/node_modules/playwright-core/lib/entry/cliDaemon.js +5 -0
  90. package/vendor/playwright-cli/node_modules/playwright-core/lib/entry/dashboardApp.js +3 -0
  91. package/vendor/playwright-cli/node_modules/playwright-core/lib/entry/mcp.js +10 -0
  92. package/vendor/playwright-cli/node_modules/playwright-core/lib/entry/oopBrowserDownload.js +3 -0
  93. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/bindingsControllerSource.js +28 -0
  94. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/clockSource.js +28 -0
  95. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/injectedScriptSource.js +28 -0
  96. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/pollingRecorderSource.js +28 -0
  97. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/storageScriptSource.js +28 -0
  98. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/utilityScriptSource.js +28 -0
  99. package/vendor/playwright-cli/node_modules/playwright-core/lib/generated/webSocketMockSource.js +336 -0
  100. package/vendor/playwright-cli/node_modules/playwright-core/lib/inProcessFactory.js +60 -0
  101. package/vendor/playwright-cli/node_modules/playwright-core/lib/inprocess.js +3 -0
  102. package/vendor/playwright-cli/node_modules/playwright-core/lib/mcpBundle.js +81 -0
  103. package/vendor/playwright-cli/node_modules/playwright-core/lib/mcpBundleImpl/index.js +91 -0
  104. package/vendor/playwright-cli/node_modules/playwright-core/lib/outofprocess.js +76 -0
  105. package/vendor/playwright-cli/node_modules/playwright-core/lib/package.js +50 -0
  106. package/vendor/playwright-cli/node_modules/playwright-core/lib/protocol/serializers.js +197 -0
  107. package/vendor/playwright-cli/node_modules/playwright-core/lib/protocol/validator.js +3034 -0
  108. package/vendor/playwright-cli/node_modules/playwright-core/lib/protocol/validatorPrimitives.js +193 -0
  109. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/playwrightConnection.js +131 -0
  110. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/playwrightPipeServer.js +100 -0
  111. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/playwrightServer.js +339 -0
  112. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/playwrightWebSocketServer.js +73 -0
  113. package/vendor/playwright-cli/node_modules/playwright-core/lib/remote/serverTransport.js +96 -0
  114. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/android/android.js +465 -0
  115. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/android/backendAdb.js +177 -0
  116. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/artifact.js +127 -0
  117. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiBrowser.js +571 -0
  118. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiChromium.js +162 -0
  119. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiConnection.js +213 -0
  120. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiDeserializer.js +116 -0
  121. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiExecutionContext.js +267 -0
  122. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiFirefox.js +128 -0
  123. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiInput.js +146 -0
  124. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiNetworkManager.js +411 -0
  125. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiOverCdp.js +102 -0
  126. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiPage.js +599 -0
  127. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/bidiPdf.js +106 -0
  128. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
  129. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiKeyboard.js +256 -0
  130. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocol.js +24 -0
  131. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocolCore.js +180 -0
  132. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocolPermissions.js +42 -0
  133. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/bidiSerializer.js +148 -0
  134. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/bidi/third_party/firefoxPrefs.js +261 -0
  135. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/browser.js +223 -0
  136. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/browserContext.js +703 -0
  137. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/browserType.js +338 -0
  138. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/callLog.js +82 -0
  139. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/appIcon.png +0 -0
  140. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/chromium.js +399 -0
  141. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/chromiumSwitches.js +104 -0
  142. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crBrowser.js +532 -0
  143. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crConnection.js +197 -0
  144. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crCoverage.js +235 -0
  145. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crDevTools.js +111 -0
  146. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crDragDrop.js +131 -0
  147. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crExecutionContext.js +146 -0
  148. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crInput.js +187 -0
  149. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crNetworkManager.js +708 -0
  150. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crPage.js +1004 -0
  151. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crPdf.js +121 -0
  152. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crProtocolHelper.js +145 -0
  153. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/crServiceWorker.js +137 -0
  154. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/defaultFontFamilies.js +162 -0
  155. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/chromium/protocol.d.js +16 -0
  156. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/clock.js +149 -0
  157. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/csharp.js +327 -0
  158. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/java.js +274 -0
  159. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/javascript.js +247 -0
  160. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/jsonl.js +52 -0
  161. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/language.js +132 -0
  162. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/languages.js +68 -0
  163. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/python.js +279 -0
  164. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/codegen/types.js +16 -0
  165. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/console.js +61 -0
  166. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/cookieStore.js +206 -0
  167. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/debugController.js +197 -0
  168. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/debugger.js +120 -0
  169. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/deviceDescriptors.js +39 -0
  170. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/deviceDescriptorsSource.json +1779 -0
  171. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dialog.js +116 -0
  172. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/androidDispatcher.js +325 -0
  173. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/artifactDispatcher.js +118 -0
  174. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/browserContextDispatcher.js +381 -0
  175. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/browserDispatcher.js +124 -0
  176. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/browserTypeDispatcher.js +71 -0
  177. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/cdpSessionDispatcher.js +47 -0
  178. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/debugControllerDispatcher.js +78 -0
  179. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/debuggerDispatcher.js +80 -0
  180. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/dialogDispatcher.js +47 -0
  181. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/dispatcher.js +364 -0
  182. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/disposableDispatcher.js +39 -0
  183. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/electronDispatcher.js +90 -0
  184. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/elementHandlerDispatcher.js +181 -0
  185. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/frameDispatcher.js +227 -0
  186. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/jsHandleDispatcher.js +85 -0
  187. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/jsonPipeDispatcher.js +58 -0
  188. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/localUtilsDispatcher.js +185 -0
  189. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/networkDispatchers.js +214 -0
  190. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/pageDispatcher.js +434 -0
  191. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/playwrightDispatcher.js +108 -0
  192. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/streamDispatcher.js +67 -0
  193. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/tracingDispatcher.js +68 -0
  194. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/webSocketRouteDispatcher.js +164 -0
  195. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dispatchers/writableStreamDispatcher.js +79 -0
  196. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/disposable.js +41 -0
  197. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/dom.js +823 -0
  198. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/download.js +71 -0
  199. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/electron/electron.js +272 -0
  200. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/electron/loader.js +115 -0
  201. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/errors.js +69 -0
  202. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/fetch.js +621 -0
  203. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/fileChooser.js +43 -0
  204. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/fileUploadUtils.js +84 -0
  205. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffBrowser.js +415 -0
  206. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffConnection.js +142 -0
  207. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffExecutionContext.js +150 -0
  208. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffInput.js +175 -0
  209. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffNetworkManager.js +256 -0
  210. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/ffPage.js +495 -0
  211. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/firefox.js +114 -0
  212. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/firefox/protocol.d.js +16 -0
  213. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/formData.js +147 -0
  214. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/frameSelectors.js +160 -0
  215. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/frames.js +1495 -0
  216. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/har/harRecorder.js +147 -0
  217. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/har/harTracer.js +608 -0
  218. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/harBackend.js +157 -0
  219. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/helper.js +96 -0
  220. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/index.js +58 -0
  221. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/input.js +277 -0
  222. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/instrumentation.js +72 -0
  223. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/javascript.js +291 -0
  224. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/launchApp.js +127 -0
  225. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/localUtils.js +214 -0
  226. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/macEditingCommands.js +143 -0
  227. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/network.js +668 -0
  228. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/page.js +884 -0
  229. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/pipeTransport.js +89 -0
  230. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/playwright.js +69 -0
  231. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/progress.js +136 -0
  232. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/protocolError.js +52 -0
  233. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/chat.js +161 -0
  234. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/recorderApp.js +367 -0
  235. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/recorderRunner.js +138 -0
  236. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/recorderSignalProcessor.js +83 -0
  237. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/recorderUtils.js +157 -0
  238. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder/throttledFile.js +57 -0
  239. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/recorder.js +540 -0
  240. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/browserFetcher.js +177 -0
  241. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/dependencies.js +371 -0
  242. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/index.js +1395 -0
  243. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/nativeDeps.js +1281 -0
  244. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/registry/oopDownloadBrowserMain.js +127 -0
  245. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/screencast.js +216 -0
  246. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/screenshotter.js +333 -0
  247. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/selectors.js +112 -0
  248. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/socksClientCertificatesInterceptor.js +383 -0
  249. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/socksInterceptor.js +95 -0
  250. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/trace/recorder/snapshotter.js +147 -0
  251. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/trace/recorder/snapshotterInjected.js +561 -0
  252. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/trace/recorder/tracing.js +607 -0
  253. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/trace/viewer/traceViewer.js +244 -0
  254. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/transport.js +181 -0
  255. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/types.js +28 -0
  256. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/usKeyboardLayout.js +152 -0
  257. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/ascii.js +44 -0
  258. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/comparators.js +139 -0
  259. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/crypto.js +216 -0
  260. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/debug.js +42 -0
  261. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/debugLogger.js +122 -0
  262. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/disposable.js +32 -0
  263. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/env.js +73 -0
  264. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/eventsHelper.js +41 -0
  265. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/expectUtils.js +123 -0
  266. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/fileUtils.js +191 -0
  267. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/happyEyeballs.js +207 -0
  268. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/hostPlatform.js +123 -0
  269. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/httpServer.js +205 -0
  270. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/image_tools/colorUtils.js +89 -0
  271. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/image_tools/compare.js +109 -0
  272. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/image_tools/imageChannel.js +78 -0
  273. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/image_tools/stats.js +102 -0
  274. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/linuxUtils.js +71 -0
  275. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/network.js +244 -0
  276. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/nodePlatform.js +154 -0
  277. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/pipeTransport.js +84 -0
  278. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/processLauncher.js +243 -0
  279. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/profiler.js +65 -0
  280. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/socksProxy.js +511 -0
  281. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/spawnAsync.js +41 -0
  282. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/task.js +51 -0
  283. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/userAgent.js +98 -0
  284. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/wsServer.js +121 -0
  285. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/zipFile.js +74 -0
  286. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/utils/zones.js +57 -0
  287. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/videoRecorder.js +133 -0
  288. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/protocol.d.js +16 -0
  289. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/webkit.js +108 -0
  290. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkBrowser.js +331 -0
  291. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkConnection.js +144 -0
  292. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkExecutionContext.js +154 -0
  293. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkInput.js +181 -0
  294. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkInterceptableRequest.js +197 -0
  295. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkPage.js +1164 -0
  296. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkProvisionalPage.js +83 -0
  297. package/vendor/playwright-cli/node_modules/playwright-core/lib/server/webkit/wkWorkers.js +106 -0
  298. package/vendor/playwright-cli/node_modules/playwright-core/lib/serverRegistry.js +7343 -0
  299. package/vendor/playwright-cli/node_modules/playwright-core/lib/serverRegistry.js.LICENSE +354 -0
  300. package/vendor/playwright-cli/node_modules/playwright-core/lib/third_party/pixelmatch.js +255 -0
  301. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/browserBackend.js +79 -0
  302. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/common.js +63 -0
  303. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/config.js +41 -0
  304. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/console.js +66 -0
  305. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/context.js +290 -0
  306. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/cookies.js +152 -0
  307. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/devtools.js +69 -0
  308. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/dialogs.js +59 -0
  309. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/evaluate.js +64 -0
  310. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/files.js +60 -0
  311. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/form.js +64 -0
  312. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/keyboard.js +155 -0
  313. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/logFile.js +95 -0
  314. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/mouse.js +168 -0
  315. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/navigate.js +106 -0
  316. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/network.js +135 -0
  317. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/pdf.js +48 -0
  318. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/response.js +302 -0
  319. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/route.js +140 -0
  320. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/runCode.js +76 -0
  321. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/screenshot.js +88 -0
  322. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/sessionLog.js +74 -0
  323. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/snapshot.js +208 -0
  324. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/storage.js +67 -0
  325. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tab.js +445 -0
  326. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tabs.js +67 -0
  327. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tool.js +47 -0
  328. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tools.js +102 -0
  329. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/tracing.js +75 -0
  330. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/utils.js +83 -0
  331. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/verify.js +151 -0
  332. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/video.js +89 -0
  333. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/wait.js +63 -0
  334. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/backend/webstorage.js +223 -0
  335. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/channelSessions.js +141 -0
  336. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/cli.js +6 -0
  337. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/help.json +679 -0
  338. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/minimist.js +128 -0
  339. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/output.js +343 -0
  340. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/program.js +380 -0
  341. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/registry.js +176 -0
  342. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/session.js +265 -0
  343. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/SKILL.md +388 -0
  344. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  345. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  346. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  347. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/running-code.md +241 -0
  348. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/session-management.md +225 -0
  349. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/spec-driven-testing.md +305 -0
  350. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  351. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/test-generation.md +134 -0
  352. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/tracing.md +139 -0
  353. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-client/skill/references/video-recording.md +143 -0
  354. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/command.js +73 -0
  355. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/commands.js +933 -0
  356. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/daemon.js +178 -0
  357. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/helpGenerator.js +173 -0
  358. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/cli-daemon/program.js +118 -0
  359. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/dashboard/appIcon.png +0 -0
  360. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/dashboard/dashboardApp.js +286 -0
  361. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/dashboard/dashboardController.js +296 -0
  362. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/exports.js +60 -0
  363. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/browserFactory.js +233 -0
  364. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/cdpRelay.js +356 -0
  365. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/cli-stub.js +7 -0
  366. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/config.d.js +16 -0
  367. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/config.js +401 -0
  368. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/configIni.js +189 -0
  369. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/extensionContextFactory.js +59 -0
  370. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/index.js +62 -0
  371. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/log.js +35 -0
  372. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/program.js +107 -0
  373. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/protocol.js +28 -0
  374. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/mcp/watchdog.js +44 -0
  375. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/SKILL.md +171 -0
  376. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/installSkill.js +48 -0
  377. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceActions.js +142 -0
  378. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceAttachments.js +69 -0
  379. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceCli.js +80 -0
  380. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceConsole.js +97 -0
  381. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceErrors.js +55 -0
  382. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceOpen.js +69 -0
  383. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceParser.js +96 -0
  384. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceRequests.js +158 -0
  385. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceScreenshot.js +68 -0
  386. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceSnapshot.js +149 -0
  387. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/trace/traceUtils.js +135 -0
  388. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/connect.js +32 -0
  389. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/extension.js +78 -0
  390. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/mcp/http.js +152 -0
  391. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/mcp/server.js +230 -0
  392. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/mcp/tool.js +47 -0
  393. package/vendor/playwright-cli/node_modules/playwright-core/lib/tools/utils/socketConnection.js +108 -0
  394. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/ariaSnapshot.js +455 -0
  395. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/assert.js +31 -0
  396. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/colors.js +72 -0
  397. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/cssParser.js +245 -0
  398. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/cssTokenizer.js +1051 -0
  399. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/formatUtils.js +64 -0
  400. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/headers.js +53 -0
  401. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/imageUtils.js +141 -0
  402. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/locatorGenerators.js +689 -0
  403. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/locatorParser.js +176 -0
  404. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/locatorUtils.js +81 -0
  405. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/lruCache.js +51 -0
  406. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/manualPromise.js +114 -0
  407. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/mimeType.js +464 -0
  408. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/multimap.js +80 -0
  409. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/protocolFormatter.js +81 -0
  410. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/protocolMetainfo.js +342 -0
  411. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/rtti.js +43 -0
  412. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/selectorParser.js +386 -0
  413. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/semaphore.js +54 -0
  414. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/stackTrace.js +158 -0
  415. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/stringUtils.js +204 -0
  416. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/time.js +49 -0
  417. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/timeoutRunner.js +66 -0
  418. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/entries.js +16 -0
  419. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/snapshotRenderer.js +502 -0
  420. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/snapshotServer.js +120 -0
  421. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/snapshotStorage.js +89 -0
  422. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/traceLoader.js +131 -0
  423. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/traceModel.js +366 -0
  424. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/traceModernizer.js +401 -0
  425. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/traceUtils.js +58 -0
  426. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV3.js +16 -0
  427. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV4.js +16 -0
  428. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV5.js +16 -0
  429. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV6.js +16 -0
  430. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV7.js +16 -0
  431. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/trace/versions/traceV8.js +16 -0
  432. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/types.js +16 -0
  433. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/urlMatch.js +243 -0
  434. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/utilityScriptSerializers.js +262 -0
  435. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils/isomorphic/yaml.js +84 -0
  436. package/vendor/playwright-cli/node_modules/playwright-core/lib/utils.js +113 -0
  437. package/vendor/playwright-cli/node_modules/playwright-core/lib/utilsBundle.js +86478 -0
  438. package/vendor/playwright-cli/node_modules/playwright-core/lib/utilsBundle.js.LICENSE +2058 -0
  439. package/vendor/playwright-cli/node_modules/playwright-core/lib/utilsBundleImpl/index.js +218 -0
  440. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
  441. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
  442. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
  443. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
  444. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/index-BY2S1tHT.css +1 -0
  445. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/index-DpEq2p62.js +52 -0
  446. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
  447. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/index.html +29 -0
  448. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/dashboard/playwright-logo.svg +24 -0
  449. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/htmlReport/index.html +16 -0
  450. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/htmlReport/report.css +1 -0
  451. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/htmlReport/report.js +72 -0
  452. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-BHYmBp6h.js +32 -0
  453. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-DYBRYzYX.css +1 -0
  454. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  455. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/index-4ZiSSCmn.css +1 -0
  456. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/assets/index-DA10QRaq.js +193 -0
  457. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/index.html +29 -0
  458. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/recorder/playwright-logo.svg +9 -0
  459. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-BRrOnXSS.js +32 -0
  460. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-BtGnd8kr.js +32 -0
  461. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-CnvO0fko.js +32 -0
  462. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-BkMbME_o.js +262 -0
  463. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-BoN8TZYy.js +262 -0
  464. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-CN3cwLGD.js +262 -0
  465. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/urlMatch-BYQrIQwR.js +1 -0
  466. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
  467. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/codeMirrorModule.DYBRYzYX.css +1 -0
  468. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  469. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.B4dS75f0.css +1 -0
  470. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.BDKsFU3c.css +1 -0
  471. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.DcQiWcKS.css +1 -0
  472. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.B2ffe31o.js +2 -0
  473. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.CzXZzn5A.css +1 -0
  474. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.Df3uWWXm.js +2 -0
  475. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.PqVYgODr.js +2 -0
  476. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/index.html +44 -0
  477. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/manifest.webmanifest +16 -0
  478. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/playwright-logo.svg +9 -0
  479. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/snapshot.html +10 -0
  480. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/snapshot.v8KI4P3m.js +2 -0
  481. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js +5 -0
  482. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.B-IwVgWY.js +6 -0
  483. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.BZQ54Kgt.css +1 -0
  484. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
  485. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.CmAqMvmy.js +6 -0
  486. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +18 -0
  487. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/uiMode.u9Eas4CP.js +6 -0
  488. package/vendor/playwright-cli/node_modules/playwright-core/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
  489. package/vendor/playwright-cli/node_modules/playwright-core/lib/xdg-open +1066 -0
  490. package/vendor/playwright-cli/node_modules/playwright-core/lib/zipBundle.js +34 -0
  491. package/vendor/playwright-cli/node_modules/playwright-core/lib/zipBundleImpl.js +5 -0
  492. package/vendor/playwright-cli/node_modules/playwright-core/package.json +34 -0
  493. package/vendor/playwright-cli/node_modules/playwright-core/types/protocol.d.ts +24565 -0
  494. package/vendor/playwright-cli/node_modules/playwright-core/types/structs.d.ts +45 -0
  495. package/vendor/playwright-cli/node_modules/playwright-core/types/types.d.ts +23879 -0
  496. package/vendor/playwright-cli/package.json +6 -0
  497. package/vendor/playwright-cli/playwright-cli.js +50 -0
@@ -0,0 +1,262 @@
1
+ const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./codeMirrorModule-CnvO0fko.js","./urlMatch-BYQrIQwR.js","../codeMirrorModule.DYBRYzYX.css"])))=>i.map(i=>d[i]);
2
+ import{i as ux}from"./urlMatch-BYQrIQwR.js";function fx(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}var nh={exports:{}},ja={};/**
3
+ * @license React
4
+ * react-jsx-runtime.production.js
5
+ *
6
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
7
+ *
8
+ * This source code is licensed under the MIT license found in the
9
+ * LICENSE file in the root directory of this source tree.
10
+ */var Gy;function hx(){if(Gy)return ja;Gy=1;var n=Symbol.for("react.transitional.element"),e=Symbol.for("react.fragment");function i(r,l,o){var u=null;if(o!==void 0&&(u=""+o),l.key!==void 0&&(u=""+l.key),"key"in l){o={};for(var f in l)f!=="key"&&(o[f]=l[f])}else o=l;return l=o.ref,{$$typeof:n,type:r,key:u,ref:l!==void 0?l:null,props:o}}return ja.Fragment=e,ja.jsx=i,ja.jsxs=i,ja}var Ky;function dx(){return Ky||(Ky=1,nh.exports=hx()),nh.exports}var v=dx(),ih={exports:{}},he={};/**
11
+ * @license React
12
+ * react.production.js
13
+ *
14
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
15
+ *
16
+ * This source code is licensed under the MIT license found in the
17
+ * LICENSE file in the root directory of this source tree.
18
+ */var Xy;function px(){if(Xy)return he;Xy=1;var n=Symbol.for("react.transitional.element"),e=Symbol.for("react.portal"),i=Symbol.for("react.fragment"),r=Symbol.for("react.strict_mode"),l=Symbol.for("react.profiler"),o=Symbol.for("react.consumer"),u=Symbol.for("react.context"),f=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),g=Symbol.for("react.memo"),m=Symbol.for("react.lazy"),y=Symbol.for("react.activity"),S=Symbol.iterator;function w(M){return M===null||typeof M!="object"?null:(M=S&&M[S]||M["@@iterator"],typeof M=="function"?M:null)}var E={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},x=Object.assign,_={};function A(M,X,W){this.props=M,this.context=X,this.refs=_,this.updater=W||E}A.prototype.isReactComponent={},A.prototype.setState=function(M,X){if(typeof M!="object"&&typeof M!="function"&&M!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,M,X,"setState")},A.prototype.forceUpdate=function(M){this.updater.enqueueForceUpdate(this,M,"forceUpdate")};function C(){}C.prototype=A.prototype;function H(M,X,W){this.props=M,this.context=X,this.refs=_,this.updater=W||E}var V=H.prototype=new C;V.constructor=H,x(V,A.prototype),V.isPureReactComponent=!0;var K=Array.isArray;function Q(){}var j={H:null,A:null,T:null,S:null},I=Object.prototype.hasOwnProperty;function O(M,X,W){var te=W.ref;return{$$typeof:n,type:M,key:X,ref:te!==void 0?te:null,props:W}}function P(M,X){return O(M.type,X,M.props)}function J(M){return typeof M=="object"&&M!==null&&M.$$typeof===n}function $(M){var X={"=":"=0",":":"=2"};return"$"+M.replace(/[=:]/g,function(W){return X[W]})}var ee=/\/+/g;function ce(M,X){return typeof M=="object"&&M!==null&&M.key!=null?$(""+M.key):X.toString(36)}function Me(M){switch(M.status){case"fulfilled":return M.value;case"rejected":throw M.reason;default:switch(typeof M.status=="string"?M.then(Q,Q):(M.status="pending",M.then(function(X){M.status==="pending"&&(M.status="fulfilled",M.value=X)},function(X){M.status==="pending"&&(M.status="rejected",M.reason=X)})),M.status){case"fulfilled":return M.value;case"rejected":throw M.reason}}throw M}function q(M,X,W,te,ue){var se=typeof M;(se==="undefined"||se==="boolean")&&(M=null);var xe=!1;if(M===null)xe=!0;else switch(se){case"bigint":case"string":case"number":xe=!0;break;case"object":switch(M.$$typeof){case n:case e:xe=!0;break;case m:return xe=M._init,q(xe(M._payload),X,W,te,ue)}}if(xe)return ue=ue(M),xe=te===""?"."+ce(M,0):te,K(ue)?(W="",xe!=null&&(W=xe.replace(ee,"$&/")+"/"),q(ue,X,W,"",function(Ln){return Ln})):ue!=null&&(J(ue)&&(ue=P(ue,W+(ue.key==null||M&&M.key===ue.key?"":(""+ue.key).replace(ee,"$&/")+"/")+xe)),X.push(ue)),1;xe=0;var nt=te===""?".":te+":";if(K(M))for(var Re=0;Re<M.length;Re++)te=M[Re],se=nt+ce(te,Re),xe+=q(te,X,W,se,ue);else if(Re=w(M),typeof Re=="function")for(M=Re.call(M),Re=0;!(te=M.next()).done;)te=te.value,se=nt+ce(te,Re++),xe+=q(te,X,W,se,ue);else if(se==="object"){if(typeof M.then=="function")return q(Me(M),X,W,te,ue);throw X=String(M),Error("Objects are not valid as a React child (found: "+(X==="[object Object]"?"object with keys {"+Object.keys(M).join(", ")+"}":X)+"). If you meant to render a collection of children, use an array instead.")}return xe}function Z(M,X,W){if(M==null)return M;var te=[],ue=0;return q(M,te,"","",function(se){return X.call(W,se,ue++)}),te}function re(M){if(M._status===-1){var X=M._result;X=X(),X.then(function(W){(M._status===0||M._status===-1)&&(M._status=1,M._result=W)},function(W){(M._status===0||M._status===-1)&&(M._status=2,M._result=W)}),M._status===-1&&(M._status=0,M._result=X)}if(M._status===1)return M._result.default;throw M._result}var me=typeof reportError=="function"?reportError:function(M){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var X=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof M=="object"&&M!==null&&typeof M.message=="string"?String(M.message):String(M),error:M});if(!window.dispatchEvent(X))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",M);return}console.error(M)},Ee={map:Z,forEach:function(M,X,W){Z(M,function(){X.apply(this,arguments)},W)},count:function(M){var X=0;return Z(M,function(){X++}),X},toArray:function(M){return Z(M,function(X){return X})||[]},only:function(M){if(!J(M))throw Error("React.Children.only expected to receive a single React element child.");return M}};return he.Activity=y,he.Children=Ee,he.Component=A,he.Fragment=i,he.Profiler=l,he.PureComponent=H,he.StrictMode=r,he.Suspense=d,he.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=j,he.__COMPILER_RUNTIME={__proto__:null,c:function(M){return j.H.useMemoCache(M)}},he.cache=function(M){return function(){return M.apply(null,arguments)}},he.cacheSignal=function(){return null},he.cloneElement=function(M,X,W){if(M==null)throw Error("The argument must be a React element, but you passed "+M+".");var te=x({},M.props),ue=M.key;if(X!=null)for(se in X.key!==void 0&&(ue=""+X.key),X)!I.call(X,se)||se==="key"||se==="__self"||se==="__source"||se==="ref"&&X.ref===void 0||(te[se]=X[se]);var se=arguments.length-2;if(se===1)te.children=W;else if(1<se){for(var xe=Array(se),nt=0;nt<se;nt++)xe[nt]=arguments[nt+2];te.children=xe}return O(M.type,ue,te)},he.createContext=function(M){return M={$$typeof:u,_currentValue:M,_currentValue2:M,_threadCount:0,Provider:null,Consumer:null},M.Provider=M,M.Consumer={$$typeof:o,_context:M},M},he.createElement=function(M,X,W){var te,ue={},se=null;if(X!=null)for(te in X.key!==void 0&&(se=""+X.key),X)I.call(X,te)&&te!=="key"&&te!=="__self"&&te!=="__source"&&(ue[te]=X[te]);var xe=arguments.length-2;if(xe===1)ue.children=W;else if(1<xe){for(var nt=Array(xe),Re=0;Re<xe;Re++)nt[Re]=arguments[Re+2];ue.children=nt}if(M&&M.defaultProps)for(te in xe=M.defaultProps,xe)ue[te]===void 0&&(ue[te]=xe[te]);return O(M,se,ue)},he.createRef=function(){return{current:null}},he.forwardRef=function(M){return{$$typeof:f,render:M}},he.isValidElement=J,he.lazy=function(M){return{$$typeof:m,_payload:{_status:-1,_result:M},_init:re}},he.memo=function(M,X){return{$$typeof:g,type:M,compare:X===void 0?null:X}},he.startTransition=function(M){var X=j.T,W={};j.T=W;try{var te=M(),ue=j.S;ue!==null&&ue(W,te),typeof te=="object"&&te!==null&&typeof te.then=="function"&&te.then(Q,me)}catch(se){me(se)}finally{X!==null&&W.types!==null&&(X.types=W.types),j.T=X}},he.unstable_useCacheRefresh=function(){return j.H.useCacheRefresh()},he.use=function(M){return j.H.use(M)},he.useActionState=function(M,X,W){return j.H.useActionState(M,X,W)},he.useCallback=function(M,X){return j.H.useCallback(M,X)},he.useContext=function(M){return j.H.useContext(M)},he.useDebugValue=function(){},he.useDeferredValue=function(M,X){return j.H.useDeferredValue(M,X)},he.useEffect=function(M,X){return j.H.useEffect(M,X)},he.useEffectEvent=function(M){return j.H.useEffectEvent(M)},he.useId=function(){return j.H.useId()},he.useImperativeHandle=function(M,X,W){return j.H.useImperativeHandle(M,X,W)},he.useInsertionEffect=function(M,X){return j.H.useInsertionEffect(M,X)},he.useLayoutEffect=function(M,X){return j.H.useLayoutEffect(M,X)},he.useMemo=function(M,X){return j.H.useMemo(M,X)},he.useOptimistic=function(M,X){return j.H.useOptimistic(M,X)},he.useReducer=function(M,X,W){return j.H.useReducer(M,X,W)},he.useRef=function(M){return j.H.useRef(M)},he.useState=function(M){return j.H.useState(M)},he.useSyncExternalStore=function(M,X,W){return j.H.useSyncExternalStore(M,X,W)},he.useTransition=function(){return j.H.useTransition()},he.version="19.2.1",he}var Yy;function Jh(){return Yy||(Yy=1,ih.exports=px()),ih.exports}var R=Jh();const Et=fx(R);function Zh(n,e,i,r){const[l,o]=Et.useState(i);return Et.useEffect(()=>{let u=!1;return n().then(f=>{u||o(f)}),()=>{u=!0}},e),l}function ds(){const n=Et.useRef(null),[e]=Ah(n);return[e,n]}function Ah(n){const[e,i]=Et.useState(new DOMRect(0,0,10,10)),r=Et.useCallback(()=>{const l=n==null?void 0:n.current;l&&i(l.getBoundingClientRect())},[n]);return Et.useLayoutEffect(()=>{const l=n==null?void 0:n.current;if(!l)return;r();const o=new ResizeObserver(r);return o.observe(l),window.addEventListener("resize",r),()=>{o.disconnect(),window.removeEventListener("resize",r)}},[r,n]),[e,r]}function rb(n,e,i,r,l){let o=0,u=n.length;for(;o<u;){const f=o+u>>1;i(e,n[f])>=0?o=f+1:u=f}return u}function Fy(n){const e=document.createElement("textarea");e.style.position="absolute",e.style.zIndex="-1000",e.value=n,document.body.appendChild(e),e.select(),document.execCommand("copy"),e.remove()}function Kt(n,e){n&&(e=as.getObject(n,e));const[i,r]=Et.useState(e),l=Et.useCallback(o=>{n?as.setObject(n,o):r(o)},[n,r]);return Et.useEffect(()=>{if(n){const o=()=>r(as.getObject(n,e));return as.onChangeEmitter.addEventListener(n,o),()=>as.onChangeEmitter.removeEventListener(n,o)}},[e,n]),[i,l]}const Ch=new Map,ab=new Map;let tc;function lr(n,e){const[i,r]=Et.useState();ab.set(n,{setter:r,defaultValue:e});const l=Et.useCallback(o=>{const u=Ch.get(tc||"default")||{};u[n]=o,Ch.set(tc||"default",u),r(o)},[n]);return[i,l]}function gx(n){if(tc===n)return;tc=n;const e=Ch.get(n)||{};for(const[i,r]of ab.entries())r.setter(e[i]||r.defaultValue)}class mx{constructor(){this.onChangeEmitter=new EventTarget}getString(e,i){return localStorage[e]||i}setString(e,i){var r;localStorage[e]=i,this.onChangeEmitter.dispatchEvent(new Event(e)),(r=window.saveSettings)==null||r.call(window)}getObject(e,i){if(!localStorage[e])return i;try{return JSON.parse(localStorage[e])}catch{return i}}setObject(e,i){var r;localStorage[e]=JSON.stringify(i),this.onChangeEmitter.dispatchEvent(new Event(e)),(r=window.saveSettings)==null||r.call(window)}}const as=new mx;function ct(...n){return n.filter(Boolean).join(" ")}function Wh(n){n&&(n!=null&&n.scrollIntoViewIfNeeded?n.scrollIntoViewIfNeeded(!1):n==null||n.scrollIntoView())}const Qy="\\u0000-\\u0020\\u007f-\\u009f",lb=new RegExp("(?:[a-zA-Z][a-zA-Z0-9+.-]{2,}:\\/\\/|www\\.)[^\\s"+Qy+'"]{2,}[^\\s'+Qy+`"')}\\],:;.!?]`,"ug");function yx(){const[n,e]=Et.useState(!1),i=Et.useCallback(()=>{const r=[];return e(l=>(r.push(setTimeout(()=>e(!1),1e3)),l?(r.push(setTimeout(()=>e(!0),50)),!1):!0)),()=>r.forEach(clearTimeout)},[e]);return[n,i]}const bx="system",ob="theme",vx=[{label:"Dark mode",value:"dark-mode"},{label:"Light mode",value:"light-mode"},{label:"System",value:"system"}],cb=window.matchMedia("(prefers-color-scheme: dark)");function N2(){document.playwrightThemeInitialized||(document.playwrightThemeInitialized=!0,document.defaultView.addEventListener("focus",n=>{n.target.document.nodeType===Node.DOCUMENT_NODE&&document.body.classList.remove("inactive")},!1),document.defaultView.addEventListener("blur",n=>{document.body.classList.add("inactive")},!1),Nh(kh()),cb.addEventListener("change",()=>{Nh(kh())}))}const ed=new Set;function Nh(n){const e=Sx(),i=n==="system"?cb.matches?"dark-mode":"light-mode":n;if(e!==i){e&&document.documentElement.classList.remove(e),document.documentElement.classList.add(i);for(const r of ed)r(i)}}function k2(n){ed.add(n)}function M2(n){ed.delete(n)}function kh(){return as.getString(ob,bx)}function Sx(){return document.documentElement.classList.contains("dark-mode")?"dark-mode":document.documentElement.classList.contains("light-mode")?"light-mode":null}function wx(){const[n,e]=Et.useState(kh());return Et.useEffect(()=>{as.setString(ob,n),Nh(n)},[n]),[n,e]}var sh={exports:{}},La={},rh={exports:{}},ah={};/**
19
+ * @license React
20
+ * scheduler.production.js
21
+ *
22
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
23
+ *
24
+ * This source code is licensed under the MIT license found in the
25
+ * LICENSE file in the root directory of this source tree.
26
+ */var Py;function xx(){return Py||(Py=1,(function(n){function e(q,Z){var re=q.length;q.push(Z);e:for(;0<re;){var me=re-1>>>1,Ee=q[me];if(0<l(Ee,Z))q[me]=Z,q[re]=Ee,re=me;else break e}}function i(q){return q.length===0?null:q[0]}function r(q){if(q.length===0)return null;var Z=q[0],re=q.pop();if(re!==Z){q[0]=re;e:for(var me=0,Ee=q.length,M=Ee>>>1;me<M;){var X=2*(me+1)-1,W=q[X],te=X+1,ue=q[te];if(0>l(W,re))te<Ee&&0>l(ue,W)?(q[me]=ue,q[te]=re,me=te):(q[me]=W,q[X]=re,me=X);else if(te<Ee&&0>l(ue,re))q[me]=ue,q[te]=re,me=te;else break e}}return Z}function l(q,Z){var re=q.sortIndex-Z.sortIndex;return re!==0?re:q.id-Z.id}if(n.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var o=performance;n.unstable_now=function(){return o.now()}}else{var u=Date,f=u.now();n.unstable_now=function(){return u.now()-f}}var d=[],g=[],m=1,y=null,S=3,w=!1,E=!1,x=!1,_=!1,A=typeof setTimeout=="function"?setTimeout:null,C=typeof clearTimeout=="function"?clearTimeout:null,H=typeof setImmediate<"u"?setImmediate:null;function V(q){for(var Z=i(g);Z!==null;){if(Z.callback===null)r(g);else if(Z.startTime<=q)r(g),Z.sortIndex=Z.expirationTime,e(d,Z);else break;Z=i(g)}}function K(q){if(x=!1,V(q),!E)if(i(d)!==null)E=!0,Q||(Q=!0,$());else{var Z=i(g);Z!==null&&Me(K,Z.startTime-q)}}var Q=!1,j=-1,I=5,O=-1;function P(){return _?!0:!(n.unstable_now()-O<I)}function J(){if(_=!1,Q){var q=n.unstable_now();O=q;var Z=!0;try{e:{E=!1,x&&(x=!1,C(j),j=-1),w=!0;var re=S;try{t:{for(V(q),y=i(d);y!==null&&!(y.expirationTime>q&&P());){var me=y.callback;if(typeof me=="function"){y.callback=null,S=y.priorityLevel;var Ee=me(y.expirationTime<=q);if(q=n.unstable_now(),typeof Ee=="function"){y.callback=Ee,V(q),Z=!0;break t}y===i(d)&&r(d),V(q)}else r(d);y=i(d)}if(y!==null)Z=!0;else{var M=i(g);M!==null&&Me(K,M.startTime-q),Z=!1}}break e}finally{y=null,S=re,w=!1}Z=void 0}}finally{Z?$():Q=!1}}}var $;if(typeof H=="function")$=function(){H(J)};else if(typeof MessageChannel<"u"){var ee=new MessageChannel,ce=ee.port2;ee.port1.onmessage=J,$=function(){ce.postMessage(null)}}else $=function(){A(J,0)};function Me(q,Z){j=A(function(){q(n.unstable_now())},Z)}n.unstable_IdlePriority=5,n.unstable_ImmediatePriority=1,n.unstable_LowPriority=4,n.unstable_NormalPriority=3,n.unstable_Profiling=null,n.unstable_UserBlockingPriority=2,n.unstable_cancelCallback=function(q){q.callback=null},n.unstable_forceFrameRate=function(q){0>q||125<q?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):I=0<q?Math.floor(1e3/q):5},n.unstable_getCurrentPriorityLevel=function(){return S},n.unstable_next=function(q){switch(S){case 1:case 2:case 3:var Z=3;break;default:Z=S}var re=S;S=Z;try{return q()}finally{S=re}},n.unstable_requestPaint=function(){_=!0},n.unstable_runWithPriority=function(q,Z){switch(q){case 1:case 2:case 3:case 4:case 5:break;default:q=3}var re=S;S=q;try{return Z()}finally{S=re}},n.unstable_scheduleCallback=function(q,Z,re){var me=n.unstable_now();switch(typeof re=="object"&&re!==null?(re=re.delay,re=typeof re=="number"&&0<re?me+re:me):re=me,q){case 1:var Ee=-1;break;case 2:Ee=250;break;case 5:Ee=1073741823;break;case 4:Ee=1e4;break;default:Ee=5e3}return Ee=re+Ee,q={id:m++,callback:Z,priorityLevel:q,startTime:re,expirationTime:Ee,sortIndex:-1},re>me?(q.sortIndex=re,e(g,q),i(d)===null&&q===i(g)&&(x?(C(j),j=-1):x=!0,Me(K,re-me))):(q.sortIndex=Ee,e(d,q),E||w||(E=!0,Q||(Q=!0,$()))),q},n.unstable_shouldYield=P,n.unstable_wrapCallback=function(q){var Z=S;return function(){var re=S;S=Z;try{return q.apply(this,arguments)}finally{S=re}}}})(ah)),ah}var Jy;function _x(){return Jy||(Jy=1,rh.exports=xx()),rh.exports}var lh={exports:{}},At={};/**
27
+ * @license React
28
+ * react-dom.production.js
29
+ *
30
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
31
+ *
32
+ * This source code is licensed under the MIT license found in the
33
+ * LICENSE file in the root directory of this source tree.
34
+ */var Zy;function Ex(){if(Zy)return At;Zy=1;var n=Jh();function e(d){var g="https://react.dev/errors/"+d;if(1<arguments.length){g+="?args[]="+encodeURIComponent(arguments[1]);for(var m=2;m<arguments.length;m++)g+="&args[]="+encodeURIComponent(arguments[m])}return"Minified React error #"+d+"; visit "+g+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function i(){}var r={d:{f:i,r:function(){throw Error(e(522))},D:i,C:i,L:i,m:i,X:i,S:i,M:i},p:0,findDOMNode:null},l=Symbol.for("react.portal");function o(d,g,m){var y=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:l,key:y==null?null:""+y,children:d,containerInfo:g,implementation:m}}var u=n.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;function f(d,g){if(d==="font")return"";if(typeof g=="string")return g==="use-credentials"?g:""}return At.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=r,At.createPortal=function(d,g){var m=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!g||g.nodeType!==1&&g.nodeType!==9&&g.nodeType!==11)throw Error(e(299));return o(d,g,null,m)},At.flushSync=function(d){var g=u.T,m=r.p;try{if(u.T=null,r.p=2,d)return d()}finally{u.T=g,r.p=m,r.d.f()}},At.preconnect=function(d,g){typeof d=="string"&&(g?(g=g.crossOrigin,g=typeof g=="string"?g==="use-credentials"?g:"":void 0):g=null,r.d.C(d,g))},At.prefetchDNS=function(d){typeof d=="string"&&r.d.D(d)},At.preinit=function(d,g){if(typeof d=="string"&&g&&typeof g.as=="string"){var m=g.as,y=f(m,g.crossOrigin),S=typeof g.integrity=="string"?g.integrity:void 0,w=typeof g.fetchPriority=="string"?g.fetchPriority:void 0;m==="style"?r.d.S(d,typeof g.precedence=="string"?g.precedence:void 0,{crossOrigin:y,integrity:S,fetchPriority:w}):m==="script"&&r.d.X(d,{crossOrigin:y,integrity:S,fetchPriority:w,nonce:typeof g.nonce=="string"?g.nonce:void 0})}},At.preinitModule=function(d,g){if(typeof d=="string")if(typeof g=="object"&&g!==null){if(g.as==null||g.as==="script"){var m=f(g.as,g.crossOrigin);r.d.M(d,{crossOrigin:m,integrity:typeof g.integrity=="string"?g.integrity:void 0,nonce:typeof g.nonce=="string"?g.nonce:void 0})}}else g==null&&r.d.M(d)},At.preload=function(d,g){if(typeof d=="string"&&typeof g=="object"&&g!==null&&typeof g.as=="string"){var m=g.as,y=f(m,g.crossOrigin);r.d.L(d,m,{crossOrigin:y,integrity:typeof g.integrity=="string"?g.integrity:void 0,nonce:typeof g.nonce=="string"?g.nonce:void 0,type:typeof g.type=="string"?g.type:void 0,fetchPriority:typeof g.fetchPriority=="string"?g.fetchPriority:void 0,referrerPolicy:typeof g.referrerPolicy=="string"?g.referrerPolicy:void 0,imageSrcSet:typeof g.imageSrcSet=="string"?g.imageSrcSet:void 0,imageSizes:typeof g.imageSizes=="string"?g.imageSizes:void 0,media:typeof g.media=="string"?g.media:void 0})}},At.preloadModule=function(d,g){if(typeof d=="string")if(g){var m=f(g.as,g.crossOrigin);r.d.m(d,{as:typeof g.as=="string"&&g.as!=="script"?g.as:void 0,crossOrigin:m,integrity:typeof g.integrity=="string"?g.integrity:void 0})}else r.d.m(d)},At.requestFormReset=function(d){r.d.r(d)},At.unstable_batchedUpdates=function(d,g){return d(g)},At.useFormState=function(d,g,m){return u.H.useFormState(d,g,m)},At.useFormStatus=function(){return u.H.useHostTransitionStatus()},At.version="19.2.1",At}var Wy;function Tx(){if(Wy)return lh.exports;Wy=1;function n(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(n)}catch(e){console.error(e)}}return n(),lh.exports=Ex(),lh.exports}/**
35
+ * @license React
36
+ * react-dom-client.production.js
37
+ *
38
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
39
+ *
40
+ * This source code is licensed under the MIT license found in the
41
+ * LICENSE file in the root directory of this source tree.
42
+ */var e0;function Ax(){if(e0)return La;e0=1;var n=_x(),e=Jh(),i=Tx();function r(t){var s="https://react.dev/errors/"+t;if(1<arguments.length){s+="?args[]="+encodeURIComponent(arguments[1]);for(var a=2;a<arguments.length;a++)s+="&args[]="+encodeURIComponent(arguments[a])}return"Minified React error #"+t+"; visit "+s+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function l(t){return!(!t||t.nodeType!==1&&t.nodeType!==9&&t.nodeType!==11)}function o(t){var s=t,a=t;if(t.alternate)for(;s.return;)s=s.return;else{t=s;do s=t,(s.flags&4098)!==0&&(a=s.return),t=s.return;while(t)}return s.tag===3?a:null}function u(t){if(t.tag===13){var s=t.memoizedState;if(s===null&&(t=t.alternate,t!==null&&(s=t.memoizedState)),s!==null)return s.dehydrated}return null}function f(t){if(t.tag===31){var s=t.memoizedState;if(s===null&&(t=t.alternate,t!==null&&(s=t.memoizedState)),s!==null)return s.dehydrated}return null}function d(t){if(o(t)!==t)throw Error(r(188))}function g(t){var s=t.alternate;if(!s){if(s=o(t),s===null)throw Error(r(188));return s!==t?null:t}for(var a=t,c=s;;){var h=a.return;if(h===null)break;var p=h.alternate;if(p===null){if(c=h.return,c!==null){a=c;continue}break}if(h.child===p.child){for(p=h.child;p;){if(p===a)return d(h),t;if(p===c)return d(h),s;p=p.sibling}throw Error(r(188))}if(a.return!==c.return)a=h,c=p;else{for(var b=!1,T=h.child;T;){if(T===a){b=!0,a=h,c=p;break}if(T===c){b=!0,c=h,a=p;break}T=T.sibling}if(!b){for(T=p.child;T;){if(T===a){b=!0,a=p,c=h;break}if(T===c){b=!0,c=p,a=h;break}T=T.sibling}if(!b)throw Error(r(189))}}if(a.alternate!==c)throw Error(r(190))}if(a.tag!==3)throw Error(r(188));return a.stateNode.current===a?t:s}function m(t){var s=t.tag;if(s===5||s===26||s===27||s===6)return t;for(t=t.child;t!==null;){if(s=m(t),s!==null)return s;t=t.sibling}return null}var y=Object.assign,S=Symbol.for("react.element"),w=Symbol.for("react.transitional.element"),E=Symbol.for("react.portal"),x=Symbol.for("react.fragment"),_=Symbol.for("react.strict_mode"),A=Symbol.for("react.profiler"),C=Symbol.for("react.consumer"),H=Symbol.for("react.context"),V=Symbol.for("react.forward_ref"),K=Symbol.for("react.suspense"),Q=Symbol.for("react.suspense_list"),j=Symbol.for("react.memo"),I=Symbol.for("react.lazy"),O=Symbol.for("react.activity"),P=Symbol.for("react.memo_cache_sentinel"),J=Symbol.iterator;function $(t){return t===null||typeof t!="object"?null:(t=J&&t[J]||t["@@iterator"],typeof t=="function"?t:null)}var ee=Symbol.for("react.client.reference");function ce(t){if(t==null)return null;if(typeof t=="function")return t.$$typeof===ee?null:t.displayName||t.name||null;if(typeof t=="string")return t;switch(t){case x:return"Fragment";case A:return"Profiler";case _:return"StrictMode";case K:return"Suspense";case Q:return"SuspenseList";case O:return"Activity"}if(typeof t=="object")switch(t.$$typeof){case E:return"Portal";case H:return t.displayName||"Context";case C:return(t._context.displayName||"Context")+".Consumer";case V:var s=t.render;return t=t.displayName,t||(t=s.displayName||s.name||"",t=t!==""?"ForwardRef("+t+")":"ForwardRef"),t;case j:return s=t.displayName||null,s!==null?s:ce(t.type)||"Memo";case I:s=t._payload,t=t._init;try{return ce(t(s))}catch{}}return null}var Me=Array.isArray,q=e.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,Z=i.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,re={pending:!1,data:null,method:null,action:null},me=[],Ee=-1;function M(t){return{current:t}}function X(t){0>Ee||(t.current=me[Ee],me[Ee]=null,Ee--)}function W(t,s){Ee++,me[Ee]=t.current,t.current=s}var te=M(null),ue=M(null),se=M(null),xe=M(null);function nt(t,s){switch(W(se,s),W(ue,t),W(te,null),s.nodeType){case 9:case 11:t=(t=s.documentElement)&&(t=t.namespaceURI)?dy(t):0;break;default:if(t=s.tagName,s=s.namespaceURI)s=dy(s),t=py(s,t);else switch(t){case"svg":t=1;break;case"math":t=2;break;default:t=0}}X(te),W(te,t)}function Re(){X(te),X(ue),X(se)}function Ln(t){t.memoizedState!==null&&W(xe,t);var s=te.current,a=py(s,t.type);s!==a&&(W(ue,t),W(te,a))}function fe(t){ue.current===t&&(X(te),X(ue)),xe.current===t&&(X(xe),Na._currentValue=re)}var _e,Ue;function He(t){if(_e===void 0)try{throw Error()}catch(a){var s=a.stack.trim().match(/\n( *(at )?)/);_e=s&&s[1]||"",Ue=-1<a.stack.indexOf(`
43
+ at`)?" (<anonymous>)":-1<a.stack.indexOf("@")?"@unknown:0:0":""}return`
44
+ `+_e+t+Ue}var Xt=!1;function Ye(t,s){if(!t||Xt)return"";Xt=!0;var a=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var c={DetermineComponentFrameRoot:function(){try{if(s){var F=function(){throw Error()};if(Object.defineProperty(F.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(F,[])}catch(B){var U=B}Reflect.construct(t,[],F)}else{try{F.call()}catch(B){U=B}t.call(F.prototype)}}else{try{throw Error()}catch(B){U=B}(F=t())&&typeof F.catch=="function"&&F.catch(function(){})}}catch(B){if(B&&U&&typeof B.stack=="string")return[B.stack,U.stack]}return[null,null]}};c.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var h=Object.getOwnPropertyDescriptor(c.DetermineComponentFrameRoot,"name");h&&h.configurable&&Object.defineProperty(c.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var p=c.DetermineComponentFrameRoot(),b=p[0],T=p[1];if(b&&T){var N=b.split(`
45
+ `),z=T.split(`
46
+ `);for(h=c=0;c<N.length&&!N[c].includes("DetermineComponentFrameRoot");)c++;for(;h<z.length&&!z[h].includes("DetermineComponentFrameRoot");)h++;if(c===N.length||h===z.length)for(c=N.length-1,h=z.length-1;1<=c&&0<=h&&N[c]!==z[h];)h--;for(;1<=c&&0<=h;c--,h--)if(N[c]!==z[h]){if(c!==1||h!==1)do if(c--,h--,0>h||N[c]!==z[h]){var G=`
47
+ `+N[c].replace(" at new "," at ");return t.displayName&&G.includes("<anonymous>")&&(G=G.replace("<anonymous>",t.displayName)),G}while(1<=c&&0<=h);break}}}finally{Xt=!1,Error.prepareStackTrace=a}return(a=t?t.displayName||t.name:"")?He(a):""}function Yt(t,s){switch(t.tag){case 26:case 27:case 5:return He(t.type);case 16:return He("Lazy");case 13:return t.child!==s&&s!==null?He("Suspense Fallback"):He("Suspense");case 19:return He("SuspenseList");case 0:case 15:return Ye(t.type,!1);case 11:return Ye(t.type.render,!1);case 1:return Ye(t.type,!0);case 31:return He("Activity");default:return""}}function ys(t){try{var s="",a=null;do s+=Yt(t,a),a=t,t=t.return;while(t);return s}catch(c){return`
48
+ Error generating stack: `+c.message+`
49
+ `+c.stack}}var qr=Object.prototype.hasOwnProperty,bs=n.unstable_scheduleCallback,vs=n.unstable_cancelCallback,Ss=n.unstable_shouldYield,Uc=n.unstable_requestPaint,it=n.unstable_now,Hc=n.unstable_getCurrentPriorityLevel,pl=n.unstable_ImmediatePriority,gl=n.unstable_UserBlockingPriority,ws=n.unstable_NormalPriority,ml=n.unstable_LowPriority,xs=n.unstable_IdlePriority,Bc=n.log,qc=n.unstable_setDisableYieldValue,Hi=null,ut=null;function Ft(t){if(typeof Bc=="function"&&qc(t),ut&&typeof ut.setStrictMode=="function")try{ut.setStrictMode(Hi,t)}catch{}}var kt=Math.clz32?Math.clz32:yl,$c=Math.log,Ic=Math.LN2;function yl(t){return t>>>=0,t===0?32:31-($c(t)/Ic|0)|0}var le=256,Tn=262144,sn=4194304;function Bi(t){var s=t&42;if(s!==0)return s;switch(t&-t){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return t&261888;case 262144:case 524288:case 1048576:case 2097152:return t&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return t&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return t}}function bl(t,s,a){var c=t.pendingLanes;if(c===0)return 0;var h=0,p=t.suspendedLanes,b=t.pingedLanes;t=t.warmLanes;var T=c&134217727;return T!==0?(c=T&~p,c!==0?h=Bi(c):(b&=T,b!==0?h=Bi(b):a||(a=T&~t,a!==0&&(h=Bi(a))))):(T=c&~p,T!==0?h=Bi(T):b!==0?h=Bi(b):a||(a=c&~t,a!==0&&(h=Bi(a)))),h===0?0:s!==0&&s!==h&&(s&p)===0&&(p=h&-h,a=s&-s,p>=a||p===32&&(a&4194048)!==0)?s:h}function $r(t,s){return(t.pendingLanes&~(t.suspendedLanes&~t.pingedLanes)&s)===0}function JS(t,s){switch(t){case 1:case 2:case 4:case 8:case 64:return s+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return s+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Fd(){var t=sn;return sn<<=1,(sn&62914560)===0&&(sn=4194304),t}function Vc(t){for(var s=[],a=0;31>a;a++)s.push(t);return s}function Ir(t,s){t.pendingLanes|=s,s!==268435456&&(t.suspendedLanes=0,t.pingedLanes=0,t.warmLanes=0)}function ZS(t,s,a,c,h,p){var b=t.pendingLanes;t.pendingLanes=a,t.suspendedLanes=0,t.pingedLanes=0,t.warmLanes=0,t.expiredLanes&=a,t.entangledLanes&=a,t.errorRecoveryDisabledLanes&=a,t.shellSuspendCounter=0;var T=t.entanglements,N=t.expirationTimes,z=t.hiddenUpdates;for(a=b&~a;0<a;){var G=31-kt(a),F=1<<G;T[G]=0,N[G]=-1;var U=z[G];if(U!==null)for(z[G]=null,G=0;G<U.length;G++){var B=U[G];B!==null&&(B.lane&=-536870913)}a&=~F}c!==0&&Qd(t,c,0),p!==0&&h===0&&t.tag!==0&&(t.suspendedLanes|=p&~(b&~s))}function Qd(t,s,a){t.pendingLanes|=s,t.suspendedLanes&=~s;var c=31-kt(s);t.entangledLanes|=s,t.entanglements[c]=t.entanglements[c]|1073741824|a&261930}function Pd(t,s){var a=t.entangledLanes|=s;for(t=t.entanglements;a;){var c=31-kt(a),h=1<<c;h&s|t[c]&s&&(t[c]|=s),a&=~h}}function Jd(t,s){var a=s&-s;return a=(a&42)!==0?1:Gc(a),(a&(t.suspendedLanes|s))!==0?0:a}function Gc(t){switch(t){case 2:t=1;break;case 8:t=4;break;case 32:t=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:t=128;break;case 268435456:t=134217728;break;default:t=0}return t}function Kc(t){return t&=-t,2<t?8<t?(t&134217727)!==0?32:268435456:8:2}function Zd(){var t=Z.p;return t!==0?t:(t=window.event,t===void 0?32:Uy(t.type))}function Wd(t,s){var a=Z.p;try{return Z.p=t,s()}finally{Z.p=a}}var ai=Math.random().toString(36).slice(2),yt="__reactFiber$"+ai,jt="__reactProps$"+ai,_s="__reactContainer$"+ai,Xc="__reactEvents$"+ai,WS="__reactListeners$"+ai,e1="__reactHandles$"+ai,ep="__reactResources$"+ai,Vr="__reactMarker$"+ai;function Yc(t){delete t[yt],delete t[jt],delete t[Xc],delete t[WS],delete t[e1]}function Es(t){var s=t[yt];if(s)return s;for(var a=t.parentNode;a;){if(s=a[_s]||a[yt]){if(a=s.alternate,s.child!==null||a!==null&&a.child!==null)for(t=wy(t);t!==null;){if(a=t[yt])return a;t=wy(t)}return s}t=a,a=t.parentNode}return null}function Ts(t){if(t=t[yt]||t[_s]){var s=t.tag;if(s===5||s===6||s===13||s===31||s===26||s===27||s===3)return t}return null}function Gr(t){var s=t.tag;if(s===5||s===26||s===27||s===6)return t.stateNode;throw Error(r(33))}function As(t){var s=t[ep];return s||(s=t[ep]={hoistableStyles:new Map,hoistableScripts:new Map}),s}function gt(t){t[Vr]=!0}var tp=new Set,np={};function qi(t,s){Cs(t,s),Cs(t+"Capture",s)}function Cs(t,s){for(np[t]=s,t=0;t<s.length;t++)tp.add(s[t])}var t1=RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),ip={},sp={};function n1(t){return qr.call(sp,t)?!0:qr.call(ip,t)?!1:t1.test(t)?sp[t]=!0:(ip[t]=!0,!1)}function vl(t,s,a){if(n1(s))if(a===null)t.removeAttribute(s);else{switch(typeof a){case"undefined":case"function":case"symbol":t.removeAttribute(s);return;case"boolean":var c=s.toLowerCase().slice(0,5);if(c!=="data-"&&c!=="aria-"){t.removeAttribute(s);return}}t.setAttribute(s,""+a)}}function Sl(t,s,a){if(a===null)t.removeAttribute(s);else{switch(typeof a){case"undefined":case"function":case"symbol":case"boolean":t.removeAttribute(s);return}t.setAttribute(s,""+a)}}function Rn(t,s,a,c){if(c===null)t.removeAttribute(a);else{switch(typeof c){case"undefined":case"function":case"symbol":case"boolean":t.removeAttribute(a);return}t.setAttributeNS(s,a,""+c)}}function rn(t){switch(typeof t){case"bigint":case"boolean":case"number":case"string":case"undefined":return t;case"object":return t;default:return""}}function rp(t){var s=t.type;return(t=t.nodeName)&&t.toLowerCase()==="input"&&(s==="checkbox"||s==="radio")}function i1(t,s,a){var c=Object.getOwnPropertyDescriptor(t.constructor.prototype,s);if(!t.hasOwnProperty(s)&&typeof c<"u"&&typeof c.get=="function"&&typeof c.set=="function"){var h=c.get,p=c.set;return Object.defineProperty(t,s,{configurable:!0,get:function(){return h.call(this)},set:function(b){a=""+b,p.call(this,b)}}),Object.defineProperty(t,s,{enumerable:c.enumerable}),{getValue:function(){return a},setValue:function(b){a=""+b},stopTracking:function(){t._valueTracker=null,delete t[s]}}}}function Fc(t){if(!t._valueTracker){var s=rp(t)?"checked":"value";t._valueTracker=i1(t,s,""+t[s])}}function ap(t){if(!t)return!1;var s=t._valueTracker;if(!s)return!0;var a=s.getValue(),c="";return t&&(c=rp(t)?t.checked?"true":"false":t.value),t=c,t!==a?(s.setValue(t),!0):!1}function wl(t){if(t=t||(typeof document<"u"?document:void 0),typeof t>"u")return null;try{return t.activeElement||t.body}catch{return t.body}}var s1=/[\n"\\]/g;function an(t){return t.replace(s1,function(s){return"\\"+s.charCodeAt(0).toString(16)+" "})}function Qc(t,s,a,c,h,p,b,T){t.name="",b!=null&&typeof b!="function"&&typeof b!="symbol"&&typeof b!="boolean"?t.type=b:t.removeAttribute("type"),s!=null?b==="number"?(s===0&&t.value===""||t.value!=s)&&(t.value=""+rn(s)):t.value!==""+rn(s)&&(t.value=""+rn(s)):b!=="submit"&&b!=="reset"||t.removeAttribute("value"),s!=null?Pc(t,b,rn(s)):a!=null?Pc(t,b,rn(a)):c!=null&&t.removeAttribute("value"),h==null&&p!=null&&(t.defaultChecked=!!p),h!=null&&(t.checked=h&&typeof h!="function"&&typeof h!="symbol"),T!=null&&typeof T!="function"&&typeof T!="symbol"&&typeof T!="boolean"?t.name=""+rn(T):t.removeAttribute("name")}function lp(t,s,a,c,h,p,b,T){if(p!=null&&typeof p!="function"&&typeof p!="symbol"&&typeof p!="boolean"&&(t.type=p),s!=null||a!=null){if(!(p!=="submit"&&p!=="reset"||s!=null)){Fc(t);return}a=a!=null?""+rn(a):"",s=s!=null?""+rn(s):a,T||s===t.value||(t.value=s),t.defaultValue=s}c=c??h,c=typeof c!="function"&&typeof c!="symbol"&&!!c,t.checked=T?t.checked:!!c,t.defaultChecked=!!c,b!=null&&typeof b!="function"&&typeof b!="symbol"&&typeof b!="boolean"&&(t.name=b),Fc(t)}function Pc(t,s,a){s==="number"&&wl(t.ownerDocument)===t||t.defaultValue===""+a||(t.defaultValue=""+a)}function Ns(t,s,a,c){if(t=t.options,s){s={};for(var h=0;h<a.length;h++)s["$"+a[h]]=!0;for(a=0;a<t.length;a++)h=s.hasOwnProperty("$"+t[a].value),t[a].selected!==h&&(t[a].selected=h),h&&c&&(t[a].defaultSelected=!0)}else{for(a=""+rn(a),s=null,h=0;h<t.length;h++){if(t[h].value===a){t[h].selected=!0,c&&(t[h].defaultSelected=!0);return}s!==null||t[h].disabled||(s=t[h])}s!==null&&(s.selected=!0)}}function op(t,s,a){if(s!=null&&(s=""+rn(s),s!==t.value&&(t.value=s),a==null)){t.defaultValue!==s&&(t.defaultValue=s);return}t.defaultValue=a!=null?""+rn(a):""}function cp(t,s,a,c){if(s==null){if(c!=null){if(a!=null)throw Error(r(92));if(Me(c)){if(1<c.length)throw Error(r(93));c=c[0]}a=c}a==null&&(a=""),s=a}a=rn(s),t.defaultValue=a,c=t.textContent,c===a&&c!==""&&c!==null&&(t.value=c),Fc(t)}function ks(t,s){if(s){var a=t.firstChild;if(a&&a===t.lastChild&&a.nodeType===3){a.nodeValue=s;return}}t.textContent=s}var r1=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" "));function up(t,s,a){var c=s.indexOf("--")===0;a==null||typeof a=="boolean"||a===""?c?t.setProperty(s,""):s==="float"?t.cssFloat="":t[s]="":c?t.setProperty(s,a):typeof a!="number"||a===0||r1.has(s)?s==="float"?t.cssFloat=a:t[s]=(""+a).trim():t[s]=a+"px"}function fp(t,s,a){if(s!=null&&typeof s!="object")throw Error(r(62));if(t=t.style,a!=null){for(var c in a)!a.hasOwnProperty(c)||s!=null&&s.hasOwnProperty(c)||(c.indexOf("--")===0?t.setProperty(c,""):c==="float"?t.cssFloat="":t[c]="");for(var h in s)c=s[h],s.hasOwnProperty(h)&&a[h]!==c&&up(t,h,c)}else for(var p in s)s.hasOwnProperty(p)&&up(t,p,s[p])}function Jc(t){if(t.indexOf("-")===-1)return!1;switch(t){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var a1=new Map([["acceptCharset","accept-charset"],["htmlFor","for"],["httpEquiv","http-equiv"],["crossOrigin","crossorigin"],["accentHeight","accent-height"],["alignmentBaseline","alignment-baseline"],["arabicForm","arabic-form"],["baselineShift","baseline-shift"],["capHeight","cap-height"],["clipPath","clip-path"],["clipRule","clip-rule"],["colorInterpolation","color-interpolation"],["colorInterpolationFilters","color-interpolation-filters"],["colorProfile","color-profile"],["colorRendering","color-rendering"],["dominantBaseline","dominant-baseline"],["enableBackground","enable-background"],["fillOpacity","fill-opacity"],["fillRule","fill-rule"],["floodColor","flood-color"],["floodOpacity","flood-opacity"],["fontFamily","font-family"],["fontSize","font-size"],["fontSizeAdjust","font-size-adjust"],["fontStretch","font-stretch"],["fontStyle","font-style"],["fontVariant","font-variant"],["fontWeight","font-weight"],["glyphName","glyph-name"],["glyphOrientationHorizontal","glyph-orientation-horizontal"],["glyphOrientationVertical","glyph-orientation-vertical"],["horizAdvX","horiz-adv-x"],["horizOriginX","horiz-origin-x"],["imageRendering","image-rendering"],["letterSpacing","letter-spacing"],["lightingColor","lighting-color"],["markerEnd","marker-end"],["markerMid","marker-mid"],["markerStart","marker-start"],["overlinePosition","overline-position"],["overlineThickness","overline-thickness"],["paintOrder","paint-order"],["panose-1","panose-1"],["pointerEvents","pointer-events"],["renderingIntent","rendering-intent"],["shapeRendering","shape-rendering"],["stopColor","stop-color"],["stopOpacity","stop-opacity"],["strikethroughPosition","strikethrough-position"],["strikethroughThickness","strikethrough-thickness"],["strokeDasharray","stroke-dasharray"],["strokeDashoffset","stroke-dashoffset"],["strokeLinecap","stroke-linecap"],["strokeLinejoin","stroke-linejoin"],["strokeMiterlimit","stroke-miterlimit"],["strokeOpacity","stroke-opacity"],["strokeWidth","stroke-width"],["textAnchor","text-anchor"],["textDecoration","text-decoration"],["textRendering","text-rendering"],["transformOrigin","transform-origin"],["underlinePosition","underline-position"],["underlineThickness","underline-thickness"],["unicodeBidi","unicode-bidi"],["unicodeRange","unicode-range"],["unitsPerEm","units-per-em"],["vAlphabetic","v-alphabetic"],["vHanging","v-hanging"],["vIdeographic","v-ideographic"],["vMathematical","v-mathematical"],["vectorEffect","vector-effect"],["vertAdvY","vert-adv-y"],["vertOriginX","vert-origin-x"],["vertOriginY","vert-origin-y"],["wordSpacing","word-spacing"],["writingMode","writing-mode"],["xmlnsXlink","xmlns:xlink"],["xHeight","x-height"]]),l1=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function xl(t){return l1.test(""+t)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":t}function Dn(){}var Zc=null;function Wc(t){return t=t.target||t.srcElement||window,t.correspondingUseElement&&(t=t.correspondingUseElement),t.nodeType===3?t.parentNode:t}var Ms=null,Os=null;function hp(t){var s=Ts(t);if(s&&(t=s.stateNode)){var a=t[jt]||null;e:switch(t=s.stateNode,s.type){case"input":if(Qc(t,a.value,a.defaultValue,a.defaultValue,a.checked,a.defaultChecked,a.type,a.name),s=a.name,a.type==="radio"&&s!=null){for(a=t;a.parentNode;)a=a.parentNode;for(a=a.querySelectorAll('input[name="'+an(""+s)+'"][type="radio"]'),s=0;s<a.length;s++){var c=a[s];if(c!==t&&c.form===t.form){var h=c[jt]||null;if(!h)throw Error(r(90));Qc(c,h.value,h.defaultValue,h.defaultValue,h.checked,h.defaultChecked,h.type,h.name)}}for(s=0;s<a.length;s++)c=a[s],c.form===t.form&&ap(c)}break e;case"textarea":op(t,a.value,a.defaultValue);break e;case"select":s=a.value,s!=null&&Ns(t,!!a.multiple,s,!1)}}}var eu=!1;function dp(t,s,a){if(eu)return t(s,a);eu=!0;try{var c=t(s);return c}finally{if(eu=!1,(Ms!==null||Os!==null)&&(co(),Ms&&(s=Ms,t=Os,Os=Ms=null,hp(s),t)))for(s=0;s<t.length;s++)hp(t[s])}}function Kr(t,s){var a=t.stateNode;if(a===null)return null;var c=a[jt]||null;if(c===null)return null;a=c[s];e:switch(s){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(c=!c.disabled)||(t=t.type,c=!(t==="button"||t==="input"||t==="select"||t==="textarea")),t=!c;break e;default:t=!1}if(t)return null;if(a&&typeof a!="function")throw Error(r(231,s,typeof a));return a}var zn=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),tu=!1;if(zn)try{var Xr={};Object.defineProperty(Xr,"passive",{get:function(){tu=!0}}),window.addEventListener("test",Xr,Xr),window.removeEventListener("test",Xr,Xr)}catch{tu=!1}var li=null,nu=null,_l=null;function pp(){if(_l)return _l;var t,s=nu,a=s.length,c,h="value"in li?li.value:li.textContent,p=h.length;for(t=0;t<a&&s[t]===h[t];t++);var b=a-t;for(c=1;c<=b&&s[a-c]===h[p-c];c++);return _l=h.slice(t,1<c?1-c:void 0)}function El(t){var s=t.keyCode;return"charCode"in t?(t=t.charCode,t===0&&s===13&&(t=13)):t=s,t===10&&(t=13),32<=t||t===13?t:0}function Tl(){return!0}function gp(){return!1}function Lt(t){function s(a,c,h,p,b){this._reactName=a,this._targetInst=h,this.type=c,this.nativeEvent=p,this.target=b,this.currentTarget=null;for(var T in t)t.hasOwnProperty(T)&&(a=t[T],this[T]=a?a(p):p[T]);return this.isDefaultPrevented=(p.defaultPrevented!=null?p.defaultPrevented:p.returnValue===!1)?Tl:gp,this.isPropagationStopped=gp,this}return y(s.prototype,{preventDefault:function(){this.defaultPrevented=!0;var a=this.nativeEvent;a&&(a.preventDefault?a.preventDefault():typeof a.returnValue!="unknown"&&(a.returnValue=!1),this.isDefaultPrevented=Tl)},stopPropagation:function(){var a=this.nativeEvent;a&&(a.stopPropagation?a.stopPropagation():typeof a.cancelBubble!="unknown"&&(a.cancelBubble=!0),this.isPropagationStopped=Tl)},persist:function(){},isPersistent:Tl}),s}var $i={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(t){return t.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Al=Lt($i),Yr=y({},$i,{view:0,detail:0}),o1=Lt(Yr),iu,su,Fr,Cl=y({},Yr,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:au,button:0,buttons:0,relatedTarget:function(t){return t.relatedTarget===void 0?t.fromElement===t.srcElement?t.toElement:t.fromElement:t.relatedTarget},movementX:function(t){return"movementX"in t?t.movementX:(t!==Fr&&(Fr&&t.type==="mousemove"?(iu=t.screenX-Fr.screenX,su=t.screenY-Fr.screenY):su=iu=0,Fr=t),iu)},movementY:function(t){return"movementY"in t?t.movementY:su}}),mp=Lt(Cl),c1=y({},Cl,{dataTransfer:0}),u1=Lt(c1),f1=y({},Yr,{relatedTarget:0}),ru=Lt(f1),h1=y({},$i,{animationName:0,elapsedTime:0,pseudoElement:0}),d1=Lt(h1),p1=y({},$i,{clipboardData:function(t){return"clipboardData"in t?t.clipboardData:window.clipboardData}}),g1=Lt(p1),m1=y({},$i,{data:0}),yp=Lt(m1),y1={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},b1={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},v1={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function S1(t){var s=this.nativeEvent;return s.getModifierState?s.getModifierState(t):(t=v1[t])?!!s[t]:!1}function au(){return S1}var w1=y({},Yr,{key:function(t){if(t.key){var s=y1[t.key]||t.key;if(s!=="Unidentified")return s}return t.type==="keypress"?(t=El(t),t===13?"Enter":String.fromCharCode(t)):t.type==="keydown"||t.type==="keyup"?b1[t.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:au,charCode:function(t){return t.type==="keypress"?El(t):0},keyCode:function(t){return t.type==="keydown"||t.type==="keyup"?t.keyCode:0},which:function(t){return t.type==="keypress"?El(t):t.type==="keydown"||t.type==="keyup"?t.keyCode:0}}),x1=Lt(w1),_1=y({},Cl,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),bp=Lt(_1),E1=y({},Yr,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:au}),T1=Lt(E1),A1=y({},$i,{propertyName:0,elapsedTime:0,pseudoElement:0}),C1=Lt(A1),N1=y({},Cl,{deltaX:function(t){return"deltaX"in t?t.deltaX:"wheelDeltaX"in t?-t.wheelDeltaX:0},deltaY:function(t){return"deltaY"in t?t.deltaY:"wheelDeltaY"in t?-t.wheelDeltaY:"wheelDelta"in t?-t.wheelDelta:0},deltaZ:0,deltaMode:0}),k1=Lt(N1),M1=y({},$i,{newState:0,oldState:0}),O1=Lt(M1),j1=[9,13,27,32],lu=zn&&"CompositionEvent"in window,Qr=null;zn&&"documentMode"in document&&(Qr=document.documentMode);var L1=zn&&"TextEvent"in window&&!Qr,vp=zn&&(!lu||Qr&&8<Qr&&11>=Qr),Sp=" ",wp=!1;function xp(t,s){switch(t){case"keyup":return j1.indexOf(s.keyCode)!==-1;case"keydown":return s.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function _p(t){return t=t.detail,typeof t=="object"&&"data"in t?t.data:null}var js=!1;function R1(t,s){switch(t){case"compositionend":return _p(s);case"keypress":return s.which!==32?null:(wp=!0,Sp);case"textInput":return t=s.data,t===Sp&&wp?null:t;default:return null}}function D1(t,s){if(js)return t==="compositionend"||!lu&&xp(t,s)?(t=pp(),_l=nu=li=null,js=!1,t):null;switch(t){case"paste":return null;case"keypress":if(!(s.ctrlKey||s.altKey||s.metaKey)||s.ctrlKey&&s.altKey){if(s.char&&1<s.char.length)return s.char;if(s.which)return String.fromCharCode(s.which)}return null;case"compositionend":return vp&&s.locale!=="ko"?null:s.data;default:return null}}var z1={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Ep(t){var s=t&&t.nodeName&&t.nodeName.toLowerCase();return s==="input"?!!z1[t.type]:s==="textarea"}function Tp(t,s,a,c){Ms?Os?Os.push(c):Os=[c]:Ms=c,s=yo(s,"onChange"),0<s.length&&(a=new Al("onChange","change",null,a,c),t.push({event:a,listeners:s}))}var Pr=null,Jr=null;function U1(t){ly(t,0)}function Nl(t){var s=Gr(t);if(ap(s))return t}function Ap(t,s){if(t==="change")return s}var Cp=!1;if(zn){var ou;if(zn){var cu="oninput"in document;if(!cu){var Np=document.createElement("div");Np.setAttribute("oninput","return;"),cu=typeof Np.oninput=="function"}ou=cu}else ou=!1;Cp=ou&&(!document.documentMode||9<document.documentMode)}function kp(){Pr&&(Pr.detachEvent("onpropertychange",Mp),Jr=Pr=null)}function Mp(t){if(t.propertyName==="value"&&Nl(Jr)){var s=[];Tp(s,Jr,t,Wc(t)),dp(U1,s)}}function H1(t,s,a){t==="focusin"?(kp(),Pr=s,Jr=a,Pr.attachEvent("onpropertychange",Mp)):t==="focusout"&&kp()}function B1(t){if(t==="selectionchange"||t==="keyup"||t==="keydown")return Nl(Jr)}function q1(t,s){if(t==="click")return Nl(s)}function $1(t,s){if(t==="input"||t==="change")return Nl(s)}function I1(t,s){return t===s&&(t!==0||1/t===1/s)||t!==t&&s!==s}var Qt=typeof Object.is=="function"?Object.is:I1;function Zr(t,s){if(Qt(t,s))return!0;if(typeof t!="object"||t===null||typeof s!="object"||s===null)return!1;var a=Object.keys(t),c=Object.keys(s);if(a.length!==c.length)return!1;for(c=0;c<a.length;c++){var h=a[c];if(!qr.call(s,h)||!Qt(t[h],s[h]))return!1}return!0}function Op(t){for(;t&&t.firstChild;)t=t.firstChild;return t}function jp(t,s){var a=Op(t);t=0;for(var c;a;){if(a.nodeType===3){if(c=t+a.textContent.length,t<=s&&c>=s)return{node:a,offset:s-t};t=c}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=Op(a)}}function Lp(t,s){return t&&s?t===s?!0:t&&t.nodeType===3?!1:s&&s.nodeType===3?Lp(t,s.parentNode):"contains"in t?t.contains(s):t.compareDocumentPosition?!!(t.compareDocumentPosition(s)&16):!1:!1}function Rp(t){t=t!=null&&t.ownerDocument!=null&&t.ownerDocument.defaultView!=null?t.ownerDocument.defaultView:window;for(var s=wl(t.document);s instanceof t.HTMLIFrameElement;){try{var a=typeof s.contentWindow.location.href=="string"}catch{a=!1}if(a)t=s.contentWindow;else break;s=wl(t.document)}return s}function uu(t){var s=t&&t.nodeName&&t.nodeName.toLowerCase();return s&&(s==="input"&&(t.type==="text"||t.type==="search"||t.type==="tel"||t.type==="url"||t.type==="password")||s==="textarea"||t.contentEditable==="true")}var V1=zn&&"documentMode"in document&&11>=document.documentMode,Ls=null,fu=null,Wr=null,hu=!1;function Dp(t,s,a){var c=a.window===a?a.document:a.nodeType===9?a:a.ownerDocument;hu||Ls==null||Ls!==wl(c)||(c=Ls,"selectionStart"in c&&uu(c)?c={start:c.selectionStart,end:c.selectionEnd}:(c=(c.ownerDocument&&c.ownerDocument.defaultView||window).getSelection(),c={anchorNode:c.anchorNode,anchorOffset:c.anchorOffset,focusNode:c.focusNode,focusOffset:c.focusOffset}),Wr&&Zr(Wr,c)||(Wr=c,c=yo(fu,"onSelect"),0<c.length&&(s=new Al("onSelect","select",null,s,a),t.push({event:s,listeners:c}),s.target=Ls)))}function Ii(t,s){var a={};return a[t.toLowerCase()]=s.toLowerCase(),a["Webkit"+t]="webkit"+s,a["Moz"+t]="moz"+s,a}var Rs={animationend:Ii("Animation","AnimationEnd"),animationiteration:Ii("Animation","AnimationIteration"),animationstart:Ii("Animation","AnimationStart"),transitionrun:Ii("Transition","TransitionRun"),transitionstart:Ii("Transition","TransitionStart"),transitioncancel:Ii("Transition","TransitionCancel"),transitionend:Ii("Transition","TransitionEnd")},du={},zp={};zn&&(zp=document.createElement("div").style,"AnimationEvent"in window||(delete Rs.animationend.animation,delete Rs.animationiteration.animation,delete Rs.animationstart.animation),"TransitionEvent"in window||delete Rs.transitionend.transition);function Vi(t){if(du[t])return du[t];if(!Rs[t])return t;var s=Rs[t],a;for(a in s)if(s.hasOwnProperty(a)&&a in zp)return du[t]=s[a];return t}var Up=Vi("animationend"),Hp=Vi("animationiteration"),Bp=Vi("animationstart"),G1=Vi("transitionrun"),K1=Vi("transitionstart"),X1=Vi("transitioncancel"),qp=Vi("transitionend"),$p=new Map,pu="abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");pu.push("scrollEnd");function vn(t,s){$p.set(t,s),qi(s,[t])}var kl=typeof reportError=="function"?reportError:function(t){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var s=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof t=="object"&&t!==null&&typeof t.message=="string"?String(t.message):String(t),error:t});if(!window.dispatchEvent(s))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",t);return}console.error(t)},ln=[],Ds=0,gu=0;function Ml(){for(var t=Ds,s=gu=Ds=0;s<t;){var a=ln[s];ln[s++]=null;var c=ln[s];ln[s++]=null;var h=ln[s];ln[s++]=null;var p=ln[s];if(ln[s++]=null,c!==null&&h!==null){var b=c.pending;b===null?h.next=h:(h.next=b.next,b.next=h),c.pending=h}p!==0&&Ip(a,h,p)}}function Ol(t,s,a,c){ln[Ds++]=t,ln[Ds++]=s,ln[Ds++]=a,ln[Ds++]=c,gu|=c,t.lanes|=c,t=t.alternate,t!==null&&(t.lanes|=c)}function mu(t,s,a,c){return Ol(t,s,a,c),jl(t)}function Gi(t,s){return Ol(t,null,null,s),jl(t)}function Ip(t,s,a){t.lanes|=a;var c=t.alternate;c!==null&&(c.lanes|=a);for(var h=!1,p=t.return;p!==null;)p.childLanes|=a,c=p.alternate,c!==null&&(c.childLanes|=a),p.tag===22&&(t=p.stateNode,t===null||t._visibility&1||(h=!0)),t=p,p=p.return;return t.tag===3?(p=t.stateNode,h&&s!==null&&(h=31-kt(a),t=p.hiddenUpdates,c=t[h],c===null?t[h]=[s]:c.push(s),s.lane=a|536870912),p):null}function jl(t){if(50<wa)throw wa=0,Af=null,Error(r(185));for(var s=t.return;s!==null;)t=s,s=t.return;return t.tag===3?t.stateNode:null}var zs={};function Y1(t,s,a,c){this.tag=t,this.key=a,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=s,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=c,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Pt(t,s,a,c){return new Y1(t,s,a,c)}function yu(t){return t=t.prototype,!(!t||!t.isReactComponent)}function Un(t,s){var a=t.alternate;return a===null?(a=Pt(t.tag,s,t.key,t.mode),a.elementType=t.elementType,a.type=t.type,a.stateNode=t.stateNode,a.alternate=t,t.alternate=a):(a.pendingProps=s,a.type=t.type,a.flags=0,a.subtreeFlags=0,a.deletions=null),a.flags=t.flags&65011712,a.childLanes=t.childLanes,a.lanes=t.lanes,a.child=t.child,a.memoizedProps=t.memoizedProps,a.memoizedState=t.memoizedState,a.updateQueue=t.updateQueue,s=t.dependencies,a.dependencies=s===null?null:{lanes:s.lanes,firstContext:s.firstContext},a.sibling=t.sibling,a.index=t.index,a.ref=t.ref,a.refCleanup=t.refCleanup,a}function Vp(t,s){t.flags&=65011714;var a=t.alternate;return a===null?(t.childLanes=0,t.lanes=s,t.child=null,t.subtreeFlags=0,t.memoizedProps=null,t.memoizedState=null,t.updateQueue=null,t.dependencies=null,t.stateNode=null):(t.childLanes=a.childLanes,t.lanes=a.lanes,t.child=a.child,t.subtreeFlags=0,t.deletions=null,t.memoizedProps=a.memoizedProps,t.memoizedState=a.memoizedState,t.updateQueue=a.updateQueue,t.type=a.type,s=a.dependencies,t.dependencies=s===null?null:{lanes:s.lanes,firstContext:s.firstContext}),t}function Ll(t,s,a,c,h,p){var b=0;if(c=t,typeof t=="function")yu(t)&&(b=1);else if(typeof t=="string")b=Zw(t,a,te.current)?26:t==="html"||t==="head"||t==="body"?27:5;else e:switch(t){case O:return t=Pt(31,a,s,h),t.elementType=O,t.lanes=p,t;case x:return Ki(a.children,h,p,s);case _:b=8,h|=24;break;case A:return t=Pt(12,a,s,h|2),t.elementType=A,t.lanes=p,t;case K:return t=Pt(13,a,s,h),t.elementType=K,t.lanes=p,t;case Q:return t=Pt(19,a,s,h),t.elementType=Q,t.lanes=p,t;default:if(typeof t=="object"&&t!==null)switch(t.$$typeof){case H:b=10;break e;case C:b=9;break e;case V:b=11;break e;case j:b=14;break e;case I:b=16,c=null;break e}b=29,a=Error(r(130,t===null?"null":typeof t,"")),c=null}return s=Pt(b,a,s,h),s.elementType=t,s.type=c,s.lanes=p,s}function Ki(t,s,a,c){return t=Pt(7,t,c,s),t.lanes=a,t}function bu(t,s,a){return t=Pt(6,t,null,s),t.lanes=a,t}function Gp(t){var s=Pt(18,null,null,0);return s.stateNode=t,s}function vu(t,s,a){return s=Pt(4,t.children!==null?t.children:[],t.key,s),s.lanes=a,s.stateNode={containerInfo:t.containerInfo,pendingChildren:null,implementation:t.implementation},s}var Kp=new WeakMap;function on(t,s){if(typeof t=="object"&&t!==null){var a=Kp.get(t);return a!==void 0?a:(s={value:t,source:s,stack:ys(s)},Kp.set(t,s),s)}return{value:t,source:s,stack:ys(s)}}var Us=[],Hs=0,Rl=null,ea=0,cn=[],un=0,oi=null,An=1,Cn="";function Hn(t,s){Us[Hs++]=ea,Us[Hs++]=Rl,Rl=t,ea=s}function Xp(t,s,a){cn[un++]=An,cn[un++]=Cn,cn[un++]=oi,oi=t;var c=An;t=Cn;var h=32-kt(c)-1;c&=~(1<<h),a+=1;var p=32-kt(s)+h;if(30<p){var b=h-h%5;p=(c&(1<<b)-1).toString(32),c>>=b,h-=b,An=1<<32-kt(s)+h|a<<h|c,Cn=p+t}else An=1<<p|a<<h|c,Cn=t}function Su(t){t.return!==null&&(Hn(t,1),Xp(t,1,0))}function wu(t){for(;t===Rl;)Rl=Us[--Hs],Us[Hs]=null,ea=Us[--Hs],Us[Hs]=null;for(;t===oi;)oi=cn[--un],cn[un]=null,Cn=cn[--un],cn[un]=null,An=cn[--un],cn[un]=null}function Yp(t,s){cn[un++]=An,cn[un++]=Cn,cn[un++]=oi,An=s.id,Cn=s.overflow,oi=t}var bt=null,Be=null,we=!1,ci=null,fn=!1,xu=Error(r(519));function ui(t){var s=Error(r(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw ta(on(s,t)),xu}function Fp(t){var s=t.stateNode,a=t.type,c=t.memoizedProps;switch(s[yt]=t,s[jt]=c,a){case"dialog":be("cancel",s),be("close",s);break;case"iframe":case"object":case"embed":be("load",s);break;case"video":case"audio":for(a=0;a<_a.length;a++)be(_a[a],s);break;case"source":be("error",s);break;case"img":case"image":case"link":be("error",s),be("load",s);break;case"details":be("toggle",s);break;case"input":be("invalid",s),lp(s,c.value,c.defaultValue,c.checked,c.defaultChecked,c.type,c.name,!0);break;case"select":be("invalid",s);break;case"textarea":be("invalid",s),cp(s,c.value,c.defaultValue,c.children)}a=c.children,typeof a!="string"&&typeof a!="number"&&typeof a!="bigint"||s.textContent===""+a||c.suppressHydrationWarning===!0||fy(s.textContent,a)?(c.popover!=null&&(be("beforetoggle",s),be("toggle",s)),c.onScroll!=null&&be("scroll",s),c.onScrollEnd!=null&&be("scrollend",s),c.onClick!=null&&(s.onclick=Dn),s=!0):s=!1,s||ui(t,!0)}function Qp(t){for(bt=t.return;bt;)switch(bt.tag){case 5:case 31:case 13:fn=!1;return;case 27:case 3:fn=!0;return;default:bt=bt.return}}function Bs(t){if(t!==bt)return!1;if(!we)return Qp(t),we=!0,!1;var s=t.tag,a;if((a=s!==3&&s!==27)&&((a=s===5)&&(a=t.type,a=!(a!=="form"&&a!=="button")||$f(t.type,t.memoizedProps)),a=!a),a&&Be&&ui(t),Qp(t),s===13){if(t=t.memoizedState,t=t!==null?t.dehydrated:null,!t)throw Error(r(317));Be=Sy(t)}else if(s===31){if(t=t.memoizedState,t=t!==null?t.dehydrated:null,!t)throw Error(r(317));Be=Sy(t)}else s===27?(s=Be,Ei(t.type)?(t=Xf,Xf=null,Be=t):Be=s):Be=bt?dn(t.stateNode.nextSibling):null;return!0}function Xi(){Be=bt=null,we=!1}function _u(){var t=ci;return t!==null&&(Ut===null?Ut=t:Ut.push.apply(Ut,t),ci=null),t}function ta(t){ci===null?ci=[t]:ci.push(t)}var Eu=M(null),Yi=null,Bn=null;function fi(t,s,a){W(Eu,s._currentValue),s._currentValue=a}function qn(t){t._currentValue=Eu.current,X(Eu)}function Tu(t,s,a){for(;t!==null;){var c=t.alternate;if((t.childLanes&s)!==s?(t.childLanes|=s,c!==null&&(c.childLanes|=s)):c!==null&&(c.childLanes&s)!==s&&(c.childLanes|=s),t===a)break;t=t.return}}function Au(t,s,a,c){var h=t.child;for(h!==null&&(h.return=t);h!==null;){var p=h.dependencies;if(p!==null){var b=h.child;p=p.firstContext;e:for(;p!==null;){var T=p;p=h;for(var N=0;N<s.length;N++)if(T.context===s[N]){p.lanes|=a,T=p.alternate,T!==null&&(T.lanes|=a),Tu(p.return,a,t),c||(b=null);break e}p=T.next}}else if(h.tag===18){if(b=h.return,b===null)throw Error(r(341));b.lanes|=a,p=b.alternate,p!==null&&(p.lanes|=a),Tu(b,a,t),b=null}else b=h.child;if(b!==null)b.return=h;else for(b=h;b!==null;){if(b===t){b=null;break}if(h=b.sibling,h!==null){h.return=b.return,b=h;break}b=b.return}h=b}}function qs(t,s,a,c){t=null;for(var h=s,p=!1;h!==null;){if(!p){if((h.flags&524288)!==0)p=!0;else if((h.flags&262144)!==0)break}if(h.tag===10){var b=h.alternate;if(b===null)throw Error(r(387));if(b=b.memoizedProps,b!==null){var T=h.type;Qt(h.pendingProps.value,b.value)||(t!==null?t.push(T):t=[T])}}else if(h===xe.current){if(b=h.alternate,b===null)throw Error(r(387));b.memoizedState.memoizedState!==h.memoizedState.memoizedState&&(t!==null?t.push(Na):t=[Na])}h=h.return}t!==null&&Au(s,t,a,c),s.flags|=262144}function Dl(t){for(t=t.firstContext;t!==null;){if(!Qt(t.context._currentValue,t.memoizedValue))return!0;t=t.next}return!1}function Fi(t){Yi=t,Bn=null,t=t.dependencies,t!==null&&(t.firstContext=null)}function vt(t){return Pp(Yi,t)}function zl(t,s){return Yi===null&&Fi(t),Pp(t,s)}function Pp(t,s){var a=s._currentValue;if(s={context:s,memoizedValue:a,next:null},Bn===null){if(t===null)throw Error(r(308));Bn=s,t.dependencies={lanes:0,firstContext:s},t.flags|=524288}else Bn=Bn.next=s;return a}var F1=typeof AbortController<"u"?AbortController:function(){var t=[],s=this.signal={aborted:!1,addEventListener:function(a,c){t.push(c)}};this.abort=function(){s.aborted=!0,t.forEach(function(a){return a()})}},Q1=n.unstable_scheduleCallback,P1=n.unstable_NormalPriority,st={$$typeof:H,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function Cu(){return{controller:new F1,data:new Map,refCount:0}}function na(t){t.refCount--,t.refCount===0&&Q1(P1,function(){t.controller.abort()})}var ia=null,Nu=0,$s=0,Is=null;function J1(t,s){if(ia===null){var a=ia=[];Nu=0,$s=jf(),Is={status:"pending",value:void 0,then:function(c){a.push(c)}}}return Nu++,s.then(Jp,Jp),s}function Jp(){if(--Nu===0&&ia!==null){Is!==null&&(Is.status="fulfilled");var t=ia;ia=null,$s=0,Is=null;for(var s=0;s<t.length;s++)(0,t[s])()}}function Z1(t,s){var a=[],c={status:"pending",value:null,reason:null,then:function(h){a.push(h)}};return t.then(function(){c.status="fulfilled",c.value=s;for(var h=0;h<a.length;h++)(0,a[h])(s)},function(h){for(c.status="rejected",c.reason=h,h=0;h<a.length;h++)(0,a[h])(void 0)}),c}var Zp=q.S;q.S=function(t,s){Dm=it(),typeof s=="object"&&s!==null&&typeof s.then=="function"&&J1(t,s),Zp!==null&&Zp(t,s)};var Qi=M(null);function ku(){var t=Qi.current;return t!==null?t:De.pooledCache}function Ul(t,s){s===null?W(Qi,Qi.current):W(Qi,s.pool)}function Wp(){var t=ku();return t===null?null:{parent:st._currentValue,pool:t}}var Vs=Error(r(460)),Mu=Error(r(474)),Hl=Error(r(542)),Bl={then:function(){}};function eg(t){return t=t.status,t==="fulfilled"||t==="rejected"}function tg(t,s,a){switch(a=t[a],a===void 0?t.push(s):a!==s&&(s.then(Dn,Dn),s=a),s.status){case"fulfilled":return s.value;case"rejected":throw t=s.reason,ig(t),t;default:if(typeof s.status=="string")s.then(Dn,Dn);else{if(t=De,t!==null&&100<t.shellSuspendCounter)throw Error(r(482));t=s,t.status="pending",t.then(function(c){if(s.status==="pending"){var h=s;h.status="fulfilled",h.value=c}},function(c){if(s.status==="pending"){var h=s;h.status="rejected",h.reason=c}})}switch(s.status){case"fulfilled":return s.value;case"rejected":throw t=s.reason,ig(t),t}throw Ji=s,Vs}}function Pi(t){try{var s=t._init;return s(t._payload)}catch(a){throw a!==null&&typeof a=="object"&&typeof a.then=="function"?(Ji=a,Vs):a}}var Ji=null;function ng(){if(Ji===null)throw Error(r(459));var t=Ji;return Ji=null,t}function ig(t){if(t===Vs||t===Hl)throw Error(r(483))}var Gs=null,sa=0;function ql(t){var s=sa;return sa+=1,Gs===null&&(Gs=[]),tg(Gs,t,s)}function ra(t,s){s=s.props.ref,t.ref=s!==void 0?s:null}function $l(t,s){throw s.$$typeof===S?Error(r(525)):(t=Object.prototype.toString.call(s),Error(r(31,t==="[object Object]"?"object with keys {"+Object.keys(s).join(", ")+"}":t)))}function sg(t){function s(L,k){if(t){var D=L.deletions;D===null?(L.deletions=[k],L.flags|=16):D.push(k)}}function a(L,k){if(!t)return null;for(;k!==null;)s(L,k),k=k.sibling;return null}function c(L){for(var k=new Map;L!==null;)L.key!==null?k.set(L.key,L):k.set(L.index,L),L=L.sibling;return k}function h(L,k){return L=Un(L,k),L.index=0,L.sibling=null,L}function p(L,k,D){return L.index=D,t?(D=L.alternate,D!==null?(D=D.index,D<k?(L.flags|=67108866,k):D):(L.flags|=67108866,k)):(L.flags|=1048576,k)}function b(L){return t&&L.alternate===null&&(L.flags|=67108866),L}function T(L,k,D,Y){return k===null||k.tag!==6?(k=bu(D,L.mode,Y),k.return=L,k):(k=h(k,D),k.return=L,k)}function N(L,k,D,Y){var ae=D.type;return ae===x?G(L,k,D.props.children,Y,D.key):k!==null&&(k.elementType===ae||typeof ae=="object"&&ae!==null&&ae.$$typeof===I&&Pi(ae)===k.type)?(k=h(k,D.props),ra(k,D),k.return=L,k):(k=Ll(D.type,D.key,D.props,null,L.mode,Y),ra(k,D),k.return=L,k)}function z(L,k,D,Y){return k===null||k.tag!==4||k.stateNode.containerInfo!==D.containerInfo||k.stateNode.implementation!==D.implementation?(k=vu(D,L.mode,Y),k.return=L,k):(k=h(k,D.children||[]),k.return=L,k)}function G(L,k,D,Y,ae){return k===null||k.tag!==7?(k=Ki(D,L.mode,Y,ae),k.return=L,k):(k=h(k,D),k.return=L,k)}function F(L,k,D){if(typeof k=="string"&&k!==""||typeof k=="number"||typeof k=="bigint")return k=bu(""+k,L.mode,D),k.return=L,k;if(typeof k=="object"&&k!==null){switch(k.$$typeof){case w:return D=Ll(k.type,k.key,k.props,null,L.mode,D),ra(D,k),D.return=L,D;case E:return k=vu(k,L.mode,D),k.return=L,k;case I:return k=Pi(k),F(L,k,D)}if(Me(k)||$(k))return k=Ki(k,L.mode,D,null),k.return=L,k;if(typeof k.then=="function")return F(L,ql(k),D);if(k.$$typeof===H)return F(L,zl(L,k),D);$l(L,k)}return null}function U(L,k,D,Y){var ae=k!==null?k.key:null;if(typeof D=="string"&&D!==""||typeof D=="number"||typeof D=="bigint")return ae!==null?null:T(L,k,""+D,Y);if(typeof D=="object"&&D!==null){switch(D.$$typeof){case w:return D.key===ae?N(L,k,D,Y):null;case E:return D.key===ae?z(L,k,D,Y):null;case I:return D=Pi(D),U(L,k,D,Y)}if(Me(D)||$(D))return ae!==null?null:G(L,k,D,Y,null);if(typeof D.then=="function")return U(L,k,ql(D),Y);if(D.$$typeof===H)return U(L,k,zl(L,D),Y);$l(L,D)}return null}function B(L,k,D,Y,ae){if(typeof Y=="string"&&Y!==""||typeof Y=="number"||typeof Y=="bigint")return L=L.get(D)||null,T(k,L,""+Y,ae);if(typeof Y=="object"&&Y!==null){switch(Y.$$typeof){case w:return L=L.get(Y.key===null?D:Y.key)||null,N(k,L,Y,ae);case E:return L=L.get(Y.key===null?D:Y.key)||null,z(k,L,Y,ae);case I:return Y=Pi(Y),B(L,k,D,Y,ae)}if(Me(Y)||$(Y))return L=L.get(D)||null,G(k,L,Y,ae,null);if(typeof Y.then=="function")return B(L,k,D,ql(Y),ae);if(Y.$$typeof===H)return B(L,k,D,zl(k,Y),ae);$l(k,Y)}return null}function ne(L,k,D,Y){for(var ae=null,Te=null,ie=k,ge=k=0,Se=null;ie!==null&&ge<D.length;ge++){ie.index>ge?(Se=ie,ie=null):Se=ie.sibling;var Ae=U(L,ie,D[ge],Y);if(Ae===null){ie===null&&(ie=Se);break}t&&ie&&Ae.alternate===null&&s(L,ie),k=p(Ae,k,ge),Te===null?ae=Ae:Te.sibling=Ae,Te=Ae,ie=Se}if(ge===D.length)return a(L,ie),we&&Hn(L,ge),ae;if(ie===null){for(;ge<D.length;ge++)ie=F(L,D[ge],Y),ie!==null&&(k=p(ie,k,ge),Te===null?ae=ie:Te.sibling=ie,Te=ie);return we&&Hn(L,ge),ae}for(ie=c(ie);ge<D.length;ge++)Se=B(ie,L,ge,D[ge],Y),Se!==null&&(t&&Se.alternate!==null&&ie.delete(Se.key===null?ge:Se.key),k=p(Se,k,ge),Te===null?ae=Se:Te.sibling=Se,Te=Se);return t&&ie.forEach(function(ki){return s(L,ki)}),we&&Hn(L,ge),ae}function oe(L,k,D,Y){if(D==null)throw Error(r(151));for(var ae=null,Te=null,ie=k,ge=k=0,Se=null,Ae=D.next();ie!==null&&!Ae.done;ge++,Ae=D.next()){ie.index>ge?(Se=ie,ie=null):Se=ie.sibling;var ki=U(L,ie,Ae.value,Y);if(ki===null){ie===null&&(ie=Se);break}t&&ie&&ki.alternate===null&&s(L,ie),k=p(ki,k,ge),Te===null?ae=ki:Te.sibling=ki,Te=ki,ie=Se}if(Ae.done)return a(L,ie),we&&Hn(L,ge),ae;if(ie===null){for(;!Ae.done;ge++,Ae=D.next())Ae=F(L,Ae.value,Y),Ae!==null&&(k=p(Ae,k,ge),Te===null?ae=Ae:Te.sibling=Ae,Te=Ae);return we&&Hn(L,ge),ae}for(ie=c(ie);!Ae.done;ge++,Ae=D.next())Ae=B(ie,L,ge,Ae.value,Y),Ae!==null&&(t&&Ae.alternate!==null&&ie.delete(Ae.key===null?ge:Ae.key),k=p(Ae,k,ge),Te===null?ae=Ae:Te.sibling=Ae,Te=Ae);return t&&ie.forEach(function(cx){return s(L,cx)}),we&&Hn(L,ge),ae}function Le(L,k,D,Y){if(typeof D=="object"&&D!==null&&D.type===x&&D.key===null&&(D=D.props.children),typeof D=="object"&&D!==null){switch(D.$$typeof){case w:e:{for(var ae=D.key;k!==null;){if(k.key===ae){if(ae=D.type,ae===x){if(k.tag===7){a(L,k.sibling),Y=h(k,D.props.children),Y.return=L,L=Y;break e}}else if(k.elementType===ae||typeof ae=="object"&&ae!==null&&ae.$$typeof===I&&Pi(ae)===k.type){a(L,k.sibling),Y=h(k,D.props),ra(Y,D),Y.return=L,L=Y;break e}a(L,k);break}else s(L,k);k=k.sibling}D.type===x?(Y=Ki(D.props.children,L.mode,Y,D.key),Y.return=L,L=Y):(Y=Ll(D.type,D.key,D.props,null,L.mode,Y),ra(Y,D),Y.return=L,L=Y)}return b(L);case E:e:{for(ae=D.key;k!==null;){if(k.key===ae)if(k.tag===4&&k.stateNode.containerInfo===D.containerInfo&&k.stateNode.implementation===D.implementation){a(L,k.sibling),Y=h(k,D.children||[]),Y.return=L,L=Y;break e}else{a(L,k);break}else s(L,k);k=k.sibling}Y=vu(D,L.mode,Y),Y.return=L,L=Y}return b(L);case I:return D=Pi(D),Le(L,k,D,Y)}if(Me(D))return ne(L,k,D,Y);if($(D)){if(ae=$(D),typeof ae!="function")throw Error(r(150));return D=ae.call(D),oe(L,k,D,Y)}if(typeof D.then=="function")return Le(L,k,ql(D),Y);if(D.$$typeof===H)return Le(L,k,zl(L,D),Y);$l(L,D)}return typeof D=="string"&&D!==""||typeof D=="number"||typeof D=="bigint"?(D=""+D,k!==null&&k.tag===6?(a(L,k.sibling),Y=h(k,D),Y.return=L,L=Y):(a(L,k),Y=bu(D,L.mode,Y),Y.return=L,L=Y),b(L)):a(L,k)}return function(L,k,D,Y){try{sa=0;var ae=Le(L,k,D,Y);return Gs=null,ae}catch(ie){if(ie===Vs||ie===Hl)throw ie;var Te=Pt(29,ie,null,L.mode);return Te.lanes=Y,Te.return=L,Te}finally{}}}var Zi=sg(!0),rg=sg(!1),hi=!1;function Ou(t){t.updateQueue={baseState:t.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function ju(t,s){t=t.updateQueue,s.updateQueue===t&&(s.updateQueue={baseState:t.baseState,firstBaseUpdate:t.firstBaseUpdate,lastBaseUpdate:t.lastBaseUpdate,shared:t.shared,callbacks:null})}function di(t){return{lane:t,tag:0,payload:null,callback:null,next:null}}function pi(t,s,a){var c=t.updateQueue;if(c===null)return null;if(c=c.shared,(Ce&2)!==0){var h=c.pending;return h===null?s.next=s:(s.next=h.next,h.next=s),c.pending=s,s=jl(t),Ip(t,null,a),s}return Ol(t,c,s,a),jl(t)}function aa(t,s,a){if(s=s.updateQueue,s!==null&&(s=s.shared,(a&4194048)!==0)){var c=s.lanes;c&=t.pendingLanes,a|=c,s.lanes=a,Pd(t,a)}}function Lu(t,s){var a=t.updateQueue,c=t.alternate;if(c!==null&&(c=c.updateQueue,a===c)){var h=null,p=null;if(a=a.firstBaseUpdate,a!==null){do{var b={lane:a.lane,tag:a.tag,payload:a.payload,callback:null,next:null};p===null?h=p=b:p=p.next=b,a=a.next}while(a!==null);p===null?h=p=s:p=p.next=s}else h=p=s;a={baseState:c.baseState,firstBaseUpdate:h,lastBaseUpdate:p,shared:c.shared,callbacks:c.callbacks},t.updateQueue=a;return}t=a.lastBaseUpdate,t===null?a.firstBaseUpdate=s:t.next=s,a.lastBaseUpdate=s}var Ru=!1;function la(){if(Ru){var t=Is;if(t!==null)throw t}}function oa(t,s,a,c){Ru=!1;var h=t.updateQueue;hi=!1;var p=h.firstBaseUpdate,b=h.lastBaseUpdate,T=h.shared.pending;if(T!==null){h.shared.pending=null;var N=T,z=N.next;N.next=null,b===null?p=z:b.next=z,b=N;var G=t.alternate;G!==null&&(G=G.updateQueue,T=G.lastBaseUpdate,T!==b&&(T===null?G.firstBaseUpdate=z:T.next=z,G.lastBaseUpdate=N))}if(p!==null){var F=h.baseState;b=0,G=z=N=null,T=p;do{var U=T.lane&-536870913,B=U!==T.lane;if(B?(ve&U)===U:(c&U)===U){U!==0&&U===$s&&(Ru=!0),G!==null&&(G=G.next={lane:0,tag:T.tag,payload:T.payload,callback:null,next:null});e:{var ne=t,oe=T;U=s;var Le=a;switch(oe.tag){case 1:if(ne=oe.payload,typeof ne=="function"){F=ne.call(Le,F,U);break e}F=ne;break e;case 3:ne.flags=ne.flags&-65537|128;case 0:if(ne=oe.payload,U=typeof ne=="function"?ne.call(Le,F,U):ne,U==null)break e;F=y({},F,U);break e;case 2:hi=!0}}U=T.callback,U!==null&&(t.flags|=64,B&&(t.flags|=8192),B=h.callbacks,B===null?h.callbacks=[U]:B.push(U))}else B={lane:U,tag:T.tag,payload:T.payload,callback:T.callback,next:null},G===null?(z=G=B,N=F):G=G.next=B,b|=U;if(T=T.next,T===null){if(T=h.shared.pending,T===null)break;B=T,T=B.next,B.next=null,h.lastBaseUpdate=B,h.shared.pending=null}}while(!0);G===null&&(N=F),h.baseState=N,h.firstBaseUpdate=z,h.lastBaseUpdate=G,p===null&&(h.shared.lanes=0),vi|=b,t.lanes=b,t.memoizedState=F}}function ag(t,s){if(typeof t!="function")throw Error(r(191,t));t.call(s)}function lg(t,s){var a=t.callbacks;if(a!==null)for(t.callbacks=null,t=0;t<a.length;t++)ag(a[t],s)}var Ks=M(null),Il=M(0);function og(t,s){t=Qn,W(Il,t),W(Ks,s),Qn=t|s.baseLanes}function Du(){W(Il,Qn),W(Ks,Ks.current)}function zu(){Qn=Il.current,X(Ks),X(Il)}var Jt=M(null),hn=null;function gi(t){var s=t.alternate;W(Pe,Pe.current&1),W(Jt,t),hn===null&&(s===null||Ks.current!==null||s.memoizedState!==null)&&(hn=t)}function Uu(t){W(Pe,Pe.current),W(Jt,t),hn===null&&(hn=t)}function cg(t){t.tag===22?(W(Pe,Pe.current),W(Jt,t),hn===null&&(hn=t)):mi()}function mi(){W(Pe,Pe.current),W(Jt,Jt.current)}function Zt(t){X(Jt),hn===t&&(hn=null),X(Pe)}var Pe=M(0);function Vl(t){for(var s=t;s!==null;){if(s.tag===13){var a=s.memoizedState;if(a!==null&&(a=a.dehydrated,a===null||Gf(a)||Kf(a)))return s}else if(s.tag===19&&(s.memoizedProps.revealOrder==="forwards"||s.memoizedProps.revealOrder==="backwards"||s.memoizedProps.revealOrder==="unstable_legacy-backwards"||s.memoizedProps.revealOrder==="together")){if((s.flags&128)!==0)return s}else if(s.child!==null){s.child.return=s,s=s.child;continue}if(s===t)break;for(;s.sibling===null;){if(s.return===null||s.return===t)return null;s=s.return}s.sibling.return=s.return,s=s.sibling}return null}var $n=0,pe=null,Oe=null,rt=null,Gl=!1,Xs=!1,Wi=!1,Kl=0,ca=0,Ys=null,W1=0;function Fe(){throw Error(r(321))}function Hu(t,s){if(s===null)return!1;for(var a=0;a<s.length&&a<t.length;a++)if(!Qt(t[a],s[a]))return!1;return!0}function Bu(t,s,a,c,h,p){return $n=p,pe=s,s.memoizedState=null,s.updateQueue=null,s.lanes=0,q.H=t===null||t.memoizedState===null?Xg:ef,Wi=!1,p=a(c,h),Wi=!1,Xs&&(p=fg(s,a,c,h)),ug(t),p}function ug(t){q.H=ha;var s=Oe!==null&&Oe.next!==null;if($n=0,rt=Oe=pe=null,Gl=!1,ca=0,Ys=null,s)throw Error(r(300));t===null||at||(t=t.dependencies,t!==null&&Dl(t)&&(at=!0))}function fg(t,s,a,c){pe=t;var h=0;do{if(Xs&&(Ys=null),ca=0,Xs=!1,25<=h)throw Error(r(301));if(h+=1,rt=Oe=null,t.updateQueue!=null){var p=t.updateQueue;p.lastEffect=null,p.events=null,p.stores=null,p.memoCache!=null&&(p.memoCache.index=0)}q.H=Yg,p=s(a,c)}while(Xs);return p}function ew(){var t=q.H,s=t.useState()[0];return s=typeof s.then=="function"?ua(s):s,t=t.useState()[0],(Oe!==null?Oe.memoizedState:null)!==t&&(pe.flags|=1024),s}function qu(){var t=Kl!==0;return Kl=0,t}function $u(t,s,a){s.updateQueue=t.updateQueue,s.flags&=-2053,t.lanes&=~a}function Iu(t){if(Gl){for(t=t.memoizedState;t!==null;){var s=t.queue;s!==null&&(s.pending=null),t=t.next}Gl=!1}$n=0,rt=Oe=pe=null,Xs=!1,ca=Kl=0,Ys=null}function Mt(){var t={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return rt===null?pe.memoizedState=rt=t:rt=rt.next=t,rt}function Je(){if(Oe===null){var t=pe.alternate;t=t!==null?t.memoizedState:null}else t=Oe.next;var s=rt===null?pe.memoizedState:rt.next;if(s!==null)rt=s,Oe=t;else{if(t===null)throw pe.alternate===null?Error(r(467)):Error(r(310));Oe=t,t={memoizedState:Oe.memoizedState,baseState:Oe.baseState,baseQueue:Oe.baseQueue,queue:Oe.queue,next:null},rt===null?pe.memoizedState=rt=t:rt=rt.next=t}return rt}function Xl(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function ua(t){var s=ca;return ca+=1,Ys===null&&(Ys=[]),t=tg(Ys,t,s),s=pe,(rt===null?s.memoizedState:rt.next)===null&&(s=s.alternate,q.H=s===null||s.memoizedState===null?Xg:ef),t}function Yl(t){if(t!==null&&typeof t=="object"){if(typeof t.then=="function")return ua(t);if(t.$$typeof===H)return vt(t)}throw Error(r(438,String(t)))}function Vu(t){var s=null,a=pe.updateQueue;if(a!==null&&(s=a.memoCache),s==null){var c=pe.alternate;c!==null&&(c=c.updateQueue,c!==null&&(c=c.memoCache,c!=null&&(s={data:c.data.map(function(h){return h.slice()}),index:0})))}if(s==null&&(s={data:[],index:0}),a===null&&(a=Xl(),pe.updateQueue=a),a.memoCache=s,a=s.data[s.index],a===void 0)for(a=s.data[s.index]=Array(t),c=0;c<t;c++)a[c]=P;return s.index++,a}function In(t,s){return typeof s=="function"?s(t):s}function Fl(t){var s=Je();return Gu(s,Oe,t)}function Gu(t,s,a){var c=t.queue;if(c===null)throw Error(r(311));c.lastRenderedReducer=a;var h=t.baseQueue,p=c.pending;if(p!==null){if(h!==null){var b=h.next;h.next=p.next,p.next=b}s.baseQueue=h=p,c.pending=null}if(p=t.baseState,h===null)t.memoizedState=p;else{s=h.next;var T=b=null,N=null,z=s,G=!1;do{var F=z.lane&-536870913;if(F!==z.lane?(ve&F)===F:($n&F)===F){var U=z.revertLane;if(U===0)N!==null&&(N=N.next={lane:0,revertLane:0,gesture:null,action:z.action,hasEagerState:z.hasEagerState,eagerState:z.eagerState,next:null}),F===$s&&(G=!0);else if(($n&U)===U){z=z.next,U===$s&&(G=!0);continue}else F={lane:0,revertLane:z.revertLane,gesture:null,action:z.action,hasEagerState:z.hasEagerState,eagerState:z.eagerState,next:null},N===null?(T=N=F,b=p):N=N.next=F,pe.lanes|=U,vi|=U;F=z.action,Wi&&a(p,F),p=z.hasEagerState?z.eagerState:a(p,F)}else U={lane:F,revertLane:z.revertLane,gesture:z.gesture,action:z.action,hasEagerState:z.hasEagerState,eagerState:z.eagerState,next:null},N===null?(T=N=U,b=p):N=N.next=U,pe.lanes|=F,vi|=F;z=z.next}while(z!==null&&z!==s);if(N===null?b=p:N.next=T,!Qt(p,t.memoizedState)&&(at=!0,G&&(a=Is,a!==null)))throw a;t.memoizedState=p,t.baseState=b,t.baseQueue=N,c.lastRenderedState=p}return h===null&&(c.lanes=0),[t.memoizedState,c.dispatch]}function Ku(t){var s=Je(),a=s.queue;if(a===null)throw Error(r(311));a.lastRenderedReducer=t;var c=a.dispatch,h=a.pending,p=s.memoizedState;if(h!==null){a.pending=null;var b=h=h.next;do p=t(p,b.action),b=b.next;while(b!==h);Qt(p,s.memoizedState)||(at=!0),s.memoizedState=p,s.baseQueue===null&&(s.baseState=p),a.lastRenderedState=p}return[p,c]}function hg(t,s,a){var c=pe,h=Je(),p=we;if(p){if(a===void 0)throw Error(r(407));a=a()}else a=s();var b=!Qt((Oe||h).memoizedState,a);if(b&&(h.memoizedState=a,at=!0),h=h.queue,Fu(gg.bind(null,c,h,t),[t]),h.getSnapshot!==s||b||rt!==null&&rt.memoizedState.tag&1){if(c.flags|=2048,Fs(9,{destroy:void 0},pg.bind(null,c,h,a,s),null),De===null)throw Error(r(349));p||($n&127)!==0||dg(c,s,a)}return a}function dg(t,s,a){t.flags|=16384,t={getSnapshot:s,value:a},s=pe.updateQueue,s===null?(s=Xl(),pe.updateQueue=s,s.stores=[t]):(a=s.stores,a===null?s.stores=[t]:a.push(t))}function pg(t,s,a,c){s.value=a,s.getSnapshot=c,mg(s)&&yg(t)}function gg(t,s,a){return a(function(){mg(s)&&yg(t)})}function mg(t){var s=t.getSnapshot;t=t.value;try{var a=s();return!Qt(t,a)}catch{return!0}}function yg(t){var s=Gi(t,2);s!==null&&Ht(s,t,2)}function Xu(t){var s=Mt();if(typeof t=="function"){var a=t;if(t=a(),Wi){Ft(!0);try{a()}finally{Ft(!1)}}}return s.memoizedState=s.baseState=t,s.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:In,lastRenderedState:t},s}function bg(t,s,a,c){return t.baseState=a,Gu(t,Oe,typeof c=="function"?c:In)}function tw(t,s,a,c,h){if(Jl(t))throw Error(r(485));if(t=s.action,t!==null){var p={payload:h,action:t,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(b){p.listeners.push(b)}};q.T!==null?a(!0):p.isTransition=!1,c(p),a=s.pending,a===null?(p.next=s.pending=p,vg(s,p)):(p.next=a.next,s.pending=a.next=p)}}function vg(t,s){var a=s.action,c=s.payload,h=t.state;if(s.isTransition){var p=q.T,b={};q.T=b;try{var T=a(h,c),N=q.S;N!==null&&N(b,T),Sg(t,s,T)}catch(z){Yu(t,s,z)}finally{p!==null&&b.types!==null&&(p.types=b.types),q.T=p}}else try{p=a(h,c),Sg(t,s,p)}catch(z){Yu(t,s,z)}}function Sg(t,s,a){a!==null&&typeof a=="object"&&typeof a.then=="function"?a.then(function(c){wg(t,s,c)},function(c){return Yu(t,s,c)}):wg(t,s,a)}function wg(t,s,a){s.status="fulfilled",s.value=a,xg(s),t.state=a,s=t.pending,s!==null&&(a=s.next,a===s?t.pending=null:(a=a.next,s.next=a,vg(t,a)))}function Yu(t,s,a){var c=t.pending;if(t.pending=null,c!==null){c=c.next;do s.status="rejected",s.reason=a,xg(s),s=s.next;while(s!==c)}t.action=null}function xg(t){t=t.listeners;for(var s=0;s<t.length;s++)(0,t[s])()}function _g(t,s){return s}function Eg(t,s){if(we){var a=De.formState;if(a!==null){e:{var c=pe;if(we){if(Be){t:{for(var h=Be,p=fn;h.nodeType!==8;){if(!p){h=null;break t}if(h=dn(h.nextSibling),h===null){h=null;break t}}p=h.data,h=p==="F!"||p==="F"?h:null}if(h){Be=dn(h.nextSibling),c=h.data==="F!";break e}}ui(c)}c=!1}c&&(s=a[0])}}return a=Mt(),a.memoizedState=a.baseState=s,c={pending:null,lanes:0,dispatch:null,lastRenderedReducer:_g,lastRenderedState:s},a.queue=c,a=Vg.bind(null,pe,c),c.dispatch=a,c=Xu(!1),p=Wu.bind(null,pe,!1,c.queue),c=Mt(),h={state:s,dispatch:null,action:t,pending:null},c.queue=h,a=tw.bind(null,pe,h,p,a),h.dispatch=a,c.memoizedState=t,[s,a,!1]}function Tg(t){var s=Je();return Ag(s,Oe,t)}function Ag(t,s,a){if(s=Gu(t,s,_g)[0],t=Fl(In)[0],typeof s=="object"&&s!==null&&typeof s.then=="function")try{var c=ua(s)}catch(b){throw b===Vs?Hl:b}else c=s;s=Je();var h=s.queue,p=h.dispatch;return a!==s.memoizedState&&(pe.flags|=2048,Fs(9,{destroy:void 0},nw.bind(null,h,a),null)),[c,p,t]}function nw(t,s){t.action=s}function Cg(t){var s=Je(),a=Oe;if(a!==null)return Ag(s,a,t);Je(),s=s.memoizedState,a=Je();var c=a.queue.dispatch;return a.memoizedState=t,[s,c,!1]}function Fs(t,s,a,c){return t={tag:t,create:a,deps:c,inst:s,next:null},s=pe.updateQueue,s===null&&(s=Xl(),pe.updateQueue=s),a=s.lastEffect,a===null?s.lastEffect=t.next=t:(c=a.next,a.next=t,t.next=c,s.lastEffect=t),t}function Ng(){return Je().memoizedState}function Ql(t,s,a,c){var h=Mt();pe.flags|=t,h.memoizedState=Fs(1|s,{destroy:void 0},a,c===void 0?null:c)}function Pl(t,s,a,c){var h=Je();c=c===void 0?null:c;var p=h.memoizedState.inst;Oe!==null&&c!==null&&Hu(c,Oe.memoizedState.deps)?h.memoizedState=Fs(s,p,a,c):(pe.flags|=t,h.memoizedState=Fs(1|s,p,a,c))}function kg(t,s){Ql(8390656,8,t,s)}function Fu(t,s){Pl(2048,8,t,s)}function iw(t){pe.flags|=4;var s=pe.updateQueue;if(s===null)s=Xl(),pe.updateQueue=s,s.events=[t];else{var a=s.events;a===null?s.events=[t]:a.push(t)}}function Mg(t){var s=Je().memoizedState;return iw({ref:s,nextImpl:t}),function(){if((Ce&2)!==0)throw Error(r(440));return s.impl.apply(void 0,arguments)}}function Og(t,s){return Pl(4,2,t,s)}function jg(t,s){return Pl(4,4,t,s)}function Lg(t,s){if(typeof s=="function"){t=t();var a=s(t);return function(){typeof a=="function"?a():s(null)}}if(s!=null)return t=t(),s.current=t,function(){s.current=null}}function Rg(t,s,a){a=a!=null?a.concat([t]):null,Pl(4,4,Lg.bind(null,s,t),a)}function Qu(){}function Dg(t,s){var a=Je();s=s===void 0?null:s;var c=a.memoizedState;return s!==null&&Hu(s,c[1])?c[0]:(a.memoizedState=[t,s],t)}function zg(t,s){var a=Je();s=s===void 0?null:s;var c=a.memoizedState;if(s!==null&&Hu(s,c[1]))return c[0];if(c=t(),Wi){Ft(!0);try{t()}finally{Ft(!1)}}return a.memoizedState=[c,s],c}function Pu(t,s,a){return a===void 0||($n&1073741824)!==0&&(ve&261930)===0?t.memoizedState=s:(t.memoizedState=a,t=Um(),pe.lanes|=t,vi|=t,a)}function Ug(t,s,a,c){return Qt(a,s)?a:Ks.current!==null?(t=Pu(t,a,c),Qt(t,s)||(at=!0),t):($n&42)===0||($n&1073741824)!==0&&(ve&261930)===0?(at=!0,t.memoizedState=a):(t=Um(),pe.lanes|=t,vi|=t,s)}function Hg(t,s,a,c,h){var p=Z.p;Z.p=p!==0&&8>p?p:8;var b=q.T,T={};q.T=T,Wu(t,!1,s,a);try{var N=h(),z=q.S;if(z!==null&&z(T,N),N!==null&&typeof N=="object"&&typeof N.then=="function"){var G=Z1(N,c);fa(t,s,G,tn(t))}else fa(t,s,c,tn(t))}catch(F){fa(t,s,{then:function(){},status:"rejected",reason:F},tn())}finally{Z.p=p,b!==null&&T.types!==null&&(b.types=T.types),q.T=b}}function sw(){}function Ju(t,s,a,c){if(t.tag!==5)throw Error(r(476));var h=Bg(t).queue;Hg(t,h,s,re,a===null?sw:function(){return qg(t),a(c)})}function Bg(t){var s=t.memoizedState;if(s!==null)return s;s={memoizedState:re,baseState:re,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:In,lastRenderedState:re},next:null};var a={};return s.next={memoizedState:a,baseState:a,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:In,lastRenderedState:a},next:null},t.memoizedState=s,t=t.alternate,t!==null&&(t.memoizedState=s),s}function qg(t){var s=Bg(t);s.next===null&&(s=t.alternate.memoizedState),fa(t,s.next.queue,{},tn())}function Zu(){return vt(Na)}function $g(){return Je().memoizedState}function Ig(){return Je().memoizedState}function rw(t){for(var s=t.return;s!==null;){switch(s.tag){case 24:case 3:var a=tn();t=di(a);var c=pi(s,t,a);c!==null&&(Ht(c,s,a),aa(c,s,a)),s={cache:Cu()},t.payload=s;return}s=s.return}}function aw(t,s,a){var c=tn();a={lane:c,revertLane:0,gesture:null,action:a,hasEagerState:!1,eagerState:null,next:null},Jl(t)?Gg(s,a):(a=mu(t,s,a,c),a!==null&&(Ht(a,t,c),Kg(a,s,c)))}function Vg(t,s,a){var c=tn();fa(t,s,a,c)}function fa(t,s,a,c){var h={lane:c,revertLane:0,gesture:null,action:a,hasEagerState:!1,eagerState:null,next:null};if(Jl(t))Gg(s,h);else{var p=t.alternate;if(t.lanes===0&&(p===null||p.lanes===0)&&(p=s.lastRenderedReducer,p!==null))try{var b=s.lastRenderedState,T=p(b,a);if(h.hasEagerState=!0,h.eagerState=T,Qt(T,b))return Ol(t,s,h,0),De===null&&Ml(),!1}catch{}finally{}if(a=mu(t,s,h,c),a!==null)return Ht(a,t,c),Kg(a,s,c),!0}return!1}function Wu(t,s,a,c){if(c={lane:2,revertLane:jf(),gesture:null,action:c,hasEagerState:!1,eagerState:null,next:null},Jl(t)){if(s)throw Error(r(479))}else s=mu(t,a,c,2),s!==null&&Ht(s,t,2)}function Jl(t){var s=t.alternate;return t===pe||s!==null&&s===pe}function Gg(t,s){Xs=Gl=!0;var a=t.pending;a===null?s.next=s:(s.next=a.next,a.next=s),t.pending=s}function Kg(t,s,a){if((a&4194048)!==0){var c=s.lanes;c&=t.pendingLanes,a|=c,s.lanes=a,Pd(t,a)}}var ha={readContext:vt,use:Yl,useCallback:Fe,useContext:Fe,useEffect:Fe,useImperativeHandle:Fe,useLayoutEffect:Fe,useInsertionEffect:Fe,useMemo:Fe,useReducer:Fe,useRef:Fe,useState:Fe,useDebugValue:Fe,useDeferredValue:Fe,useTransition:Fe,useSyncExternalStore:Fe,useId:Fe,useHostTransitionStatus:Fe,useFormState:Fe,useActionState:Fe,useOptimistic:Fe,useMemoCache:Fe,useCacheRefresh:Fe};ha.useEffectEvent=Fe;var Xg={readContext:vt,use:Yl,useCallback:function(t,s){return Mt().memoizedState=[t,s===void 0?null:s],t},useContext:vt,useEffect:kg,useImperativeHandle:function(t,s,a){a=a!=null?a.concat([t]):null,Ql(4194308,4,Lg.bind(null,s,t),a)},useLayoutEffect:function(t,s){return Ql(4194308,4,t,s)},useInsertionEffect:function(t,s){Ql(4,2,t,s)},useMemo:function(t,s){var a=Mt();s=s===void 0?null:s;var c=t();if(Wi){Ft(!0);try{t()}finally{Ft(!1)}}return a.memoizedState=[c,s],c},useReducer:function(t,s,a){var c=Mt();if(a!==void 0){var h=a(s);if(Wi){Ft(!0);try{a(s)}finally{Ft(!1)}}}else h=s;return c.memoizedState=c.baseState=h,t={pending:null,lanes:0,dispatch:null,lastRenderedReducer:t,lastRenderedState:h},c.queue=t,t=t.dispatch=aw.bind(null,pe,t),[c.memoizedState,t]},useRef:function(t){var s=Mt();return t={current:t},s.memoizedState=t},useState:function(t){t=Xu(t);var s=t.queue,a=Vg.bind(null,pe,s);return s.dispatch=a,[t.memoizedState,a]},useDebugValue:Qu,useDeferredValue:function(t,s){var a=Mt();return Pu(a,t,s)},useTransition:function(){var t=Xu(!1);return t=Hg.bind(null,pe,t.queue,!0,!1),Mt().memoizedState=t,[!1,t]},useSyncExternalStore:function(t,s,a){var c=pe,h=Mt();if(we){if(a===void 0)throw Error(r(407));a=a()}else{if(a=s(),De===null)throw Error(r(349));(ve&127)!==0||dg(c,s,a)}h.memoizedState=a;var p={value:a,getSnapshot:s};return h.queue=p,kg(gg.bind(null,c,p,t),[t]),c.flags|=2048,Fs(9,{destroy:void 0},pg.bind(null,c,p,a,s),null),a},useId:function(){var t=Mt(),s=De.identifierPrefix;if(we){var a=Cn,c=An;a=(c&~(1<<32-kt(c)-1)).toString(32)+a,s="_"+s+"R_"+a,a=Kl++,0<a&&(s+="H"+a.toString(32)),s+="_"}else a=W1++,s="_"+s+"r_"+a.toString(32)+"_";return t.memoizedState=s},useHostTransitionStatus:Zu,useFormState:Eg,useActionState:Eg,useOptimistic:function(t){var s=Mt();s.memoizedState=s.baseState=t;var a={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return s.queue=a,s=Wu.bind(null,pe,!0,a),a.dispatch=s,[t,s]},useMemoCache:Vu,useCacheRefresh:function(){return Mt().memoizedState=rw.bind(null,pe)},useEffectEvent:function(t){var s=Mt(),a={impl:t};return s.memoizedState=a,function(){if((Ce&2)!==0)throw Error(r(440));return a.impl.apply(void 0,arguments)}}},ef={readContext:vt,use:Yl,useCallback:Dg,useContext:vt,useEffect:Fu,useImperativeHandle:Rg,useInsertionEffect:Og,useLayoutEffect:jg,useMemo:zg,useReducer:Fl,useRef:Ng,useState:function(){return Fl(In)},useDebugValue:Qu,useDeferredValue:function(t,s){var a=Je();return Ug(a,Oe.memoizedState,t,s)},useTransition:function(){var t=Fl(In)[0],s=Je().memoizedState;return[typeof t=="boolean"?t:ua(t),s]},useSyncExternalStore:hg,useId:$g,useHostTransitionStatus:Zu,useFormState:Tg,useActionState:Tg,useOptimistic:function(t,s){var a=Je();return bg(a,Oe,t,s)},useMemoCache:Vu,useCacheRefresh:Ig};ef.useEffectEvent=Mg;var Yg={readContext:vt,use:Yl,useCallback:Dg,useContext:vt,useEffect:Fu,useImperativeHandle:Rg,useInsertionEffect:Og,useLayoutEffect:jg,useMemo:zg,useReducer:Ku,useRef:Ng,useState:function(){return Ku(In)},useDebugValue:Qu,useDeferredValue:function(t,s){var a=Je();return Oe===null?Pu(a,t,s):Ug(a,Oe.memoizedState,t,s)},useTransition:function(){var t=Ku(In)[0],s=Je().memoizedState;return[typeof t=="boolean"?t:ua(t),s]},useSyncExternalStore:hg,useId:$g,useHostTransitionStatus:Zu,useFormState:Cg,useActionState:Cg,useOptimistic:function(t,s){var a=Je();return Oe!==null?bg(a,Oe,t,s):(a.baseState=t,[t,a.queue.dispatch])},useMemoCache:Vu,useCacheRefresh:Ig};Yg.useEffectEvent=Mg;function tf(t,s,a,c){s=t.memoizedState,a=a(c,s),a=a==null?s:y({},s,a),t.memoizedState=a,t.lanes===0&&(t.updateQueue.baseState=a)}var nf={enqueueSetState:function(t,s,a){t=t._reactInternals;var c=tn(),h=di(c);h.payload=s,a!=null&&(h.callback=a),s=pi(t,h,c),s!==null&&(Ht(s,t,c),aa(s,t,c))},enqueueReplaceState:function(t,s,a){t=t._reactInternals;var c=tn(),h=di(c);h.tag=1,h.payload=s,a!=null&&(h.callback=a),s=pi(t,h,c),s!==null&&(Ht(s,t,c),aa(s,t,c))},enqueueForceUpdate:function(t,s){t=t._reactInternals;var a=tn(),c=di(a);c.tag=2,s!=null&&(c.callback=s),s=pi(t,c,a),s!==null&&(Ht(s,t,a),aa(s,t,a))}};function Fg(t,s,a,c,h,p,b){return t=t.stateNode,typeof t.shouldComponentUpdate=="function"?t.shouldComponentUpdate(c,p,b):s.prototype&&s.prototype.isPureReactComponent?!Zr(a,c)||!Zr(h,p):!0}function Qg(t,s,a,c){t=s.state,typeof s.componentWillReceiveProps=="function"&&s.componentWillReceiveProps(a,c),typeof s.UNSAFE_componentWillReceiveProps=="function"&&s.UNSAFE_componentWillReceiveProps(a,c),s.state!==t&&nf.enqueueReplaceState(s,s.state,null)}function es(t,s){var a=s;if("ref"in s){a={};for(var c in s)c!=="ref"&&(a[c]=s[c])}if(t=t.defaultProps){a===s&&(a=y({},a));for(var h in t)a[h]===void 0&&(a[h]=t[h])}return a}function Pg(t){kl(t)}function Jg(t){console.error(t)}function Zg(t){kl(t)}function Zl(t,s){try{var a=t.onUncaughtError;a(s.value,{componentStack:s.stack})}catch(c){setTimeout(function(){throw c})}}function Wg(t,s,a){try{var c=t.onCaughtError;c(a.value,{componentStack:a.stack,errorBoundary:s.tag===1?s.stateNode:null})}catch(h){setTimeout(function(){throw h})}}function sf(t,s,a){return a=di(a),a.tag=3,a.payload={element:null},a.callback=function(){Zl(t,s)},a}function em(t){return t=di(t),t.tag=3,t}function tm(t,s,a,c){var h=a.type.getDerivedStateFromError;if(typeof h=="function"){var p=c.value;t.payload=function(){return h(p)},t.callback=function(){Wg(s,a,c)}}var b=a.stateNode;b!==null&&typeof b.componentDidCatch=="function"&&(t.callback=function(){Wg(s,a,c),typeof h!="function"&&(Si===null?Si=new Set([this]):Si.add(this));var T=c.stack;this.componentDidCatch(c.value,{componentStack:T!==null?T:""})})}function lw(t,s,a,c,h){if(a.flags|=32768,c!==null&&typeof c=="object"&&typeof c.then=="function"){if(s=a.alternate,s!==null&&qs(s,a,h,!0),a=Jt.current,a!==null){switch(a.tag){case 31:case 13:return hn===null?uo():a.alternate===null&&Qe===0&&(Qe=3),a.flags&=-257,a.flags|=65536,a.lanes=h,c===Bl?a.flags|=16384:(s=a.updateQueue,s===null?a.updateQueue=new Set([c]):s.add(c),kf(t,c,h)),!1;case 22:return a.flags|=65536,c===Bl?a.flags|=16384:(s=a.updateQueue,s===null?(s={transitions:null,markerInstances:null,retryQueue:new Set([c])},a.updateQueue=s):(a=s.retryQueue,a===null?s.retryQueue=new Set([c]):a.add(c)),kf(t,c,h)),!1}throw Error(r(435,a.tag))}return kf(t,c,h),uo(),!1}if(we)return s=Jt.current,s!==null?((s.flags&65536)===0&&(s.flags|=256),s.flags|=65536,s.lanes=h,c!==xu&&(t=Error(r(422),{cause:c}),ta(on(t,a)))):(c!==xu&&(s=Error(r(423),{cause:c}),ta(on(s,a))),t=t.current.alternate,t.flags|=65536,h&=-h,t.lanes|=h,c=on(c,a),h=sf(t.stateNode,c,h),Lu(t,h),Qe!==4&&(Qe=2)),!1;var p=Error(r(520),{cause:c});if(p=on(p,a),Sa===null?Sa=[p]:Sa.push(p),Qe!==4&&(Qe=2),s===null)return!0;c=on(c,a),a=s;do{switch(a.tag){case 3:return a.flags|=65536,t=h&-h,a.lanes|=t,t=sf(a.stateNode,c,t),Lu(a,t),!1;case 1:if(s=a.type,p=a.stateNode,(a.flags&128)===0&&(typeof s.getDerivedStateFromError=="function"||p!==null&&typeof p.componentDidCatch=="function"&&(Si===null||!Si.has(p))))return a.flags|=65536,h&=-h,a.lanes|=h,h=em(h),tm(h,t,a,c),Lu(a,h),!1}a=a.return}while(a!==null);return!1}var rf=Error(r(461)),at=!1;function St(t,s,a,c){s.child=t===null?rg(s,null,a,c):Zi(s,t.child,a,c)}function nm(t,s,a,c,h){a=a.render;var p=s.ref;if("ref"in c){var b={};for(var T in c)T!=="ref"&&(b[T]=c[T])}else b=c;return Fi(s),c=Bu(t,s,a,b,p,h),T=qu(),t!==null&&!at?($u(t,s,h),Vn(t,s,h)):(we&&T&&Su(s),s.flags|=1,St(t,s,c,h),s.child)}function im(t,s,a,c,h){if(t===null){var p=a.type;return typeof p=="function"&&!yu(p)&&p.defaultProps===void 0&&a.compare===null?(s.tag=15,s.type=p,sm(t,s,p,c,h)):(t=Ll(a.type,null,c,s,s.mode,h),t.ref=s.ref,t.return=s,s.child=t)}if(p=t.child,!df(t,h)){var b=p.memoizedProps;if(a=a.compare,a=a!==null?a:Zr,a(b,c)&&t.ref===s.ref)return Vn(t,s,h)}return s.flags|=1,t=Un(p,c),t.ref=s.ref,t.return=s,s.child=t}function sm(t,s,a,c,h){if(t!==null){var p=t.memoizedProps;if(Zr(p,c)&&t.ref===s.ref)if(at=!1,s.pendingProps=c=p,df(t,h))(t.flags&131072)!==0&&(at=!0);else return s.lanes=t.lanes,Vn(t,s,h)}return af(t,s,a,c,h)}function rm(t,s,a,c){var h=c.children,p=t!==null?t.memoizedState:null;if(t===null&&s.stateNode===null&&(s.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),c.mode==="hidden"){if((s.flags&128)!==0){if(p=p!==null?p.baseLanes|a:a,t!==null){for(c=s.child=t.child,h=0;c!==null;)h=h|c.lanes|c.childLanes,c=c.sibling;c=h&~p}else c=0,s.child=null;return am(t,s,p,a,c)}if((a&536870912)!==0)s.memoizedState={baseLanes:0,cachePool:null},t!==null&&Ul(s,p!==null?p.cachePool:null),p!==null?og(s,p):Du(),cg(s);else return c=s.lanes=536870912,am(t,s,p!==null?p.baseLanes|a:a,a,c)}else p!==null?(Ul(s,p.cachePool),og(s,p),mi(),s.memoizedState=null):(t!==null&&Ul(s,null),Du(),mi());return St(t,s,h,a),s.child}function da(t,s){return t!==null&&t.tag===22||s.stateNode!==null||(s.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),s.sibling}function am(t,s,a,c,h){var p=ku();return p=p===null?null:{parent:st._currentValue,pool:p},s.memoizedState={baseLanes:a,cachePool:p},t!==null&&Ul(s,null),Du(),cg(s),t!==null&&qs(t,s,c,!0),s.childLanes=h,null}function Wl(t,s){return s=to({mode:s.mode,children:s.children},t.mode),s.ref=t.ref,t.child=s,s.return=t,s}function lm(t,s,a){return Zi(s,t.child,null,a),t=Wl(s,s.pendingProps),t.flags|=2,Zt(s),s.memoizedState=null,t}function ow(t,s,a){var c=s.pendingProps,h=(s.flags&128)!==0;if(s.flags&=-129,t===null){if(we){if(c.mode==="hidden")return t=Wl(s,c),s.lanes=536870912,da(null,t);if(Uu(s),(t=Be)?(t=vy(t,fn),t=t!==null&&t.data==="&"?t:null,t!==null&&(s.memoizedState={dehydrated:t,treeContext:oi!==null?{id:An,overflow:Cn}:null,retryLane:536870912,hydrationErrors:null},a=Gp(t),a.return=s,s.child=a,bt=s,Be=null)):t=null,t===null)throw ui(s);return s.lanes=536870912,null}return Wl(s,c)}var p=t.memoizedState;if(p!==null){var b=p.dehydrated;if(Uu(s),h)if(s.flags&256)s.flags&=-257,s=lm(t,s,a);else if(s.memoizedState!==null)s.child=t.child,s.flags|=128,s=null;else throw Error(r(558));else if(at||qs(t,s,a,!1),h=(a&t.childLanes)!==0,at||h){if(c=De,c!==null&&(b=Jd(c,a),b!==0&&b!==p.retryLane))throw p.retryLane=b,Gi(t,b),Ht(c,t,b),rf;uo(),s=lm(t,s,a)}else t=p.treeContext,Be=dn(b.nextSibling),bt=s,we=!0,ci=null,fn=!1,t!==null&&Yp(s,t),s=Wl(s,c),s.flags|=4096;return s}return t=Un(t.child,{mode:c.mode,children:c.children}),t.ref=s.ref,s.child=t,t.return=s,t}function eo(t,s){var a=s.ref;if(a===null)t!==null&&t.ref!==null&&(s.flags|=4194816);else{if(typeof a!="function"&&typeof a!="object")throw Error(r(284));(t===null||t.ref!==a)&&(s.flags|=4194816)}}function af(t,s,a,c,h){return Fi(s),a=Bu(t,s,a,c,void 0,h),c=qu(),t!==null&&!at?($u(t,s,h),Vn(t,s,h)):(we&&c&&Su(s),s.flags|=1,St(t,s,a,h),s.child)}function om(t,s,a,c,h,p){return Fi(s),s.updateQueue=null,a=fg(s,c,a,h),ug(t),c=qu(),t!==null&&!at?($u(t,s,p),Vn(t,s,p)):(we&&c&&Su(s),s.flags|=1,St(t,s,a,p),s.child)}function cm(t,s,a,c,h){if(Fi(s),s.stateNode===null){var p=zs,b=a.contextType;typeof b=="object"&&b!==null&&(p=vt(b)),p=new a(c,p),s.memoizedState=p.state!==null&&p.state!==void 0?p.state:null,p.updater=nf,s.stateNode=p,p._reactInternals=s,p=s.stateNode,p.props=c,p.state=s.memoizedState,p.refs={},Ou(s),b=a.contextType,p.context=typeof b=="object"&&b!==null?vt(b):zs,p.state=s.memoizedState,b=a.getDerivedStateFromProps,typeof b=="function"&&(tf(s,a,b,c),p.state=s.memoizedState),typeof a.getDerivedStateFromProps=="function"||typeof p.getSnapshotBeforeUpdate=="function"||typeof p.UNSAFE_componentWillMount!="function"&&typeof p.componentWillMount!="function"||(b=p.state,typeof p.componentWillMount=="function"&&p.componentWillMount(),typeof p.UNSAFE_componentWillMount=="function"&&p.UNSAFE_componentWillMount(),b!==p.state&&nf.enqueueReplaceState(p,p.state,null),oa(s,c,p,h),la(),p.state=s.memoizedState),typeof p.componentDidMount=="function"&&(s.flags|=4194308),c=!0}else if(t===null){p=s.stateNode;var T=s.memoizedProps,N=es(a,T);p.props=N;var z=p.context,G=a.contextType;b=zs,typeof G=="object"&&G!==null&&(b=vt(G));var F=a.getDerivedStateFromProps;G=typeof F=="function"||typeof p.getSnapshotBeforeUpdate=="function",T=s.pendingProps!==T,G||typeof p.UNSAFE_componentWillReceiveProps!="function"&&typeof p.componentWillReceiveProps!="function"||(T||z!==b)&&Qg(s,p,c,b),hi=!1;var U=s.memoizedState;p.state=U,oa(s,c,p,h),la(),z=s.memoizedState,T||U!==z||hi?(typeof F=="function"&&(tf(s,a,F,c),z=s.memoizedState),(N=hi||Fg(s,a,N,c,U,z,b))?(G||typeof p.UNSAFE_componentWillMount!="function"&&typeof p.componentWillMount!="function"||(typeof p.componentWillMount=="function"&&p.componentWillMount(),typeof p.UNSAFE_componentWillMount=="function"&&p.UNSAFE_componentWillMount()),typeof p.componentDidMount=="function"&&(s.flags|=4194308)):(typeof p.componentDidMount=="function"&&(s.flags|=4194308),s.memoizedProps=c,s.memoizedState=z),p.props=c,p.state=z,p.context=b,c=N):(typeof p.componentDidMount=="function"&&(s.flags|=4194308),c=!1)}else{p=s.stateNode,ju(t,s),b=s.memoizedProps,G=es(a,b),p.props=G,F=s.pendingProps,U=p.context,z=a.contextType,N=zs,typeof z=="object"&&z!==null&&(N=vt(z)),T=a.getDerivedStateFromProps,(z=typeof T=="function"||typeof p.getSnapshotBeforeUpdate=="function")||typeof p.UNSAFE_componentWillReceiveProps!="function"&&typeof p.componentWillReceiveProps!="function"||(b!==F||U!==N)&&Qg(s,p,c,N),hi=!1,U=s.memoizedState,p.state=U,oa(s,c,p,h),la();var B=s.memoizedState;b!==F||U!==B||hi||t!==null&&t.dependencies!==null&&Dl(t.dependencies)?(typeof T=="function"&&(tf(s,a,T,c),B=s.memoizedState),(G=hi||Fg(s,a,G,c,U,B,N)||t!==null&&t.dependencies!==null&&Dl(t.dependencies))?(z||typeof p.UNSAFE_componentWillUpdate!="function"&&typeof p.componentWillUpdate!="function"||(typeof p.componentWillUpdate=="function"&&p.componentWillUpdate(c,B,N),typeof p.UNSAFE_componentWillUpdate=="function"&&p.UNSAFE_componentWillUpdate(c,B,N)),typeof p.componentDidUpdate=="function"&&(s.flags|=4),typeof p.getSnapshotBeforeUpdate=="function"&&(s.flags|=1024)):(typeof p.componentDidUpdate!="function"||b===t.memoizedProps&&U===t.memoizedState||(s.flags|=4),typeof p.getSnapshotBeforeUpdate!="function"||b===t.memoizedProps&&U===t.memoizedState||(s.flags|=1024),s.memoizedProps=c,s.memoizedState=B),p.props=c,p.state=B,p.context=N,c=G):(typeof p.componentDidUpdate!="function"||b===t.memoizedProps&&U===t.memoizedState||(s.flags|=4),typeof p.getSnapshotBeforeUpdate!="function"||b===t.memoizedProps&&U===t.memoizedState||(s.flags|=1024),c=!1)}return p=c,eo(t,s),c=(s.flags&128)!==0,p||c?(p=s.stateNode,a=c&&typeof a.getDerivedStateFromError!="function"?null:p.render(),s.flags|=1,t!==null&&c?(s.child=Zi(s,t.child,null,h),s.child=Zi(s,null,a,h)):St(t,s,a,h),s.memoizedState=p.state,t=s.child):t=Vn(t,s,h),t}function um(t,s,a,c){return Xi(),s.flags|=256,St(t,s,a,c),s.child}var lf={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function of(t){return{baseLanes:t,cachePool:Wp()}}function cf(t,s,a){return t=t!==null?t.childLanes&~a:0,s&&(t|=en),t}function fm(t,s,a){var c=s.pendingProps,h=!1,p=(s.flags&128)!==0,b;if((b=p)||(b=t!==null&&t.memoizedState===null?!1:(Pe.current&2)!==0),b&&(h=!0,s.flags&=-129),b=(s.flags&32)!==0,s.flags&=-33,t===null){if(we){if(h?gi(s):mi(),(t=Be)?(t=vy(t,fn),t=t!==null&&t.data!=="&"?t:null,t!==null&&(s.memoizedState={dehydrated:t,treeContext:oi!==null?{id:An,overflow:Cn}:null,retryLane:536870912,hydrationErrors:null},a=Gp(t),a.return=s,s.child=a,bt=s,Be=null)):t=null,t===null)throw ui(s);return Kf(t)?s.lanes=32:s.lanes=536870912,null}var T=c.children;return c=c.fallback,h?(mi(),h=s.mode,T=to({mode:"hidden",children:T},h),c=Ki(c,h,a,null),T.return=s,c.return=s,T.sibling=c,s.child=T,c=s.child,c.memoizedState=of(a),c.childLanes=cf(t,b,a),s.memoizedState=lf,da(null,c)):(gi(s),uf(s,T))}var N=t.memoizedState;if(N!==null&&(T=N.dehydrated,T!==null)){if(p)s.flags&256?(gi(s),s.flags&=-257,s=ff(t,s,a)):s.memoizedState!==null?(mi(),s.child=t.child,s.flags|=128,s=null):(mi(),T=c.fallback,h=s.mode,c=to({mode:"visible",children:c.children},h),T=Ki(T,h,a,null),T.flags|=2,c.return=s,T.return=s,c.sibling=T,s.child=c,Zi(s,t.child,null,a),c=s.child,c.memoizedState=of(a),c.childLanes=cf(t,b,a),s.memoizedState=lf,s=da(null,c));else if(gi(s),Kf(T)){if(b=T.nextSibling&&T.nextSibling.dataset,b)var z=b.dgst;b=z,c=Error(r(419)),c.stack="",c.digest=b,ta({value:c,source:null,stack:null}),s=ff(t,s,a)}else if(at||qs(t,s,a,!1),b=(a&t.childLanes)!==0,at||b){if(b=De,b!==null&&(c=Jd(b,a),c!==0&&c!==N.retryLane))throw N.retryLane=c,Gi(t,c),Ht(b,t,c),rf;Gf(T)||uo(),s=ff(t,s,a)}else Gf(T)?(s.flags|=192,s.child=t.child,s=null):(t=N.treeContext,Be=dn(T.nextSibling),bt=s,we=!0,ci=null,fn=!1,t!==null&&Yp(s,t),s=uf(s,c.children),s.flags|=4096);return s}return h?(mi(),T=c.fallback,h=s.mode,N=t.child,z=N.sibling,c=Un(N,{mode:"hidden",children:c.children}),c.subtreeFlags=N.subtreeFlags&65011712,z!==null?T=Un(z,T):(T=Ki(T,h,a,null),T.flags|=2),T.return=s,c.return=s,c.sibling=T,s.child=c,da(null,c),c=s.child,T=t.child.memoizedState,T===null?T=of(a):(h=T.cachePool,h!==null?(N=st._currentValue,h=h.parent!==N?{parent:N,pool:N}:h):h=Wp(),T={baseLanes:T.baseLanes|a,cachePool:h}),c.memoizedState=T,c.childLanes=cf(t,b,a),s.memoizedState=lf,da(t.child,c)):(gi(s),a=t.child,t=a.sibling,a=Un(a,{mode:"visible",children:c.children}),a.return=s,a.sibling=null,t!==null&&(b=s.deletions,b===null?(s.deletions=[t],s.flags|=16):b.push(t)),s.child=a,s.memoizedState=null,a)}function uf(t,s){return s=to({mode:"visible",children:s},t.mode),s.return=t,t.child=s}function to(t,s){return t=Pt(22,t,null,s),t.lanes=0,t}function ff(t,s,a){return Zi(s,t.child,null,a),t=uf(s,s.pendingProps.children),t.flags|=2,s.memoizedState=null,t}function hm(t,s,a){t.lanes|=s;var c=t.alternate;c!==null&&(c.lanes|=s),Tu(t.return,s,a)}function hf(t,s,a,c,h,p){var b=t.memoizedState;b===null?t.memoizedState={isBackwards:s,rendering:null,renderingStartTime:0,last:c,tail:a,tailMode:h,treeForkCount:p}:(b.isBackwards=s,b.rendering=null,b.renderingStartTime=0,b.last=c,b.tail=a,b.tailMode=h,b.treeForkCount=p)}function dm(t,s,a){var c=s.pendingProps,h=c.revealOrder,p=c.tail;c=c.children;var b=Pe.current,T=(b&2)!==0;if(T?(b=b&1|2,s.flags|=128):b&=1,W(Pe,b),St(t,s,c,a),c=we?ea:0,!T&&t!==null&&(t.flags&128)!==0)e:for(t=s.child;t!==null;){if(t.tag===13)t.memoizedState!==null&&hm(t,a,s);else if(t.tag===19)hm(t,a,s);else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===s)break e;for(;t.sibling===null;){if(t.return===null||t.return===s)break e;t=t.return}t.sibling.return=t.return,t=t.sibling}switch(h){case"forwards":for(a=s.child,h=null;a!==null;)t=a.alternate,t!==null&&Vl(t)===null&&(h=a),a=a.sibling;a=h,a===null?(h=s.child,s.child=null):(h=a.sibling,a.sibling=null),hf(s,!1,h,a,p,c);break;case"backwards":case"unstable_legacy-backwards":for(a=null,h=s.child,s.child=null;h!==null;){if(t=h.alternate,t!==null&&Vl(t)===null){s.child=h;break}t=h.sibling,h.sibling=a,a=h,h=t}hf(s,!0,a,null,p,c);break;case"together":hf(s,!1,null,null,void 0,c);break;default:s.memoizedState=null}return s.child}function Vn(t,s,a){if(t!==null&&(s.dependencies=t.dependencies),vi|=s.lanes,(a&s.childLanes)===0)if(t!==null){if(qs(t,s,a,!1),(a&s.childLanes)===0)return null}else return null;if(t!==null&&s.child!==t.child)throw Error(r(153));if(s.child!==null){for(t=s.child,a=Un(t,t.pendingProps),s.child=a,a.return=s;t.sibling!==null;)t=t.sibling,a=a.sibling=Un(t,t.pendingProps),a.return=s;a.sibling=null}return s.child}function df(t,s){return(t.lanes&s)!==0?!0:(t=t.dependencies,!!(t!==null&&Dl(t)))}function cw(t,s,a){switch(s.tag){case 3:nt(s,s.stateNode.containerInfo),fi(s,st,t.memoizedState.cache),Xi();break;case 27:case 5:Ln(s);break;case 4:nt(s,s.stateNode.containerInfo);break;case 10:fi(s,s.type,s.memoizedProps.value);break;case 31:if(s.memoizedState!==null)return s.flags|=128,Uu(s),null;break;case 13:var c=s.memoizedState;if(c!==null)return c.dehydrated!==null?(gi(s),s.flags|=128,null):(a&s.child.childLanes)!==0?fm(t,s,a):(gi(s),t=Vn(t,s,a),t!==null?t.sibling:null);gi(s);break;case 19:var h=(t.flags&128)!==0;if(c=(a&s.childLanes)!==0,c||(qs(t,s,a,!1),c=(a&s.childLanes)!==0),h){if(c)return dm(t,s,a);s.flags|=128}if(h=s.memoizedState,h!==null&&(h.rendering=null,h.tail=null,h.lastEffect=null),W(Pe,Pe.current),c)break;return null;case 22:return s.lanes=0,rm(t,s,a,s.pendingProps);case 24:fi(s,st,t.memoizedState.cache)}return Vn(t,s,a)}function pm(t,s,a){if(t!==null)if(t.memoizedProps!==s.pendingProps)at=!0;else{if(!df(t,a)&&(s.flags&128)===0)return at=!1,cw(t,s,a);at=(t.flags&131072)!==0}else at=!1,we&&(s.flags&1048576)!==0&&Xp(s,ea,s.index);switch(s.lanes=0,s.tag){case 16:e:{var c=s.pendingProps;if(t=Pi(s.elementType),s.type=t,typeof t=="function")yu(t)?(c=es(t,c),s.tag=1,s=cm(null,s,t,c,a)):(s.tag=0,s=af(null,s,t,c,a));else{if(t!=null){var h=t.$$typeof;if(h===V){s.tag=11,s=nm(null,s,t,c,a);break e}else if(h===j){s.tag=14,s=im(null,s,t,c,a);break e}}throw s=ce(t)||t,Error(r(306,s,""))}}return s;case 0:return af(t,s,s.type,s.pendingProps,a);case 1:return c=s.type,h=es(c,s.pendingProps),cm(t,s,c,h,a);case 3:e:{if(nt(s,s.stateNode.containerInfo),t===null)throw Error(r(387));c=s.pendingProps;var p=s.memoizedState;h=p.element,ju(t,s),oa(s,c,null,a);var b=s.memoizedState;if(c=b.cache,fi(s,st,c),c!==p.cache&&Au(s,[st],a,!0),la(),c=b.element,p.isDehydrated)if(p={element:c,isDehydrated:!1,cache:b.cache},s.updateQueue.baseState=p,s.memoizedState=p,s.flags&256){s=um(t,s,c,a);break e}else if(c!==h){h=on(Error(r(424)),s),ta(h),s=um(t,s,c,a);break e}else{switch(t=s.stateNode.containerInfo,t.nodeType){case 9:t=t.body;break;default:t=t.nodeName==="HTML"?t.ownerDocument.body:t}for(Be=dn(t.firstChild),bt=s,we=!0,ci=null,fn=!0,a=rg(s,null,c,a),s.child=a;a;)a.flags=a.flags&-3|4096,a=a.sibling}else{if(Xi(),c===h){s=Vn(t,s,a);break e}St(t,s,c,a)}s=s.child}return s;case 26:return eo(t,s),t===null?(a=Ty(s.type,null,s.pendingProps,null))?s.memoizedState=a:we||(a=s.type,t=s.pendingProps,c=bo(se.current).createElement(a),c[yt]=s,c[jt]=t,wt(c,a,t),gt(c),s.stateNode=c):s.memoizedState=Ty(s.type,t.memoizedProps,s.pendingProps,t.memoizedState),null;case 27:return Ln(s),t===null&&we&&(c=s.stateNode=xy(s.type,s.pendingProps,se.current),bt=s,fn=!0,h=Be,Ei(s.type)?(Xf=h,Be=dn(c.firstChild)):Be=h),St(t,s,s.pendingProps.children,a),eo(t,s),t===null&&(s.flags|=4194304),s.child;case 5:return t===null&&we&&((h=c=Be)&&(c=Bw(c,s.type,s.pendingProps,fn),c!==null?(s.stateNode=c,bt=s,Be=dn(c.firstChild),fn=!1,h=!0):h=!1),h||ui(s)),Ln(s),h=s.type,p=s.pendingProps,b=t!==null?t.memoizedProps:null,c=p.children,$f(h,p)?c=null:b!==null&&$f(h,b)&&(s.flags|=32),s.memoizedState!==null&&(h=Bu(t,s,ew,null,null,a),Na._currentValue=h),eo(t,s),St(t,s,c,a),s.child;case 6:return t===null&&we&&((t=a=Be)&&(a=qw(a,s.pendingProps,fn),a!==null?(s.stateNode=a,bt=s,Be=null,t=!0):t=!1),t||ui(s)),null;case 13:return fm(t,s,a);case 4:return nt(s,s.stateNode.containerInfo),c=s.pendingProps,t===null?s.child=Zi(s,null,c,a):St(t,s,c,a),s.child;case 11:return nm(t,s,s.type,s.pendingProps,a);case 7:return St(t,s,s.pendingProps,a),s.child;case 8:return St(t,s,s.pendingProps.children,a),s.child;case 12:return St(t,s,s.pendingProps.children,a),s.child;case 10:return c=s.pendingProps,fi(s,s.type,c.value),St(t,s,c.children,a),s.child;case 9:return h=s.type._context,c=s.pendingProps.children,Fi(s),h=vt(h),c=c(h),s.flags|=1,St(t,s,c,a),s.child;case 14:return im(t,s,s.type,s.pendingProps,a);case 15:return sm(t,s,s.type,s.pendingProps,a);case 19:return dm(t,s,a);case 31:return ow(t,s,a);case 22:return rm(t,s,a,s.pendingProps);case 24:return Fi(s),c=vt(st),t===null?(h=ku(),h===null&&(h=De,p=Cu(),h.pooledCache=p,p.refCount++,p!==null&&(h.pooledCacheLanes|=a),h=p),s.memoizedState={parent:c,cache:h},Ou(s),fi(s,st,h)):((t.lanes&a)!==0&&(ju(t,s),oa(s,null,null,a),la()),h=t.memoizedState,p=s.memoizedState,h.parent!==c?(h={parent:c,cache:c},s.memoizedState=h,s.lanes===0&&(s.memoizedState=s.updateQueue.baseState=h),fi(s,st,c)):(c=p.cache,fi(s,st,c),c!==h.cache&&Au(s,[st],a,!0))),St(t,s,s.pendingProps.children,a),s.child;case 29:throw s.pendingProps}throw Error(r(156,s.tag))}function Gn(t){t.flags|=4}function pf(t,s,a,c,h){if((s=(t.mode&32)!==0)&&(s=!1),s){if(t.flags|=16777216,(h&335544128)===h)if(t.stateNode.complete)t.flags|=8192;else if($m())t.flags|=8192;else throw Ji=Bl,Mu}else t.flags&=-16777217}function gm(t,s){if(s.type!=="stylesheet"||(s.state.loading&4)!==0)t.flags&=-16777217;else if(t.flags|=16777216,!My(s))if($m())t.flags|=8192;else throw Ji=Bl,Mu}function no(t,s){s!==null&&(t.flags|=4),t.flags&16384&&(s=t.tag!==22?Fd():536870912,t.lanes|=s,Zs|=s)}function pa(t,s){if(!we)switch(t.tailMode){case"hidden":s=t.tail;for(var a=null;s!==null;)s.alternate!==null&&(a=s),s=s.sibling;a===null?t.tail=null:a.sibling=null;break;case"collapsed":a=t.tail;for(var c=null;a!==null;)a.alternate!==null&&(c=a),a=a.sibling;c===null?s||t.tail===null?t.tail=null:t.tail.sibling=null:c.sibling=null}}function qe(t){var s=t.alternate!==null&&t.alternate.child===t.child,a=0,c=0;if(s)for(var h=t.child;h!==null;)a|=h.lanes|h.childLanes,c|=h.subtreeFlags&65011712,c|=h.flags&65011712,h.return=t,h=h.sibling;else for(h=t.child;h!==null;)a|=h.lanes|h.childLanes,c|=h.subtreeFlags,c|=h.flags,h.return=t,h=h.sibling;return t.subtreeFlags|=c,t.childLanes=a,s}function uw(t,s,a){var c=s.pendingProps;switch(wu(s),s.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return qe(s),null;case 1:return qe(s),null;case 3:return a=s.stateNode,c=null,t!==null&&(c=t.memoizedState.cache),s.memoizedState.cache!==c&&(s.flags|=2048),qn(st),Re(),a.pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),(t===null||t.child===null)&&(Bs(s)?Gn(s):t===null||t.memoizedState.isDehydrated&&(s.flags&256)===0||(s.flags|=1024,_u())),qe(s),null;case 26:var h=s.type,p=s.memoizedState;return t===null?(Gn(s),p!==null?(qe(s),gm(s,p)):(qe(s),pf(s,h,null,c,a))):p?p!==t.memoizedState?(Gn(s),qe(s),gm(s,p)):(qe(s),s.flags&=-16777217):(t=t.memoizedProps,t!==c&&Gn(s),qe(s),pf(s,h,t,c,a)),null;case 27:if(fe(s),a=se.current,h=s.type,t!==null&&s.stateNode!=null)t.memoizedProps!==c&&Gn(s);else{if(!c){if(s.stateNode===null)throw Error(r(166));return qe(s),null}t=te.current,Bs(s)?Fp(s):(t=xy(h,c,a),s.stateNode=t,Gn(s))}return qe(s),null;case 5:if(fe(s),h=s.type,t!==null&&s.stateNode!=null)t.memoizedProps!==c&&Gn(s);else{if(!c){if(s.stateNode===null)throw Error(r(166));return qe(s),null}if(p=te.current,Bs(s))Fp(s);else{var b=bo(se.current);switch(p){case 1:p=b.createElementNS("http://www.w3.org/2000/svg",h);break;case 2:p=b.createElementNS("http://www.w3.org/1998/Math/MathML",h);break;default:switch(h){case"svg":p=b.createElementNS("http://www.w3.org/2000/svg",h);break;case"math":p=b.createElementNS("http://www.w3.org/1998/Math/MathML",h);break;case"script":p=b.createElement("div"),p.innerHTML="<script><\/script>",p=p.removeChild(p.firstChild);break;case"select":p=typeof c.is=="string"?b.createElement("select",{is:c.is}):b.createElement("select"),c.multiple?p.multiple=!0:c.size&&(p.size=c.size);break;default:p=typeof c.is=="string"?b.createElement(h,{is:c.is}):b.createElement(h)}}p[yt]=s,p[jt]=c;e:for(b=s.child;b!==null;){if(b.tag===5||b.tag===6)p.appendChild(b.stateNode);else if(b.tag!==4&&b.tag!==27&&b.child!==null){b.child.return=b,b=b.child;continue}if(b===s)break e;for(;b.sibling===null;){if(b.return===null||b.return===s)break e;b=b.return}b.sibling.return=b.return,b=b.sibling}s.stateNode=p;e:switch(wt(p,h,c),h){case"button":case"input":case"select":case"textarea":c=!!c.autoFocus;break e;case"img":c=!0;break e;default:c=!1}c&&Gn(s)}}return qe(s),pf(s,s.type,t===null?null:t.memoizedProps,s.pendingProps,a),null;case 6:if(t&&s.stateNode!=null)t.memoizedProps!==c&&Gn(s);else{if(typeof c!="string"&&s.stateNode===null)throw Error(r(166));if(t=se.current,Bs(s)){if(t=s.stateNode,a=s.memoizedProps,c=null,h=bt,h!==null)switch(h.tag){case 27:case 5:c=h.memoizedProps}t[yt]=s,t=!!(t.nodeValue===a||c!==null&&c.suppressHydrationWarning===!0||fy(t.nodeValue,a)),t||ui(s,!0)}else t=bo(t).createTextNode(c),t[yt]=s,s.stateNode=t}return qe(s),null;case 31:if(a=s.memoizedState,t===null||t.memoizedState!==null){if(c=Bs(s),a!==null){if(t===null){if(!c)throw Error(r(318));if(t=s.memoizedState,t=t!==null?t.dehydrated:null,!t)throw Error(r(557));t[yt]=s}else Xi(),(s.flags&128)===0&&(s.memoizedState=null),s.flags|=4;qe(s),t=!1}else a=_u(),t!==null&&t.memoizedState!==null&&(t.memoizedState.hydrationErrors=a),t=!0;if(!t)return s.flags&256?(Zt(s),s):(Zt(s),null);if((s.flags&128)!==0)throw Error(r(558))}return qe(s),null;case 13:if(c=s.memoizedState,t===null||t.memoizedState!==null&&t.memoizedState.dehydrated!==null){if(h=Bs(s),c!==null&&c.dehydrated!==null){if(t===null){if(!h)throw Error(r(318));if(h=s.memoizedState,h=h!==null?h.dehydrated:null,!h)throw Error(r(317));h[yt]=s}else Xi(),(s.flags&128)===0&&(s.memoizedState=null),s.flags|=4;qe(s),h=!1}else h=_u(),t!==null&&t.memoizedState!==null&&(t.memoizedState.hydrationErrors=h),h=!0;if(!h)return s.flags&256?(Zt(s),s):(Zt(s),null)}return Zt(s),(s.flags&128)!==0?(s.lanes=a,s):(a=c!==null,t=t!==null&&t.memoizedState!==null,a&&(c=s.child,h=null,c.alternate!==null&&c.alternate.memoizedState!==null&&c.alternate.memoizedState.cachePool!==null&&(h=c.alternate.memoizedState.cachePool.pool),p=null,c.memoizedState!==null&&c.memoizedState.cachePool!==null&&(p=c.memoizedState.cachePool.pool),p!==h&&(c.flags|=2048)),a!==t&&a&&(s.child.flags|=8192),no(s,s.updateQueue),qe(s),null);case 4:return Re(),t===null&&zf(s.stateNode.containerInfo),qe(s),null;case 10:return qn(s.type),qe(s),null;case 19:if(X(Pe),c=s.memoizedState,c===null)return qe(s),null;if(h=(s.flags&128)!==0,p=c.rendering,p===null)if(h)pa(c,!1);else{if(Qe!==0||t!==null&&(t.flags&128)!==0)for(t=s.child;t!==null;){if(p=Vl(t),p!==null){for(s.flags|=128,pa(c,!1),t=p.updateQueue,s.updateQueue=t,no(s,t),s.subtreeFlags=0,t=a,a=s.child;a!==null;)Vp(a,t),a=a.sibling;return W(Pe,Pe.current&1|2),we&&Hn(s,c.treeForkCount),s.child}t=t.sibling}c.tail!==null&&it()>lo&&(s.flags|=128,h=!0,pa(c,!1),s.lanes=4194304)}else{if(!h)if(t=Vl(p),t!==null){if(s.flags|=128,h=!0,t=t.updateQueue,s.updateQueue=t,no(s,t),pa(c,!0),c.tail===null&&c.tailMode==="hidden"&&!p.alternate&&!we)return qe(s),null}else 2*it()-c.renderingStartTime>lo&&a!==536870912&&(s.flags|=128,h=!0,pa(c,!1),s.lanes=4194304);c.isBackwards?(p.sibling=s.child,s.child=p):(t=c.last,t!==null?t.sibling=p:s.child=p,c.last=p)}return c.tail!==null?(t=c.tail,c.rendering=t,c.tail=t.sibling,c.renderingStartTime=it(),t.sibling=null,a=Pe.current,W(Pe,h?a&1|2:a&1),we&&Hn(s,c.treeForkCount),t):(qe(s),null);case 22:case 23:return Zt(s),zu(),c=s.memoizedState!==null,t!==null?t.memoizedState!==null!==c&&(s.flags|=8192):c&&(s.flags|=8192),c?(a&536870912)!==0&&(s.flags&128)===0&&(qe(s),s.subtreeFlags&6&&(s.flags|=8192)):qe(s),a=s.updateQueue,a!==null&&no(s,a.retryQueue),a=null,t!==null&&t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(a=t.memoizedState.cachePool.pool),c=null,s.memoizedState!==null&&s.memoizedState.cachePool!==null&&(c=s.memoizedState.cachePool.pool),c!==a&&(s.flags|=2048),t!==null&&X(Qi),null;case 24:return a=null,t!==null&&(a=t.memoizedState.cache),s.memoizedState.cache!==a&&(s.flags|=2048),qn(st),qe(s),null;case 25:return null;case 30:return null}throw Error(r(156,s.tag))}function fw(t,s){switch(wu(s),s.tag){case 1:return t=s.flags,t&65536?(s.flags=t&-65537|128,s):null;case 3:return qn(st),Re(),t=s.flags,(t&65536)!==0&&(t&128)===0?(s.flags=t&-65537|128,s):null;case 26:case 27:case 5:return fe(s),null;case 31:if(s.memoizedState!==null){if(Zt(s),s.alternate===null)throw Error(r(340));Xi()}return t=s.flags,t&65536?(s.flags=t&-65537|128,s):null;case 13:if(Zt(s),t=s.memoizedState,t!==null&&t.dehydrated!==null){if(s.alternate===null)throw Error(r(340));Xi()}return t=s.flags,t&65536?(s.flags=t&-65537|128,s):null;case 19:return X(Pe),null;case 4:return Re(),null;case 10:return qn(s.type),null;case 22:case 23:return Zt(s),zu(),t!==null&&X(Qi),t=s.flags,t&65536?(s.flags=t&-65537|128,s):null;case 24:return qn(st),null;case 25:return null;default:return null}}function mm(t,s){switch(wu(s),s.tag){case 3:qn(st),Re();break;case 26:case 27:case 5:fe(s);break;case 4:Re();break;case 31:s.memoizedState!==null&&Zt(s);break;case 13:Zt(s);break;case 19:X(Pe);break;case 10:qn(s.type);break;case 22:case 23:Zt(s),zu(),t!==null&&X(Qi);break;case 24:qn(st)}}function ga(t,s){try{var a=s.updateQueue,c=a!==null?a.lastEffect:null;if(c!==null){var h=c.next;a=h;do{if((a.tag&t)===t){c=void 0;var p=a.create,b=a.inst;c=p(),b.destroy=c}a=a.next}while(a!==h)}}catch(T){ke(s,s.return,T)}}function yi(t,s,a){try{var c=s.updateQueue,h=c!==null?c.lastEffect:null;if(h!==null){var p=h.next;c=p;do{if((c.tag&t)===t){var b=c.inst,T=b.destroy;if(T!==void 0){b.destroy=void 0,h=s;var N=a,z=T;try{z()}catch(G){ke(h,N,G)}}}c=c.next}while(c!==p)}}catch(G){ke(s,s.return,G)}}function ym(t){var s=t.updateQueue;if(s!==null){var a=t.stateNode;try{lg(s,a)}catch(c){ke(t,t.return,c)}}}function bm(t,s,a){a.props=es(t.type,t.memoizedProps),a.state=t.memoizedState;try{a.componentWillUnmount()}catch(c){ke(t,s,c)}}function ma(t,s){try{var a=t.ref;if(a!==null){switch(t.tag){case 26:case 27:case 5:var c=t.stateNode;break;case 30:c=t.stateNode;break;default:c=t.stateNode}typeof a=="function"?t.refCleanup=a(c):a.current=c}}catch(h){ke(t,s,h)}}function Nn(t,s){var a=t.ref,c=t.refCleanup;if(a!==null)if(typeof c=="function")try{c()}catch(h){ke(t,s,h)}finally{t.refCleanup=null,t=t.alternate,t!=null&&(t.refCleanup=null)}else if(typeof a=="function")try{a(null)}catch(h){ke(t,s,h)}else a.current=null}function vm(t){var s=t.type,a=t.memoizedProps,c=t.stateNode;try{e:switch(s){case"button":case"input":case"select":case"textarea":a.autoFocus&&c.focus();break e;case"img":a.src?c.src=a.src:a.srcSet&&(c.srcset=a.srcSet)}}catch(h){ke(t,t.return,h)}}function gf(t,s,a){try{var c=t.stateNode;Lw(c,t.type,a,s),c[jt]=s}catch(h){ke(t,t.return,h)}}function Sm(t){return t.tag===5||t.tag===3||t.tag===26||t.tag===27&&Ei(t.type)||t.tag===4}function mf(t){e:for(;;){for(;t.sibling===null;){if(t.return===null||Sm(t.return))return null;t=t.return}for(t.sibling.return=t.return,t=t.sibling;t.tag!==5&&t.tag!==6&&t.tag!==18;){if(t.tag===27&&Ei(t.type)||t.flags&2||t.child===null||t.tag===4)continue e;t.child.return=t,t=t.child}if(!(t.flags&2))return t.stateNode}}function yf(t,s,a){var c=t.tag;if(c===5||c===6)t=t.stateNode,s?(a.nodeType===9?a.body:a.nodeName==="HTML"?a.ownerDocument.body:a).insertBefore(t,s):(s=a.nodeType===9?a.body:a.nodeName==="HTML"?a.ownerDocument.body:a,s.appendChild(t),a=a._reactRootContainer,a!=null||s.onclick!==null||(s.onclick=Dn));else if(c!==4&&(c===27&&Ei(t.type)&&(a=t.stateNode,s=null),t=t.child,t!==null))for(yf(t,s,a),t=t.sibling;t!==null;)yf(t,s,a),t=t.sibling}function io(t,s,a){var c=t.tag;if(c===5||c===6)t=t.stateNode,s?a.insertBefore(t,s):a.appendChild(t);else if(c!==4&&(c===27&&Ei(t.type)&&(a=t.stateNode),t=t.child,t!==null))for(io(t,s,a),t=t.sibling;t!==null;)io(t,s,a),t=t.sibling}function wm(t){var s=t.stateNode,a=t.memoizedProps;try{for(var c=t.type,h=s.attributes;h.length;)s.removeAttributeNode(h[0]);wt(s,c,a),s[yt]=t,s[jt]=a}catch(p){ke(t,t.return,p)}}var Kn=!1,lt=!1,bf=!1,xm=typeof WeakSet=="function"?WeakSet:Set,mt=null;function hw(t,s){if(t=t.containerInfo,Bf=To,t=Rp(t),uu(t)){if("selectionStart"in t)var a={start:t.selectionStart,end:t.selectionEnd};else e:{a=(a=t.ownerDocument)&&a.defaultView||window;var c=a.getSelection&&a.getSelection();if(c&&c.rangeCount!==0){a=c.anchorNode;var h=c.anchorOffset,p=c.focusNode;c=c.focusOffset;try{a.nodeType,p.nodeType}catch{a=null;break e}var b=0,T=-1,N=-1,z=0,G=0,F=t,U=null;t:for(;;){for(var B;F!==a||h!==0&&F.nodeType!==3||(T=b+h),F!==p||c!==0&&F.nodeType!==3||(N=b+c),F.nodeType===3&&(b+=F.nodeValue.length),(B=F.firstChild)!==null;)U=F,F=B;for(;;){if(F===t)break t;if(U===a&&++z===h&&(T=b),U===p&&++G===c&&(N=b),(B=F.nextSibling)!==null)break;F=U,U=F.parentNode}F=B}a=T===-1||N===-1?null:{start:T,end:N}}else a=null}a=a||{start:0,end:0}}else a=null;for(qf={focusedElem:t,selectionRange:a},To=!1,mt=s;mt!==null;)if(s=mt,t=s.child,(s.subtreeFlags&1028)!==0&&t!==null)t.return=s,mt=t;else for(;mt!==null;){switch(s=mt,p=s.alternate,t=s.flags,s.tag){case 0:if((t&4)!==0&&(t=s.updateQueue,t=t!==null?t.events:null,t!==null))for(a=0;a<t.length;a++)h=t[a],h.ref.impl=h.nextImpl;break;case 11:case 15:break;case 1:if((t&1024)!==0&&p!==null){t=void 0,a=s,h=p.memoizedProps,p=p.memoizedState,c=a.stateNode;try{var ne=es(a.type,h);t=c.getSnapshotBeforeUpdate(ne,p),c.__reactInternalSnapshotBeforeUpdate=t}catch(oe){ke(a,a.return,oe)}}break;case 3:if((t&1024)!==0){if(t=s.stateNode.containerInfo,a=t.nodeType,a===9)Vf(t);else if(a===1)switch(t.nodeName){case"HEAD":case"HTML":case"BODY":Vf(t);break;default:t.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((t&1024)!==0)throw Error(r(163))}if(t=s.sibling,t!==null){t.return=s.return,mt=t;break}mt=s.return}}function _m(t,s,a){var c=a.flags;switch(a.tag){case 0:case 11:case 15:Yn(t,a),c&4&&ga(5,a);break;case 1:if(Yn(t,a),c&4)if(t=a.stateNode,s===null)try{t.componentDidMount()}catch(b){ke(a,a.return,b)}else{var h=es(a.type,s.memoizedProps);s=s.memoizedState;try{t.componentDidUpdate(h,s,t.__reactInternalSnapshotBeforeUpdate)}catch(b){ke(a,a.return,b)}}c&64&&ym(a),c&512&&ma(a,a.return);break;case 3:if(Yn(t,a),c&64&&(t=a.updateQueue,t!==null)){if(s=null,a.child!==null)switch(a.child.tag){case 27:case 5:s=a.child.stateNode;break;case 1:s=a.child.stateNode}try{lg(t,s)}catch(b){ke(a,a.return,b)}}break;case 27:s===null&&c&4&&wm(a);case 26:case 5:Yn(t,a),s===null&&c&4&&vm(a),c&512&&ma(a,a.return);break;case 12:Yn(t,a);break;case 31:Yn(t,a),c&4&&Am(t,a);break;case 13:Yn(t,a),c&4&&Cm(t,a),c&64&&(t=a.memoizedState,t!==null&&(t=t.dehydrated,t!==null&&(a=ww.bind(null,a),$w(t,a))));break;case 22:if(c=a.memoizedState!==null||Kn,!c){s=s!==null&&s.memoizedState!==null||lt,h=Kn;var p=lt;Kn=c,(lt=s)&&!p?Fn(t,a,(a.subtreeFlags&8772)!==0):Yn(t,a),Kn=h,lt=p}break;case 30:break;default:Yn(t,a)}}function Em(t){var s=t.alternate;s!==null&&(t.alternate=null,Em(s)),t.child=null,t.deletions=null,t.sibling=null,t.tag===5&&(s=t.stateNode,s!==null&&Yc(s)),t.stateNode=null,t.return=null,t.dependencies=null,t.memoizedProps=null,t.memoizedState=null,t.pendingProps=null,t.stateNode=null,t.updateQueue=null}var $e=null,Rt=!1;function Xn(t,s,a){for(a=a.child;a!==null;)Tm(t,s,a),a=a.sibling}function Tm(t,s,a){if(ut&&typeof ut.onCommitFiberUnmount=="function")try{ut.onCommitFiberUnmount(Hi,a)}catch{}switch(a.tag){case 26:lt||Nn(a,s),Xn(t,s,a),a.memoizedState?a.memoizedState.count--:a.stateNode&&(a=a.stateNode,a.parentNode.removeChild(a));break;case 27:lt||Nn(a,s);var c=$e,h=Rt;Ei(a.type)&&($e=a.stateNode,Rt=!1),Xn(t,s,a),Ta(a.stateNode),$e=c,Rt=h;break;case 5:lt||Nn(a,s);case 6:if(c=$e,h=Rt,$e=null,Xn(t,s,a),$e=c,Rt=h,$e!==null)if(Rt)try{($e.nodeType===9?$e.body:$e.nodeName==="HTML"?$e.ownerDocument.body:$e).removeChild(a.stateNode)}catch(p){ke(a,s,p)}else try{$e.removeChild(a.stateNode)}catch(p){ke(a,s,p)}break;case 18:$e!==null&&(Rt?(t=$e,yy(t.nodeType===9?t.body:t.nodeName==="HTML"?t.ownerDocument.body:t,a.stateNode),ar(t)):yy($e,a.stateNode));break;case 4:c=$e,h=Rt,$e=a.stateNode.containerInfo,Rt=!0,Xn(t,s,a),$e=c,Rt=h;break;case 0:case 11:case 14:case 15:yi(2,a,s),lt||yi(4,a,s),Xn(t,s,a);break;case 1:lt||(Nn(a,s),c=a.stateNode,typeof c.componentWillUnmount=="function"&&bm(a,s,c)),Xn(t,s,a);break;case 21:Xn(t,s,a);break;case 22:lt=(c=lt)||a.memoizedState!==null,Xn(t,s,a),lt=c;break;default:Xn(t,s,a)}}function Am(t,s){if(s.memoizedState===null&&(t=s.alternate,t!==null&&(t=t.memoizedState,t!==null))){t=t.dehydrated;try{ar(t)}catch(a){ke(s,s.return,a)}}}function Cm(t,s){if(s.memoizedState===null&&(t=s.alternate,t!==null&&(t=t.memoizedState,t!==null&&(t=t.dehydrated,t!==null))))try{ar(t)}catch(a){ke(s,s.return,a)}}function dw(t){switch(t.tag){case 31:case 13:case 19:var s=t.stateNode;return s===null&&(s=t.stateNode=new xm),s;case 22:return t=t.stateNode,s=t._retryCache,s===null&&(s=t._retryCache=new xm),s;default:throw Error(r(435,t.tag))}}function so(t,s){var a=dw(t);s.forEach(function(c){if(!a.has(c)){a.add(c);var h=xw.bind(null,t,c);c.then(h,h)}})}function Dt(t,s){var a=s.deletions;if(a!==null)for(var c=0;c<a.length;c++){var h=a[c],p=t,b=s,T=b;e:for(;T!==null;){switch(T.tag){case 27:if(Ei(T.type)){$e=T.stateNode,Rt=!1;break e}break;case 5:$e=T.stateNode,Rt=!1;break e;case 3:case 4:$e=T.stateNode.containerInfo,Rt=!0;break e}T=T.return}if($e===null)throw Error(r(160));Tm(p,b,h),$e=null,Rt=!1,p=h.alternate,p!==null&&(p.return=null),h.return=null}if(s.subtreeFlags&13886)for(s=s.child;s!==null;)Nm(s,t),s=s.sibling}var Sn=null;function Nm(t,s){var a=t.alternate,c=t.flags;switch(t.tag){case 0:case 11:case 14:case 15:Dt(s,t),zt(t),c&4&&(yi(3,t,t.return),ga(3,t),yi(5,t,t.return));break;case 1:Dt(s,t),zt(t),c&512&&(lt||a===null||Nn(a,a.return)),c&64&&Kn&&(t=t.updateQueue,t!==null&&(c=t.callbacks,c!==null&&(a=t.shared.hiddenCallbacks,t.shared.hiddenCallbacks=a===null?c:a.concat(c))));break;case 26:var h=Sn;if(Dt(s,t),zt(t),c&512&&(lt||a===null||Nn(a,a.return)),c&4){var p=a!==null?a.memoizedState:null;if(c=t.memoizedState,a===null)if(c===null)if(t.stateNode===null){e:{c=t.type,a=t.memoizedProps,h=h.ownerDocument||h;t:switch(c){case"title":p=h.getElementsByTagName("title")[0],(!p||p[Vr]||p[yt]||p.namespaceURI==="http://www.w3.org/2000/svg"||p.hasAttribute("itemprop"))&&(p=h.createElement(c),h.head.insertBefore(p,h.querySelector("head > title"))),wt(p,c,a),p[yt]=t,gt(p),c=p;break e;case"link":var b=Ny("link","href",h).get(c+(a.href||""));if(b){for(var T=0;T<b.length;T++)if(p=b[T],p.getAttribute("href")===(a.href==null||a.href===""?null:a.href)&&p.getAttribute("rel")===(a.rel==null?null:a.rel)&&p.getAttribute("title")===(a.title==null?null:a.title)&&p.getAttribute("crossorigin")===(a.crossOrigin==null?null:a.crossOrigin)){b.splice(T,1);break t}}p=h.createElement(c),wt(p,c,a),h.head.appendChild(p);break;case"meta":if(b=Ny("meta","content",h).get(c+(a.content||""))){for(T=0;T<b.length;T++)if(p=b[T],p.getAttribute("content")===(a.content==null?null:""+a.content)&&p.getAttribute("name")===(a.name==null?null:a.name)&&p.getAttribute("property")===(a.property==null?null:a.property)&&p.getAttribute("http-equiv")===(a.httpEquiv==null?null:a.httpEquiv)&&p.getAttribute("charset")===(a.charSet==null?null:a.charSet)){b.splice(T,1);break t}}p=h.createElement(c),wt(p,c,a),h.head.appendChild(p);break;default:throw Error(r(468,c))}p[yt]=t,gt(p),c=p}t.stateNode=c}else ky(h,t.type,t.stateNode);else t.stateNode=Cy(h,c,t.memoizedProps);else p!==c?(p===null?a.stateNode!==null&&(a=a.stateNode,a.parentNode.removeChild(a)):p.count--,c===null?ky(h,t.type,t.stateNode):Cy(h,c,t.memoizedProps)):c===null&&t.stateNode!==null&&gf(t,t.memoizedProps,a.memoizedProps)}break;case 27:Dt(s,t),zt(t),c&512&&(lt||a===null||Nn(a,a.return)),a!==null&&c&4&&gf(t,t.memoizedProps,a.memoizedProps);break;case 5:if(Dt(s,t),zt(t),c&512&&(lt||a===null||Nn(a,a.return)),t.flags&32){h=t.stateNode;try{ks(h,"")}catch(ne){ke(t,t.return,ne)}}c&4&&t.stateNode!=null&&(h=t.memoizedProps,gf(t,h,a!==null?a.memoizedProps:h)),c&1024&&(bf=!0);break;case 6:if(Dt(s,t),zt(t),c&4){if(t.stateNode===null)throw Error(r(162));c=t.memoizedProps,a=t.stateNode;try{a.nodeValue=c}catch(ne){ke(t,t.return,ne)}}break;case 3:if(wo=null,h=Sn,Sn=vo(s.containerInfo),Dt(s,t),Sn=h,zt(t),c&4&&a!==null&&a.memoizedState.isDehydrated)try{ar(s.containerInfo)}catch(ne){ke(t,t.return,ne)}bf&&(bf=!1,km(t));break;case 4:c=Sn,Sn=vo(t.stateNode.containerInfo),Dt(s,t),zt(t),Sn=c;break;case 12:Dt(s,t),zt(t);break;case 31:Dt(s,t),zt(t),c&4&&(c=t.updateQueue,c!==null&&(t.updateQueue=null,so(t,c)));break;case 13:Dt(s,t),zt(t),t.child.flags&8192&&t.memoizedState!==null!=(a!==null&&a.memoizedState!==null)&&(ao=it()),c&4&&(c=t.updateQueue,c!==null&&(t.updateQueue=null,so(t,c)));break;case 22:h=t.memoizedState!==null;var N=a!==null&&a.memoizedState!==null,z=Kn,G=lt;if(Kn=z||h,lt=G||N,Dt(s,t),lt=G,Kn=z,zt(t),c&8192)e:for(s=t.stateNode,s._visibility=h?s._visibility&-2:s._visibility|1,h&&(a===null||N||Kn||lt||ts(t)),a=null,s=t;;){if(s.tag===5||s.tag===26){if(a===null){N=a=s;try{if(p=N.stateNode,h)b=p.style,typeof b.setProperty=="function"?b.setProperty("display","none","important"):b.display="none";else{T=N.stateNode;var F=N.memoizedProps.style,U=F!=null&&F.hasOwnProperty("display")?F.display:null;T.style.display=U==null||typeof U=="boolean"?"":(""+U).trim()}}catch(ne){ke(N,N.return,ne)}}}else if(s.tag===6){if(a===null){N=s;try{N.stateNode.nodeValue=h?"":N.memoizedProps}catch(ne){ke(N,N.return,ne)}}}else if(s.tag===18){if(a===null){N=s;try{var B=N.stateNode;h?by(B,!0):by(N.stateNode,!1)}catch(ne){ke(N,N.return,ne)}}}else if((s.tag!==22&&s.tag!==23||s.memoizedState===null||s===t)&&s.child!==null){s.child.return=s,s=s.child;continue}if(s===t)break e;for(;s.sibling===null;){if(s.return===null||s.return===t)break e;a===s&&(a=null),s=s.return}a===s&&(a=null),s.sibling.return=s.return,s=s.sibling}c&4&&(c=t.updateQueue,c!==null&&(a=c.retryQueue,a!==null&&(c.retryQueue=null,so(t,a))));break;case 19:Dt(s,t),zt(t),c&4&&(c=t.updateQueue,c!==null&&(t.updateQueue=null,so(t,c)));break;case 30:break;case 21:break;default:Dt(s,t),zt(t)}}function zt(t){var s=t.flags;if(s&2){try{for(var a,c=t.return;c!==null;){if(Sm(c)){a=c;break}c=c.return}if(a==null)throw Error(r(160));switch(a.tag){case 27:var h=a.stateNode,p=mf(t);io(t,p,h);break;case 5:var b=a.stateNode;a.flags&32&&(ks(b,""),a.flags&=-33);var T=mf(t);io(t,T,b);break;case 3:case 4:var N=a.stateNode.containerInfo,z=mf(t);yf(t,z,N);break;default:throw Error(r(161))}}catch(G){ke(t,t.return,G)}t.flags&=-3}s&4096&&(t.flags&=-4097)}function km(t){if(t.subtreeFlags&1024)for(t=t.child;t!==null;){var s=t;km(s),s.tag===5&&s.flags&1024&&s.stateNode.reset(),t=t.sibling}}function Yn(t,s){if(s.subtreeFlags&8772)for(s=s.child;s!==null;)_m(t,s.alternate,s),s=s.sibling}function ts(t){for(t=t.child;t!==null;){var s=t;switch(s.tag){case 0:case 11:case 14:case 15:yi(4,s,s.return),ts(s);break;case 1:Nn(s,s.return);var a=s.stateNode;typeof a.componentWillUnmount=="function"&&bm(s,s.return,a),ts(s);break;case 27:Ta(s.stateNode);case 26:case 5:Nn(s,s.return),ts(s);break;case 22:s.memoizedState===null&&ts(s);break;case 30:ts(s);break;default:ts(s)}t=t.sibling}}function Fn(t,s,a){for(a=a&&(s.subtreeFlags&8772)!==0,s=s.child;s!==null;){var c=s.alternate,h=t,p=s,b=p.flags;switch(p.tag){case 0:case 11:case 15:Fn(h,p,a),ga(4,p);break;case 1:if(Fn(h,p,a),c=p,h=c.stateNode,typeof h.componentDidMount=="function")try{h.componentDidMount()}catch(z){ke(c,c.return,z)}if(c=p,h=c.updateQueue,h!==null){var T=c.stateNode;try{var N=h.shared.hiddenCallbacks;if(N!==null)for(h.shared.hiddenCallbacks=null,h=0;h<N.length;h++)ag(N[h],T)}catch(z){ke(c,c.return,z)}}a&&b&64&&ym(p),ma(p,p.return);break;case 27:wm(p);case 26:case 5:Fn(h,p,a),a&&c===null&&b&4&&vm(p),ma(p,p.return);break;case 12:Fn(h,p,a);break;case 31:Fn(h,p,a),a&&b&4&&Am(h,p);break;case 13:Fn(h,p,a),a&&b&4&&Cm(h,p);break;case 22:p.memoizedState===null&&Fn(h,p,a),ma(p,p.return);break;case 30:break;default:Fn(h,p,a)}s=s.sibling}}function vf(t,s){var a=null;t!==null&&t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(a=t.memoizedState.cachePool.pool),t=null,s.memoizedState!==null&&s.memoizedState.cachePool!==null&&(t=s.memoizedState.cachePool.pool),t!==a&&(t!=null&&t.refCount++,a!=null&&na(a))}function Sf(t,s){t=null,s.alternate!==null&&(t=s.alternate.memoizedState.cache),s=s.memoizedState.cache,s!==t&&(s.refCount++,t!=null&&na(t))}function wn(t,s,a,c){if(s.subtreeFlags&10256)for(s=s.child;s!==null;)Mm(t,s,a,c),s=s.sibling}function Mm(t,s,a,c){var h=s.flags;switch(s.tag){case 0:case 11:case 15:wn(t,s,a,c),h&2048&&ga(9,s);break;case 1:wn(t,s,a,c);break;case 3:wn(t,s,a,c),h&2048&&(t=null,s.alternate!==null&&(t=s.alternate.memoizedState.cache),s=s.memoizedState.cache,s!==t&&(s.refCount++,t!=null&&na(t)));break;case 12:if(h&2048){wn(t,s,a,c),t=s.stateNode;try{var p=s.memoizedProps,b=p.id,T=p.onPostCommit;typeof T=="function"&&T(b,s.alternate===null?"mount":"update",t.passiveEffectDuration,-0)}catch(N){ke(s,s.return,N)}}else wn(t,s,a,c);break;case 31:wn(t,s,a,c);break;case 13:wn(t,s,a,c);break;case 23:break;case 22:p=s.stateNode,b=s.alternate,s.memoizedState!==null?p._visibility&2?wn(t,s,a,c):ya(t,s):p._visibility&2?wn(t,s,a,c):(p._visibility|=2,Qs(t,s,a,c,(s.subtreeFlags&10256)!==0||!1)),h&2048&&vf(b,s);break;case 24:wn(t,s,a,c),h&2048&&Sf(s.alternate,s);break;default:wn(t,s,a,c)}}function Qs(t,s,a,c,h){for(h=h&&((s.subtreeFlags&10256)!==0||!1),s=s.child;s!==null;){var p=t,b=s,T=a,N=c,z=b.flags;switch(b.tag){case 0:case 11:case 15:Qs(p,b,T,N,h),ga(8,b);break;case 23:break;case 22:var G=b.stateNode;b.memoizedState!==null?G._visibility&2?Qs(p,b,T,N,h):ya(p,b):(G._visibility|=2,Qs(p,b,T,N,h)),h&&z&2048&&vf(b.alternate,b);break;case 24:Qs(p,b,T,N,h),h&&z&2048&&Sf(b.alternate,b);break;default:Qs(p,b,T,N,h)}s=s.sibling}}function ya(t,s){if(s.subtreeFlags&10256)for(s=s.child;s!==null;){var a=t,c=s,h=c.flags;switch(c.tag){case 22:ya(a,c),h&2048&&vf(c.alternate,c);break;case 24:ya(a,c),h&2048&&Sf(c.alternate,c);break;default:ya(a,c)}s=s.sibling}}var ba=8192;function Ps(t,s,a){if(t.subtreeFlags&ba)for(t=t.child;t!==null;)Om(t,s,a),t=t.sibling}function Om(t,s,a){switch(t.tag){case 26:Ps(t,s,a),t.flags&ba&&t.memoizedState!==null&&Ww(a,Sn,t.memoizedState,t.memoizedProps);break;case 5:Ps(t,s,a);break;case 3:case 4:var c=Sn;Sn=vo(t.stateNode.containerInfo),Ps(t,s,a),Sn=c;break;case 22:t.memoizedState===null&&(c=t.alternate,c!==null&&c.memoizedState!==null?(c=ba,ba=16777216,Ps(t,s,a),ba=c):Ps(t,s,a));break;default:Ps(t,s,a)}}function jm(t){var s=t.alternate;if(s!==null&&(t=s.child,t!==null)){s.child=null;do s=t.sibling,t.sibling=null,t=s;while(t!==null)}}function va(t){var s=t.deletions;if((t.flags&16)!==0){if(s!==null)for(var a=0;a<s.length;a++){var c=s[a];mt=c,Rm(c,t)}jm(t)}if(t.subtreeFlags&10256)for(t=t.child;t!==null;)Lm(t),t=t.sibling}function Lm(t){switch(t.tag){case 0:case 11:case 15:va(t),t.flags&2048&&yi(9,t,t.return);break;case 3:va(t);break;case 12:va(t);break;case 22:var s=t.stateNode;t.memoizedState!==null&&s._visibility&2&&(t.return===null||t.return.tag!==13)?(s._visibility&=-3,ro(t)):va(t);break;default:va(t)}}function ro(t){var s=t.deletions;if((t.flags&16)!==0){if(s!==null)for(var a=0;a<s.length;a++){var c=s[a];mt=c,Rm(c,t)}jm(t)}for(t=t.child;t!==null;){switch(s=t,s.tag){case 0:case 11:case 15:yi(8,s,s.return),ro(s);break;case 22:a=s.stateNode,a._visibility&2&&(a._visibility&=-3,ro(s));break;default:ro(s)}t=t.sibling}}function Rm(t,s){for(;mt!==null;){var a=mt;switch(a.tag){case 0:case 11:case 15:yi(8,a,s);break;case 23:case 22:if(a.memoizedState!==null&&a.memoizedState.cachePool!==null){var c=a.memoizedState.cachePool.pool;c!=null&&c.refCount++}break;case 24:na(a.memoizedState.cache)}if(c=a.child,c!==null)c.return=a,mt=c;else e:for(a=t;mt!==null;){c=mt;var h=c.sibling,p=c.return;if(Em(c),c===a){mt=null;break e}if(h!==null){h.return=p,mt=h;break e}mt=p}}}var pw={getCacheForType:function(t){var s=vt(st),a=s.data.get(t);return a===void 0&&(a=t(),s.data.set(t,a)),a},cacheSignal:function(){return vt(st).controller.signal}},gw=typeof WeakMap=="function"?WeakMap:Map,Ce=0,De=null,ye=null,ve=0,Ne=0,Wt=null,bi=!1,Js=!1,wf=!1,Qn=0,Qe=0,vi=0,ns=0,xf=0,en=0,Zs=0,Sa=null,Ut=null,_f=!1,ao=0,Dm=0,lo=1/0,oo=null,Si=null,ft=0,wi=null,Ws=null,Pn=0,Ef=0,Tf=null,zm=null,wa=0,Af=null;function tn(){return(Ce&2)!==0&&ve!==0?ve&-ve:q.T!==null?jf():Zd()}function Um(){if(en===0)if((ve&536870912)===0||we){var t=Tn;Tn<<=1,(Tn&3932160)===0&&(Tn=262144),en=t}else en=536870912;return t=Jt.current,t!==null&&(t.flags|=32),en}function Ht(t,s,a){(t===De&&(Ne===2||Ne===9)||t.cancelPendingCommit!==null)&&(er(t,0),xi(t,ve,en,!1)),Ir(t,a),((Ce&2)===0||t!==De)&&(t===De&&((Ce&2)===0&&(ns|=a),Qe===4&&xi(t,ve,en,!1)),kn(t))}function Hm(t,s,a){if((Ce&6)!==0)throw Error(r(327));var c=!a&&(s&127)===0&&(s&t.expiredLanes)===0||$r(t,s),h=c?bw(t,s):Nf(t,s,!0),p=c;do{if(h===0){Js&&!c&&xi(t,s,0,!1);break}else{if(a=t.current.alternate,p&&!mw(a)){h=Nf(t,s,!1),p=!1;continue}if(h===2){if(p=s,t.errorRecoveryDisabledLanes&p)var b=0;else b=t.pendingLanes&-536870913,b=b!==0?b:b&536870912?536870912:0;if(b!==0){s=b;e:{var T=t;h=Sa;var N=T.current.memoizedState.isDehydrated;if(N&&(er(T,b).flags|=256),b=Nf(T,b,!1),b!==2){if(wf&&!N){T.errorRecoveryDisabledLanes|=p,ns|=p,h=4;break e}p=Ut,Ut=h,p!==null&&(Ut===null?Ut=p:Ut.push.apply(Ut,p))}h=b}if(p=!1,h!==2)continue}}if(h===1){er(t,0),xi(t,s,0,!0);break}e:{switch(c=t,p=h,p){case 0:case 1:throw Error(r(345));case 4:if((s&4194048)!==s)break;case 6:xi(c,s,en,!bi);break e;case 2:Ut=null;break;case 3:case 5:break;default:throw Error(r(329))}if((s&62914560)===s&&(h=ao+300-it(),10<h)){if(xi(c,s,en,!bi),bl(c,0,!0)!==0)break e;Pn=s,c.timeoutHandle=gy(Bm.bind(null,c,a,Ut,oo,_f,s,en,ns,Zs,bi,p,"Throttled",-0,0),h);break e}Bm(c,a,Ut,oo,_f,s,en,ns,Zs,bi,p,null,-0,0)}}break}while(!0);kn(t)}function Bm(t,s,a,c,h,p,b,T,N,z,G,F,U,B){if(t.timeoutHandle=-1,F=s.subtreeFlags,F&8192||(F&16785408)===16785408){F={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:Dn},Om(s,p,F);var ne=(p&62914560)===p?ao-it():(p&4194048)===p?Dm-it():0;if(ne=ex(F,ne),ne!==null){Pn=p,t.cancelPendingCommit=ne(Ym.bind(null,t,s,p,a,c,h,b,T,N,G,F,null,U,B)),xi(t,p,b,!z);return}}Ym(t,s,p,a,c,h,b,T,N)}function mw(t){for(var s=t;;){var a=s.tag;if((a===0||a===11||a===15)&&s.flags&16384&&(a=s.updateQueue,a!==null&&(a=a.stores,a!==null)))for(var c=0;c<a.length;c++){var h=a[c],p=h.getSnapshot;h=h.value;try{if(!Qt(p(),h))return!1}catch{return!1}}if(a=s.child,s.subtreeFlags&16384&&a!==null)a.return=s,s=a;else{if(s===t)break;for(;s.sibling===null;){if(s.return===null||s.return===t)return!0;s=s.return}s.sibling.return=s.return,s=s.sibling}}return!0}function xi(t,s,a,c){s&=~xf,s&=~ns,t.suspendedLanes|=s,t.pingedLanes&=~s,c&&(t.warmLanes|=s),c=t.expirationTimes;for(var h=s;0<h;){var p=31-kt(h),b=1<<p;c[p]=-1,h&=~b}a!==0&&Qd(t,a,s)}function co(){return(Ce&6)===0?(xa(0),!1):!0}function Cf(){if(ye!==null){if(Ne===0)var t=ye.return;else t=ye,Bn=Yi=null,Iu(t),Gs=null,sa=0,t=ye;for(;t!==null;)mm(t.alternate,t),t=t.return;ye=null}}function er(t,s){var a=t.timeoutHandle;a!==-1&&(t.timeoutHandle=-1,zw(a)),a=t.cancelPendingCommit,a!==null&&(t.cancelPendingCommit=null,a()),Pn=0,Cf(),De=t,ye=a=Un(t.current,null),ve=s,Ne=0,Wt=null,bi=!1,Js=$r(t,s),wf=!1,Zs=en=xf=ns=vi=Qe=0,Ut=Sa=null,_f=!1,(s&8)!==0&&(s|=s&32);var c=t.entangledLanes;if(c!==0)for(t=t.entanglements,c&=s;0<c;){var h=31-kt(c),p=1<<h;s|=t[h],c&=~p}return Qn=s,Ml(),a}function qm(t,s){pe=null,q.H=ha,s===Vs||s===Hl?(s=ng(),Ne=3):s===Mu?(s=ng(),Ne=4):Ne=s===rf?8:s!==null&&typeof s=="object"&&typeof s.then=="function"?6:1,Wt=s,ye===null&&(Qe=1,Zl(t,on(s,t.current)))}function $m(){var t=Jt.current;return t===null?!0:(ve&4194048)===ve?hn===null:(ve&62914560)===ve||(ve&536870912)!==0?t===hn:!1}function Im(){var t=q.H;return q.H=ha,t===null?ha:t}function Vm(){var t=q.A;return q.A=pw,t}function uo(){Qe=4,bi||(ve&4194048)!==ve&&Jt.current!==null||(Js=!0),(vi&134217727)===0&&(ns&134217727)===0||De===null||xi(De,ve,en,!1)}function Nf(t,s,a){var c=Ce;Ce|=2;var h=Im(),p=Vm();(De!==t||ve!==s)&&(oo=null,er(t,s)),s=!1;var b=Qe;e:do try{if(Ne!==0&&ye!==null){var T=ye,N=Wt;switch(Ne){case 8:Cf(),b=6;break e;case 3:case 2:case 9:case 6:Jt.current===null&&(s=!0);var z=Ne;if(Ne=0,Wt=null,tr(t,T,N,z),a&&Js){b=0;break e}break;default:z=Ne,Ne=0,Wt=null,tr(t,T,N,z)}}yw(),b=Qe;break}catch(G){qm(t,G)}while(!0);return s&&t.shellSuspendCounter++,Bn=Yi=null,Ce=c,q.H=h,q.A=p,ye===null&&(De=null,ve=0,Ml()),b}function yw(){for(;ye!==null;)Gm(ye)}function bw(t,s){var a=Ce;Ce|=2;var c=Im(),h=Vm();De!==t||ve!==s?(oo=null,lo=it()+500,er(t,s)):Js=$r(t,s);e:do try{if(Ne!==0&&ye!==null){s=ye;var p=Wt;t:switch(Ne){case 1:Ne=0,Wt=null,tr(t,s,p,1);break;case 2:case 9:if(eg(p)){Ne=0,Wt=null,Km(s);break}s=function(){Ne!==2&&Ne!==9||De!==t||(Ne=7),kn(t)},p.then(s,s);break e;case 3:Ne=7;break e;case 4:Ne=5;break e;case 7:eg(p)?(Ne=0,Wt=null,Km(s)):(Ne=0,Wt=null,tr(t,s,p,7));break;case 5:var b=null;switch(ye.tag){case 26:b=ye.memoizedState;case 5:case 27:var T=ye;if(b?My(b):T.stateNode.complete){Ne=0,Wt=null;var N=T.sibling;if(N!==null)ye=N;else{var z=T.return;z!==null?(ye=z,fo(z)):ye=null}break t}}Ne=0,Wt=null,tr(t,s,p,5);break;case 6:Ne=0,Wt=null,tr(t,s,p,6);break;case 8:Cf(),Qe=6;break e;default:throw Error(r(462))}}vw();break}catch(G){qm(t,G)}while(!0);return Bn=Yi=null,q.H=c,q.A=h,Ce=a,ye!==null?0:(De=null,ve=0,Ml(),Qe)}function vw(){for(;ye!==null&&!Ss();)Gm(ye)}function Gm(t){var s=pm(t.alternate,t,Qn);t.memoizedProps=t.pendingProps,s===null?fo(t):ye=s}function Km(t){var s=t,a=s.alternate;switch(s.tag){case 15:case 0:s=om(a,s,s.pendingProps,s.type,void 0,ve);break;case 11:s=om(a,s,s.pendingProps,s.type.render,s.ref,ve);break;case 5:Iu(s);default:mm(a,s),s=ye=Vp(s,Qn),s=pm(a,s,Qn)}t.memoizedProps=t.pendingProps,s===null?fo(t):ye=s}function tr(t,s,a,c){Bn=Yi=null,Iu(s),Gs=null,sa=0;var h=s.return;try{if(lw(t,h,s,a,ve)){Qe=1,Zl(t,on(a,t.current)),ye=null;return}}catch(p){if(h!==null)throw ye=h,p;Qe=1,Zl(t,on(a,t.current)),ye=null;return}s.flags&32768?(we||c===1?t=!0:Js||(ve&536870912)!==0?t=!1:(bi=t=!0,(c===2||c===9||c===3||c===6)&&(c=Jt.current,c!==null&&c.tag===13&&(c.flags|=16384))),Xm(s,t)):fo(s)}function fo(t){var s=t;do{if((s.flags&32768)!==0){Xm(s,bi);return}t=s.return;var a=uw(s.alternate,s,Qn);if(a!==null){ye=a;return}if(s=s.sibling,s!==null){ye=s;return}ye=s=t}while(s!==null);Qe===0&&(Qe=5)}function Xm(t,s){do{var a=fw(t.alternate,t);if(a!==null){a.flags&=32767,ye=a;return}if(a=t.return,a!==null&&(a.flags|=32768,a.subtreeFlags=0,a.deletions=null),!s&&(t=t.sibling,t!==null)){ye=t;return}ye=t=a}while(t!==null);Qe=6,ye=null}function Ym(t,s,a,c,h,p,b,T,N){t.cancelPendingCommit=null;do ho();while(ft!==0);if((Ce&6)!==0)throw Error(r(327));if(s!==null){if(s===t.current)throw Error(r(177));if(p=s.lanes|s.childLanes,p|=gu,ZS(t,a,p,b,T,N),t===De&&(ye=De=null,ve=0),Ws=s,wi=t,Pn=a,Ef=p,Tf=h,zm=c,(s.subtreeFlags&10256)!==0||(s.flags&10256)!==0?(t.callbackNode=null,t.callbackPriority=0,_w(ws,function(){return Zm(),null})):(t.callbackNode=null,t.callbackPriority=0),c=(s.flags&13878)!==0,(s.subtreeFlags&13878)!==0||c){c=q.T,q.T=null,h=Z.p,Z.p=2,b=Ce,Ce|=4;try{hw(t,s,a)}finally{Ce=b,Z.p=h,q.T=c}}ft=1,Fm(),Qm(),Pm()}}function Fm(){if(ft===1){ft=0;var t=wi,s=Ws,a=(s.flags&13878)!==0;if((s.subtreeFlags&13878)!==0||a){a=q.T,q.T=null;var c=Z.p;Z.p=2;var h=Ce;Ce|=4;try{Nm(s,t);var p=qf,b=Rp(t.containerInfo),T=p.focusedElem,N=p.selectionRange;if(b!==T&&T&&T.ownerDocument&&Lp(T.ownerDocument.documentElement,T)){if(N!==null&&uu(T)){var z=N.start,G=N.end;if(G===void 0&&(G=z),"selectionStart"in T)T.selectionStart=z,T.selectionEnd=Math.min(G,T.value.length);else{var F=T.ownerDocument||document,U=F&&F.defaultView||window;if(U.getSelection){var B=U.getSelection(),ne=T.textContent.length,oe=Math.min(N.start,ne),Le=N.end===void 0?oe:Math.min(N.end,ne);!B.extend&&oe>Le&&(b=Le,Le=oe,oe=b);var L=jp(T,oe),k=jp(T,Le);if(L&&k&&(B.rangeCount!==1||B.anchorNode!==L.node||B.anchorOffset!==L.offset||B.focusNode!==k.node||B.focusOffset!==k.offset)){var D=F.createRange();D.setStart(L.node,L.offset),B.removeAllRanges(),oe>Le?(B.addRange(D),B.extend(k.node,k.offset)):(D.setEnd(k.node,k.offset),B.addRange(D))}}}}for(F=[],B=T;B=B.parentNode;)B.nodeType===1&&F.push({element:B,left:B.scrollLeft,top:B.scrollTop});for(typeof T.focus=="function"&&T.focus(),T=0;T<F.length;T++){var Y=F[T];Y.element.scrollLeft=Y.left,Y.element.scrollTop=Y.top}}To=!!Bf,qf=Bf=null}finally{Ce=h,Z.p=c,q.T=a}}t.current=s,ft=2}}function Qm(){if(ft===2){ft=0;var t=wi,s=Ws,a=(s.flags&8772)!==0;if((s.subtreeFlags&8772)!==0||a){a=q.T,q.T=null;var c=Z.p;Z.p=2;var h=Ce;Ce|=4;try{_m(t,s.alternate,s)}finally{Ce=h,Z.p=c,q.T=a}}ft=3}}function Pm(){if(ft===4||ft===3){ft=0,Uc();var t=wi,s=Ws,a=Pn,c=zm;(s.subtreeFlags&10256)!==0||(s.flags&10256)!==0?ft=5:(ft=0,Ws=wi=null,Jm(t,t.pendingLanes));var h=t.pendingLanes;if(h===0&&(Si=null),Kc(a),s=s.stateNode,ut&&typeof ut.onCommitFiberRoot=="function")try{ut.onCommitFiberRoot(Hi,s,void 0,(s.current.flags&128)===128)}catch{}if(c!==null){s=q.T,h=Z.p,Z.p=2,q.T=null;try{for(var p=t.onRecoverableError,b=0;b<c.length;b++){var T=c[b];p(T.value,{componentStack:T.stack})}}finally{q.T=s,Z.p=h}}(Pn&3)!==0&&ho(),kn(t),h=t.pendingLanes,(a&261930)!==0&&(h&42)!==0?t===Af?wa++:(wa=0,Af=t):wa=0,xa(0)}}function Jm(t,s){(t.pooledCacheLanes&=s)===0&&(s=t.pooledCache,s!=null&&(t.pooledCache=null,na(s)))}function ho(){return Fm(),Qm(),Pm(),Zm()}function Zm(){if(ft!==5)return!1;var t=wi,s=Ef;Ef=0;var a=Kc(Pn),c=q.T,h=Z.p;try{Z.p=32>a?32:a,q.T=null,a=Tf,Tf=null;var p=wi,b=Pn;if(ft=0,Ws=wi=null,Pn=0,(Ce&6)!==0)throw Error(r(331));var T=Ce;if(Ce|=4,Lm(p.current),Mm(p,p.current,b,a),Ce=T,xa(0,!1),ut&&typeof ut.onPostCommitFiberRoot=="function")try{ut.onPostCommitFiberRoot(Hi,p)}catch{}return!0}finally{Z.p=h,q.T=c,Jm(t,s)}}function Wm(t,s,a){s=on(a,s),s=sf(t.stateNode,s,2),t=pi(t,s,2),t!==null&&(Ir(t,2),kn(t))}function ke(t,s,a){if(t.tag===3)Wm(t,t,a);else for(;s!==null;){if(s.tag===3){Wm(s,t,a);break}else if(s.tag===1){var c=s.stateNode;if(typeof s.type.getDerivedStateFromError=="function"||typeof c.componentDidCatch=="function"&&(Si===null||!Si.has(c))){t=on(a,t),a=em(2),c=pi(s,a,2),c!==null&&(tm(a,c,s,t),Ir(c,2),kn(c));break}}s=s.return}}function kf(t,s,a){var c=t.pingCache;if(c===null){c=t.pingCache=new gw;var h=new Set;c.set(s,h)}else h=c.get(s),h===void 0&&(h=new Set,c.set(s,h));h.has(a)||(wf=!0,h.add(a),t=Sw.bind(null,t,s,a),s.then(t,t))}function Sw(t,s,a){var c=t.pingCache;c!==null&&c.delete(s),t.pingedLanes|=t.suspendedLanes&a,t.warmLanes&=~a,De===t&&(ve&a)===a&&(Qe===4||Qe===3&&(ve&62914560)===ve&&300>it()-ao?(Ce&2)===0&&er(t,0):xf|=a,Zs===ve&&(Zs=0)),kn(t)}function ey(t,s){s===0&&(s=Fd()),t=Gi(t,s),t!==null&&(Ir(t,s),kn(t))}function ww(t){var s=t.memoizedState,a=0;s!==null&&(a=s.retryLane),ey(t,a)}function xw(t,s){var a=0;switch(t.tag){case 31:case 13:var c=t.stateNode,h=t.memoizedState;h!==null&&(a=h.retryLane);break;case 19:c=t.stateNode;break;case 22:c=t.stateNode._retryCache;break;default:throw Error(r(314))}c!==null&&c.delete(s),ey(t,a)}function _w(t,s){return bs(t,s)}var po=null,nr=null,Mf=!1,go=!1,Of=!1,_i=0;function kn(t){t!==nr&&t.next===null&&(nr===null?po=nr=t:nr=nr.next=t),go=!0,Mf||(Mf=!0,Tw())}function xa(t,s){if(!Of&&go){Of=!0;do for(var a=!1,c=po;c!==null;){if(t!==0){var h=c.pendingLanes;if(h===0)var p=0;else{var b=c.suspendedLanes,T=c.pingedLanes;p=(1<<31-kt(42|t)+1)-1,p&=h&~(b&~T),p=p&201326741?p&201326741|1:p?p|2:0}p!==0&&(a=!0,sy(c,p))}else p=ve,p=bl(c,c===De?p:0,c.cancelPendingCommit!==null||c.timeoutHandle!==-1),(p&3)===0||$r(c,p)||(a=!0,sy(c,p));c=c.next}while(a);Of=!1}}function Ew(){ty()}function ty(){go=Mf=!1;var t=0;_i!==0&&Dw()&&(t=_i);for(var s=it(),a=null,c=po;c!==null;){var h=c.next,p=ny(c,s);p===0?(c.next=null,a===null?po=h:a.next=h,h===null&&(nr=a)):(a=c,(t!==0||(p&3)!==0)&&(go=!0)),c=h}ft!==0&&ft!==5||xa(t),_i!==0&&(_i=0)}function ny(t,s){for(var a=t.suspendedLanes,c=t.pingedLanes,h=t.expirationTimes,p=t.pendingLanes&-62914561;0<p;){var b=31-kt(p),T=1<<b,N=h[b];N===-1?((T&a)===0||(T&c)!==0)&&(h[b]=JS(T,s)):N<=s&&(t.expiredLanes|=T),p&=~T}if(s=De,a=ve,a=bl(t,t===s?a:0,t.cancelPendingCommit!==null||t.timeoutHandle!==-1),c=t.callbackNode,a===0||t===s&&(Ne===2||Ne===9)||t.cancelPendingCommit!==null)return c!==null&&c!==null&&vs(c),t.callbackNode=null,t.callbackPriority=0;if((a&3)===0||$r(t,a)){if(s=a&-a,s===t.callbackPriority)return s;switch(c!==null&&vs(c),Kc(a)){case 2:case 8:a=gl;break;case 32:a=ws;break;case 268435456:a=xs;break;default:a=ws}return c=iy.bind(null,t),a=bs(a,c),t.callbackPriority=s,t.callbackNode=a,s}return c!==null&&c!==null&&vs(c),t.callbackPriority=2,t.callbackNode=null,2}function iy(t,s){if(ft!==0&&ft!==5)return t.callbackNode=null,t.callbackPriority=0,null;var a=t.callbackNode;if(ho()&&t.callbackNode!==a)return null;var c=ve;return c=bl(t,t===De?c:0,t.cancelPendingCommit!==null||t.timeoutHandle!==-1),c===0?null:(Hm(t,c,s),ny(t,it()),t.callbackNode!=null&&t.callbackNode===a?iy.bind(null,t):null)}function sy(t,s){if(ho())return null;Hm(t,s,!0)}function Tw(){Uw(function(){(Ce&6)!==0?bs(pl,Ew):ty()})}function jf(){if(_i===0){var t=$s;t===0&&(t=le,le<<=1,(le&261888)===0&&(le=256)),_i=t}return _i}function ry(t){return t==null||typeof t=="symbol"||typeof t=="boolean"?null:typeof t=="function"?t:xl(""+t)}function ay(t,s){var a=s.ownerDocument.createElement("input");return a.name=s.name,a.value=s.value,t.id&&a.setAttribute("form",t.id),s.parentNode.insertBefore(a,s),t=new FormData(t),a.parentNode.removeChild(a),t}function Aw(t,s,a,c,h){if(s==="submit"&&a&&a.stateNode===h){var p=ry((h[jt]||null).action),b=c.submitter;b&&(s=(s=b[jt]||null)?ry(s.formAction):b.getAttribute("formAction"),s!==null&&(p=s,b=null));var T=new Al("action","action",null,c,h);t.push({event:T,listeners:[{instance:null,listener:function(){if(c.defaultPrevented){if(_i!==0){var N=b?ay(h,b):new FormData(h);Ju(a,{pending:!0,data:N,method:h.method,action:p},null,N)}}else typeof p=="function"&&(T.preventDefault(),N=b?ay(h,b):new FormData(h),Ju(a,{pending:!0,data:N,method:h.method,action:p},p,N))},currentTarget:h}]})}}for(var Lf=0;Lf<pu.length;Lf++){var Rf=pu[Lf],Cw=Rf.toLowerCase(),Nw=Rf[0].toUpperCase()+Rf.slice(1);vn(Cw,"on"+Nw)}vn(Up,"onAnimationEnd"),vn(Hp,"onAnimationIteration"),vn(Bp,"onAnimationStart"),vn("dblclick","onDoubleClick"),vn("focusin","onFocus"),vn("focusout","onBlur"),vn(G1,"onTransitionRun"),vn(K1,"onTransitionStart"),vn(X1,"onTransitionCancel"),vn(qp,"onTransitionEnd"),Cs("onMouseEnter",["mouseout","mouseover"]),Cs("onMouseLeave",["mouseout","mouseover"]),Cs("onPointerEnter",["pointerout","pointerover"]),Cs("onPointerLeave",["pointerout","pointerover"]),qi("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),qi("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),qi("onBeforeInput",["compositionend","keypress","textInput","paste"]),qi("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),qi("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),qi("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var _a="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),kw=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(_a));function ly(t,s){s=(s&4)!==0;for(var a=0;a<t.length;a++){var c=t[a],h=c.event;c=c.listeners;e:{var p=void 0;if(s)for(var b=c.length-1;0<=b;b--){var T=c[b],N=T.instance,z=T.currentTarget;if(T=T.listener,N!==p&&h.isPropagationStopped())break e;p=T,h.currentTarget=z;try{p(h)}catch(G){kl(G)}h.currentTarget=null,p=N}else for(b=0;b<c.length;b++){if(T=c[b],N=T.instance,z=T.currentTarget,T=T.listener,N!==p&&h.isPropagationStopped())break e;p=T,h.currentTarget=z;try{p(h)}catch(G){kl(G)}h.currentTarget=null,p=N}}}}function be(t,s){var a=s[Xc];a===void 0&&(a=s[Xc]=new Set);var c=t+"__bubble";a.has(c)||(oy(s,t,2,!1),a.add(c))}function Df(t,s,a){var c=0;s&&(c|=4),oy(a,t,c,s)}var mo="_reactListening"+Math.random().toString(36).slice(2);function zf(t){if(!t[mo]){t[mo]=!0,tp.forEach(function(a){a!=="selectionchange"&&(kw.has(a)||Df(a,!1,t),Df(a,!0,t))});var s=t.nodeType===9?t:t.ownerDocument;s===null||s[mo]||(s[mo]=!0,Df("selectionchange",!1,s))}}function oy(t,s,a,c){switch(Uy(s)){case 2:var h=ix;break;case 8:h=sx;break;default:h=Jf}a=h.bind(null,s,a,t),h=void 0,!tu||s!=="touchstart"&&s!=="touchmove"&&s!=="wheel"||(h=!0),c?h!==void 0?t.addEventListener(s,a,{capture:!0,passive:h}):t.addEventListener(s,a,!0):h!==void 0?t.addEventListener(s,a,{passive:h}):t.addEventListener(s,a,!1)}function Uf(t,s,a,c,h){var p=c;if((s&1)===0&&(s&2)===0&&c!==null)e:for(;;){if(c===null)return;var b=c.tag;if(b===3||b===4){var T=c.stateNode.containerInfo;if(T===h)break;if(b===4)for(b=c.return;b!==null;){var N=b.tag;if((N===3||N===4)&&b.stateNode.containerInfo===h)return;b=b.return}for(;T!==null;){if(b=Es(T),b===null)return;if(N=b.tag,N===5||N===6||N===26||N===27){c=p=b;continue e}T=T.parentNode}}c=c.return}dp(function(){var z=p,G=Wc(a),F=[];e:{var U=$p.get(t);if(U!==void 0){var B=Al,ne=t;switch(t){case"keypress":if(El(a)===0)break e;case"keydown":case"keyup":B=x1;break;case"focusin":ne="focus",B=ru;break;case"focusout":ne="blur",B=ru;break;case"beforeblur":case"afterblur":B=ru;break;case"click":if(a.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":B=mp;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":B=u1;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":B=T1;break;case Up:case Hp:case Bp:B=d1;break;case qp:B=C1;break;case"scroll":case"scrollend":B=o1;break;case"wheel":B=k1;break;case"copy":case"cut":case"paste":B=g1;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":B=bp;break;case"toggle":case"beforetoggle":B=O1}var oe=(s&4)!==0,Le=!oe&&(t==="scroll"||t==="scrollend"),L=oe?U!==null?U+"Capture":null:U;oe=[];for(var k=z,D;k!==null;){var Y=k;if(D=Y.stateNode,Y=Y.tag,Y!==5&&Y!==26&&Y!==27||D===null||L===null||(Y=Kr(k,L),Y!=null&&oe.push(Ea(k,Y,D))),Le)break;k=k.return}0<oe.length&&(U=new B(U,ne,null,a,G),F.push({event:U,listeners:oe}))}}if((s&7)===0){e:{if(U=t==="mouseover"||t==="pointerover",B=t==="mouseout"||t==="pointerout",U&&a!==Zc&&(ne=a.relatedTarget||a.fromElement)&&(Es(ne)||ne[_s]))break e;if((B||U)&&(U=G.window===G?G:(U=G.ownerDocument)?U.defaultView||U.parentWindow:window,B?(ne=a.relatedTarget||a.toElement,B=z,ne=ne?Es(ne):null,ne!==null&&(Le=o(ne),oe=ne.tag,ne!==Le||oe!==5&&oe!==27&&oe!==6)&&(ne=null)):(B=null,ne=z),B!==ne)){if(oe=mp,Y="onMouseLeave",L="onMouseEnter",k="mouse",(t==="pointerout"||t==="pointerover")&&(oe=bp,Y="onPointerLeave",L="onPointerEnter",k="pointer"),Le=B==null?U:Gr(B),D=ne==null?U:Gr(ne),U=new oe(Y,k+"leave",B,a,G),U.target=Le,U.relatedTarget=D,Y=null,Es(G)===z&&(oe=new oe(L,k+"enter",ne,a,G),oe.target=D,oe.relatedTarget=Le,Y=oe),Le=Y,B&&ne)t:{for(oe=Mw,L=B,k=ne,D=0,Y=L;Y;Y=oe(Y))D++;Y=0;for(var ae=k;ae;ae=oe(ae))Y++;for(;0<D-Y;)L=oe(L),D--;for(;0<Y-D;)k=oe(k),Y--;for(;D--;){if(L===k||k!==null&&L===k.alternate){oe=L;break t}L=oe(L),k=oe(k)}oe=null}else oe=null;B!==null&&cy(F,U,B,oe,!1),ne!==null&&Le!==null&&cy(F,Le,ne,oe,!0)}}e:{if(U=z?Gr(z):window,B=U.nodeName&&U.nodeName.toLowerCase(),B==="select"||B==="input"&&U.type==="file")var Te=Ap;else if(Ep(U))if(Cp)Te=$1;else{Te=B1;var ie=H1}else B=U.nodeName,!B||B.toLowerCase()!=="input"||U.type!=="checkbox"&&U.type!=="radio"?z&&Jc(z.elementType)&&(Te=Ap):Te=q1;if(Te&&(Te=Te(t,z))){Tp(F,Te,a,G);break e}ie&&ie(t,U,z),t==="focusout"&&z&&U.type==="number"&&z.memoizedProps.value!=null&&Pc(U,"number",U.value)}switch(ie=z?Gr(z):window,t){case"focusin":(Ep(ie)||ie.contentEditable==="true")&&(Ls=ie,fu=z,Wr=null);break;case"focusout":Wr=fu=Ls=null;break;case"mousedown":hu=!0;break;case"contextmenu":case"mouseup":case"dragend":hu=!1,Dp(F,a,G);break;case"selectionchange":if(V1)break;case"keydown":case"keyup":Dp(F,a,G)}var ge;if(lu)e:{switch(t){case"compositionstart":var Se="onCompositionStart";break e;case"compositionend":Se="onCompositionEnd";break e;case"compositionupdate":Se="onCompositionUpdate";break e}Se=void 0}else js?xp(t,a)&&(Se="onCompositionEnd"):t==="keydown"&&a.keyCode===229&&(Se="onCompositionStart");Se&&(vp&&a.locale!=="ko"&&(js||Se!=="onCompositionStart"?Se==="onCompositionEnd"&&js&&(ge=pp()):(li=G,nu="value"in li?li.value:li.textContent,js=!0)),ie=yo(z,Se),0<ie.length&&(Se=new yp(Se,t,null,a,G),F.push({event:Se,listeners:ie}),ge?Se.data=ge:(ge=_p(a),ge!==null&&(Se.data=ge)))),(ge=L1?R1(t,a):D1(t,a))&&(Se=yo(z,"onBeforeInput"),0<Se.length&&(ie=new yp("onBeforeInput","beforeinput",null,a,G),F.push({event:ie,listeners:Se}),ie.data=ge)),Aw(F,t,z,a,G)}ly(F,s)})}function Ea(t,s,a){return{instance:t,listener:s,currentTarget:a}}function yo(t,s){for(var a=s+"Capture",c=[];t!==null;){var h=t,p=h.stateNode;if(h=h.tag,h!==5&&h!==26&&h!==27||p===null||(h=Kr(t,a),h!=null&&c.unshift(Ea(t,h,p)),h=Kr(t,s),h!=null&&c.push(Ea(t,h,p))),t.tag===3)return c;t=t.return}return[]}function Mw(t){if(t===null)return null;do t=t.return;while(t&&t.tag!==5&&t.tag!==27);return t||null}function cy(t,s,a,c,h){for(var p=s._reactName,b=[];a!==null&&a!==c;){var T=a,N=T.alternate,z=T.stateNode;if(T=T.tag,N!==null&&N===c)break;T!==5&&T!==26&&T!==27||z===null||(N=z,h?(z=Kr(a,p),z!=null&&b.unshift(Ea(a,z,N))):h||(z=Kr(a,p),z!=null&&b.push(Ea(a,z,N)))),a=a.return}b.length!==0&&t.push({event:s,listeners:b})}var Ow=/\r\n?/g,jw=/\u0000|\uFFFD/g;function uy(t){return(typeof t=="string"?t:""+t).replace(Ow,`
50
+ `).replace(jw,"")}function fy(t,s){return s=uy(s),uy(t)===s}function je(t,s,a,c,h,p){switch(a){case"children":typeof c=="string"?s==="body"||s==="textarea"&&c===""||ks(t,c):(typeof c=="number"||typeof c=="bigint")&&s!=="body"&&ks(t,""+c);break;case"className":Sl(t,"class",c);break;case"tabIndex":Sl(t,"tabindex",c);break;case"dir":case"role":case"viewBox":case"width":case"height":Sl(t,a,c);break;case"style":fp(t,c,p);break;case"data":if(s!=="object"){Sl(t,"data",c);break}case"src":case"href":if(c===""&&(s!=="a"||a!=="href")){t.removeAttribute(a);break}if(c==null||typeof c=="function"||typeof c=="symbol"||typeof c=="boolean"){t.removeAttribute(a);break}c=xl(""+c),t.setAttribute(a,c);break;case"action":case"formAction":if(typeof c=="function"){t.setAttribute(a,"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')");break}else typeof p=="function"&&(a==="formAction"?(s!=="input"&&je(t,s,"name",h.name,h,null),je(t,s,"formEncType",h.formEncType,h,null),je(t,s,"formMethod",h.formMethod,h,null),je(t,s,"formTarget",h.formTarget,h,null)):(je(t,s,"encType",h.encType,h,null),je(t,s,"method",h.method,h,null),je(t,s,"target",h.target,h,null)));if(c==null||typeof c=="symbol"||typeof c=="boolean"){t.removeAttribute(a);break}c=xl(""+c),t.setAttribute(a,c);break;case"onClick":c!=null&&(t.onclick=Dn);break;case"onScroll":c!=null&&be("scroll",t);break;case"onScrollEnd":c!=null&&be("scrollend",t);break;case"dangerouslySetInnerHTML":if(c!=null){if(typeof c!="object"||!("__html"in c))throw Error(r(61));if(a=c.__html,a!=null){if(h.children!=null)throw Error(r(60));t.innerHTML=a}}break;case"multiple":t.multiple=c&&typeof c!="function"&&typeof c!="symbol";break;case"muted":t.muted=c&&typeof c!="function"&&typeof c!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(c==null||typeof c=="function"||typeof c=="boolean"||typeof c=="symbol"){t.removeAttribute("xlink:href");break}a=xl(""+c),t.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",a);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":c!=null&&typeof c!="function"&&typeof c!="symbol"?t.setAttribute(a,""+c):t.removeAttribute(a);break;case"inert":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":c&&typeof c!="function"&&typeof c!="symbol"?t.setAttribute(a,""):t.removeAttribute(a);break;case"capture":case"download":c===!0?t.setAttribute(a,""):c!==!1&&c!=null&&typeof c!="function"&&typeof c!="symbol"?t.setAttribute(a,c):t.removeAttribute(a);break;case"cols":case"rows":case"size":case"span":c!=null&&typeof c!="function"&&typeof c!="symbol"&&!isNaN(c)&&1<=c?t.setAttribute(a,c):t.removeAttribute(a);break;case"rowSpan":case"start":c==null||typeof c=="function"||typeof c=="symbol"||isNaN(c)?t.removeAttribute(a):t.setAttribute(a,c);break;case"popover":be("beforetoggle",t),be("toggle",t),vl(t,"popover",c);break;case"xlinkActuate":Rn(t,"http://www.w3.org/1999/xlink","xlink:actuate",c);break;case"xlinkArcrole":Rn(t,"http://www.w3.org/1999/xlink","xlink:arcrole",c);break;case"xlinkRole":Rn(t,"http://www.w3.org/1999/xlink","xlink:role",c);break;case"xlinkShow":Rn(t,"http://www.w3.org/1999/xlink","xlink:show",c);break;case"xlinkTitle":Rn(t,"http://www.w3.org/1999/xlink","xlink:title",c);break;case"xlinkType":Rn(t,"http://www.w3.org/1999/xlink","xlink:type",c);break;case"xmlBase":Rn(t,"http://www.w3.org/XML/1998/namespace","xml:base",c);break;case"xmlLang":Rn(t,"http://www.w3.org/XML/1998/namespace","xml:lang",c);break;case"xmlSpace":Rn(t,"http://www.w3.org/XML/1998/namespace","xml:space",c);break;case"is":vl(t,"is",c);break;case"innerText":case"textContent":break;default:(!(2<a.length)||a[0]!=="o"&&a[0]!=="O"||a[1]!=="n"&&a[1]!=="N")&&(a=a1.get(a)||a,vl(t,a,c))}}function Hf(t,s,a,c,h,p){switch(a){case"style":fp(t,c,p);break;case"dangerouslySetInnerHTML":if(c!=null){if(typeof c!="object"||!("__html"in c))throw Error(r(61));if(a=c.__html,a!=null){if(h.children!=null)throw Error(r(60));t.innerHTML=a}}break;case"children":typeof c=="string"?ks(t,c):(typeof c=="number"||typeof c=="bigint")&&ks(t,""+c);break;case"onScroll":c!=null&&be("scroll",t);break;case"onScrollEnd":c!=null&&be("scrollend",t);break;case"onClick":c!=null&&(t.onclick=Dn);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(!np.hasOwnProperty(a))e:{if(a[0]==="o"&&a[1]==="n"&&(h=a.endsWith("Capture"),s=a.slice(2,h?a.length-7:void 0),p=t[jt]||null,p=p!=null?p[a]:null,typeof p=="function"&&t.removeEventListener(s,p,h),typeof c=="function")){typeof p!="function"&&p!==null&&(a in t?t[a]=null:t.hasAttribute(a)&&t.removeAttribute(a)),t.addEventListener(s,c,h);break e}a in t?t[a]=c:c===!0?t.setAttribute(a,""):vl(t,a,c)}}}function wt(t,s,a){switch(s){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":be("error",t),be("load",t);var c=!1,h=!1,p;for(p in a)if(a.hasOwnProperty(p)){var b=a[p];if(b!=null)switch(p){case"src":c=!0;break;case"srcSet":h=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(r(137,s));default:je(t,s,p,b,a,null)}}h&&je(t,s,"srcSet",a.srcSet,a,null),c&&je(t,s,"src",a.src,a,null);return;case"input":be("invalid",t);var T=p=b=h=null,N=null,z=null;for(c in a)if(a.hasOwnProperty(c)){var G=a[c];if(G!=null)switch(c){case"name":h=G;break;case"type":b=G;break;case"checked":N=G;break;case"defaultChecked":z=G;break;case"value":p=G;break;case"defaultValue":T=G;break;case"children":case"dangerouslySetInnerHTML":if(G!=null)throw Error(r(137,s));break;default:je(t,s,c,G,a,null)}}lp(t,p,T,N,z,b,h,!1);return;case"select":be("invalid",t),c=b=p=null;for(h in a)if(a.hasOwnProperty(h)&&(T=a[h],T!=null))switch(h){case"value":p=T;break;case"defaultValue":b=T;break;case"multiple":c=T;default:je(t,s,h,T,a,null)}s=p,a=b,t.multiple=!!c,s!=null?Ns(t,!!c,s,!1):a!=null&&Ns(t,!!c,a,!0);return;case"textarea":be("invalid",t),p=h=c=null;for(b in a)if(a.hasOwnProperty(b)&&(T=a[b],T!=null))switch(b){case"value":c=T;break;case"defaultValue":h=T;break;case"children":p=T;break;case"dangerouslySetInnerHTML":if(T!=null)throw Error(r(91));break;default:je(t,s,b,T,a,null)}cp(t,c,h,p);return;case"option":for(N in a)if(a.hasOwnProperty(N)&&(c=a[N],c!=null))switch(N){case"selected":t.selected=c&&typeof c!="function"&&typeof c!="symbol";break;default:je(t,s,N,c,a,null)}return;case"dialog":be("beforetoggle",t),be("toggle",t),be("cancel",t),be("close",t);break;case"iframe":case"object":be("load",t);break;case"video":case"audio":for(c=0;c<_a.length;c++)be(_a[c],t);break;case"image":be("error",t),be("load",t);break;case"details":be("toggle",t);break;case"embed":case"source":case"link":be("error",t),be("load",t);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(z in a)if(a.hasOwnProperty(z)&&(c=a[z],c!=null))switch(z){case"children":case"dangerouslySetInnerHTML":throw Error(r(137,s));default:je(t,s,z,c,a,null)}return;default:if(Jc(s)){for(G in a)a.hasOwnProperty(G)&&(c=a[G],c!==void 0&&Hf(t,s,G,c,a,void 0));return}}for(T in a)a.hasOwnProperty(T)&&(c=a[T],c!=null&&je(t,s,T,c,a,null))}function Lw(t,s,a,c){switch(s){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var h=null,p=null,b=null,T=null,N=null,z=null,G=null;for(B in a){var F=a[B];if(a.hasOwnProperty(B)&&F!=null)switch(B){case"checked":break;case"value":break;case"defaultValue":N=F;default:c.hasOwnProperty(B)||je(t,s,B,null,c,F)}}for(var U in c){var B=c[U];if(F=a[U],c.hasOwnProperty(U)&&(B!=null||F!=null))switch(U){case"type":p=B;break;case"name":h=B;break;case"checked":z=B;break;case"defaultChecked":G=B;break;case"value":b=B;break;case"defaultValue":T=B;break;case"children":case"dangerouslySetInnerHTML":if(B!=null)throw Error(r(137,s));break;default:B!==F&&je(t,s,U,B,c,F)}}Qc(t,b,T,N,z,G,p,h);return;case"select":B=b=T=U=null;for(p in a)if(N=a[p],a.hasOwnProperty(p)&&N!=null)switch(p){case"value":break;case"multiple":B=N;default:c.hasOwnProperty(p)||je(t,s,p,null,c,N)}for(h in c)if(p=c[h],N=a[h],c.hasOwnProperty(h)&&(p!=null||N!=null))switch(h){case"value":U=p;break;case"defaultValue":T=p;break;case"multiple":b=p;default:p!==N&&je(t,s,h,p,c,N)}s=T,a=b,c=B,U!=null?Ns(t,!!a,U,!1):!!c!=!!a&&(s!=null?Ns(t,!!a,s,!0):Ns(t,!!a,a?[]:"",!1));return;case"textarea":B=U=null;for(T in a)if(h=a[T],a.hasOwnProperty(T)&&h!=null&&!c.hasOwnProperty(T))switch(T){case"value":break;case"children":break;default:je(t,s,T,null,c,h)}for(b in c)if(h=c[b],p=a[b],c.hasOwnProperty(b)&&(h!=null||p!=null))switch(b){case"value":U=h;break;case"defaultValue":B=h;break;case"children":break;case"dangerouslySetInnerHTML":if(h!=null)throw Error(r(91));break;default:h!==p&&je(t,s,b,h,c,p)}op(t,U,B);return;case"option":for(var ne in a)if(U=a[ne],a.hasOwnProperty(ne)&&U!=null&&!c.hasOwnProperty(ne))switch(ne){case"selected":t.selected=!1;break;default:je(t,s,ne,null,c,U)}for(N in c)if(U=c[N],B=a[N],c.hasOwnProperty(N)&&U!==B&&(U!=null||B!=null))switch(N){case"selected":t.selected=U&&typeof U!="function"&&typeof U!="symbol";break;default:je(t,s,N,U,c,B)}return;case"img":case"link":case"area":case"base":case"br":case"col":case"embed":case"hr":case"keygen":case"meta":case"param":case"source":case"track":case"wbr":case"menuitem":for(var oe in a)U=a[oe],a.hasOwnProperty(oe)&&U!=null&&!c.hasOwnProperty(oe)&&je(t,s,oe,null,c,U);for(z in c)if(U=c[z],B=a[z],c.hasOwnProperty(z)&&U!==B&&(U!=null||B!=null))switch(z){case"children":case"dangerouslySetInnerHTML":if(U!=null)throw Error(r(137,s));break;default:je(t,s,z,U,c,B)}return;default:if(Jc(s)){for(var Le in a)U=a[Le],a.hasOwnProperty(Le)&&U!==void 0&&!c.hasOwnProperty(Le)&&Hf(t,s,Le,void 0,c,U);for(G in c)U=c[G],B=a[G],!c.hasOwnProperty(G)||U===B||U===void 0&&B===void 0||Hf(t,s,G,U,c,B);return}}for(var L in a)U=a[L],a.hasOwnProperty(L)&&U!=null&&!c.hasOwnProperty(L)&&je(t,s,L,null,c,U);for(F in c)U=c[F],B=a[F],!c.hasOwnProperty(F)||U===B||U==null&&B==null||je(t,s,F,U,c,B)}function hy(t){switch(t){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function Rw(){if(typeof performance.getEntriesByType=="function"){for(var t=0,s=0,a=performance.getEntriesByType("resource"),c=0;c<a.length;c++){var h=a[c],p=h.transferSize,b=h.initiatorType,T=h.duration;if(p&&T&&hy(b)){for(b=0,T=h.responseEnd,c+=1;c<a.length;c++){var N=a[c],z=N.startTime;if(z>T)break;var G=N.transferSize,F=N.initiatorType;G&&hy(F)&&(N=N.responseEnd,b+=G*(N<T?1:(T-z)/(N-z)))}if(--c,s+=8*(p+b)/(h.duration/1e3),t++,10<t)break}}if(0<t)return s/t/1e6}return navigator.connection&&(t=navigator.connection.downlink,typeof t=="number")?t:5}var Bf=null,qf=null;function bo(t){return t.nodeType===9?t:t.ownerDocument}function dy(t){switch(t){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function py(t,s){if(t===0)switch(s){case"svg":return 1;case"math":return 2;default:return 0}return t===1&&s==="foreignObject"?0:t}function $f(t,s){return t==="textarea"||t==="noscript"||typeof s.children=="string"||typeof s.children=="number"||typeof s.children=="bigint"||typeof s.dangerouslySetInnerHTML=="object"&&s.dangerouslySetInnerHTML!==null&&s.dangerouslySetInnerHTML.__html!=null}var If=null;function Dw(){var t=window.event;return t&&t.type==="popstate"?t===If?!1:(If=t,!0):(If=null,!1)}var gy=typeof setTimeout=="function"?setTimeout:void 0,zw=typeof clearTimeout=="function"?clearTimeout:void 0,my=typeof Promise=="function"?Promise:void 0,Uw=typeof queueMicrotask=="function"?queueMicrotask:typeof my<"u"?function(t){return my.resolve(null).then(t).catch(Hw)}:gy;function Hw(t){setTimeout(function(){throw t})}function Ei(t){return t==="head"}function yy(t,s){var a=s,c=0;do{var h=a.nextSibling;if(t.removeChild(a),h&&h.nodeType===8)if(a=h.data,a==="/$"||a==="/&"){if(c===0){t.removeChild(h),ar(s);return}c--}else if(a==="$"||a==="$?"||a==="$~"||a==="$!"||a==="&")c++;else if(a==="html")Ta(t.ownerDocument.documentElement);else if(a==="head"){a=t.ownerDocument.head,Ta(a);for(var p=a.firstChild;p;){var b=p.nextSibling,T=p.nodeName;p[Vr]||T==="SCRIPT"||T==="STYLE"||T==="LINK"&&p.rel.toLowerCase()==="stylesheet"||a.removeChild(p),p=b}}else a==="body"&&Ta(t.ownerDocument.body);a=h}while(a);ar(s)}function by(t,s){var a=t;t=0;do{var c=a.nextSibling;if(a.nodeType===1?s?(a._stashedDisplay=a.style.display,a.style.display="none"):(a.style.display=a._stashedDisplay||"",a.getAttribute("style")===""&&a.removeAttribute("style")):a.nodeType===3&&(s?(a._stashedText=a.nodeValue,a.nodeValue=""):a.nodeValue=a._stashedText||""),c&&c.nodeType===8)if(a=c.data,a==="/$"){if(t===0)break;t--}else a!=="$"&&a!=="$?"&&a!=="$~"&&a!=="$!"||t++;a=c}while(a)}function Vf(t){var s=t.firstChild;for(s&&s.nodeType===10&&(s=s.nextSibling);s;){var a=s;switch(s=s.nextSibling,a.nodeName){case"HTML":case"HEAD":case"BODY":Vf(a),Yc(a);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(a.rel.toLowerCase()==="stylesheet")continue}t.removeChild(a)}}function Bw(t,s,a,c){for(;t.nodeType===1;){var h=a;if(t.nodeName.toLowerCase()!==s.toLowerCase()){if(!c&&(t.nodeName!=="INPUT"||t.type!=="hidden"))break}else if(c){if(!t[Vr])switch(s){case"meta":if(!t.hasAttribute("itemprop"))break;return t;case"link":if(p=t.getAttribute("rel"),p==="stylesheet"&&t.hasAttribute("data-precedence"))break;if(p!==h.rel||t.getAttribute("href")!==(h.href==null||h.href===""?null:h.href)||t.getAttribute("crossorigin")!==(h.crossOrigin==null?null:h.crossOrigin)||t.getAttribute("title")!==(h.title==null?null:h.title))break;return t;case"style":if(t.hasAttribute("data-precedence"))break;return t;case"script":if(p=t.getAttribute("src"),(p!==(h.src==null?null:h.src)||t.getAttribute("type")!==(h.type==null?null:h.type)||t.getAttribute("crossorigin")!==(h.crossOrigin==null?null:h.crossOrigin))&&p&&t.hasAttribute("async")&&!t.hasAttribute("itemprop"))break;return t;default:return t}}else if(s==="input"&&t.type==="hidden"){var p=h.name==null?null:""+h.name;if(h.type==="hidden"&&t.getAttribute("name")===p)return t}else return t;if(t=dn(t.nextSibling),t===null)break}return null}function qw(t,s,a){if(s==="")return null;for(;t.nodeType!==3;)if((t.nodeType!==1||t.nodeName!=="INPUT"||t.type!=="hidden")&&!a||(t=dn(t.nextSibling),t===null))return null;return t}function vy(t,s){for(;t.nodeType!==8;)if((t.nodeType!==1||t.nodeName!=="INPUT"||t.type!=="hidden")&&!s||(t=dn(t.nextSibling),t===null))return null;return t}function Gf(t){return t.data==="$?"||t.data==="$~"}function Kf(t){return t.data==="$!"||t.data==="$?"&&t.ownerDocument.readyState!=="loading"}function $w(t,s){var a=t.ownerDocument;if(t.data==="$~")t._reactRetry=s;else if(t.data!=="$?"||a.readyState!=="loading")s();else{var c=function(){s(),a.removeEventListener("DOMContentLoaded",c)};a.addEventListener("DOMContentLoaded",c),t._reactRetry=c}}function dn(t){for(;t!=null;t=t.nextSibling){var s=t.nodeType;if(s===1||s===3)break;if(s===8){if(s=t.data,s==="$"||s==="$!"||s==="$?"||s==="$~"||s==="&"||s==="F!"||s==="F")break;if(s==="/$"||s==="/&")return null}}return t}var Xf=null;function Sy(t){t=t.nextSibling;for(var s=0;t;){if(t.nodeType===8){var a=t.data;if(a==="/$"||a==="/&"){if(s===0)return dn(t.nextSibling);s--}else a!=="$"&&a!=="$!"&&a!=="$?"&&a!=="$~"&&a!=="&"||s++}t=t.nextSibling}return null}function wy(t){t=t.previousSibling;for(var s=0;t;){if(t.nodeType===8){var a=t.data;if(a==="$"||a==="$!"||a==="$?"||a==="$~"||a==="&"){if(s===0)return t;s--}else a!=="/$"&&a!=="/&"||s++}t=t.previousSibling}return null}function xy(t,s,a){switch(s=bo(a),t){case"html":if(t=s.documentElement,!t)throw Error(r(452));return t;case"head":if(t=s.head,!t)throw Error(r(453));return t;case"body":if(t=s.body,!t)throw Error(r(454));return t;default:throw Error(r(451))}}function Ta(t){for(var s=t.attributes;s.length;)t.removeAttributeNode(s[0]);Yc(t)}var pn=new Map,_y=new Set;function vo(t){return typeof t.getRootNode=="function"?t.getRootNode():t.nodeType===9?t:t.ownerDocument}var Jn=Z.d;Z.d={f:Iw,r:Vw,D:Gw,C:Kw,L:Xw,m:Yw,X:Qw,S:Fw,M:Pw};function Iw(){var t=Jn.f(),s=co();return t||s}function Vw(t){var s=Ts(t);s!==null&&s.tag===5&&s.type==="form"?qg(s):Jn.r(t)}var ir=typeof document>"u"?null:document;function Ey(t,s,a){var c=ir;if(c&&typeof s=="string"&&s){var h=an(s);h='link[rel="'+t+'"][href="'+h+'"]',typeof a=="string"&&(h+='[crossorigin="'+a+'"]'),_y.has(h)||(_y.add(h),t={rel:t,crossOrigin:a,href:s},c.querySelector(h)===null&&(s=c.createElement("link"),wt(s,"link",t),gt(s),c.head.appendChild(s)))}}function Gw(t){Jn.D(t),Ey("dns-prefetch",t,null)}function Kw(t,s){Jn.C(t,s),Ey("preconnect",t,s)}function Xw(t,s,a){Jn.L(t,s,a);var c=ir;if(c&&t&&s){var h='link[rel="preload"][as="'+an(s)+'"]';s==="image"&&a&&a.imageSrcSet?(h+='[imagesrcset="'+an(a.imageSrcSet)+'"]',typeof a.imageSizes=="string"&&(h+='[imagesizes="'+an(a.imageSizes)+'"]')):h+='[href="'+an(t)+'"]';var p=h;switch(s){case"style":p=sr(t);break;case"script":p=rr(t)}pn.has(p)||(t=y({rel:"preload",href:s==="image"&&a&&a.imageSrcSet?void 0:t,as:s},a),pn.set(p,t),c.querySelector(h)!==null||s==="style"&&c.querySelector(Aa(p))||s==="script"&&c.querySelector(Ca(p))||(s=c.createElement("link"),wt(s,"link",t),gt(s),c.head.appendChild(s)))}}function Yw(t,s){Jn.m(t,s);var a=ir;if(a&&t){var c=s&&typeof s.as=="string"?s.as:"script",h='link[rel="modulepreload"][as="'+an(c)+'"][href="'+an(t)+'"]',p=h;switch(c){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":p=rr(t)}if(!pn.has(p)&&(t=y({rel:"modulepreload",href:t},s),pn.set(p,t),a.querySelector(h)===null)){switch(c){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(a.querySelector(Ca(p)))return}c=a.createElement("link"),wt(c,"link",t),gt(c),a.head.appendChild(c)}}}function Fw(t,s,a){Jn.S(t,s,a);var c=ir;if(c&&t){var h=As(c).hoistableStyles,p=sr(t);s=s||"default";var b=h.get(p);if(!b){var T={loading:0,preload:null};if(b=c.querySelector(Aa(p)))T.loading=5;else{t=y({rel:"stylesheet",href:t,"data-precedence":s},a),(a=pn.get(p))&&Yf(t,a);var N=b=c.createElement("link");gt(N),wt(N,"link",t),N._p=new Promise(function(z,G){N.onload=z,N.onerror=G}),N.addEventListener("load",function(){T.loading|=1}),N.addEventListener("error",function(){T.loading|=2}),T.loading|=4,So(b,s,c)}b={type:"stylesheet",instance:b,count:1,state:T},h.set(p,b)}}}function Qw(t,s){Jn.X(t,s);var a=ir;if(a&&t){var c=As(a).hoistableScripts,h=rr(t),p=c.get(h);p||(p=a.querySelector(Ca(h)),p||(t=y({src:t,async:!0},s),(s=pn.get(h))&&Ff(t,s),p=a.createElement("script"),gt(p),wt(p,"link",t),a.head.appendChild(p)),p={type:"script",instance:p,count:1,state:null},c.set(h,p))}}function Pw(t,s){Jn.M(t,s);var a=ir;if(a&&t){var c=As(a).hoistableScripts,h=rr(t),p=c.get(h);p||(p=a.querySelector(Ca(h)),p||(t=y({src:t,async:!0,type:"module"},s),(s=pn.get(h))&&Ff(t,s),p=a.createElement("script"),gt(p),wt(p,"link",t),a.head.appendChild(p)),p={type:"script",instance:p,count:1,state:null},c.set(h,p))}}function Ty(t,s,a,c){var h=(h=se.current)?vo(h):null;if(!h)throw Error(r(446));switch(t){case"meta":case"title":return null;case"style":return typeof a.precedence=="string"&&typeof a.href=="string"?(s=sr(a.href),a=As(h).hoistableStyles,c=a.get(s),c||(c={type:"style",instance:null,count:0,state:null},a.set(s,c)),c):{type:"void",instance:null,count:0,state:null};case"link":if(a.rel==="stylesheet"&&typeof a.href=="string"&&typeof a.precedence=="string"){t=sr(a.href);var p=As(h).hoistableStyles,b=p.get(t);if(b||(h=h.ownerDocument||h,b={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},p.set(t,b),(p=h.querySelector(Aa(t)))&&!p._p&&(b.instance=p,b.state.loading=5),pn.has(t)||(a={rel:"preload",as:"style",href:a.href,crossOrigin:a.crossOrigin,integrity:a.integrity,media:a.media,hrefLang:a.hrefLang,referrerPolicy:a.referrerPolicy},pn.set(t,a),p||Jw(h,t,a,b.state))),s&&c===null)throw Error(r(528,""));return b}if(s&&c!==null)throw Error(r(529,""));return null;case"script":return s=a.async,a=a.src,typeof a=="string"&&s&&typeof s!="function"&&typeof s!="symbol"?(s=rr(a),a=As(h).hoistableScripts,c=a.get(s),c||(c={type:"script",instance:null,count:0,state:null},a.set(s,c)),c):{type:"void",instance:null,count:0,state:null};default:throw Error(r(444,t))}}function sr(t){return'href="'+an(t)+'"'}function Aa(t){return'link[rel="stylesheet"]['+t+"]"}function Ay(t){return y({},t,{"data-precedence":t.precedence,precedence:null})}function Jw(t,s,a,c){t.querySelector('link[rel="preload"][as="style"]['+s+"]")?c.loading=1:(s=t.createElement("link"),c.preload=s,s.addEventListener("load",function(){return c.loading|=1}),s.addEventListener("error",function(){return c.loading|=2}),wt(s,"link",a),gt(s),t.head.appendChild(s))}function rr(t){return'[src="'+an(t)+'"]'}function Ca(t){return"script[async]"+t}function Cy(t,s,a){if(s.count++,s.instance===null)switch(s.type){case"style":var c=t.querySelector('style[data-href~="'+an(a.href)+'"]');if(c)return s.instance=c,gt(c),c;var h=y({},a,{"data-href":a.href,"data-precedence":a.precedence,href:null,precedence:null});return c=(t.ownerDocument||t).createElement("style"),gt(c),wt(c,"style",h),So(c,a.precedence,t),s.instance=c;case"stylesheet":h=sr(a.href);var p=t.querySelector(Aa(h));if(p)return s.state.loading|=4,s.instance=p,gt(p),p;c=Ay(a),(h=pn.get(h))&&Yf(c,h),p=(t.ownerDocument||t).createElement("link"),gt(p);var b=p;return b._p=new Promise(function(T,N){b.onload=T,b.onerror=N}),wt(p,"link",c),s.state.loading|=4,So(p,a.precedence,t),s.instance=p;case"script":return p=rr(a.src),(h=t.querySelector(Ca(p)))?(s.instance=h,gt(h),h):(c=a,(h=pn.get(p))&&(c=y({},a),Ff(c,h)),t=t.ownerDocument||t,h=t.createElement("script"),gt(h),wt(h,"link",c),t.head.appendChild(h),s.instance=h);case"void":return null;default:throw Error(r(443,s.type))}else s.type==="stylesheet"&&(s.state.loading&4)===0&&(c=s.instance,s.state.loading|=4,So(c,a.precedence,t));return s.instance}function So(t,s,a){for(var c=a.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),h=c.length?c[c.length-1]:null,p=h,b=0;b<c.length;b++){var T=c[b];if(T.dataset.precedence===s)p=T;else if(p!==h)break}p?p.parentNode.insertBefore(t,p.nextSibling):(s=a.nodeType===9?a.head:a,s.insertBefore(t,s.firstChild))}function Yf(t,s){t.crossOrigin==null&&(t.crossOrigin=s.crossOrigin),t.referrerPolicy==null&&(t.referrerPolicy=s.referrerPolicy),t.title==null&&(t.title=s.title)}function Ff(t,s){t.crossOrigin==null&&(t.crossOrigin=s.crossOrigin),t.referrerPolicy==null&&(t.referrerPolicy=s.referrerPolicy),t.integrity==null&&(t.integrity=s.integrity)}var wo=null;function Ny(t,s,a){if(wo===null){var c=new Map,h=wo=new Map;h.set(a,c)}else h=wo,c=h.get(a),c||(c=new Map,h.set(a,c));if(c.has(t))return c;for(c.set(t,null),a=a.getElementsByTagName(t),h=0;h<a.length;h++){var p=a[h];if(!(p[Vr]||p[yt]||t==="link"&&p.getAttribute("rel")==="stylesheet")&&p.namespaceURI!=="http://www.w3.org/2000/svg"){var b=p.getAttribute(s)||"";b=t+b;var T=c.get(b);T?T.push(p):c.set(b,[p])}}return c}function ky(t,s,a){t=t.ownerDocument||t,t.head.insertBefore(a,s==="title"?t.querySelector("head > title"):null)}function Zw(t,s,a){if(a===1||s.itemProp!=null)return!1;switch(t){case"meta":case"title":return!0;case"style":if(typeof s.precedence!="string"||typeof s.href!="string"||s.href==="")break;return!0;case"link":if(typeof s.rel!="string"||typeof s.href!="string"||s.href===""||s.onLoad||s.onError)break;switch(s.rel){case"stylesheet":return t=s.disabled,typeof s.precedence=="string"&&t==null;default:return!0}case"script":if(s.async&&typeof s.async!="function"&&typeof s.async!="symbol"&&!s.onLoad&&!s.onError&&s.src&&typeof s.src=="string")return!0}return!1}function My(t){return!(t.type==="stylesheet"&&(t.state.loading&3)===0)}function Ww(t,s,a,c){if(a.type==="stylesheet"&&(typeof c.media!="string"||matchMedia(c.media).matches!==!1)&&(a.state.loading&4)===0){if(a.instance===null){var h=sr(c.href),p=s.querySelector(Aa(h));if(p){s=p._p,s!==null&&typeof s=="object"&&typeof s.then=="function"&&(t.count++,t=xo.bind(t),s.then(t,t)),a.state.loading|=4,a.instance=p,gt(p);return}p=s.ownerDocument||s,c=Ay(c),(h=pn.get(h))&&Yf(c,h),p=p.createElement("link"),gt(p);var b=p;b._p=new Promise(function(T,N){b.onload=T,b.onerror=N}),wt(p,"link",c),a.instance=p}t.stylesheets===null&&(t.stylesheets=new Map),t.stylesheets.set(a,s),(s=a.state.preload)&&(a.state.loading&3)===0&&(t.count++,a=xo.bind(t),s.addEventListener("load",a),s.addEventListener("error",a))}}var Qf=0;function ex(t,s){return t.stylesheets&&t.count===0&&Eo(t,t.stylesheets),0<t.count||0<t.imgCount?function(a){var c=setTimeout(function(){if(t.stylesheets&&Eo(t,t.stylesheets),t.unsuspend){var p=t.unsuspend;t.unsuspend=null,p()}},6e4+s);0<t.imgBytes&&Qf===0&&(Qf=62500*Rw());var h=setTimeout(function(){if(t.waitingForImages=!1,t.count===0&&(t.stylesheets&&Eo(t,t.stylesheets),t.unsuspend)){var p=t.unsuspend;t.unsuspend=null,p()}},(t.imgBytes>Qf?50:800)+s);return t.unsuspend=a,function(){t.unsuspend=null,clearTimeout(c),clearTimeout(h)}}:null}function xo(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Eo(this,this.stylesheets);else if(this.unsuspend){var t=this.unsuspend;this.unsuspend=null,t()}}}var _o=null;function Eo(t,s){t.stylesheets=null,t.unsuspend!==null&&(t.count++,_o=new Map,s.forEach(tx,t),_o=null,xo.call(t))}function tx(t,s){if(!(s.state.loading&4)){var a=_o.get(t);if(a)var c=a.get(null);else{a=new Map,_o.set(t,a);for(var h=t.querySelectorAll("link[data-precedence],style[data-precedence]"),p=0;p<h.length;p++){var b=h[p];(b.nodeName==="LINK"||b.getAttribute("media")!=="not all")&&(a.set(b.dataset.precedence,b),c=b)}c&&a.set(null,c)}h=s.instance,b=h.getAttribute("data-precedence"),p=a.get(b)||c,p===c&&a.set(null,h),a.set(b,h),this.count++,c=xo.bind(this),h.addEventListener("load",c),h.addEventListener("error",c),p?p.parentNode.insertBefore(h,p.nextSibling):(t=t.nodeType===9?t.head:t,t.insertBefore(h,t.firstChild)),s.state.loading|=4}}var Na={$$typeof:H,Provider:null,Consumer:null,_currentValue:re,_currentValue2:re,_threadCount:0};function nx(t,s,a,c,h,p,b,T,N){this.tag=1,this.containerInfo=t,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=Vc(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Vc(0),this.hiddenUpdates=Vc(null),this.identifierPrefix=c,this.onUncaughtError=h,this.onCaughtError=p,this.onRecoverableError=b,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=N,this.incompleteTransitions=new Map}function Oy(t,s,a,c,h,p,b,T,N,z,G,F){return t=new nx(t,s,a,b,N,z,G,F,T),s=1,p===!0&&(s|=24),p=Pt(3,null,null,s),t.current=p,p.stateNode=t,s=Cu(),s.refCount++,t.pooledCache=s,s.refCount++,p.memoizedState={element:c,isDehydrated:a,cache:s},Ou(p),t}function jy(t){return t?(t=zs,t):zs}function Ly(t,s,a,c,h,p){h=jy(h),c.context===null?c.context=h:c.pendingContext=h,c=di(s),c.payload={element:a},p=p===void 0?null:p,p!==null&&(c.callback=p),a=pi(t,c,s),a!==null&&(Ht(a,t,s),aa(a,t,s))}function Ry(t,s){if(t=t.memoizedState,t!==null&&t.dehydrated!==null){var a=t.retryLane;t.retryLane=a!==0&&a<s?a:s}}function Pf(t,s){Ry(t,s),(t=t.alternate)&&Ry(t,s)}function Dy(t){if(t.tag===13||t.tag===31){var s=Gi(t,67108864);s!==null&&Ht(s,t,67108864),Pf(t,67108864)}}function zy(t){if(t.tag===13||t.tag===31){var s=tn();s=Gc(s);var a=Gi(t,s);a!==null&&Ht(a,t,s),Pf(t,s)}}var To=!0;function ix(t,s,a,c){var h=q.T;q.T=null;var p=Z.p;try{Z.p=2,Jf(t,s,a,c)}finally{Z.p=p,q.T=h}}function sx(t,s,a,c){var h=q.T;q.T=null;var p=Z.p;try{Z.p=8,Jf(t,s,a,c)}finally{Z.p=p,q.T=h}}function Jf(t,s,a,c){if(To){var h=Zf(c);if(h===null)Uf(t,s,c,Ao,a),Hy(t,c);else if(ax(h,t,s,a,c))c.stopPropagation();else if(Hy(t,c),s&4&&-1<rx.indexOf(t)){for(;h!==null;){var p=Ts(h);if(p!==null)switch(p.tag){case 3:if(p=p.stateNode,p.current.memoizedState.isDehydrated){var b=Bi(p.pendingLanes);if(b!==0){var T=p;for(T.pendingLanes|=2,T.entangledLanes|=2;b;){var N=1<<31-kt(b);T.entanglements[1]|=N,b&=~N}kn(p),(Ce&6)===0&&(lo=it()+500,xa(0))}}break;case 31:case 13:T=Gi(p,2),T!==null&&Ht(T,p,2),co(),Pf(p,2)}if(p=Zf(c),p===null&&Uf(t,s,c,Ao,a),p===h)break;h=p}h!==null&&c.stopPropagation()}else Uf(t,s,c,null,a)}}function Zf(t){return t=Wc(t),Wf(t)}var Ao=null;function Wf(t){if(Ao=null,t=Es(t),t!==null){var s=o(t);if(s===null)t=null;else{var a=s.tag;if(a===13){if(t=u(s),t!==null)return t;t=null}else if(a===31){if(t=f(s),t!==null)return t;t=null}else if(a===3){if(s.stateNode.current.memoizedState.isDehydrated)return s.tag===3?s.stateNode.containerInfo:null;t=null}else s!==t&&(t=null)}}return Ao=t,null}function Uy(t){switch(t){case"beforetoggle":case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"toggle":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 2;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 8;case"message":switch(Hc()){case pl:return 2;case gl:return 8;case ws:case ml:return 32;case xs:return 268435456;default:return 32}default:return 32}}var eh=!1,Ti=null,Ai=null,Ci=null,ka=new Map,Ma=new Map,Ni=[],rx="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" ");function Hy(t,s){switch(t){case"focusin":case"focusout":Ti=null;break;case"dragenter":case"dragleave":Ai=null;break;case"mouseover":case"mouseout":Ci=null;break;case"pointerover":case"pointerout":ka.delete(s.pointerId);break;case"gotpointercapture":case"lostpointercapture":Ma.delete(s.pointerId)}}function Oa(t,s,a,c,h,p){return t===null||t.nativeEvent!==p?(t={blockedOn:s,domEventName:a,eventSystemFlags:c,nativeEvent:p,targetContainers:[h]},s!==null&&(s=Ts(s),s!==null&&Dy(s)),t):(t.eventSystemFlags|=c,s=t.targetContainers,h!==null&&s.indexOf(h)===-1&&s.push(h),t)}function ax(t,s,a,c,h){switch(s){case"focusin":return Ti=Oa(Ti,t,s,a,c,h),!0;case"dragenter":return Ai=Oa(Ai,t,s,a,c,h),!0;case"mouseover":return Ci=Oa(Ci,t,s,a,c,h),!0;case"pointerover":var p=h.pointerId;return ka.set(p,Oa(ka.get(p)||null,t,s,a,c,h)),!0;case"gotpointercapture":return p=h.pointerId,Ma.set(p,Oa(Ma.get(p)||null,t,s,a,c,h)),!0}return!1}function By(t){var s=Es(t.target);if(s!==null){var a=o(s);if(a!==null){if(s=a.tag,s===13){if(s=u(a),s!==null){t.blockedOn=s,Wd(t.priority,function(){zy(a)});return}}else if(s===31){if(s=f(a),s!==null){t.blockedOn=s,Wd(t.priority,function(){zy(a)});return}}else if(s===3&&a.stateNode.current.memoizedState.isDehydrated){t.blockedOn=a.tag===3?a.stateNode.containerInfo:null;return}}}t.blockedOn=null}function Co(t){if(t.blockedOn!==null)return!1;for(var s=t.targetContainers;0<s.length;){var a=Zf(t.nativeEvent);if(a===null){a=t.nativeEvent;var c=new a.constructor(a.type,a);Zc=c,a.target.dispatchEvent(c),Zc=null}else return s=Ts(a),s!==null&&Dy(s),t.blockedOn=a,!1;s.shift()}return!0}function qy(t,s,a){Co(t)&&a.delete(s)}function lx(){eh=!1,Ti!==null&&Co(Ti)&&(Ti=null),Ai!==null&&Co(Ai)&&(Ai=null),Ci!==null&&Co(Ci)&&(Ci=null),ka.forEach(qy),Ma.forEach(qy)}function No(t,s){t.blockedOn===s&&(t.blockedOn=null,eh||(eh=!0,n.unstable_scheduleCallback(n.unstable_NormalPriority,lx)))}var ko=null;function $y(t){ko!==t&&(ko=t,n.unstable_scheduleCallback(n.unstable_NormalPriority,function(){ko===t&&(ko=null);for(var s=0;s<t.length;s+=3){var a=t[s],c=t[s+1],h=t[s+2];if(typeof c!="function"){if(Wf(c||a)===null)continue;break}var p=Ts(a);p!==null&&(t.splice(s,3),s-=3,Ju(p,{pending:!0,data:h,method:a.method,action:c},c,h))}}))}function ar(t){function s(N){return No(N,t)}Ti!==null&&No(Ti,t),Ai!==null&&No(Ai,t),Ci!==null&&No(Ci,t),ka.forEach(s),Ma.forEach(s);for(var a=0;a<Ni.length;a++){var c=Ni[a];c.blockedOn===t&&(c.blockedOn=null)}for(;0<Ni.length&&(a=Ni[0],a.blockedOn===null);)By(a),a.blockedOn===null&&Ni.shift();if(a=(t.ownerDocument||t).$$reactFormReplay,a!=null)for(c=0;c<a.length;c+=3){var h=a[c],p=a[c+1],b=h[jt]||null;if(typeof p=="function")b||$y(a);else if(b){var T=null;if(p&&p.hasAttribute("formAction")){if(h=p,b=p[jt]||null)T=b.formAction;else if(Wf(h)!==null)continue}else T=b.action;typeof T=="function"?a[c+1]=T:(a.splice(c,3),c-=3),$y(a)}}}function Iy(){function t(p){p.canIntercept&&p.info==="react-transition"&&p.intercept({handler:function(){return new Promise(function(b){return h=b})},focusReset:"manual",scroll:"manual"})}function s(){h!==null&&(h(),h=null),c||setTimeout(a,20)}function a(){if(!c&&!navigation.transition){var p=navigation.currentEntry;p&&p.url!=null&&navigation.navigate(p.url,{state:p.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var c=!1,h=null;return navigation.addEventListener("navigate",t),navigation.addEventListener("navigatesuccess",s),navigation.addEventListener("navigateerror",s),setTimeout(a,100),function(){c=!0,navigation.removeEventListener("navigate",t),navigation.removeEventListener("navigatesuccess",s),navigation.removeEventListener("navigateerror",s),h!==null&&(h(),h=null)}}}function th(t){this._internalRoot=t}Mo.prototype.render=th.prototype.render=function(t){var s=this._internalRoot;if(s===null)throw Error(r(409));var a=s.current,c=tn();Ly(a,c,t,s,null,null)},Mo.prototype.unmount=th.prototype.unmount=function(){var t=this._internalRoot;if(t!==null){this._internalRoot=null;var s=t.containerInfo;Ly(t.current,2,null,t,null,null),co(),s[_s]=null}};function Mo(t){this._internalRoot=t}Mo.prototype.unstable_scheduleHydration=function(t){if(t){var s=Zd();t={blockedOn:null,target:t,priority:s};for(var a=0;a<Ni.length&&s!==0&&s<Ni[a].priority;a++);Ni.splice(a,0,t),a===0&&By(t)}};var Vy=e.version;if(Vy!=="19.2.1")throw Error(r(527,Vy,"19.2.1"));Z.findDOMNode=function(t){var s=t._reactInternals;if(s===void 0)throw typeof t.render=="function"?Error(r(188)):(t=Object.keys(t).join(","),Error(r(268,t)));return t=g(s),t=t!==null?m(t):null,t=t===null?null:t.stateNode,t};var ox={bundleType:0,version:"19.2.1",rendererPackageName:"react-dom",currentDispatcherRef:q,reconcilerVersion:"19.2.1"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var Oo=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Oo.isDisabled&&Oo.supportsFiber)try{Hi=Oo.inject(ox),ut=Oo}catch{}}return La.createRoot=function(t,s){if(!l(t))throw Error(r(299));var a=!1,c="",h=Pg,p=Jg,b=Zg;return s!=null&&(s.unstable_strictMode===!0&&(a=!0),s.identifierPrefix!==void 0&&(c=s.identifierPrefix),s.onUncaughtError!==void 0&&(h=s.onUncaughtError),s.onCaughtError!==void 0&&(p=s.onCaughtError),s.onRecoverableError!==void 0&&(b=s.onRecoverableError)),s=Oy(t,1,!1,null,null,a,c,null,h,p,b,Iy),t[_s]=s.current,zf(t),new th(s)},La.hydrateRoot=function(t,s,a){if(!l(t))throw Error(r(299));var c=!1,h="",p=Pg,b=Jg,T=Zg,N=null;return a!=null&&(a.unstable_strictMode===!0&&(c=!0),a.identifierPrefix!==void 0&&(h=a.identifierPrefix),a.onUncaughtError!==void 0&&(p=a.onUncaughtError),a.onCaughtError!==void 0&&(b=a.onCaughtError),a.onRecoverableError!==void 0&&(T=a.onRecoverableError),a.formState!==void 0&&(N=a.formState)),s=Oy(t,1,!0,s,a??null,c,h,N,p,b,T,Iy),s.context=jy(null),a=s.current,c=tn(),c=Gc(c),h=di(c),h.callback=null,pi(a,h,c),a=c,s.current.lanes=a,Ir(s,a),kn(s),t[_s]=s.current,zf(t),new Mo(s)},La.version="19.2.1",La}var t0;function Cx(){if(t0)return sh.exports;t0=1;function n(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(n)}catch(e){console.error(e)}}return n(),sh.exports=Ax(),sh.exports}var O2=Cx();const Nx=new Map([["Android.devices",{internal:!0}],["AndroidSocket.write",{internal:!0}],["AndroidSocket.close",{internal:!0}],["AndroidDevice.wait",{title:"Wait"}],["AndroidDevice.fill",{title:'Fill "{text}"'}],["AndroidDevice.tap",{title:"Tap"}],["AndroidDevice.drag",{title:"Drag"}],["AndroidDevice.fling",{title:"Fling"}],["AndroidDevice.longTap",{title:"Long tap"}],["AndroidDevice.pinchClose",{title:"Pinch close"}],["AndroidDevice.pinchOpen",{title:"Pinch open"}],["AndroidDevice.scroll",{title:"Scroll"}],["AndroidDevice.swipe",{title:"Swipe"}],["AndroidDevice.info",{internal:!0}],["AndroidDevice.screenshot",{title:"Screenshot"}],["AndroidDevice.inputType",{title:"Type"}],["AndroidDevice.inputPress",{title:"Press"}],["AndroidDevice.inputTap",{title:"Tap"}],["AndroidDevice.inputSwipe",{title:"Swipe"}],["AndroidDevice.inputDrag",{title:"Drag"}],["AndroidDevice.launchBrowser",{title:"Launch browser"}],["AndroidDevice.open",{title:"Open app"}],["AndroidDevice.shell",{title:"Execute shell command",group:"configuration"}],["AndroidDevice.installApk",{title:"Install apk"}],["AndroidDevice.push",{title:"Push"}],["AndroidDevice.connectToWebView",{title:"Connect to Web View"}],["AndroidDevice.close",{internal:!0}],["APIRequestContext.fetch",{title:'{method} "{url}"'}],["APIRequestContext.fetchResponseBody",{title:"Get response body",group:"getter"}],["APIRequestContext.fetchLog",{internal:!0}],["APIRequestContext.storageState",{title:"Get storage state",group:"configuration"}],["APIRequestContext.disposeAPIResponse",{internal:!0}],["APIRequestContext.dispose",{internal:!0,potentiallyClosesScope:!0}],["Artifact.pathAfterFinished",{internal:!0}],["Artifact.saveAs",{internal:!0}],["Artifact.saveAsStream",{internal:!0}],["Artifact.failure",{internal:!0}],["Artifact.stream",{internal:!0}],["Artifact.cancel",{internal:!0}],["Artifact.delete",{internal:!0,potentiallyClosesScope:!0}],["Stream.read",{internal:!0}],["Stream.close",{internal:!0}],["WritableStream.write",{internal:!0}],["WritableStream.close",{internal:!0}],["Browser.startServer",{title:"Start server"}],["Browser.stopServer",{title:"Stop server"}],["Browser.close",{title:"Close browser",pause:!0,potentiallyClosesScope:!0}],["Browser.killForTests",{internal:!0,potentiallyClosesScope:!0}],["Browser.defaultUserAgentForTest",{internal:!0}],["Browser.newContext",{title:"Create context"}],["Browser.newContextForReuse",{internal:!0}],["Browser.disconnectFromReusedContext",{internal:!0}],["Browser.newBrowserCDPSession",{title:"Create CDP session",group:"configuration"}],["Browser.startTracing",{title:"Start browser tracing",group:"configuration"}],["Browser.stopTracing",{title:"Stop browser tracing",group:"configuration"}],["BrowserContext.addCookies",{title:"Add cookies",group:"configuration"}],["BrowserContext.addInitScript",{title:"Add init script",group:"configuration"}],["BrowserContext.clearCookies",{title:"Clear cookies",group:"configuration"}],["BrowserContext.clearPermissions",{title:"Clear permissions",group:"configuration"}],["BrowserContext.close",{title:"Close context",pause:!0,potentiallyClosesScope:!0}],["BrowserContext.cookies",{title:"Get cookies",group:"getter"}],["BrowserContext.exposeBinding",{title:"Expose binding",group:"configuration"}],["BrowserContext.grantPermissions",{title:"Grant permissions",group:"configuration"}],["BrowserContext.newPage",{title:"Create page"}],["BrowserContext.registerSelectorEngine",{internal:!0}],["BrowserContext.setTestIdAttributeName",{internal:!0}],["BrowserContext.setExtraHTTPHeaders",{title:"Set extra HTTP headers",group:"configuration"}],["BrowserContext.setGeolocation",{title:"Set geolocation",group:"configuration"}],["BrowserContext.setHTTPCredentials",{title:"Set HTTP credentials",group:"configuration"}],["BrowserContext.setNetworkInterceptionPatterns",{title:"Route requests",group:"route"}],["BrowserContext.setWebSocketInterceptionPatterns",{title:"Route WebSockets",group:"route"}],["BrowserContext.setOffline",{title:"Set offline mode"}],["BrowserContext.storageState",{title:"Get storage state",group:"configuration"}],["BrowserContext.setStorageState",{title:"Set storage state",group:"configuration"}],["BrowserContext.pause",{title:"Pause"}],["BrowserContext.enableRecorder",{internal:!0}],["BrowserContext.disableRecorder",{internal:!0}],["BrowserContext.exposeConsoleApi",{internal:!0}],["BrowserContext.newCDPSession",{title:"Create CDP session",group:"configuration"}],["BrowserContext.createTempFiles",{internal:!0}],["BrowserContext.updateSubscription",{internal:!0}],["BrowserContext.clockFastForward",{title:'Fast forward clock "{ticksNumber|ticksString}"'}],["BrowserContext.clockInstall",{title:'Install clock "{timeNumber|timeString}"'}],["BrowserContext.clockPauseAt",{title:'Pause clock "{timeNumber|timeString}"'}],["BrowserContext.clockResume",{title:"Resume clock"}],["BrowserContext.clockRunFor",{title:'Run clock "{ticksNumber|ticksString}"'}],["BrowserContext.clockSetFixedTime",{title:'Set fixed time "{timeNumber|timeString}"'}],["BrowserContext.clockSetSystemTime",{title:'Set system time "{timeNumber|timeString}"'}],["BrowserContext.credentialsInstall",{title:"Install virtual WebAuthn authenticator"}],["BrowserContext.credentialsCreate",{title:'Create virtual credential for "{rpId}"'}],["BrowserContext.credentialsGet",{title:"Get virtual credentials"}],["BrowserContext.credentialsDelete",{title:"Delete virtual credential"}],["BrowserContext.credentialsSetUserVerified",{title:"Set virtual authenticator user verified"}],["BrowserType.launch",{title:"Launch browser"}],["BrowserType.launchPersistentContext",{title:"Launch persistent context"}],["BrowserType.connectOverCDP",{title:"Connect over CDP"}],["BrowserType.connectToWorker",{title:"Connect to worker"}],["Disposable.dispose",{internal:!0,potentiallyClosesScope:!0}],["Electron.launch",{title:"Launch electron"}],["ElectronApplication.browserWindow",{internal:!0}],["ElectronApplication.evaluateExpression",{title:"Evaluate"}],["ElectronApplication.evaluateExpressionHandle",{title:"Evaluate"}],["ElectronApplication.updateSubscription",{internal:!0}],["Frame.evalOnSelector",{title:"Evaluate",snapshot:!0,pause:!0}],["Frame.evalOnSelectorAll",{title:"Evaluate",snapshot:!0,pause:!0}],["Frame.addScriptTag",{title:"Add script tag",snapshot:!0,pause:!0}],["Frame.addStyleTag",{title:"Add style tag",snapshot:!0,pause:!0}],["Frame.ariaSnapshot",{title:"Aria snapshot",group:"getter"}],["Frame.blur",{title:"Blur",slowMo:!0,snapshot:!0,pause:!0}],["Frame.check",{title:"Check",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.click",{title:"Click",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0,potentiallyClosesScope:!0}],["Frame.content",{title:"Get content",snapshot:!0,pause:!0}],["Frame.dragAndDrop",{title:"Drag and drop",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.drop",{title:"Drop files or data onto an element",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.dblclick",{title:"Double click",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.dispatchEvent",{title:'Dispatch "{type}"',slowMo:!0,snapshot:!0,pause:!0}],["Frame.evaluateExpression",{title:"Evaluate",snapshot:!0,pause:!0}],["Frame.evaluateExpressionHandle",{title:"Evaluate",snapshot:!0,pause:!0}],["Frame.fill",{title:'Fill "{value}"',slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.focus",{title:"Focus",slowMo:!0,snapshot:!0,pause:!0}],["Frame.frameElement",{title:"Get frame element",group:"getter"}],["Frame.resolveSelector",{internal:!0}],["Frame.highlight",{internal:!0}],["Frame.hideHighlight",{internal:!0}],["Frame.getAttribute",{title:'Get attribute "{name}"',snapshot:!0,pause:!0,group:"getter"}],["Frame.goto",{title:'Navigate to "{url}"',slowMo:!0,snapshot:!0,pause:!0}],["Frame.hover",{title:"Hover",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.innerHTML",{title:"Get HTML",snapshot:!0,pause:!0,group:"getter"}],["Frame.innerText",{title:"Get inner text",snapshot:!0,pause:!0,group:"getter"}],["Frame.inputValue",{title:"Get input value",snapshot:!0,pause:!0,group:"getter"}],["Frame.isChecked",{title:"Is checked",snapshot:!0,pause:!0,group:"getter"}],["Frame.isDisabled",{title:"Is disabled",snapshot:!0,pause:!0,group:"getter"}],["Frame.isEnabled",{title:"Is enabled",snapshot:!0,pause:!0,group:"getter"}],["Frame.isHidden",{title:"Is hidden",snapshot:!0,pause:!0,group:"getter"}],["Frame.isVisible",{title:"Is visible",snapshot:!0,pause:!0,group:"getter"}],["Frame.isEditable",{title:"Is editable",snapshot:!0,pause:!0,group:"getter"}],["Frame.press",{title:'Press "{key}"',slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.querySelector",{title:"Query selector",snapshot:!0}],["Frame.querySelectorAll",{title:"Query selector all",snapshot:!0}],["Frame.queryCount",{title:"Query count",snapshot:!0,pause:!0}],["Frame.selectOption",{title:"Select option",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.setContent",{title:"Set content",snapshot:!0,pause:!0}],["Frame.setInputFiles",{title:"Set input files",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.tap",{title:"Tap",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.textContent",{title:"Get text content",snapshot:!0,pause:!0,group:"getter"}],["Frame.title",{title:"Get page title",group:"getter"}],["Frame.type",{title:'Type "{text}"',slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.uncheck",{title:"Uncheck",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["Frame.waitForTimeout",{title:"Wait for timeout",snapshot:!0}],["Frame.waitForFunction",{title:"Wait for function",snapshot:!0,pause:!0}],["Frame.waitForSelector",{title:"Wait for selector",snapshot:!0}],["Frame.expect",{title:'Expect "{expression}"',snapshot:!0,pause:!0}],["JSHandle.dispose",{internal:!0,potentiallyClosesScope:!0}],["ElementHandle.dispose",{internal:!0,potentiallyClosesScope:!0}],["JSHandle.evaluateExpression",{title:"Evaluate",snapshot:!0,pause:!0}],["ElementHandle.evaluateExpression",{title:"Evaluate",snapshot:!0,pause:!0}],["JSHandle.evaluateExpressionHandle",{title:"Evaluate",snapshot:!0,pause:!0}],["ElementHandle.evaluateExpressionHandle",{title:"Evaluate",snapshot:!0,pause:!0}],["JSHandle.getPropertyList",{title:"Get property list",group:"getter"}],["ElementHandle.getPropertyList",{title:"Get property list",group:"getter"}],["JSHandle.getProperty",{title:"Get JS property",group:"getter"}],["ElementHandle.getProperty",{title:"Get JS property",group:"getter"}],["JSHandle.jsonValue",{title:"Get JSON value",group:"getter"}],["ElementHandle.jsonValue",{title:"Get JSON value",group:"getter"}],["ElementHandle.evalOnSelector",{title:"Evaluate",snapshot:!0,pause:!0}],["ElementHandle.evalOnSelectorAll",{title:"Evaluate",snapshot:!0,pause:!0}],["ElementHandle.boundingBox",{title:"Get bounding box",snapshot:!0,pause:!0}],["ElementHandle.check",{title:"Check",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.click",{title:"Click",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.contentFrame",{title:"Get content frame",group:"getter"}],["ElementHandle.dblclick",{title:"Double click",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.dispatchEvent",{title:"Dispatch event",slowMo:!0,snapshot:!0,pause:!0}],["ElementHandle.fill",{title:'Fill "{value}"',slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.focus",{title:"Focus",slowMo:!0,snapshot:!0,pause:!0}],["ElementHandle.getAttribute",{title:"Get attribute",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.hover",{title:"Hover",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.innerHTML",{title:"Get HTML",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.innerText",{title:"Get inner text",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.inputValue",{title:"Get input value",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.isChecked",{title:"Is checked",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.isDisabled",{title:"Is disabled",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.isEditable",{title:"Is editable",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.isEnabled",{title:"Is enabled",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.isHidden",{title:"Is hidden",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.isVisible",{title:"Is visible",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.ownerFrame",{title:"Get owner frame",group:"getter"}],["ElementHandle.press",{title:'Press "{key}"',slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.querySelector",{title:"Query selector",snapshot:!0}],["ElementHandle.querySelectorAll",{title:"Query selector all",snapshot:!0}],["ElementHandle.screenshot",{title:"Screenshot",snapshot:!0,pause:!0}],["ElementHandle.scrollIntoViewIfNeeded",{title:"Scroll into view",slowMo:!0,snapshot:!0,pause:!0}],["ElementHandle.selectOption",{title:"Select option",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.selectText",{title:"Select text",slowMo:!0,snapshot:!0,pause:!0}],["ElementHandle.setInputFiles",{title:"Set input files",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.tap",{title:"Tap",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.textContent",{title:"Get text content",snapshot:!0,pause:!0,group:"getter"}],["ElementHandle.type",{title:"Type",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.uncheck",{title:"Uncheck",slowMo:!0,snapshot:!0,pause:!0,input:!0,isAutoWaiting:!0}],["ElementHandle.waitForElementState",{title:"Wait for state",snapshot:!0,pause:!0}],["ElementHandle.waitForSelector",{title:"Wait for selector",snapshot:!0}],["LocalUtils.zip",{internal:!0}],["LocalUtils.harOpen",{internal:!0}],["LocalUtils.harLookup",{internal:!0}],["LocalUtils.harClose",{internal:!0}],["LocalUtils.harUnzip",{internal:!0}],["LocalUtils.connect",{internal:!0}],["LocalUtils.tracingStarted",{internal:!0}],["LocalUtils.addStackToTracingNoReply",{internal:!0}],["LocalUtils.traceDiscarded",{internal:!0}],["LocalUtils.globToRegex",{internal:!0}],["Request.response",{internal:!0}],["Request.rawRequestHeaders",{internal:!0}],["Route.redirectNavigationRequest",{internal:!0}],["Route.abort",{title:"Abort request",group:"route"}],["Route.continue",{title:"Continue request",group:"route"}],["Route.fulfill",{title:"Fulfill request",group:"route"}],["WebSocketRoute.connect",{title:"Connect WebSocket to server",group:"route"}],["WebSocketRoute.ensureOpened",{internal:!0}],["WebSocketRoute.sendToPage",{title:"Send WebSocket message",group:"route"}],["WebSocketRoute.sendToServer",{title:"Send WebSocket message",group:"route"}],["WebSocketRoute.closePage",{internal:!0}],["WebSocketRoute.closeServer",{internal:!0}],["Response.body",{title:"Get response body",group:"getter"}],["Response.securityDetails",{internal:!0}],["Response.serverAddr",{internal:!0}],["Response.rawResponseHeaders",{internal:!0}],["Response.httpVersion",{internal:!0}],["Response.sizes",{internal:!0}],["Page.addInitScript",{title:"Add init script",group:"configuration"}],["Page.close",{title:"Close page",pause:!0,potentiallyClosesScope:!0}],["Page.runBeforeUnload",{title:"Run beforeunload",pause:!0}],["Page.clearConsoleMessages",{title:"Clear console messages"}],["Page.consoleMessages",{title:"Get console messages",group:"getter"}],["Page.emulateMedia",{title:"Emulate media",snapshot:!0,pause:!0}],["Page.exposeBinding",{title:"Expose binding",group:"configuration"}],["Page.goBack",{title:"Go back",slowMo:!0,snapshot:!0,pause:!0}],["Page.goForward",{title:"Go forward",slowMo:!0,snapshot:!0,pause:!0}],["Page.requestGC",{title:"Request garbage collection",group:"configuration"}],["Page.registerLocatorHandler",{title:"Register locator handler"}],["Page.resolveLocatorHandlerNoReply",{internal:!0}],["Page.unregisterLocatorHandler",{title:"Unregister locator handler"}],["Page.reload",{title:"Reload",slowMo:!0,snapshot:!0,pause:!0}],["Page.expectScreenshot",{title:"Expect screenshot",snapshot:!0,pause:!0}],["Page.screenshot",{title:"Screenshot",snapshot:!0,pause:!0}],["Page.setExtraHTTPHeaders",{title:"Set extra HTTP headers",group:"configuration"}],["Page.setNetworkInterceptionPatterns",{title:"Route requests",group:"route"}],["Page.setWebSocketInterceptionPatterns",{title:"Route WebSockets",group:"route"}],["Page.setViewportSize",{title:"Set viewport size",snapshot:!0,pause:!0}],["Page.keyboardDown",{title:'Key down "{key}"',slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.keyboardUp",{title:'Key up "{key}"',slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.keyboardInsertText",{title:'Insert "{text}"',slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.keyboardType",{title:'Type "{text}"',slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.keyboardPress",{title:'Press "{key}"',slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.mouseMove",{title:"Mouse move",slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.mouseDown",{title:"Mouse down",slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.mouseUp",{title:"Mouse up",slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.mouseClick",{title:"Click",slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.mouseWheel",{title:"Mouse wheel",slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.touchscreenTap",{title:"Tap",slowMo:!0,snapshot:!0,pause:!0,input:!0}],["Page.clearPageErrors",{title:"Clear page errors"}],["Page.pageErrors",{title:"Get page errors",group:"getter"}],["Page.pdf",{title:"PDF"}],["Page.requests",{title:"Get network requests",group:"getter"}],["Page.startJSCoverage",{title:"Start JS coverage",group:"configuration"}],["Page.stopJSCoverage",{title:"Stop JS coverage",group:"configuration"}],["Page.startCSSCoverage",{title:"Start CSS coverage",group:"configuration"}],["Page.stopCSSCoverage",{title:"Stop CSS coverage",group:"configuration"}],["Page.bringToFront",{title:"Bring to front"}],["Page.pickLocator",{title:"Pick locator",group:"configuration"}],["Page.cancelPickLocator",{title:"Cancel pick locator",group:"configuration"}],["Page.hideHighlight",{title:"Hide all element highlights",group:"configuration"}],["Page.screencastShowOverlay",{title:"Show overlay",group:"configuration"}],["Page.screencastRemoveOverlay",{title:"Remove overlay",group:"configuration"}],["Page.screencastChapter",{title:"Show chapter overlay",group:"configuration"}],["Page.screencastSetOverlayVisible",{title:"Set overlay visibility",group:"configuration"}],["Page.screencastShowActions",{title:"Show actions",group:"configuration"}],["Page.screencastHideActions",{title:"Remove actions",group:"configuration"}],["Page.screencastStart",{title:"Start screencast",group:"configuration"}],["Page.screencastStop",{title:"Stop screencast",group:"configuration"}],["Page.updateSubscription",{internal:!0}],["Page.setDockTile",{internal:!0}],["Page.webStorageItems",{title:"Get WebStorage items",group:"getter"}],["Page.webStorageGetItem",{title:"Get WebStorage item",group:"getter"}],["Page.webStorageSetItem",{title:"Set WebStorage item",group:"configuration"}],["Page.webStorageRemoveItem",{title:"Remove WebStorage item",group:"configuration"}],["Page.webStorageClear",{title:"Clear WebStorage",group:"configuration"}],["Root.initialize",{internal:!0}],["Playwright.newRequest",{title:"Create request context"}],["DebugController.initialize",{internal:!0}],["DebugController.setReportStateChanged",{internal:!0}],["DebugController.setRecorderMode",{internal:!0}],["DebugController.highlight",{internal:!0}],["DebugController.hideHighlight",{internal:!0}],["DebugController.resume",{internal:!0}],["DebugController.kill",{internal:!0}],["SocksSupport.socksConnected",{internal:!0}],["SocksSupport.socksFailed",{internal:!0}],["SocksSupport.socksData",{internal:!0}],["SocksSupport.socksError",{internal:!0}],["SocksSupport.socksEnd",{internal:!0}],["JsonPipe.send",{internal:!0}],["JsonPipe.close",{internal:!0}],["CDPSession.send",{title:"Send CDP command",group:"configuration"}],["CDPSession.detach",{title:"Detach CDP session",potentiallyClosesScope:!0,group:"configuration"}],["BindingCall.reject",{internal:!0}],["BindingCall.resolve",{internal:!0}],["Debugger.requestPause",{title:"Pause on next call",group:"configuration"}],["Debugger.resume",{title:"Resume",group:"configuration"}],["Debugger.next",{title:"Step to next call",group:"configuration"}],["Debugger.runTo",{title:"Run to location",group:"configuration"}],["Dialog.accept",{title:"Accept dialog"}],["Dialog.dismiss",{title:"Dismiss dialog"}],["Tracing.tracingStart",{title:"Start tracing",group:"configuration"}],["Tracing.tracingStartChunk",{title:"Start tracing",group:"configuration"}],["Tracing.tracingGroup",{title:'Trace "{name}"'}],["Tracing.tracingGroupEnd",{title:"Group end"}],["Tracing.tracingStopChunk",{title:"Stop tracing",group:"configuration"}],["Tracing.tracingStop",{title:"Stop tracing",group:"configuration"}],["Tracing.harStart",{internal:!0}],["Tracing.harExport",{internal:!0}],["Worker.disconnect",{title:"Disconnect from worker",potentiallyClosesScope:!0}],["Worker.evaluateExpression",{title:"Evaluate"}],["Worker.evaluateExpressionHandle",{title:"Evaluate"}],["Worker.updateSubscription",{internal:!0}]]);function td(n){return Nx.get(n.type+"."+n.method)}function ub(n,e){var i;return(i=kx(n,e))==null?void 0:i.replaceAll(`
51
+ `,"\\n")}function kx(n,e){if(n)for(const i of e.split("|")){if(i==="url")try{const l=new URL(n[i]);return l.protocol==="data:"?l.protocol:["about:","chrome:","edge:"].includes(l.protocol)?n[i]:l.pathname+l.search}catch{if(n[i]!==void 0)return n[i]}if(i==="timeNumber"&&n[i]!==void 0)return new Date(n[i]).toString();const r=Mx(n,i);if(r!==void 0)return r}}function Mx(n,e){const i=e.split(".");let r=n;for(const l of i){if(typeof r!="object"||r===null)return;r=r[l]}if(r!==void 0)return String(r)}function Ox(n){var i;return(n.title??((i=td(n))==null?void 0:i.title)??n.method).replace(/\{([^}]+)\}/g,(r,l)=>ub(n.params,l)??r)}function jx(n){var e;return(e=td(n))==null?void 0:e.group}const Ia=Symbol("context"),fb=Symbol("nextInContext"),hb=Symbol("prevByEndTime"),db=Symbol("nextByStartTime"),n0=Symbol("events");class j2{constructor(e,i){var l,o;i.forEach(u=>Lx(u));const r=i.find(u=>u.origin==="library");this.traceUri=e,this.browserName=(r==null?void 0:r.browserName)||"",this.sdkLanguage=r==null?void 0:r.sdkLanguage,this.channel=r==null?void 0:r.channel,this.testIdAttributeName=r==null?void 0:r.testIdAttributeName,this.platform=(r==null?void 0:r.platform)||"",this.playwrightVersion=(l=i.find(u=>u.playwrightVersion))==null?void 0:l.playwrightVersion,this.title=(r==null?void 0:r.title)||"",this.options=(r==null?void 0:r.options)||{},this.testTimeout=(o=i.find(u=>u.origin==="testRunner"))==null?void 0:o.testTimeout,this.actions=Rx(i),this.pages=[].concat(...i.map(u=>u.pages)),this.wallTime=i.map(u=>u.wallTime).reduce((u,f)=>Math.min(u||Number.MAX_VALUE,f),Number.MAX_VALUE),this.startTime=i.map(u=>u.startTime).reduce((u,f)=>Math.min(u,f),Number.MAX_VALUE),this.endTime=i.map(u=>u.endTime).reduce((u,f)=>Math.max(u,f),Number.MIN_VALUE),this.events=[].concat(...i.map(u=>u.events)),this.stdio=[].concat(...i.map(u=>u.stdio)),this.errors=[].concat(...i.map(u=>u.errors)),this.hasSource=i.some(u=>u.hasSource),this.hasStepData=i.some(u=>u.origin==="testRunner"),this.resources=[...i.map(u=>u.resources)].flat().map(u=>({...u,id:`${u.pageref}-${u.startedDateTime}-${u.request.url}`})),this.attachments=this.actions.flatMap(u=>{var f;return((f=u.attachments)==null?void 0:f.map(d=>({...d,callId:u.callId,traceUri:e})))??[]}),this.visibleAttachments=this.attachments.filter(u=>!u.name.startsWith("_")),this.events.sort((u,f)=>u.time-f.time),this.resources.sort((u,f)=>u._monotonicTime-f._monotonicTime),this.errorDescriptors=this.hasStepData?this._errorDescriptorsFromTestRunner():this._errorDescriptorsFromActions(),this.sources=$x(this.actions,this.errorDescriptors),this.actionCounters=new Map;for(const u of this.actions)u.group=u.group??jx({type:u.class,method:u.method}),u.group&&this.actionCounters.set(u.group,1+(this.actionCounters.get(u.group)||0))}createRelativeUrl(e){const i=new URL("http://localhost/"+e);return i.searchParams.set("trace",this.traceUri),i.toString().substring(17)}failedAction(){return this.actions.findLast(e=>e.error)}filteredActions(e){const i=new Set(e);return this.actions.filter(r=>!r.group||i.has(r.group))}renderActionTree(e){const i=this.filteredActions(e??[]),{rootItem:r}=pb(i),l=[],o=(u,f)=>{const d=Ox({...u.action,type:u.action.class});l.push(`${f}${d||u.id}`);for(const g of u.children)o(g,f+" ")};return r.children.forEach(u=>o(u,"")),l}_errorDescriptorsFromActions(){var i;const e=[];for(const r of this.actions||[])(i=r.error)!=null&&i.message&&e.push({action:r,stack:r.stack,message:r.error.message});return e}_errorDescriptorsFromTestRunner(){return this.errors.filter(e=>!!e.message).map((e,i)=>({stack:e.stack,message:e.message}))}}function Lx(n){for(const i of n.pages)i[Ia]=n;for(let i=0;i<n.actions.length;++i){const r=n.actions[i];r[Ia]=n}let e;for(let i=n.actions.length-1;i>=0;i--){const r=n.actions[i];r[fb]=e,r.class!=="Route"&&(e=r)}for(const i of n.events)i[Ia]=n;for(const i of n.resources)i[Ia]=n}function Rx(n){const e=[],i=Dx(n);e.push(...i),e.sort((r,l)=>l.parentId===r.callId?1:r.parentId===l.callId?-1:r.endTime-l.endTime);for(let r=1;r<e.length;++r)e[r][hb]=e[r-1];e.sort((r,l)=>l.parentId===r.callId?-1:r.parentId===l.callId?1:r.startTime-l.startTime);for(let r=0;r+1<e.length;++r)e[r][db]=e[r+1];return e}let i0=0;function Dx(n){const e=new Map,i=n.filter(u=>u.origin==="library"),r=n.filter(u=>u.origin==="testRunner");if(!r.length||!i.length)return n.map(u=>u.actions.map(f=>({...f,context:u}))).flat();for(const u of i)for(const f of u.actions)e.set(f.stepId||`tmp-step@${++i0}`,{...f,context:u});const l=Ux(r,e);l&&zx(i,l);const o=new Map;for(const u of r)for(const f of u.actions){const d=f.stepId&&e.get(f.stepId);if(d){o.set(f.callId,d.callId),f.error&&(d.error=f.error),f.attachments&&(d.attachments=f.attachments),f.annotations&&(d.annotations=f.annotations),f.parentId&&(d.parentId=o.get(f.parentId)??f.parentId),f.group&&(d.group=f.group),d.startTime=f.startTime,d.endTime=f.endTime;continue}f.parentId&&(f.parentId=o.get(f.parentId)??f.parentId),e.set(f.stepId||`tmp-step@${++i0}`,{...f,context:u})}return[...e.values()]}function zx(n,e){for(const i of n){i.startTime+=e,i.endTime+=e;for(const r of i.actions)r.startTime&&(r.startTime+=e),r.endTime&&(r.endTime+=e);for(const r of i.events)r.time+=e;for(const r of i.stdio)r.timestamp+=e;for(const r of i.pages)for(const l of r.screencastFrames)l.timestamp+=e;for(const r of i.resources)r._monotonicTime&&(r._monotonicTime+=e)}}function Ux(n,e){for(const i of n)for(const r of i.actions){if(!r.startTime)continue;const l=r.stepId?e.get(r.stepId):void 0;if(l)return r.startTime-l.startTime}return 0}function pb(n){const e=new Map;for(const l of n)e.set(l.callId,{id:l.callId,parent:void 0,children:[],action:l});const i={action:{...Ix},id:"",parent:void 0,children:[]};for(const l of e.values()){i.action.startTime=Math.min(i.action.startTime,l.action.startTime),i.action.endTime=Math.max(i.action.endTime,l.action.endTime);const o=l.action.parentId&&e.get(l.action.parentId)||i;o.children.push(l),l.parent=o}const r=l=>{for(const o of l.children)o.action.stack=o.action.stack??l.action.stack,r(o)};return r(i),{rootItem:i,itemMap:e}}function gb(n){return n[Ia]}function Hx(n){return n[fb]}function s0(n){return n[hb]}function r0(n){return n[db]}function Bx(n){let e=0,i=0;for(const r of qx(n)){if(r.type==="console"){const l=r.messageType;l==="warning"?++i:l==="error"&&++e}r.type==="event"&&r.method==="pageError"&&++e}return{errors:e,warnings:i}}function qx(n){let e=n[n0];if(e)return e;const i=Hx(n);return e=gb(n).events.filter(r=>r.time>=n.startTime&&(!i||r.time<i.startTime)),n[n0]=e,e}function $x(n,e){var r;const i=new Map;for(const l of n)for(const o of l.stack||[]){let u=i.get(o.file);u||(u={errors:[],content:void 0},i.set(o.file,u))}for(const l of e){const{action:o,stack:u,message:f}=l;!o||!u||(r=i.get(u[0].file))==null||r.errors.push({line:u[0].line||0,message:f})}return i}const Ix={type:"action",callId:"",startTime:0,endTime:0,class:"",method:"",params:{},log:[],context:{origin:"library",startTime:0,endTime:0,browserName:"",wallTime:0,options:{},pages:[],resources:[],actions:[],events:[],stdio:[],errors:[],hasSource:!1,contextId:""}},Vx=50,nc=({sidebarSize:n,sidebarHidden:e=!1,sidebarIsFirst:i=!1,orientation:r="vertical",minSidebarSize:l=Vx,settingName:o,sidebar:u,main:f})=>{const d=Math.max(l,n)*window.devicePixelRatio,[g,m]=Kt(o?o+"."+r+":size":void 0,d),[y,S]=Kt(o?o+"."+r+":size":void 0,d),[w,E]=R.useState(null),[x,_]=ds();let A;r==="vertical"?(A=y/window.devicePixelRatio,x&&x.height<A&&(A=x.height-10)):(A=g/window.devicePixelRatio,x&&x.width<A&&(A=x.width-10)),document.body.style.userSelect=w?"none":"inherit";let C={};return r==="vertical"?i?C={top:w?0:A-4,bottom:w?0:void 0,height:w?"initial":8}:C={bottom:w?0:A-4,top:w?0:void 0,height:w?"initial":8}:i?C={left:w?0:A-4,right:w?0:void 0,width:w?"initial":8}:C={right:w?0:A-4,left:w?0:void 0,width:w?"initial":8},v.jsxs("div",{className:ct("split-view",r,i&&"sidebar-first"),ref:_,children:[v.jsx("div",{className:"split-view-main",children:f}),!e&&v.jsx("div",{style:{flexBasis:A},className:"split-view-sidebar",children:u}),!e&&v.jsx("div",{style:C,className:"split-view-resizer",onMouseDown:H=>E({offset:r==="vertical"?H.clientY:H.clientX,size:A}),onMouseUp:()=>E(null),onMouseMove:H=>{if(!H.buttons)E(null);else if(w){const K=(r==="vertical"?H.clientY:H.clientX)-w.offset,Q=i?w.size+K:w.size-K,I=H.target.parentElement.getBoundingClientRect(),O=Math.min(Math.max(l,Q),(r==="vertical"?I.height:I.width)-l);r==="vertical"?S(O*window.devicePixelRatio):m(O*window.devicePixelRatio)}}})]})};function _t(n){if(n<0||!isFinite(n))return"-";if(n===0)return"0ms";if(n<1e3)return n.toFixed(0)+"ms";const e=n/1e3;if(e<60)return e.toFixed(1)+"s";const i=e/60;if(i<60)return i.toFixed(1)+"m";const r=i/60;return r<24?r.toFixed(1)+"h":(r/24).toFixed(1)+"d"}function Gx(n){if(n<0||!isFinite(n))return"-";if(n===0)return"0";if(n<1e3)return n.toFixed(0);const e=n/1024;if(e<1e3)return e.toFixed(1)+"K";const i=e/1024;return i<1e3?i.toFixed(1)+"M":(i/1024).toFixed(1)+"G"}const ot=function(n,e,i){return n>=e&&n<=i};function Bt(n){return ot(n,48,57)}function a0(n){return Bt(n)||ot(n,65,70)||ot(n,97,102)}function Kx(n){return ot(n,65,90)}function Xx(n){return ot(n,97,122)}function Yx(n){return Kx(n)||Xx(n)}function Fx(n){return n>=128}function Vo(n){return Yx(n)||Fx(n)||n===95}function l0(n){return Vo(n)||Bt(n)||n===45}function Qx(n){return ot(n,0,8)||n===11||ot(n,14,31)||n===127}function Go(n){return n===10}function Zn(n){return Go(n)||n===9||n===32}const Px=1114111;class nd extends Error{constructor(e){super(e),this.name="InvalidCharacterError"}}function Jx(n){const e=[];for(let i=0;i<n.length;i++){let r=n.charCodeAt(i);if(r===13&&n.charCodeAt(i+1)===10&&(r=10,i++),(r===13||r===12)&&(r=10),r===0&&(r=65533),ot(r,55296,56319)&&ot(n.charCodeAt(i+1),56320,57343)){const l=r-55296,o=n.charCodeAt(i+1)-56320;r=Math.pow(2,16)+l*Math.pow(2,10)+o,i++}e.push(r)}return e}function ht(n){if(n<=65535)return String.fromCharCode(n);n-=Math.pow(2,16);const e=Math.floor(n/Math.pow(2,10))+55296,i=n%Math.pow(2,10)+56320;return String.fromCharCode(e)+String.fromCharCode(i)}function mb(n){const e=Jx(n);let i=-1;const r=[];let l;const o=function($){return $>=e.length?-1:e[$]},u=function($){if($===void 0&&($=1),$>3)throw"Spec Error: no more than three codepoints of lookahead.";return o(i+$)},f=function($){return $===void 0&&($=1),i+=$,l=o(i),!0},d=function(){return i-=1,!0},g=function($){return $===void 0&&($=l),$===-1},m=function(){if(y(),f(),Zn(l)){for(;Zn(u());)f();return new ic}else{if(l===34)return E();if(l===35)if(l0(u())||A(u(1),u(2))){const $=new kb("");return H(u(1),u(2),u(3))&&($.type="id"),$.value=j(),$}else return new xt(l);else return l===36?u()===61?(f(),new t_):new xt(l):l===39?E():l===40?new Ab:l===41?new id:l===42?u()===61?(f(),new n_):new xt(l):l===43?Q()?(d(),S()):new xt(l):l===44?new xb:l===45?Q()?(d(),S()):u(1)===45&&u(2)===62?(f(2),new vb):V()?(d(),w()):new xt(l):l===46?Q()?(d(),S()):new xt(l):l===58?new Sb:l===59?new wb:l===60?u(1)===33&&u(2)===45&&u(3)===45?(f(3),new bb):new xt(l):l===64?H(u(1),u(2),u(3))?new Nb(j()):new xt(l):l===91?new Tb:l===92?C()?(d(),w()):new xt(l):l===93?new Mh:l===94?u()===61?(f(),new e_):new xt(l):l===123?new _b:l===124?u()===61?(f(),new Wx):u()===124?(f(),new Cb):new xt(l):l===125?new Eb:l===126?u()===61?(f(),new Zx):new xt(l):Bt(l)?(d(),S()):Vo(l)?(d(),w()):g()?new Xo:new xt(l)}},y=function(){for(;u(1)===47&&u(2)===42;)for(f(2);;)if(f(),l===42&&u()===47){f();break}else if(g())return},S=function(){const $=I();if(H(u(1),u(2),u(3))){const ee=new i_;return ee.value=$.value,ee.repr=$.repr,ee.type=$.type,ee.unit=j(),ee}else if(u()===37){f();const ee=new jb;return ee.value=$.value,ee.repr=$.repr,ee}else{const ee=new Ob;return ee.value=$.value,ee.repr=$.repr,ee.type=$.type,ee}},w=function(){const $=j();if($.toLowerCase()==="url"&&u()===40){for(f();Zn(u(1))&&Zn(u(2));)f();return u()===34||u()===39?new Fa($):Zn(u())&&(u(2)===34||u(2)===39)?new Fa($):x()}else return u()===40?(f(),new Fa($)):new sd($)},E=function($){$===void 0&&($=l);let ee="";for(;f();){if(l===$||g())return new rd(ee);if(Go(l))return d(),new yb;l===92?g(u())||(Go(u())?f():ee+=ht(_())):ee+=ht(l)}throw new Error("Internal error")},x=function(){const $=new Mb("");for(;Zn(u());)f();if(g(u()))return $;for(;f();){if(l===41||g())return $;if(Zn(l)){for(;Zn(u());)f();return u()===41||g(u())?(f(),$):(P(),new Ko)}else{if(l===34||l===39||l===40||Qx(l))return P(),new Ko;if(l===92)if(C())$.value+=ht(_());else return P(),new Ko;else $.value+=ht(l)}}throw new Error("Internal error")},_=function(){if(f(),a0(l)){const $=[l];for(let ce=0;ce<5&&a0(u());ce++)f(),$.push(l);Zn(u())&&f();let ee=parseInt($.map(function(ce){return String.fromCharCode(ce)}).join(""),16);return ee>Px&&(ee=65533),ee}else return g()?65533:l},A=function($,ee){return!($!==92||Go(ee))},C=function(){return A(l,u())},H=function($,ee,ce){return $===45?Vo(ee)||ee===45||A(ee,ce):Vo($)?!0:$===92?A($,ee):!1},V=function(){return H(l,u(1),u(2))},K=function($,ee,ce){return $===43||$===45?!!(Bt(ee)||ee===46&&Bt(ce)):$===46?!!Bt(ee):!!Bt($)},Q=function(){return K(l,u(1),u(2))},j=function(){let $="";for(;f();)if(l0(l))$+=ht(l);else if(C())$+=ht(_());else return d(),$;throw new Error("Internal parse error")},I=function(){let $="",ee="integer";for((u()===43||u()===45)&&(f(),$+=ht(l));Bt(u());)f(),$+=ht(l);if(u(1)===46&&Bt(u(2)))for(f(),$+=ht(l),f(),$+=ht(l),ee="number";Bt(u());)f(),$+=ht(l);const ce=u(1),Me=u(2),q=u(3);if((ce===69||ce===101)&&Bt(Me))for(f(),$+=ht(l),f(),$+=ht(l),ee="number";Bt(u());)f(),$+=ht(l);else if((ce===69||ce===101)&&(Me===43||Me===45)&&Bt(q))for(f(),$+=ht(l),f(),$+=ht(l),f(),$+=ht(l),ee="number";Bt(u());)f(),$+=ht(l);const Z=O($);return{type:ee,value:Z,repr:$}},O=function($){return+$},P=function(){for(;f();){if(l===41||g())return;C()&&_()}};let J=0;for(;!g(u());)if(r.push(m()),J++,J>e.length*2)throw new Error("I'm infinite-looping!");return r}class tt{constructor(){this.tokenType=""}toJSON(){return{token:this.tokenType}}toString(){return this.tokenType}toSource(){return""+this}}class yb extends tt{constructor(){super(...arguments),this.tokenType="BADSTRING"}}class Ko extends tt{constructor(){super(...arguments),this.tokenType="BADURL"}}class ic extends tt{constructor(){super(...arguments),this.tokenType="WHITESPACE"}toString(){return"WS"}toSource(){return" "}}class bb extends tt{constructor(){super(...arguments),this.tokenType="CDO"}toSource(){return"<!--"}}class vb extends tt{constructor(){super(...arguments),this.tokenType="CDC"}toSource(){return"-->"}}class Sb extends tt{constructor(){super(...arguments),this.tokenType=":"}}class wb extends tt{constructor(){super(...arguments),this.tokenType=";"}}class xb extends tt{constructor(){super(...arguments),this.tokenType=","}}class Mr extends tt{constructor(){super(...arguments),this.value="",this.mirror=""}}class _b extends Mr{constructor(){super(),this.tokenType="{",this.value="{",this.mirror="}"}}class Eb extends Mr{constructor(){super(),this.tokenType="}",this.value="}",this.mirror="{"}}class Tb extends Mr{constructor(){super(),this.tokenType="[",this.value="[",this.mirror="]"}}class Mh extends Mr{constructor(){super(),this.tokenType="]",this.value="]",this.mirror="["}}class Ab extends Mr{constructor(){super(),this.tokenType="(",this.value="(",this.mirror=")"}}class id extends Mr{constructor(){super(),this.tokenType=")",this.value=")",this.mirror="("}}class Zx extends tt{constructor(){super(...arguments),this.tokenType="~="}}class Wx extends tt{constructor(){super(...arguments),this.tokenType="|="}}class e_ extends tt{constructor(){super(...arguments),this.tokenType="^="}}class t_ extends tt{constructor(){super(...arguments),this.tokenType="$="}}class n_ extends tt{constructor(){super(...arguments),this.tokenType="*="}}class Cb extends tt{constructor(){super(...arguments),this.tokenType="||"}}class Xo extends tt{constructor(){super(...arguments),this.tokenType="EOF"}toSource(){return""}}class xt extends tt{constructor(e){super(),this.tokenType="DELIM",this.value="",this.value=ht(e)}toString(){return"DELIM("+this.value+")"}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e}toSource(){return this.value==="\\"?`\\
52
+ `:this.value}}class Or extends tt{constructor(){super(...arguments),this.value=""}ASCIIMatch(e){return this.value.toLowerCase()===e.toLowerCase()}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e}}class sd extends Or{constructor(e){super(),this.tokenType="IDENT",this.value=e}toString(){return"IDENT("+this.value+")"}toSource(){return cl(this.value)}}class Fa extends Or{constructor(e){super(),this.tokenType="FUNCTION",this.value=e,this.mirror=")"}toString(){return"FUNCTION("+this.value+")"}toSource(){return cl(this.value)+"("}}class Nb extends Or{constructor(e){super(),this.tokenType="AT-KEYWORD",this.value=e}toString(){return"AT("+this.value+")"}toSource(){return"@"+cl(this.value)}}class kb extends Or{constructor(e){super(),this.tokenType="HASH",this.value=e,this.type="unrestricted"}toString(){return"HASH("+this.value+")"}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e.type=this.type,e}toSource(){return this.type==="id"?"#"+cl(this.value):"#"+s_(this.value)}}class rd extends Or{constructor(e){super(),this.tokenType="STRING",this.value=e}toString(){return'"'+Lb(this.value)+'"'}}class Mb extends Or{constructor(e){super(),this.tokenType="URL",this.value=e}toString(){return"URL("+this.value+")"}toSource(){return'url("'+Lb(this.value)+'")'}}class Ob extends tt{constructor(){super(),this.tokenType="NUMBER",this.type="integer",this.repr=""}toString(){return this.type==="integer"?"INT("+this.value+")":"NUMBER("+this.value+")"}toJSON(){const e=super.toJSON();return e.value=this.value,e.type=this.type,e.repr=this.repr,e}toSource(){return this.repr}}class jb extends tt{constructor(){super(),this.tokenType="PERCENTAGE",this.repr=""}toString(){return"PERCENTAGE("+this.value+")"}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e.repr=this.repr,e}toSource(){return this.repr+"%"}}class i_ extends tt{constructor(){super(),this.tokenType="DIMENSION",this.type="integer",this.repr="",this.unit=""}toString(){return"DIM("+this.value+","+this.unit+")"}toJSON(){const e=this.constructor.prototype.constructor.prototype.toJSON.call(this);return e.value=this.value,e.type=this.type,e.repr=this.repr,e.unit=this.unit,e}toSource(){const e=this.repr;let i=cl(this.unit);return i[0].toLowerCase()==="e"&&(i[1]==="-"||ot(i.charCodeAt(1),48,57))&&(i="\\65 "+i.slice(1,i.length)),e+i}}function cl(n){n=""+n;let e="";const i=n.charCodeAt(0);for(let r=0;r<n.length;r++){const l=n.charCodeAt(r);if(l===0)throw new nd("Invalid character: the input contains U+0000.");ot(l,1,31)||l===127||r===0&&ot(l,48,57)||r===1&&ot(l,48,57)&&i===45?e+="\\"+l.toString(16)+" ":l>=128||l===45||l===95||ot(l,48,57)||ot(l,65,90)||ot(l,97,122)?e+=n[r]:e+="\\"+n[r]}return e}function s_(n){n=""+n;let e="";for(let i=0;i<n.length;i++){const r=n.charCodeAt(i);if(r===0)throw new nd("Invalid character: the input contains U+0000.");r>=128||r===45||r===95||ot(r,48,57)||ot(r,65,90)||ot(r,97,122)?e+=n[i]:e+="\\"+r.toString(16)+" "}return e}function Lb(n){n=""+n;let e="";for(let i=0;i<n.length;i++){const r=n.charCodeAt(i);if(r===0)throw new nd("Invalid character: the input contains U+0000.");ot(r,1,31)||r===127?e+="\\"+r.toString(16)+" ":r===34||r===92?e+="\\"+n[i]:e+=n[i]}return e}class qt extends Error{}function r_(n,e){let i;try{i=mb(n),i[i.length-1]instanceof Xo||i.push(new Xo)}catch(O){const P=O.message+` while parsing css selector "${n}". Did you mean to CSS.escape it?`,J=(O.stack||"").indexOf(O.message);throw J!==-1&&(O.stack=O.stack.substring(0,J)+P+O.stack.substring(J+O.message.length)),O.message=P,O}const r=i.find(O=>O instanceof Nb||O instanceof yb||O instanceof Ko||O instanceof Cb||O instanceof bb||O instanceof vb||O instanceof wb||O instanceof _b||O instanceof Eb||O instanceof Mb||O instanceof jb);if(r)throw new qt(`Unsupported token "${r.toSource()}" while parsing css selector "${n}". Did you mean to CSS.escape it?`);let l=0;const o=new Set;function u(){return new qt(`Unexpected token "${i[l].toSource()}" while parsing css selector "${n}". Did you mean to CSS.escape it?`)}function f(){for(;i[l]instanceof ic;)l++}function d(O=l){return i[O]instanceof sd}function g(O=l){return i[O]instanceof rd}function m(O=l){return i[O]instanceof Ob}function y(O=l){return i[O]instanceof xb}function S(O=l){return i[O]instanceof Ab}function w(O=l){return i[O]instanceof id}function E(O=l){return i[O]instanceof Fa}function x(O=l){return i[O]instanceof xt&&i[O].value==="*"}function _(O=l){return i[O]instanceof Xo}function A(O=l){return i[O]instanceof xt&&[">","+","~"].includes(i[O].value)}function C(O=l){return y(O)||w(O)||_(O)||A(O)||i[O]instanceof ic}function H(){const O=[V()];for(;f(),!!y();)l++,O.push(V());return O}function V(){return f(),m()||g()?i[l++].value:K()}function K(){const O={simples:[]};for(f(),A()?O.simples.push({selector:{functions:[{name:"scope",args:[]}]},combinator:""}):O.simples.push({selector:Q(),combinator:""});;){if(f(),A())O.simples[O.simples.length-1].combinator=i[l++].value,f();else if(C())break;O.simples.push({combinator:"",selector:Q()})}return O}function Q(){let O="";const P=[];for(;!C();)if(d()||x())O+=i[l++].toSource();else if(i[l]instanceof kb)O+=i[l++].toSource();else if(i[l]instanceof xt&&i[l].value===".")if(l++,d())O+="."+i[l++].toSource();else throw u();else if(i[l]instanceof Sb)if(l++,d())if(!e.has(i[l].value.toLowerCase()))O+=":"+i[l++].toSource();else{const J=i[l++].value.toLowerCase();P.push({name:J,args:[]}),o.add(J)}else if(E()){const J=i[l++].value.toLowerCase();if(e.has(J)?(P.push({name:J,args:H()}),o.add(J)):O+=`:${J}(${j()})`,f(),!w())throw u();l++}else throw u();else if(i[l]instanceof Tb){for(O+="[",l++;!(i[l]instanceof Mh)&&!_();)O+=i[l++].toSource();if(!(i[l]instanceof Mh))throw u();O+="]",l++}else throw u();if(!O&&!P.length)throw u();return{css:O||void 0,functions:P}}function j(){let O="",P=1;for(;!_()&&((S()||E())&&P++,w()&&P--,!!P);)O+=i[l++].toSource();return O}const I=H();if(!_())throw u();if(I.some(O=>typeof O!="object"||!("simples"in O)))throw new qt(`Error while parsing css selector "${n}". Did you mean to CSS.escape it?`);return{selector:I,names:Array.from(o)}}const Oh=new Set(["internal:has","internal:has-not","internal:and","internal:or","internal:chain","left-of","right-of","above","below","near"]),a_=new Set(["left-of","right-of","above","below","near"]),Rb=new Set(["not","is","where","has","scope","light","visible","text","text-matches","text-is","has-text","above","below","right-of","left-of","near","nth-match"]);function ul(n){const e=c_(n),i=[];for(const r of e.parts){if(r.name==="css"||r.name==="css:light"){r.name==="css:light"&&(r.body=":light("+r.body+")");const l=r_(r.body,Rb);i.push({name:"css",body:l.selector,source:r.body});continue}if(Oh.has(r.name)){let l,o;try{const g=JSON.parse("["+r.body+"]");if(!Array.isArray(g)||g.length<1||g.length>2||typeof g[0]!="string")throw new qt(`Malformed selector: ${r.name}=`+r.body);if(l=g[0],g.length===2){if(typeof g[1]!="number"||!a_.has(r.name))throw new qt(`Malformed selector: ${r.name}=`+r.body);o=g[1]}}catch{throw new qt(`Malformed selector: ${r.name}=`+r.body)}const u={name:r.name,source:r.body,body:{parsed:ul(l),distance:o}},f=[...u.body.parsed.parts].reverse().find(g=>g.name==="internal:control"&&g.body==="enter-frame"),d=f?u.body.parsed.parts.indexOf(f):-1;d!==-1&&l_(u.body.parsed.parts.slice(0,d+1),i.slice(0,d+1))&&u.body.parsed.parts.splice(0,d+1),i.push(u);continue}i.push({...r,source:r.body})}if(Oh.has(i[0].name))throw new qt(`"${i[0].name}" selector cannot be first`);return{capture:e.capture,parts:i}}function l_(n,e){return $t({parts:n})===$t({parts:e})}function $t(n,e){return typeof n=="string"?n:n.parts.map((i,r)=>{let l=!0;!e&&r!==n.capture&&(i.name==="css"||i.name==="xpath"&&i.source.startsWith("//")||i.source.startsWith(".."))&&(l=!1);const o=l?i.name+"=":"";return`${r===n.capture?"*":""}${o}${i.source}`}).join(" >> ")}function o_(n,e){const i=(r,l)=>{for(const o of r.parts)e(o,l),Oh.has(o.name)&&i(o.body.parsed,!0)};i(n,!1)}function c_(n){let e=0,i,r=0;const l={parts:[]},o=()=>{const f=n.substring(r,e).trim(),d=f.indexOf("=");let g,m;d!==-1&&f.substring(0,d).trim().match(/^[a-zA-Z_0-9-+:*]+$/)?(g=f.substring(0,d).trim(),m=f.substring(d+1)):f.length>1&&f[0]==='"'&&f[f.length-1]==='"'||f.length>1&&f[0]==="'"&&f[f.length-1]==="'"?(g="text",m=f):/^\(*\/\//.test(f)||f.startsWith("..")?(g="xpath",m=f):(g="css",m=f);let y=!1;if(g[0]==="*"&&(y=!0,g=g.substring(1)),l.parts.push({name:g,body:m}),y){if(l.capture!==void 0)throw new qt("Only one of the selectors can capture using * modifier");l.capture=l.parts.length-1}};if(!n.includes(">>"))return e=n.length,o(),l;const u=()=>{const d=n.substring(r,e).match(/^\s*text\s*=(.*)$/);return!!d&&!!d[1]};for(;e<n.length;){const f=n[e];f==="\\"&&e+1<n.length?e+=2:f===i?(i=void 0,e++):!i&&(f==='"'||f==="'"||f==="`")&&!u()?(i=f,e++):!i&&f===">"&&n[e+1]===">"?(o(),e+=2,r=e):e++}return o(),l}function _r(n,e){let i=0,r=n.length===0;const l=()=>n[i]||"",o=()=>{const _=l();return++i,r=i>=n.length,_},u=_=>{throw r?new qt(`Unexpected end of selector while parsing selector \`${n}\``):new qt(`Error while parsing selector \`${n}\` - unexpected symbol "${l()}" at position ${i}`+(_?" during "+_:""))};function f(){for(;!r&&/\s/.test(l());)o()}function d(_){return _>="€"||_>="0"&&_<="9"||_>="A"&&_<="Z"||_>="a"&&_<="z"||_>="0"&&_<="9"||_==="_"||_==="-"}function g(){let _="";for(f();!r&&d(l());)_+=o();return _}function m(_){let A=o();for(A!==_&&u("parsing quoted string");!r&&l()!==_;)l()==="\\"&&o(),A+=o();return l()!==_&&u("parsing quoted string"),A+=o(),A}function y(){o()!=="/"&&u("parsing regular expression");let _="",A=!1;for(;!r;){if(l()==="\\")_+=o(),r&&u("parsing regular expression");else if(A&&l()==="]")A=!1;else if(!A&&l()==="[")A=!0;else if(!A&&l()==="/")break;_+=o()}o()!=="/"&&u("parsing regular expression");let C="";for(;!r&&l().match(/[dgimsuy]/);)C+=o();try{return new RegExp(_,C)}catch(H){throw new qt(`Error while parsing selector \`${n}\`: ${H.message}`)}}function S(){let _="";return f(),l()==="'"||l()==='"'?_=m(l()).slice(1,-1):_=g(),_||u("parsing property path"),_}function w(){f();let _="";return r||(_+=o()),!r&&_!=="="&&(_+=o()),["=","*=","^=","$=","|=","~="].includes(_)||u("parsing operator"),_}function E(){o();const _=[];for(_.push(S()),f();l()===".";)o(),_.push(S()),f();if(l()==="]")return o(),{name:_.join("."),jsonPath:_,op:"<truthy>",value:null,caseSensitive:!1};const A=w();let C,H=!0;if(f(),l()==="/"){if(A!=="=")throw new qt(`Error while parsing selector \`${n}\` - cannot use ${A} in attribute with regular expression`);C=y()}else if(l()==="'"||l()==='"')C=m(l()).slice(1,-1),f(),l()==="i"||l()==="I"?(H=!1,o()):(l()==="s"||l()==="S")&&(H=!0,o());else{for(C="";!r&&(d(l())||l()==="+"||l()===".");)C+=o();C==="true"?C=!0:C==="false"&&(C=!1)}if(f(),l()!=="]"&&u("parsing attribute value"),o(),A!=="="&&typeof C!="string")throw new qt(`Error while parsing selector \`${n}\` - cannot use ${A} in attribute with non-string matching value - ${C}`);return{name:_.join("."),jsonPath:_,op:A,value:C,caseSensitive:H}}const x={name:"",attributes:[]};for(x.name=g(),f();l()==="[";)x.attributes.push(E()),f();if(r||u(void 0),!x.name&&!x.attributes.length)throw new qt(`Error while parsing selector \`${n}\` - selector cannot be empty`);return x}function pc(n,e="'"){const i=JSON.stringify(n),r=i.substring(1,i.length-1).replace(/\\"/g,'"');if(e==="'")return e+r.replace(/[']/g,"\\'")+e;if(e==='"')return e+r.replace(/["]/g,'\\"')+e;if(e==="`")return e+r.replace(/[`]/g,"\\`")+e;throw new Error("Invalid escape char")}function sc(n){return n.charAt(0).toUpperCase()+n.substring(1)}function Db(n){return n.replace(/([a-z0-9])([A-Z])/g,"$1_$2").replace(/([A-Z])([A-Z][a-z])/g,"$1_$2").toLowerCase()}function pr(n){return`"${n.replace(/["\\]/g,e=>"\\"+e)}"`}let is;function u_(){is=new Map}function dt(n){let e=is==null?void 0:is.get(n);return e===void 0&&(e=n.replace(/[\u200b\u00ad]/g,"").trim().replace(/\s+/g," "),is==null||is.set(n,e)),e}function gc(n){return n.replace(/(^|[^\\])(\\\\)*\\(['"`])/g,"$1$2$3")}function zb(n){return n.unicode||n.unicodeSets?String(n):String(n).replace(/(^|[^\\])(\\\\)*(["'`])/g,"$1$2\\$3").replace(/>>/g,"\\>\\>")}function It(n,e){return typeof n!="string"?zb(n):`${JSON.stringify(n)}${e?"s":"i"}`}function Ze(n,e){return typeof n!="string"?zb(n):`"${n.replace(/\\/g,"\\\\").replace(/["]/g,'\\"')}"${e?"s":"i"}`}function f_(n,e,i=""){if(n.length<=e)return n;const r=[...n];return r.length>e?r.slice(0,e-i.length).join("")+i:r.join("")}function o0(n,e){return f_(n,e,"…")}function rc(n){return n.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function h_(n,e){const i=n.length,r=e.length;let l=0,o=0;const u=Array(i+1).fill(null).map(()=>Array(r+1).fill(0));for(let f=1;f<=i;f++)for(let d=1;d<=r;d++)n[f-1]===e[d-1]&&(u[f][d]=u[f-1][d-1]+1,u[f][d]>l&&(l=u[f][d],o=f));return n.slice(o-l,o)}function Ub(n,e){try{const i=ul(e),r=d_(i);return r||ls(new Bb[n],i,!1,1)[0]}catch{return e}}function d_(n){const e=n.parts[n.parts.length-1];if((e==null?void 0:e.name)==="internal:describe"){const i=JSON.parse(e.body);if(typeof i=="string")return i}}function Li(n,e,i=!1){return Hb(n,e,i,1)[0]}function Hb(n,e,i=!1,r=20,l){try{return ls(new Bb[n](l),ul(e),i,r)}catch{return[e]}}function ls(n,e,i=!1,r=20){const l=[...e.parts],o=[];let u=i?"frame-locator":"page";for(let f=0;f<l.length;f++){const d=l[f],g=u;if(u="locator",d.name==="internal:describe")continue;if(d.name==="nth"){d.body==="0"?o.push([n.generateLocator(g,"first",""),n.generateLocator(g,"nth","0")]):d.body==="-1"?o.push([n.generateLocator(g,"last",""),n.generateLocator(g,"nth","-1")]):o.push([n.generateLocator(g,"nth",d.body)]);continue}if(d.name==="visible"){o.push([n.generateLocator(g,"visible",d.body),n.generateLocator(g,"default",`visible=${d.body}`)]);continue}if(d.name==="internal:text"){const{exact:E,text:x}=Ra(d.body);o.push([n.generateLocator(g,"text",x,{exact:E})]);continue}if(d.name==="internal:has-text"){const{exact:E,text:x}=Ra(d.body);if(!E){o.push([n.generateLocator(g,"has-text",x,{exact:E})]);continue}}if(d.name==="internal:has-not-text"){const{exact:E,text:x}=Ra(d.body);if(!E){o.push([n.generateLocator(g,"has-not-text",x,{exact:E})]);continue}}if(d.name==="internal:has"){const E=ls(n,d.body.parsed,!1,r);o.push(E.map(x=>n.generateLocator(g,"has",x)));continue}if(d.name==="internal:has-not"){const E=ls(n,d.body.parsed,!1,r);o.push(E.map(x=>n.generateLocator(g,"hasNot",x)));continue}if(d.name==="internal:and"){const E=ls(n,d.body.parsed,!1,r);o.push(E.map(x=>n.generateLocator(g,"and",x)));continue}if(d.name==="internal:or"){const E=ls(n,d.body.parsed,!1,r);o.push(E.map(x=>n.generateLocator(g,"or",x)));continue}if(d.name==="internal:chain"){const E=ls(n,d.body.parsed,!1,r);o.push(E.map(x=>n.generateLocator(g,"chain",x)));continue}if(d.name==="internal:label"){const{exact:E,text:x}=Ra(d.body);o.push([n.generateLocator(g,"label",x,{exact:E})]);continue}if(d.name==="internal:role"){const E=_r(d.body),x={attrs:[]};for(const _ of E.attributes)if(_.name==="name"){if(x.exact!==void 0&&x.exact!==_.caseSensitive)throw new Error(`Conflicting exactness in internal:role selector: ${$t({parts:[d]})}`);x.exact=_.caseSensitive,x.name=_.value}else if(_.name==="description"){if(x.exact!==void 0&&x.exact!==_.caseSensitive)throw new Error(`Conflicting exactness in internal:role selector: ${$t({parts:[d]})}`);x.exact=_.caseSensitive,x.description=_.value}else _.name==="level"&&typeof _.value=="string"&&(_.value=+_.value),x.attrs.push({name:_.name==="include-hidden"?"includeHidden":_.name,value:_.value});o.push([n.generateLocator(g,"role",E.name,x)]);continue}if(d.name==="internal:testid"){const E=_r(d.body),{value:x}=E.attributes[0];o.push([n.generateLocator(g,"test-id",x)]);continue}if(d.name==="internal:attr"){const E=_r(d.body),{name:x,value:_,caseSensitive:A}=E.attributes[0],C=_,H=!!A;if(x==="placeholder"){o.push([n.generateLocator(g,"placeholder",C,{exact:H})]);continue}if(x==="alt"){o.push([n.generateLocator(g,"alt",C,{exact:H})]);continue}if(x==="title"){o.push([n.generateLocator(g,"title",C,{exact:H})]);continue}}if(d.name==="internal:control"&&d.body==="enter-frame"){const E=o[o.length-1],x=l[f-1],_=E.map(A=>n.chainLocators([A,n.generateLocator(g,"frame","")]));["xpath","css"].includes(x.name)&&_.push(n.generateLocator(g,"frame-locator",$t({parts:[x]})),n.generateLocator(g,"frame-locator",$t({parts:[x]},!0))),E.splice(0,E.length,..._),u="frame-locator";continue}const m=l[f+1],y=$t({parts:[d]}),S=n.generateLocator(g,"default",y);if(m&&["internal:has-text","internal:has-not-text"].includes(m.name)){const{exact:E,text:x}=Ra(m.body);if(!E){const _=n.generateLocator("locator",m.name==="internal:has-text"?"has-text":"has-not-text",x,{exact:E}),A={};m.name==="internal:has-text"?A.hasText=x:A.hasNotText=x;const C=n.generateLocator(g,"default",y,A);o.push([n.chainLocators([S,_]),C]),f++;continue}}let w;if(["xpath","css"].includes(d.name)){const E=$t({parts:[d]},!0);w=n.generateLocator(g,"default",E)}o.push([S,w].filter(Boolean))}return p_(n,o,r)}function p_(n,e,i){const r=e.map(()=>""),l=[],o=u=>{if(u===e.length)return l.push(n.chainLocators(r)),l.length<i;for(const f of e[u])if(r[u]=f,!o(u+1))return!1;return!0};return o(0),l}function Ra(n){let e=!1;const i=n.match(/^\/(.*)\/([igm]*)$/);return i?{text:new RegExp(i[1],i[2])}:(n.endsWith('"')?(n=JSON.parse(n),e=!0):n.endsWith('"s')?(n=JSON.parse(n.substring(0,n.length-1)),e=!0):n.endsWith('"i')&&(n=JSON.parse(n.substring(0,n.length-1)),e=!1),{exact:e,text:n})}class g_{constructor(e){this.preferredQuote=e}generateLocator(e,i,r,l={}){switch(i){case"default":return l.hasText!==void 0?`locator(${this.quote(r)}, { hasText: ${this.toHasText(l.hasText)} })`:l.hasNotText!==void 0?`locator(${this.quote(r)}, { hasNotText: ${this.toHasText(l.hasNotText)} })`:`locator(${this.quote(r)})`;case"frame-locator":return`frameLocator(${this.quote(r)})`;case"frame":return"contentFrame()";case"nth":return`nth(${r})`;case"first":return"first()";case"last":return"last()";case"visible":return`filter({ visible: ${r==="true"?"true":"false"} })`;case"role":const o=[];We(l.name)?o.push(`name: ${this.regexToSourceString(l.name)}`):typeof l.name=="string"&&o.push(`name: ${this.quote(l.name)}`),We(l.description)?o.push(`description: ${this.regexToSourceString(l.description)}`):typeof l.description=="string"&&o.push(`description: ${this.quote(l.description)}`),l.exact&&(typeof l.name=="string"||typeof l.description=="string")&&o.push("exact: true");for(const{name:f,value:d}of l.attrs)o.push(`${f}: ${typeof d=="string"?this.quote(d):d}`);const u=o.length?`, { ${o.join(", ")} }`:"";return`getByRole(${this.quote(r)}${u})`;case"has-text":return`filter({ hasText: ${this.toHasText(r)} })`;case"has-not-text":return`filter({ hasNotText: ${this.toHasText(r)} })`;case"has":return`filter({ has: ${r} })`;case"hasNot":return`filter({ hasNot: ${r} })`;case"and":return`and(${r})`;case"or":return`or(${r})`;case"chain":return`locator(${r})`;case"test-id":return`getByTestId(${this.toTestIdValue(r)})`;case"text":return this.toCallWithExact("getByText",r,!!l.exact);case"alt":return this.toCallWithExact("getByAltText",r,!!l.exact);case"placeholder":return this.toCallWithExact("getByPlaceholder",r,!!l.exact);case"label":return this.toCallWithExact("getByLabel",r,!!l.exact);case"title":return this.toCallWithExact("getByTitle",r,!!l.exact);default:throw new Error("Unknown selector kind "+i)}}chainLocators(e){return e.join(".")}regexToSourceString(e){return gc(String(e))}toCallWithExact(e,i,r){return We(i)?`${e}(${this.regexToSourceString(i)})`:r?`${e}(${this.quote(i)}, { exact: true })`:`${e}(${this.quote(i)})`}toHasText(e){return We(e)?this.regexToSourceString(e):this.quote(e)}toTestIdValue(e){return We(e)?this.regexToSourceString(e):this.quote(e)}quote(e){return pc(e,this.preferredQuote??"'")}}class m_{generateLocator(e,i,r,l={}){switch(i){case"default":return l.hasText!==void 0?`locator(${this.quote(r)}, has_text=${this.toHasText(l.hasText)})`:l.hasNotText!==void 0?`locator(${this.quote(r)}, has_not_text=${this.toHasText(l.hasNotText)})`:`locator(${this.quote(r)})`;case"frame-locator":return`frame_locator(${this.quote(r)})`;case"frame":return"content_frame";case"nth":return`nth(${r})`;case"first":return"first";case"last":return"last";case"visible":return`filter(visible=${r==="true"?"True":"False"})`;case"role":const o=[];We(l.name)?o.push(`name=${this.regexToString(l.name)}`):typeof l.name=="string"&&o.push(`name=${this.quote(l.name)}`),We(l.description)?o.push(`description=${this.regexToString(l.description)}`):typeof l.description=="string"&&o.push(`description=${this.quote(l.description)}`),l.exact&&(typeof l.name=="string"||typeof l.description=="string")&&o.push("exact=True");for(const{name:f,value:d}of l.attrs){let g=typeof d=="string"?this.quote(d):d;typeof d=="boolean"&&(g=d?"True":"False"),o.push(`${Db(f)}=${g}`)}const u=o.length?`, ${o.join(", ")}`:"";return`get_by_role(${this.quote(r)}${u})`;case"has-text":return`filter(has_text=${this.toHasText(r)})`;case"has-not-text":return`filter(has_not_text=${this.toHasText(r)})`;case"has":return`filter(has=${r})`;case"hasNot":return`filter(has_not=${r})`;case"and":return`and_(${r})`;case"or":return`or_(${r})`;case"chain":return`locator(${r})`;case"test-id":return`get_by_test_id(${this.toTestIdValue(r)})`;case"text":return this.toCallWithExact("get_by_text",r,!!l.exact);case"alt":return this.toCallWithExact("get_by_alt_text",r,!!l.exact);case"placeholder":return this.toCallWithExact("get_by_placeholder",r,!!l.exact);case"label":return this.toCallWithExact("get_by_label",r,!!l.exact);case"title":return this.toCallWithExact("get_by_title",r,!!l.exact);default:throw new Error("Unknown selector kind "+i)}}chainLocators(e){return e.join(".")}regexToString(e){const i=e.flags.includes("i")?", re.IGNORECASE":"";return`re.compile(r"${gc(e.source).replace(/\\\//,"/").replace(/"/g,'\\"')}"${i})`}toCallWithExact(e,i,r){return We(i)?`${e}(${this.regexToString(i)})`:r?`${e}(${this.quote(i)}, exact=True)`:`${e}(${this.quote(i)})`}toHasText(e){return We(e)?this.regexToString(e):`${this.quote(e)}`}toTestIdValue(e){return We(e)?this.regexToString(e):this.quote(e)}quote(e){return pc(e,'"')}}class y_{generateLocator(e,i,r,l={}){let o;switch(e){case"page":o="Page";break;case"frame-locator":o="FrameLocator";break;case"locator":o="Locator";break}switch(i){case"default":return l.hasText!==void 0?`locator(${this.quote(r)}, new ${o}.LocatorOptions().setHasText(${this.toHasText(l.hasText)}))`:l.hasNotText!==void 0?`locator(${this.quote(r)}, new ${o}.LocatorOptions().setHasNotText(${this.toHasText(l.hasNotText)}))`:`locator(${this.quote(r)})`;case"frame-locator":return`frameLocator(${this.quote(r)})`;case"frame":return"contentFrame()";case"nth":return`nth(${r})`;case"first":return"first()";case"last":return"last()";case"visible":return`filter(new ${o}.FilterOptions().setVisible(${r==="true"?"true":"false"}))`;case"role":const u=[];We(l.name)?u.push(`.setName(${this.regexToString(l.name)})`):typeof l.name=="string"&&u.push(`.setName(${this.quote(l.name)})`),We(l.description)?u.push(`.setDescription(${this.regexToString(l.description)})`):typeof l.description=="string"&&u.push(`.setDescription(${this.quote(l.description)})`),l.exact&&(typeof l.name=="string"||typeof l.description=="string")&&u.push(".setExact(true)");for(const{name:d,value:g}of l.attrs)u.push(`.set${sc(d)}(${typeof g=="string"?this.quote(g):g})`);const f=u.length?`, new ${o}.GetByRoleOptions()${u.join("")}`:"";return`getByRole(AriaRole.${Db(r).toUpperCase()}${f})`;case"has-text":return`filter(new ${o}.FilterOptions().setHasText(${this.toHasText(r)}))`;case"has-not-text":return`filter(new ${o}.FilterOptions().setHasNotText(${this.toHasText(r)}))`;case"has":return`filter(new ${o}.FilterOptions().setHas(${r}))`;case"hasNot":return`filter(new ${o}.FilterOptions().setHasNot(${r}))`;case"and":return`and(${r})`;case"or":return`or(${r})`;case"chain":return`locator(${r})`;case"test-id":return`getByTestId(${this.toTestIdValue(r)})`;case"text":return this.toCallWithExact(o,"getByText",r,!!l.exact);case"alt":return this.toCallWithExact(o,"getByAltText",r,!!l.exact);case"placeholder":return this.toCallWithExact(o,"getByPlaceholder",r,!!l.exact);case"label":return this.toCallWithExact(o,"getByLabel",r,!!l.exact);case"title":return this.toCallWithExact(o,"getByTitle",r,!!l.exact);default:throw new Error("Unknown selector kind "+i)}}chainLocators(e){return e.join(".")}regexToString(e){const i=e.flags.includes("i")?", Pattern.CASE_INSENSITIVE":"";return`Pattern.compile(${this.quote(gc(e.source))}${i})`}toCallWithExact(e,i,r,l){return We(r)?`${i}(${this.regexToString(r)})`:l?`${i}(${this.quote(r)}, new ${e}.${sc(i)}Options().setExact(true))`:`${i}(${this.quote(r)})`}toHasText(e){return We(e)?this.regexToString(e):this.quote(e)}toTestIdValue(e){return We(e)?this.regexToString(e):this.quote(e)}quote(e){return pc(e,'"')}}class b_{generateLocator(e,i,r,l={}){switch(i){case"default":return l.hasText!==void 0?`Locator(${this.quote(r)}, new() { ${this.toHasText(l.hasText)} })`:l.hasNotText!==void 0?`Locator(${this.quote(r)}, new() { ${this.toHasNotText(l.hasNotText)} })`:`Locator(${this.quote(r)})`;case"frame-locator":return`FrameLocator(${this.quote(r)})`;case"frame":return"ContentFrame";case"nth":return`Nth(${r})`;case"first":return"First";case"last":return"Last";case"visible":return`Filter(new() { Visible = ${r==="true"?"true":"false"} })`;case"role":const o=[];We(l.name)?o.push(`NameRegex = ${this.regexToString(l.name)}`):typeof l.name=="string"&&o.push(`Name = ${this.quote(l.name)}`),We(l.description)?o.push(`DescriptionRegex = ${this.regexToString(l.description)}`):typeof l.description=="string"&&o.push(`Description = ${this.quote(l.description)}`),l.exact&&(typeof l.name=="string"||typeof l.description=="string")&&o.push("Exact = true");for(const{name:f,value:d}of l.attrs)o.push(`${sc(f)} = ${typeof d=="string"?this.quote(d):d}`);const u=o.length?`, new() { ${o.join(", ")} }`:"";return`GetByRole(AriaRole.${sc(r)}${u})`;case"has-text":return`Filter(new() { ${this.toHasText(r)} })`;case"has-not-text":return`Filter(new() { ${this.toHasNotText(r)} })`;case"has":return`Filter(new() { Has = ${r} })`;case"hasNot":return`Filter(new() { HasNot = ${r} })`;case"and":return`And(${r})`;case"or":return`Or(${r})`;case"chain":return`Locator(${r})`;case"test-id":return`GetByTestId(${this.toTestIdValue(r)})`;case"text":return this.toCallWithExact("GetByText",r,!!l.exact);case"alt":return this.toCallWithExact("GetByAltText",r,!!l.exact);case"placeholder":return this.toCallWithExact("GetByPlaceholder",r,!!l.exact);case"label":return this.toCallWithExact("GetByLabel",r,!!l.exact);case"title":return this.toCallWithExact("GetByTitle",r,!!l.exact);default:throw new Error("Unknown selector kind "+i)}}chainLocators(e){return e.join(".")}regexToString(e){const i=e.flags.includes("i")?", RegexOptions.IgnoreCase":"";return`new Regex(${this.quote(gc(e.source))}${i})`}toCallWithExact(e,i,r){return We(i)?`${e}(${this.regexToString(i)})`:r?`${e}(${this.quote(i)}, new() { Exact = true })`:`${e}(${this.quote(i)})`}toHasText(e){return We(e)?`HasTextRegex = ${this.regexToString(e)}`:`HasText = ${this.quote(e)}`}toTestIdValue(e){return We(e)?this.regexToString(e):this.quote(e)}toHasNotText(e){return We(e)?`HasNotTextRegex = ${this.regexToString(e)}`:`HasNotText = ${this.quote(e)}`}quote(e){return pc(e,'"')}}class v_{generateLocator(e,i,r,l={}){return JSON.stringify({kind:i,body:r,options:l})}chainLocators(e){const i=e.map(r=>JSON.parse(r));for(let r=0;r<i.length-1;++r)i[r].next=i[r+1];return JSON.stringify(i[0])}}const Bb={javascript:g_,python:m_,java:y_,csharp:b_,jsonl:v_};function We(n){return n instanceof RegExp}const c0=new Map;function S_({name:n,rootItem:e,render:i,title:r,icon:l,isError:o,isVisible:u,selectedItem:f,onAccepted:d,onSelected:g,onHighlighted:m,treeState:y,setTreeState:S,noItemsMessage:w,dataTestId:E,autoExpandDepth:x,revealSelectedKey:_}){const A=R.useMemo(()=>w_(e,f,y.expandedItems,x||0,u),[e,f,y,x,u]),C=R.useRef(null),[H,V]=R.useState();R.useEffect(()=>{m==null||m(H)},[m,H]),R.useEffect(()=>{const j=C.current;if(!j)return;const I=()=>{c0.set(n,j.scrollTop)};return j.addEventListener("scroll",I,{passive:!0}),()=>j.removeEventListener("scroll",I)},[n]),R.useEffect(()=>{C.current&&(C.current.scrollTop=c0.get(n)||0)},[n]),R.useEffect(()=>{var I;if(_===void 0)return;const j=(I=C.current)==null?void 0:I.querySelector('[aria-selected="true"]');j&&Wh(j)},[_]);const K=R.useCallback(j=>{const{expanded:I}=A.get(j);if(I){for(let O=f;O;O=O.parent)if(O===j){g==null||g(j);break}y.expandedItems.set(j.id,!1)}else y.expandedItems.set(j.id,!0);S({...y})},[A,f,g,y,S]),Q=R.useCallback(j=>{const{expanded:I}=A.get(j),O=[j];for(;O.length;){const P=O.pop();O.push(...P.children),y.expandedItems.set(P.id,!I)}S({...y})},[A,y,S]);return v.jsx("div",{className:ct("tree-view vbox",n+"-tree-view"),"data-testid":E||n+"-tree",children:v.jsxs("div",{className:ct("tree-view-content"),role:A.size>0?"tree":void 0,tabIndex:0,onKeyDown:j=>{if(f&&j.key==="Enter"){d==null||d(f);return}if(j.key!=="ArrowDown"&&j.key!=="ArrowUp"&&j.key!=="ArrowLeft"&&j.key!=="ArrowRight")return;if(j.stopPropagation(),j.preventDefault(),f&&j.key==="ArrowLeft"){const{expanded:O,parent:P}=A.get(f);O?(y.expandedItems.set(f.id,!1),S({...y})):P&&(g==null||g(P));return}if(f&&j.key==="ArrowRight"){f.children.length&&(y.expandedItems.set(f.id,!0),S({...y}));return}let I=f;if(j.key==="ArrowDown"&&(f?I=A.get(f).next:A.size&&(I=[...A.keys()][0])),j.key==="ArrowUp"){if(f)I=A.get(f).prev;else if(A.size){const O=[...A.keys()];I=O[O.length-1]}}m==null||m(void 0),I&&(g==null||g(I)),V(void 0)},ref:C,children:[w&&A.size===0&&v.jsx("div",{className:"tree-view-empty",children:w}),e.children.map(j=>A.get(j)&&v.jsx(qb,{item:j,treeItems:A,selectedItem:f,onSelected:g,onAccepted:d,isError:o,toggleExpanded:K,toggleSubtree:Q,highlightedItem:H,setHighlightedItem:V,render:i,icon:l,title:r},j.id))]})})}function qb({item:n,treeItems:e,selectedItem:i,onSelected:r,highlightedItem:l,setHighlightedItem:o,isError:u,onAccepted:f,toggleExpanded:d,toggleSubtree:g,render:m,title:y,icon:S}){const w=R.useId(),E=R.useRef(null);R.useEffect(()=>{(i==null?void 0:i.id)===n.id&&E.current&&Wh(E.current)},[n.id,i==null?void 0:i.id]);const x=e.get(n),_=x.depth,A=x.expanded;let C="codicon-blank";typeof A=="boolean"&&(C=A?"codicon-chevron-down":"codicon-chevron-right");const H=m(n),V=A&&n.children.length?n.children:[],K=y==null?void 0:y(n),Q=(S==null?void 0:S(n))||"codicon-blank";return v.jsxs("div",{ref:E,role:"treeitem","aria-selected":n===i,"aria-expanded":A,"aria-controls":w,title:K,className:"vbox",style:{flex:"none"},children:[v.jsxs("div",{onDoubleClick:()=>f==null?void 0:f(n),className:ct("tree-view-entry",i===n&&"selected",l===n&&"highlighted",(u==null?void 0:u(n))&&"error"),onClick:()=>r==null?void 0:r(n),onMouseEnter:()=>o(n),onMouseLeave:()=>o(void 0),children:[_?new Array(_).fill(0).map((j,I)=>v.jsx("div",{className:"tree-view-indent"},"indent-"+I)):void 0,v.jsx("div",{"aria-hidden":"true",className:"codicon "+C,style:{minWidth:16,marginRight:4},onDoubleClick:j=>{j.preventDefault(),j.stopPropagation()},onClick:j=>{j.stopPropagation(),j.preventDefault(),j.altKey?g(n):d(n)}}),S&&v.jsx("div",{className:"codicon "+Q,style:{minWidth:16,marginRight:4},"aria-label":"["+Q.replace("codicon","icon")+"]"}),typeof H=="string"?v.jsx("div",{style:{textOverflow:"ellipsis",overflow:"hidden"},children:H}):H]}),!!V.length&&v.jsx("div",{id:w,role:"group",children:V.map(j=>e.get(j)&&v.jsx(qb,{item:j,treeItems:e,selectedItem:i,onSelected:r,onAccepted:f,isError:u,toggleExpanded:d,toggleSubtree:g,highlightedItem:l,setHighlightedItem:o,render:m,title:y,icon:S},j.id))})]})}function jh(n,e,i){const r=i.get(n.id);if(r!==void 0)return r;const l=e(n),o=l==="if-needed"?n.children.some(u=>jh(u,e,i)):l;return i.set(n.id,o),o}function w_(n,e,i,r,l=()=>!0){const o=new Map;if(!jh(n,l,o))return new Map;const u=new Map,f=new Set;for(let m=e==null?void 0:e.parent;m;m=m.parent)f.add(m.id);let d=null;const g=(m,y)=>{for(const S of m.children){if(!jh(S,l,o))continue;const w=f.has(S.id)||i.get(S.id),E=r>y&&u.size<25&&w!==!1,x=S.children.length?w??E:void 0,_={depth:y,expanded:x,parent:n===m?null:m,next:null,prev:d};d&&(u.get(d).next=S),d=S,u.set(S,_),x&&g(S,y+1)}};return g(n,0),u}const pt=R.forwardRef(function({children:e,title:i="",icon:r,disabled:l=!1,toggled:o=!1,onClick:u=()=>{},style:f,testId:d,className:g,ariaLabel:m,errorBadge:y},S){const w=R.useId();return v.jsxs("button",{ref:S,className:ct(g,"toolbar-button",r,o&&"toggled"),onMouseDown:u0,onClick:u,onDoubleClick:u0,title:i,disabled:!!l,style:f,"data-testid":d,"aria-label":m||i,"aria-describedby":y?w:void 0,children:[r&&v.jsx("span",{className:`codicon codicon-${r}`,style:e?{marginRight:5}:{}}),e,y&&v.jsx("span",{id:w,className:"toolbar-button-error-badge",title:y,"aria-label":y})]})}),u0=n=>{n.stopPropagation(),n.preventDefault()};function $b(n){return n==="scheduled"?"codicon-clock":n==="running"?"codicon-loading":n==="failed"?"codicon-error":n==="passed"?"codicon-check":n==="skipped"?"codicon-circle-slash":"codicon-circle-outline"}function x_(n){return n==="scheduled"?"Pending":n==="running"?"Running":n==="failed"?"Failed":n==="passed"?"Passed":n==="skipped"?"Skipped":"Did not run"}const __=S_,E_=({actions:n,selectedAction:e,selectedTime:i,setSelectedTime:r,treeState:l,setTreeState:o,sdkLanguage:u,onSelected:f,onHighlighted:d,revealConsole:g,revealActionAttachment:m,isLive:y,actionFilterText:S})=>{const{rootItem:w,itemMap:E}=R.useMemo(()=>pb(n),[n]),{selectedItem:x}=R.useMemo(()=>({selectedItem:e?E.get(e.callId):void 0}),[E,e]),_=R.useCallback(O=>{var P;return!!((P=O.action.error)!=null&&P.message)},[]),A=R.useCallback(O=>r({minimum:O.action.startTime,maximum:O.action.endTime}),[r]),C=R.useCallback(O=>{var J;const P=!!m&&!!((J=O.action.attachments)!=null&&J.length);return ad(O.action,{sdkLanguage:u,revealConsole:g,revealActionAttachment:()=>m==null?void 0:m(O.action.callId),isLive:y,showDuration:!0,showBadges:!0,showAttachments:P})},[y,g,m,u]),H=R.useCallback(O=>{if(!(!i||!O.action||O.action.startTime<=i.maximum&&O.action.endTime>=i.minimum))return!1;const J=ld(O.action).title;return S?J.toLowerCase().includes(S.toLowerCase())?!0:"if-needed":!0},[i,S]),V=R.useCallback(O=>{f==null||f(O.action)},[f]),K=R.useCallback(O=>{d==null||d(O==null?void 0:O.action)},[d]),[Q,j]=R.useState(),I=R.useCallback(()=>{r(void 0),j(O=>(O??0)+1)},[r]);return v.jsxs("div",{className:"vbox action-list-container",children:[i&&v.jsxs("div",{className:"action-list-show-all",onClick:I,children:[v.jsx("span",{className:"codicon codicon-triangle-left"}),"Show all"]}),v.jsx(__,{name:"actions",rootItem:w,treeState:l,setTreeState:o,selectedItem:x,onSelected:V,onHighlighted:K,onAccepted:A,isError:_,isVisible:H,render:C,autoExpandDepth:S!=null&&S.trim()?5:0,revealSelectedKey:Q})]})},ad=(n,e)=>{var _;const{sdkLanguage:i,revealConsole:r,revealActionAttachment:l,isLive:o,showDuration:u,showBadges:f,showAttachments:d}=e,{errors:g,warnings:m}=Bx(n),y=n.params.selector?Ub(i||"javascript",n.params.selector):void 0,S=n.class==="Test"&&n.method==="test.step"&&((_=n.annotations)==null?void 0:_.some(A=>A.type==="skip"));let w="";n.endTime?w=_t(n.endTime-n.startTime):n.error?w="Timed out":o||(w="-");const{elements:E,title:x}=ld(n);return v.jsxs("div",{className:"action-title vbox",children:[v.jsxs("div",{className:"hbox",children:[v.jsx("span",{className:"action-title-method",title:x,children:E}),(u||f||d||S)&&v.jsx("div",{className:"spacer"}),d&&v.jsx(pt,{icon:"attach",title:"Open Attachment",onClick:()=>l==null?void 0:l()}),u&&!S&&v.jsx("div",{className:"action-duration",children:w||v.jsx("span",{className:"codicon codicon-loading"})}),S&&v.jsx("span",{className:ct("action-skipped","codicon",$b("skipped")),title:"skipped"}),f&&v.jsxs("div",{className:"action-icons",onClick:()=>r==null?void 0:r(),children:[!!g&&v.jsxs("div",{className:"action-icon",children:[v.jsx("span",{className:"codicon codicon-error"}),v.jsx("span",{className:"action-icon-value",children:g})]}),!!m&&v.jsxs("div",{className:"action-icon",children:[v.jsx("span",{className:"codicon codicon-warning"}),v.jsx("span",{className:"action-icon-value",children:m})]})]})]}),y&&v.jsx("div",{className:"action-title-selector",title:y,children:y})]})};function ld(n,e){var g;let i=n.title??((g=td({type:n.class,method:n.method}))==null?void 0:g.title)??n.method;i=i.replace(/\n/g," ");const r=[],l=[];let o=0;const u=/\{([^}]+)\}/g;let f;for(;(f=u.exec(i))!==null;){const[m,y]=f,S=i.slice(o,f.index);r.push(S),l.push(S);const w=ub(n.params,y);w===void 0?(r.push(m),l.push(m)):f.index===0?(r.push(w),l.push(w)):(r.push(v.jsx("span",{className:"action-title-param",children:w},r.length)),l.push(w)),o=f.index+m.length}if(o<i.length){const m=i.slice(o);r.push(m),l.push(m)}const d=n.params.selector?Ub("javascript",n.params.selector):void 0;return d&&(l.push(" "),l.push(d)),{elements:r,title:l.join("")}}const od=({value:n,description:e})=>{const[i,r]=R.useState("copy"),l=R.useCallback(()=>{(typeof n=="function"?n():Promise.resolve(n)).then(u=>{navigator.clipboard.writeText(u).then(()=>{r("check"),setTimeout(()=>{r("copy")},3e3)},()=>{r("close")})},()=>{r("close")})},[n]);return v.jsx(pt,{title:e||"Copy",icon:i,onClick:l})},Yo=({value:n,description:e,copiedDescription:i=e,style:r})=>{const[l,o]=R.useState(!1),u=R.useCallback(async()=>{const f=typeof n=="function"?await n():n;await navigator.clipboard.writeText(f),o(!0),setTimeout(()=>o(!1),3e3)},[n]);return v.jsx(pt,{style:r,title:e,onClick:u,className:"copy-to-clipboard-text-button",children:l?i:e})},ps=({text:n})=>v.jsx("div",{className:"fill",style:{display:"flex",alignItems:"center",justifyContent:"center",fontSize:24,fontWeight:"bold",opacity:.5},children:n}),T_=({action:n,startTimeOffset:e,sdkLanguage:i})=>{const r=R.useMemo(()=>Object.keys((n==null?void 0:n.params)??{}).filter(f=>f!=="info"),[n]);if(!n)return v.jsx(ps,{text:"No action selected"});const l=n.startTime-e,o=_t(l),{title:u}=ld(n);return v.jsxs("div",{className:"call-tab",children:[v.jsx("div",{className:"call-line",children:u}),v.jsx("div",{className:"call-section",children:"Time"}),jo({name:"start",type:"literal",text:o}),jo({name:"duration",type:"literal",text:A_(n)}),!!r.length&&v.jsxs(v.Fragment,{children:[v.jsx("div",{className:"call-section",children:"Parameters"}),r.map(f=>jo(f0(n,f,n.params[f],i)))]}),!!n.result&&v.jsxs(v.Fragment,{children:[v.jsx("div",{className:"call-section",children:"Return value"}),Object.keys(n.result).map(f=>jo(f0(n,f,n.result[f],i)))]})]})};function A_(n){return n.endTime?_t(n.endTime-n.startTime):n.error?"Timed Out":"Running"}function jo(n){let e=n.text;return e.length>1e3&&(e=e.slice(0,1e3)+"…"),e=e.replace(/\n/g,"↵"),n.type==="string"&&(e=`"${e}"`),v.jsxs("div",{className:"call-line",children:[n.name,":",v.jsx("span",{className:ct("call-value",n.type),title:e,children:e}),["literal","string","number","object","locator"].includes(n.type)&&v.jsx(od,{value:n.text})]},n.name)}function f0(n,e,i,r){const l=n.method.includes("eval")||n.method==="waitForFunction";if(e==="files")return{text:"<files>",type:"string",name:e};if((e==="eventInit"||e==="expectedValue"||e==="arg"&&l)&&(i=Qa(i.value,new Array(10).fill({handle:"<handle>"}))),e==="value"&&l&&(i=Qa(i,new Array(10).fill({handle:"<handle>"}))),e==="received"&&n.method==="expect"){const f=i&&typeof i=="object"&&("value"in i||"ariaSnapshot"in i)?i.value:i;i=f!==void 0?Qa(f,new Array(10).fill({handle:"<handle>"})):void 0}if(e==="selector")return{text:Li(r||"javascript",n.params.selector),type:"locator",name:"locator"};const o=typeof i;return o!=="object"||i===null?{text:String(i),type:o,name:e}:i.guid?{text:"<handle>",type:"handle",name:e}:{text:JSON.stringify(i),type:"object",name:e}}function Qa(n,e){if(n.n!==void 0)return n.n;if(n.s!==void 0)return n.s;if(n.b!==void 0)return n.b;if(n.v!==void 0){if(n.v==="undefined")return;if(n.v==="null")return null;if(n.v==="NaN")return NaN;if(n.v==="Infinity")return 1/0;if(n.v==="-Infinity")return-1/0;if(n.v==="-0")return-0}if(n.d!==void 0)return new Date(n.d);if(n.r!==void 0)return new RegExp(n.r.p,n.r.f);if(n.a!==void 0)return n.a.map(i=>Qa(i,e));if(n.o!==void 0){const i={};for(const{k:r,v:l}of n.o)i[r]=Qa(l,e);return i}return n.h!==void 0?e===void 0?"<object>":e[n.h]:"<object>"}const h0=new Map;function mc({name:n,items:e=[],id:i,render:r,icon:l,isError:o,isWarning:u,isInfo:f,selectedItem:d,onAccepted:g,onSelected:m,onHighlighted:y,onIconClicked:S,noItemsMessage:w,dataTestId:E,notSelectable:x,ariaLabel:_}){const A=R.useRef(null),[C,H]=R.useState();return R.useEffect(()=>{y==null||y(C)},[y,C]),R.useEffect(()=>{const V=A.current;if(!V)return;const K=()=>{h0.set(n,V.scrollTop)};return V.addEventListener("scroll",K,{passive:!0}),()=>V.removeEventListener("scroll",K)},[n]),R.useEffect(()=>{A.current&&(A.current.scrollTop=h0.get(n)||0)},[n]),v.jsx("div",{className:ct("list-view vbox",n+"-list-view"),role:e.length>0?"listbox":void 0,"aria-label":_,children:v.jsxs("div",{className:ct("list-view-content",x&&"not-selectable"),tabIndex:0,onKeyDown:V=>{var I;if(d&&V.key==="Enter"){g==null||g(d,e.indexOf(d));return}if(V.key!=="ArrowDown"&&V.key!=="ArrowUp")return;V.stopPropagation(),V.preventDefault();const K=d?e.indexOf(d):-1;let Q=K;V.key==="ArrowDown"&&(K===-1?Q=0:Q=Math.min(K+1,e.length-1)),V.key==="ArrowUp"&&(K===-1?Q=e.length-1:Q=Math.max(K-1,0));const j=(I=A.current)==null?void 0:I.children.item(Q);Wh(j||void 0),y==null||y(void 0),m==null||m(e[Q],Q),H(void 0)},ref:A,children:[w&&e.length===0&&v.jsx("div",{className:"list-view-empty",children:w}),e.map((V,K)=>{const Q=r(V,K);return v.jsxs("div",{onDoubleClick:()=>g==null?void 0:g(V,K),role:"option",className:ct("list-view-entry",d===V&&"selected",!x&&C===V&&"highlighted",(o==null?void 0:o(V,K))&&"error",(u==null?void 0:u(V,K))&&"warning",(f==null?void 0:f(V,K))&&"info"),"aria-selected":d===V,onClick:()=>m==null?void 0:m(V,K),onMouseEnter:()=>H(V),onMouseLeave:()=>H(void 0),children:[l&&v.jsx("div",{className:"codicon "+(l(V,K)||"codicon-blank"),style:{minWidth:16,marginRight:4},onDoubleClick:j=>{j.preventDefault(),j.stopPropagation()},onClick:j=>{j.stopPropagation(),j.preventDefault(),S==null||S(V,K)}}),typeof Q=="string"?v.jsx("div",{style:{textOverflow:"ellipsis",overflow:"hidden"},children:Q}):Q]},(i==null?void 0:i(V,K))||K)})]})})}const C_=mc,N_=({action:n,isLive:e})=>{const i=R.useMemo(()=>{var u;if(!n||!n.log.length)return[];const r=n.log,l=n.context.wallTime-n.context.startTime,o=[];for(let f=0;f<r.length;++f){let d="";if(r[f].time!==-1){const g=(u=r[f])==null?void 0:u.time;f+1<r.length?d=_t(r[f+1].time-g):n.endTime>0?d=_t(n.endTime-g):e?d=_t(Date.now()-l-g):d="-"}o.push({message:r[f].message,time:d})}return o},[n,e]);return i.length?v.jsx(C_,{name:"log",ariaLabel:"Log entries",items:i,render:r=>v.jsxs("div",{className:"log-list-item",children:[v.jsx("span",{className:"log-list-duration",children:r.time}),r.message]}),notSelectable:!0}):v.jsx(ps,{text:"No log entries"})};function il(n,e){const i=/(\x1b\[(\d+(;\d+)*)m)|([^\x1b]+)/g,r=[];let l,o={},u=!1,f=e==null?void 0:e.fg,d=e==null?void 0:e.bg;for(;(l=i.exec(n))!==null;){const[,,g,,m]=l;if(g)for(const y of g.split(";")){const S=+y;switch(S){case 0:o={};break;case 1:o["font-weight"]="bold";break;case 2:o.opacity="0.8";break;case 3:o["font-style"]="italic";break;case 4:o["text-decoration"]="underline";break;case 7:u=!0;break;case 8:o.display="none";break;case 9:o["text-decoration"]="line-through";break;case 22:delete o["font-weight"],delete o["font-style"],delete o.opacity,delete o["text-decoration"];break;case 23:delete o["font-weight"],delete o["font-style"],delete o.opacity;break;case 24:delete o["text-decoration"];break;case 27:u=!1;break;case 30:case 31:case 32:case 33:case 34:case 35:case 36:case 37:f=d0[S-30];break;case 39:f=e==null?void 0:e.fg;break;case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:d=d0[S-40];break;case 49:d=e==null?void 0:e.bg;break;case 53:o["text-decoration"]="overline";break;case 90:case 91:case 92:case 93:case 94:case 95:case 96:case 97:f=p0[S-90];break;case 100:case 101:case 102:case 103:case 104:case 105:case 106:case 107:d=p0[S-100];break}}else if(m){const y={...o},S=u?d:f;S!==void 0&&(y.color=S),u&&f&&(y["background-color"]=f),r.push(`<span style="${M_(y)}">${k_(m)}</span>`)}}return r.join("")}const d0={0:"var(--vscode-terminal-ansiBlack)",1:"var(--vscode-terminal-ansiRed)",2:"var(--vscode-terminal-ansiGreen)",3:"var(--vscode-terminal-ansiYellow)",4:"var(--vscode-terminal-ansiBlue)",5:"var(--vscode-terminal-ansiMagenta)",6:"var(--vscode-terminal-ansiCyan)",7:"var(--vscode-terminal-ansiWhite)"},p0={0:"var(--vscode-terminal-ansiBrightBlack)",1:"var(--vscode-terminal-ansiBrightRed)",2:"var(--vscode-terminal-ansiBrightGreen)",3:"var(--vscode-terminal-ansiBrightYellow)",4:"var(--vscode-terminal-ansiBrightBlue)",5:"var(--vscode-terminal-ansiBrightMagenta)",6:"var(--vscode-terminal-ansiBrightCyan)",7:"var(--vscode-terminal-ansiBrightWhite)"};function k_(n){return n.replace(/[&"<>]/g,e=>({"&":"&amp;",'"':"&quot;","<":"&lt;",">":"&gt;"})[e])}function M_(n){return Object.entries(n).map(([e,i])=>`${e}: ${i}`).join("; ")}const O_=({error:n})=>{const e=R.useMemo(()=>il(n,{bg:"var(--vscode-editor-background)",fg:"var(--vscode-editor-foreground)"}),[n]);return v.jsx("div",{className:"error-message",dangerouslySetInnerHTML:{__html:e||""}})},Ib=({cursor:n,onPaneMouseMove:e,onPaneMouseUp:i,onPaneDoubleClick:r})=>(Et.useEffect(()=>{const l=document.createElement("div");return l.style.position="fixed",l.style.top="0",l.style.right="0",l.style.bottom="0",l.style.left="0",l.style.zIndex="9999",l.style.cursor=n,document.body.appendChild(l),e&&l.addEventListener("mousemove",e),i&&l.addEventListener("mouseup",i),r&&document.body.addEventListener("dblclick",r),()=>{e&&l.removeEventListener("mousemove",e),i&&l.removeEventListener("mouseup",i),r&&document.body.removeEventListener("dblclick",r),document.body.removeChild(l)}},[n,e,i,r]),v.jsx(v.Fragment,{})),j_={position:"absolute",top:0,right:0,bottom:0,left:0},Vb=({orientation:n,offsets:e,setOffsets:i,resizerColor:r,resizerWidth:l,minColumnWidth:o})=>{const u=o||0,[f,d]=Et.useState(null),[g,m]=ds(),y={position:"absolute",right:n==="horizontal"?void 0:0,bottom:n==="horizontal"?0:void 0,width:n==="horizontal"?7:void 0,height:n==="horizontal"?void 0:7,borderTopWidth:n==="horizontal"?void 0:(7-l)/2,borderRightWidth:n==="horizontal"?(7-l)/2:void 0,borderBottomWidth:n==="horizontal"?void 0:(7-l)/2,borderLeftWidth:n==="horizontal"?(7-l)/2:void 0,borderColor:"transparent",borderStyle:"solid",cursor:n==="horizontal"?"ew-resize":"ns-resize"};return v.jsxs("div",{style:{position:"absolute",top:0,right:0,bottom:0,left:-(7-l)/2,zIndex:100,pointerEvents:"none"},ref:m,children:[!!f&&v.jsx(Ib,{cursor:n==="horizontal"?"ew-resize":"ns-resize",onPaneMouseUp:()=>d(null),onPaneMouseMove:S=>{if(!S.buttons)d(null);else if(f){const w=n==="horizontal"?S.clientX-f.clientX:S.clientY-f.clientY,E=f.offset+w,x=f.index>0?e[f.index-1]:0,_=n==="horizontal"?g.width:g.height,A=Math.min(Math.max(x+u,E),_-u)-e[f.index];for(let C=f.index;C<e.length;++C)e[C]=e[C]+A;i([...e])}}}),e.map((S,w)=>v.jsx("div",{style:{...y,top:n==="horizontal"?0:S,left:n==="horizontal"?S:0,pointerEvents:"initial"},onMouseDown:E=>d({clientX:E.clientX,clientY:E.clientY,offset:S,index:w}),children:v.jsx("div",{style:{...j_,background:r}})},w))]})};async function oh(n){const e=new Image;return n&&(e.src=n,await new Promise((i,r)=>{e.onload=i,e.onerror=i})),e}const Lh={backgroundImage:`linear-gradient(45deg, #80808020 25%, transparent 25%),
53
+ linear-gradient(-45deg, #80808020 25%, transparent 25%),
54
+ linear-gradient(45deg, transparent 75%, #80808020 75%),
55
+ linear-gradient(-45deg, transparent 75%, #80808020 75%)`,backgroundSize:"20px 20px",backgroundPosition:"0 0, 0 10px, 10px -10px, -10px 0px",boxShadow:`rgb(0 0 0 / 10%) 0px 1.8px 1.9px,
56
+ rgb(0 0 0 / 15%) 0px 6.1px 6.3px,
57
+ rgb(0 0 0 / 10%) 0px -2px 4px,
58
+ rgb(0 0 0 / 15%) 0px -6.1px 12px,
59
+ rgb(0 0 0 / 25%) 0px 6px 12px`},L_=({diff:n,noTargetBlank:e,hideDetails:i})=>{const[r,l]=R.useState(n.diff?"diff":"actual"),[o,u]=R.useState(!1),[f,d]=R.useState(null),[g,m]=R.useState("Expected"),[y,S]=R.useState(null),[w,E]=R.useState(null),[x,_]=ds();R.useEffect(()=>{(async()=>{var O,P,J,$;d(await oh((O=n.expected)==null?void 0:O.attachment.path)),m(((P=n.expected)==null?void 0:P.title)||"Expected"),S(await oh((J=n.actual)==null?void 0:J.attachment.path)),E(await oh(($=n.diff)==null?void 0:$.attachment.path))})()},[n]);const A=f&&y&&w,C=A?Math.max(f.naturalWidth,y.naturalWidth,200):500,H=A?Math.max(f.naturalHeight,y.naturalHeight,200):500,V=Math.min(1,(x.width-30)/C),K=Math.min(1,(x.width-50)/C/2),Q=C*V,j=H*V,I={flex:"none",margin:"0 10px",cursor:"pointer",userSelect:"none"};return v.jsx("div",{"data-testid":"test-result-image-mismatch",style:{display:"flex",flexDirection:"column",alignItems:"center",flex:"auto"},ref:_,children:A&&v.jsxs(v.Fragment,{children:[v.jsxs("div",{"data-testid":"test-result-image-mismatch-tabs",style:{display:"flex",margin:"10px 0 20px"},children:[n.diff&&v.jsx("div",{style:{...I,fontWeight:r==="diff"?600:"initial"},onClick:()=>l("diff"),children:"Diff"}),v.jsx("div",{style:{...I,fontWeight:r==="actual"?600:"initial"},onClick:()=>l("actual"),children:"Actual"}),v.jsx("div",{style:{...I,fontWeight:r==="expected"?600:"initial"},onClick:()=>l("expected"),children:g}),v.jsx("div",{style:{...I,fontWeight:r==="sxs"?600:"initial"},onClick:()=>l("sxs"),children:"Side by side"}),v.jsx("div",{style:{...I,fontWeight:r==="slider"?600:"initial"},onClick:()=>l("slider"),children:"Slider"})]}),v.jsxs("div",{style:{display:"flex",justifyContent:"center",flex:"auto",minHeight:j+60},children:[n.diff&&r==="diff"&&v.jsx(Wn,{image:w,alt:"Diff",hideSize:i,canvasWidth:Q,canvasHeight:j,scale:V}),n.diff&&r==="actual"&&v.jsx(Wn,{image:y,alt:"Actual",hideSize:i,canvasWidth:Q,canvasHeight:j,scale:V}),n.diff&&r==="expected"&&v.jsx(Wn,{image:f,alt:g,hideSize:i,canvasWidth:Q,canvasHeight:j,scale:V}),n.diff&&r==="slider"&&v.jsx(R_,{expectedImage:f,actualImage:y,hideSize:i,canvasWidth:Q,canvasHeight:j,scale:V,expectedTitle:g}),n.diff&&r==="sxs"&&v.jsxs("div",{style:{display:"flex"},children:[v.jsx(Wn,{image:f,title:g,hideSize:i,canvasWidth:K*C,canvasHeight:K*H,scale:K}),v.jsx(Wn,{image:o?w:y,title:o?"Diff":"Actual",onClick:()=>u(!o),hideSize:i,canvasWidth:K*C,canvasHeight:K*H,scale:K})]}),!n.diff&&r==="actual"&&v.jsx(Wn,{image:y,title:"Actual",hideSize:i,canvasWidth:Q,canvasHeight:j,scale:V}),!n.diff&&r==="expected"&&v.jsx(Wn,{image:f,title:g,hideSize:i,canvasWidth:Q,canvasHeight:j,scale:V}),!n.diff&&r==="sxs"&&v.jsxs("div",{style:{display:"flex"},children:[v.jsx(Wn,{image:f,title:g,canvasWidth:K*C,canvasHeight:K*H,scale:K}),v.jsx(Wn,{image:y,title:"Actual",canvasWidth:K*C,canvasHeight:K*H,scale:K})]})]}),!i&&v.jsxs("div",{style:{alignSelf:"start",lineHeight:"18px",marginLeft:"15px"},children:[v.jsx("div",{children:n.diff&&v.jsx("a",{target:"_blank",href:n.diff.attachment.path,rel:"noreferrer",children:n.diff.attachment.name})}),v.jsx("div",{children:v.jsx("a",{target:e?"":"_blank",href:n.actual.attachment.path,rel:"noreferrer",children:n.actual.attachment.name})}),v.jsx("div",{children:v.jsx("a",{target:e?"":"_blank",href:n.expected.attachment.path,rel:"noreferrer",children:n.expected.attachment.name})})]})]})})},R_=({expectedImage:n,actualImage:e,canvasWidth:i,canvasHeight:r,scale:l,expectedTitle:o,hideSize:u})=>{const f={position:"absolute",top:0,left:0},[d,g]=R.useState(i/2),m=n.naturalWidth===e.naturalWidth&&n.naturalHeight===e.naturalHeight;return v.jsxs("div",{style:{flex:"none",display:"flex",alignItems:"center",flexDirection:"column",userSelect:"none"},children:[!u&&v.jsxs("div",{style:{margin:5},children:[!m&&v.jsx("span",{style:{flex:"none",margin:"0 5px"},children:"Actual "}),!m&&v.jsx("span",{children:e.naturalWidth}),!m&&v.jsx("span",{style:{flex:"none",margin:"0 5px"},children:"x"}),!m&&v.jsx("span",{children:e.naturalHeight}),!m&&v.jsxs("span",{style:{flex:"none",margin:"0 5px 0 15px"},children:[o," "]}),v.jsx("span",{children:n.naturalWidth}),v.jsx("span",{style:{flex:"none",margin:"0 5px"},children:"x"}),v.jsx("span",{children:n.naturalHeight})]}),v.jsxs("div",{style:{position:"relative",width:i,height:r,margin:15,...Lh},children:[v.jsx(Vb,{orientation:"horizontal",offsets:[d],setOffsets:y=>g(y[0]),resizerColor:"#57606a80",resizerWidth:6}),v.jsx("img",{alt:o,style:{width:n.naturalWidth*l,height:n.naturalHeight*l},draggable:"false",src:n.src}),v.jsx("div",{style:{...f,bottom:0,overflow:"hidden",width:d,...Lh},children:v.jsx("img",{alt:"Actual",style:{width:e.naturalWidth*l,height:e.naturalHeight*l},draggable:"false",src:e.src})})]})]})},Wn=({image:n,title:e,alt:i,hideSize:r,canvasWidth:l,canvasHeight:o,scale:u,onClick:f})=>v.jsxs("div",{style:{flex:"none",display:"flex",alignItems:"center",flexDirection:"column"},children:[!r&&v.jsxs("div",{style:{margin:5},children:[e&&v.jsx("span",{style:{flex:"none",margin:"0 5px"},children:e}),v.jsx("span",{children:n.naturalWidth}),v.jsx("span",{style:{flex:"none",margin:"0 5px"},children:"x"}),v.jsx("span",{children:n.naturalHeight})]}),v.jsx("div",{style:{display:"flex",flex:"none",width:l,height:o,margin:15,...Lh},children:v.jsx("img",{width:n.naturalWidth*u,height:n.naturalHeight*u,alt:e||i,style:{cursor:f?"pointer":"initial"},draggable:"false",src:n.src,onClick:f})})]}),D_="modulepreload",z_=function(n,e){return new URL(n,e).href},g0={},U_=function(e,i,r){let l=Promise.resolve();if(i&&i.length>0){let u=function(m){return Promise.all(m.map(y=>Promise.resolve(y).then(S=>({status:"fulfilled",value:S}),S=>({status:"rejected",reason:S}))))};const f=document.getElementsByTagName("link"),d=document.querySelector("meta[property=csp-nonce]"),g=(d==null?void 0:d.nonce)||(d==null?void 0:d.getAttribute("nonce"));l=u(i.map(m=>{if(m=z_(m,r),m in g0)return;g0[m]=!0;const y=m.endsWith(".css"),S=y?'[rel="stylesheet"]':"";if(!!r)for(let x=f.length-1;x>=0;x--){const _=f[x];if(_.href===m&&(!y||_.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${m}"]${S}`))return;const E=document.createElement("link");if(E.rel=y?"stylesheet":D_,y||(E.as="script"),E.crossOrigin="",E.href=m,g&&E.setAttribute("nonce",g),document.head.appendChild(E),y)return new Promise((x,_)=>{E.addEventListener("load",x),E.addEventListener("error",()=>_(new Error(`Unable to preload CSS for ${m}`)))})}))}function o(u){const f=new Event("vite:preloadError",{cancelable:!0});if(f.payload=u,window.dispatchEvent(f),!f.defaultPrevented)throw u}return l.then(u=>{for(const f of u||[])f.status==="rejected"&&o(f.reason);return e().catch(o)})},H_=20,Cr=({text:n,highlighter:e,mimeType:i,linkify:r,readOnly:l,highlight:o,revealLine:u,lineNumbers:f,isFocused:d,focusOnChange:g,wrapLines:m,onChange:y,dataTestId:S,placeholder:w})=>{const[E,x]=ds(),[_]=R.useState(U_(()=>import("./codeMirrorModule-CnvO0fko.js"),__vite__mapDeps([0,1,2]),import.meta.url).then(V=>V.default)),A=R.useRef(null),[C,H]=R.useState();return R.useEffect(()=>{(async()=>{var I,O;const V=await _;q_(V);const K=x.current;if(!K)return;const Q=I_(e)||$_(i)||(r?"text/linkified":"");if(A.current&&Q===A.current.cm.getOption("mode")&&!!l===A.current.cm.getOption("readOnly")&&f===A.current.cm.getOption("lineNumbers")&&m===A.current.cm.getOption("lineWrapping")&&w===A.current.cm.getOption("placeholder"))return;(O=(I=A.current)==null?void 0:I.cm)==null||O.getWrapperElement().remove();const j=V(K,{value:"",mode:Q,readOnly:!!l,lineNumbers:f,lineWrapping:m,placeholder:w,matchBrackets:!0,autoCloseBrackets:!0,extraKeys:{"Ctrl-F":"findPersistent","Cmd-F":"findPersistent"}});return A.current={cm:j},d&&j.focus(),H(j),j})()},[_,C,x,e,i,r,f,m,l,d,w]),R.useEffect(()=>{A.current&&A.current.cm.setSize(E.width,E.height)},[E]),R.useLayoutEffect(()=>{var Q;if(!C)return;let V=!1;if(C.getValue()!==n&&(C.setValue(n),V=!0,g&&(C.execCommand("selectAll"),C.focus())),V||JSON.stringify(o)!==JSON.stringify(A.current.highlight)){for(const O of A.current.highlight||[])C.removeLineClass(O.line-1,"wrap");for(const O of o||[])C.addLineClass(O.line-1,"wrap",`source-line-${O.type}`);for(const O of A.current.widgets||[])C.removeLineWidget(O);for(const O of A.current.markers||[])O.clear();const j=[],I=[];for(const O of o||[]){if(O.type!=="subtle-error"&&O.type!=="error")continue;const P=(Q=A.current)==null?void 0:Q.cm.getLine(O.line-1);if(P){const J={};J.title=O.message||"",I.push(C.markText({line:O.line-1,ch:0},{line:O.line-1,ch:O.column||P.length},{className:"source-line-error-underline",attributes:J}))}if(O.type==="error"){const J=document.createElement("div");J.innerHTML=il(O.message||"",{bg:"var(--vscode-inputValidation-errorBackground)",fg:"var(--vscode-editor-foreground)"}),J.className="source-line-error-widget",j.push(C.addLineWidget(O.line,J,{above:!0,coverGutter:!1}))}}A.current.highlight=o,A.current.widgets=j,A.current.markers=I}typeof u=="number"&&A.current.cm.lineCount()>=u&&C.scrollIntoView({line:Math.max(0,u-1),ch:0},50);let K;return y&&(K=()=>y(C.getValue()),C.on("change",K)),()=>{K&&C.off("change",K)}},[C,n,o,u,g,y]),v.jsx("div",{"data-testid":S,className:"cm-wrapper",ref:x,onClick:B_})};function B_(n){var i;if(!(n.target instanceof HTMLElement))return;let e;n.target.classList.contains("cm-linkified")?e=n.target.textContent:n.target.classList.contains("cm-link")&&((i=n.target.nextElementSibling)!=null&&i.classList.contains("cm-url"))&&(e=n.target.nextElementSibling.textContent.slice(1,-1)),e&&(n.preventDefault(),n.stopPropagation(),window.open(e,"_blank"))}let m0=!1;function q_(n){m0||(m0=!0,n.defineSimpleMode("text/linkified",{start:[{regex:lb,token:"linkified"}]}))}function $_(n){if(n){if(n.includes("javascript")||n.includes("json"))return"javascript";if(n.includes("python"))return"python";if(n.includes("csharp"))return"text/x-csharp";if(n.includes("java"))return"text/x-java";if(n.includes("markdown"))return"markdown";if(n.includes("html")||n.includes("svg"))return"htmlmixed";if(n.includes("css"))return"css"}}function I_(n){if(n)return{javascript:"javascript",jsonl:"javascript",python:"python",csharp:"text/x-csharp",java:"text/x-java",markdown:"markdown",html:"htmlmixed",css:"css",yaml:"yaml"}[n]}function V_(n){return!!n.match(/^(application\/json|application\/.*?\+json|text\/(x-)?json)(;\s*charset=.*)?$/)}function G_(n){return!!n.match(/^(application\/xml|application\/.*?\+xml|text\/xml)(;\s*charset=.*)?$/)}function K_(n){return!!n.match(/^(text\/.*?|application\/(json|(x-)?javascript|xml.*?|ecmascript|graphql|x-www-form-urlencoded)|image\/svg(\+xml)?|application\/.*?(\+json|\+xml))(;\s*charset=.*)?$/)}const Gb=({title:n,children:e,setExpanded:i,expanded:r,expandOnTitleClick:l,className:o})=>{const u=R.useId(),f=R.useId(),d=R.useCallback(()=>i(!r),[r,i]),g=v.jsx("div",{className:ct("codicon",r?"codicon-chevron-down":"codicon-chevron-right"),style:{cursor:"pointer",color:"var(--vscode-foreground)",marginLeft:"5px"},onClick:l?void 0:d});return v.jsxs("div",{className:ct("expandable",r&&"expanded",o),children:[l?v.jsxs("div",{id:u,role:"button","aria-expanded":r,"aria-controls":f,className:"expandable-title",onClick:d,children:[g,n]}):v.jsxs("div",{className:"expandable-title",children:[g,n]}),r&&v.jsx("div",{id:f,"aria-labelledby":u,role:"region",className:"expandable-content",children:e})]})};function Kb(n){const e=[];let i=0,r;for(;(r=lb.exec(n))!==null;){const o=n.substring(i,r.index);o&&e.push(o);const u=r[0];e.push(X_(u)),i=r.index+u.length}const l=n.substring(i);return l&&e.push(l),e}function X_(n){let e=n;return e.startsWith("www.")&&(e="https://"+e),v.jsx("a",{href:e,target:"_blank",rel:"noopener noreferrer",children:n})}const Xb=R.createContext(void 0),ri=()=>R.useContext(Xb),Y_=({attachment:n,reveal:e})=>{const i=ri(),[r,l]=R.useState(!1),[o,u]=R.useState(null),[f,d]=R.useState(null),[g,m]=yx(),y=R.useRef(null),S=K_(n.contentType),w=!!n.sha1||!!n.path;R.useEffect(()=>{var _;if(e)return(_=y.current)==null||_.scrollIntoView({behavior:"smooth"}),m()},[e,m]),R.useEffect(()=>{r&&o===null&&f===null&&(d("Loading ..."),fetch(yc(i,n)).then(_=>_.text()).then(_=>{u(_),d(null)}).catch(_=>{d("Failed to load: "+_.message)}))},[i,r,o,f,n]);const E=R.useMemo(()=>{const _=o?o.split(`
60
+ `).length:0;return Math.min(Math.max(5,_),20)*H_},[o]),x=v.jsxs("span",{style:{marginLeft:5},ref:y,"aria-label":n.name,children:[v.jsx("span",{children:Kb(n.name)}),w&&v.jsx("a",{style:{marginLeft:5},href:Fo(i,n),children:"download"})]});return!S||!w?v.jsx("div",{style:{marginLeft:20},children:x}):v.jsxs("div",{className:ct(g&&"yellow-flash"),children:[v.jsx(Gb,{title:x,expanded:r,setExpanded:l,expandOnTitleClick:!0,children:f&&v.jsx("i",{children:f})}),r&&o!==null&&v.jsx("div",{className:"vbox",style:{height:E},children:v.jsx(Cr,{text:o,readOnly:!0,mimeType:n.contentType,linkify:!0,lineNumbers:!0,wrapLines:!1})})]})},F_=({revealedAttachmentCallId:n})=>{const e=ri(),{diffMap:i,screenshots:r,attachments:l}=R.useMemo(()=>{const o=new Set((e==null?void 0:e.visibleAttachments)??[]),u=new Set,f=new Map;for(const d of o){if(!d.path&&!d.sha1)continue;const g=d.name.match(/^(.*)-(expected|actual|diff)\.png$/);if(g){const m=g[1],y=g[2],S=f.get(m)||{expected:void 0,actual:void 0,diff:void 0};S[y]=d,f.set(m,S),o.delete(d)}else d.contentType.startsWith("image/")&&(u.add(d),o.delete(d))}return{diffMap:f,attachments:o,screenshots:u}},[e]);return!i.size&&!r.size&&!l.size?v.jsx(ps,{text:"No attachments"}):v.jsxs("div",{className:"attachments-tab",children:[[...i.values()].map(({expected:o,actual:u,diff:f})=>v.jsxs(v.Fragment,{children:[o&&u&&v.jsx("div",{className:"attachments-section",children:"Image diff"}),o&&u&&v.jsx(L_,{noTargetBlank:!0,diff:{name:"Image diff",expected:{attachment:{...o,path:Fo(e,o)},title:"Expected"},actual:{attachment:{...u,path:Fo(e,u)}},diff:f?{attachment:{...f,path:Fo(e,f)}}:void 0}})]})),r.size?v.jsx("div",{className:"attachments-section",children:"Screenshots"}):void 0,[...r.values()].map((o,u)=>{const f=yc(e,o);return v.jsxs("div",{className:"attachment-item",children:[v.jsx("div",{children:v.jsx("img",{draggable:"false",src:f})}),v.jsx("div",{children:v.jsx("a",{target:"_blank",href:f,rel:"noreferrer",children:o.name})})]},`screenshot-${u}`)}),l.size?v.jsx("div",{className:"attachments-section",children:"Attachments"}):void 0,[...l.values()].map((o,u)=>v.jsx("div",{className:"attachment-item",children:v.jsx(Y_,{attachment:o,reveal:n&&o.callId===n.callId?n:void 0})},Q_(o,u)))]})};function yc(n,e){return n&&e.sha1?n.createRelativeUrl(`sha1/${e.sha1}`):`file?path=${encodeURIComponent(e.path)}`}function Fo(n,e){let i=e.contentType?`&dn=${encodeURIComponent(e.name)}`:"";return e.contentType&&(i+=`&dct=${encodeURIComponent(e.contentType)}`),yc(n,e)+i}function Q_(n,e){return e+"-"+(n.sha1?"sha1-"+n.sha1:"path-"+n.path)}const P_=({prompt:n})=>v.jsx(Yo,{value:n,description:"Copy prompt",copiedDescription:v.jsxs(v.Fragment,{children:["Copied ",v.jsx("span",{className:"codicon codicon-copy",style:{marginLeft:"5px"}})]}),style:{width:"120px",justifyContent:"center"}});function J_(n){return R.useMemo(()=>{if(!n)return{errors:new Map};const e=new Map;for(const i of n.errorDescriptors)e.set(i.message,i);return{errors:e}},[n])}function Z_({message:n,error:e,sdkLanguage:i,revealInSource:r}){var f;let l,o;const u=(f=e.stack)==null?void 0:f[0];return u&&(l=u.file.replace(/.*[/\\](.*)/,"$1")+":"+u.line,o=u.file+":"+u.line),v.jsxs("div",{style:{display:"flex",flexDirection:"column",overflowX:"clip"},children:[v.jsxs("div",{className:"hbox",style:{alignItems:"center",padding:"5px 10px",minHeight:36,fontWeight:"bold",color:"var(--vscode-errorForeground)",flex:0},children:[e.action&&ad(e.action,{sdkLanguage:i}),l&&v.jsxs("div",{className:"action-location",children:["@ ",v.jsx("span",{title:o,onClick:()=>r(e),children:l})]})]}),v.jsx(O_,{error:n})]})}const W_=({errorsModel:n,sdkLanguage:e,revealInSource:i,wallTime:r,testRunMetadata:l})=>{const o=ri(),u=Zh(async()=>{const f=o==null?void 0:o.attachments.find(g=>g.name==="error-context");if(!f)return;let d=await fetch(yc(o,f)).then(g=>g.text());if(d)return l!=null&&l.gitDiff&&(d+=`
61
+
62
+ # Local changes
63
+
64
+ \`\`\`diff
65
+ `+l.gitDiff+"\n```"),d},[o,l],void 0);return n.errors.size?v.jsxs("div",{className:"fill",style:{overflow:"auto"},children:[v.jsx("span",{style:{position:"absolute",right:"5px",top:"5px",zIndex:1},children:u&&v.jsx(P_,{prompt:u})}),[...n.errors.entries()].map(([f,d])=>{const g=`error-${r}-${f}`;return v.jsx(Z_,{message:f,error:d,revealInSource:i,sdkLanguage:e},g)})]}):v.jsx(ps,{text:"No errors"})},eE=mc,Da={log:{bg:"var(--vscode-editor-background)",fg:"var(--vscode-editor-foreground)"},warning:{fg:"var(--vscode-list-warningForeground)",bg:"var(--vscode-inputValidation-warningBackground)"},error:{fg:"var(--vscode-list-errorForeground)",bg:"var(--vscode-inputValidation-errorBackground)"}};function tE(n,e,i){const{entries:r}=R.useMemo(()=>{if(!n)return{entries:[]};const o=[];function u(d){var y,S,w,E,x,_;const g=o[o.length-1];g&&((y=d.browserMessage)==null?void 0:y.bodyString)===((S=g.browserMessage)==null?void 0:S.bodyString)&&((w=d.browserMessage)==null?void 0:w.location)===((E=g.browserMessage)==null?void 0:E.location)&&d.browserError===g.browserError&&((x=d.nodeMessage)==null?void 0:x.html)===((_=g.nodeMessage)==null?void 0:_.html)&&d.isError===g.isError&&d.isWarning===g.isWarning&&d.timestamp-g.timestamp<1e3?g.repeat++:o.push({...d,repeat:1})}const f=[...n.events,...n.stdio].sort((d,g)=>{const m="time"in d?d.time:d.timestamp,y="time"in g?g.time:g.timestamp;return m-y});for(const d of f){if(d.type==="console"){const g=d.messageType==="error"?Da.error:d.messageType==="warning"?Da.warning:Da.log,m=d.args&&d.args.length?iE(d.args,g):Yb(d.text,g),y=d.location.url,w=`${y?y.substring(y.lastIndexOf("/")+1):"<anonymous>"}:${d.location.lineNumber}`;u({browserMessage:{body:m,bodyString:d.text,location:w},isError:d.messageType==="error",isWarning:d.messageType==="warning",timestamp:d.time})}if(d.type==="event"&&d.method==="pageError"&&u({browserError:d.params.error,isError:!0,isWarning:!1,timestamp:d.time}),d.type==="stderr"||d.type==="stdout"){let g="";const m=d.type==="stderr"?Da.error:Da.log;d.text&&(g=il(d.text.trim(),m)||""),d.base64&&(g=il(atob(d.base64).trim(),m)||""),u({nodeMessage:{html:g},isError:d.type==="stderr",isWarning:!1,timestamp:d.timestamp})}}return{entries:o}},[n,i]);return{entries:R.useMemo(()=>e?r.filter(o=>o.timestamp>=e.minimum&&o.timestamp<=e.maximum):r,[r,e])}}const nE=({consoleModel:n,boundaries:e,onEntryHovered:i,onAccepted:r})=>n.entries.length?v.jsx("div",{className:"console-tab",children:v.jsx(eE,{name:"console",onAccepted:r,onHighlighted:l=>i==null?void 0:i(l?{minimum:l.timestamp,maximum:l.timestamp}:void 0),items:n.entries,isError:l=>l.isError,isWarning:l=>l.isWarning,render:l=>{const o=_t(l.timestamp-e.minimum),u=v.jsx("span",{className:"console-time",children:o}),f=l.isError?"status-error":l.isWarning?"status-warning":"status-none",d=l.browserMessage||l.browserError?v.jsx("span",{className:ct("codicon","codicon-browser",f),title:"Browser message"}):v.jsx("span",{className:ct("codicon","codicon-file",f),title:"Runner message"});let g,m,y,S;const{browserMessage:w,browserError:E,nodeMessage:x}=l;if(w&&(g=w.location,m=w.body),E){const{error:_,value:A}=E;_?(m=_.message,S=_.stack):m=String(A)}return x&&(y=x.html),v.jsxs("div",{className:"console-line",children:[u,d,g&&v.jsx("span",{className:"console-location",children:g}),l.repeat>1&&v.jsx("span",{className:"console-repeat",children:l.repeat}),m&&v.jsx("span",{className:"console-line-message",children:m}),y&&v.jsx("span",{className:"console-line-message",dangerouslySetInnerHTML:{__html:y}}),S&&v.jsx("div",{className:"console-stack",children:S})]})}})}):v.jsx(ps,{text:"No console entries"});function iE(n,e){if(n.length===1)return Yb(n[0].preview,e);const i=typeof n[0].value=="string"&&n[0].value.includes("%"),r=i?n[0].value:"",l=i?n.slice(1):n;let o=0;const u=/%([%sdifoOc])/g;let f;const d=[];let g=[];d.push(v.jsx("span",{children:g},d.length+1));let m=0;for(;(f=u.exec(r))!==null;){const y=r.substring(m,f.index);g.push(v.jsx("span",{children:y},g.length+1)),m=f.index+2;const S=f[0][1];if(S==="%")g.push(v.jsx("span",{children:"%"},g.length+1));else if(S==="s"||S==="o"||S==="O"||S==="d"||S==="i"||S==="f"){const w=l[o++],E={};typeof(w==null?void 0:w.value)!="string"&&(E.color="var(--vscode-debugTokenExpression-number)"),g.push(v.jsx("span",{style:E,children:(w==null?void 0:w.preview)||""},g.length+1))}else if(S==="c"){g=[];const w=l[o++],E=w?sE(w.preview):{};d.push(v.jsx("span",{style:E,children:g},d.length+1))}}for(m<r.length&&g.push(v.jsx("span",{children:r.substring(m)},g.length+1));o<l.length;o++){const y=l[o],S={};g.length&&g.push(v.jsx("span",{children:" "},g.length+1)),typeof(y==null?void 0:y.value)!="string"&&(S.color="var(--vscode-debugTokenExpression-number)"),g.push(v.jsx("span",{style:S,children:(y==null?void 0:y.preview)||""},g.length+1))}return d}function Yb(n,e){return[v.jsx("span",{dangerouslySetInnerHTML:{__html:il(n.trim(),e)}})]}function sE(n){try{const e={},i=n.split(";");for(const r of i){const l=r.trim();if(!l)continue;let[o,u]=l.split(":");if(o=o.trim(),u=u.trim(),!rE(o))continue;const f=o.replace(/-([a-z])/g,d=>d[1].toUpperCase());e[f]=u}return e}catch{return{}}}function rE(n){return["background","border","color","font","line","margin","padding","text"].some(i=>n.startsWith(i))}const bc=({noShadow:n,children:e,noMinHeight:i,className:r,sidebarBackground:l,onClick:o})=>v.jsx("div",{className:ct("toolbar",n&&"no-shadow",i&&"no-min-height",r,l&&"toolbar-sidebar-background"),onClick:o,children:e}),Rh=({tabs:n,selectedTab:e,setSelectedTab:i,leftToolbar:r,rightToolbar:l,dataTestId:o,mode:u})=>{const f=R.useId(),d=R.useRef(null);e||(e=n[0].id),u||(u="default");const g=m=>{var E;const y=Array.from(((E=d.current)==null?void 0:E.querySelectorAll('[role="tab"]'))??[]),S=y.findIndex(x=>x===document.activeElement);if(S===-1)return;let w=S;if(m.key==="ArrowRight")w=(S+1)%y.length;else if(m.key==="ArrowLeft")w=(S-1+y.length)%y.length;else if(m.key==="Home")w=0;else if(m.key==="End")w=y.length-1;else return;m.preventDefault(),y[w].focus(),i==null||i(n[w].id)};return v.jsx("div",{className:"tabbed-pane","data-testid":o,children:v.jsxs("div",{className:"vbox",children:[v.jsxs(bc,{children:[r&&v.jsxs("div",{style:{flex:"none",display:"flex",margin:"0 4px",alignItems:"center"},children:[...r]}),u==="default"&&v.jsx("div",{style:{flex:"auto",display:"flex",height:"100%",overflow:"hidden"},role:"tablist",onKeyDown:g,ref:d,children:[...n.map(m=>v.jsx(Fb,{id:m.id,ariaControls:`${f}-${m.id}`,title:m.title,count:m.count,errorCount:m.errorCount,selected:e===m.id,onSelect:i,tabIndex:e===m.id?0:-1},m.id))]}),u==="select"&&v.jsx("div",{style:{flex:"auto",display:"flex",height:"100%",overflow:"hidden"},role:"tablist",children:v.jsx("select",{style:{width:"100%",background:"none",cursor:"pointer"},value:e,onChange:m=>{i==null||i(n[m.currentTarget.selectedIndex].id)},children:n.map(m=>{let y="";return m.count&&(y=` (${m.count})`),m.errorCount&&(y=` (${m.errorCount})`),v.jsxs("option",{value:m.id,role:"tab","aria-controls":`${f}-${m.id}`,children:[m.title,y]},m.id)})})}),l&&v.jsxs("div",{style:{flex:"none",display:"flex",alignItems:"center"},children:[...l]})]}),n.map(m=>{const y="tab-content tab-"+m.id;if(m.component)return v.jsx("div",{id:`${f}-${m.id}`,role:"tabpanel","aria-label":m.title,className:y,style:{display:e===m.id?"inherit":"none"},children:m.component},m.id);if(e===m.id)return v.jsx("div",{id:`${f}-${m.id}`,role:"tabpanel","aria-label":m.title,className:y,children:m.render()},m.id)})]})})},Fb=({id:n,title:e,count:i,errorCount:r,selected:l,onSelect:o,ariaControls:u,tabIndex:f})=>v.jsxs("div",{className:ct("tabbed-pane-tab",l&&"selected"),onClick:()=>o==null?void 0:o(n),role:"tab",title:e,tabIndex:f??(l?0:-1),"aria-controls":u,"aria-selected":l,children:[v.jsx("div",{className:"tabbed-pane-tab-label",children:e}),!!i&&v.jsx("div",{className:"tabbed-pane-tab-counter",children:i}),!!r&&v.jsx("div",{className:"tabbed-pane-tab-counter error",children:r})]});async function aE(n,e){const i=navigator.platform.includes("Win")?"win":"unix";let r=[];const l=new Set(["accept-encoding","host","method","path","scheme","version","authority","protocol"]);function o(S){return'^"'+S.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/[^a-zA-Z0-9\s_\-:=+~'\/.',?;()*`]/g,"^$&").replace(/%(?=[a-zA-Z0-9_])/g,"%^").replace(/[^ -~\r\n]/g," ").replace(/\r?\n|\r/g,`^
66
+
67
+ `)+'^"'}function u(S){function w(E){let _=E.charCodeAt(0).toString(16);for(;_.length<4;)_="0"+_;return"\\u"+_}return/[\0-\x1F\x7F-\x9F!]|\'/.test(S)?"$'"+S.replace(/\\/g,"\\\\").replace(/\'/g,"\\'").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\0-\x1F\x7F-\x9F!]/g,w)+"'":"'"+S+"'"}const f=i==="win"?o:u;r.push(f(e.request.url).replace(/[[{}\]]/g,"\\$&"));let d="GET";const g=[],m=await Qb(n,e);m&&(g.push("--data-raw "+f(m)),l.add("content-length"),d="POST"),e.request.method!==d&&r.push("-X "+f(e.request.method));const y=e.request.headers;for(let S=0;S<y.length;S++){const w=y[S],E=w.name.replace(/^:/,"");if(l.has(E.toLowerCase()))continue;const x=w.value;x.trim()?E.toLowerCase()==="cookie"?r.push("-b "+f(x)):r.push("-H "+f(E+": "+x)):r.push("-H "+f(E+";"))}return r=r.concat(g),"curl "+r.join(r.length>=3?i==="win"?` ^
68
+ `:` \\
69
+ `:" ")}async function lE(n,e,i=0){const r=new Set(["method","path","scheme","version","accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","cookie","cookie2","date","dnt","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","via","user-agent"]),l=new Set(["cookie","authorization"]),o=JSON.stringify(e.request.url),u=e.request.headers,f=u.reduce((x,_)=>{const A=_.name;return!r.has(A.toLowerCase())&&!A.includes(":")&&x.append(A,_.value),x},new Headers),d={};for(const x of f)d[x[0]]=x[1];const g=e.request.cookies.length||u.some(({name:x})=>l.has(x.toLowerCase()))?"include":"omit",m=u.find(({name:x})=>x.toLowerCase()==="referer"),y=m?m.value:void 0,S=await Qb(n,e),w={headers:Object.keys(d).length?d:void 0,referrer:y,body:S,method:e.request.method,mode:"cors"};if(i===1){const x=u.find(A=>A.name.toLowerCase()==="cookie"),_={};delete w.mode,x&&(_.cookie=x.value),y&&(delete w.referrer,_.Referer=y),Object.keys(_).length&&(w.headers={...d,..._})}else w.credentials=g;const E=JSON.stringify(w,null,2);return`fetch(${o}, ${E});`}async function Qb(n,e){var i,r;return n&&((i=e.request.postData)!=null&&i._sha1)?await fetch(n.createRelativeUrl(`sha1/${e.request.postData._sha1}`)).then(l=>l.text()):(r=e.request.postData)==null?void 0:r.text}class oE{generatePlaywrightRequestCall(e,i){let r=e.method.toLowerCase();const l=new URL(e.url),o=`${l.origin}${l.pathname}`,u={};["delete","get","head","post","put","patch"].includes(r)||(u.method=r,r="fetch"),l.searchParams.size&&(u.params=Object.fromEntries(l.searchParams.entries())),i&&(u.data=i),e.headers.length&&(u.headers=Object.fromEntries(e.headers.map(g=>[g.name,g.value])));const f=[`'${o}'`];return Object.keys(u).length>0&&f.push(this.prettyPrintObject(u)),`await page.request.${r}(${f.join(", ")});`}prettyPrintObject(e,i=2,r=0){if(e===null)return"null";if(e===void 0)return"undefined";if(typeof e!="object")return typeof e=="string"?this.stringLiteral(e):String(e);if(Array.isArray(e)){if(e.length===0)return"[]";const f=" ".repeat(r*i),d=" ".repeat((r+1)*i);return`[
70
+ ${e.map(m=>`${d}${this.prettyPrintObject(m,i,r+1)}`).join(`,
71
+ `)}
72
+ ${f}]`}if(Object.keys(e).length===0)return"{}";const l=" ".repeat(r*i),o=" ".repeat((r+1)*i);return`{
73
+ ${Object.entries(e).map(([f,d])=>{const g=this.prettyPrintObject(d,i,r+1),m=/^[a-zA-Z_$][a-zA-Z0-9_$]*$/.test(f)?f:this.stringLiteral(f);return`${o}${m}: ${g}`}).join(`,
74
+ `)}
75
+ ${l}}`}stringLiteral(e){return e=e.replace(/\\/g,"\\\\").replace(/'/g,"\\'"),e.includes(`
76
+ `)||e.includes("\r")||e.includes(" ")?"`"+e+"`":`'${e}'`}}class cE{generatePlaywrightRequestCall(e,i){const r=new URL(e.url),o=[`"${`${r.origin}${r.pathname}`}"`];let u=e.method.toLowerCase();["delete","get","head","post","put","patch"].includes(u)||(o.push(`method="${u}"`),u="fetch"),r.searchParams.size&&o.push(`params=${this.prettyPrintObject(Object.fromEntries(r.searchParams.entries()))}`),i&&o.push(`data=${this.prettyPrintObject(i)}`),e.headers.length&&o.push(`headers=${this.prettyPrintObject(Object.fromEntries(e.headers.map(d=>[d.name,d.value])))}`);const f=o.length===1?o[0]:`
77
+ ${o.map(d=>this.indent(d,2)).join(`,
78
+ `)}
79
+ `;return`await page.request.${u}(${f})`}indent(e,i){return e.split(`
80
+ `).map(r=>" ".repeat(i)+r).join(`
81
+ `)}prettyPrintObject(e,i=2,r=0){if(e===null||e===void 0)return"None";if(typeof e!="object")return typeof e=="string"?this.stringLiteral(e):typeof e=="boolean"?e?"True":"False":String(e);if(Array.isArray(e)){if(e.length===0)return"[]";const f=" ".repeat(r*i),d=" ".repeat((r+1)*i);return`[
82
+ ${e.map(m=>`${d}${this.prettyPrintObject(m,i,r+1)}`).join(`,
83
+ `)}
84
+ ${f}]`}if(Object.keys(e).length===0)return"{}";const l=" ".repeat(r*i),o=" ".repeat((r+1)*i);return`{
85
+ ${Object.entries(e).map(([f,d])=>{const g=this.prettyPrintObject(d,i,r+1);return`${o}${this.stringLiteral(f)}: ${g}`}).join(`,
86
+ `)}
87
+ ${l}}`}stringLiteral(e){return JSON.stringify(e)}}class uE{generatePlaywrightRequestCall(e,i){const r=new URL(e.url),l=`${r.origin}${r.pathname}`,o={},u=[];let f=e.method.toLowerCase();["delete","get","head","post","put","patch"].includes(f)||(o.Method=f,f="fetch"),r.searchParams.size&&(o.Params=Object.fromEntries(r.searchParams.entries())),i&&(o.Data=i),e.headers.length&&(o.Headers=Object.fromEntries(e.headers.map(m=>[m.name,m.value])));const d=[`"${l}"`];return Object.keys(o).length>0&&d.push(this.prettyPrintObject(o)),`${u.join(`
88
+ `)}${u.length?`
89
+ `:""}await request.${this.toFunctionName(f)}(${d.join(", ")});`}toFunctionName(e){return e[0].toUpperCase()+e.slice(1)+"Async"}prettyPrintObject(e,i=2,r=0){if(e===null||e===void 0)return"null";if(typeof e!="object")return typeof e=="string"?this.stringLiteral(e):typeof e=="boolean"?e?"true":"false":String(e);if(Array.isArray(e)){if(e.length===0)return"new object[] {}";const f=" ".repeat(r*i),d=" ".repeat((r+1)*i);return`new object[] {
90
+ ${e.map(m=>`${d}${this.prettyPrintObject(m,i,r+1)}`).join(`,
91
+ `)}
92
+ ${f}}`}if(Object.keys(e).length===0)return"new {}";const l=" ".repeat(r*i),o=" ".repeat((r+1)*i);return`new() {
93
+ ${Object.entries(e).map(([f,d])=>{const g=this.prettyPrintObject(d,i,r+1),m=r===0?f:`[${this.stringLiteral(f)}]`;return`${o}${m} = ${g}`}).join(`,
94
+ `)}
95
+ ${l}}`}stringLiteral(e){return JSON.stringify(e)}}class fE{generatePlaywrightRequestCall(e,i){const r=new URL(e.url),l=[`"${r.origin}${r.pathname}"`],o=[];let u=e.method.toLowerCase();["delete","get","head","post","put","patch"].includes(u)||(o.push(`setMethod("${u}")`),u="fetch");for(const[f,d]of r.searchParams)o.push(`setQueryParam(${this.stringLiteral(f)}, ${this.stringLiteral(d)})`);i&&o.push(`setData(${this.stringLiteral(i)})`);for(const f of e.headers)o.push(`setHeader(${this.stringLiteral(f.name)}, ${this.stringLiteral(f.value)})`);return o.length>0&&l.push(`RequestOptions.create()
96
+ .${o.join(`
97
+ .`)}
98
+ `),`request.${u}(${l.join(", ")});`}stringLiteral(e){return JSON.stringify(e)}}function hE(n){if(n==="javascript")return new oE;if(n==="python")return new cE;if(n==="csharp")return new uE;if(n==="java")return new fE;throw new Error("Unsupported language: "+n)}const dE=({resource:n,sdkLanguage:e,startTimeOffset:i,onClose:r})=>{const[l,o]=R.useState("headers"),u=ri(),f=Zh(async()=>{if(u&&n.request.postData){const d=n.request.headers.find(m=>m.name.toLowerCase()==="content-type"),g=d?d.value:"";return n.request.postData._sha1?{text:await(await fetch(u.createRelativeUrl(`sha1/${n.request.postData._sha1}`))).text(),mimeType:g}:{text:n.request.postData.text,mimeType:g}}else return null},[n],null);return v.jsx(Rh,{leftToolbar:[v.jsx(pt,{icon:"close",title:"Close",onClick:r},"close")],rightToolbar:[v.jsx(pE,{requestBody:f,resource:n,sdkLanguage:e},"dropdown")],tabs:[{id:"headers",title:"Headers",render:()=>v.jsx(gE,{resource:n,startTimeOffset:i})},{id:"payload",title:"Payload",render:()=>v.jsx(mE,{resource:n,requestBody:f})},{id:"response",title:"Response",render:()=>v.jsx(yE,{resource:n})}],selectedTab:l,setSelectedTab:o})},pE=({resource:n,sdkLanguage:e,requestBody:i})=>{const r=ri(),l=v.jsxs(v.Fragment,{children:[v.jsx("span",{className:"codicon codicon-check",style:{marginRight:"5px"}})," Copied "]}),o=async()=>hE(e).generatePlaywrightRequestCall(n.request,i==null?void 0:i.text);return v.jsxs("div",{className:"copy-request-dropdown",children:[v.jsxs(pt,{className:"copy-request-dropdown-toggle",children:[v.jsx("span",{className:"codicon codicon-copy",style:{marginRight:"5px"}}),"Copy request",v.jsx("span",{className:"codicon codicon-chevron-down",style:{marginLeft:"5px"}})]}),v.jsxs("div",{className:"copy-request-dropdown-menu",children:[v.jsx(Yo,{description:"Copy as cURL",copiedDescription:l,value:()=>aE(r,n)}),v.jsx(Yo,{description:"Copy as Fetch",copiedDescription:l,value:()=>lE(r,n)}),v.jsx(Yo,{description:"Copy as Playwright",copiedDescription:l,value:o})]})]})},Pb=({toggled:n,error:e,onToggle:i})=>v.jsx(pt,{icon:"json",title:"Pretty print",toggled:n,errorBadge:e?"Formatting failed":void 0,onClick:r=>{r.stopPropagation(),i()}}),Pa=({title:n,data:e,showCount:i,children:r,titleChildren:l,className:o})=>{const[u,f]=Kt(`trace-viewer-network-details-${n.replaceAll(" ","-")}`,!0);return v.jsxs(Gb,{expanded:u,setExpanded:f,expandOnTitleClick:!0,title:v.jsxs(v.Fragment,{children:[v.jsxs("span",{className:"network-request-details-header",children:[n,i&&v.jsxs("span",{className:"network-request-details-header-count",children:[" × ",(e==null?void 0:e.length)??0]})]}),l]}),className:o,children:[e&&v.jsx("table",{className:"network-request-details-table",children:v.jsx("tbody",{children:e.map(({name:d,value:g},m)=>g!==null&&v.jsxs("tr",{children:[v.jsx("td",{children:d}),v.jsx("td",{children:g})]},m))})}),r]})},gE=({resource:n,startTimeOffset:e})=>{const i=R.useMemo(()=>Object.entries({URL:n.request.url,Method:n.request.method,"Status Code":n.response.status===-1?"canceled":n.response.status>0&&v.jsxs("span",{className:vE(n.response.status),children:[" ",n.response.status," ",n.response.statusText]}),Start:_t(e),Duration:_t(n.time)}).map(([r,l])=>({name:r,value:l})),[n,e]);return v.jsxs("div",{className:"vbox network-request-details-tab",children:[v.jsx(Pa,{title:"General",data:i}),v.jsx(Pa,{title:"Request Headers",showCount:!0,data:n.request.headers}),v.jsx(Pa,{title:"Response Headers",showCount:!0,data:n.response.headers})]})},mE=({resource:n,requestBody:e})=>{const[i,r]=Kt("trace-viewer-network-details-show-formatted-payload",!0),l=n.request.queryString.length>0,o=!!(e||n.request.postData),u=Jb(e,i);return v.jsxs("div",{className:"vbox network-request-details-tab",children:[!l&&!o&&v.jsx("em",{className:"network-request-no-payload",children:"No payload for this request."}),l&&v.jsx(Pa,{title:"Query String Parameters",showCount:!0,data:n.request.queryString}),e&&v.jsx(Pa,{title:"Request Body",className:"network-request-request-body",titleChildren:v.jsxs(v.Fragment,{children:[v.jsx("div",{style:{margin:"auto"}}),v.jsx(Pb,{toggled:i,error:u.error,onToggle:()=>r(!i)})]}),children:v.jsx(Cr,{text:u.text,mimeType:e.mimeType,readOnly:!0,lineNumbers:!0})})]})},yE=({resource:n})=>{const e=ri(),[i,r]=R.useState(null);R.useEffect(()=>{(async()=>{if(e&&n.response.content._sha1){const d=n.response.content.mimeType.includes("image"),g=n.response.content.mimeType.includes("font"),m=await fetch(e.createRelativeUrl(`sha1/${n.response.content._sha1}`));if(d){const y=await m.blob(),S=new FileReader,w=new Promise(E=>S.onload=E);S.readAsDataURL(y),r({dataUrl:(await w).target.result})}else if(g){const y=await m.arrayBuffer();r({font:y})}else r({text:await m.text(),mimeType:n.response.content.mimeType})}else r(null)})()},[n,e]);const[l,o]=Kt("trace-viewer-network-details-show-formatted-response",!0),u=Jb(i,l);return v.jsxs("div",{className:"vbox network-request-details-tab",children:[!n.response.content._sha1&&v.jsx("div",{children:"Response body is not available for this request."}),i&&i.font&&v.jsx(bE,{font:i.font}),i&&i.dataUrl&&v.jsx("div",{children:v.jsx("img",{draggable:"false",src:i.dataUrl})}),i&&i.text!==void 0&&v.jsxs("div",{className:"vbox network-response-body",children:[v.jsx(Cr,{text:u.text,mimeType:i.mimeType,readOnly:!0,lineNumbers:!0}),v.jsxs(bc,{noShadow:!0,noMinHeight:!0,className:"network-response-toolbar",children:[v.jsx("div",{style:{margin:"auto"}}),v.jsx(Pb,{toggled:l,error:u.error,onToggle:()=>o(!l)})]})]})]})},bE=({font:n})=>{const[e,i]=R.useState(!1);return R.useEffect(()=>{let r;try{r=new FontFace("font-preview",n),r.status==="loaded"&&document.fonts.add(r),r.status==="error"&&i(!0)}catch{i(!0)}return()=>{document.fonts.delete(r)}},[n]),e?v.jsx("div",{className:"network-font-preview-error",children:"Could not load font preview"}):v.jsxs("div",{className:"network-font-preview",children:["ABCDEFGHIJKLM",v.jsx("br",{}),"NOPQRSTUVWXYZ",v.jsx("br",{}),"abcdefghijklm",v.jsx("br",{}),"nopqrstuvwxyz",v.jsx("br",{}),"1234567890"]})};function vE(n){return n<300||n===304?"green-circle":n<400?"yellow-circle":"red-circle"}const SE=/<[^>]+>[^<]*<\//;function wE(n,e=" "){let i=0;const r=[],l=n.replace(/>\s*</g,`>
99
+ <`).split(`
100
+ `);for(const o of l){const u=o.trim();u&&(u.startsWith("</")?(i=Math.max(i-1,0),r.push(e.repeat(i)+u)):u.endsWith("/>")||u.startsWith("<?")||SE.test(u)?r.push(e.repeat(i)+u):u.startsWith("<")?(r.push(e.repeat(i)+u),i++):r.push(e.repeat(i)+u))}return r.join(`
101
+ `)}function xE(n,e){return!n.trim()||!e?n:V_(e)?JSON.stringify(JSON.parse(n),null,2):G_(e)?wE(n):e.includes("application/x-www-form-urlencoded")?decodeURIComponent(n):n}const Jb=(n,e)=>R.useMemo(()=>{if((n==null?void 0:n.text)===void 0)return{text:""};if(!e)return{text:n.text};try{return{text:xE(n.text,n.mimeType)}}catch{return{text:n.text,error:!0}}},[n,e]);function _E(n){const[e,i]=R.useState([]);R.useEffect(()=>{const o=[];for(let u=0;u<n.columns.length-1;++u){const f=n.columns[u];o[u]=(o[u-1]||0)+n.columnWidths.get(f)}i(o)},[n.columns,n.columnWidths]);function r(o){const u=new Map(n.columnWidths.entries());for(let f=0;f<o.length;++f){const d=o[f]-(o[f-1]||0),g=n.columns[f];u.set(g,d)}n.setColumnWidths(u)}const l=R.useCallback(o=>{var u,f;(f=n.setSorting)==null||f.call(n,{by:o,negate:((u=n.sorting)==null?void 0:u.by)===o?!n.sorting.negate:!1})},[n]);return v.jsxs("div",{className:`grid-view ${n.name}-grid-view`,children:[v.jsx(Vb,{orientation:"horizontal",offsets:e,setOffsets:r,resizerColor:"var(--vscode-panel-border)",resizerWidth:1,minColumnWidth:25}),v.jsxs("div",{className:"vbox",children:[v.jsx("div",{className:"grid-view-header",children:n.columns.map((o,u)=>v.jsxs("div",{className:"grid-view-header-cell "+EE(o,n.sorting),style:{width:u<n.columns.length-1?n.columnWidths.get(o):void 0},onClick:()=>n.setSorting&&l(o),children:[v.jsx("span",{className:"grid-view-header-cell-title",children:n.columnTitle(o)}),v.jsx("span",{className:"codicon codicon-triangle-up"}),v.jsx("span",{className:"codicon codicon-triangle-down"})]},n.columnTitle(o)))}),v.jsx(mc,{name:n.name,items:n.items,ariaLabel:n.ariaLabel,id:n.id,render:(o,u)=>v.jsx(v.Fragment,{children:n.columns.map((f,d)=>{const{body:g,title:m}=n.render(o,f,u);return v.jsx("div",{className:`grid-view-cell grid-view-column-${String(f)}`,title:m,style:{width:d<n.columns.length-1?n.columnWidths.get(f):void 0},children:g},n.columnTitle(f))})}),icon:n.icon,isError:n.isError,isWarning:n.isWarning,isInfo:n.isInfo,selectedItem:n.selectedItem,onAccepted:n.onAccepted,onSelected:n.onSelected,onHighlighted:n.onHighlighted,onIconClicked:n.onIconClicked,noItemsMessage:n.noItemsMessage,dataTestId:n.dataTestId,notSelectable:n.notSelectable})]})]})}function EE(n,e){return n===(e==null?void 0:e.by)?" filter-"+(e.negate?"negative":"positive"):""}const TE=["Fetch","HTML","JS","CSS","Font","Image"],AE={searchValue:"",resourceTypes:new Set},CE=({filterState:n,onFilterStateChange:e})=>v.jsxs("div",{className:"network-filters",children:[v.jsx("input",{type:"search",placeholder:"Filter network",spellCheck:!1,value:n.searchValue,onChange:i=>e({...n,searchValue:i.target.value})}),v.jsxs("div",{className:"network-filters-resource-types",role:"tablist","aria-multiselectable":"true",children:[v.jsx("div",{title:"All",onClick:()=>e({...n,resourceTypes:new Set}),className:`network-filters-resource-type ${n.resourceTypes.size===0?"selected":""}`,children:"All"}),TE.map(i=>v.jsx("div",{title:i,onClick:r=>{let l;r.ctrlKey||r.metaKey?l=n.resourceTypes.symmetricDifference(new Set([i])):l=new Set([i]),e({...n,resourceTypes:l})},className:`network-filters-resource-type ${n.resourceTypes.has(i)?"selected":""}`,role:"tab","aria-selected":n.resourceTypes.has(i),children:i},i))]})]}),NE=_E;function kE(n,e,i){const r=R.useMemo(()=>((n==null?void 0:n.resources)||[]).filter(f=>e?!!f._monotonicTime&&f._monotonicTime>=e.minimum&&f._monotonicTime<=e.maximum:!0),[n,e,i]),l=R.useMemo(()=>new DE(n),[n]);return{resources:r,contextIdMap:l}}const ME=({boundaries:n,networkModel:e,onResourceHovered:i,sdkLanguage:r})=>{const[l,o]=R.useState(void 0),[u,f]=R.useState(void 0),[d,g]=R.useState(AE),{renderedEntries:m}=R.useMemo(()=>{const _=e.resources.map(A=>zE(A,n,e.contextIdMap)).filter(IE(d));return l&&BE(_,l),{renderedEntries:_}},[e.resources,e.contextIdMap,d,l,n]),y=R.useMemo(()=>u?m.find(_=>_.resource.id===u):void 0,[u,m]),[S,w]=R.useState(()=>new Map(Zb().map(_=>[_,jE(_)]))),E=R.useCallback(_=>{g(_),f(void 0)},[]);if(!e.resources.length)return v.jsx(ps,{text:"No network calls"});const x=v.jsx(NE,{name:"network",ariaLabel:"Network requests",items:m,selectedItem:y,onSelected:_=>f(_.resource.id),onHighlighted:_=>i==null?void 0:i(_?UE(_.resource):void 0),columns:LE(!!y,m),columnTitle:OE,columnWidths:S,setColumnWidths:w,isError:_=>_.status.code>=400||_.status.code===-1,isInfo:_=>!!_.route,render:(_,A)=>RE(_,A),sorting:l,setSorting:o});return v.jsxs(v.Fragment,{children:[v.jsx(CE,{filterState:d,onFilterStateChange:E}),!y&&x,y&&v.jsx(nc,{sidebarSize:S.get("name"),sidebarIsFirst:!0,orientation:"horizontal",settingName:"networkResourceDetails",main:v.jsx(dE,{resource:y.resource,sdkLanguage:r,startTimeOffset:y.start,onClose:()=>f(void 0)}),sidebar:x})]})},OE=n=>n==="contextId"?"Source":n==="name"?"Name":n==="method"?"Method":n==="status"?"Status":n==="contentType"?"Content Type":n==="duration"?"Duration":n==="size"?"Size":n==="start"?"Start":n==="route"?"Route":"",jE=n=>n==="name"?200:n==="method"||n==="status"?60:n==="contentType"?200:n==="contextId"?60:100;function LE(n,e){if(n){const r=["name"];return y0(e)&&r.unshift("contextId"),r}let i=Zb();return y0(e)||(i=i.filter(r=>r!=="contextId")),i}function Zb(){return["contextId","name","method","status","contentType","duration","size","start","route"]}const RE=(n,e)=>e==="contextId"?{body:n.contextId,title:n.name.url}:e==="name"?{body:n.name.name,title:n.name.url}:e==="method"?{body:n.method}:e==="status"?{body:n.status.code===-1?"canceled":n.status.code>0?n.status.code:"",title:n.status.code===-1?"canceled":n.status.text}:e==="contentType"?{body:n.contentType}:e==="duration"?{body:_t(n.duration)}:e==="size"?{body:Gx(n.size)}:e==="start"?{body:_t(n.start)}:e==="route"?{body:n.route}:{body:""};class DE{constructor(e){this._pagerefToShortId=new Map,this._contextToId=new Map,this._lastPageId=0,this._lastApiRequestContextId=0}contextId(e){return e.pageref?this._pageId(e.pageref):e._apiRequest?this._apiRequestContextId(e):""}_pageId(e){let i=this._pagerefToShortId.get(e);return i||(++this._lastPageId,i="page#"+this._lastPageId,this._pagerefToShortId.set(e,i)),i}_apiRequestContextId(e){const i=gb(e);if(!i)return"";let r=this._contextToId.get(i);return r||(++this._lastApiRequestContextId,r="api#"+this._lastApiRequestContextId,this._contextToId.set(i,r)),r}}function y0(n){const e=new Set;for(const i of n)if(e.add(i.contextId),e.size>1)return!0;return!1}const zE=(n,e,i)=>{const r=HE(n);let l;try{const f=new URL(n.request.url);l=f.pathname.substring(f.pathname.lastIndexOf("/")+1),l||(l=f.host),f.search&&(l+=f.search)}catch{l=n.request.url}let o=n.response.content.mimeType;const u=o.match(/^(.*);\s*charset=.*$/);return u&&(o=u[1]),{name:{name:l,url:n.request.url},method:n.request.method,status:{code:n.response.status,text:n.response.statusText},contentType:o,duration:n.time,size:n.response._transferSize>0?n.response._transferSize:n.response.bodySize,start:n._monotonicTime-e.minimum,route:r,resource:n,contextId:i.contextId(n)}};function UE(n){if(n._monotonicTime)return{minimum:n._monotonicTime,maximum:n._monotonicTime+n.time}}function HE(n){return n._wasAborted?"aborted":n._wasContinued?"continued":n._wasFulfilled?"fulfilled":n._apiRequest?"api":""}function BE(n,e){const i=qE(e==null?void 0:e.by);i&&n.sort(i),e.negate&&n.reverse()}function qE(n){if(n==="start")return(e,i)=>e.start-i.start;if(n==="duration")return(e,i)=>e.duration-i.duration;if(n==="status")return(e,i)=>e.status.code-i.status.code;if(n==="method")return(e,i)=>{const r=e.method,l=i.method;return r.localeCompare(l)};if(n==="size")return(e,i)=>e.size-i.size;if(n==="contentType")return(e,i)=>e.contentType.localeCompare(i.contentType);if(n==="name")return(e,i)=>e.name.name.localeCompare(i.name.name);if(n==="route")return(e,i)=>e.route.localeCompare(i.route);if(n==="contextId")return(e,i)=>e.contextId.localeCompare(i.contextId)}const $E={Fetch:n=>n==="application/json",HTML:n=>n==="text/html",CSS:n=>n==="text/css",JS:n=>n.includes("javascript"),Font:n=>n.includes("font"),Image:n=>n.includes("image")};function IE({searchValue:n,resourceTypes:e}){return i=>(e.size===0||Array.from(e).some(l=>$E[l](i.contentType)))&&i.name.url.toLowerCase().includes(n.toLowerCase())}function VE(n,e){if(n.role!==e.role||n.name!==e.name||!GE(n,e)||ac(n)!==ac(e))return!1;const i=Object.keys(n.props),r=Object.keys(e.props);return i.length===r.length&&i.every(l=>n.props[l]===e.props[l])}function ac(n){return n.box.cursor==="pointer"}function GE(n,e){return n.active===e.active&&n.checked===e.checked&&n.disabled===e.disabled&&n.expanded===e.expanded&&n.invalid===e.invalid&&n.selected===e.selected&&n.level===e.level&&n.pressed===e.pressed}function cd(n,e,i={}){var S;const r=new n.LineCounter,l={keepSourceTokens:!0,lineCounter:r,...i},o=n.parseDocument(e,l),u=[],f=w=>[r.linePos(w[0]),r.linePos(w[1])],d=w=>{u.push({message:w.message,range:[r.linePos(w.pos[0]),r.linePos(w.pos[1])]})},g=(w,E)=>{for(const x of E.items){if(x instanceof n.Scalar&&typeof x.value=="string"){const C=lc.parse(x,l,u);C&&(w.children=w.children||[],w.children.push(C));continue}if(x instanceof n.YAMLMap){m(w,x);continue}u.push({message:"Sequence items should be strings or maps",range:f(x.range||E.range)})}},m=(w,E)=>{for(const x of E.items){if(w.children=w.children||[],!(x.key instanceof n.Scalar&&typeof x.key.value=="string")){u.push({message:"Only string keys are supported",range:f(x.key.range||E.range)});continue}const A=x.key,C=x.value;if(A.value==="text"){if(!(C instanceof n.Scalar&&typeof C.value=="string")){u.push({message:"Text value should be a string",range:f(x.value.range||E.range)});continue}w.children.push({kind:"text",text:ch(C.value)});continue}if(A.value==="/children"){if(!(C instanceof n.Scalar&&typeof C.value=="string")||C.value!=="contain"&&C.value!=="equal"&&C.value!=="deep-equal"){u.push({message:'Strict value should be "contain", "equal" or "deep-equal"',range:f(x.value.range||E.range)});continue}w.containerMode=C.value;continue}if(A.value.startsWith("/")){if(!(C instanceof n.Scalar&&typeof C.value=="string")){u.push({message:"Property value should be a string",range:f(x.value.range||E.range)});continue}w.props=w.props??{},w.props[A.value.slice(1)]=ch(C.value);continue}const H=lc.parse(A,l,u);if(!H)continue;if(C instanceof n.Scalar){const Q=typeof C.value;if(Q!=="string"&&Q!=="number"&&Q!=="boolean"){u.push({message:"Node value should be a string or a sequence",range:f(x.value.range||E.range)});continue}w.children.push({...H,children:[{kind:"text",text:ch(String(C.value))}]});continue}if(C instanceof n.YAMLSeq){w.children.push(H),g(H,C);continue}u.push({message:"Map values should be strings or sequences",range:f(x.value.range||E.range)})}},y={kind:"role",role:"fragment"};return o.errors.forEach(d),u.length?{errors:u,fragment:y}:(o.contents instanceof n.YAMLSeq||u.push({message:'Aria snapshot must be a YAML sequence, elements starting with " -"',range:o.contents?f(o.contents.range):[{line:0,col:0},{line:0,col:0}]}),u.length?{errors:u,fragment:y}:(g(y,o.contents),u.length?{errors:u,fragment:KE}:((S=y.children)==null?void 0:S.length)===1&&(!y.containerMode||y.containerMode==="contain")?{fragment:y.children[0],errors:[]}:{fragment:y,errors:[]}))}const KE={kind:"role",role:"fragment"};function Wb(n){return n.replace(/[\u200b\u00ad]/g,"").replace(/[\r\n\s\t]+/g," ").trim()}function ch(n){return{raw:n,normalized:Wb(n)}}class lc{static parse(e,i,r){try{return new lc(e.value)._parse()}catch(l){if(l instanceof b0){const o=i.prettyErrors===!1?l.message:l.message+`:
102
+
103
+ `+e.value+`
104
+ `+" ".repeat(l.pos)+`^
105
+ `;return r.push({message:o,range:[i.lineCounter.linePos(e.range[0]),i.lineCounter.linePos(e.range[0]+l.pos)]}),null}throw l}}constructor(e){this._input=e,this._pos=0,this._length=e.length}_peek(){return this._input[this._pos]||""}_next(){return this._pos<this._length?this._input[this._pos++]:null}_eof(){return this._pos>=this._length}_isWhitespace(){return!this._eof()&&/\s/.test(this._peek())}_skipWhitespace(){for(;this._isWhitespace();)this._pos++}_readIdentifier(e){this._eof()&&this._throwError(`Unexpected end of input when expecting ${e}`);const i=this._pos;for(;!this._eof()&&/[a-zA-Z]/.test(this._peek());)this._pos++;return this._input.slice(i,this._pos)}_readString(){let e="",i=!1;for(;!this._eof();){const r=this._next();if(i)e+=r,i=!1;else if(r==="\\")i=!0;else{if(r==='"')return e;e+=r}}this._throwError("Unterminated string")}_throwError(e,i=0){throw new b0(e,i||this._pos)}_readRegex(){let e="",i=!1,r=!1;for(;!this._eof();){const l=this._next();if(i)e+=l,i=!1;else if(l==="\\")i=!0,e+=l;else{if(l==="/"&&!r)return{pattern:e};l==="["?(r=!0,e+=l):l==="]"&&r?(e+=l,r=!1):e+=l}}this._throwError("Unterminated regex")}_readStringOrRegex(){const e=this._peek();return e==='"'?(this._next(),Wb(this._readString())):e==="/"?(this._next(),this._readRegex()):null}_readAttributes(e){let i=this._pos;for(;this._skipWhitespace(),this._peek()==="[";){this._next(),this._skipWhitespace(),i=this._pos;const r=this._readIdentifier("attribute");this._skipWhitespace();let l="";if(this._peek()==="=")for(this._next(),this._skipWhitespace(),i=this._pos;this._peek()!=="]"&&!this._isWhitespace()&&!this._eof();)l+=this._next();this._skipWhitespace(),this._peek()!=="]"&&this._throwError("Expected ]"),this._next(),this._applyAttribute(e,r,l||"true",i)}}_parse(){this._skipWhitespace();const e=this._readIdentifier("role");this._skipWhitespace();const i=this._readStringOrRegex()||"",r={kind:"role",role:e,name:i};return this._readAttributes(r),this._skipWhitespace(),this._eof()||this._throwError("Unexpected input"),r}_applyAttribute(e,i,r,l){if(i==="checked"){this._assert(r==="true"||r==="false"||r==="mixed",'Value of "checked" attribute must be a boolean or "mixed"',l),e.checked=r==="true"?!0:r==="false"?!1:"mixed";return}if(i==="disabled"){this._assert(r==="true"||r==="false",'Value of "disabled" attribute must be a boolean',l),e.disabled=r==="true";return}if(i==="expanded"){this._assert(r==="true"||r==="false",'Value of "expanded" attribute must be a boolean',l),e.expanded=r==="true";return}if(i==="active"){this._assert(r==="true"||r==="false",'Value of "active" attribute must be a boolean',l),e.active=r==="true";return}if(i==="invalid"){this._assert(r==="true"||r==="false"||r==="grammar"||r==="spelling",'Value of "invalid" attribute must be a boolean, "grammar" or "spelling"',l),e.invalid=r==="true"?!0:r==="false"?!1:r;return}if(i==="level"){this._assert(!isNaN(Number(r)),'Value of "level" attribute must be a number',l),e.level=Number(r);return}if(i==="pressed"){this._assert(r==="true"||r==="false"||r==="mixed",'Value of "pressed" attribute must be a boolean or "mixed"',l),e.pressed=r==="true"?!0:r==="false"?!1:"mixed";return}if(i==="selected"){this._assert(r==="true"||r==="false",'Value of "selected" attribute must be a boolean',l),e.selected=r==="true";return}this._assert(!1,`Unsupported attribute [${i}]`,l)}_assert(e,i,r){e||this._throwError(i||"Assertion error",r)}}class b0 extends Error{constructor(e,i){super(e),this.pos=i}}function XE(n,e){var u,f;function i(d,g,m){let y=1,S=m+y;for(const w of d.children||[])typeof w=="string"?(y++,S++):(y+=i(w,g,S),S+=y);if(!["none","presentation","fragment","iframe","generic"].includes(d.role)&&d.name){let w=g.get(d.role);w||(w=new Map,g.set(d.role,w));const E=w.get(d.name),x=y*100-m;(!E||E.sizeAndPosition<x)&&w.set(d.name,{node:d,sizeAndPosition:x})}return y}const r=new Map;n&&i(n,r,0);const l=new Map;i(e,l,0);const o=[];for(const[d,g]of l)for(const[m,y]of g)((u=r.get(d))==null?void 0:u.get(m))||o.push(y);return o.sort((d,g)=>g.sizeAndPosition-d.sizeAndPosition),(f=o[0])==null?void 0:f.node}function ud(n,e,i){return`internal:attr=[${n}=${Ze(e,(i==null?void 0:i.exact)||!1)}]`}function ev(n){return n.split(",")}function tv(n){return n.includes(",")?JSON.stringify(n):n}function YE(n,e){return`internal:testid=[${tv(n)}=${Ze(e,!0)}]`}function FE(n,e){return"internal:label="+It(n,!!(e!=null&&e.exact))}function QE(n,e){return ud("alt",n,e)}function PE(n,e){return ud("title",n,e)}function JE(n,e){return ud("placeholder",n,e)}function ZE(n,e){return"internal:text="+It(n,!!(e!=null&&e.exact))}function WE(n,e={}){const i=[];return e.checked!==void 0&&i.push(["checked",String(e.checked)]),e.disabled!==void 0&&i.push(["disabled",String(e.disabled)]),e.selected!==void 0&&i.push(["selected",String(e.selected)]),e.expanded!==void 0&&i.push(["expanded",String(e.expanded)]),e.includeHidden!==void 0&&i.push(["include-hidden",String(e.includeHidden)]),e.level!==void 0&&i.push(["level",String(e.level)]),e.name!==void 0&&i.push(["name",Ze(e.name,!!e.exact)]),e.description!==void 0&&i.push(["description",Ze(e.description,!!e.exact)]),e.pressed!==void 0&&i.push(["pressed",String(e.pressed)]),`internal:role=${n}${i.map(([r,l])=>`[${r}=${l}]`).join("")}`}function eT(n){return nv(n)?"'"+n.replace(/'/g,"''")+"'":n}function uh(n){return nv(n)?'"'+n.replace(/[\\"\x00-\x1f\x7f-\x9f]/g,e=>{switch(e){case"\\":return"\\\\";case'"':return'\\"';case"\b":return"\\b";case"\f":return"\\f";case`
106
+ `:return"\\n";case"\r":return"\\r";case" ":return"\\t";default:return"\\x"+e.charCodeAt(0).toString(16).padStart(2,"0")}})+'"':n}function nv(n){return!!(n.length===0||/^\s|\s$/.test(n)||/[\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\x9f]/.test(n)||/^-/.test(n)||/[\n:](\s|$)/.test(n)||/\s#/.test(n)||/[\n\r]/.test(n)||/^[&*\],?!>|@"'#%]/.test(n)||/[{}`]/.test(n)||/^\[/.test(n)||!isNaN(Number(n))||["y","n","yes","no","true","false","on","off","null"].includes(n.toLowerCase()))}let iv={};function tT(n){iv=n}function Dh(n,e){for(;e;){if(n.contains(e))return!0;e=rv(e)}return!1}function Ct(n){if(n.parentElement)return n.parentElement;if(n.parentNode&&n.parentNode.nodeType===11&&n.parentNode.host)return n.parentNode.host}function sv(n){let e=n;for(;e.parentNode;)e=e.parentNode;if(e.nodeType===11||e.nodeType===9)return e}function rv(n){for(;n.parentElement;)n=n.parentElement;return Ct(n)}function Va(n,e,i){for(;n;){const r=n.closest(e);if(i&&r!==i&&(r!=null&&r.contains(i)))return;if(r)return r;n=rv(n)}}function zi(n,e){const i=e==="::before"?hd:e==="::after"?dd:fd;if(i&&i.has(n))return i.get(n);const r=n.ownerDocument&&n.ownerDocument.defaultView?n.ownerDocument.defaultView.getComputedStyle(n,e):void 0;return i==null||i.set(n,r),r}function av(n,e){if(e=e??zi(n),!e)return!0;if(Element.prototype.checkVisibility&&iv.browserNameForWorkarounds!=="webkit"){if(!n.checkVisibility())return!1}else{const i=n.closest("details,summary");if(i!==n&&(i==null?void 0:i.nodeName)==="DETAILS"&&!i.open)return!1}return e.visibility==="visible"}function oc(n){const e=zi(n);if(!e)return{visible:!0,inline:!1};const i=e.cursor;if(e.display==="contents"){for(let l=n.firstChild;l;l=l.nextSibling){if(l.nodeType===1&&ni(l))return{visible:!0,inline:!1,cursor:i};if(l.nodeType===3&&lv(l))return{visible:!0,inline:!0,cursor:i}}return{visible:!1,inline:!1,cursor:i}}if(!av(n,e))return{cursor:i,visible:!1,inline:!1};const r=n.getBoundingClientRect();return{cursor:i,visible:r.width>0&&r.height>0,inline:e.display==="inline"}}function ni(n){return oc(n).visible}function lv(n){const e=n.ownerDocument.createRange();e.selectNode(n);const i=e.getBoundingClientRect();return i.width>0&&i.height>0}function et(n){const e=n.tagName;return typeof e=="string"?e.toUpperCase():n instanceof HTMLFormElement?"FORM":n.tagName.toUpperCase()}let fd,hd,dd,ov=0;function pd(){++ov,fd??(fd=new Map),hd??(hd=new Map),dd??(dd=new Map)}function gd(){--ov||(fd=void 0,hd=void 0,dd=void 0)}function v0(n){return n.hasAttribute("aria-label")||n.hasAttribute("aria-labelledby")}const S0="article:not([role]), aside:not([role]), main:not([role]), nav:not([role]), section:not([role]), [role=article], [role=complementary], [role=main], [role=navigation], [role=region]",nT=[["aria-atomic",void 0],["aria-busy",void 0],["aria-controls",void 0],["aria-current",void 0],["aria-describedby",void 0],["aria-details",void 0],["aria-dropeffect",void 0],["aria-flowto",void 0],["aria-grabbed",void 0],["aria-hidden",void 0],["aria-keyshortcuts",void 0],["aria-label",["caption","code","deletion","emphasis","generic","insertion","paragraph","presentation","strong","subscript","superscript"]],["aria-labelledby",["caption","code","deletion","emphasis","generic","insertion","paragraph","presentation","strong","subscript","superscript"]],["aria-live",void 0],["aria-owns",void 0],["aria-relevant",void 0],["aria-roledescription",["generic"]]];function cv(n,e){return nT.some(([i,r])=>!(r!=null&&r.includes(e||""))&&n.hasAttribute(i))}function uv(n){return!Number.isNaN(Number(String(n.getAttribute("tabindex"))))}function iT(n){return!_v(n)&&(sT(n)||uv(n))}function sT(n){const e=et(n);return["BUTTON","DETAILS","SELECT","TEXTAREA"].includes(e)?!0:e==="A"||e==="AREA"?n.hasAttribute("href"):e==="INPUT"?!n.hidden:!1}const fh={A:n=>n.hasAttribute("href")?"link":null,AREA:n=>n.hasAttribute("href")?"link":null,ARTICLE:()=>"article",ASIDE:()=>"complementary",BLOCKQUOTE:()=>"blockquote",BUTTON:()=>"button",CAPTION:()=>"caption",CODE:()=>"code",DATALIST:()=>"listbox",DD:()=>"definition",DEL:()=>"deletion",DETAILS:()=>"group",DFN:()=>"term",DIALOG:()=>"dialog",DT:()=>"term",EM:()=>"emphasis",FIELDSET:()=>"group",FIGURE:()=>"figure",FOOTER:n=>Va(n,S0)?null:"contentinfo",FORM:n=>v0(n)?"form":null,H1:()=>"heading",H2:()=>"heading",H3:()=>"heading",H4:()=>"heading",H5:()=>"heading",H6:()=>"heading",HEADER:n=>Va(n,S0)?null:"banner",HR:()=>"separator",HTML:()=>"document",IMG:n=>n.getAttribute("alt")===""&&!n.getAttribute("title")&&!cv(n)&&!uv(n)?"presentation":"img",INPUT:n=>{const e=n.type.toLowerCase();if(e==="search")return n.hasAttribute("list")?"combobox":"searchbox";if(["email","tel","text","url",""].includes(e)){const i=jr(n,n.getAttribute("list"))[0];return i&&et(i)==="DATALIST"?"combobox":"textbox"}return e==="hidden"?null:e==="file"?"button":ST[e]||"textbox"},INS:()=>"insertion",LI:()=>"listitem",MAIN:()=>"main",MARK:()=>"mark",MATH:()=>"math",MENU:()=>"list",METER:()=>"meter",NAV:()=>"navigation",OL:()=>"list",OPTGROUP:()=>"group",OPTION:()=>"option",OUTPUT:()=>"status",P:()=>"paragraph",PROGRESS:()=>"progressbar",SEARCH:()=>"search",SECTION:n=>v0(n)?"region":null,SELECT:n=>n.hasAttribute("multiple")||n.size>1?"listbox":"combobox",STRONG:()=>"strong",SUB:()=>"subscript",SUP:()=>"superscript",SVG:()=>"img",TABLE:()=>"table",TBODY:()=>"rowgroup",TD:n=>{const e=Va(n,"table"),i=e?md(e):"";return i==="grid"||i==="treegrid"?"gridcell":"cell"},TEXTAREA:()=>"textbox",TFOOT:()=>"rowgroup",TH:n=>{const e=n.getAttribute("scope");if(e==="col"||e==="colgroup")return"columnheader";if(e==="row"||e==="rowgroup")return"rowheader";const i=n.nextElementSibling,r=n.previousElementSibling,l=n.parentElement&&et(n.parentElement)==="TR"?n.parentElement:void 0;if(!i&&!r){if(l){const o=Va(l,"table");if(o&&o.rows.length<=1)return null}return"columnheader"}return w0(i)&&w0(r)?"columnheader":x0(i)||x0(r)?"rowheader":"columnheader"},THEAD:()=>"rowgroup",TIME:()=>"time",TR:()=>"row",UL:()=>"list"};function w0(n){return!!n&&et(n)==="TH"}function x0(n){var e;return!n||et(n)!=="TD"?!1:!!((e=n.textContent)!=null&&e.trim()||n.children.length>0)}const rT={DD:["DL","DIV"],DIV:["DL"],DT:["DL","DIV"],LI:["OL","UL"],TBODY:["TABLE"],TD:["TR"],TFOOT:["TABLE"],TH:["TR"],THEAD:["TABLE"],TR:["THEAD","TBODY","TFOOT","TABLE"]};function _0(n){var r;const e=((r=fh[et(n)])==null?void 0:r.call(fh,n))||"";if(!e)return null;let i=n;for(;i;){const l=Ct(i),o=rT[et(i)];if(!o||!l||!o.includes(et(l)))break;const u=md(l);if((u==="none"||u==="presentation")&&!fv(l,u))return u;i=l}return e}const aT=["alert","alertdialog","application","article","banner","blockquote","button","caption","cell","checkbox","code","columnheader","combobox","complementary","contentinfo","definition","deletion","dialog","directory","document","emphasis","feed","figure","form","generic","grid","gridcell","group","heading","img","insertion","link","list","listbox","listitem","log","main","mark","marquee","math","meter","menu","menubar","menuitem","menuitemcheckbox","menuitemradio","navigation","none","note","option","paragraph","presentation","progressbar","radio","radiogroup","region","row","rowgroup","rowheader","scrollbar","search","searchbox","separator","slider","spinbutton","status","strong","subscript","superscript","switch","tab","table","tablist","tabpanel","term","textbox","time","timer","toolbar","tooltip","tree","treegrid","treeitem"];function md(n){return(n.getAttribute("role")||"").split(" ").map(i=>i.trim()).find(i=>aT.includes(i))||null}function fv(n,e){return cv(n,e)||iT(n)}function Tt(n){const e=md(n);if(!e)return _0(n);if(e==="none"||e==="presentation"){const i=_0(n);if(fv(n,i))return i}return e}function hv(n){return n===null?void 0:n.toLowerCase()==="true"}function dv(n){return["STYLE","SCRIPT","NOSCRIPT","TEMPLATE"].includes(et(n))}function gn(n){if(dv(n))return!0;const e=zi(n),i=n.nodeName==="SLOT";if((e==null?void 0:e.display)==="contents"&&!i){for(let l=n.firstChild;l;l=l.nextSibling)if(l.nodeType===1&&!gn(l)||l.nodeType===3&&lv(l))return!1;return!0}return!(n.nodeName==="OPTION"&&!!n.closest("select"))&&!i&&!av(n,e)?!0:pv(n)}function pv(n){let e=Oi==null?void 0:Oi.get(n);if(e===void 0){if(e=!1,n.parentElement&&n.parentElement.shadowRoot&&!n.assignedSlot&&(e=!0),!e){const i=zi(n);e=!i||i.display==="none"||hv(n.getAttribute("aria-hidden"))===!0}if(!e){const i=Ct(n);i&&(e=pv(i))}Oi==null||Oi.set(n,e)}return e}function jr(n,e){if(!e)return[];const i=sv(n);if(!i)return[];try{const r=e.split(" ").filter(o=>!!o),l=[];for(const o of r){const u=i.querySelector("#"+CSS.escape(o));u&&!l.includes(u)&&l.push(u)}return l}catch{return[]}}function ei(n){return n.trim()}function Ja(n){return n.split(" ").map(e=>e.replace(/\r\n/g,`
107
+ `).replace(/[\u200b\u00ad]/g,"").replace(/\s\s*/g," ")).join(" ").trim()}function E0(n,e){const i=[...n.querySelectorAll(e)];for(const r of jr(n,n.getAttribute("aria-owns")))r.matches(e)&&i.push(r),i.push(...r.querySelectorAll(e));return i}function Za(n,e){const i=e==="::before"?Nd:e==="::after"?kd:Cd;if(i!=null&&i.has(n))return i==null?void 0:i.get(n);const r=zi(n,e);let l;if(r){const o=r.content;o&&o!=="none"&&o!=="normal"&&r.display!=="none"&&r.visibility!=="hidden"&&(l=lT(n,o,!!e))}return e&&l!==void 0&&((r==null?void 0:r.display)||"inline")!=="inline"&&(l=" "+l+" "),i&&i.set(n,l),l}function lT(n,e,i){if(!(!e||e==="none"||e==="normal"))try{let r=mb(e).filter(f=>!(f instanceof ic));const l=r.findIndex(f=>f instanceof xt&&f.value==="/");if(l!==-1)r=r.slice(l+1);else if(!i)return;const o=[];let u=0;for(;u<r.length;)if(r[u]instanceof rd)o.push(r[u].value),u++;else if(u+2<r.length&&r[u]instanceof Fa&&r[u].value==="attr"&&r[u+1]instanceof sd&&r[u+2]instanceof id){const f=r[u+1].value;o.push(n.getAttribute(f)||""),u+=3}else return;return o.join("")}catch{}}function gv(n){const e=n.getAttribute("aria-labelledby");if(e===null)return null;const i=jr(n,e);return i.length?i:null}function oT(n,e){const i=["button","cell","checkbox","columnheader","gridcell","heading","link","menuitem","menuitemcheckbox","menuitemradio","option","radio","row","rowheader","switch","tab","tooltip","treeitem"].includes(n),r=e&&["","caption","code","contentinfo","definition","deletion","emphasis","insertion","list","listitem","mark","none","paragraph","presentation","region","row","rowgroup","section","strong","subscript","superscript","table","term","time"].includes(n);return i||r}function sl(n,e){const i=e?Ed:_d;let r=i==null?void 0:i.get(n);return r===void 0&&(r="",["caption","code","definition","deletion","emphasis","generic","insertion","mark","paragraph","presentation","strong","subscript","suggestion","superscript","term","time"].includes(Tt(n)||"")||(r=Ja(_n(n,{includeHidden:e,visitedElements:new Set,embeddedInTargetElement:"self"}))),i==null||i.set(n,r)),r}function rl(n,e){const i=e?Ad:Td;let r=i==null?void 0:i.get(n);if(r===void 0){if(r="",n.hasAttribute("aria-describedby")){const l=jr(n,n.getAttribute("aria-describedby"));r=Ja(l.map(o=>_n(o,{includeHidden:e,visitedElements:new Set,embeddedInDescribedBy:{element:o,hidden:gn(o)}})).join(" "))}else n.hasAttribute("aria-description")?r=Ja(n.getAttribute("aria-description")||""):r=Ja(n.getAttribute("title")||"");i==null||i.set(n,r)}return r}const cT=["application","checkbox","columnheader","combobox","gridcell","listbox","radiogroup","rowheader","searchbox","slider","spinbutton","switch","textbox","tree"];function mv(n){const e=n.getAttribute("aria-invalid");return!e||e.trim()===""||e.toLocaleLowerCase()==="false"?"false":e==="true"||e==="grammar"||e==="spelling"?e:"true"}function uT(n){if("validity"in n){const e=n.validity;return(e==null?void 0:e.valid)===!1}return!1}function fT(n){const e=mr;let i=mr==null?void 0:mr.get(n);if(i===void 0){i="";const r=mv(n)!=="false",l=uT(n);if(r||l){const o=n.getAttribute("aria-errormessage");i=jr(n,o).map(d=>Ja(_n(d,{visitedElements:new Set,embeddedInDescribedBy:{element:d,hidden:gn(d)}}))).join(" ").trim()}e==null||e.set(n,i)}return i}function _n(n,e){var d,g,m,y;if(e.visitedElements.has(n))return"";const i={...e,embeddedInTargetElement:e.embeddedInTargetElement==="self"?"descendant":e.embeddedInTargetElement};if(!e.includeHidden){const S=!!((d=e.embeddedInLabelledBy)!=null&&d.hidden)||!!((g=e.embeddedInDescribedBy)!=null&&g.hidden)||!!((m=e.embeddedInNativeTextAlternative)!=null&&m.hidden)||!!((y=e.embeddedInLabel)!=null&&y.hidden);if(dv(n)||!S&&gn(n))return e.visitedElements.add(n),""}const r=gv(n);if(!e.embeddedInLabelledBy){const S=(r||[]).map(w=>_n(w,{...e,embeddedInLabelledBy:{element:w,hidden:gn(w)},embeddedInDescribedBy:void 0,embeddedInTargetElement:void 0,embeddedInLabel:void 0,embeddedInNativeTextAlternative:void 0})).join(" ");if(S)return S}const l=Tt(n)||"",o=et(n);if(e.embeddedInLabel||e.embeddedInLabelledBy||e.embeddedInTargetElement==="descendant"){const S=[...n.labels||[]].includes(n),w=(r||[]).includes(n);if(!S&&!w){if(l==="textbox")return e.visitedElements.add(n),o==="INPUT"||o==="TEXTAREA"?n.value:n.textContent||"";if(["combobox","listbox"].includes(l)){e.visitedElements.add(n);let E;if(o==="SELECT")E=[...n.selectedOptions],!E.length&&n.options.length&&E.push(n.options[0]);else{const x=l==="combobox"?E0(n,"*").find(_=>Tt(_)==="listbox"):n;E=x?E0(x,'[aria-selected="true"]').filter(_=>Tt(_)==="option"):[]}return!E.length&&o==="INPUT"?n.value:E.map(x=>_n(x,i)).join(" ")}if(["progressbar","scrollbar","slider","spinbutton","meter"].includes(l))return e.visitedElements.add(n),n.hasAttribute("aria-valuetext")?n.getAttribute("aria-valuetext")||"":n.hasAttribute("aria-valuenow")?n.getAttribute("aria-valuenow")||"":n.getAttribute("value")||"";if(["menu"].includes(l))return e.visitedElements.add(n),""}}const u=n.getAttribute("aria-label")||"";if(ei(u))return e.visitedElements.add(n),u;if(!["presentation","none"].includes(l)){if(o==="INPUT"&&["button","submit","reset"].includes(n.type)){e.visitedElements.add(n);const S=n.value||"";return ei(S)?S:n.type==="submit"?"Submit":n.type==="reset"?"Reset":n.getAttribute("title")||""}if(o==="INPUT"&&n.type==="file"){e.visitedElements.add(n);const S=n.labels||[];return S.length&&!e.embeddedInLabelledBy?za(S,e):"Choose File"}if(o==="INPUT"&&n.type==="image"){e.visitedElements.add(n);const S=n.labels||[];if(S.length&&!e.embeddedInLabelledBy)return za(S,e);const w=n.getAttribute("alt")||"";if(ei(w))return w;const E=n.getAttribute("title")||"";return ei(E)?E:"Submit"}if(!r&&o==="BUTTON"){e.visitedElements.add(n);const S=n.labels||[];if(S.length)return za(S,e)}if(!r&&o==="OUTPUT"){e.visitedElements.add(n);const S=n.labels||[];return S.length?za(S,e):n.getAttribute("title")||""}if(!r&&(o==="TEXTAREA"||o==="SELECT"||o==="INPUT")){e.visitedElements.add(n);const S=n.labels||[];if(S.length)return za(S,e);const w=o==="INPUT"&&["text","password","search","tel","email","url"].includes(n.type)||o==="TEXTAREA",E=n.getAttribute("placeholder")||"",x=n.getAttribute("title")||"";return!w||x?x:E}if(!r&&o==="FIELDSET"){e.visitedElements.add(n);for(let w=n.firstElementChild;w;w=w.nextElementSibling)if(et(w)==="LEGEND")return _n(w,{...i,embeddedInNativeTextAlternative:{element:w,hidden:gn(w)}});return n.getAttribute("title")||""}if(!r&&o==="FIGURE"){e.visitedElements.add(n);for(let w=n.firstElementChild;w;w=w.nextElementSibling)if(et(w)==="FIGCAPTION")return _n(w,{...i,embeddedInNativeTextAlternative:{element:w,hidden:gn(w)}});return n.getAttribute("title")||""}if(o==="IMG"){e.visitedElements.add(n);const S=n.getAttribute("alt")||"";return ei(S)?S:n.getAttribute("title")||""}if(o==="TABLE"){e.visitedElements.add(n);for(let w=n.firstElementChild;w;w=w.nextElementSibling)if(et(w)==="CAPTION")return _n(w,{...i,embeddedInNativeTextAlternative:{element:w,hidden:gn(w)}});const S=n.getAttribute("summary")||"";if(S)return S}if(o==="AREA"){e.visitedElements.add(n);const S=n.getAttribute("alt")||"";return ei(S)?S:n.getAttribute("title")||""}if(o==="SVG"||n.ownerSVGElement){e.visitedElements.add(n);for(let S=n.firstElementChild;S;S=S.nextElementSibling)if(et(S)==="TITLE"&&S.ownerSVGElement)return _n(S,{...i,embeddedInLabelledBy:{element:S,hidden:gn(S)}})}if(n.ownerSVGElement&&o==="A"){const S=n.getAttribute("xlink:title")||"";if(ei(S))return e.visitedElements.add(n),S}}const f=o==="SUMMARY"&&!["presentation","none"].includes(l);if(oT(l,e.embeddedInTargetElement==="descendant")||f||e.embeddedInLabelledBy||e.embeddedInDescribedBy||e.embeddedInLabel||e.embeddedInNativeTextAlternative){e.visitedElements.add(n);const S=hT(n,i);if(e.embeddedInTargetElement==="self"?ei(S):S)return S}if(!["presentation","none"].includes(l)||o==="IFRAME"){e.visitedElements.add(n);const S=n.getAttribute("title")||"";if(ei(S))return S}return e.visitedElements.add(n),""}function hT(n,e){const i=[],r=(o,u)=>{var f;if(!(u&&o.assignedSlot))if(o.nodeType===1){const d=((f=zi(o))==null?void 0:f.display)||"inline";let g=_n(o,e);(d!=="inline"||o.nodeName==="BR")&&(g=" "+g+" "),i.push(g)}else o.nodeType===3&&i.push(o.textContent||"")};i.push(Za(n,"::before")||"");const l=Za(n);if(l!==void 0)i.push(l);else{const o=n.nodeName==="SLOT"?n.assignedNodes():[];if(o.length)for(const u of o)r(u,!1);else{for(let u=n.firstChild;u;u=u.nextSibling)r(u,!0);if(n.shadowRoot)for(let u=n.shadowRoot.firstChild;u;u=u.nextSibling)r(u,!0);for(const u of jr(n,n.getAttribute("aria-owns")))r(u,!0)}}return i.push(Za(n,"::after")||""),i.join("")}const yd=["gridcell","option","row","tab","rowheader","columnheader","treeitem"];function yv(n){return et(n)==="OPTION"?n.selected:yd.includes(Tt(n)||"")?hv(n.getAttribute("aria-selected"))===!0:!1}const bd=["checkbox","menuitemcheckbox","option","radio","switch","menuitemradio","treeitem"];function bv(n){const e=vd(n,!0);return e==="error"?!1:e}function dT(n){return vd(n,!0)}function pT(n){return vd(n,!1)}function vd(n,e){const i=et(n);if(e&&i==="INPUT"&&n.indeterminate)return"mixed";if(i==="INPUT"&&["checkbox","radio"].includes(n.type))return n.checked;if(bd.includes(Tt(n)||"")){const r=n.getAttribute("aria-checked");return r==="true"?!0:e&&r==="mixed"?"mixed":!1}return"error"}const gT=["checkbox","combobox","grid","gridcell","listbox","radiogroup","slider","spinbutton","textbox","columnheader","rowheader","searchbox","switch","treegrid"];function mT(n){const e=et(n);return["INPUT","TEXTAREA","SELECT"].includes(e)?n.hasAttribute("readonly"):gT.includes(Tt(n)||"")?n.getAttribute("aria-readonly")==="true":n.isContentEditable?!1:"error"}const Sd=["button"];function vv(n){if(Sd.includes(Tt(n)||"")){const e=n.getAttribute("aria-pressed");if(e==="true")return!0;if(e==="mixed")return"mixed"}return!1}const wd=["application","button","checkbox","combobox","gridcell","link","listbox","menuitem","row","rowheader","tab","treeitem","columnheader","menuitemcheckbox","menuitemradio","rowheader","switch"];function Sv(n){if(et(n)==="DETAILS")return n.open;if(wd.includes(Tt(n)||"")){const e=n.getAttribute("aria-expanded");return e===null?void 0:e==="true"}}const xd=["heading","listitem","row","treeitem"];function wv(n){const e={H1:1,H2:2,H3:3,H4:4,H5:5,H6:6}[et(n)];if(e)return e;if(xd.includes(Tt(n)||"")){const i=n.getAttribute("aria-level"),r=i===null?Number.NaN:Number(i);if(Number.isInteger(r)&&r>=1)return r}return 0}const xv=["application","button","composite","gridcell","group","input","link","menuitem","scrollbar","separator","tab","checkbox","columnheader","combobox","grid","listbox","menu","menubar","menuitemcheckbox","menuitemradio","option","radio","radiogroup","row","rowheader","searchbox","select","slider","spinbutton","switch","tablist","textbox","toolbar","tree","treegrid","treeitem"];function cc(n){return _v(n)||Ev(n)}function _v(n){return["BUTTON","INPUT","SELECT","TEXTAREA","OPTION","OPTGROUP"].includes(et(n))&&(n.hasAttribute("disabled")||yT(n)||bT(n))}function yT(n){return et(n)==="OPTION"&&!!n.closest("OPTGROUP[DISABLED]")}function bT(n){const e=n==null?void 0:n.closest("FIELDSET[DISABLED]");if(!e)return!1;const i=e.querySelector(":scope > LEGEND");return!i||!i.contains(n)}function Ev(n,e=!1){if(!n)return!1;if(e||xv.includes(Tt(n)||"")){const i=(n.getAttribute("aria-disabled")||"").toLowerCase();return i==="true"?!0:i==="false"?!1:Ev(Ct(n),!0)}return!1}function za(n,e){return[...n].map(i=>_n(i,{...e,embeddedInLabel:{element:i,hidden:gn(i)},embeddedInNativeTextAlternative:void 0,embeddedInLabelledBy:void 0,embeddedInDescribedBy:void 0,embeddedInTargetElement:void 0})).filter(i=>!!i).join(" ")}function vT(n){const e=Md;let i=n,r;const l=[];for(;i;i=Ct(i)){const o=e.get(i);if(o!==void 0){r=o;break}l.push(i);const u=zi(i);if(!u){r=!0;break}const f=u.pointerEvents;if(f){r=f!=="none";break}}r===void 0&&(r=!0);for(const o of l)e.set(o,r);return r}let _d,Ed,Td,Ad,mr,Oi,Cd,Nd,kd,Md,Tv=0;function vc(){pd(),++Tv,_d??(_d=new Map),Ed??(Ed=new Map),Td??(Td=new Map),Ad??(Ad=new Map),mr??(mr=new Map),Oi??(Oi=new Map),Cd??(Cd=new Map),Nd??(Nd=new Map),kd??(kd=new Map),Md??(Md=new Map)}function Sc(){--Tv||(_d=void 0,Ed=void 0,Td=void 0,Ad=void 0,mr=void 0,Oi=void 0,Cd=void 0,Nd=void 0,kd=void 0,Md=void 0),gd()}const ST={button:"button",checkbox:"checkbox",image:"button",number:"spinbutton",radio:"radio",range:"slider",reset:"button",submit:"button"};let wT=0;function Av(n){const e=n.boxes;return n.mode==="ai"?{visibility:"ariaOrVisible",refs:"interactable",refPrefix:n.refPrefix,includeGenericRole:!0,renderActive:!n.doNotRenderActive,renderCursorPointer:!0,renderBoxes:e}:n.mode==="autoexpect"?{visibility:"ariaAndVisible",refs:"none",renderBoxes:e}:n.mode==="codegen"?{visibility:"aria",refs:"none",renderStringsAsRegex:!0,renderBoxes:e}:{visibility:"aria",refs:"none",renderBoxes:e}}function yr(n,e){const i=Av(e),r=new Set,l={root:{role:"fragment",name:"",children:[],props:{},box:oc(n),receivesPointerEvents:!0},elements:new Map,refs:new Map,iframeRefs:[]};zh(l.root,n);const o=(f,d,g)=>{if(r.has(d))return;if(r.add(d),d.nodeType===Node.TEXT_NODE&&d.nodeValue){if(!g)return;const x=d.nodeValue;f.role!=="textbox"&&x&&f.children.push(d.nodeValue||"");return}if(d.nodeType!==Node.ELEMENT_NODE)return;const m=d,y=!gn(m);let S=y;if(i.visibility==="ariaOrVisible"&&(S=y||ni(m)),i.visibility==="ariaAndVisible"&&(S=y&&ni(m)),i.visibility==="aria"&&!S)return;const w=[];if(m.hasAttribute("aria-owns")){const x=m.getAttribute("aria-owns").split(/\s+/);for(const _ of x){const A=n.ownerDocument.getElementById(_);A&&w.push(A)}}const E=S?xT(m,i):null;E&&(E.ref&&(l.elements.set(E.ref,m),l.refs.set(m,E.ref),E.role==="iframe"&&l.iframeRefs.push(E.ref)),f.children.push(E)),u(E||f,m,w,S)};function u(f,d,g,m){var E;const S=(((E=zi(d))==null?void 0:E.display)||"inline")!=="inline"||d.nodeName==="BR"?" ":"";S&&f.children.push(S),f.children.push(Za(d,"::before")||"");const w=d.nodeName==="SLOT"?d.assignedNodes():[];if(w.length)for(const x of w)o(f,x,m);else{for(let x=d.firstChild;x;x=x.nextSibling)x.assignedSlot||o(f,x,m);if(d.shadowRoot)for(let x=d.shadowRoot.firstChild;x;x=x.nextSibling)o(f,x,m)}for(const x of g)o(f,x,m);if(f.children.push(Za(d,"::after")||""),S&&f.children.push(S),f.children.length===1&&f.name===f.children[0]&&(f.children=[]),f.role==="link"&&d.hasAttribute("href")){const x=d.getAttribute("href");f.props.url=x}if(f.role==="textbox"&&d.hasAttribute("placeholder")&&d.getAttribute("placeholder")!==f.name){const x=d.getAttribute("placeholder");f.props.placeholder=x}}vc();try{o(l.root,n,!0)}finally{Sc()}return ET(l.root),_T(l.root),l}function T0(n,e){if(e.refs==="none"||e.refs==="interactable"&&(!n.box.visible||!n.receivesPointerEvents))return;const i=wc(n);let r=i._ariaRef;(!r||r.role!==n.role||r.name!==n.name)&&(r={role:n.role,name:n.name,ref:(e.refPrefix??"")+"e"+ ++wT},i._ariaRef=r),n.ref=r.ref}function xT(n,e){const i=n.ownerDocument.activeElement===n;if(n.nodeName==="IFRAME"){const g={role:"iframe",name:"",children:[],props:{},box:oc(n),receivesPointerEvents:!0,active:i};return zh(g,n),T0(g,e),g}const r=e.includeGenericRole?"generic":null,l=Tt(n)??r;if(!l||l==="presentation"||l==="none")return null;const o=dt(sl(n,!1)||""),u=vT(n),f=oc(n);if(l==="generic"&&f.inline&&n.childNodes.length===1&&n.childNodes[0].nodeType===Node.TEXT_NODE)return null;const d={role:l,name:o,children:[],props:{},box:f,receivesPointerEvents:u,active:i};if(zh(d,n),T0(d,e),bd.includes(l)&&(d.checked=bv(n)),xv.includes(l)&&(d.disabled=cc(n)),wd.includes(l)&&(d.expanded=Sv(n)),cT.includes(l)){const g=mv(n);d.invalid=g==="false"?!1:g==="true"?!0:g}return xd.includes(l)&&(d.level=wv(n)),Sd.includes(l)&&(d.pressed=vv(n)),yd.includes(l)&&(d.selected=yv(n)),(n instanceof HTMLInputElement||n instanceof HTMLTextAreaElement)&&n.type!=="checkbox"&&n.type!=="radio"&&n.type!=="file"&&(d.children=[n.value]),d}function _T(n){const e=i=>{const r=[];for(const o of i.children||[]){if(typeof o=="string"){r.push(o);continue}const u=e(o);r.push(...u)}return i.role==="generic"&&!i.name&&r.length<=1&&r.every(o=>typeof o!="string"&&!!o.ref)?r:(i.children=r,[i])};e(n)}function ET(n){const e=(r,l)=>{if(!r.length)return;const o=dt(r.join(""));o&&l.push(o),r.length=0},i=r=>{const l=[],o=[];for(const u of r.children||[])typeof u=="string"?o.push(u):(e(o,l),i(u),l.push(u));e(o,l),r.children=l.length?l:[],r.children.length===1&&r.children[0]===r.name&&(r.children=[])};i(n)}function TT(n,e){return e?n?typeof e=="string"?n===e:!!n.match(new RegExp(e.pattern)):!1:!0}function A0(n,e){if(!(e!=null&&e.normalized))return!0;if(!n)return!1;if(n===e.normalized||n===e.raw)return!0;const i=AT(e);return i?!!n.match(i):!1}const hh=Symbol("cachedRegex");function AT(n){if(n[hh]!==void 0)return n[hh];const{raw:e}=n,i=e.startsWith("/")&&e.endsWith("/")&&e.length>1;let r;try{r=i?new RegExp(e.slice(1,-1)):null}catch{r=null}return n[hh]=r,r}function C0(n,e){const i=yr(n,{mode:"default"});return{matches:Cv(i.root,e,!1,!1),received:{raw:br(i,{mode:"default"}).text,regex:br(i,{mode:"codegen"}).text}}}function CT(n,e){const i=yr(n,{mode:"default"}).root;return Cv(i,e,!0,!1).map(l=>wc(l))}function Od(n,e,i){var r;return typeof n=="string"&&e.kind==="text"?A0(n,e.text):n===null||typeof n!="object"||e.kind!=="role"||e.role!=="fragment"&&e.role!==n.role||e.checked!==void 0&&e.checked!==n.checked||e.disabled!==void 0&&e.disabled!==n.disabled||e.expanded!==void 0&&e.expanded!==n.expanded||e.invalid!==void 0&&e.invalid!==n.invalid||e.level!==void 0&&e.level!==n.level||e.pressed!==void 0&&e.pressed!==n.pressed||e.selected!==void 0&&e.selected!==n.selected||!TT(n.name,e.name)||!A0(n.props.url,(r=e.props)==null?void 0:r.url)?!1:e.containerMode==="contain"?k0(n.children||[],e.children||[]):e.containerMode==="equal"?N0(n.children||[],e.children||[],!1):e.containerMode==="deep-equal"||i?N0(n.children||[],e.children||[],!0):k0(n.children||[],e.children||[])}function N0(n,e,i){if(e.length!==n.length)return!1;for(let r=0;r<e.length;++r)if(!Od(n[r],e[r],i))return!1;return!0}function k0(n,e){if(e.length>n.length)return!1;const i=n.slice(),r=e.slice();for(const l of r){let o=i.shift();for(;o&&!Od(o,l,!1);)o=i.shift();if(!o)return!1}return!0}function Cv(n,e,i,r){const l=[],o=(u,f)=>{if(Od(u,e,r)){const d=typeof u=="string"?f:u;return d&&l.push(d),!i}if(typeof u=="string")return!1;for(const d of u.children||[])if(o(d,u))return!0;return!1};return o(n,null),l}function Nv(n,e=new Map){n!=null&&n.ref&&e.set(n.ref,n);for(const i of(n==null?void 0:n.children)||[])typeof i!="string"&&Nv(i,e);return e}function NT(n,e){var o;const i=Nv(e==null?void 0:e.root),r=new Map,l=(u,f)=>{let d=u.children.length===(f==null?void 0:f.children.length)&&VE(u,f),g=d;for(let m=0;m<u.children.length;m++){const y=u.children[m],S=f==null?void 0:f.children[m];if(typeof y=="string")d&&(d=y===S),g&&(g=y===S);else{let w=typeof S!="string"?S:void 0;y.ref&&(w=i.get(y.ref));const E=l(y,w);(!w||!E&&!y.ref||w!==S)&&(g=!1),d&&(d=E&&w===S)}}return r.set(u,d?"same":g?"skip":"changed"),d};return l(n.root,i.get((o=e==null?void 0:e.root)==null?void 0:o.ref)),r}function kT(n,e){const i=[],r=l=>{const o=e.get(l);if(o!=="same")if(o==="skip")for(const u of l.children)typeof u!="string"&&r(u);else i.push(l)};for(const l of n)typeof l=="string"?i.push(l):r(l);return i}function Lo(n){return" ".repeat(n)}function br(n,e,i){const r=Av(e),l=[],o={},u=r.renderStringsAsRegex?OT:()=>!0,f=r.renderStringsAsRegex?MT:E=>E;let d=n.root.role==="fragment"?n.root.children:[n.root];const g=NT(n,i);i&&(d=kT(d,g));const m=(E,x)=>{if(e.depth&&x>e.depth)return;const _=uh(f(E));_&&l.push(Lo(x)+"- text: "+_)},y=(E,x)=>{let _=E.role;if(E.name&&E.name.length<=900){const A=f(E.name);if(A){const C=A.startsWith("/")&&A.endsWith("/")?A:JSON.stringify(A);_+=" "+C}}if(E.checked==="mixed"&&(_+=" [checked=mixed]"),E.checked===!0&&(_+=" [checked]"),E.disabled&&(_+=" [disabled]"),E.expanded&&(_+=" [expanded]"),E.active&&r.renderActive&&(_+=" [active]"),(E.invalid==="grammar"||E.invalid==="spelling")&&(_+=` [invalid=${E.invalid}]`),E.invalid===!0&&(_+=" [invalid]"),E.level&&(_+=` [level=${E.level}]`),E.pressed==="mixed"&&(_+=" [pressed=mixed]"),E.pressed===!0&&(_+=" [pressed]"),E.selected===!0&&(_+=" [selected]"),E.ref&&(_+=` [ref=${E.ref}]`,x&&ac(E)&&(_+=" [cursor=pointer]")),r.renderBoxes){const A=wc(E);if(A){const C=A.getBoundingClientRect();_+=` [box=${Math.round(C.x)},${Math.round(C.y)},${Math.round(C.width)},${Math.round(C.height)}]`}}return _},S=E=>(E==null?void 0:E.children.length)===1&&typeof E.children[0]=="string"&&!Object.keys(E.props).length?E.children[0]:void 0,w=(E,x,_)=>{if(e.depth&&x>e.depth)return;if(E.role==="iframe"&&E.ref&&(o[E.ref]=x),g.get(E)==="same"&&E.ref){l.push(Lo(x)+`- ref=${E.ref} [unchanged]`);return}const A=!!i&&!x,C=Lo(x)+"- "+(A?"<changed> ":"")+eT(y(E,_)),H=S(E),V=!!e.depth&&x===e.depth;if(!H&&(!E.children.length||V)&&!Object.keys(E.props).length)l.push(C);else if(H!==void 0)u(E,H)?l.push(C+": "+uh(f(H))):l.push(C);else{l.push(C+":");for(const[j,I]of Object.entries(E.props))l.push(Lo(x+1)+"- /"+j+": "+uh(I));const Q=!!E.ref&&_&&ac(E);for(const j of E.children)typeof j=="string"?m(u(E,j)?j:"",x+1):w(j,x+1,_&&!Q)}};for(const E of d)typeof E=="string"?m(E,0):w(E,0,!!r.renderCursorPointer);return{text:l.join(`
108
+ `),iframeDepths:o}}function MT(n){const e=[{regex:/\b[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\b/,replacement:"[0-9a-fA-F-]+"},{regex:/\b[\d,.]+[bkmBKM]+\b/,replacement:"[\\d,.]+[bkmBKM]+"},{regex:/\b\d+[hmsp]+\b/,replacement:"\\d+[hmsp]+"},{regex:/\b[\d,.]+[hmsp]+\b/,replacement:"[\\d,.]+[hmsp]+"},{regex:/\b\d+,\d+\b/,replacement:"\\d+,\\d+"},{regex:/\b\d+\.\d{2,}\b/,replacement:"\\d+\\.\\d+"},{regex:/\b\d{2,}\.\d+\b/,replacement:"\\d+\\.\\d+"},{regex:/\b\d{2,}\b/,replacement:"\\d+"}];let i="",r=0;const l=new RegExp(e.map(o=>"("+o.regex.source+")").join("|"),"g");return n.replace(l,(o,...u)=>{const f=u[u.length-2],d=u.slice(0,-2);i+=rc(n.slice(r,f));for(let g=0;g<d.length;g++)if(d[g]){const{replacement:m}=e[g];i+=m;break}return r=f+o.length,o}),i?(i+=rc(n.slice(r)),String(new RegExp(i))):n}function OT(n,e){if(!e.length)return!1;if(!n.name)return!0;const i=e.length<=200&&n.name.length<=200?h_(e,n.name):"";let r=e;for(;i&&r.includes(i);)r=r.replace(i,"");return r.trim().length/e.length>.1}const kv=Symbol("element");function wc(n){return n[kv]}function zh(n,e){n[kv]=e}function jT(n,e){const i=XE(n,e);return i?wc(i):void 0}const M0=":host{font-size:13px;font-family:system-ui,Ubuntu,Droid Sans,sans-serif;color:#333;color-scheme:light}svg{position:absolute;height:0}x-pw-tooltip{-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);background-color:#fff;border-radius:6px;box-shadow:0 .5rem 1.2rem #0000004d;display:none;font-size:12.8px;font-weight:400;left:0;line-height:1.5;max-width:600px;position:absolute;top:0;padding:0;flex-direction:column;overflow:hidden}x-pw-tooltip-line{display:flex;max-width:600px;padding:6px;-webkit-user-select:none;user-select:none;cursor:pointer}x-pw-tooltip-footer{display:flex;max-width:600px;padding:6px;-webkit-user-select:none;user-select:none;color:#777}x-pw-dialog{background-color:#fff;pointer-events:auto;border-radius:6px;box-shadow:0 .5rem 1.2rem #0000004d;display:flex;flex-direction:column;position:absolute;z-index:10;font-size:13px}x-pw-dialog:not(.autosize){width:400px;height:150px}x-pw-dialog-body{display:flex;flex-direction:column;flex:auto}x-pw-dialog-body label{margin:5px 8px;display:flex;flex-direction:row;align-items:center}x-pw-highlight{position:absolute;top:0;left:0;width:0;height:0}x-pw-action-point{position:absolute;width:20px;height:20px;background:red;border-radius:10px;margin:-10px 0 0 -10px;z-index:2}x-pw-action-cursor{position:absolute;width:18px;height:22px;pointer-events:none;z-index:4;filter:drop-shadow(0 1px 2px rgba(0,0,0,.4))}x-pw-action-cursor svg{width:100%;height:100%;position:static}x-pw-title{position:absolute;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);background-color:#00000080;color:#fff;border-radius:6px;padding:6px;font-size:24px;line-height:1.4;white-space:nowrap;-webkit-user-select:none;user-select:none;z-index:3}x-pw-user-overlays,x-pw-user-overlay{position:absolute;top:0;right:0;bottom:0;left:0}@keyframes pw-fade-out{0%{opacity:1}to{opacity:0}}x-pw-separator{height:1px;margin:6px 9px;background:#949494e5}x-pw-tool-gripper{height:28px;width:24px;margin:2px 0;cursor:grab}x-pw-tool-gripper:active{cursor:grabbing}x-pw-tool-gripper>x-div{width:16px;height:16px;margin:6px 4px;clip-path:url(#icon-gripper);background-color:#555}x-pw-tools-list>label{display:flex;align-items:center;margin:0 10px;-webkit-user-select:none;user-select:none}x-pw-tools-list{display:flex;width:100%;border-bottom:1px solid #dddddd}x-pw-tool-item{pointer-events:auto;height:28px;width:28px;border-radius:3px}x-pw-tool-item:not(.disabled){cursor:pointer}x-pw-tool-item:not(.disabled):hover{background-color:#dbdbdb}x-pw-tool-item.toggled{background-color:#8acae480}x-pw-tool-item.toggled:not(.disabled):hover{background-color:#8acae4c4}x-pw-tool-item>x-div{width:16px;height:16px;margin:6px;background-color:#3a3a3a}x-pw-tool-item.disabled>x-div{background-color:#61616180;cursor:default}x-pw-tool-item.record.toggled{background-color:transparent}x-pw-tool-item.record.toggled:not(.disabled):hover{background-color:#dbdbdb}x-pw-tool-item.record.toggled>x-div{background-color:#a1260d}x-pw-tool-item.record.disabled.toggled>x-div{opacity:.8}x-pw-tool-item.accept>x-div{background-color:#388a34}x-pw-tool-item.record>x-div{clip-path:url(#icon-circle-large-filled)}x-pw-tool-item.record.toggled>x-div{clip-path:url(#icon-stop-circle)}x-pw-tool-item.pick-locator>x-div{clip-path:url(#icon-inspect)}x-pw-tool-item.text>x-div{clip-path:url(#icon-whole-word)}x-pw-tool-item.visibility>x-div{clip-path:url(#icon-eye)}x-pw-tool-item.value>x-div{clip-path:url(#icon-symbol-constant)}x-pw-tool-item.snapshot>x-div{clip-path:url(#icon-gist)}x-pw-tool-item.accept>x-div{clip-path:url(#icon-check)}x-pw-tool-item.cancel>x-div{clip-path:url(#icon-close)}x-pw-tool-item.succeeded>x-div{clip-path:url(#icon-pass);background-color:#388a34!important}x-pw-overlay{position:absolute;top:0;max-width:min-content;z-index:2147483647;background:transparent;pointer-events:auto}x-pw-overlay x-pw-tools-list{background-color:#fffd;box-shadow:#0000001a 0 5px 5px;border-radius:3px;border-bottom:none}x-pw-overlay x-pw-tool-item{margin:2px}textarea.text-editor{font-family:system-ui,Ubuntu,Droid Sans,sans-serif;flex:auto;border:none;margin:6px 10px;color:#333;outline:1px solid transparent!important;resize:none;padding:0;font-size:13px}textarea.text-editor.does-not-match{outline:1px solid red!important}x-div{display:block}x-spacer{flex:auto}*{box-sizing:border-box}*[hidden]{display:none!important}x-locator-editor{flex:none;width:100%;height:60px;padding:4px;border-bottom:1px solid #dddddd;outline:1px solid transparent}x-locator-editor.does-not-match{outline:1px solid red}.CodeMirror{width:100%!important;height:100%!important}x-pw-action-list{flex:auto;display:flex;flex-direction:column;-webkit-user-select:none;user-select:none}x-pw-action-item{padding:6px 10px;cursor:pointer;overflow:hidden}x-pw-action-item:hover{background-color:#f2f2f2}x-pw-action-item:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}";class dh{constructor(e){this._renderedEntries=[],this._userOverlays=new Map,this._userOverlayHidden=!1,this._language="javascript",this._elementHighlightSelectors=new Map,this._injectedScript=e;const i=e.document;if(this._isUnderTest=e.isUnderTest,this._glassPaneElement=i.createElement("x-pw-glass"),this._glassPaneElement.setAttribute("popover","manual"),this._glassPaneElement.style.inset="0",this._glassPaneElement.style.width="100%",this._glassPaneElement.style.height="100%",this._glassPaneElement.style.maxWidth="none",this._glassPaneElement.style.maxHeight="none",this._glassPaneElement.style.padding="0",this._glassPaneElement.style.margin="0",this._glassPaneElement.style.border="none",this._glassPaneElement.style.overflow="visible",this._glassPaneElement.style.pointerEvents="none",this._glassPaneElement.style.display="flex",this._glassPaneElement.style.backgroundColor="transparent",this._actionPointElement=i.createElement("x-pw-action-point"),this._actionPointElement.setAttribute("hidden","true"),this._actionCursorElement=i.createElement("x-pw-action-cursor"),this._actionCursorElement.style.visibility="hidden",this._actionCursorElement.appendChild(this._createCursorSvg(i)),this._titleElement=i.createElement("x-pw-title"),this._titleElement.setAttribute("hidden","true"),this._userOverlayContainer=i.createElement("x-pw-user-overlays"),this._userOverlayContainer.setAttribute("hidden","true"),this._glassPaneShadow=this._glassPaneElement.attachShadow({mode:this._isUnderTest?"open":"closed"}),typeof this._glassPaneShadow.adoptedStyleSheets.push=="function"){const r=new this._injectedScript.window.CSSStyleSheet;r.replaceSync(M0),this._glassPaneShadow.adoptedStyleSheets.push(r)}else{const r=this._injectedScript.document.createElement("style");r.textContent=M0,this._glassPaneShadow.appendChild(r)}this._glassPaneShadow.appendChild(this._actionPointElement),this._glassPaneShadow.appendChild(this._actionCursorElement),this._glassPaneShadow.appendChild(this._titleElement),this._glassPaneShadow.appendChild(this._userOverlayContainer)}install(){this._injectedScript.document.documentElement&&((!this._injectedScript.document.documentElement.contains(this._glassPaneElement)||this._glassPaneElement.nextElementSibling)&&this._injectedScript.document.documentElement.appendChild(this._glassPaneElement),this._bringToFront())}_bringToFront(){this._glassPaneElement.hidePopover(),this._glassPaneElement.showPopover()}setLanguage(e){this._language=e}addElementHighlight(e,i){const r=$t(e);this._elementHighlightSelectors.set(r,{selector:e,cssStyle:i}),this._ensureElementHighlightRaf()}removeElementHighlight(e){const i=$t(e);this._elementHighlightSelectors.delete(i)&&this._elementHighlightSelectors.size===0&&(this._rafRequest&&(this._injectedScript.utils.builtins.cancelAnimationFrame(this._rafRequest),this._rafRequest=void 0),this.clearHighlight())}_ensureElementHighlightRaf(){if(this._rafRequest)return;const e=()=>{const i=[];for(const{selector:r,cssStyle:l}of this._elementHighlightSelectors.values()){const o=this._injectedScript.querySelectorAll(r,this._injectedScript.document.documentElement),u=Li(this._language,$t(r)),f=o.length>1?"#f6b26b7f":"#6fa8dc7f";for(let d=0;d<o.length;++d){const g=o.length>1?` [${d+1} of ${o.length}]`:"";i.push({element:o[d],color:f,tooltipText:u+g,cssStyle:l})}}this.updateHighlight(i),this._rafRequest=this._injectedScript.utils.builtins.requestAnimationFrame(e)};this._rafRequest=this._injectedScript.utils.builtins.requestAnimationFrame(e)}uninstall(){this._rafRequest&&(this._injectedScript.utils.builtins.cancelAnimationFrame(this._rafRequest),this._rafRequest=void 0),this._elementHighlightSelectors.clear(),this._glassPaneElement.remove()}showActionPoint(e,i,r){this._actionPointElement.style.top=i+"px",this._actionPointElement.style.left=e+"px",this._actionPointElement.hidden=!1,r?this._actionPointElement.style.animation=`pw-fade-out ${r}ms ease-out forwards`:this._actionPointElement.style.animation=""}hideActionPoint(){this._actionPointElement.hidden=!0}moveActionCursor(e,i,r){const l=r?Math.max(80,Math.min(r*.6,400)):0;this._actionCursorElement.style.transition=`top ${l}ms ease, left ${l}ms ease`,this._actionCursorElement.style.left=e+"px",this._actionCursorElement.style.top=i+"px",this._actionCursorElement.style.visibility="visible"}hideActionCursor(){this._actionCursorElement.style.visibility="hidden"}_createCursorSvg(e){const i="http://www.w3.org/2000/svg",r=e.createElementNS(i,"svg");r.setAttribute("viewBox","0 0 18 22");const l=e.createElementNS(i,"path");return l.setAttribute("d","M1 1 L1 17 L5.5 13 L8 20.5 L11 19.5 L8.5 12 L15 12 Z"),l.setAttribute("fill","white"),l.setAttribute("stroke","black"),l.setAttribute("stroke-width","1.5"),l.setAttribute("stroke-linejoin","round"),r.appendChild(l),r}showActionTitle(e,i,r,l){if(this._titleElement.textContent=e,this._titleElement.hidden=!1,i){const o=i/4;this._titleElement.style.animation=`pw-fade-out ${o}ms ease-out ${i-o}ms forwards`}else this._titleElement.style.animation="";switch(this._titleElement.style.top="",this._titleElement.style.bottom="",this._titleElement.style.left="",this._titleElement.style.right="",this._titleElement.style.transform="",r){case"top-left":this._titleElement.style.top="6px",this._titleElement.style.left="6px";break;case"top":this._titleElement.style.top="6px",this._titleElement.style.left="50%",this._titleElement.style.transform="translateX(-50%)";break;case"bottom-left":this._titleElement.style.bottom="6px",this._titleElement.style.left="6px";break;case"bottom":this._titleElement.style.bottom="6px",this._titleElement.style.left="50%",this._titleElement.style.transform="translateX(-50%)";break;case"bottom-right":this._titleElement.style.bottom="6px",this._titleElement.style.right="6px";break;case"top-right":default:this._titleElement.style.top="6px",this._titleElement.style.right="6px";break}l&&(this._titleElement.style.fontSize=l+"px")}hideActionTitle(){this._titleElement.hidden=!0}addUserOverlay(e,i){const r=this._injectedScript.document.createElement("div");r.className="x-pw-user-overlay",r.innerHTML=i;for(const l of r.querySelectorAll("script"))l.remove();for(const l of r.querySelectorAll("*"))for(const o of[...l.attributes])o.name.startsWith("on")&&l.removeAttribute(o.name);return this._userOverlays.set(e,r),this._userOverlayContainer.appendChild(r),this._userOverlayContainer.hidden=this._userOverlayHidden,e}getUserOverlay(e){return this._userOverlays.get(e)}removeUserOverlay(e){const i=this._userOverlays.get(e);i&&(i.remove(),this._userOverlays.delete(e)),this._userOverlays.size===0&&(this._userOverlayContainer.hidden=!0)}setUserOverlaysVisible(e){this._userOverlayHidden=!e,this._userOverlayContainer.hidden=!e||this._userOverlays.size===0}clearHighlight(){var e,i;for(const r of this._renderedEntries)(e=r.highlightElement)==null||e.remove(),(i=r.tooltipElement)==null||i.remove();this._renderedEntries=[]}maskElements(e,i){this.updateHighlight(e.map(r=>({element:r,color:i})))}updateHighlight(e){if(!this._highlightIsUpToDate(e)){this.clearHighlight();for(const i of e){const r=this._createHighlightElement();this._glassPaneShadow.appendChild(r);let l;if(i.tooltipText){l=this._injectedScript.document.createElement("x-pw-tooltip"),this._glassPaneShadow.appendChild(l),l.style.top="0",l.style.left="0",l.style.display="flex";const o=this._injectedScript.document.createElement("x-pw-tooltip-line");o.textContent=i.tooltipText,l.appendChild(o)}this._renderedEntries.push({targetElement:i.element,box:O0(i.box),color:i.color,borderColor:i.borderColor,fadeDuration:i.fadeDuration,cssStyle:i.cssStyle,tooltipElement:l,highlightElement:r})}for(const i of this._renderedEntries){if(!i.box&&!i.targetElement||(i.box=i.box||i.targetElement.getBoundingClientRect(),!i.tooltipElement))continue;const{anchorLeft:r,anchorTop:l}=this.tooltipPosition(i.box,i.tooltipElement);i.tooltipTop=l,i.tooltipLeft=r}for(const i of this._renderedEntries){i.tooltipElement&&(i.tooltipElement.style.top=i.tooltipTop+"px",i.tooltipElement.style.left=i.tooltipLeft+"px");const r=i.box;i.highlightElement.style.backgroundColor=i.color,i.highlightElement.style.left=r.x+"px",i.highlightElement.style.top=r.y+"px",i.highlightElement.style.width=r.width+"px",i.highlightElement.style.height=r.height+"px",i.highlightElement.style.display="block",i.borderColor&&(i.highlightElement.style.border="2px solid "+i.borderColor),i.fadeDuration&&(i.highlightElement.style.animation=`pw-fade-out ${i.fadeDuration}ms ease-out forwards`),i.cssStyle&&(i.highlightElement.style.cssText+=";"+i.cssStyle),this._isUnderTest&&console.error("Highlight box for test: "+JSON.stringify({x:r.x,y:r.y,width:r.width,height:r.height}))}}}firstBox(){var e;return(e=this._renderedEntries[0])==null?void 0:e.box}firstTooltipBox(){const e=this._renderedEntries[0];if(!(!e||!e.tooltipElement||e.tooltipLeft===void 0||e.tooltipTop===void 0))return{x:e.tooltipLeft,y:e.tooltipTop,left:e.tooltipLeft,top:e.tooltipTop,width:e.tooltipElement.offsetWidth,height:e.tooltipElement.offsetHeight,bottom:e.tooltipTop+e.tooltipElement.offsetHeight,right:e.tooltipLeft+e.tooltipElement.offsetWidth,toJSON:()=>{}}}tooltipPosition(e,i){const r=i.offsetWidth,l=i.offsetHeight,o=this._glassPaneElement.offsetWidth,u=this._glassPaneElement.offsetHeight;let f=Math.max(5,e.left);f+r>o-5&&(f=o-r-5);let d=Math.max(0,e.bottom)+5;return d+l>u-5&&(Math.max(0,e.top)>l+5?d=Math.max(0,e.top)-l-5:d=u-5-l),{anchorLeft:f,anchorTop:d}}_highlightIsUpToDate(e){if(e.length!==this._renderedEntries.length)return!1;for(let i=0;i<this._renderedEntries.length;++i){if(e[i].element!==this._renderedEntries[i].targetElement||e[i].color!==this._renderedEntries[i].color||e[i].cssStyle!==this._renderedEntries[i].cssStyle)return!1;const r=this._renderedEntries[i].box;if(!r)return!1;const l=e[i].box?O0(e[i].box):e[i].element.getBoundingClientRect();if(l.top!==r.top||l.right!==r.right||l.bottom!==r.bottom||l.left!==r.left)return!1}return!0}_createHighlightElement(){return this._injectedScript.document.createElement("x-pw-highlight")}appendChild(e){this._glassPaneShadow.appendChild(e)}onGlassPaneClick(e){this._glassPaneElement.style.pointerEvents="auto",this._glassPaneElement.style.backgroundColor="rgba(0, 0, 0, 0.3)",this._glassPaneElement.addEventListener("click",e)}offGlassPaneClick(e){this._glassPaneElement.style.pointerEvents="none",this._glassPaneElement.style.backgroundColor="transparent",this._glassPaneElement.removeEventListener("click",e)}}function O0(n){if(n)return new DOMRect(n.x,n.y,n.width,n.height)}function LT(n,e,i){const r=n.left-e.right;if(!(r<0||i!==void 0&&r>i))return r+Math.max(e.bottom-n.bottom,0)+Math.max(n.top-e.top,0)}function RT(n,e,i){const r=e.left-n.right;if(!(r<0||i!==void 0&&r>i))return r+Math.max(e.bottom-n.bottom,0)+Math.max(n.top-e.top,0)}function DT(n,e,i){const r=e.top-n.bottom;if(!(r<0||i!==void 0&&r>i))return r+Math.max(n.left-e.left,0)+Math.max(e.right-n.right,0)}function zT(n,e,i){const r=n.top-e.bottom;if(!(r<0||i!==void 0&&r>i))return r+Math.max(n.left-e.left,0)+Math.max(e.right-n.right,0)}function UT(n,e,i){const r=i===void 0?50:i;let l=0;return n.left-e.right>=0&&(l+=n.left-e.right),e.left-n.right>=0&&(l+=e.left-n.right),e.top-n.bottom>=0&&(l+=e.top-n.bottom),n.top-e.bottom>=0&&(l+=n.top-e.bottom),l>r?void 0:l}const HT=["left-of","right-of","above","below","near"];function Mv(n,e,i,r){const l=e.getBoundingClientRect(),o={"left-of":RT,"right-of":LT,above:DT,below:zT,near:UT}[n];let u;for(const f of i){if(f===e)continue;const d=o(l,f.getBoundingClientRect(),r);d!==void 0&&(u===void 0||d<u)&&(u=d)}return u}function j0(n,e){const i=typeof n=="string"&&!e.caseSensitive?n.toUpperCase():n,r=typeof e.value=="string"&&!e.caseSensitive?e.value.toUpperCase():e.value;return e.op==="<truthy>"?!!i:e.op==="="?r instanceof RegExp?typeof i=="string"&&!!i.match(r):i===r:typeof i!="string"||typeof r!="string"?!1:e.op==="*="?i.includes(r):e.op==="^="?i.startsWith(r):e.op==="$="?i.endsWith(r):e.op==="|="?i===r||i.startsWith(r+"-"):e.op==="~="?i.split(" ").includes(r):!1}function jd(n){const e=n.ownerDocument;return n.nodeName==="SCRIPT"||n.nodeName==="NOSCRIPT"||n.nodeName==="STYLE"||e.head&&e.head.contains(n)}function Gt(n,e){let i=n.get(e);if(i===void 0){if(i={full:"",normalized:"",immediate:[]},!jd(e)){let r="";if(e instanceof HTMLInputElement&&(e.type==="submit"||e.type==="button"))i={full:e.value,normalized:dt(e.value),immediate:[e.value]};else{for(let l=e.firstChild;l;l=l.nextSibling)if(l.nodeType===Node.TEXT_NODE)i.full+=l.nodeValue||"",r+=l.nodeValue||"";else{if(l.nodeType===Node.COMMENT_NODE)continue;r&&i.immediate.push(r),r="",l.nodeType===Node.ELEMENT_NODE&&(i.full+=Gt(n,l).full)}r&&i.immediate.push(r),e.shadowRoot&&(i.full+=Gt(n,e.shadowRoot).full),i.full&&(i.normalized=dt(i.full))}}n.set(e,i)}return i}function xc(n,e,i){if(jd(e)||!i(Gt(n,e)))return"none";for(let r=e.firstChild;r;r=r.nextSibling)if(r.nodeType===Node.ELEMENT_NODE&&i(Gt(n,r)))return"selfAndChildren";return e.shadowRoot&&i(Gt(n,e.shadowRoot))?"selfAndChildren":"self"}function Ov(n,e){const i=gv(e);if(i)return i.map(o=>Gt(n,o));const r=e.getAttribute("aria-label");if(r!==null&&r.trim())return[{full:r,normalized:dt(r),immediate:[r]}];const l=e.nodeName==="INPUT"&&e.type!=="hidden";if(["BUTTON","METER","OUTPUT","PROGRESS","SELECT","TEXTAREA"].includes(e.nodeName)||l){const o=e.labels;if(o)return[...o].map(u=>Gt(n,u))}return[]}const jv=["selected","checked","pressed","expanded","level","disabled","name","description","include-hidden"];jv.sort();function Ua(n,e,i){if(!e.includes(i))throw new Error(`"${n}" attribute is only supported for roles: ${e.slice().sort().map(r=>`"${r}"`).join(", ")}`)}function or(n,e){if(n.op!=="<truthy>"&&!e.includes(n.value))throw new Error(`"${n.name}" must be one of ${e.map(i=>JSON.stringify(i)).join(", ")}`)}function cr(n,e){if(!e.includes(n.op))throw new Error(`"${n.name}" does not support "${n.op}" matcher`)}function BT(n,e){const i={role:e};for(const r of n)switch(r.name){case"checked":{Ua(r.name,bd,e),or(r,[!0,!1,"mixed"]),cr(r,["<truthy>","="]),i.checked=r.op==="<truthy>"?!0:r.value;break}case"pressed":{Ua(r.name,Sd,e),or(r,[!0,!1,"mixed"]),cr(r,["<truthy>","="]),i.pressed=r.op==="<truthy>"?!0:r.value;break}case"selected":{Ua(r.name,yd,e),or(r,[!0,!1]),cr(r,["<truthy>","="]),i.selected=r.op==="<truthy>"?!0:r.value;break}case"expanded":{Ua(r.name,wd,e),or(r,[!0,!1]),cr(r,["<truthy>","="]),i.expanded=r.op==="<truthy>"?!0:r.value;break}case"level":{if(Ua(r.name,xd,e),typeof r.value=="string"&&(r.value=+r.value),r.op!=="="||typeof r.value!="number"||Number.isNaN(r.value))throw new Error('"level" attribute must be compared to a number');i.level=r.value;break}case"disabled":{or(r,[!0,!1]),cr(r,["<truthy>","="]),i.disabled=r.op==="<truthy>"?!0:r.value;break}case"name":{if(r.op==="<truthy>")throw new Error('"name" attribute must have a value');if(typeof r.value!="string"&&!(r.value instanceof RegExp))throw new Error('"name" attribute must be a string or a regular expression');i.name=r.value,i.nameOp=r.op,i.nameExact=r.caseSensitive;break}case"description":{if(r.op==="<truthy>")throw new Error('"description" attribute must have a value');if(typeof r.value!="string"&&!(r.value instanceof RegExp))throw new Error('"description" attribute must be a string or a regular expression');i.description=r.value,i.descriptionOp=r.op,i.descriptionExact=r.caseSensitive;break}case"include-hidden":{or(r,[!0,!1]),cr(r,["<truthy>","="]),i.includeHidden=r.op==="<truthy>"?!0:r.value;break}default:throw new Error(`Unknown attribute "${r.name}", must be one of ${jv.map(l=>`"${l}"`).join(", ")}.`)}return i}function qT(n,e,i){const r=[],l=u=>{if(Tt(u)===e.role&&!(e.selected!==void 0&&yv(u)!==e.selected)&&!(e.checked!==void 0&&bv(u)!==e.checked)&&!(e.pressed!==void 0&&vv(u)!==e.pressed)&&!(e.expanded!==void 0&&Sv(u)!==e.expanded)&&!(e.level!==void 0&&wv(u)!==e.level)&&!(e.disabled!==void 0&&cc(u)!==e.disabled)&&!(!e.includeHidden&&gn(u))){if(e.name!==void 0){const f=dt(sl(u,!!e.includeHidden));if(typeof e.name=="string"&&(e.name=dt(e.name)),i&&!e.nameExact&&e.nameOp==="="&&(e.nameOp="*="),!j0(f,{op:e.nameOp||"=",value:e.name,caseSensitive:!!e.nameExact}))return}if(e.description!==void 0){const f=dt(rl(u,!!e.includeHidden));if(typeof e.description=="string"&&(e.description=dt(e.description)),i&&!e.descriptionExact&&e.descriptionOp==="="&&(e.descriptionOp="*="),!j0(f,{op:e.descriptionOp||"=",value:e.description,caseSensitive:!!e.descriptionExact}))return}r.push(u)}},o=u=>{const f=[];u.shadowRoot&&f.push(u.shadowRoot);for(const d of u.querySelectorAll("*"))l(d),d.shadowRoot&&f.push(d.shadowRoot);f.forEach(o)};return o(n),r}function L0(n){return{queryAll:(e,i)=>{const r=_r(i),l=r.name.toLowerCase();if(!l)throw new Error("Role must not be empty");const o=BT(r.attributes,l);vc();try{return qT(e,o,n)}finally{Sc()}}}}class $T{constructor(){this._retainCacheCounter=0,this._cacheText=new Map,this._cacheQueryCSS=new Map,this._cacheMatches=new Map,this._cacheQuery=new Map,this._cacheMatchesSimple=new Map,this._cacheMatchesParents=new Map,this._cacheCallMatches=new Map,this._cacheCallQuery=new Map,this._cacheQuerySimple=new Map,this._engines=new Map,this._engines.set("not",GT),this._engines.set("is",Ga),this._engines.set("where",Ga),this._engines.set("has",IT),this._engines.set("scope",VT),this._engines.set("light",KT),this._engines.set("visible",XT),this._engines.set("text",YT),this._engines.set("text-is",FT),this._engines.set("text-matches",QT),this._engines.set("has-text",PT),this._engines.set("right-of",Ha("right-of")),this._engines.set("left-of",Ha("left-of")),this._engines.set("above",Ha("above")),this._engines.set("below",Ha("below")),this._engines.set("near",Ha("near")),this._engines.set("nth-match",JT);const e=[...this._engines.keys()];e.sort();const i=[...Rb];if(i.sort(),e.join("|")!==i.join("|"))throw new Error(`Please keep customCSSNames in sync with evaluator engines: ${e.join("|")} vs ${i.join("|")}`)}begin(){++this._retainCacheCounter}end(){--this._retainCacheCounter,this._retainCacheCounter||(this._cacheQueryCSS.clear(),this._cacheMatches.clear(),this._cacheQuery.clear(),this._cacheMatchesSimple.clear(),this._cacheMatchesParents.clear(),this._cacheCallMatches.clear(),this._cacheCallQuery.clear(),this._cacheQuerySimple.clear(),this._cacheText.clear())}_cached(e,i,r,l){e.has(i)||e.set(i,[]);const o=e.get(i),u=o.find(d=>r.every((g,m)=>d.rest[m]===g));if(u)return u.result;const f=l();return o.push({rest:r,result:f}),f}_checkSelector(e){if(!(typeof e=="object"&&e&&(Array.isArray(e)||"simples"in e&&e.simples.length)))throw new Error(`Malformed selector "${e}"`);return e}matches(e,i,r){const l=this._checkSelector(i);this.begin();try{return this._cached(this._cacheMatches,e,[l,r.scope,r.pierceShadow,r.originalScope],()=>Array.isArray(l)?this._matchesEngine(Ga,e,l,r):(this._hasScopeClause(l)&&(r=this._expandContextForScopeMatching(r)),this._matchesSimple(e,l.simples[l.simples.length-1].selector,r)?this._matchesParents(e,l,l.simples.length-2,r):!1))}finally{this.end()}}query(e,i){const r=this._checkSelector(i);this.begin();try{return this._cached(this._cacheQuery,r,[e.scope,e.pierceShadow,e.originalScope],()=>{if(Array.isArray(r))return this._queryEngine(Ga,e,r);this._hasScopeClause(r)&&(e=this._expandContextForScopeMatching(e));const l=this._scoreMap;this._scoreMap=new Map;let o=this._querySimple(e,r.simples[r.simples.length-1].selector);return o=o.filter(u=>this._matchesParents(u,r,r.simples.length-2,e)),this._scoreMap.size&&o.sort((u,f)=>{const d=this._scoreMap.get(u),g=this._scoreMap.get(f);return d===g?0:d===void 0?1:g===void 0?-1:d-g}),this._scoreMap=l,o})}finally{this.end()}}_markScore(e,i){this._scoreMap&&this._scoreMap.set(e,i)}_hasScopeClause(e){return e.simples.some(i=>i.selector.functions.some(r=>r.name==="scope"))}_expandContextForScopeMatching(e){if(e.scope.nodeType!==1)return e;const i=Ct(e.scope);return i?{...e,scope:i,originalScope:e.originalScope||e.scope}:e}_matchesSimple(e,i,r){return this._cached(this._cacheMatchesSimple,e,[i,r.scope,r.pierceShadow,r.originalScope],()=>{if(e===r.scope||i.css&&!this._matchesCSS(e,i.css))return!1;for(const l of i.functions)if(!this._matchesEngine(this._getEngine(l.name),e,l.args,r))return!1;return!0})}_querySimple(e,i){return i.functions.length?this._cached(this._cacheQuerySimple,i,[e.scope,e.pierceShadow,e.originalScope],()=>{let r=i.css;const l=i.functions;r==="*"&&l.length&&(r=void 0);let o,u=-1;r!==void 0?o=this._queryCSS(e,r):(u=l.findIndex(f=>this._getEngine(f.name).query!==void 0),u===-1&&(u=0),o=this._queryEngine(this._getEngine(l[u].name),e,l[u].args));for(let f=0;f<l.length;f++){if(f===u)continue;const d=this._getEngine(l[f].name);d.matches!==void 0&&(o=o.filter(g=>this._matchesEngine(d,g,l[f].args,e)))}for(let f=0;f<l.length;f++){if(f===u)continue;const d=this._getEngine(l[f].name);d.matches===void 0&&(o=o.filter(g=>this._matchesEngine(d,g,l[f].args,e)))}return o}):this._queryCSS(e,i.css||"*")}_matchesParents(e,i,r,l){return r<0?!0:this._cached(this._cacheMatchesParents,e,[i,r,l.scope,l.pierceShadow,l.originalScope],()=>{const{selector:o,combinator:u}=i.simples[r];if(u===">"){const f=Ro(e,l);return!f||!this._matchesSimple(f,o,l)?!1:this._matchesParents(f,i,r-1,l)}if(u==="+"){const f=ph(e,l);return!f||!this._matchesSimple(f,o,l)?!1:this._matchesParents(f,i,r-1,l)}if(u===""){let f=Ro(e,l);for(;f;){if(this._matchesSimple(f,o,l)){if(this._matchesParents(f,i,r-1,l))return!0;if(i.simples[r-1].combinator==="")break}f=Ro(f,l)}return!1}if(u==="~"){let f=ph(e,l);for(;f;){if(this._matchesSimple(f,o,l)){if(this._matchesParents(f,i,r-1,l))return!0;if(i.simples[r-1].combinator==="~")break}f=ph(f,l)}return!1}if(u===">="){let f=e;for(;f;){if(this._matchesSimple(f,o,l)){if(this._matchesParents(f,i,r-1,l))return!0;if(i.simples[r-1].combinator==="")break}f=Ro(f,l)}return!1}throw new Error(`Unsupported combinator "${u}"`)})}_matchesEngine(e,i,r,l){if(e.matches)return this._callMatches(e,i,r,l);if(e.query)return this._callQuery(e,r,l).includes(i);throw new Error('Selector engine should implement "matches" or "query"')}_queryEngine(e,i,r){if(e.query)return this._callQuery(e,r,i);if(e.matches)return this._queryCSS(i,"*").filter(l=>this._callMatches(e,l,r,i));throw new Error('Selector engine should implement "matches" or "query"')}_callMatches(e,i,r,l){return this._cached(this._cacheCallMatches,i,[e,l.scope,l.pierceShadow,l.originalScope,...r],()=>e.matches(i,r,l,this))}_callQuery(e,i,r){return this._cached(this._cacheCallQuery,e,[r.scope,r.pierceShadow,r.originalScope,...i],()=>e.query(r,i,this))}_matchesCSS(e,i){return e.matches(i)}_queryCSS(e,i){return this._cached(this._cacheQueryCSS,i,[e.scope,e.pierceShadow,e.originalScope],()=>{let r=[];function l(o){if(r=r.concat([...o.querySelectorAll(i)]),!!e.pierceShadow){o.shadowRoot&&l(o.shadowRoot);for(const u of o.querySelectorAll("*"))u.shadowRoot&&l(u.shadowRoot)}}return l(e.scope),r})}_getEngine(e){const i=this._engines.get(e);if(!i)throw new Error(`Unknown selector engine "${e}"`);return i}}const Ga={matches(n,e,i,r){if(e.length===0)throw new Error('"is" engine expects non-empty selector list');return e.some(l=>r.matches(n,l,i))},query(n,e,i){if(e.length===0)throw new Error('"is" engine expects non-empty selector list');let r=[];for(const l of e)r=r.concat(i.query(n,l));return e.length===1?r:Lv(r)}},IT={matches(n,e,i,r){if(e.length===0)throw new Error('"has" engine expects non-empty selector list');return r.query({...i,scope:n},e).length>0}},VT={matches(n,e,i,r){if(e.length!==0)throw new Error('"scope" engine expects no arguments');const l=i.originalScope||i.scope;return l.nodeType===9?n===l.documentElement:n===l},query(n,e,i){if(e.length!==0)throw new Error('"scope" engine expects no arguments');const r=n.originalScope||n.scope;if(r.nodeType===9){const l=r.documentElement;return l?[l]:[]}return r.nodeType===1?[r]:[]}},GT={matches(n,e,i,r){if(e.length===0)throw new Error('"not" engine expects non-empty selector list');return!r.matches(n,e,i)}},KT={query(n,e,i){return i.query({...n,pierceShadow:!1},e)},matches(n,e,i,r){return r.matches(n,e,{...i,pierceShadow:!1})}},XT={matches(n,e,i,r){if(e.length)throw new Error('"visible" engine expects no arguments');return ni(n)}},YT={matches(n,e,i,r){if(e.length!==1||typeof e[0]!="string")throw new Error('"text" engine expects a single string');const l=dt(e[0]).toLowerCase(),o=u=>u.normalized.toLowerCase().includes(l);return xc(r._cacheText,n,o)==="self"}},FT={matches(n,e,i,r){if(e.length!==1||typeof e[0]!="string")throw new Error('"text-is" engine expects a single string');const l=dt(e[0]),o=u=>!l&&!u.immediate.length?!0:u.immediate.some(f=>dt(f)===l);return xc(r._cacheText,n,o)!=="none"}},QT={matches(n,e,i,r){if(e.length===0||typeof e[0]!="string"||e.length>2||e.length===2&&typeof e[1]!="string")throw new Error('"text-matches" engine expects a regexp body and optional regexp flags');const l=new RegExp(e[0],e.length===2?e[1]:void 0),o=u=>l.test(u.full);return xc(r._cacheText,n,o)==="self"}},PT={matches(n,e,i,r){if(e.length!==1||typeof e[0]!="string")throw new Error('"has-text" engine expects a single string');if(jd(n))return!1;const l=dt(e[0]).toLowerCase();return(u=>u.normalized.toLowerCase().includes(l))(Gt(r._cacheText,n))}};function Ha(n){return{matches(e,i,r,l){const o=i.length&&typeof i[i.length-1]=="number"?i[i.length-1]:void 0,u=o===void 0?i:i.slice(0,i.length-1);if(i.length<1+(o===void 0?0:1))throw new Error(`"${n}" engine expects a selector list and optional maximum distance in pixels`);const f=l.query(r,u),d=Mv(n,e,f,o);return d===void 0?!1:(l._markScore(e,d),!0)}}}const JT={query(n,e,i){let r=e[e.length-1];if(e.length<2)throw new Error('"nth-match" engine expects non-empty selector list and an index argument');if(typeof r!="number"||r<1)throw new Error('"nth-match" engine expects a one-based index as the last argument');const l=Ga.query(n,e.slice(0,e.length-1),i);return r--,r<l.length?[l[r]]:[]}};function Ro(n,e){if(n!==e.scope)return e.pierceShadow?Ct(n):n.parentElement||void 0}function ph(n,e){if(n!==e.scope)return n.previousElementSibling||void 0}function Lv(n){const e=new Map,i=[],r=[];function l(u){let f=e.get(u);if(f)return f;const d=Ct(u);return d?l(d).children.push(u):i.push(u),f={children:[],taken:!1},e.set(u,f),f}for(const u of n)l(u).taken=!0;function o(u){const f=e.get(u);if(f.taken&&r.push(u),f.children.length>1){const d=new Set(f.children);f.children=[];let g=u.firstElementChild;for(;g&&f.children.length<d.size;)d.has(g)&&f.children.push(g),g=g.nextElementSibling;for(g=u.shadowRoot?u.shadowRoot.firstElementChild:null;g&&f.children.length<d.size;)d.has(g)&&f.children.push(g),g=g.nextElementSibling}f.children.forEach(o)}return i.forEach(o),r}const Rv=10,Lr=Rv/2,R0=1,ZT=2,WT=10,eA=50,Uh=100,Dv=120,zv=140,Uv=160,Qo=180,Hv=200,D0=250,tA=Dv+Lr,nA=zv+Lr,z0=Uh+Lr,iA=Uv+Lr,sA=Qo+Lr,rA=Hv+Lr,aA=300,lA=500,Hh=510,gh=520,Bv=530,Bh=1e4,oA=1e7,cA=1e3;function U0(n,e,i){n._evaluator.begin();const r={allowText:new Map,disallowText:new Map};vc(),pd();try{let l=[];if(i.forTextExpect){let f=Ka(n,e.ownerDocument.documentElement,i);for(let d=e;d;d=Ct(d)){const g=ss(r,n,d,{...i,noText:!0});if(!g)continue;if(rs(g)<=cA){f=g;break}}l=[Po(f)]}else{if(!e.matches("input,textarea,select")&&!e.isContentEditable){const f=Va(e,"button,select,input,[role=button],[role=checkbox],[role=radio],a,[role=link]",i.root);f&&ni(f)&&(e=f)}if(i.multiple){const f=ss(r,n,e,i),d=ss(r,n,e,{...i,noText:!0});let g=[f,d];if(r.allowText.clear(),r.disallowText.clear(),f&&mh(f)&&g.push(ss(r,n,e,{...i,noCSSId:!0})),d&&mh(d)&&g.push(ss(r,n,e,{...i,noText:!0,noCSSId:!0})),g=g.filter(Boolean),!g.length){const m=Ka(n,e,i);g.push(m),mh(m)&&g.push(Ka(n,e,{...i,noCSSId:!0}))}l=[...new Set(g.map(m=>Po(m)))]}else{const f=ss(r,n,e,i)||Ka(n,e,i);l=[Po(f)]}}const o=l[0],u=n.parseSelector(o);return{selector:o,selectors:l,elements:n.querySelectorAll(u,i.root??e.ownerDocument)}}finally{gd(),Sc(),n._evaluator.end()}}function ss(n,e,i,r){if(r.root&&!Dh(r.root,i))throw new Error("Target element must belong to the root's subtree");if(i===r.root)return[{engine:"css",selector:":scope",score:1}];if(i.ownerDocument.documentElement===i)return[{engine:"css",selector:"html",score:1}];let l=null;const o=f=>{(!l||rs(f)<rs(l))&&(l=f)},u=[];if(!r.noText)for(const f of fA(e,i,!r.isRecursive))u.push({candidate:f,isTextCandidate:!0});for(const f of uA(e,i,r))r.omitInternalEngines&&f.engine.startsWith("internal:")||u.push({candidate:[f],isTextCandidate:!1});u.sort((f,d)=>rs(f.candidate)-rs(d.candidate));for(const{candidate:f,isTextCandidate:d}of u){const g=e.querySelectorAll(e.parseSelector(Po(f)),r.root??i.ownerDocument);if(!g.includes(i))continue;if(g.length===1){o(f);break}const m=g.indexOf(i);if(!(m>5)&&(o([...f,{engine:"nth",selector:String(m),score:Bh}]),!r.isRecursive))for(let y=Ct(i);y&&y!==r.root;y=Ct(y)){const S=g.filter(H=>Dh(y,H)&&H!==y),w=S.indexOf(i);if(S.length>5||w===-1||w===m&&S.length>1)continue;const E=S.length===1?f:[...f,{engine:"nth",selector:String(w),score:Bh}];if(l&&rs([{engine:"",selector:"",score:1},...E])>=rs(l))continue;const _=!!r.noText||d,A=_?n.disallowText:n.allowText;let C=A.get(y);C===void 0&&(C=ss(n,e,y,{...r,isRecursive:!0,noText:_})||Ka(e,y,r),A.set(y,C)),C&&o([...C,...E])}}return l}function uA(n,e,i){const r=[],l=ev(i.testIdAttributeName);{for(const f of["data-testid","data-test-id","data-test"])!l.includes(f)&&e.getAttribute(f)&&r.push({engine:"css",selector:`[${f}=${pr(e.getAttribute(f))}]`,score:ZT});if(!i.noCSSId){const f=e.getAttribute("id");f&&!hA(f)&&r.push({engine:"css",selector:qv(f),score:lA})}r.push({engine:"css",selector:ti(e),score:Bv})}if(e.nodeName==="IFRAME"){for(const f of["name","title"])e.getAttribute(f)&&r.push({engine:"css",selector:`${ti(e)}[${f}=${pr(e.getAttribute(f))}]`,score:WT});for(const f of l)e.getAttribute(f)&&r.push({engine:"css",selector:`[${f}=${pr(e.getAttribute(f))}]`,score:R0});return qh([r]),r}for(const f of l)e.getAttribute(f)&&r.push({engine:"internal:testid",selector:`[${f}=${Ze(e.getAttribute(f),!0)}]`,score:R0});if(e.nodeName==="INPUT"||e.nodeName==="TEXTAREA"){const f=e;if(f.placeholder){r.push({engine:"internal:attr",selector:`[placeholder=${Ze(f.placeholder,!0)}]`,score:tA});for(const d of os(f.placeholder))r.push({engine:"internal:attr",selector:`[placeholder=${Ze(d.text,!1)}]`,score:Dv-d.scoreBonus})}}const o=Ov(n._evaluator._cacheText,e);for(const f of o){const d=f.normalized;r.push({engine:"internal:label",selector:It(d,!0),score:nA});for(const g of os(d))r.push({engine:"internal:label",selector:It(g.text,!1),score:zv-g.scoreBonus})}const u=Tt(e);return u&&!["none","presentation"].includes(u)&&r.push({engine:"internal:role",selector:u,score:Hh}),e.getAttribute("name")&&["BUTTON","FORM","FIELDSET","FRAME","IFRAME","INPUT","KEYGEN","OBJECT","OUTPUT","SELECT","TEXTAREA","MAP","META","PARAM"].includes(e.nodeName)&&r.push({engine:"css",selector:`${ti(e)}[name=${pr(e.getAttribute("name"))}]`,score:gh}),["INPUT","TEXTAREA"].includes(e.nodeName)&&e.getAttribute("type")!=="hidden"&&e.getAttribute("type")&&r.push({engine:"css",selector:`${ti(e)}[type=${pr(e.getAttribute("type"))}]`,score:gh}),["INPUT","TEXTAREA","SELECT"].includes(e.nodeName)&&e.getAttribute("type")!=="hidden"&&r.push({engine:"css",selector:ti(e),score:gh+1}),qh([r]),r}function fA(n,e,i){if(e.nodeName==="SELECT")return[];const r=[],l=e.getAttribute("title");if(l){r.push([{engine:"internal:attr",selector:`[title=${Ze(l,!0)}]`,score:rA}]);for(const g of os(l))r.push([{engine:"internal:attr",selector:`[title=${Ze(g.text,!1)}]`,score:Hv-g.scoreBonus}])}const o=e.getAttribute("alt");if(o&&["APPLET","AREA","IMG","INPUT"].includes(e.nodeName)){r.push([{engine:"internal:attr",selector:`[alt=${Ze(o,!0)}]`,score:iA}]);for(const g of os(o))r.push([{engine:"internal:attr",selector:`[alt=${Ze(g.text,!1)}]`,score:Uv-g.scoreBonus}])}const u=Gt(n._evaluator._cacheText,e).normalized,f=u?os(u):[];if(u){if(i){u.length<=80&&r.push([{engine:"internal:text",selector:It(u,!0),score:sA}]);for(const m of f)r.push([{engine:"internal:text",selector:It(m.text,!1),score:Qo-m.scoreBonus}])}const g={engine:"css",selector:ti(e),score:Bv};for(const m of f)r.push([g,{engine:"internal:has-text",selector:It(m.text,!1),score:Qo-m.scoreBonus}]);if(i&&u.length<=80){const m=new RegExp("^"+rc(u)+"$");r.push([g,{engine:"internal:has-text",selector:It(m,!1),score:D0}])}}const d=Tt(e);if(d&&!["none","presentation"].includes(d)){const g=sl(e,!1);if(g&&!g.match(new RegExp("^\\p{Co}+$","u"))){const m={engine:"internal:role",selector:`${d}[name=${Ze(g,!0)}]`,score:z0};r.push([m]);for(const S of os(g))r.push([{engine:"internal:role",selector:`${d}[name=${Ze(S.text,!1)}]`,score:Uh-S.scoreBonus}]);const y=rl(e,!1);if(y){r.push([{engine:"internal:role",selector:`${d}[name=${Ze(g,!0)}][description=${Ze(y,!0)}]`,score:z0+1}]);for(const S of os(g))r.push([{engine:"internal:role",selector:`${d}[name=${Ze(S.text,!1)}][description=${Ze(y,!1)}]`,score:Uh-S.scoreBonus+1}])}}else{const m={engine:"internal:role",selector:`${d}`,score:Hh},y=rl(e,!1);y&&r.push([{engine:"internal:role",selector:`${d}[description=${Ze(y,!0)}]`,score:Hh+1}]);for(const S of f)r.push([m,{engine:"internal:has-text",selector:It(S.text,!1),score:Qo-S.scoreBonus}]);if(i&&u.length<=80){const S=new RegExp("^"+rc(u)+"$");r.push([m,{engine:"internal:has-text",selector:It(S,!1),score:D0}])}}}return qh(r),r}function qv(n){return/^[a-zA-Z][a-zA-Z0-9\-\_]+$/.test(n)?"#"+n:`[id=${pr(n)}]`}function mh(n){return n.some(e=>e.engine==="css"&&(e.selector.startsWith("#")||e.selector.startsWith('[id="')))}function Ka(n,e,i){const r=i.root??e.ownerDocument,l=[];function o(f){const d=l.slice();f&&d.unshift(f);const g=d.join(" > "),m=n.parseSelector(g);return n.querySelector(m,r,!1)===e?g:void 0}function u(f){const d={engine:"css",selector:f,score:oA},g=n.parseSelector(f),m=n.querySelectorAll(g,r);if(m.length===1)return[d];const y={engine:"nth",selector:String(m.indexOf(e)),score:Bh};return[d,y]}for(let f=e;f&&f!==r;f=Ct(f)){let d="";if(f.id&&!i.noCSSId){const y=qv(f.id),S=o(y);if(S)return u(S);d=y}const g=f.parentNode,m=[...f.classList].map(dA);for(let y=0;y<m.length;++y){const S="."+m.slice(0,y+1).join("."),w=o(S);if(w)return u(w);!d&&g&&g.querySelectorAll(S).length===1&&(d=S)}if(g){const y=[...g.children],S=f.nodeName,E=y.filter(_=>_.nodeName===S).indexOf(f)===0?ti(f):`${ti(f)}:nth-child(${1+y.indexOf(f)})`,x=o(E);if(x)return u(x);d||(d=E)}else d||(d=ti(f));l.unshift(d)}return u(o())}function qh(n){for(const e of n)for(const i of e)i.score>eA&&i.score<aA&&(i.score+=Math.min(Rv,i.selector.length/10|0))}function Po(n){const e=[];let i="";for(const{engine:r,selector:l}of n)e.length&&(i!=="css"||r!=="css"||l.startsWith(":nth-match("))&&e.push(">>"),i=r,r==="css"?e.push(l):e.push(`${r}=${l}`);return e.join(" ")}function rs(n){let e=0;for(let i=0;i<n.length;i++)e+=n[i].score*(n.length-i);return e}function hA(n){let e,i=0;for(let r=0;r<n.length;++r){const l=n[r];let o;if(!(l==="-"||l==="_")){if(l>="a"&&l<="z"?o="lower":l>="A"&&l<="Z"?o="upper":l>="0"&&l<="9"?o="digit":o="other",o==="lower"&&e==="upper"){e=o;continue}e&&e!==o&&++i,e=o}}return i>=n.length/4}function Do(n,e){if(n.length<=e)return n;n=n.substring(0,e);const i=n.match(/^(.*)\b(.+?)$/);return i?i[1].trimEnd():""}function os(n){let e=[];{const i=n.match(/^([\d.,]+)[^.,\w]/),r=i?i[1].length:0;if(r){const l=Do(n.substring(r).trimStart(),80);e.push({text:l,scoreBonus:l.length<=30?2:1})}}{const i=n.match(/[^.,\w]([\d.,]+)$/),r=i?i[1].length:0;if(r){const l=Do(n.substring(0,n.length-r).trimEnd(),80);e.push({text:l,scoreBonus:l.length<=30?2:1})}}return n.length<=30?e.push({text:n,scoreBonus:0}):(e.push({text:Do(n,80),scoreBonus:0}),e.push({text:Do(n,30),scoreBonus:1})),e=e.filter(i=>i.text),e.length||e.push({text:n.substring(0,80),scoreBonus:0}),e}function ti(n){return n.nodeName.toLocaleLowerCase().replace(/[:\.]/g,e=>"\\"+e)}function dA(n){let e="";for(let i=0;i<n.length;i++)e+=pA(n,i);return e}function pA(n,e){const i=n.charCodeAt(e);return i===0?"�":i>=1&&i<=31||i>=48&&i<=57&&(e===0||e===1&&n.charCodeAt(0)===45)?"\\"+i.toString(16)+" ":e===0&&i===45&&n.length===1?"\\"+n.charAt(e):i>=128||i===45||i===95||i>=48&&i<=57||i>=65&&i<=90||i>=97&&i<=122?n.charAt(e):"\\"+n.charAt(e)}const H0={queryAll(n,e){e.startsWith("/")&&n.nodeType!==Node.DOCUMENT_NODE&&(e="."+e);const i=[],r=n.ownerDocument||n;if(!r)return i;const l=r.evaluate(e,n,null,XPathResult.ORDERED_NODE_ITERATOR_TYPE);for(let o=l.iterateNext();o;o=l.iterateNext())o.nodeType===Node.ELEMENT_NODE&&i.push(o);return i}},Ba=Symbol("selector"),gA=class Xa{constructor(e,i,r){if(r!=null&&r.hasText&&(i+=` >> internal:has-text=${It(r.hasText,!1)}`),r!=null&&r.hasNotText&&(i+=` >> internal:has-not-text=${It(r.hasNotText,!1)}`),r!=null&&r.has&&(i+=" >> internal:has="+JSON.stringify(r.has[Ba])),r!=null&&r.hasNot&&(i+=" >> internal:has-not="+JSON.stringify(r.hasNot[Ba])),(r==null?void 0:r.visible)!==void 0&&(i+=` >> visible=${r.visible?"true":"false"}`),this[Ba]=i,i){const u=e.parseSelector(i);this.element=e.querySelector(u,e.document,!1),this.elements=e.querySelectorAll(u,e.document)}const l=i,o=this;o.locator=(u,f)=>new Xa(e,l?l+" >> "+u:u,f),o.getByTestId=u=>o.locator(YE(e.testIdAttributeNameForStrictErrorAndConsoleCodegen(),u)),o.getByAltText=(u,f)=>o.locator(QE(u,f)),o.getByLabel=(u,f)=>o.locator(FE(u,f)),o.getByPlaceholder=(u,f)=>o.locator(JE(u,f)),o.getByText=(u,f)=>o.locator(ZE(u,f)),o.getByTitle=(u,f)=>o.locator(PE(u,f)),o.getByRole=(u,f={})=>o.locator(WE(u,f)),o.filter=u=>new Xa(e,i,u),o.first=()=>o.locator("nth=0"),o.last=()=>o.locator("nth=-1"),o.nth=u=>o.locator(`nth=${u}`),o.and=u=>new Xa(e,l+" >> internal:and="+JSON.stringify(u[Ba])),o.or=u=>new Xa(e,l+" >> internal:or="+JSON.stringify(u[Ba]))}};let mA=gA;class yA{constructor(e){this._injectedScript=e}install(){this._injectedScript.window.playwright||(this._injectedScript.window.playwright={$:(e,i)=>this._querySelector(e,!!i),$$:e=>this._querySelectorAll(e),inspect:e=>this._inspect(e),selector:e=>this._selector(e),generateLocator:(e,i)=>this._generateLocator(e,i),ariaSnapshot:(e,i)=>this._injectedScript.ariaSnapshot(e||this._injectedScript.document.body,i||{mode:"default"}),resume:()=>this._resume(),...new mA(this._injectedScript,"")},delete this._injectedScript.window.playwright.filter,delete this._injectedScript.window.playwright.first,delete this._injectedScript.window.playwright.last,delete this._injectedScript.window.playwright.nth,delete this._injectedScript.window.playwright.and,delete this._injectedScript.window.playwright.or)}_querySelector(e,i){if(typeof e!="string")throw new Error("Usage: playwright.query('Playwright >> selector').");const r=this._injectedScript.parseSelector(e);return this._injectedScript.querySelector(r,this._injectedScript.document,i)}_querySelectorAll(e){if(typeof e!="string")throw new Error("Usage: playwright.$$('Playwright >> selector').");const i=this._injectedScript.parseSelector(e);return this._injectedScript.querySelectorAll(i,this._injectedScript.document)}_inspect(e){if(typeof e!="string")throw new Error("Usage: playwright.inspect('Playwright >> selector').");this._injectedScript.window.inspect(this._querySelector(e,!1))}_selector(e){if(!(e instanceof Element))throw new Error("Usage: playwright.selector(element).");return this._injectedScript.generateSelectorSimple(e)}_generateLocator(e,i){if(!(e instanceof Element))throw new Error("Usage: playwright.locator(element).");const r=this._injectedScript.generateSelectorSimple(e);return Li(i||"javascript",r)}_resume(){if(!this._injectedScript.window.__pw_resume)return!1;this._injectedScript.window.__pw_resume().catch(()=>{})}}function bA(n){try{return n instanceof RegExp||Object.prototype.toString.call(n)==="[object RegExp]"}catch{return!1}}function vA(n){try{return n instanceof Date||Object.prototype.toString.call(n)==="[object Date]"}catch{return!1}}function SA(n){try{return n instanceof URL||Object.prototype.toString.call(n)==="[object URL]"}catch{return!1}}function wA(n){var e;try{return n instanceof Error||n&&((e=Object.getPrototypeOf(n))==null?void 0:e.name)==="Error"}catch{return!1}}function xA(n,e){try{return n instanceof e||Object.prototype.toString.call(n)===`[object ${e.name}]`}catch{return!1}}function _A(n){try{return n instanceof ArrayBuffer||Object.prototype.toString.call(n)==="[object ArrayBuffer]"}catch{return!1}}const $v={i8:Int8Array,ui8:Uint8Array,ui8c:Uint8ClampedArray,i16:Int16Array,ui16:Uint16Array,i32:Int32Array,ui32:Uint32Array,f32:Float32Array,f64:Float64Array,bi64:BigInt64Array,bui64:BigUint64Array};function B0(n){if("toBase64"in n)return n.toBase64();const e=Array.from(new Uint8Array(n.buffer,n.byteOffset,n.byteLength)).map(i=>String.fromCharCode(i)).join("");return btoa(e)}function q0(n,e){const i=atob(n),r=new Uint8Array(i.length);for(let l=0;l<i.length;l++)r[l]=i.charCodeAt(l);return new e(r.buffer)}function $h(n,e=[],i=new Map){if(!Object.is(n,void 0)){if(typeof n=="object"&&n){if("ref"in n)return i.get(n.ref);if("v"in n)return n.v==="undefined"?void 0:n.v==="null"?null:n.v==="NaN"?NaN:n.v==="Infinity"?1/0:n.v==="-Infinity"?-1/0:n.v==="-0"?-0:void 0;if("d"in n)return new Date(n.d);if("u"in n)return new URL(n.u);if("bi"in n)return BigInt(n.bi);if("e"in n){const r=new Error(n.e.m);return r.name=n.e.n,r.stack=n.e.s,r}if("r"in n)return new RegExp(n.r.p,n.r.f);if("a"in n){const r=[];i.set(n.id,r);for(const l of n.a)r.push($h(l,e,i));return r}if("o"in n){const r={};i.set(n.id,r);for(const{k:l,v:o}of n.o)l!=="__proto__"&&(r[l]=$h(o,e,i));return r}if("h"in n)return e[n.h];if("ta"in n)return q0(n.ta.b,$v[n.ta.k]);if("ab"in n)return q0(n.ab.b,Uint8Array).buffer}return n}}function EA(n,e){return Ih(n,e,{visited:new Map,lastId:0})}function Ih(n,e,i){if(n&&typeof n=="object"){if(typeof globalThis.Window=="function"&&n instanceof globalThis.Window)return"ref: <Window>";if(typeof globalThis.Document=="function"&&n instanceof globalThis.Document)return"ref: <Document>";if(typeof globalThis.Node=="function"&&n instanceof globalThis.Node)return"ref: <Node>"}return Iv(n,e,i)}function Iv(n,e,i){var o;const r=e(n);if("fallThrough"in r)n=r.fallThrough;else return r;if(typeof n=="symbol")return{v:"undefined"};if(Object.is(n,void 0))return{v:"undefined"};if(Object.is(n,null))return{v:"null"};if(Object.is(n,NaN))return{v:"NaN"};if(Object.is(n,1/0))return{v:"Infinity"};if(Object.is(n,-1/0))return{v:"-Infinity"};if(Object.is(n,-0))return{v:"-0"};if(typeof n=="boolean"||typeof n=="number"||typeof n=="string")return n;if(typeof n=="bigint")return{bi:n.toString()};if(wA(n)){let u;return(o=n.stack)!=null&&o.startsWith(n.name+": "+n.message)?u=n.stack:u=`${n.name}: ${n.message}
109
+ ${n.stack}`,{e:{n:n.name,m:n.message,s:u}}}if(vA(n))return{d:n.toJSON()};if(SA(n))return{u:n.toJSON()};if(bA(n))return{r:{p:n.source,f:n.flags}};for(const[u,f]of Object.entries($v))if(xA(n,f))return{ta:{b:B0(n),k:u}};if(_A(n))return{ab:{b:B0(new Uint8Array(n))}};const l=i.visited.get(n);if(l)return{ref:l};if(Array.isArray(n)){const u=[],f=++i.lastId;i.visited.set(n,f);for(let d=0;d<n.length;++d)u.push(Ih(n[d],e,i));return{a:u,id:f}}if(typeof n=="object"){const u=[],f=++i.lastId;i.visited.set(n,f);for(const g of Object.keys(n)){let m;try{m=n[g]}catch{continue}g==="toJSON"&&typeof m=="function"?u.push({k:g,v:{o:[],id:0}}):u.push({k:g,v:Ih(m,e,i)})}let d;try{u.length===0&&n.toJSON&&typeof n.toJSON=="function"&&(d={value:n.toJSON()})}catch{}return d?Iv(d.value,e,i):{o:u,id:f}}}class TA{constructor(e,i){var r,l,o,u,f,d,g,m;this.global=e,this.isUnderTest=i,e.__pwClock?this.builtins=e.__pwClock.builtins:this.builtins={setTimeout:(r=e.setTimeout)==null?void 0:r.bind(e),clearTimeout:(l=e.clearTimeout)==null?void 0:l.bind(e),setInterval:(o=e.setInterval)==null?void 0:o.bind(e),clearInterval:(u=e.clearInterval)==null?void 0:u.bind(e),requestAnimationFrame:(f=e.requestAnimationFrame)==null?void 0:f.bind(e),cancelAnimationFrame:(d=e.cancelAnimationFrame)==null?void 0:d.bind(e),requestIdleCallback:(g=e.requestIdleCallback)==null?void 0:g.bind(e),cancelIdleCallback:(m=e.cancelIdleCallback)==null?void 0:m.bind(e),performance:e.performance,Intl:e.Intl,Date:e.Date,AbortSignal:e.AbortSignal},this.isUnderTest&&(e.builtins=this.builtins)}evaluate(e,i,r,l,...o){const u=o.slice(0,l),f=o.slice(l),d=[];for(let m=0;m<u.length;m++)d[m]=$h(u[m],f);let g=this.global.eval(r);return e===!0?g=g(...d):e===!1?g=g:typeof g=="function"&&(g=g(...d)),i?this._promiseAwareJsonValueNoThrow(g):g}jsonValue(e,i){if(i!==void 0)return EA(i,r=>({fallThrough:r}))}_promiseAwareJsonValueNoThrow(e){const i=r=>{try{return this.jsonValue(!0,r)}catch{return}};return e&&typeof e=="object"&&typeof e.then=="function"?(async()=>{const r=await e;return i(r)})():i(e)}}class Vv{constructor(e,i){this._testIdAttributeNameForStrictErrorAndConsoleCodegen="data-testid",this._lastAriaSnapshotForTrack=new Map,this.utils={asLocator:Li,cacheNormalizedWhitespaces:u_,elementText:Gt,getAriaRole:Tt,getElementAccessibleDescription:rl,getElementAccessibleName:sl,isElementVisible:ni,isInsideScope:Dh,normalizeWhiteSpace:dt,parseAriaSnapshot:cd,generateAriaTree:yr,findNewElement:jT,builtins:null},this.window=e,this.document=e.document,this.isUnderTest=i.isUnderTest,this.utils.builtins=new TA(e,i.isUnderTest).builtins,this._sdkLanguage=i.sdkLanguage,this._testIdAttributeNameForStrictErrorAndConsoleCodegen=i.testIdAttributeName,this._evaluator=new $T,this.consoleApi=new yA(this),this.onGlobalListenersRemoved=new Set,this._autoClosingTags=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","MENUITEM","META","PARAM","SOURCE","TRACK","WBR"]),this._booleanAttributes=new Set(["checked","selected","disabled","readonly","multiple"]),this._eventTypes=new Map([["auxclick","mouse"],["click","mouse"],["dblclick","mouse"],["mousedown","mouse"],["mouseeenter","mouse"],["mouseleave","mouse"],["mousemove","mouse"],["mouseout","mouse"],["mouseover","mouse"],["mouseup","mouse"],["mouseleave","mouse"],["mousewheel","mouse"],["keydown","keyboard"],["keyup","keyboard"],["keypress","keyboard"],["textInput","keyboard"],["touchstart","touch"],["touchmove","touch"],["touchend","touch"],["touchcancel","touch"],["pointerover","pointer"],["pointerout","pointer"],["pointerenter","pointer"],["pointerleave","pointer"],["pointerdown","pointer"],["pointerup","pointer"],["pointermove","pointer"],["pointercancel","pointer"],["gotpointercapture","pointer"],["lostpointercapture","pointer"],["focus","focus"],["blur","focus"],["drag","drag"],["dragstart","drag"],["dragend","drag"],["dragover","drag"],["dragenter","drag"],["dragleave","drag"],["dragexit","drag"],["drop","drag"],["wheel","wheel"],["deviceorientation","deviceorientation"],["deviceorientationabsolute","deviceorientation"],["devicemotion","devicemotion"]]),this._hoverHitTargetInterceptorEvents=new Set(["mousemove"]),this._tapHitTargetInterceptorEvents=new Set(["pointerdown","pointerup","touchstart","touchend","touchcancel"]),this._mouseHitTargetInterceptorEvents=new Set(["mousedown","mouseup","pointerdown","pointerup","click","auxclick","dblclick","contextmenu"]),this._allHitTargetInterceptorEvents=new Set([...this._hoverHitTargetInterceptorEvents,...this._tapHitTargetInterceptorEvents,...this._mouseHitTargetInterceptorEvents]),this._engines=new Map,this._engines.set("xpath",H0),this._engines.set("xpath:light",H0),this._engines.set("role",L0(!1)),this._engines.set("text",this._createTextEngine(!0,!1)),this._engines.set("text:light",this._createTextEngine(!1,!1)),this._engines.set("id",this._createAttributeEngine("id",!0)),this._engines.set("id:light",this._createAttributeEngine("id",!1)),this._engines.set("data-testid",this._createAttributeEngine("data-testid",!0)),this._engines.set("data-testid:light",this._createAttributeEngine("data-testid",!1)),this._engines.set("data-test-id",this._createAttributeEngine("data-test-id",!0)),this._engines.set("data-test-id:light",this._createAttributeEngine("data-test-id",!1)),this._engines.set("data-test",this._createAttributeEngine("data-test",!0)),this._engines.set("data-test:light",this._createAttributeEngine("data-test",!1)),this._engines.set("css",this._createCSSEngine()),this._engines.set("nth",{queryAll:()=>[]}),this._engines.set("visible",this._createVisibleEngine()),this._engines.set("internal:control",this._createControlEngine()),this._engines.set("internal:has",this._createHasEngine()),this._engines.set("internal:has-not",this._createHasNotEngine()),this._engines.set("internal:and",{queryAll:()=>[]}),this._engines.set("internal:or",{queryAll:()=>[]}),this._engines.set("internal:chain",this._createInternalChainEngine()),this._engines.set("internal:label",this._createInternalLabelEngine()),this._engines.set("internal:text",this._createTextEngine(!0,!0)),this._engines.set("internal:has-text",this._createInternalHasTextEngine()),this._engines.set("internal:has-not-text",this._createInternalHasNotTextEngine()),this._engines.set("internal:attr",this._createNamedAttributeEngine()),this._engines.set("internal:testid",this._createTestIdEngine()),this._engines.set("internal:role",L0(!0)),this._engines.set("internal:describe",this._createDescribeEngine()),this._engines.set("aria-ref",this._createAriaRefEngine());for(const{name:r,source:l}of i.customEngines)this._engines.set(r,this.eval(l));this._stableRafCount=i.stableRafCount,this._browserName=i.browserName,this._shouldPrependErrorPrefix=!!i.shouldPrependErrorPrefix,this._isUtilityWorld=!!i.isUtilityWorld,tT({browserNameForWorkarounds:i.browserName}),this._setupGlobalListenersRemovalDetection(),this._setupHitTargetInterceptors(),this.isUnderTest&&(this.window.__injectedScript=this)}eval(e){return this.window.eval(e)}testIdAttributeNameForStrictErrorAndConsoleCodegen(){return this._testIdAttributeNameForStrictErrorAndConsoleCodegen}parseSelector(e){const i=ul(e);return o_(i,r=>{if(!this._engines.has(r.name))throw this.createStacklessError(`Unknown engine "${r.name}" while parsing selector ${e}`)}),i}generateSelector(e,i){return U0(this,e,i)}generateSelectorSimple(e,i){return U0(this,e,{...i,testIdAttributeName:this._testIdAttributeNameForStrictErrorAndConsoleCodegen}).selector}querySelector(e,i,r){const l=this.querySelectorAll(e,i);if(r&&l.length>1)throw this.strictModeViolationError(e,l);return this.checkDeprecatedSelectorUsage(e,l),l[0]}_queryNth(e,i){const r=[...e];let l=+i.body;return l===-1&&(l=r.length-1),new Set(r.slice(l,l+1))}_queryLayoutSelector(e,i,r){const l=i.name,o=i.body,u=[],f=this.querySelectorAll(o.parsed,r);for(const d of e){const g=Mv(l,d,f,o.distance);g!==void 0&&u.push({element:d,score:g})}return u.sort((d,g)=>d.score-g.score),new Set(u.map(d=>d.element))}ariaSnapshot(e,i){return this.incrementalAriaSnapshot(e,i).full}incrementalAriaSnapshot(e,i){if(e.nodeType!==Node.ELEMENT_NODE)throw this.createStacklessError("Can only capture aria snapshot of Element nodes.");const r=yr(e,i),l=br(r,i);let o;if(i.track){const u=this._lastAriaSnapshotForTrack.get(i.track);u&&(o=br(r,i,u).text),this._lastAriaSnapshotForTrack.set(i.track,r)}return this._lastAriaSnapshotForQuery=r,{full:l.text,incremental:o,iframeRefs:r.iframeRefs,iframeDepths:l.iframeDepths}}ariaSnapshotForRecorder(){const e=yr(this.document.body,{mode:"ai"}),{text:i}=br(e,{mode:"ai"});return{ariaSnapshot:i,refs:e.refs}}getAllElementsMatchingExpectAriaTemplate(e,i){return CT(e.documentElement,i)}querySelectorAll(e,i){if(e.capture!==void 0){if(e.parts.some(l=>l.name==="nth"))throw this.createStacklessError("Can't query n-th element in a request with the capture.");const r={parts:e.parts.slice(0,e.capture+1)};if(e.capture<e.parts.length-1){const l={parts:e.parts.slice(e.capture+1)},o={name:"internal:has",body:{parsed:l},source:$t(l)};r.parts.push(o)}return this.querySelectorAll(r,i)}if(!i.querySelectorAll)throw this.createStacklessError("Node is not queryable.");if(e.capture!==void 0)throw this.createStacklessError("Internal error: there should not be a capture in the selector.");if(i.nodeType===11&&e.parts.length===1&&e.parts[0].name==="css"&&e.parts[0].source===":scope")return[i];this._evaluator.begin();try{let r=new Set([i]);for(const l of e.parts)if(l.name==="nth")r=this._queryNth(r,l);else if(l.name==="internal:and"){const o=this.querySelectorAll(l.body.parsed,i);r=new Set(o.filter(u=>r.has(u)))}else if(l.name==="internal:or"){const o=this.querySelectorAll(l.body.parsed,i);r=new Set(Lv(new Set([...r,...o])))}else if(HT.includes(l.name))r=this._queryLayoutSelector(r,l,i);else{const o=new Set;for(const u of r){const f=this._queryEngineAll(l,u);for(const d of f)o.add(d)}r=o}return[...r]}finally{this._evaluator.end()}}_queryEngineAll(e,i){const r=this._engines.get(e.name).queryAll(i,e.body);for(const l of r)if(!("nodeName"in l))throw this.createStacklessError(`Expected a Node but got ${Object.prototype.toString.call(l)}`);return r}_createAttributeEngine(e,i){const r=l=>[{simples:[{selector:{css:`[${e}=${JSON.stringify(l)}]`,functions:[]},combinator:""}]}];return{queryAll:(l,o)=>this._evaluator.query({scope:l,pierceShadow:i},r(o))}}_createCSSEngine(){return{queryAll:(e,i)=>this._evaluator.query({scope:e,pierceShadow:!0},i)}}_createTextEngine(e,i){return{queryAll:(l,o)=>{const{matcher:u,kind:f}=Uo(o,i),d=[];let g=null;const m=S=>{if(f==="lax"&&g&&g.contains(S))return!1;const w=xc(this._evaluator._cacheText,S,u);w==="none"&&(g=S),(w==="self"||w==="selfAndChildren"&&f==="strict"&&!i)&&d.push(S)};l.nodeType===Node.ELEMENT_NODE&&m(l);const y=this._evaluator._queryCSS({scope:l,pierceShadow:e},"*");for(const S of y)m(S);return d}}}_createInternalHasTextEngine(){return{queryAll:(e,i)=>{if(e.nodeType!==1)return[];const r=e,l=Gt(this._evaluator._cacheText,r),{matcher:o}=Uo(i,!0);return o(l)?[r]:[]}}}_createInternalHasNotTextEngine(){return{queryAll:(e,i)=>{if(e.nodeType!==1)return[];const r=e,l=Gt(this._evaluator._cacheText,r),{matcher:o}=Uo(i,!0);return o(l)?[]:[r]}}}_createInternalLabelEngine(){return{queryAll:(e,i)=>{const{matcher:r}=Uo(i,!0);return this._evaluator._queryCSS({scope:e,pierceShadow:!0},"*").filter(o=>Ov(this._evaluator._cacheText,o).some(u=>r(u)))}}}_createNamedAttributeEngine(){return{queryAll:(i,r)=>{const l=_r(r);if(l.name||l.attributes.length!==1)throw new Error("Malformed attribute selector: "+r);const{name:o}=l.attributes[0],u=$0(l.attributes[0]);return this._evaluator._queryCSS({scope:i,pierceShadow:!0},`[${o}]`).filter(d=>u(d.getAttribute(o)))}}}_createTestIdEngine(){return{queryAll:(i,r)=>{const l=_r(r);if(l.name||l.attributes.length!==1)throw new Error("Malformed test id selector: "+r);const o=ev(l.attributes[0].name),u=$0(l.attributes[0]),f=o.map(g=>`[${g}]`).join(",");return this._evaluator._queryCSS({scope:i,pierceShadow:!0},f).filter(g=>o.some(m=>{const y=g.getAttribute(m);return y!==null&&u(y)}))}}}_createDescribeEngine(){return{queryAll:i=>i.nodeType!==1?[]:[i]}}_createControlEngine(){return{queryAll(e,i){if(i==="enter-frame")return[];if(i==="return-empty")return[];if(i==="component")return e.nodeType!==1?[]:[e.childElementCount===1?e.firstElementChild:e];throw new Error(`Internal error, unknown internal:control selector ${i}`)}}}_createHasEngine(){return{queryAll:(i,r)=>i.nodeType!==1?[]:!!this.querySelector(r.parsed,i,!1)?[i]:[]}}_createHasNotEngine(){return{queryAll:(i,r)=>i.nodeType!==1?[]:!!this.querySelector(r.parsed,i,!1)?[]:[i]}}_createVisibleEngine(){return{queryAll:(i,r)=>{if(i.nodeType!==1)return[];const l=r==="true";return ni(i)===l?[i]:[]}}}_createInternalChainEngine(){return{queryAll:(i,r)=>this.querySelectorAll(r.parsed,i)}}extend(e,i){const r=this.window.eval(`
110
+ (() => {
111
+ const module = {};
112
+ ${e}
113
+ return module.exports.default();
114
+ })()`);return new r(this,i)}async viewportRatio(e){return await new Promise(i=>{const r=new IntersectionObserver(l=>{i(l[0].intersectionRatio),r.disconnect()});r.observe(e),this.utils.builtins.requestAnimationFrame(()=>{})})}getElementBorderWidth(e){if(e.nodeType!==Node.ELEMENT_NODE||!e.ownerDocument||!e.ownerDocument.defaultView)return{left:0,top:0};const i=e.ownerDocument.defaultView.getComputedStyle(e);return{left:parseInt(i.borderLeftWidth||"",10),top:parseInt(i.borderTopWidth||"",10)}}describeIFrameStyle(e){if(!e.ownerDocument||!e.ownerDocument.defaultView)return"error:notconnected";const i=e.ownerDocument.defaultView;for(let l=e;l;l=Ct(l))if(i.getComputedStyle(l).transform!=="none")return"transformed";const r=i.getComputedStyle(e);return{left:parseInt(r.borderLeftWidth||"",10)+parseInt(r.paddingLeft||"",10),top:parseInt(r.borderTopWidth||"",10)+parseInt(r.paddingTop||"",10)}}retarget(e,i){let r=e.nodeType===Node.ELEMENT_NODE?e:e.parentElement;if(!r)return null;if(i==="none")return r;if(!r.matches("input, textarea, select")&&!r.isContentEditable&&(i==="button-link"?r=r.closest("button, [role=button], a, [role=link]")||r:r=r.closest("button, [role=button], [role=checkbox], [role=radio]")||r),i==="follow-label"&&!r.matches("a, input, textarea, button, select, [role=link], [role=button], [role=checkbox], [role=radio]")&&!r.isContentEditable){const l=r.closest("label");l&&l.control&&(r=l.control)}return r}async checkElementStates(e,i){if(i.includes("stable")){const r=await this._checkElementIsStable(e);if(r===!1)return{missingState:"stable"};if(r==="error:notconnected")return"error:notconnected"}for(const r of i)if(r!=="stable"){const l=this.elementState(e,r);if(l.received==="error:notconnected")return"error:notconnected";if(!l.matches)return{missingState:r}}}async _checkElementIsStable(e){const i=Symbol("continuePolling");let r,l=0,o=0;const u=()=>{const y=this.retarget(e,"no-follow-label");if(!y)return"error:notconnected";const S=this.utils.builtins.performance.now();if(this._stableRafCount>1&&S-o<15)return i;o=S;const w=y.getBoundingClientRect(),E={x:w.top,y:w.left,width:w.width,height:w.height};if(r){if(!(E.x===r.x&&E.y===r.y&&E.width===r.width&&E.height===r.height))return!1;if(++l>=this._stableRafCount)return!0}return r=E,i};let f,d;const g=new Promise((y,S)=>{f=y,d=S}),m=()=>{try{const y=u();y!==i?f(y):this.utils.builtins.requestAnimationFrame(m)}catch(y){d(y)}};return this.utils.builtins.requestAnimationFrame(m),g}_createAriaRefEngine(){return{queryAll:(i,r)=>{var o,u;const l=(u=(o=this._lastAriaSnapshotForQuery)==null?void 0:o.elements)==null?void 0:u.get(r);return l&&l.isConnected?[l]:[]}}}elementState(e,i){const r=this.retarget(e,["visible","hidden"].includes(i)?"none":"follow-label");if(!r||!r.isConnected)return i==="hidden"?{matches:!0,received:"hidden"}:{matches:!1,received:"error:notconnected"};if(i==="visible"||i==="hidden"){const l=ni(r);return{matches:i==="visible"?l:!l,received:l?"visible":"hidden"}}if(i==="disabled"||i==="enabled"){const l=cc(r);return{matches:i==="disabled"?l:!l,received:l?"disabled":"enabled"}}if(i==="editable"){const l=cc(r),o=mT(r);if(o==="error")throw this.createStacklessError("Element is not an <input>, <textarea>, <select> or [contenteditable] and does not have a role allowing [aria-readonly]");return{matches:!l&&!o,received:l?"disabled":o?"readOnly":"editable"}}if(i==="checked"||i==="unchecked"){const l=i==="checked",o=pT(r);if(o==="error")throw this.createStacklessError("Not a checkbox or radio button");const u=r.nodeName==="INPUT"&&r.type==="radio";return{matches:l===o,received:o?"checked":"unchecked",isRadio:u}}if(i==="indeterminate"){const l=dT(r);if(l==="error")throw this.createStacklessError("Not a checkbox or radio button");return{matches:l==="mixed",received:l===!0?"checked":l===!1?"unchecked":"mixed"}}throw this.createStacklessError(`Unexpected element state "${i}"`)}selectOptions(e,i){const r=this.retarget(e,"follow-label");if(!r)return"error:notconnected";if(r.nodeName.toLowerCase()!=="select")throw this.createStacklessError("Element is not a <select> element");const l=r,o=[...l.options],u=[];let f=i.slice();for(let d=0;d<o.length;d++){const g=o[d],m=dt(g.label),y=S=>{if(S instanceof Node)return g===S;const w=x=>x===g.label||dt(x)===m;let E=!0;return S.valueOrLabel!==void 0&&(E=E&&(S.valueOrLabel===g.value||w(S.valueOrLabel))),S.value!==void 0&&(E=E&&S.value===g.value),S.label!==void 0&&(E=E&&w(S.label)),S.index!==void 0&&(E=E&&S.index===d),E};if(f.some(y)){if(!this.elementState(g,"enabled").matches)return"error:optionnotenabled";if(u.push(g),l.multiple)f=f.filter(S=>!y(S));else{f=[];break}}}return f.length?"error:optionsnotfound":(l.value=void 0,u.forEach(d=>d.selected=!0),l.dispatchEvent(new Event("input",{bubbles:!0,composed:!0})),l.dispatchEvent(new Event("change",{bubbles:!0})),u.map(d=>d.value))}fill(e,i){const r=this.retarget(e,"follow-label");if(!r)return"error:notconnected";if(r.nodeName.toLowerCase()==="input"){const l=r,o=l.type.toLowerCase(),u=new Set(["color","date","time","datetime-local","month","range","week"]);if(!new Set(["","email","number","password","search","tel","text","url"]).has(o)&&!u.has(o))throw this.createStacklessError(`Input of type "${o}" cannot be filled`);if(o==="number"&&(i=i.trim(),isNaN(Number(i))))throw this.createStacklessError("Cannot type text into input[type=number]");if(o==="color"&&(i=i.toLowerCase()),u.has(o)){if(i=i.trim(),l.focus(),l.value=i,l.value!==i)throw this.createStacklessError("Malformed value");return r.dispatchEvent(new Event("input",{bubbles:!0,composed:!0})),r.dispatchEvent(new Event("change",{bubbles:!0})),"done"}}else if(r.nodeName.toLowerCase()!=="textarea"){if(!r.isContentEditable)throw this.createStacklessError("Element is not an <input>, <textarea> or [contenteditable] element")}return this.selectText(r),"needsinput"}selectText(e){const i=this.retarget(e,"follow-label");if(!i)return"error:notconnected";if(i.nodeName.toLowerCase()==="input"){const o=i;return o.select(),o.focus(),"done"}if(i.nodeName.toLowerCase()==="textarea"){const o=i;return o.selectionStart=0,o.selectionEnd=o.value.length,o.focus(),"done"}i.focus();const r=i.ownerDocument.createRange();r.selectNodeContents(i);const l=i.ownerDocument.defaultView.getSelection();return l&&(l.removeAllRanges(),l.addRange(r)),"done"}_activelyFocused(e){const i=e.getRootNode().activeElement,r=i===e&&!!e.ownerDocument&&e.ownerDocument.hasFocus();return{activeElement:i,isFocused:r}}focusNode(e,i){if(!e.isConnected)return"error:notconnected";if(e.nodeType!==Node.ELEMENT_NODE)throw this.createStacklessError("Node is not an element");const{activeElement:r,isFocused:l}=this._activelyFocused(e);if(e.isContentEditable&&!l&&r&&r.blur&&r.blur(),e.focus(),e.focus(),i&&!l&&e.nodeName.toLowerCase()==="input")try{e.setSelectionRange(0,0)}catch{}return"done"}blurNode(e){if(!e.isConnected)return"error:notconnected";if(e.nodeType!==Node.ELEMENT_NODE)throw this.createStacklessError("Node is not an element");return e.blur(),"done"}setInputFiles(e,i){if(e.nodeType!==Node.ELEMENT_NODE)return"Node is not of type HTMLElement";const r=e;if(r.nodeName!=="INPUT")return"Not an <input> element";const l=r;if((l.getAttribute("type")||"").toLowerCase()!=="file")return"Not an input[type=file] element";const u=i.map(d=>{const g=Uint8Array.from(atob(d.buffer),m=>m.charCodeAt(0));return new File([g],d.name,{type:d.mimeType,lastModified:d.lastModifiedMs})}),f=new DataTransfer;for(const d of u)f.items.add(d);l.files=f.files,l.dispatchEvent(new Event("input",{bubbles:!0,composed:!0})),l.dispatchEvent(new Event("change",{bubbles:!0}))}expectHitTarget(e,i){const r=[];let l=i;for(;l;){const m=sv(l);if(!m||(r.push(m),m.nodeType===9))break;l=m.host}let o;for(let m=r.length-1;m>=0;m--){const y=r[m],S=y.elementsFromPoint(e.x,e.y),w=y.elementFromPoint(e.x,e.y);if(w&&S[0]&&Ct(w)===S[0]){const x=this.window.getComputedStyle(w);(x==null?void 0:x.display)==="contents"&&S.unshift(w)}S[0]&&S[0].shadowRoot===y&&S[1]===w&&S.shift();const E=S[0];if(!E||(o=E,m&&E!==r[m-1].host))break}const u=[];for(;o&&o!==i;)u.push(o),o=o.assignedSlot??Ct(o);if(o===i)return"done";const f=this.previewNode(u[0]||this.document.documentElement);let d,g=i;for(;g;){const m=u.indexOf(g);if(m!==-1){m>1&&(d=this.previewNode(u[m-1]));break}g=Ct(g)}return d?{hitTargetDescription:`${f} from ${d} subtree`}:{hitTargetDescription:f}}setupHitTargetInterceptor(e,i,r,l){const o=this.retarget(e,"button-link");if(!o||!o.isConnected)return"error:notconnected";if(r){const m=this.expectHitTarget(r,o);if(m!=="done")return m.hitTargetDescription}if(i==="drag")return{stop:()=>"done"};const u={hover:this._hoverHitTargetInterceptorEvents,tap:this._tapHitTargetInterceptorEvents,mouse:this._mouseHitTargetInterceptorEvents}[i];let f;const d=m=>{if(!u.has(m.type)||!m.isTrusted&&!m.__pwTrustedSynthetic)return;const y=this.window.TouchEvent&&m instanceof this.window.TouchEvent?m.touches[0]:m;f===void 0&&y&&(f=this.expectHitTarget({x:y.clientX,y:y.clientY},o)),(l||f!=="done"&&f!==void 0)&&(m.preventDefault(),m.stopPropagation(),m.stopImmediatePropagation())},g=()=>(this._hitTargetInterceptor===d&&(this._hitTargetInterceptor=void 0),f||"done");return this._hitTargetInterceptor=d,{stop:g}}dispatchEvent(e,i,r){var u,f,d;let l;const o={bubbles:!0,cancelable:!0,composed:!0,...r};switch(this._eventTypes.get(i)){case"mouse":l=new MouseEvent(i,o);break;case"keyboard":l=new KeyboardEvent(i,o);break;case"touch":{if(this._browserName==="webkit"){const g=y=>{var E,x;if(y instanceof Touch)return y;let S=y.pageX;S===void 0&&y.clientX!==void 0&&(S=y.clientX+(((E=this.document.scrollingElement)==null?void 0:E.scrollLeft)||0));let w=y.pageY;return w===void 0&&y.clientY!==void 0&&(w=y.clientY+(((x=this.document.scrollingElement)==null?void 0:x.scrollTop)||0)),this.document.createTouch(this.window,y.target??e,y.identifier,S,w,y.screenX,y.screenY,y.radiusX,y.radiusY,y.rotationAngle,y.force)},m=y=>y instanceof TouchList||!y?y:this.document.createTouchList(...y.map(g));o.target??(o.target=e),o.touches=m(o.touches),o.targetTouches=m(o.targetTouches),o.changedTouches=m(o.changedTouches),l=new TouchEvent(i,o)}else o.target??(o.target=e),o.touches=(u=o.touches)==null?void 0:u.map(g=>g instanceof Touch?g:new Touch({...g,target:g.target??e})),o.targetTouches=(f=o.targetTouches)==null?void 0:f.map(g=>g instanceof Touch?g:new Touch({...g,target:g.target??e})),o.changedTouches=(d=o.changedTouches)==null?void 0:d.map(g=>g instanceof Touch?g:new Touch({...g,target:g.target??e})),l=new TouchEvent(i,o);break}case"pointer":l=new PointerEvent(i,o);break;case"focus":l=new FocusEvent(i,o);break;case"drag":l=new DragEvent(i,o);break;case"wheel":l=new WheelEvent(i,o);break;case"deviceorientation":try{l=new DeviceOrientationEvent(i,o)}catch{const{bubbles:g,cancelable:m,alpha:y,beta:S,gamma:w,absolute:E}=o;l=this.document.createEvent("DeviceOrientationEvent"),l.initDeviceOrientationEvent(i,g,m,y,S,w,E)}break;case"devicemotion":try{l=new DeviceMotionEvent(i,o)}catch{const{bubbles:g,cancelable:m,acceleration:y,accelerationIncludingGravity:S,rotationRate:w,interval:E}=o;l=this.document.createEvent("DeviceMotionEvent"),l.initDeviceMotionEvent(i,g,m,y,S,w,E)}break;default:l=new Event(i,o);break}e.dispatchEvent(l)}previewNode(e){if(e.nodeType===Node.TEXT_NODE)return zo(`#text=${e.nodeValue||""}`);if(e.nodeType!==Node.ELEMENT_NODE)return zo(`<${e.nodeName.toLowerCase()} />`);const i=e,r=[];for(let d=0;d<i.attributes.length;d++){const{name:g,value:m}=i.attributes[d];g!=="style"&&(!m&&this._booleanAttributes.has(g)?r.push(` ${g}`):r.push(` ${g}="${m}"`))}r.sort((d,g)=>d.length-g.length);const l=o0(r.join(""),500);if(this._autoClosingTags.has(i.nodeName))return zo(`<${i.nodeName.toLowerCase()}${l}/>`);const o=i.childNodes;let u=!1;if(o.length<=5){u=!0;for(let d=0;d<o.length;d++)u=u&&o[d].nodeType===Node.TEXT_NODE}const f=u?i.textContent||"":o.length?"…":"";return zo(`<${i.nodeName.toLowerCase()}${l}>${o0(f,50)}</${i.nodeName.toLowerCase()}>`)}_generateSelectors(e){this._evaluator.begin(),vc(),pd();try{const i=this._isUtilityWorld&&this._browserName==="firefox"?2:10;return e.slice(0,i).map(l=>({preview:this.previewNode(l),selector:this.generateSelectorSimple(l)})).map((l,o)=>`${o+1}) ${l.preview} aka ${Li(this._sdkLanguage,l.selector)}`)}finally{gd(),Sc(),this._evaluator.end()}}strictModeViolationError(e,i){const r=this._generateSelectors(i).map(l=>`
115
+ `+l);return r.length<i.length&&r.push(`
116
+ ...`),this.createStacklessError(`strict mode violation: ${Li(this._sdkLanguage,$t(e))} resolved to ${i.length} elements:${r.join("")}
117
+ `)}checkDeprecatedSelectorUsage(e,i){const r=new Set(["_react","_vue","xpath:light","text:light","id:light","data-testid:light","data-test-id:light","data-test:light"]);if(!i.length)return;const l=e.parts.find(u=>r.has(u.name));if(!l)return;const o=this._generateSelectors(i).map(u=>`
118
+ `+u);throw o.length<i.length&&o.push(`
119
+ ...`),this.createStacklessError(`"${l.name}" selector is not supported: ${Li(this._sdkLanguage,$t(e))} resolved to ${i.length} element${i.length===1?"":"s"}:${o.join("")}
120
+ `)}createStacklessError(e){const i=this._shouldPrependErrorPrefix?new Error("Error: "+e):new Error(e);return this._browserName==="firefox"?(i.stack="",i):(delete i.stack,i)}createHighlight(){return new dh(this)}maskSelectors(e,i){const r=this._createHighlight(),l=[];for(const o of e)l.push(this.querySelectorAll(o,this.document.documentElement));r.maskElements(l.flat(),i)}_createHighlight(){return this._highlight&&this.hideHighlight(),this._highlight=new dh(this),this._highlight.install(),this._highlight}_ensureHighlight(){return this._highlight||(this._highlight=new dh(this),this._highlight.install()),this._highlight}addHighlight(e,i){this._ensureHighlight().addElementHighlight(e,i)}removeHighlight(e){this._ensureHighlight().removeElementHighlight(e)}setScreencastAnnotation(e){const i=this._ensureHighlight();if(!e){i.updateHighlight([]),i.hideActionPoint(),i.hideActionTitle(),i.hideActionCursor();return}const r=e.duration??500;e.box&&i.updateHighlight([{box:e.box,color:"rgba(0, 128, 255, 0.15)",borderColor:"rgba(0, 128, 255, 0.6)",fadeDuration:r}]),e.point&&(e.cursor!=="none"&&i.moveActionCursor(e.point.x,e.point.y,r),i.showActionPoint(e.point.x,e.point.y,r)),e.actionTitle&&i.showActionTitle(e.actionTitle,r,e.position,e.fontSize)}addUserOverlay(e,i){this._ensureHighlight().addUserOverlay(e,i)}getUserOverlay(e){return this._ensureHighlight().getUserOverlay(e)}removeUserOverlay(e){this._ensureHighlight().removeUserOverlay(e)}setUserOverlaysVisible(e){this._ensureHighlight().setUserOverlaysVisible(e)}hideHighlight(){this._highlight&&(this._highlight.uninstall(),delete this._highlight)}markTargetElements(e){const i=new CustomEvent("__playwright_reset_targets__",{bubbles:!0,cancelable:!0,composed:!0});this.document.dispatchEvent(i);const r=new CustomEvent("__playwright_mark_target__",{bubbles:!0,cancelable:!0,composed:!0});for(const l of e)l.dispatchEvent(r)}_setupGlobalListenersRemovalDetection(){const e="__playwright_global_listeners_check__";let i=!1;const r=()=>i=!0;this.window.addEventListener(e,r),new MutationObserver(l=>{if(l.some(u=>Array.from(u.addedNodes).includes(this.document.documentElement))&&(i=!1,this.window.dispatchEvent(new CustomEvent(e)),!i)){this.window.addEventListener(e,r);for(const u of this.onGlobalListenersRemoved)u()}}).observe(this.document,{childList:!0})}_setupHitTargetInterceptors(){const e=r=>{var l;return(l=this._hitTargetInterceptor)==null?void 0:l.call(this,r)},i=()=>{for(const r of this._allHitTargetInterceptorEvents)this.window.addEventListener(r,e,{capture:!0,passive:!1})};i(),this.onGlobalListenersRemoved.add(i)}async expect(e,i,r){const l=await this._expectCore(e,i,r),o=this._ariaSnapshotForExpect(e,i);return l.received===void 0&&o===void 0?{matches:l.matches,missingReceived:l.missingReceived}:{matches:l.matches,received:{value:l.received,ariaSnapshot:o},missingReceived:l.missingReceived}}_ariaSnapshotForExpect(e,i){const r=i.expression;if(!(r==="to.have.count"||r.endsWith(".array"))&&r!=="to.match.aria"){if(e&&ni(e)){const l=r==="to.have.text";return this._renderAriaSnapshot(e,{mode:"default",depth:l?void 0:1})}if(this.document.body)return this._renderAriaSnapshot(this.document.body,{mode:"default"})}}_renderAriaSnapshot(e,i){return br(yr(e,i),i).text}async _expectCore(e,i,r){var o,u;if(i.expression==="to.have.count"||i.expression.endsWith(".array"))return this.expectArray(r,i);if(!e){if(!i.isNot&&i.expression==="to.be.hidden")return{matches:!0};if(i.isNot&&i.expression==="to.be.visible")return{matches:!1};if(!i.isNot&&i.expression==="to.be.detached")return{matches:!0};if(i.isNot&&i.expression==="to.be.attached")return{matches:!1};if(i.isNot&&i.expression==="to.be.in.viewport")return{matches:!1};if(i.expression==="to.have.title"&&((o=i==null?void 0:i.expectedText)!=null&&o[0])){const f=new ur(i.expectedText[0]),d=this.document.title;return{received:d,matches:f.matches(d)}}if(i.expression==="to.have.url"&&((u=i==null?void 0:i.expectedText)!=null&&u[0])){const f=new ur(i.expectedText[0]),d=this.document.location.href;return{received:d,matches:f.matches(d)}}if(i.expression==="to.match.aria"&&!i.selector){if(!this.document.body)return{matches:i.isNot,missingReceived:!0};const f=C0(this.document.body,i.expectedValue);return{received:f.received,matches:!!f.matches.length}}return{matches:i.isNot,missingReceived:!0}}return await this.expectSingleElement(e,i)}async expectSingleElement(e,i){var l;const r=i.expression;{let o;if(r==="to.have.attribute"){const u=e.hasAttribute(i.expressionArg);o={matches:u,received:u?"attribute present":"attribute not present"}}else if(r==="to.be.checked"){const{checked:u,indeterminate:f}=i.expectedValue;if(f){if(u!==void 0)throw this.createStacklessError("Can't assert indeterminate and checked at the same time");o=this.elementState(e,"indeterminate")}else o=this.elementState(e,u===!1?"unchecked":"checked")}else if(r==="to.be.disabled")o=this.elementState(e,"disabled");else if(r==="to.be.editable")o=this.elementState(e,"editable");else if(r==="to.be.readonly")o=this.elementState(e,"editable"),o.matches=!o.matches;else if(r==="to.be.empty")if(e.nodeName==="INPUT"||e.nodeName==="TEXTAREA"){const u=e.value;o={matches:!u,received:u?"notEmpty":"empty"}}else{const u=(l=e.textContent)==null?void 0:l.trim();o={matches:!u,received:u?"notEmpty":"empty"}}else if(r==="to.be.enabled")o=this.elementState(e,"enabled");else if(r==="to.be.focused"){const u=this._activelyFocused(e).isFocused;o={matches:u,received:u?"focused":"inactive"}}else r==="to.be.hidden"?o=this.elementState(e,"hidden"):r==="to.be.visible"?o=this.elementState(e,"visible"):r==="to.be.attached"?o={matches:!0,received:"attached"}:r==="to.be.detached"&&(o={matches:!1,received:"attached"});if(o){if(o.received==="error:notconnected")throw this.createStacklessError("Element is not connected");return o}}if(r==="to.have.property"){let o=e;const u=i.expressionArg.split(".");for(let g=0;g<u.length-1;g++){if(typeof o!="object"||!(u[g]in o))return{received:void 0,matches:!1};o=o[u[g]]}const f=o[u[u.length-1]],d=Vh(f,i.expectedValue);return{received:f,matches:d}}if(r==="to.be.in.viewport"){const o=await this.viewportRatio(e);return{received:`viewport ratio ${o}`,matches:o>0&&o>(i.expectedNumber??0)-1e-9}}if(r==="to.have.values"){if(e=this.retarget(e,"follow-label"),e.nodeName!=="SELECT"||!e.multiple)throw this.createStacklessError("Not a select element with a multiple attribute");const o=[...e.selectedOptions].map(u=>u.value);return o.length!==i.expectedText.length?{received:o,matches:!1}:{received:o,matches:o.map((u,f)=>new ur(i.expectedText[f]).matches(u)).every(Boolean)}}if(r==="to.match.aria"){const o=C0(e,i.expectedValue);return{received:o.received,matches:!!o.matches.length}}{let o;if(r==="to.have.attribute.value"){const u=e.getAttribute(i.expressionArg);if(u===null)return{received:null,matches:!1};o=u}else if(["to.have.class","to.contain.class"].includes(r)){if(!i.expectedText)throw this.createStacklessError("Expected text is not provided for "+r);return{received:e.classList.toString(),matches:new ur(i.expectedText[0]).matchesClassList(this,e.classList,r==="to.contain.class")}}else if(r==="to.have.css")o=this.window.getComputedStyle(e,i.pseudo?`::${i.pseudo}`:void 0).getPropertyValue(i.expressionArg);else if(r==="to.have.id")o=e.id;else if(r==="to.have.text")o=i.useInnerText?e.innerText:Gt(new Map,e).full;else if(r==="to.have.accessible.name")o=sl(e,!1);else if(r==="to.have.accessible.description")o=rl(e,!1);else if(r==="to.have.accessible.error.message")o=fT(e);else if(r==="to.have.role")o=Tt(e)||"";else if(r==="to.have.value"){if(e=this.retarget(e,"follow-label"),e.nodeName!=="INPUT"&&e.nodeName!=="TEXTAREA"&&e.nodeName!=="SELECT")throw this.createStacklessError("Not an input element");o=e.value}if(o!==void 0&&i.expectedText){const u=new ur(i.expectedText[0]);return{received:o,matches:u.matches(o)}}}throw this.createStacklessError("Unknown expect matcher: "+r)}expectArray(e,i){const r=i.expression;if(r==="to.have.count"){const d=e.length,g=d===i.expectedNumber;return{received:d,matches:g}}if(!i.expectedText)throw this.createStacklessError("Expected text is not provided for "+r);if(["to.have.class.array","to.contain.class.array"].includes(r)){const d=e.map(y=>y.classList),g=d.map(String);if(d.length!==i.expectedText.length)return{received:g,matches:!1};const m=this._matchSequentially(i.expectedText,d,(y,S)=>y.matchesClassList(this,S,r==="to.contain.class.array"));return{received:g,matches:m}}if(!["to.contain.text.array","to.have.text.array"].includes(r))throw this.createStacklessError("Unknown expect matcher: "+r);const l=e.map(d=>i.useInnerText?d.innerText:Gt(new Map,d).full),o=r!=="to.contain.text.array";if(!(l.length===i.expectedText.length||!o))return{received:l,matches:!1};const f=this._matchSequentially(i.expectedText,l,(d,g)=>d.matches(g));return{received:l,matches:f}}_matchSequentially(e,i,r){const l=e.map(f=>new ur(f));let o=0,u=0;for(;o<l.length&&u<i.length;)r(l[o],i[u])&&++o,++u;return o===l.length}}function zo(n){return n.replace(/\n/g,"↵").replace(/\t/g,"⇆")}function $0(n){const{value:e,caseSensitive:i}=n;if(e instanceof RegExp)return l=>!!l.match(e);if(i)return l=>l===e;const r=e.toLowerCase();return l=>l.toLowerCase().includes(r)}function AA(n){if(n=n.substring(1,n.length-1),!n.includes("\\"))return n;const e=[];let i=0;for(;i<n.length;)n[i]==="\\"&&i+1<n.length&&i++,e.push(n[i++]);return e.join("")}function Uo(n,e){if(n[0]==="/"&&n.lastIndexOf("/")>0){const l=n.lastIndexOf("/"),o=new RegExp(n.substring(1,l),n.substring(l+1));return{matcher:u=>o.test(u.full),kind:"regex"}}const i=e?JSON.parse.bind(JSON):AA;let r=!1;return n.length>1&&n[0]==='"'&&n[n.length-1]==='"'?(n=i(n),r=!0):e&&n.length>1&&n[0]==='"'&&n[n.length-2]==='"'&&n[n.length-1]==="i"?(n=i(n.substring(0,n.length-1)),r=!1):e&&n.length>1&&n[0]==='"'&&n[n.length-2]==='"'&&n[n.length-1]==="s"?(n=i(n.substring(0,n.length-1)),r=!0):n.length>1&&n[0]==="'"&&n[n.length-1]==="'"&&(n=i(n),r=!0),n=dt(n),r?e?{kind:"strict",matcher:o=>o.normalized===n}:{matcher:o=>!n&&!o.immediate.length?!0:o.immediate.some(u=>dt(u)===n),kind:"strict"}:(n=n.toLowerCase(),{kind:"lax",matcher:l=>l.normalized.toLowerCase().includes(n)})}class ur{constructor(e){if(this._normalizeWhiteSpace=e.normalizeWhiteSpace,this._ignoreCase=e.ignoreCase,this._string=e.matchSubstring?void 0:this.normalize(e.string),this._substring=e.matchSubstring?this.normalize(e.string):void 0,e.regexSource){const i=new Set((e.regexFlags||"").split(""));e.ignoreCase===!1&&i.delete("i"),e.ignoreCase===!0&&i.add("i"),this._regex=new RegExp(e.regexSource,[...i].join(""))}}matches(e){return this._regex||(e=this.normalize(e)),this._string!==void 0?e===this._string:this._substring!==void 0?e.includes(this._substring):this._regex?!!this._regex.test(e):!1}matchesClassList(e,i,r){if(r){if(this._regex)throw e.createStacklessError("Partial matching does not support regular expressions. Please provide a string value.");return this._string.split(/\s+/g).filter(Boolean).every(l=>i.contains(l))}return this.matches(i.toString())}normalize(e){return e&&(this._normalizeWhiteSpace&&(e=dt(e)),this._ignoreCase&&(e=e.toLocaleLowerCase()),e)}}function Vh(n,e){if(n===e)return!0;if(n&&e&&typeof n=="object"&&typeof e=="object"){if(n.constructor!==e.constructor)return!1;if(Array.isArray(n)){if(n.length!==e.length)return!1;for(let r=0;r<n.length;++r)if(!Vh(n[r],e[r]))return!1;return!0}if(n instanceof RegExp)return n.source===e.source&&n.flags===e.flags;if(n.valueOf!==Object.prototype.valueOf)return n.valueOf()===e.valueOf();if(n.toString!==Object.prototype.toString)return n.toString()===e.toString();const i=Object.keys(n);if(i.length!==Object.keys(e).length)return!1;for(let r=0;r<i.length;++r)if(!e.hasOwnProperty(i[r]))return!1;for(const r of i)if(!Vh(n[r],e[r]))return!1;return!0}return typeof n=="number"&&typeof e=="number"?isNaN(n)&&isNaN(e):!1}const CA={tagName:"svg",children:[{tagName:"defs",children:[{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-gripper"},children:[{tagName:"path",attrs:{d:"M5 3h2v2H5zm0 4h2v2H5zm0 4h2v2H5zm4-8h2v2H9zm0 4h2v2H9zm0 4h2v2H9z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-circle-large-filled"},children:[{tagName:"path",attrs:{d:"M8 1a6.8 6.8 0 0 1 1.86.253 6.899 6.899 0 0 1 3.083 1.805 6.903 6.903 0 0 1 1.804 3.083C14.916 6.738 15 7.357 15 8s-.084 1.262-.253 1.86a6.9 6.9 0 0 1-.704 1.674 7.157 7.157 0 0 1-2.516 2.509 6.966 6.966 0 0 1-1.668.71A6.984 6.984 0 0 1 8 15a6.984 6.984 0 0 1-1.86-.246 7.098 7.098 0 0 1-1.674-.711 7.3 7.3 0 0 1-1.415-1.094 7.295 7.295 0 0 1-1.094-1.415 7.098 7.098 0 0 1-.71-1.675A6.985 6.985 0 0 1 1 8c0-.643.082-1.262.246-1.86a6.968 6.968 0 0 1 .711-1.667 7.156 7.156 0 0 1 2.509-2.516 6.895 6.895 0 0 1 1.675-.704A6.808 6.808 0 0 1 8 1z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-stop-circle"},children:[{tagName:"path",attrs:{d:"M6 6h4v4H6z"}},{tagName:"path",attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M8.6 1c1.6.1 3.1.9 4.2 2 1.3 1.4 2 3.1 2 5.1 0 1.6-.6 3.1-1.6 4.4-1 1.2-2.4 2.1-4 2.4-1.6.3-3.2.1-4.6-.7-1.4-.8-2.5-2-3.1-3.5C.9 9.2.8 7.5 1.3 6c.5-1.6 1.4-2.9 2.8-3.8C5.4 1.3 7 .9 8.6 1zm.5 12.9c1.3-.3 2.5-1 3.4-2.1.8-1.1 1.3-2.4 1.2-3.8 0-1.6-.6-3.2-1.7-4.3-1-1-2.2-1.6-3.6-1.7-1.3-.1-2.7.2-3.8 1-1.1.8-1.9 1.9-2.3 3.3-.4 1.3-.4 2.7.2 4 .6 1.3 1.5 2.3 2.7 3 1.2.7 2.6.9 3.9.6z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-inspect"},children:[{tagName:"path",attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M1 3l1-1h12l1 1v6h-1V3H2v8h5v1H2l-1-1V3zm14.707 9.707L9 6v9.414l2.707-2.707h4zM10 13V8.414l3.293 3.293h-2L10 13z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-whole-word"},children:[{tagName:"path",attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M0 11H1V13H15V11H16V14H15H1H0V11Z"}},{tagName:"path",attrs:{d:"M6.84048 11H5.95963V10.1406H5.93814C5.555 10.7995 4.99104 11.1289 4.24625 11.1289C3.69839 11.1289 3.26871 10.9839 2.95718 10.6938C2.64924 10.4038 2.49527 10.0189 2.49527 9.53906C2.49527 8.51139 3.10041 7.91341 4.3107 7.74512L5.95963 7.51416C5.95963 6.57959 5.58186 6.1123 4.82632 6.1123C4.16389 6.1123 3.56591 6.33789 3.03238 6.78906V5.88672C3.57307 5.54297 4.19612 5.37109 4.90152 5.37109C6.19416 5.37109 6.84048 6.05501 6.84048 7.42285V11ZM5.95963 8.21777L4.63297 8.40039C4.22476 8.45768 3.91682 8.55973 3.70914 8.70654C3.50145 8.84977 3.39761 9.10579 3.39761 9.47461C3.39761 9.74316 3.4925 9.96338 3.68228 10.1353C3.87564 10.3035 4.13166 10.3877 4.45035 10.3877C4.8872 10.3877 5.24706 10.2355 5.52994 9.93115C5.8164 9.62321 5.95963 9.2347 5.95963 8.76562V8.21777Z"}},{tagName:"path",attrs:{d:"M9.3475 10.2051H9.32601V11H8.44515V2.85742H9.32601V6.4668H9.3475C9.78076 5.73633 10.4146 5.37109 11.2489 5.37109C11.9543 5.37109 12.5057 5.61816 12.9032 6.1123C13.3042 6.60286 13.5047 7.26172 13.5047 8.08887C13.5047 9.00911 13.2809 9.74674 12.8333 10.3018C12.3857 10.8532 11.7734 11.1289 10.9964 11.1289C10.2695 11.1289 9.71989 10.821 9.3475 10.2051ZM9.32601 7.98682V8.75488C9.32601 9.20964 9.47282 9.59635 9.76644 9.91504C10.0636 10.2301 10.4396 10.3877 10.8944 10.3877C11.4279 10.3877 11.8451 10.1836 12.1458 9.77539C12.4502 9.36719 12.6024 8.79964 12.6024 8.07275C12.6024 7.46045 12.4609 6.98063 12.1781 6.6333C11.8952 6.28597 11.512 6.1123 11.0286 6.1123C10.5166 6.1123 10.1048 6.29134 9.7933 6.64941C9.48177 7.00391 9.32601 7.44971 9.32601 7.98682Z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-eye"},children:[{tagName:"path",attrs:{d:"M7.99993 6.00316C9.47266 6.00316 10.6666 7.19708 10.6666 8.66981C10.6666 10.1426 9.47266 11.3365 7.99993 11.3365C6.52715 11.3365 5.33324 10.1426 5.33324 8.66981C5.33324 7.19708 6.52715 6.00316 7.99993 6.00316ZM7.99993 7.00315C7.07946 7.00315 6.33324 7.74935 6.33324 8.66981C6.33324 9.59028 7.07946 10.3365 7.99993 10.3365C8.9204 10.3365 9.6666 9.59028 9.6666 8.66981C9.6666 7.74935 8.9204 7.00315 7.99993 7.00315ZM7.99993 3.66675C11.0756 3.66675 13.7307 5.76675 14.4673 8.70968C14.5344 8.97755 14.3716 9.24908 14.1037 9.31615C13.8358 9.38315 13.5643 9.22041 13.4973 8.95248C12.8713 6.45205 10.6141 4.66675 7.99993 4.66675C5.38454 4.66675 3.12664 6.45359 2.50182 8.95555C2.43491 9.22341 2.16348 9.38635 1.89557 9.31948C1.62766 9.25255 1.46471 8.98115 1.53162 8.71321C2.26701 5.76856 4.9229 3.66675 7.99993 3.66675Z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-symbol-constant"},children:[{tagName:"path",attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M4 6h8v1H4V6zm8 3H4v1h8V9z"}},{tagName:"path",attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M1 4l1-1h12l1 1v8l-1 1H2l-1-1V4zm1 0v8h12V4H2z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-check"},children:[{tagName:"path",attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M14.431 3.323l-8.47 10-.79-.036-3.35-4.77.818-.574 2.978 4.24 8.051-9.506.764.646z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-close"},children:[{tagName:"path",attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M8 8.707l3.646 3.647.708-.707L8.707 8l3.647-3.646-.707-.708L8 7.293 4.354 3.646l-.707.708L7.293 8l-3.646 3.646.707.708L8 8.707z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-pass"},children:[{tagName:"path",attrs:{d:"M6.27 10.87h.71l4.56-4.56-.71-.71-4.2 4.21-1.92-1.92L4 8.6l2.27 2.27z"}},{tagName:"path",attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M8.6 1c1.6.1 3.1.9 4.2 2 1.3 1.4 2 3.1 2 5.1 0 1.6-.6 3.1-1.6 4.4-1 1.2-2.4 2.1-4 2.4-1.6.3-3.2.1-4.6-.7-1.4-.8-2.5-2-3.1-3.5C.9 9.2.8 7.5 1.3 6c.5-1.6 1.4-2.9 2.8-3.8C5.4 1.3 7 .9 8.6 1zm.5 12.9c1.3-.3 2.5-1 3.4-2.1.8-1.1 1.3-2.4 1.2-3.8 0-1.6-.6-3.2-1.7-4.3-1-1-2.2-1.6-3.6-1.7-1.3-.1-2.7.2-3.8 1-1.1.8-1.9 1.9-2.3 3.3-.4 1.3-.4 2.7.2 4 .6 1.3 1.5 2.3 2.7 3 1.2.7 2.6.9 3.9.6z"}}]},{tagName:"clipPath",attrs:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"currentColor",id:"icon-gist"},children:[{tagName:"path",attrs:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M10.57 1.14l3.28 3.3.15.36v9.7l-.5.5h-11l-.5-.5v-13l.5-.5h7.72l.35.14zM10 5h3l-3-3v3zM3 2v12h10V6H9.5L9 5.5V2H3zm2.062 7.533l1.817-1.828L6.17 7 4 9.179v.707l2.171 2.174.707-.707-1.816-1.82zM8.8 7.714l.7-.709 2.189 2.175v.709L9.5 12.062l-.705-.709 1.831-1.82L8.8 7.714z"}}]}]}]},mn={multiple:"#f6b26b7f",single:"#6fa8dc7f",assert:"#8acae480",action:"#dc6f6f7f"};class I0{}class yh{constructor(e,i){this._hoveredModel=null,this._hoveredElement=null,this._recorder=e,this._assertVisibility=i}cursor(){return"pointer"}uninstall(){this._hoveredModel=null,this._hoveredElement=null}onClick(e){var i;Ge(e),e.button===0&&(i=this._hoveredModel)!=null&&i.selector&&this._commit(this._hoveredModel.selector,this._hoveredModel)}onPointerDown(e){Ge(e)}onPointerUp(e){Ge(e)}onMouseDown(e){Ge(e)}onMouseUp(e){Ge(e)}onMouseMove(e){var l;Ge(e);let i=this._recorder.deepEventTarget(e);if(i.isConnected||(i=null),this._hoveredElement===i)return;this._hoveredElement=i;let r=null;if(this._hoveredElement){const o=this._recorder.injectedScript.generateSelector(this._hoveredElement,{testIdAttributeName:this._recorder.state.testIdAttributeName,multiple:!1});r={selector:o.selector,elements:o.elements,tooltipText:this._recorder.injectedScript.utils.asLocator(this._recorder.state.language,o.selector),color:this._assertVisibility?mn.assert:mn.single}}((l=this._hoveredModel)==null?void 0:l.selector)!==(r==null?void 0:r.selector)&&(this._hoveredModel=r,this._recorder.updateHighlight(r,!0))}onMouseEnter(e){Ge(e)}onMouseLeave(e){Ge(e);const i=this._recorder.injectedScript.window;i.top!==i&&this._recorder.deepEventTarget(e).nodeType===Node.DOCUMENT_NODE&&this._reset(!0)}onKeyDown(e){Ge(e),e.key==="Escape"&&this._assertVisibility&&this._recorder.setMode("recording")}onKeyUp(e){Ge(e)}onScroll(e){this._reset(!1)}_commit(e,i){var r;this._assertVisibility?(this._recorder.recordAction({name:"assertVisible",selector:e,signals:[]}),this._recorder.setMode("recording"),(r=this._recorder.overlay)==null||r.flashToolSucceeded("assertingVisibility")):this._recorder.elementPicked(e,i)}_reset(e){this._hoveredElement=null,this._hoveredModel=null,this._recorder.updateHighlight(null,e)}}class NA{constructor(e){this._hoveredModel=null,this._hoveredElement=null,this._activeModel=null,this._expectProgrammaticKeyUp=!1,this._observer=null,this._recorder=e,this._performingActions=new Set,this._dialog=new Gv(e)}cursor(){return"pointer"}_installObserverIfNeeded(){var e;this._observer||(e=this._recorder.injectedScript.document)!=null&&e.body&&(this._observer=new MutationObserver(i=>{if(this._hoveredElement)for(const r of i)for(const l of r.removedNodes)(l===this._hoveredElement||l.contains(this._hoveredElement))&&this._resetHoveredModel()}),this._observer.observe(this._recorder.injectedScript.document.body,{childList:!0,subtree:!0}))}uninstall(){var e;(e=this._observer)==null||e.disconnect(),this._observer=null,this._hoveredModel=null,this._hoveredElement=null,this._activeModel=null,this._expectProgrammaticKeyUp=!1,this._dialog.close()}onClick(e){if(this._dialog.isShowing()){e.button===2&&e.type==="auxclick"&&Ge(e);return}if(tl(this._hoveredElement)||this._shouldIgnoreMouseEvent(e)||this._actionInProgress(e)||this._consumedDueToNoModel(e,this._hoveredModel))return;if(e.button===2&&e.type==="auxclick"){this._showActionListDialog(this._hoveredModel,e);return}const i=el(this._recorder.deepEventTarget(e));if(i&&e.detail===1){this._performAction({name:i.checked?"check":"uncheck",selector:this._hoveredModel.selector,signals:[]});return}this._cancelPendingClickAction(),e.detail===1&&(this._pendingClickAction={action:{name:"click",selector:this._hoveredModel.selector,position:Wa(e),signals:[],button:Gh(e),modifiers:Er(e),clickCount:e.detail},timeout:this._recorder.injectedScript.utils.builtins.setTimeout(()=>this._commitPendingClickAction(),200)})}onDblClick(e){this._dialog.isShowing()||tl(this._hoveredElement)||this._shouldIgnoreMouseEvent(e)||this._actionInProgress(e)||this._consumedDueToNoModel(e,this._hoveredModel)||(this._cancelPendingClickAction(),this._performAction({name:"click",selector:this._hoveredModel.selector,position:Wa(e),signals:[],button:Gh(e),modifiers:Er(e),clickCount:e.detail}))}_commitPendingClickAction(){this._pendingClickAction&&this._performAction(this._pendingClickAction.action),this._cancelPendingClickAction()}_cancelPendingClickAction(){this._pendingClickAction&&this._recorder.injectedScript.utils.builtins.clearTimeout(this._pendingClickAction.timeout),this._pendingClickAction=void 0}onContextMenu(e){if(this._dialog.isShowing()){Ge(e);return}this._shouldIgnoreMouseEvent(e)||this._actionInProgress(e)||this._consumedDueToNoModel(e,this._hoveredModel)||this._showActionListDialog(this._hoveredModel,e)}onPointerDown(e){this._dialog.isShowing()||this._shouldIgnoreMouseEvent(e)||this._consumeWhenAboutToPerform(e)}onPointerUp(e){this._dialog.isShowing()||this._shouldIgnoreMouseEvent(e)||this._consumeWhenAboutToPerform(e)}onMouseDown(e){this._dialog.isShowing()||this._shouldIgnoreMouseEvent(e)||(this._consumeWhenAboutToPerform(e),this._activeModel=this._hoveredModel)}onMouseUp(e){this._dialog.isShowing()||this._shouldIgnoreMouseEvent(e)||this._consumeWhenAboutToPerform(e)}onMouseMove(e){if(this._dialog.isShowing())return;const i=this._recorder.deepEventTarget(e);this._hoveredElement!==i&&(this._hoveredElement=i,this._updateModelForHoveredElement())}onMouseLeave(e){if(this._dialog.isShowing())return;const i=this._recorder.injectedScript.window;i.top!==i&&this._recorder.deepEventTarget(e).nodeType===Node.DOCUMENT_NODE&&(this._hoveredElement=null,this._updateModelForHoveredElement())}onFocus(e){this._dialog.isShowing()||this._onFocus(!0)}onInput(e){if(this._dialog.isShowing())return;const i=this._recorder.deepEventTarget(e);if(i.nodeName==="INPUT"&&i.type.toLowerCase()==="file"){this._recordAction({name:"setInputFiles",selector:this._hoveredModel.selector,signals:[],files:[...i.files||[]].map(r=>r.name)});return}if(tl(i)){this._recordAction({name:"fill",selector:this._hoveredModel.selector,signals:[],text:i.value});return}if(["INPUT","TEXTAREA"].includes(i.nodeName)||i.isContentEditable){if(i.nodeName==="INPUT"&&["checkbox","radio"].includes(i.type.toLowerCase())||this._consumedDueWrongTarget(e))return;this._recordAction({name:"fill",selector:this._activeModel.selector,signals:[],text:i.isContentEditable?i.innerText:i.value})}if(i.nodeName==="SELECT"){const r=i;this._recordAction({name:"select",selector:this._activeModel.selector,options:[...r.selectedOptions].map(l=>l.value),signals:[]})}}onKeyDown(e){if(!this._dialog.isShowing()&&this._shouldGenerateKeyPressFor(e)){if(this._actionInProgress(e)){this._expectProgrammaticKeyUp=!0;return}if(!this._consumedDueWrongTarget(e)){if(e.key===" "){const i=el(this._recorder.deepEventTarget(e));if(i&&e.detail===0){this._performAction({name:i.checked?"uncheck":"check",selector:this._activeModel.selector,signals:[]});return}}this._performAction({name:"press",selector:this._activeModel.selector,signals:[],key:e.key,modifiers:Er(e)})}}}onKeyUp(e){if(!this._dialog.isShowing()&&this._shouldGenerateKeyPressFor(e)){if(!this._expectProgrammaticKeyUp){Ge(e);return}this._expectProgrammaticKeyUp=!1}}onScroll(e){this._dialog.isShowing()||this._resetHoveredModel()}_showActionListDialog(e,i){Ge(i);const r=Wa(i),l=[{title:"Click",cb:()=>this._performAction({name:"click",selector:e.selector,position:r,signals:[],button:"left",modifiers:0,clickCount:0})},{title:"Right click",cb:()=>this._performAction({name:"click",selector:e.selector,position:r,signals:[],button:"right",modifiers:0,clickCount:0})},{title:"Double click",cb:()=>this._performAction({name:"click",selector:e.selector,position:r,signals:[],button:"left",modifiers:0,clickCount:2})},{title:"Hover",cb:()=>this._performAction({name:"hover",selector:e.selector,position:r,signals:[]})},{title:"Pick locator",cb:()=>this._recorder.elementPicked(e.selector,e)}],o=this._recorder.document.createElement("x-pw-action-list");o.setAttribute("role","list"),o.setAttribute("aria-label","Choose action");for(const g of l){const m=this._recorder.document.createElement("x-pw-action-item");m.setAttribute("role","listitem"),m.textContent=g.title,m.setAttribute("aria-label",g.title),m.addEventListener("click",()=>{this._dialog.close(),g.cb()}),o.appendChild(m)}const u=this._dialog.show({label:"Choose action",body:o,autosize:!0}),f=this._recorder.highlight.firstTooltipBox()||e.elements[0].getBoundingClientRect(),d=this._recorder.highlight.tooltipPosition(f,u);this._dialog.moveTo(d.anchorTop,d.anchorLeft)}_resetHoveredModel(){this._hoveredModel=null,this._hoveredElement=null,this._updateHighlight(!1)}_onFocus(e){const i=jA(this._recorder.document);if(e&&i===this._recorder.document.body)return;const r=i?this._recorder.injectedScript.generateSelector(i,{testIdAttributeName:this._recorder.state.testIdAttributeName}):null;this._activeModel=r&&r.selector?{...r,color:mn.action}:null,e&&(this._hoveredElement=i,this._updateModelForHoveredElement())}_shouldIgnoreMouseEvent(e){return Kv(this._recorder.deepEventTarget(e))}_actionInProgress(e){const i=e instanceof KeyboardEvent,r=e instanceof MouseEvent||e instanceof PointerEvent;for(const l of this._performingActions)if(i&&l.name==="press"&&e.key===l.key||r&&(l.name==="click"||l.name==="hover"||l.name==="check"||l.name==="uncheck"))return!0;return Ge(e),!1}_consumedDueToNoModel(e,i){return i?!1:(Ge(e),!0)}_consumedDueWrongTarget(e){return this._activeModel&&this._activeModel.elements[0]===this._recorder.deepEventTarget(e)?!1:(Ge(e),!0)}_consumeWhenAboutToPerform(e){this._performingActions.size||Ge(e)}_reportPerformedActionForTests(){this._recorder.injectedScript.isUnderTest&&console.error("Action performed for test: "+JSON.stringify({hovered:this._hoveredModel?this._hoveredModel.selector:null,active:this._activeModel?this._activeModel.selector:null}))}_recordAction(e){this._recorder.recordAction(e).then(()=>this._reportPerformedActionForTests())}_performAction(e){this._recorder.updateHighlight(null,!1),this._performingActions.add(e),this._recorder.performAction(e).finally(()=>{this._performingActions.delete(e),this._onFocus(!1)}).then(()=>this._reportPerformedActionForTests())}_shouldGenerateKeyPressFor(e){if(typeof e.key!="string"||e.key==="Enter"&&(this._recorder.deepEventTarget(e).nodeName==="TEXTAREA"||this._recorder.deepEventTarget(e).isContentEditable)||["Backspace","Delete","AltGraph"].includes(e.key)||e.key==="@"&&e.code==="KeyL")return!1;if(navigator.platform.includes("Mac")){if(e.key==="v"&&e.metaKey)return!1}else if(e.key==="v"&&e.ctrlKey||e.key==="Insert"&&e.shiftKey)return!1;if(["Shift","Control","Meta","Alt","Process"].includes(e.key))return!1;const i=e.ctrlKey||e.altKey||e.metaKey;return e.key.length===1&&!i?!!el(this._recorder.deepEventTarget(e)):!0}_updateModelForHoveredElement(){if(this._installObserverIfNeeded(),this._performingActions.size)return;if(!this._hoveredElement||!this._hoveredElement.isConnected){this._hoveredModel=null,this._hoveredElement=null,this._updateHighlight(!0);return}const{selector:e,elements:i}=this._recorder.injectedScript.generateSelector(this._hoveredElement,{testIdAttributeName:this._recorder.state.testIdAttributeName});this._hoveredModel&&this._hoveredModel.selector===e||(this._hoveredModel=e?{selector:e,elements:i,color:mn.action}:null,this._updateHighlight(!0))}_updateHighlight(e){this._recorder.updateHighlight(this._hoveredModel,e)}}class kA{constructor(e){this._recorder=e}install(){this._recorder.highlight.uninstall()}uninstall(){this._recorder.highlight.install()}onClick(e){const i=this._recorder.deepEventTarget(e);if(tl(i)||e.button===2&&e.type==="auxclick"||this._shouldIgnoreMouseEvent(e))return;const r=el(i),{ariaSnapshot:l,selector:o,ref:u}=this._ariaSnapshot(i);if(r&&e.detail===1){this._recorder.recordAction({name:r.checked?"check":"uncheck",selector:o,ref:u,signals:[],ariaSnapshot:l});return}this._recorder.recordAction({name:"click",selector:o,ref:u,ariaSnapshot:l,position:Wa(e),signals:[],button:Gh(e),modifiers:Er(e),clickCount:e.detail})}onContextMenu(e){const i=this._recorder.deepEventTarget(e),{ariaSnapshot:r,selector:l,ref:o}=this._ariaSnapshot(i);this._recorder.recordAction({name:"click",selector:l,ref:o,ariaSnapshot:r,position:Wa(e),signals:[],button:"right",modifiers:Er(e),clickCount:1})}onInput(e){const i=this._recorder.deepEventTarget(e),{ariaSnapshot:r,selector:l,ref:o}=this._ariaSnapshot(i);if(tl(i)){this._recorder.recordAction({name:"fill",selector:l,ref:o,ariaSnapshot:r,signals:[],text:i.value});return}if(["INPUT","TEXTAREA"].includes(i.nodeName)||i.isContentEditable){if(i.nodeName==="INPUT"&&["checkbox","radio"].includes(i.type.toLowerCase()))return;this._recorder.recordAction({name:"fill",ref:o,selector:l,ariaSnapshot:r,signals:[],text:i.isContentEditable?i.innerText:i.value});return}if(i.nodeName==="SELECT"){const u=i;this._recorder.recordAction({name:"select",selector:l,ref:o,ariaSnapshot:r,options:[...u.selectedOptions].map(f=>f.value),signals:[]});return}}onKeyDown(e){if(!this._shouldGenerateKeyPressFor(e))return;const i=this._recorder.deepEventTarget(e),{ariaSnapshot:r,selector:l,ref:o}=this._ariaSnapshot(i);if(e.key===" "){const u=el(i);if(u&&e.detail===0){this._recorder.recordAction({name:u.checked?"uncheck":"check",selector:l,ref:o,ariaSnapshot:r,signals:[]});return}}this._recorder.recordAction({name:"press",selector:l,ref:o,ariaSnapshot:r,signals:[],key:e.key,modifiers:Er(e)})}_shouldIgnoreMouseEvent(e){return Kv(this._recorder.deepEventTarget(e))}_shouldGenerateKeyPressFor(e){if(typeof e.key!="string"||e.key==="Enter"&&(this._recorder.deepEventTarget(e).nodeName==="TEXTAREA"||this._recorder.deepEventTarget(e).isContentEditable)||["Backspace","Delete","AltGraph"].includes(e.key)||e.key==="@"&&e.code==="KeyL")return!1;if(navigator.platform.includes("Mac")){if(e.key==="v"&&e.metaKey)return!1}else if(e.key==="v"&&e.ctrlKey||e.key==="Insert"&&e.shiftKey)return!1;if(["Shift","Control","Meta","Alt","Process"].includes(e.key))return!1;const i=e.ctrlKey||e.altKey||e.metaKey;return e.key.length===1&&!i?!this._isEditable(this._recorder.deepEventTarget(e)):!0}_isEditable(e){return!!(e.nodeName==="TEXTAREA"||e.nodeName==="INPUT"||e.isContentEditable)}_ariaSnapshot(e){const{ariaSnapshot:i,refs:r}=this._recorder.injectedScript.ariaSnapshotForRecorder(),l=e?r.get(e):void 0,o=e?this._recorder.injectedScript.generateSelector(e,{testIdAttributeName:this._recorder.state.testIdAttributeName}):void 0;return{ariaSnapshot:i,selector:o==null?void 0:o.selector,ref:l}}}class bh{constructor(e,i){this._hoverHighlight=null,this._action=null,this._recorder=e,this._textCache=new Map,this._kind=i,this._dialog=new Gv(e)}cursor(){return"pointer"}uninstall(){this._dialog.close(),this._hoverHighlight=null}onClick(e){Ge(e),this._kind==="value"?this._commitAssertValue():this._dialog.isShowing()||this._showDialog()}onMouseDown(e){const i=this._recorder.deepEventTarget(e);this._elementHasValue(i)&&e.preventDefault()}onPointerUp(e){var r;const i=(r=this._hoverHighlight)==null?void 0:r.elements[0];this._kind==="value"&&i&&(i.nodeName==="INPUT"||i.nodeName==="SELECT")&&i.disabled&&this._commitAssertValue()}onMouseMove(e){var r;if(this._dialog.isShowing())return;const i=this._recorder.deepEventTarget(e);if(((r=this._hoverHighlight)==null?void 0:r.elements[0])!==i){if(this._kind==="text"||this._kind==="snapshot")this._hoverHighlight=this._recorder.injectedScript.utils.elementText(this._textCache,i).full?{elements:[i],selector:"",color:mn.assert}:null;else if(this._elementHasValue(i)){const l=this._recorder.injectedScript.generateSelector(i,{testIdAttributeName:this._recorder.state.testIdAttributeName});this._hoverHighlight={selector:l.selector,elements:l.elements,color:mn.assert}}else this._hoverHighlight=null;this._recorder.updateHighlight(this._hoverHighlight,!0)}}onKeyDown(e){e.key==="Escape"&&this._recorder.setMode("recording"),Ge(e)}onScroll(e){this._recorder.updateHighlight(this._hoverHighlight,!1)}_elementHasValue(e){return e.nodeName==="TEXTAREA"||e.nodeName==="SELECT"||e.nodeName==="INPUT"&&!["button","image","reset","submit"].includes(e.type)}_generateAction(){var i;this._textCache.clear();const e=(i=this._hoverHighlight)==null?void 0:i.elements[0];if(!e)return null;if(this._kind==="value"){if(!this._elementHasValue(e))return null;const{selector:r}=this._recorder.injectedScript.generateSelector(e,{testIdAttributeName:this._recorder.state.testIdAttributeName});return e.nodeName==="INPUT"&&["checkbox","radio"].includes(e.type.toLowerCase())?{name:"assertChecked",selector:r,signals:[],checked:!e.checked}:{name:"assertValue",selector:r,signals:[],value:e.value}}else if(this._kind==="snapshot"){const r=this._recorder.injectedScript.generateSelector(e,{testIdAttributeName:this._recorder.state.testIdAttributeName,forTextExpect:!0});return this._hoverHighlight={selector:r.selector,elements:r.elements,color:mn.assert},this._recorder.updateHighlight(this._hoverHighlight,!0),{name:"assertSnapshot",selector:this._hoverHighlight.selector,signals:[],ariaSnapshot:this._recorder.injectedScript.ariaSnapshot(e,{mode:"codegen"})}}else{const r=this._recorder.injectedScript.generateSelector(e,{testIdAttributeName:this._recorder.state.testIdAttributeName,forTextExpect:!0});return this._hoverHighlight={selector:r.selector,elements:r.elements,color:mn.assert},this._recorder.updateHighlight(this._hoverHighlight,!0),{name:"assertText",selector:this._hoverHighlight.selector,signals:[],text:this._recorder.injectedScript.utils.elementText(this._textCache,e).normalized,substring:!0}}}_renderValue(e){return(e==null?void 0:e.name)==="assertText"?this._recorder.injectedScript.utils.normalizeWhiteSpace(e.text):(e==null?void 0:e.name)==="assertChecked"?String(e.checked):(e==null?void 0:e.name)==="assertValue"?e.value:(e==null?void 0:e.name)==="assertSnapshot"?e.ariaSnapshot:""}_commit(){!this._action||!this._dialog.isShowing()||(this._dialog.close(),this._recorder.recordAction(this._action),this._recorder.setMode("recording"))}_showDialog(){var e,i,r,l;(e=this._hoverHighlight)!=null&&e.elements[0]&&(this._action=this._generateAction(),((i=this._action)==null?void 0:i.name)==="assertText"?this._showTextDialog(this._action):((r=this._action)==null?void 0:r.name)==="assertSnapshot"&&(this._recorder.recordAction(this._action),this._recorder.setMode("recording"),(l=this._recorder.overlay)==null||l.flashToolSucceeded("assertingSnapshot")))}_showTextDialog(e){const i=this._recorder.document.createElement("textarea");i.setAttribute("spellcheck","false"),i.value=this._renderValue(e),i.classList.add("text-editor");const r=()=>{var y;const f=this._recorder.injectedScript.utils.normalizeWhiteSpace(i.value),d=(y=this._hoverHighlight)==null?void 0:y.elements[0];if(!d)return;e.text=f;const g=this._recorder.injectedScript.utils.elementText(this._textCache,d).normalized,m=f&&g.includes(f);i.classList.toggle("does-not-match",!m)};i.addEventListener("input",r);const o=this._dialog.show({label:"Assert that element contains text",body:i,onCommit:()=>this._commit()}),u=this._recorder.highlight.tooltipPosition(this._recorder.highlight.firstBox(),o);this._dialog.moveTo(u.anchorTop,u.anchorLeft),i.focus()}_commitAssertValue(){var i;if(this._kind!=="value")return;const e=this._generateAction();e&&(this._recorder.recordAction(e),this._recorder.setMode("recording"),(i=this._recorder.overlay)==null||i.flashToolSucceeded("assertingValue"))}}class MA{constructor(e){this._listeners=[],this._offsetX=0,this._measure={width:0,height:0},this._recorder=e;const i=this._recorder.document;this._overlayElement=i.createElement("x-pw-overlay");const r=i.createElement("x-pw-tools-list");this._overlayElement.appendChild(r),this._dragHandle=i.createElement("x-pw-tool-gripper"),this._dragHandle.appendChild(i.createElement("x-div")),r.appendChild(this._dragHandle),this._recordToggle=this._recorder.document.createElement("x-pw-tool-item"),this._recordToggle.title="Record",this._recordToggle.classList.add("record"),this._recordToggle.appendChild(this._recorder.document.createElement("x-div")),r.appendChild(this._recordToggle),this._pickLocatorToggle=this._recorder.document.createElement("x-pw-tool-item"),this._pickLocatorToggle.title="Pick locator",this._pickLocatorToggle.classList.add("pick-locator"),this._pickLocatorToggle.appendChild(this._recorder.document.createElement("x-div")),r.appendChild(this._pickLocatorToggle),this._assertVisibilityToggle=this._recorder.document.createElement("x-pw-tool-item"),this._assertVisibilityToggle.title="Assert visibility",this._assertVisibilityToggle.classList.add("visibility"),this._assertVisibilityToggle.appendChild(this._recorder.document.createElement("x-div")),r.appendChild(this._assertVisibilityToggle),this._assertTextToggle=this._recorder.document.createElement("x-pw-tool-item"),this._assertTextToggle.title="Assert text",this._assertTextToggle.classList.add("text"),this._assertTextToggle.appendChild(this._recorder.document.createElement("x-div")),r.appendChild(this._assertTextToggle),this._assertValuesToggle=this._recorder.document.createElement("x-pw-tool-item"),this._assertValuesToggle.title="Assert value",this._assertValuesToggle.classList.add("value"),this._assertValuesToggle.appendChild(this._recorder.document.createElement("x-div")),r.appendChild(this._assertValuesToggle),this._assertSnapshotToggle=this._recorder.document.createElement("x-pw-tool-item"),this._assertSnapshotToggle.title="Assert snapshot",this._assertSnapshotToggle.classList.add("snapshot"),this._assertSnapshotToggle.appendChild(this._recorder.document.createElement("x-div")),r.appendChild(this._assertSnapshotToggle),this._updateVisualPosition(),this._refreshListeners()}_refreshListeners(){Xv(this._listeners),this._listeners=[Ie(this._dragHandle,"mousedown",e=>{this._dragState={offsetX:this._offsetX,dragStart:{x:e.clientX,y:0}}}),Ie(this._recordToggle,"click",()=>{this._recordToggle.classList.contains("disabled")||this._recorder.setMode(this._recorder.state.mode==="none"||this._recorder.state.mode==="standby"||this._recorder.state.mode==="inspecting"?"recording":"standby")}),Ie(this._pickLocatorToggle,"click",()=>{if(this._pickLocatorToggle.classList.contains("disabled"))return;const e={inspecting:"standby",none:"inspecting",standby:"inspecting",recording:"recording-inspecting","recording-inspecting":"recording",assertingText:"recording-inspecting",assertingVisibility:"recording-inspecting",assertingValue:"recording-inspecting",assertingSnapshot:"recording-inspecting"};this._recorder.setMode(e[this._recorder.state.mode])}),Ie(this._assertVisibilityToggle,"click",()=>{this._assertVisibilityToggle.classList.contains("disabled")||this._recorder.setMode(this._recorder.state.mode==="assertingVisibility"?"recording":"assertingVisibility")}),Ie(this._assertTextToggle,"click",()=>{this._assertTextToggle.classList.contains("disabled")||this._recorder.setMode(this._recorder.state.mode==="assertingText"?"recording":"assertingText")}),Ie(this._assertValuesToggle,"click",()=>{this._assertValuesToggle.classList.contains("disabled")||this._recorder.setMode(this._recorder.state.mode==="assertingValue"?"recording":"assertingValue")}),Ie(this._assertSnapshotToggle,"click",()=>{this._assertSnapshotToggle.classList.contains("disabled")||this._recorder.setMode(this._recorder.state.mode==="assertingSnapshot"?"recording":"assertingSnapshot")})]}install(){this._recorder.highlight.appendChild(this._overlayElement),this._refreshListeners(),this._updateVisualPosition()}contains(e){return this._recorder.injectedScript.utils.isInsideScope(this._overlayElement,e)}setUIState(e){const i=e.mode==="recording"||e.mode==="assertingText"||e.mode==="assertingVisibility"||e.mode==="assertingValue"||e.mode==="assertingSnapshot"||e.mode==="recording-inspecting";this._recordToggle.classList.toggle("toggled",i),this._recordToggle.title=i?"Stop Recording":"Start Recording",this._pickLocatorToggle.classList.toggle("toggled",e.mode==="inspecting"||e.mode==="recording-inspecting"),this._assertVisibilityToggle.classList.toggle("toggled",e.mode==="assertingVisibility"),this._assertVisibilityToggle.classList.toggle("disabled",e.mode==="none"||e.mode==="standby"||e.mode==="inspecting"),this._assertTextToggle.classList.toggle("toggled",e.mode==="assertingText"),this._assertTextToggle.classList.toggle("disabled",e.mode==="none"||e.mode==="standby"||e.mode==="inspecting"),this._assertValuesToggle.classList.toggle("toggled",e.mode==="assertingValue"),this._assertValuesToggle.classList.toggle("disabled",e.mode==="none"||e.mode==="standby"||e.mode==="inspecting"),this._assertSnapshotToggle.classList.toggle("toggled",e.mode==="assertingSnapshot"),this._assertSnapshotToggle.classList.toggle("disabled",e.mode==="none"||e.mode==="standby"||e.mode==="inspecting"),this._offsetX!==e.overlay.offsetX&&(this._offsetX=e.overlay.offsetX,this._updateVisualPosition()),e.mode==="none"?this._hideOverlay():this._showOverlay()}flashToolSucceeded(e){let i;e==="assertingVisibility"?i=this._assertVisibilityToggle:e==="assertingSnapshot"?i=this._assertSnapshotToggle:i=this._assertValuesToggle,i.classList.add("succeeded"),this._recorder.injectedScript.utils.builtins.setTimeout(()=>i.classList.remove("succeeded"),2e3)}_hideOverlay(){this._overlayElement.setAttribute("hidden","true")}_showOverlay(){this._overlayElement.hasAttribute("hidden")&&(this._overlayElement.removeAttribute("hidden"),this._updateVisualPosition())}_updateVisualPosition(){this._measure=this._overlayElement.getBoundingClientRect(),this._overlayElement.style.left=(this._recorder.injectedScript.window.innerWidth-this._measure.width)/2+this._offsetX+"px"}onMouseMove(e){if(!e.buttons)return this._dragState=void 0,!1;if(this._dragState){this._offsetX=this._dragState.offsetX+e.clientX-this._dragState.dragStart.x;const i=(this._recorder.injectedScript.window.innerWidth-this._measure.width)/2-10;return this._offsetX=Math.max(-i,Math.min(i,this._offsetX)),this._updateVisualPosition(),this._recorder.setOverlayState({offsetX:this._offsetX}),Ge(e),!0}return!1}onMouseUp(e){return this._dragState?(Ge(e),!0):!1}onClick(e){return this._dragState?(this._dragState=void 0,Ge(e),!0):!1}onDblClick(e){return!1}}class OA{constructor(e,i){var r,l;this._listeners=[],this._lastHighlightedSelector=void 0,this._lastHighlightedAriaTemplateJSON="undefined",this.state={mode:"none",testIdAttributeName:"data-testid",language:"javascript",overlay:{offsetX:0}},this._delegate={},this.document=e.document,this.injectedScript=e,this.highlight=e.createHighlight(),this._tools={none:new I0,standby:new I0,inspecting:new yh(this,!1),recording:(i==null?void 0:i.recorderMode)==="api"?new kA(this):new NA(this),"recording-inspecting":new yh(this,!1),assertingText:new bh(this,"text"),assertingVisibility:new yh(this,!0),assertingValue:new bh(this,"value"),assertingSnapshot:new bh(this,"snapshot")},this._currentTool=this._tools.none,(l=(r=this._currentTool).install)==null||l.call(r),e.window.top===e.window&&!(i!=null&&i.hideToolbar)&&(this.overlay=new MA(this),this.overlay.setUIState(this.state)),this._stylesheet=new e.window.CSSStyleSheet,this._stylesheet.replaceSync(`
121
+ body[data-pw-cursor=pointer] *, body[data-pw-cursor=pointer] *::after { cursor: pointer !important; }
122
+ body[data-pw-cursor=text] *, body[data-pw-cursor=text] *::after { cursor: text !important; }
123
+ `),this.installListeners(),e.utils.cacheNormalizedWhitespaces(),e.isUnderTest&&console.error("Recorder script ready for test"),e.consoleApi.install()}installListeners(){var r,l,o;Xv(this._listeners),this._listeners=[Ie(this.document,"click",u=>this._onClick(u),!0),Ie(this.document,"auxclick",u=>this._onClick(u),!0),Ie(this.document,"dblclick",u=>this._onDblClick(u),!0),Ie(this.document,"contextmenu",u=>this._onContextMenu(u),!0),Ie(this.document,"dragstart",u=>this._onDragStart(u),!0),Ie(this.document,"input",u=>this._onInput(u),!0),Ie(this.document,"keydown",u=>this._onKeyDown(u),!0),Ie(this.document,"keyup",u=>this._onKeyUp(u),!0),Ie(this.document,"pointerdown",u=>this._onPointerDown(u),!0),Ie(this.document,"pointerup",u=>this._onPointerUp(u),!0),Ie(this.document,"mousedown",u=>this._onMouseDown(u),!0),Ie(this.document,"mouseup",u=>this._onMouseUp(u),!0),Ie(this.document,"mousemove",u=>this._onMouseMove(u),!0),Ie(this.document,"mouseleave",u=>this._onMouseLeave(u),!0),Ie(this.document,"mouseenter",u=>this._onMouseEnter(u),!0),Ie(this.document,"focus",u=>this._onFocus(u),!0),Ie(this.document,"scroll",u=>this._onScroll(u),!0)],this.highlight.install();let e;const i=()=>{this.highlight.install(),e=this.injectedScript.utils.builtins.setTimeout(i,500)};e=this.injectedScript.utils.builtins.setTimeout(i,500),this._listeners.push(()=>this.injectedScript.utils.builtins.clearTimeout(e)),this.highlight.appendChild(Yv(this.document,CA)),(r=this.overlay)==null||r.install(),(o=(l=this._currentTool)==null?void 0:l.install)==null||o.call(l),this.document.adoptedStyleSheets.push(this._stylesheet)}_switchCurrentTool(){var r,l,o,u,f,d;const e=this._tools[this.state.mode];if(e===this._currentTool)return;(l=(r=this._currentTool).uninstall)==null||l.call(r),this.clearHighlight(),this._currentTool=e,(u=(o=this._currentTool).install)==null||u.call(o);const i=(f=e.cursor)==null?void 0:f.call(e);i&&((d=this.injectedScript.document.body)==null||d.setAttribute("data-pw-cursor",i))}setUIState(e,i){var o;this._delegate=i,e.actionPoint&&this.state.actionPoint&&e.actionPoint.x===this.state.actionPoint.x&&e.actionPoint.y===this.state.actionPoint.y||!e.actionPoint&&!this.state.actionPoint||(e.actionPoint?this.highlight.showActionPoint(e.actionPoint.x,e.actionPoint.y):this.highlight.hideActionPoint()),this.state=e,this.highlight.setLanguage(e.language),this._switchCurrentTool(),(o=this.overlay)==null||o.setUIState(e);let r="noop";if(e.actionSelector!==this._lastHighlightedSelector){const u=e.actionSelector?RA(this.injectedScript,e.language,e.actionSelector,this.document):null;r=u!=null&&u.length?u:"clear",this._lastHighlightedSelector=u!=null&&u.length?e.actionSelector:void 0}const l=JSON.stringify(e.ariaTemplate);if(this._lastHighlightedAriaTemplateJSON!==l){const u=e.ariaTemplate?this.injectedScript.getAllElementsMatchingExpectAriaTemplate(this.document,e.ariaTemplate):[];if(u.length){const f=u.length>1?mn.multiple:mn.single;r=u.map(d=>({element:d,color:f})),this._lastHighlightedAriaTemplateJSON=l}else this._lastHighlightedSelector||(r="clear"),this._lastHighlightedAriaTemplateJSON="undefined"}r==="clear"?this.highlight.clearHighlight():r!=="noop"&&this.highlight.updateHighlight(r)}clearHighlight(){this.updateHighlight(null,!1)}_onClick(e){var i,r,l;e.isTrusted&&((i=this.overlay)!=null&&i.onClick(e)||this._ignoreOverlayEvent(e)||(l=(r=this._currentTool).onClick)==null||l.call(r,e))}_onDblClick(e){var i,r,l;e.isTrusted&&((i=this.overlay)!=null&&i.onDblClick(e)||this._ignoreOverlayEvent(e)||(l=(r=this._currentTool).onDblClick)==null||l.call(r,e))}_onContextMenu(e){var i,r;e.isTrusted&&((r=(i=this._currentTool).onContextMenu)==null||r.call(i,e))}_onDragStart(e){var i,r;e.isTrusted&&(this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onDragStart)==null||r.call(i,e))}_onPointerDown(e){var i,r;e.isTrusted&&(this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onPointerDown)==null||r.call(i,e))}_onPointerUp(e){var i,r;e.isTrusted&&(this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onPointerUp)==null||r.call(i,e))}_onMouseDown(e){var i,r;e.isTrusted&&(this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onMouseDown)==null||r.call(i,e))}_onMouseUp(e){var i,r,l;e.isTrusted&&((i=this.overlay)!=null&&i.onMouseUp(e)||this._ignoreOverlayEvent(e)||(l=(r=this._currentTool).onMouseUp)==null||l.call(r,e))}_onMouseMove(e){var i,r,l;e.isTrusted&&((i=this.overlay)!=null&&i.onMouseMove(e)||this._ignoreOverlayEvent(e)||(l=(r=this._currentTool).onMouseMove)==null||l.call(r,e))}_onMouseEnter(e){var i,r;e.isTrusted&&(this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onMouseEnter)==null||r.call(i,e))}_onMouseLeave(e){var i,r;e.isTrusted&&(this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onMouseLeave)==null||r.call(i,e))}_onFocus(e){var i,r;e.isTrusted&&(this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onFocus)==null||r.call(i,e))}_onScroll(e){var i,r;e.isTrusted&&(this._lastHighlightedSelector=void 0,this._lastHighlightedAriaTemplateJSON="undefined",this.highlight.hideActionPoint(),(r=(i=this._currentTool).onScroll)==null||r.call(i,e))}_onInput(e){var i,r;this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onInput)==null||r.call(i,e)}_onKeyDown(e){var i,r;e.isTrusted&&(this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onKeyDown)==null||r.call(i,e))}_onKeyUp(e){var i,r;e.isTrusted&&(this._ignoreOverlayEvent(e)||(r=(i=this._currentTool).onKeyUp)==null||r.call(i,e))}updateHighlight(e,i){this._lastHighlightedSelector=void 0,this._lastHighlightedAriaTemplateJSON="undefined",this._updateHighlight(e,i)}_updateHighlight(e,i){var l,o;let r=e==null?void 0:e.tooltipText;r===void 0&&(e!=null&&e.selector)&&(r=this.injectedScript.utils.asLocator(this.state.language,e.selector)),e?this.highlight.updateHighlight(e.elements.map(u=>({element:u,color:e.color,tooltipText:r}))):this.highlight.clearHighlight(),i&&((o=(l=this._delegate).highlightUpdated)==null||o.call(l))}_ignoreOverlayEvent(e){return e.composedPath().some(i=>(i.nodeName||"").toLowerCase()==="x-pw-glass")}deepEventTarget(e){var i;for(const r of e.composedPath())if(!((i=this.overlay)!=null&&i.contains(r)))return r;return e.composedPath()[0]}setMode(e){var i,r;(r=(i=this._delegate).setMode)==null||r.call(i,e)}_captureAutoExpectSnapshot(){const e=this.injectedScript.document.documentElement;return e?this.injectedScript.utils.generateAriaTree(e,{mode:"autoexpect"}):void 0}async performAction(e){var r,l,o;const i=this._lastActionAutoexpectSnapshot;if(this._lastActionAutoexpectSnapshot=this._captureAutoExpectSnapshot(),!DA(e)&&this._lastActionAutoexpectSnapshot){const u=this.injectedScript.utils.findNewElement(i==null?void 0:i.root,(r=this._lastActionAutoexpectSnapshot)==null?void 0:r.root);e.preconditionSelector=u?this.injectedScript.generateSelector(u,{testIdAttributeName:this.state.testIdAttributeName}).selector:void 0,e.preconditionSelector===e.selector&&(e.preconditionSelector=void 0)}await((o=(l=this._delegate).performAction)==null?void 0:o.call(l,e).catch(()=>{}))}async recordAction(e){var i,r;this._lastActionAutoexpectSnapshot=this._captureAutoExpectSnapshot(),await((r=(i=this._delegate).recordAction)==null?void 0:r.call(i,e))}setOverlayState(e){var i,r;(r=(i=this._delegate).setOverlayState)==null||r.call(i,e)}elementPicked(e,i){var l,o;const r=this.injectedScript.ariaSnapshot(i.elements[0],{mode:"default"});(o=(l=this._delegate).elementPicked)==null||o.call(l,{selector:e,ariaSnapshot:r})}}let Gv=class{constructor(e){this._dialogElement=null,this._recorder=e}isShowing(){return!!this._dialogElement}show(e){const i=this._recorder.document.createElement("x-pw-tool-item");i.title="Accept",i.classList.add("accept"),i.appendChild(this._recorder.document.createElement("x-div")),i.addEventListener("click",()=>{var f;return(f=e.onCommit)==null?void 0:f.call(e)});const r=this._recorder.document.createElement("x-pw-tool-item");r.title="Close",r.classList.add("cancel"),r.appendChild(this._recorder.document.createElement("x-div")),r.addEventListener("click",()=>{var f;this.close(),(f=e.onCancel)==null||f.call(e)}),this._dialogElement=this._recorder.document.createElement("x-pw-dialog"),e.autosize&&this._dialogElement.classList.add("autosize"),this._keyboardListener=f=>{var d;if(f.key==="Escape"){this.close(),(d=e.onCancel)==null||d.call(e);return}if(e.onCommit&&f.key==="Enter"&&(f.ctrlKey||f.metaKey)){this._dialogElement&&e.onCommit();return}},this._onGlassPaneClickHandler=f=>{var d;this.close(),(d=e.onCancel)==null||d.call(e)},this._dialogElement.addEventListener("click",f=>f.stopPropagation());const l=this._recorder.document.createElement("x-pw-tools-list"),o=this._recorder.document.createElement("label");o.textContent=e.label,l.appendChild(o),l.appendChild(this._recorder.document.createElement("x-spacer")),e.onCommit&&l.appendChild(i),l.appendChild(r),this._dialogElement.appendChild(l);const u=this._recorder.document.createElement("x-pw-dialog-body");return u.appendChild(e.body),this._dialogElement.appendChild(u),this._recorder.highlight.appendChild(this._dialogElement),this._recorder.highlight.onGlassPaneClick(this._onGlassPaneClickHandler),this._recorder.document.addEventListener("keydown",this._keyboardListener,!0),this._dialogElement}moveTo(e,i){this._dialogElement&&(this._dialogElement.style.top=e+"px",this._dialogElement.style.left=i+"px")}close(){this._dialogElement&&(this._dialogElement.remove(),this._recorder.highlight.offGlassPaneClick(this._onGlassPaneClickHandler),this._recorder.document.removeEventListener("keydown",this._keyboardListener),this._dialogElement=null)}};function jA(n){let e=n.activeElement;for(;e&&e.shadowRoot&&e.shadowRoot.activeElement;)e=e.shadowRoot.activeElement;return e}function Er(n){return(n.altKey?1:0)|(n.ctrlKey?2:0)|(n.metaKey?4:0)|(n.shiftKey?8:0)}function Gh(n){switch(n.which){case 1:return"left";case 2:return"middle";case 3:return"right"}return"left"}function Wa(n){if(n.target.nodeName==="CANVAS")return{x:n.offsetX,y:n.offsetY}}function Ge(n){n.preventDefault(),n.stopPropagation(),n.stopImmediatePropagation()}function el(n){if(!n||n.nodeName!=="INPUT")return null;const e=n;return["checkbox","radio"].includes(e.type)?e:null}function tl(n){return!n||n.nodeName!=="INPUT"?!1:n.type.toLowerCase()==="range"}const LA=new Set(["color","date","datetime-local","file","month","range","time","week"]);function Kv(n){const e=n.nodeName;return!!(e==="SELECT"||e==="OPTION"||e==="INPUT"&&LA.has(n.type))}function Ie(n,e,i,r){return n.addEventListener(e,i,r),()=>{n.removeEventListener(e,i,r)}}function Xv(n){for(const e of n)e();n.splice(0,n.length)}function RA(n,e,i,r){try{const l=n.parseSelector(i),o=n.querySelectorAll(l,r),u=o.length>1?mn.multiple:mn.single,f=n.utils.asLocator(e,i);return o.map((d,g)=>{const m=o.length>1?` [${g+1} of ${o.length}]`:"";return{element:d,color:u,tooltipText:f+m}})}catch{return[]}}function Yv(n,{tagName:e,attrs:i,children:r}){const l=n.createElementNS("http://www.w3.org/2000/svg",e);if(i)for(const[o,u]of Object.entries(i))l.setAttribute(o,u);if(r)for(const o of r)l.appendChild(Yv(n,o));return l}function DA(n){return n.name.startsWith("assert")}const zA="data:text/html;base64,"+btoa("<body></body><style>body { color-scheme: light dark; background: light-dark(white, #333) }</style>");function UA(n,e){n=n.replace(/AriaRole\s*\.\s*([\w]+)/g,(o,u)=>u.toLowerCase()).replace(/(get_by_role|getByRole)\s*\(\s*(?:["'`])([^'"`]+)['"`]/g,(o,u,f)=>`${u}(${f.toLowerCase()}`);const i=[];let r="";for(let o=0;o<n.length;++o){const u=n[o];if(u!=='"'&&u!=="'"&&u!=="`"&&u!=="/"){r+=u;continue}const f=n[o-1]==="r"||n[o]==="/";++o;let d="";for(;o<n.length;){if(n[o]==="\\"){f?(n[o+1]!==u&&(d+=n[o]),++o,d+=n[o]):(++o,n[o]==="n"?d+=`
124
+ `:n[o]==="r"?d+="\r":n[o]==="t"?d+=" ":d+=n[o]),++o;continue}if(n[o]!==u){d+=n[o++];continue}break}i.push({quote:u,text:d}),r+=(u==="/"?"r":"")+"$"+i.length}r=r.toLowerCase().replace(/get_by_alt_text/g,"getbyalttext").replace(/get_by_test_id/g,"getbytestid").replace(/get_by_([\w]+)/g,"getby$1").replace(/has_not_text/g,"hasnottext").replace(/has_text/g,"hastext").replace(/has_not/g,"hasnot").replace(/frame_locator/g,"framelocator").replace(/content_frame/g,"contentframe").replace(/[{}\s]/g,"").replace(/new\(\)/g,"").replace(/new[\w]+\.[\w]+options\(\)/g,"").replace(/\.set/g,",set").replace(/\.or_\(/g,"or(").replace(/\.and_\(/g,"and(").replace(/:/g,"=").replace(/,re\.ignorecase/g,"i").replace(/,pattern.case_insensitive/g,"i").replace(/,regexoptions.ignorecase/g,"i").replace(/re.compile\(([^)]+)\)/g,"$1").replace(/pattern.compile\(([^)]+)\)/g,"r$1").replace(/newregex\(([^)]+)\)/g,"r$1").replace(/string=/g,"=").replace(/regex=/g,"=").replace(/,,/g,",").replace(/,\)/g,")");const l=i.map(o=>o.quote).filter(o=>"'\"`".includes(o))[0];return{selector:Fv(r,i,e),preferredQuote:l}}function V0(n){return[...n.matchAll(/\$\d+/g)].length}function G0(n,e){return n.replace(/\$(\d+)/g,(i,r)=>`$${r-e}`)}function Fv(n,e,i){for(;;){const l=n.match(/filter\(,?(has=|hasnot=|sethas\(|sethasnot\()/);if(!l)break;const o=l.index+l[0].length;let u=0,f=o;for(;f<n.length&&(n[f]==="("?u++:n[f]===")"&&u--,!(u<0));f++);let d=n.substring(0,o),g=0;["sethas(","sethasnot("].includes(l[1])&&(g=1,d=d.replace(/sethas\($/,"has=").replace(/sethasnot\($/,"hasnot="));const m=V0(n.substring(0,o)),y=G0(n.substring(o,f),m),S=V0(y),w=e.slice(m,m+S),E=JSON.stringify(Fv(y,w,i));n=d.replace(/=$/,"2=")+`$${m+1}`+G0(n.substring(f+g),S-1);const x=e.slice(0,m),_=e.slice(m+S);e=x.concat([{quote:'"',text:E}]).concat(_)}n=n.replace(/\,set([\w]+)\(([^)]+)\)/g,(l,o,u)=>","+o.toLowerCase()+"="+u.toLowerCase()).replace(/framelocator\(([^)]+)\)/g,"$1.internal:control=enter-frame").replace(/contentframe(\(\))?/g,"internal:control=enter-frame").replace(/locator\(([^)]+),hastext=([^),]+)\)/g,"locator($1).internal:has-text=$2").replace(/locator\(([^)]+),hasnottext=([^),]+)\)/g,"locator($1).internal:has-not-text=$2").replace(/locator\(([^)]+),hastext=([^),]+)\)/g,"locator($1).internal:has-text=$2").replace(/locator\(([^)]+)\)/g,"$1").replace(/getbyrole\(([^)]+)\)/g,"internal:role=$1").replace(/getbytext\(([^)]+)\)/g,"internal:text=$1").replace(/getbylabel\(([^)]+)\)/g,"internal:label=$1").replace(/getbytestid\(([^)]+)\)/g,`internal:testid=[${tv(i)}=$1]`).replace(/getby(placeholder|alt|title)(?:text)?\(([^)]+)\)/g,"internal:attr=[$1=$2]").replace(/first(\(\))?/g,"nth=0").replace(/last(\(\))?/g,"nth=-1").replace(/nth\(([^)]+)\)/g,"nth=$1").replace(/filter\(,?visible=true\)/g,"visible=true").replace(/filter\(,?visible=false\)/g,"visible=false").replace(/filter\(,?hastext=([^)]+)\)/g,"internal:has-text=$1").replace(/filter\(,?hasnottext=([^)]+)\)/g,"internal:has-not-text=$1").replace(/filter\(,?has2=([^)]+)\)/g,"internal:has=$1").replace(/filter\(,?hasnot2=([^)]+)\)/g,"internal:has-not=$1").replace(/,exact=false/g,"").replace(/(,name=\$\d+)(,description=\$\d+),exact=true/g,"$1s$2s").replace(/,exact=true/g,"s").replace(/,includehidden=/g,",include-hidden=").replace(/\,/g,"][");const r=n.split(".");for(let l=0;l<r.length-1;l++)if(r[l]==="internal:control=enter-frame"&&r[l+1].startsWith("nth=")){const[o]=r.splice(l,1);r.splice(l+1,0,o)}return r.map(l=>!l.startsWith("internal:")||l==="internal:control"?l.replace(/\$(\d+)/g,(o,u)=>e[+u-1].text):(l=l.includes("[")?l.replace(/\]/,"")+"]":l,l=l.replace(/(?:r)\$(\d+)(i)?/g,(o,u,f)=>{const d=e[+u-1];return l.startsWith("internal:attr")||l.startsWith("internal:testid")||l.startsWith("internal:role")?Ze(new RegExp(d.text),!1)+(f||""):It(new RegExp(d.text,f),!1)}).replace(/\$(\d+)(i|s)?/g,(o,u,f)=>{const d=e[+u-1];return l.startsWith("internal:has=")||l.startsWith("internal:has-not=")?d.text:l.startsWith("internal:testid")?Ze(d.text,!0):l.startsWith("internal:attr")||l.startsWith("internal:role")?Ze(d.text,f==="s"):It(d.text,f==="s")}),l)).join(" >> ")}function HA(n,e,i="data-testid"){try{return BA(n,e,i)}catch{return""}}function BA(n,e,i="data-testid"){try{return ul(e),e}catch{}const{selector:r,preferredQuote:l}=UA(e,i),o=Hb(n,r,void 0,void 0,l),u=K0(n,e);return o.some(f=>K0(n,f)===u)?r:""}function K0(n,e){return e=e.replace(/\s/g,""),n==="javascript"&&(e=e.replace(/\\?["`]/g,"'").replace(/,{}/g,"")),e}const qA=({url:n})=>v.jsxs("div",{className:"browser-frame-header",children:[v.jsxs("div",{className:"browser-traffic-lights",children:[v.jsx("span",{className:"browser-frame-dot",style:{backgroundColor:"rgb(242, 95, 88)"}}),v.jsx("span",{className:"browser-frame-dot",style:{backgroundColor:"rgb(251, 190, 60)"}}),v.jsx("span",{className:"browser-frame-dot",style:{backgroundColor:"rgb(88, 203, 66)"}})]}),v.jsxs("div",{className:"browser-frame-address-bar",title:n||"about:blank",children:[v.jsx("span",{className:"browser-frame-address",children:n||"about:blank"}),n&&v.jsx(od,{value:n})]}),v.jsx("div",{style:{marginLeft:"auto"},children:v.jsxs("div",{children:[v.jsx("span",{className:"browser-frame-menu-bar"}),v.jsx("span",{className:"browser-frame-menu-bar"}),v.jsx("span",{className:"browser-frame-menu-bar"})]})})]}),Ld=Symbol.for("yaml.alias"),Kh=Symbol.for("yaml.document"),Ri=Symbol.for("yaml.map"),Qv=Symbol.for("yaml.pair"),jn=Symbol.for("yaml.scalar"),Rr=Symbol.for("yaml.seq"),bn=Symbol.for("yaml.node.type"),Ui=n=>!!n&&typeof n=="object"&&n[bn]===Ld,gs=n=>!!n&&typeof n=="object"&&n[bn]===Kh,Dr=n=>!!n&&typeof n=="object"&&n[bn]===Ri,Ve=n=>!!n&&typeof n=="object"&&n[bn]===Qv,ze=n=>!!n&&typeof n=="object"&&n[bn]===jn,zr=n=>!!n&&typeof n=="object"&&n[bn]===Rr;function Ke(n){if(n&&typeof n=="object")switch(n[bn]){case Ri:case Rr:return!0}return!1}function Xe(n){if(n&&typeof n=="object")switch(n[bn]){case Ld:case Ri:case jn:case Rr:return!0}return!1}const Pv=n=>(ze(n)||Ke(n))&&!!n.anchor,Vt=Symbol("break visit"),Jv=Symbol("skip children"),On=Symbol("remove node");function ms(n,e){const i=Zv(e);gs(n)?vr(null,n.contents,i,Object.freeze([n]))===On&&(n.contents=null):vr(null,n,i,Object.freeze([]))}ms.BREAK=Vt;ms.SKIP=Jv;ms.REMOVE=On;function vr(n,e,i,r){const l=Wv(n,e,i,r);if(Xe(l)||Ve(l))return eS(n,r,l),vr(n,l,i,r);if(typeof l!="symbol"){if(Ke(e)){r=Object.freeze(r.concat(e));for(let o=0;o<e.items.length;++o){const u=vr(o,e.items[o],i,r);if(typeof u=="number")o=u-1;else{if(u===Vt)return Vt;u===On&&(e.items.splice(o,1),o-=1)}}}else if(Ve(e)){r=Object.freeze(r.concat(e));const o=vr("key",e.key,i,r);if(o===Vt)return Vt;o===On&&(e.key=null);const u=vr("value",e.value,i,r);if(u===Vt)return Vt;u===On&&(e.value=null)}}return l}async function _c(n,e){const i=Zv(e);gs(n)?await Sr(null,n.contents,i,Object.freeze([n]))===On&&(n.contents=null):await Sr(null,n,i,Object.freeze([]))}_c.BREAK=Vt;_c.SKIP=Jv;_c.REMOVE=On;async function Sr(n,e,i,r){const l=await Wv(n,e,i,r);if(Xe(l)||Ve(l))return eS(n,r,l),Sr(n,l,i,r);if(typeof l!="symbol"){if(Ke(e)){r=Object.freeze(r.concat(e));for(let o=0;o<e.items.length;++o){const u=await Sr(o,e.items[o],i,r);if(typeof u=="number")o=u-1;else{if(u===Vt)return Vt;u===On&&(e.items.splice(o,1),o-=1)}}}else if(Ve(e)){r=Object.freeze(r.concat(e));const o=await Sr("key",e.key,i,r);if(o===Vt)return Vt;o===On&&(e.key=null);const u=await Sr("value",e.value,i,r);if(u===Vt)return Vt;u===On&&(e.value=null)}}return l}function Zv(n){return typeof n=="object"&&(n.Collection||n.Node||n.Value)?Object.assign({Alias:n.Node,Map:n.Node,Scalar:n.Node,Seq:n.Node},n.Value&&{Map:n.Value,Scalar:n.Value,Seq:n.Value},n.Collection&&{Map:n.Collection,Seq:n.Collection},n):n}function Wv(n,e,i,r){var l,o,u,f,d;if(typeof i=="function")return i(n,e,r);if(Dr(e))return(l=i.Map)==null?void 0:l.call(i,n,e,r);if(zr(e))return(o=i.Seq)==null?void 0:o.call(i,n,e,r);if(Ve(e))return(u=i.Pair)==null?void 0:u.call(i,n,e,r);if(ze(e))return(f=i.Scalar)==null?void 0:f.call(i,n,e,r);if(Ui(e))return(d=i.Alias)==null?void 0:d.call(i,n,e,r)}function eS(n,e,i){const r=e[e.length-1];if(Ke(r))r.items[n]=i;else if(Ve(r))n==="key"?r.key=i:r.value=i;else if(gs(r))r.contents=i;else{const l=Ui(r)?"alias":"scalar";throw new Error(`Cannot replace node with ${l} parent`)}}const $A={"!":"%21",",":"%2C","[":"%5B","]":"%5D","{":"%7B","}":"%7D"},IA=n=>n.replace(/[!,[\]{}]/g,e=>$A[e]);class Ot{constructor(e,i){this.docStart=null,this.docEnd=!1,this.yaml=Object.assign({},Ot.defaultYaml,e),this.tags=Object.assign({},Ot.defaultTags,i)}clone(){const e=new Ot(this.yaml,this.tags);return e.docStart=this.docStart,e}atDocument(){const e=new Ot(this.yaml,this.tags);switch(this.yaml.version){case"1.1":this.atNextDocument=!0;break;case"1.2":this.atNextDocument=!1,this.yaml={explicit:Ot.defaultYaml.explicit,version:"1.2"},this.tags=Object.assign({},Ot.defaultTags);break}return e}add(e,i){this.atNextDocument&&(this.yaml={explicit:Ot.defaultYaml.explicit,version:"1.1"},this.tags=Object.assign({},Ot.defaultTags),this.atNextDocument=!1);const r=e.trim().split(/[ \t]+/),l=r.shift();switch(l){case"%TAG":{if(r.length!==2&&(i(0,"%TAG directive should contain exactly two parts"),r.length<2))return!1;const[o,u]=r;return this.tags[o]=u,!0}case"%YAML":{if(this.yaml.explicit=!0,r.length!==1)return i(0,"%YAML directive should contain exactly one part"),!1;const[o]=r;if(o==="1.1"||o==="1.2")return this.yaml.version=o,!0;{const u=/^\d+\.\d+$/.test(o);return i(6,`Unsupported YAML version ${o}`,u),!1}}default:return i(0,`Unknown directive ${l}`,!0),!1}}tagName(e,i){if(e==="!")return"!";if(e[0]!=="!")return i(`Not a valid tag: ${e}`),null;if(e[1]==="<"){const u=e.slice(2,-1);return u==="!"||u==="!!"?(i(`Verbatim tags aren't resolved, so ${e} is invalid.`),null):(e[e.length-1]!==">"&&i("Verbatim tags must end with a >"),u)}const[,r,l]=e.match(/^(.*!)([^!]*)$/s);l||i(`The ${e} tag has no suffix`);const o=this.tags[r];if(o)try{return o+decodeURIComponent(l)}catch(u){return i(String(u)),null}return r==="!"?e:(i(`Could not resolve tag: ${e}`),null)}tagString(e){for(const[i,r]of Object.entries(this.tags))if(e.startsWith(r))return i+IA(e.substring(r.length));return e[0]==="!"?e:`!<${e}>`}toString(e){const i=this.yaml.explicit?[`%YAML ${this.yaml.version||"1.2"}`]:[],r=Object.entries(this.tags);let l;if(e&&r.length>0&&Xe(e.contents)){const o={};ms(e.contents,(u,f)=>{Xe(f)&&f.tag&&(o[f.tag]=!0)}),l=Object.keys(o)}else l=[];for(const[o,u]of r)o==="!!"&&u==="tag:yaml.org,2002:"||(!e||l.some(f=>f.startsWith(u)))&&i.push(`%TAG ${o} ${u}`);return i.join(`
125
+ `)}}Ot.defaultYaml={explicit:!1,version:"1.2"};Ot.defaultTags={"!!":"tag:yaml.org,2002:"};function tS(n){if(/[\x00-\x19\s,[\]{}]/.test(n)){const i=`Anchor must not contain whitespace or control characters: ${JSON.stringify(n)}`;throw new Error(i)}return!0}function nS(n){const e=new Set;return ms(n,{Value(i,r){r.anchor&&e.add(r.anchor)}}),e}function iS(n,e){for(let i=1;;++i){const r=`${n}${i}`;if(!e.has(r))return r}}function VA(n,e){const i=[],r=new Map;let l=null;return{onAnchor:o=>{i.push(o),l??(l=nS(n));const u=iS(e,l);return l.add(u),u},setAnchors:()=>{for(const o of i){const u=r.get(o);if(typeof u=="object"&&u.anchor&&(ze(u.node)||Ke(u.node)))u.node.anchor=u.anchor;else{const f=new Error("Failed to resolve repeated object (this should not happen)");throw f.source=o,f}}},sourceObjects:r}}function wr(n,e,i,r){if(r&&typeof r=="object")if(Array.isArray(r))for(let l=0,o=r.length;l<o;++l){const u=r[l],f=wr(n,r,String(l),u);f===void 0?delete r[l]:f!==u&&(r[l]=f)}else if(r instanceof Map)for(const l of Array.from(r.keys())){const o=r.get(l),u=wr(n,r,l,o);u===void 0?r.delete(l):u!==o&&r.set(l,u)}else if(r instanceof Set)for(const l of Array.from(r)){const o=wr(n,r,l,l);o===void 0?r.delete(l):o!==l&&(r.delete(l),r.add(o))}else for(const[l,o]of Object.entries(r)){const u=wr(n,r,l,o);u===void 0?delete r[l]:u!==o&&(r[l]=u)}return n.call(e,i,r)}function yn(n,e,i){if(Array.isArray(n))return n.map((r,l)=>yn(r,String(l),i));if(n&&typeof n.toJSON=="function"){if(!i||!Pv(n))return n.toJSON(e,i);const r={aliasCount:0,count:1,res:void 0};i.anchors.set(n,r),i.onCreate=o=>{r.res=o,delete i.onCreate};const l=n.toJSON(e,i);return i.onCreate&&i.onCreate(l),l}return typeof n=="bigint"&&!(i!=null&&i.keep)?Number(n):n}class Rd{constructor(e){Object.defineProperty(this,bn,{value:e})}clone(){const e=Object.create(Object.getPrototypeOf(this),Object.getOwnPropertyDescriptors(this));return this.range&&(e.range=this.range.slice()),e}toJS(e,{mapAsMap:i,maxAliasCount:r,onAnchor:l,reviver:o}={}){if(!gs(e))throw new TypeError("A document argument is required");const u={anchors:new Map,doc:e,keep:!0,mapAsMap:i===!0,mapKeyWarned:!1,maxAliasCount:typeof r=="number"?r:100},f=yn(this,"",u);if(typeof l=="function")for(const{count:d,res:g}of u.anchors.values())l(g,d);return typeof o=="function"?wr(o,{"":f},"",f):f}}class Ec extends Rd{constructor(e){super(Ld),this.source=e,Object.defineProperty(this,"tag",{set(){throw new Error("Alias nodes cannot have tags")}})}resolve(e,i){let r;i!=null&&i.aliasResolveCache?r=i.aliasResolveCache:(r=[],ms(e,{Node:(o,u)=>{(Ui(u)||Pv(u))&&r.push(u)}}),i&&(i.aliasResolveCache=r));let l;for(const o of r){if(o===this)break;o.anchor===this.source&&(l=o)}return l}toJSON(e,i){if(!i)return{source:this.source};const{anchors:r,doc:l,maxAliasCount:o}=i,u=this.resolve(l,i);if(!u){const d=`Unresolved alias (the anchor must be set before the alias): ${this.source}`;throw new ReferenceError(d)}let f=r.get(u);if(f||(yn(u,null,i),f=r.get(u)),(f==null?void 0:f.res)===void 0){const d="This should not happen: Alias anchor was not resolved?";throw new ReferenceError(d)}if(o>=0&&(f.count+=1,f.aliasCount===0&&(f.aliasCount=Jo(l,u,r)),f.count*f.aliasCount>o)){const d="Excessive alias count indicates a resource exhaustion attack";throw new ReferenceError(d)}return f.res}toString(e,i,r){const l=`*${this.source}`;if(e){if(tS(this.source),e.options.verifyAliasOrder&&!e.anchors.has(this.source)){const o=`Unresolved alias (the anchor must be set before the alias): ${this.source}`;throw new Error(o)}if(e.implicitKey)return`${l} `}return l}}function Jo(n,e,i){if(Ui(e)){const r=e.resolve(n),l=i&&r&&i.get(r);return l?l.count*l.aliasCount:0}else if(Ke(e)){let r=0;for(const l of e.items){const o=Jo(n,l,i);o>r&&(r=o)}return r}else if(Ve(e)){const r=Jo(n,e.key,i),l=Jo(n,e.value,i);return Math.max(r,l)}return 1}const sS=n=>!n||typeof n!="function"&&typeof n!="object";class de extends Rd{constructor(e){super(jn),this.value=e}toJSON(e,i){return i!=null&&i.keep?this.value:yn(this.value,e,i)}toString(){return String(this.value)}}de.BLOCK_FOLDED="BLOCK_FOLDED";de.BLOCK_LITERAL="BLOCK_LITERAL";de.PLAIN="PLAIN";de.QUOTE_DOUBLE="QUOTE_DOUBLE";de.QUOTE_SINGLE="QUOTE_SINGLE";const GA="tag:yaml.org,2002:";function KA(n,e,i){if(e){const r=i.filter(o=>o.tag===e),l=r.find(o=>!o.format)??r[0];if(!l)throw new Error(`Tag ${e} not found`);return l}return i.find(r=>{var l;return((l=r.identify)==null?void 0:l.call(r,n))&&!r.format})}function al(n,e,i){var y,S,w;if(gs(n)&&(n=n.contents),Xe(n))return n;if(Ve(n)){const E=(S=(y=i.schema[Ri]).createNode)==null?void 0:S.call(y,i.schema,null,i);return E.items.push(n),E}(n instanceof String||n instanceof Number||n instanceof Boolean||typeof BigInt<"u"&&n instanceof BigInt)&&(n=n.valueOf());const{aliasDuplicateObjects:r,onAnchor:l,onTagObj:o,schema:u,sourceObjects:f}=i;let d;if(r&&n&&typeof n=="object"){if(d=f.get(n),d)return d.anchor??(d.anchor=l(n)),new Ec(d.anchor);d={anchor:null,node:null},f.set(n,d)}e!=null&&e.startsWith("!!")&&(e=GA+e.slice(2));let g=KA(n,e,u.tags);if(!g){if(n&&typeof n.toJSON=="function"&&(n=n.toJSON()),!n||typeof n!="object"){const E=new de(n);return d&&(d.node=E),E}g=n instanceof Map?u[Ri]:Symbol.iterator in Object(n)?u[Rr]:u[Ri]}o&&(o(g),delete i.onTagObj);const m=g!=null&&g.createNode?g.createNode(i.schema,n,i):typeof((w=g==null?void 0:g.nodeClass)==null?void 0:w.from)=="function"?g.nodeClass.from(i.schema,n,i):new de(n);return e?m.tag=e:g.default||(m.tag=g.tag),d&&(d.node=m),m}function uc(n,e,i){let r=i;for(let l=e.length-1;l>=0;--l){const o=e[l];if(typeof o=="number"&&Number.isInteger(o)&&o>=0){const u=[];u[o]=r,r=u}else r=new Map([[o,r]])}return al(r,void 0,{aliasDuplicateObjects:!1,keepUndefined:!1,onAnchor:()=>{throw new Error("This should not happen, please report a bug.")},schema:n,sourceObjects:new Map})}const Ya=n=>n==null||typeof n=="object"&&!!n[Symbol.iterator]().next().done;class rS extends Rd{constructor(e,i){super(e),Object.defineProperty(this,"schema",{value:i,configurable:!0,enumerable:!1,writable:!0})}clone(e){const i=Object.create(Object.getPrototypeOf(this),Object.getOwnPropertyDescriptors(this));return e&&(i.schema=e),i.items=i.items.map(r=>Xe(r)||Ve(r)?r.clone(e):r),this.range&&(i.range=this.range.slice()),i}addIn(e,i){if(Ya(e))this.add(i);else{const[r,...l]=e,o=this.get(r,!0);if(Ke(o))o.addIn(l,i);else if(o===void 0&&this.schema)this.set(r,uc(this.schema,l,i));else throw new Error(`Expected YAML collection at ${r}. Remaining path: ${l}`)}}deleteIn(e){const[i,...r]=e;if(r.length===0)return this.delete(i);const l=this.get(i,!0);if(Ke(l))return l.deleteIn(r);throw new Error(`Expected YAML collection at ${i}. Remaining path: ${r}`)}getIn(e,i){const[r,...l]=e,o=this.get(r,!0);return l.length===0?!i&&ze(o)?o.value:o:Ke(o)?o.getIn(l,i):void 0}hasAllNullValues(e){return this.items.every(i=>{if(!Ve(i))return!1;const r=i.value;return r==null||e&&ze(r)&&r.value==null&&!r.commentBefore&&!r.comment&&!r.tag})}hasIn(e){const[i,...r]=e;if(r.length===0)return this.has(i);const l=this.get(i,!0);return Ke(l)?l.hasIn(r):!1}setIn(e,i){const[r,...l]=e;if(l.length===0)this.set(r,i);else{const o=this.get(r,!0);if(Ke(o))o.setIn(l,i);else if(o===void 0&&this.schema)this.set(r,uc(this.schema,l,i));else throw new Error(`Expected YAML collection at ${r}. Remaining path: ${l}`)}}}const XA=n=>n.replace(/^(?!$)(?: $)?/gm,"#");function ii(n,e){return/^\n+$/.test(n)?n.substring(1):e?n.replace(/^(?! *$)/gm,e):n}const cs=(n,e,i)=>n.endsWith(`
126
+ `)?ii(i,e):i.includes(`
127
+ `)?`
128
+ `+ii(i,e):(n.endsWith(" ")?"":" ")+i,aS="flow",Xh="block",Zo="quoted";function Tc(n,e,i="flow",{indentAtStart:r,lineWidth:l=80,minContentWidth:o=20,onFold:u,onOverflow:f}={}){if(!l||l<0)return n;l<o&&(o=0);const d=Math.max(1+o,1+l-e.length);if(n.length<=d)return n;const g=[],m={};let y=l-e.length;typeof r=="number"&&(r>l-Math.max(2,o)?g.push(0):y=l-r);let S,w,E=!1,x=-1,_=-1,A=-1;i===Xh&&(x=X0(n,x,e.length),x!==-1&&(y=x+d));for(let H;H=n[x+=1];){if(i===Zo&&H==="\\"){switch(_=x,n[x+1]){case"x":x+=3;break;case"u":x+=5;break;case"U":x+=9;break;default:x+=1}A=x}if(H===`
129
+ `)i===Xh&&(x=X0(n,x,e.length)),y=x+e.length+d,S=void 0;else{if(H===" "&&w&&w!==" "&&w!==`
130
+ `&&w!==" "){const V=n[x+1];V&&V!==" "&&V!==`
131
+ `&&V!==" "&&(S=x)}if(x>=y)if(S)g.push(S),y=S+d,S=void 0;else if(i===Zo){for(;w===" "||w===" ";)w=H,H=n[x+=1],E=!0;const V=x>A+1?x-2:_-1;if(m[V])return n;g.push(V),m[V]=!0,y=V+d,S=void 0}else E=!0}w=H}if(E&&f&&f(),g.length===0)return n;u&&u();let C=n.slice(0,g[0]);for(let H=0;H<g.length;++H){const V=g[H],K=g[H+1]||n.length;V===0?C=`
132
+ ${e}${n.slice(0,K)}`:(i===Zo&&m[V]&&(C+=`${n[V]}\\`),C+=`
133
+ ${e}${n.slice(V+1,K)}`)}return C}function X0(n,e,i){let r=e,l=e+1,o=n[l];for(;o===" "||o===" ";)if(e<l+i)o=n[++e];else{do o=n[++e];while(o&&o!==`
134
+ `);r=e,l=e+1,o=n[l]}return r}const Ac=(n,e)=>({indentAtStart:e?n.indent.length:n.indentAtStart,lineWidth:n.options.lineWidth,minContentWidth:n.options.minContentWidth}),Cc=n=>/^(%|---|\.\.\.)/m.test(n);function YA(n,e,i){if(!e||e<0)return!1;const r=e-i,l=n.length;if(l<=r)return!1;for(let o=0,u=0;o<l;++o)if(n[o]===`
135
+ `){if(o-u>r)return!0;if(u=o+1,l-u<=r)return!1}return!0}function nl(n,e){const i=JSON.stringify(n);if(e.options.doubleQuotedAsJSON)return i;const{implicitKey:r}=e,l=e.options.doubleQuotedMinMultiLineLength,o=e.indent||(Cc(n)?" ":"");let u="",f=0;for(let d=0,g=i[d];g;g=i[++d])if(g===" "&&i[d+1]==="\\"&&i[d+2]==="n"&&(u+=i.slice(f,d)+"\\ ",d+=1,f=d,g="\\"),g==="\\")switch(i[d+1]){case"u":{u+=i.slice(f,d);const m=i.substr(d+2,4);switch(m){case"0000":u+="\\0";break;case"0007":u+="\\a";break;case"000b":u+="\\v";break;case"001b":u+="\\e";break;case"0085":u+="\\N";break;case"00a0":u+="\\_";break;case"2028":u+="\\L";break;case"2029":u+="\\P";break;default:m.substr(0,2)==="00"?u+="\\x"+m.substr(2):u+=i.substr(d,6)}d+=5,f=d+1}break;case"n":if(r||i[d+2]==='"'||i.length<l)d+=1;else{for(u+=i.slice(f,d)+`
136
+
137
+ `;i[d+2]==="\\"&&i[d+3]==="n"&&i[d+4]!=='"';)u+=`
138
+ `,d+=2;u+=o,i[d+2]===" "&&(u+="\\"),d+=1,f=d+1}break;default:d+=1}return u=f?u+i.slice(f):i,r?u:Tc(u,o,Zo,Ac(e,!1))}function Yh(n,e){if(e.options.singleQuote===!1||e.implicitKey&&n.includes(`
139
+ `)||/[ \t]\n|\n[ \t]/.test(n))return nl(n,e);const i=e.indent||(Cc(n)?" ":""),r="'"+n.replace(/'/g,"''").replace(/\n+/g,`$&
140
+ ${i}`)+"'";return e.implicitKey?r:Tc(r,i,aS,Ac(e,!1))}function xr(n,e){const{singleQuote:i}=e.options;let r;if(i===!1)r=nl;else{const l=n.includes('"'),o=n.includes("'");l&&!o?r=Yh:o&&!l?r=nl:r=i?Yh:nl}return r(n,e)}let Fh;try{Fh=new RegExp(`(^|(?<!
141
+ ))
142
+ +(?!
143
+ |$)`,"g")}catch{Fh=/\n+(?!\n|$)/g}function Wo({comment:n,type:e,value:i},r,l,o){const{blockQuote:u,commentString:f,lineWidth:d}=r.options;if(!u||/\n[\t ]+$/.test(i))return xr(i,r);const g=r.indent||(r.forceBlockIndent||Cc(i)?" ":""),m=u==="literal"?!0:u==="folded"||e===de.BLOCK_FOLDED?!1:e===de.BLOCK_LITERAL?!0:!YA(i,d,g.length);if(!i)return m?`|
144
+ `:`>
145
+ `;let y,S;for(S=i.length;S>0;--S){const K=i[S-1];if(K!==`
146
+ `&&K!==" "&&K!==" ")break}let w=i.substring(S);const E=w.indexOf(`
147
+ `);E===-1?y="-":i===w||E!==w.length-1?(y="+",o&&o()):y="",w&&(i=i.slice(0,-w.length),w[w.length-1]===`
148
+ `&&(w=w.slice(0,-1)),w=w.replace(Fh,`$&${g}`));let x=!1,_,A=-1;for(_=0;_<i.length;++_){const K=i[_];if(K===" ")x=!0;else if(K===`
149
+ `)A=_;else break}let C=i.substring(0,A<_?A+1:_);C&&(i=i.substring(C.length),C=C.replace(/\n+/g,`$&${g}`));let V=(x?g?"2":"1":"")+y;if(n&&(V+=" "+f(n.replace(/ ?[\r\n]+/g," ")),l&&l()),!m){const K=i.replace(/\n+/g,`
150
+ $&`).replace(/(?:^|\n)([\t ].*)(?:([\n\t ]*)\n(?![\n\t ]))?/g,"$1$2").replace(/\n+/g,`$&${g}`);let Q=!1;const j=Ac(r,!0);u!=="folded"&&e!==de.BLOCK_FOLDED&&(j.onOverflow=()=>{Q=!0});const I=Tc(`${C}${K}${w}`,g,Xh,j);if(!Q)return`>${V}
151
+ ${g}${I}`}return i=i.replace(/\n+/g,`$&${g}`),`|${V}
152
+ ${g}${C}${i}${w}`}function FA(n,e,i,r){const{type:l,value:o}=n,{actualString:u,implicitKey:f,indent:d,indentStep:g,inFlow:m}=e;if(f&&o.includes(`
153
+ `)||m&&/[[\]{},]/.test(o))return xr(o,e);if(/^[\n\t ,[\]{}#&*!|>'"%@`]|^[?-]$|^[?-][ \t]|[\n:][ \t]|[ \t]\n|[\n\t ]#|[\n\t :]$/.test(o))return f||m||!o.includes(`
154
+ `)?xr(o,e):Wo(n,e,i,r);if(!f&&!m&&l!==de.PLAIN&&o.includes(`
155
+ `))return Wo(n,e,i,r);if(Cc(o)){if(d==="")return e.forceBlockIndent=!0,Wo(n,e,i,r);if(f&&d===g)return xr(o,e)}const y=o.replace(/\n+/g,`$&
156
+ ${d}`);if(u){const S=x=>{var _;return x.default&&x.tag!=="tag:yaml.org,2002:str"&&((_=x.test)==null?void 0:_.test(y))},{compat:w,tags:E}=e.doc.schema;if(E.some(S)||w!=null&&w.some(S))return xr(o,e)}return f?y:Tc(y,d,aS,Ac(e,!1))}function fl(n,e,i,r){const{implicitKey:l,inFlow:o}=e,u=typeof n.value=="string"?n:Object.assign({},n,{value:String(n.value)});let{type:f}=n;f!==de.QUOTE_DOUBLE&&/[\x00-\x08\x0b-\x1f\x7f-\x9f\u{D800}-\u{DFFF}]/u.test(u.value)&&(f=de.QUOTE_DOUBLE);const d=m=>{switch(m){case de.BLOCK_FOLDED:case de.BLOCK_LITERAL:return l||o?xr(u.value,e):Wo(u,e,i,r);case de.QUOTE_DOUBLE:return nl(u.value,e);case de.QUOTE_SINGLE:return Yh(u.value,e);case de.PLAIN:return FA(u,e,i,r);default:return null}};let g=d(f);if(g===null){const{defaultKeyType:m,defaultStringType:y}=e.options,S=l&&m||y;if(g=d(S),g===null)throw new Error(`Unsupported default string type ${S}`)}return g}function lS(n,e){const i=Object.assign({blockQuote:!0,commentString:XA,defaultKeyType:null,defaultStringType:"PLAIN",directives:null,doubleQuotedAsJSON:!1,doubleQuotedMinMultiLineLength:40,falseStr:"false",flowCollectionPadding:!0,indentSeq:!0,lineWidth:80,minContentWidth:20,nullStr:"null",simpleKeys:!1,singleQuote:null,trailingComma:!1,trueStr:"true",verifyAliasOrder:!0},n.schema.toStringOptions,e);let r;switch(i.collectionStyle){case"block":r=!1;break;case"flow":r=!0;break;default:r=null}return{anchors:new Set,doc:n,flowCollectionPadding:i.flowCollectionPadding?" ":"",indent:"",indentStep:typeof i.indent=="number"?" ".repeat(i.indent):" ",inFlow:r,options:i}}function QA(n,e){var l;if(e.tag){const o=n.filter(u=>u.tag===e.tag);if(o.length>0)return o.find(u=>u.format===e.format)??o[0]}let i,r;if(ze(e)){r=e.value;let o=n.filter(u=>{var f;return(f=u.identify)==null?void 0:f.call(u,r)});if(o.length>1){const u=o.filter(f=>f.test);u.length>0&&(o=u)}i=o.find(u=>u.format===e.format)??o.find(u=>!u.format)}else r=e,i=n.find(o=>o.nodeClass&&r instanceof o.nodeClass);if(!i){const o=((l=r==null?void 0:r.constructor)==null?void 0:l.name)??(r===null?"null":typeof r);throw new Error(`Tag not resolved for ${o} value`)}return i}function PA(n,e,{anchors:i,doc:r}){if(!r.directives)return"";const l=[],o=(ze(n)||Ke(n))&&n.anchor;o&&tS(o)&&(i.add(o),l.push(`&${o}`));const u=n.tag??(e.default?null:e.tag);return u&&l.push(r.directives.tagString(u)),l.join(" ")}function Nr(n,e,i,r){var d;if(Ve(n))return n.toString(e,i,r);if(Ui(n)){if(e.doc.directives)return n.toString(e);if((d=e.resolvedAliases)!=null&&d.has(n))throw new TypeError("Cannot stringify circular structure without alias nodes");e.resolvedAliases?e.resolvedAliases.add(n):e.resolvedAliases=new Set([n]),n=n.resolve(e.doc)}let l;const o=Xe(n)?n:e.doc.createNode(n,{onTagObj:g=>l=g});l??(l=QA(e.doc.schema.tags,o));const u=PA(o,l,e);u.length>0&&(e.indentAtStart=(e.indentAtStart??0)+u.length+1);const f=typeof l.stringify=="function"?l.stringify(o,e,i,r):ze(o)?fl(o,e,i,r):o.toString(e,i,r);return u?ze(o)||f[0]==="{"||f[0]==="["?`${u} ${f}`:`${u}
157
+ ${e.indent}${f}`:f}function JA({key:n,value:e},i,r,l){const{allNullValues:o,doc:u,indent:f,indentStep:d,options:{commentString:g,indentSeq:m,simpleKeys:y}}=i;let S=Xe(n)&&n.comment||null;if(y){if(S)throw new Error("With simple keys, key nodes cannot have comments");if(Ke(n)||!Xe(n)&&typeof n=="object"){const j="With simple keys, collection cannot be used as a key value";throw new Error(j)}}let w=!y&&(!n||S&&e==null&&!i.inFlow||Ke(n)||(ze(n)?n.type===de.BLOCK_FOLDED||n.type===de.BLOCK_LITERAL:typeof n=="object"));i=Object.assign({},i,{allNullValues:!1,implicitKey:!w&&(y||!o),indent:f+d});let E=!1,x=!1,_=Nr(n,i,()=>E=!0,()=>x=!0);if(!w&&!i.inFlow&&_.length>1024){if(y)throw new Error("With simple keys, single line scalar must not span more than 1024 characters");w=!0}if(i.inFlow){if(o||e==null)return E&&r&&r(),_===""?"?":w?`? ${_}`:_}else if(o&&!y||e==null&&w)return _=`? ${_}`,S&&!E?_+=cs(_,i.indent,g(S)):x&&l&&l(),_;E&&(S=null),w?(S&&(_+=cs(_,i.indent,g(S))),_=`? ${_}
158
+ ${f}:`):(_=`${_}:`,S&&(_+=cs(_,i.indent,g(S))));let A,C,H;Xe(e)?(A=!!e.spaceBefore,C=e.commentBefore,H=e.comment):(A=!1,C=null,H=null,e&&typeof e=="object"&&(e=u.createNode(e))),i.implicitKey=!1,!w&&!S&&ze(e)&&(i.indentAtStart=_.length+1),x=!1,!m&&d.length>=2&&!i.inFlow&&!w&&zr(e)&&!e.flow&&!e.tag&&!e.anchor&&(i.indent=i.indent.substring(2));let V=!1;const K=Nr(e,i,()=>V=!0,()=>x=!0);let Q=" ";if(S||A||C){if(Q=A?`
159
+ `:"",C){const j=g(C);Q+=`
160
+ ${ii(j,i.indent)}`}K===""&&!i.inFlow?Q===`
161
+ `&&H&&(Q=`
162
+
163
+ `):Q+=`
164
+ ${i.indent}`}else if(!w&&Ke(e)){const j=K[0],I=K.indexOf(`
165
+ `),O=I!==-1,P=i.inFlow??e.flow??e.items.length===0;if(O||!P){let J=!1;if(O&&(j==="&"||j==="!")){let $=K.indexOf(" ");j==="&"&&$!==-1&&$<I&&K[$+1]==="!"&&($=K.indexOf(" ",$+1)),($===-1||I<$)&&(J=!0)}J||(Q=`
166
+ ${i.indent}`)}}else(K===""||K[0]===`
167
+ `)&&(Q="");return _+=Q+K,i.inFlow?V&&r&&r():H&&!V?_+=cs(_,i.indent,g(H)):x&&l&&l(),_}function oS(n,e){(n==="debug"||n==="warn")&&console.warn(e)}const Ho="<<",si={identify:n=>n===Ho||typeof n=="symbol"&&n.description===Ho,default:"key",tag:"tag:yaml.org,2002:merge",test:/^<<$/,resolve:()=>Object.assign(new de(Symbol(Ho)),{addToJSMap:cS}),stringify:()=>Ho},ZA=(n,e)=>(si.identify(e)||ze(e)&&(!e.type||e.type===de.PLAIN)&&si.identify(e.value))&&(n==null?void 0:n.doc.schema.tags.some(i=>i.tag===si.tag&&i.default));function cS(n,e,i){if(i=n&&Ui(i)?i.resolve(n.doc):i,zr(i))for(const r of i.items)vh(n,e,r);else if(Array.isArray(i))for(const r of i)vh(n,e,r);else vh(n,e,i)}function vh(n,e,i){const r=n&&Ui(i)?i.resolve(n.doc):i;if(!Dr(r))throw new Error("Merge sources must be maps or map aliases");const l=r.toJSON(null,n,Map);for(const[o,u]of l)e instanceof Map?e.has(o)||e.set(o,u):e instanceof Set?e.add(o):Object.prototype.hasOwnProperty.call(e,o)||Object.defineProperty(e,o,{value:u,writable:!0,enumerable:!0,configurable:!0});return e}function uS(n,e,{key:i,value:r}){if(Xe(i)&&i.addToJSMap)i.addToJSMap(n,e,r);else if(ZA(n,i))cS(n,e,r);else{const l=yn(i,"",n);if(e instanceof Map)e.set(l,yn(r,l,n));else if(e instanceof Set)e.add(l);else{const o=WA(i,l,n),u=yn(r,o,n);o in e?Object.defineProperty(e,o,{value:u,writable:!0,enumerable:!0,configurable:!0}):e[o]=u}}return e}function WA(n,e,i){if(e===null)return"";if(typeof e!="object")return String(e);if(Xe(n)&&(i!=null&&i.doc)){const r=lS(i.doc,{});r.anchors=new Set;for(const o of i.anchors.keys())r.anchors.add(o.anchor);r.inFlow=!0,r.inStringifyKey=!0;const l=n.toString(r);if(!i.mapKeyWarned){let o=JSON.stringify(l);o.length>40&&(o=o.substring(0,36)+'..."'),oS(i.doc.options.logLevel,`Keys with collection values will be stringified due to JS Object restrictions: ${o}. Set mapAsMap: true to use object keys.`),i.mapKeyWarned=!0}return l}return JSON.stringify(e)}function Dd(n,e,i){const r=al(n,void 0,i),l=al(e,void 0,i);return new Nt(r,l)}class Nt{constructor(e,i=null){Object.defineProperty(this,bn,{value:Qv}),this.key=e,this.value=i}clone(e){let{key:i,value:r}=this;return Xe(i)&&(i=i.clone(e)),Xe(r)&&(r=r.clone(e)),new Nt(i,r)}toJSON(e,i){const r=i!=null&&i.mapAsMap?new Map:{};return uS(i,r,this)}toString(e,i,r){return e!=null&&e.doc?JA(this,e,i,r):JSON.stringify(this)}}function fS(n,e,i){return(e.inFlow??n.flow?tC:eC)(n,e,i)}function eC({comment:n,items:e},i,{blockItemPrefix:r,flowChars:l,itemIndent:o,onChompKeep:u,onComment:f}){const{indent:d,options:{commentString:g}}=i,m=Object.assign({},i,{indent:o,type:null});let y=!1;const S=[];for(let E=0;E<e.length;++E){const x=e[E];let _=null;if(Xe(x))!y&&x.spaceBefore&&S.push(""),fc(i,S,x.commentBefore,y),x.comment&&(_=x.comment);else if(Ve(x)){const C=Xe(x.key)?x.key:null;C&&(!y&&C.spaceBefore&&S.push(""),fc(i,S,C.commentBefore,y))}y=!1;let A=Nr(x,m,()=>_=null,()=>y=!0);_&&(A+=cs(A,o,g(_))),y&&_&&(y=!1),S.push(r+A)}let w;if(S.length===0)w=l.start+l.end;else{w=S[0];for(let E=1;E<S.length;++E){const x=S[E];w+=x?`
168
+ ${d}${x}`:`
169
+ `}}return n?(w+=`
170
+ `+ii(g(n),d),f&&f()):y&&u&&u(),w}function tC({items:n},e,{flowChars:i,itemIndent:r}){const{indent:l,indentStep:o,flowCollectionPadding:u,options:{commentString:f}}=e;r+=o;const d=Object.assign({},e,{indent:r,inFlow:!0,type:null});let g=!1,m=0;const y=[];for(let E=0;E<n.length;++E){const x=n[E];let _=null;if(Xe(x))x.spaceBefore&&y.push(""),fc(e,y,x.commentBefore,!1),x.comment&&(_=x.comment);else if(Ve(x)){const C=Xe(x.key)?x.key:null;C&&(C.spaceBefore&&y.push(""),fc(e,y,C.commentBefore,!1),C.comment&&(g=!0));const H=Xe(x.value)?x.value:null;H?(H.comment&&(_=H.comment),H.commentBefore&&(g=!0)):x.value==null&&(C!=null&&C.comment)&&(_=C.comment)}_&&(g=!0);let A=Nr(x,d,()=>_=null);g||(g=y.length>m||A.includes(`
171
+ `)),E<n.length-1?A+=",":e.options.trailingComma&&(e.options.lineWidth>0&&(g||(g=y.reduce((C,H)=>C+H.length+2,2)+(A.length+2)>e.options.lineWidth)),g&&(A+=",")),_&&(A+=cs(A,r,f(_))),y.push(A),m=y.length}const{start:S,end:w}=i;if(y.length===0)return S+w;if(!g){const E=y.reduce((x,_)=>x+_.length+2,2);g=e.options.lineWidth>0&&E>e.options.lineWidth}if(g){let E=S;for(const x of y)E+=x?`
172
+ ${o}${l}${x}`:`
173
+ `;return`${E}
174
+ ${l}${w}`}else return`${S}${u}${y.join(" ")}${u}${w}`}function fc({indent:n,options:{commentString:e}},i,r,l){if(r&&l&&(r=r.replace(/^\n+/,"")),r){const o=ii(e(r),n);i.push(o.trimStart())}}function us(n,e){const i=ze(e)?e.value:e;for(const r of n)if(Ve(r)&&(r.key===e||r.key===i||ze(r.key)&&r.key.value===i))return r}class nn extends rS{static get tagName(){return"tag:yaml.org,2002:map"}constructor(e){super(Ri,e),this.items=[]}static from(e,i,r){const{keepUndefined:l,replacer:o}=r,u=new this(e),f=(d,g)=>{if(typeof o=="function")g=o.call(i,d,g);else if(Array.isArray(o)&&!o.includes(d))return;(g!==void 0||l)&&u.items.push(Dd(d,g,r))};if(i instanceof Map)for(const[d,g]of i)f(d,g);else if(i&&typeof i=="object")for(const d of Object.keys(i))f(d,i[d]);return typeof e.sortMapEntries=="function"&&u.items.sort(e.sortMapEntries),u}add(e,i){var u;let r;Ve(e)?r=e:!e||typeof e!="object"||!("key"in e)?r=new Nt(e,e==null?void 0:e.value):r=new Nt(e.key,e.value);const l=us(this.items,r.key),o=(u=this.schema)==null?void 0:u.sortMapEntries;if(l){if(!i)throw new Error(`Key ${r.key} already set`);ze(l.value)&&sS(r.value)?l.value.value=r.value:l.value=r.value}else if(o){const f=this.items.findIndex(d=>o(r,d)<0);f===-1?this.items.push(r):this.items.splice(f,0,r)}else this.items.push(r)}delete(e){const i=us(this.items,e);return i?this.items.splice(this.items.indexOf(i),1).length>0:!1}get(e,i){const r=us(this.items,e),l=r==null?void 0:r.value;return(!i&&ze(l)?l.value:l)??void 0}has(e){return!!us(this.items,e)}set(e,i){this.add(new Nt(e,i),!0)}toJSON(e,i,r){const l=r?new r:i!=null&&i.mapAsMap?new Map:{};i!=null&&i.onCreate&&i.onCreate(l);for(const o of this.items)uS(i,l,o);return l}toString(e,i,r){if(!e)return JSON.stringify(this);for(const l of this.items)if(!Ve(l))throw new Error(`Map items must all be pairs; found ${JSON.stringify(l)} instead`);return!e.allNullValues&&this.hasAllNullValues(!1)&&(e=Object.assign({},e,{allNullValues:!0})),fS(this,e,{blockItemPrefix:"",flowChars:{start:"{",end:"}"},itemIndent:e.indent||"",onChompKeep:r,onComment:i})}}const Ur={collection:"map",default:!0,nodeClass:nn,tag:"tag:yaml.org,2002:map",resolve(n,e){return Dr(n)||e("Expected a mapping for this tag"),n},createNode:(n,e,i)=>nn.from(n,e,i)};class Di extends rS{static get tagName(){return"tag:yaml.org,2002:seq"}constructor(e){super(Rr,e),this.items=[]}add(e){this.items.push(e)}delete(e){const i=Bo(e);return typeof i!="number"?!1:this.items.splice(i,1).length>0}get(e,i){const r=Bo(e);if(typeof r!="number")return;const l=this.items[r];return!i&&ze(l)?l.value:l}has(e){const i=Bo(e);return typeof i=="number"&&i<this.items.length}set(e,i){const r=Bo(e);if(typeof r!="number")throw new Error(`Expected a valid index, not ${e}.`);const l=this.items[r];ze(l)&&sS(i)?l.value=i:this.items[r]=i}toJSON(e,i){const r=[];i!=null&&i.onCreate&&i.onCreate(r);let l=0;for(const o of this.items)r.push(yn(o,String(l++),i));return r}toString(e,i,r){return e?fS(this,e,{blockItemPrefix:"- ",flowChars:{start:"[",end:"]"},itemIndent:(e.indent||"")+" ",onChompKeep:r,onComment:i}):JSON.stringify(this)}static from(e,i,r){const{replacer:l}=r,o=new this(e);if(i&&Symbol.iterator in Object(i)){let u=0;for(let f of i){if(typeof l=="function"){const d=i instanceof Set?f:String(u++);f=l.call(i,d,f)}o.items.push(al(f,void 0,r))}}return o}}function Bo(n){let e=ze(n)?n.value:n;return e&&typeof e=="string"&&(e=Number(e)),typeof e=="number"&&Number.isInteger(e)&&e>=0?e:null}const Hr={collection:"seq",default:!0,nodeClass:Di,tag:"tag:yaml.org,2002:seq",resolve(n,e){return zr(n)||e("Expected a sequence for this tag"),n},createNode:(n,e,i)=>Di.from(n,e,i)},Nc={identify:n=>typeof n=="string",default:!0,tag:"tag:yaml.org,2002:str",resolve:n=>n,stringify(n,e,i,r){return e=Object.assign({actualString:!0},e),fl(n,e,i,r)}},kc={identify:n=>n==null,createNode:()=>new de(null),default:!0,tag:"tag:yaml.org,2002:null",test:/^(?:~|[Nn]ull|NULL)?$/,resolve:()=>new de(null),stringify:({source:n},e)=>typeof n=="string"&&kc.test.test(n)?n:e.options.nullStr},zd={identify:n=>typeof n=="boolean",default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:[Tt]rue|TRUE|[Ff]alse|FALSE)$/,resolve:n=>new de(n[0]==="t"||n[0]==="T"),stringify({source:n,value:e},i){if(n&&zd.test.test(n)){const r=n[0]==="t"||n[0]==="T";if(e===r)return n}return e?i.options.trueStr:i.options.falseStr}};function En({format:n,minFractionDigits:e,tag:i,value:r}){if(typeof r=="bigint")return String(r);const l=typeof r=="number"?r:Number(r);if(!isFinite(l))return isNaN(l)?".nan":l<0?"-.inf":".inf";let o=Object.is(r,-0)?"-0":JSON.stringify(r);if(!n&&e&&(!i||i==="tag:yaml.org,2002:float")&&/^\d/.test(o)){let u=o.indexOf(".");u<0&&(u=o.length,o+=".");let f=e-(o.length-u-1);for(;f-- >0;)o+="0"}return o}const hS={identify:n=>typeof n=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,resolve:n=>n.slice(-3).toLowerCase()==="nan"?NaN:n[0]==="-"?Number.NEGATIVE_INFINITY:Number.POSITIVE_INFINITY,stringify:En},dS={identify:n=>typeof n=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"EXP",test:/^[-+]?(?:\.[0-9]+|[0-9]+(?:\.[0-9]*)?)[eE][-+]?[0-9]+$/,resolve:n=>parseFloat(n),stringify(n){const e=Number(n.value);return isFinite(e)?e.toExponential():En(n)}},pS={identify:n=>typeof n=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^[-+]?(?:\.[0-9]+|[0-9]+\.[0-9]*)$/,resolve(n){const e=new de(parseFloat(n)),i=n.indexOf(".");return i!==-1&&n[n.length-1]==="0"&&(e.minFractionDigits=n.length-i-1),e},stringify:En},Mc=n=>typeof n=="bigint"||Number.isInteger(n),Ud=(n,e,i,{intAsBigInt:r})=>r?BigInt(n):parseInt(n.substring(e),i);function gS(n,e,i){const{value:r}=n;return Mc(r)&&r>=0?i+r.toString(e):En(n)}const mS={identify:n=>Mc(n)&&n>=0,default:!0,tag:"tag:yaml.org,2002:int",format:"OCT",test:/^0o[0-7]+$/,resolve:(n,e,i)=>Ud(n,2,8,i),stringify:n=>gS(n,8,"0o")},yS={identify:Mc,default:!0,tag:"tag:yaml.org,2002:int",test:/^[-+]?[0-9]+$/,resolve:(n,e,i)=>Ud(n,0,10,i),stringify:En},bS={identify:n=>Mc(n)&&n>=0,default:!0,tag:"tag:yaml.org,2002:int",format:"HEX",test:/^0x[0-9a-fA-F]+$/,resolve:(n,e,i)=>Ud(n,2,16,i),stringify:n=>gS(n,16,"0x")},nC=[Ur,Hr,Nc,kc,zd,mS,yS,bS,hS,dS,pS];function Y0(n){return typeof n=="bigint"||Number.isInteger(n)}const qo=({value:n})=>JSON.stringify(n),iC=[{identify:n=>typeof n=="string",default:!0,tag:"tag:yaml.org,2002:str",resolve:n=>n,stringify:qo},{identify:n=>n==null,createNode:()=>new de(null),default:!0,tag:"tag:yaml.org,2002:null",test:/^null$/,resolve:()=>null,stringify:qo},{identify:n=>typeof n=="boolean",default:!0,tag:"tag:yaml.org,2002:bool",test:/^true$|^false$/,resolve:n=>n==="true",stringify:qo},{identify:Y0,default:!0,tag:"tag:yaml.org,2002:int",test:/^-?(?:0|[1-9][0-9]*)$/,resolve:(n,e,{intAsBigInt:i})=>i?BigInt(n):parseInt(n,10),stringify:({value:n})=>Y0(n)?n.toString():JSON.stringify(n)},{identify:n=>typeof n=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^-?(?:0|[1-9][0-9]*)(?:\.[0-9]*)?(?:[eE][-+]?[0-9]+)?$/,resolve:n=>parseFloat(n),stringify:qo}],sC={default:!0,tag:"",test:/^/,resolve(n,e){return e(`Unresolved plain scalar ${JSON.stringify(n)}`),n}},rC=[Ur,Hr].concat(iC,sC),Hd={identify:n=>n instanceof Uint8Array,default:!1,tag:"tag:yaml.org,2002:binary",resolve(n,e){if(typeof atob=="function"){const i=atob(n.replace(/[\n\r]/g,"")),r=new Uint8Array(i.length);for(let l=0;l<i.length;++l)r[l]=i.charCodeAt(l);return r}else return e("This environment does not support reading binary tags; either Buffer or atob is required"),n},stringify({comment:n,type:e,value:i},r,l,o){if(!i)return"";const u=i;let f;if(typeof btoa=="function"){let d="";for(let g=0;g<u.length;++g)d+=String.fromCharCode(u[g]);f=btoa(d)}else throw new Error("This environment does not support writing binary tags; either Buffer or btoa is required");if(e??(e=de.BLOCK_LITERAL),e!==de.QUOTE_DOUBLE){const d=Math.max(r.options.lineWidth-r.indent.length,r.options.minContentWidth),g=Math.ceil(f.length/d),m=new Array(g);for(let y=0,S=0;y<g;++y,S+=d)m[y]=f.substr(S,d);f=m.join(e===de.BLOCK_LITERAL?`
175
+ `:" ")}return fl({comment:n,type:e,value:f},r,l,o)}};function vS(n,e){if(zr(n))for(let i=0;i<n.items.length;++i){let r=n.items[i];if(!Ve(r)){if(Dr(r)){r.items.length>1&&e("Each pair must have its own sequence indicator");const l=r.items[0]||new Nt(new de(null));if(r.commentBefore&&(l.key.commentBefore=l.key.commentBefore?`${r.commentBefore}
176
+ ${l.key.commentBefore}`:r.commentBefore),r.comment){const o=l.value??l.key;o.comment=o.comment?`${r.comment}
177
+ ${o.comment}`:r.comment}r=l}n.items[i]=Ve(r)?r:new Nt(r)}}else e("Expected a sequence for this tag");return n}function SS(n,e,i){const{replacer:r}=i,l=new Di(n);l.tag="tag:yaml.org,2002:pairs";let o=0;if(e&&Symbol.iterator in Object(e))for(let u of e){typeof r=="function"&&(u=r.call(e,String(o++),u));let f,d;if(Array.isArray(u))if(u.length===2)f=u[0],d=u[1];else throw new TypeError(`Expected [key, value] tuple: ${u}`);else if(u&&u instanceof Object){const g=Object.keys(u);if(g.length===1)f=g[0],d=u[f];else throw new TypeError(`Expected tuple with one key, not ${g.length} keys`)}else f=u;l.items.push(Dd(f,d,i))}return l}const Bd={collection:"seq",default:!1,tag:"tag:yaml.org,2002:pairs",resolve:vS,createNode:SS};class Tr extends Di{constructor(){super(),this.add=nn.prototype.add.bind(this),this.delete=nn.prototype.delete.bind(this),this.get=nn.prototype.get.bind(this),this.has=nn.prototype.has.bind(this),this.set=nn.prototype.set.bind(this),this.tag=Tr.tag}toJSON(e,i){if(!i)return super.toJSON(e);const r=new Map;i!=null&&i.onCreate&&i.onCreate(r);for(const l of this.items){let o,u;if(Ve(l)?(o=yn(l.key,"",i),u=yn(l.value,o,i)):o=yn(l,"",i),r.has(o))throw new Error("Ordered maps must not include duplicate keys");r.set(o,u)}return r}static from(e,i,r){const l=SS(e,i,r),o=new this;return o.items=l.items,o}}Tr.tag="tag:yaml.org,2002:omap";const qd={collection:"seq",identify:n=>n instanceof Map,nodeClass:Tr,default:!1,tag:"tag:yaml.org,2002:omap",resolve(n,e){const i=vS(n,e),r=[];for(const{key:l}of i.items)ze(l)&&(r.includes(l.value)?e(`Ordered maps must not include duplicate keys: ${l.value}`):r.push(l.value));return Object.assign(new Tr,i)},createNode:(n,e,i)=>Tr.from(n,e,i)};function wS({value:n,source:e},i){return e&&(n?xS:_S).test.test(e)?e:n?i.options.trueStr:i.options.falseStr}const xS={identify:n=>n===!0,default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:Y|y|[Yy]es|YES|[Tt]rue|TRUE|[Oo]n|ON)$/,resolve:()=>new de(!0),stringify:wS},_S={identify:n=>n===!1,default:!0,tag:"tag:yaml.org,2002:bool",test:/^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/,resolve:()=>new de(!1),stringify:wS},aC={identify:n=>typeof n=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,resolve:n=>n.slice(-3).toLowerCase()==="nan"?NaN:n[0]==="-"?Number.NEGATIVE_INFINITY:Number.POSITIVE_INFINITY,stringify:En},lC={identify:n=>typeof n=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"EXP",test:/^[-+]?(?:[0-9][0-9_]*)?(?:\.[0-9_]*)?[eE][-+]?[0-9]+$/,resolve:n=>parseFloat(n.replace(/_/g,"")),stringify(n){const e=Number(n.value);return isFinite(e)?e.toExponential():En(n)}},oC={identify:n=>typeof n=="number",default:!0,tag:"tag:yaml.org,2002:float",test:/^[-+]?(?:[0-9][0-9_]*)?\.[0-9_]*$/,resolve(n){const e=new de(parseFloat(n.replace(/_/g,""))),i=n.indexOf(".");if(i!==-1){const r=n.substring(i+1).replace(/_/g,"");r[r.length-1]==="0"&&(e.minFractionDigits=r.length)}return e},stringify:En},hl=n=>typeof n=="bigint"||Number.isInteger(n);function Oc(n,e,i,{intAsBigInt:r}){const l=n[0];if((l==="-"||l==="+")&&(e+=1),n=n.substring(e).replace(/_/g,""),r){switch(i){case 2:n=`0b${n}`;break;case 8:n=`0o${n}`;break;case 16:n=`0x${n}`;break}const u=BigInt(n);return l==="-"?BigInt(-1)*u:u}const o=parseInt(n,i);return l==="-"?-1*o:o}function $d(n,e,i){const{value:r}=n;if(hl(r)){const l=r.toString(e);return r<0?"-"+i+l.substr(1):i+l}return En(n)}const cC={identify:hl,default:!0,tag:"tag:yaml.org,2002:int",format:"BIN",test:/^[-+]?0b[0-1_]+$/,resolve:(n,e,i)=>Oc(n,2,2,i),stringify:n=>$d(n,2,"0b")},uC={identify:hl,default:!0,tag:"tag:yaml.org,2002:int",format:"OCT",test:/^[-+]?0[0-7_]+$/,resolve:(n,e,i)=>Oc(n,1,8,i),stringify:n=>$d(n,8,"0")},fC={identify:hl,default:!0,tag:"tag:yaml.org,2002:int",test:/^[-+]?[0-9][0-9_]*$/,resolve:(n,e,i)=>Oc(n,0,10,i),stringify:En},hC={identify:hl,default:!0,tag:"tag:yaml.org,2002:int",format:"HEX",test:/^[-+]?0x[0-9a-fA-F_]+$/,resolve:(n,e,i)=>Oc(n,2,16,i),stringify:n=>$d(n,16,"0x")};class Ar extends nn{constructor(e){super(e),this.tag=Ar.tag}add(e){let i;Ve(e)?i=e:e&&typeof e=="object"&&"key"in e&&"value"in e&&e.value===null?i=new Nt(e.key,null):i=new Nt(e,null),us(this.items,i.key)||this.items.push(i)}get(e,i){const r=us(this.items,e);return!i&&Ve(r)?ze(r.key)?r.key.value:r.key:r}set(e,i){if(typeof i!="boolean")throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof i}`);const r=us(this.items,e);r&&!i?this.items.splice(this.items.indexOf(r),1):!r&&i&&this.items.push(new Nt(e))}toJSON(e,i){return super.toJSON(e,i,Set)}toString(e,i,r){if(!e)return JSON.stringify(this);if(this.hasAllNullValues(!0))return super.toString(Object.assign({},e,{allNullValues:!0}),i,r);throw new Error("Set items must all have null values")}static from(e,i,r){const{replacer:l}=r,o=new this(e);if(i&&Symbol.iterator in Object(i))for(let u of i)typeof l=="function"&&(u=l.call(i,u,u)),o.items.push(Dd(u,null,r));return o}}Ar.tag="tag:yaml.org,2002:set";const Id={collection:"map",identify:n=>n instanceof Set,nodeClass:Ar,default:!1,tag:"tag:yaml.org,2002:set",createNode:(n,e,i)=>Ar.from(n,e,i),resolve(n,e){if(Dr(n)){if(n.hasAllNullValues(!0))return Object.assign(new Ar,n);e("Set items must all have null values")}else e("Expected a mapping for this tag");return n}};function Vd(n,e){const i=n[0],r=i==="-"||i==="+"?n.substring(1):n,l=u=>e?BigInt(u):Number(u),o=r.replace(/_/g,"").split(":").reduce((u,f)=>u*l(60)+l(f),l(0));return i==="-"?l(-1)*o:o}function ES(n){let{value:e}=n,i=u=>u;if(typeof e=="bigint")i=u=>BigInt(u);else if(isNaN(e)||!isFinite(e))return En(n);let r="";e<0&&(r="-",e*=i(-1));const l=i(60),o=[e%l];return e<60?o.unshift(0):(e=(e-o[0])/l,o.unshift(e%l),e>=60&&(e=(e-o[0])/l,o.unshift(e))),r+o.map(u=>String(u).padStart(2,"0")).join(":").replace(/000000\d*$/,"")}const TS={identify:n=>typeof n=="bigint"||Number.isInteger(n),default:!0,tag:"tag:yaml.org,2002:int",format:"TIME",test:/^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+$/,resolve:(n,e,{intAsBigInt:i})=>Vd(n,i),stringify:ES},AS={identify:n=>typeof n=="number",default:!0,tag:"tag:yaml.org,2002:float",format:"TIME",test:/^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\.[0-9_]*$/,resolve:n=>Vd(n,!1),stringify:ES},jc={identify:n=>n instanceof Date,default:!0,tag:"tag:yaml.org,2002:timestamp",test:RegExp("^([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})(?:(?:t|T|[ \\t]+)([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}(\\.[0-9]+)?)(?:[ \\t]*(Z|[-+][012]?[0-9](?::[0-9]{2})?))?)?$"),resolve(n){const e=n.match(jc.test);if(!e)throw new Error("!!timestamp expects a date, starting with yyyy-mm-dd");const[,i,r,l,o,u,f]=e.map(Number),d=e[7]?Number((e[7]+"00").substr(1,3)):0;let g=Date.UTC(i,r-1,l,o||0,u||0,f||0,d);const m=e[8];if(m&&m!=="Z"){let y=Vd(m,!1);Math.abs(y)<30&&(y*=60),g-=6e4*y}return new Date(g)},stringify:({value:n})=>(n==null?void 0:n.toISOString().replace(/(T00:00:00)?\.000Z$/,""))??""},F0=[Ur,Hr,Nc,kc,xS,_S,cC,uC,fC,hC,aC,lC,oC,Hd,si,qd,Bd,Id,TS,AS,jc],Q0=new Map([["core",nC],["failsafe",[Ur,Hr,Nc]],["json",rC],["yaml11",F0],["yaml-1.1",F0]]),P0={binary:Hd,bool:zd,float:pS,floatExp:dS,floatNaN:hS,floatTime:AS,int:yS,intHex:bS,intOct:mS,intTime:TS,map:Ur,merge:si,null:kc,omap:qd,pairs:Bd,seq:Hr,set:Id,timestamp:jc},dC={"tag:yaml.org,2002:binary":Hd,"tag:yaml.org,2002:merge":si,"tag:yaml.org,2002:omap":qd,"tag:yaml.org,2002:pairs":Bd,"tag:yaml.org,2002:set":Id,"tag:yaml.org,2002:timestamp":jc};function Sh(n,e,i){const r=Q0.get(e);if(r&&!n)return i&&!r.includes(si)?r.concat(si):r.slice();let l=r;if(!l)if(Array.isArray(n))l=[];else{const o=Array.from(Q0.keys()).filter(u=>u!=="yaml11").map(u=>JSON.stringify(u)).join(", ");throw new Error(`Unknown schema "${e}"; use one of ${o} or define customTags array`)}if(Array.isArray(n))for(const o of n)l=l.concat(o);else typeof n=="function"&&(l=n(l.slice()));return i&&(l=l.concat(si)),l.reduce((o,u)=>{const f=typeof u=="string"?P0[u]:u;if(!f){const d=JSON.stringify(u),g=Object.keys(P0).map(m=>JSON.stringify(m)).join(", ");throw new Error(`Unknown custom tag ${d}; use one of ${g}`)}return o.includes(f)||o.push(f),o},[])}const pC=(n,e)=>n.key<e.key?-1:n.key>e.key?1:0;class Lc{constructor({compat:e,customTags:i,merge:r,resolveKnownTags:l,schema:o,sortMapEntries:u,toStringDefaults:f}){this.compat=Array.isArray(e)?Sh(e,"compat"):e?Sh(null,e):null,this.name=typeof o=="string"&&o||"core",this.knownTags=l?dC:{},this.tags=Sh(i,this.name,r),this.toStringOptions=f??null,Object.defineProperty(this,Ri,{value:Ur}),Object.defineProperty(this,jn,{value:Nc}),Object.defineProperty(this,Rr,{value:Hr}),this.sortMapEntries=typeof u=="function"?u:u===!0?pC:null}clone(){const e=Object.create(Lc.prototype,Object.getOwnPropertyDescriptors(this));return e.tags=this.tags.slice(),e}}function gC(n,e){var d;const i=[];let r=e.directives===!0;if(e.directives!==!1&&n.directives){const g=n.directives.toString(n);g?(i.push(g),r=!0):n.directives.docStart&&(r=!0)}r&&i.push("---");const l=lS(n,e),{commentString:o}=l.options;if(n.commentBefore){i.length!==1&&i.unshift("");const g=o(n.commentBefore);i.unshift(ii(g,""))}let u=!1,f=null;if(n.contents){if(Xe(n.contents)){if(n.contents.spaceBefore&&r&&i.push(""),n.contents.commentBefore){const y=o(n.contents.commentBefore);i.push(ii(y,""))}l.forceBlockIndent=!!n.comment,f=n.contents.comment}const g=f?void 0:()=>u=!0;let m=Nr(n.contents,l,()=>f=null,g);f&&(m+=cs(m,"",o(f))),(m[0]==="|"||m[0]===">")&&i[i.length-1]==="---"?i[i.length-1]=`--- ${m}`:i.push(m)}else i.push(Nr(n.contents,l));if((d=n.directives)!=null&&d.docEnd)if(n.comment){const g=o(n.comment);g.includes(`
178
+ `)?(i.push("..."),i.push(ii(g,""))):i.push(`... ${g}`)}else i.push("...");else{let g=n.comment;g&&u&&(g=g.replace(/^\n+/,"")),g&&((!u||f)&&i[i.length-1]!==""&&i.push(""),i.push(ii(o(g),"")))}return i.join(`
179
+ `)+`
180
+ `}class Br{constructor(e,i,r){this.commentBefore=null,this.comment=null,this.errors=[],this.warnings=[],Object.defineProperty(this,bn,{value:Kh});let l=null;typeof i=="function"||Array.isArray(i)?l=i:r===void 0&&i&&(r=i,i=void 0);const o=Object.assign({intAsBigInt:!1,keepSourceTokens:!1,logLevel:"warn",prettyErrors:!0,strict:!0,stringKeys:!1,uniqueKeys:!0,version:"1.2"},r);this.options=o;let{version:u}=o;r!=null&&r._directives?(this.directives=r._directives.atDocument(),this.directives.yaml.explicit&&(u=this.directives.yaml.version)):this.directives=new Ot({version:u}),this.setSchema(u,r),this.contents=e===void 0?null:this.createNode(e,l,r)}clone(){const e=Object.create(Br.prototype,{[bn]:{value:Kh}});return e.commentBefore=this.commentBefore,e.comment=this.comment,e.errors=this.errors.slice(),e.warnings=this.warnings.slice(),e.options=Object.assign({},this.options),this.directives&&(e.directives=this.directives.clone()),e.schema=this.schema.clone(),e.contents=Xe(this.contents)?this.contents.clone(e.schema):this.contents,this.range&&(e.range=this.range.slice()),e}add(e){fr(this.contents)&&this.contents.add(e)}addIn(e,i){fr(this.contents)&&this.contents.addIn(e,i)}createAlias(e,i){if(!e.anchor){const r=nS(this);e.anchor=!i||r.has(i)?iS(i||"a",r):i}return new Ec(e.anchor)}createNode(e,i,r){let l;if(typeof i=="function")e=i.call({"":e},"",e),l=i;else if(Array.isArray(i)){const _=C=>typeof C=="number"||C instanceof String||C instanceof Number,A=i.filter(_).map(String);A.length>0&&(i=i.concat(A)),l=i}else r===void 0&&i&&(r=i,i=void 0);const{aliasDuplicateObjects:o,anchorPrefix:u,flow:f,keepUndefined:d,onTagObj:g,tag:m}=r??{},{onAnchor:y,setAnchors:S,sourceObjects:w}=VA(this,u||"a"),E={aliasDuplicateObjects:o??!0,keepUndefined:d??!1,onAnchor:y,onTagObj:g,replacer:l,schema:this.schema,sourceObjects:w},x=al(e,m,E);return f&&Ke(x)&&(x.flow=!0),S(),x}createPair(e,i,r={}){const l=this.createNode(e,null,r),o=this.createNode(i,null,r);return new Nt(l,o)}delete(e){return fr(this.contents)?this.contents.delete(e):!1}deleteIn(e){return Ya(e)?this.contents==null?!1:(this.contents=null,!0):fr(this.contents)?this.contents.deleteIn(e):!1}get(e,i){return Ke(this.contents)?this.contents.get(e,i):void 0}getIn(e,i){return Ya(e)?!i&&ze(this.contents)?this.contents.value:this.contents:Ke(this.contents)?this.contents.getIn(e,i):void 0}has(e){return Ke(this.contents)?this.contents.has(e):!1}hasIn(e){return Ya(e)?this.contents!==void 0:Ke(this.contents)?this.contents.hasIn(e):!1}set(e,i){this.contents==null?this.contents=uc(this.schema,[e],i):fr(this.contents)&&this.contents.set(e,i)}setIn(e,i){Ya(e)?this.contents=i:this.contents==null?this.contents=uc(this.schema,Array.from(e),i):fr(this.contents)&&this.contents.setIn(e,i)}setSchema(e,i={}){typeof e=="number"&&(e=String(e));let r;switch(e){case"1.1":this.directives?this.directives.yaml.version="1.1":this.directives=new Ot({version:"1.1"}),r={resolveKnownTags:!1,schema:"yaml-1.1"};break;case"1.2":case"next":this.directives?this.directives.yaml.version=e:this.directives=new Ot({version:e}),r={resolveKnownTags:!0,schema:"core"};break;case null:this.directives&&delete this.directives,r=null;break;default:{const l=JSON.stringify(e);throw new Error(`Expected '1.1', '1.2' or null as first argument, but found: ${l}`)}}if(i.schema instanceof Object)this.schema=i.schema;else if(r)this.schema=new Lc(Object.assign(r,i));else throw new Error("With a null YAML version, the { schema: Schema } option is required")}toJS({json:e,jsonArg:i,mapAsMap:r,maxAliasCount:l,onAnchor:o,reviver:u}={}){const f={anchors:new Map,doc:this,keep:!e,mapAsMap:r===!0,mapKeyWarned:!1,maxAliasCount:typeof l=="number"?l:100},d=yn(this.contents,i??"",f);if(typeof o=="function")for(const{count:g,res:m}of f.anchors.values())o(m,g);return typeof u=="function"?wr(u,{"":d},"",d):d}toJSON(e,i){return this.toJS({json:!0,jsonArg:e,mapAsMap:!1,onAnchor:i})}toString(e={}){if(this.errors.length>0)throw new Error("Document with errors cannot be stringified");if("indent"in e&&(!Number.isInteger(e.indent)||Number(e.indent)<=0)){const i=JSON.stringify(e.indent);throw new Error(`"indent" option must be a positive integer, not ${i}`)}return gC(this,e)}}function fr(n){if(Ke(n))return!0;throw new Error("Expected a YAML collection as document contents")}class Gd extends Error{constructor(e,i,r,l){super(),this.name=e,this.code=r,this.message=l,this.pos=i}}class fs extends Gd{constructor(e,i,r){super("YAMLParseError",e,i,r)}}class CS extends Gd{constructor(e,i,r){super("YAMLWarning",e,i,r)}}const hc=(n,e)=>i=>{if(i.pos[0]===-1)return;i.linePos=i.pos.map(f=>e.linePos(f));const{line:r,col:l}=i.linePos[0];i.message+=` at line ${r}, column ${l}`;let o=l-1,u=n.substring(e.lineStarts[r-1],e.lineStarts[r]).replace(/[\n\r]+$/,"");if(o>=60&&u.length>80){const f=Math.min(o-39,u.length-79);u="…"+u.substring(f),o-=f-1}if(u.length>80&&(u=u.substring(0,79)+"…"),r>1&&/^ *$/.test(u.substring(0,o))){let f=n.substring(e.lineStarts[r-2],e.lineStarts[r-1]);f.length>80&&(f=f.substring(0,79)+`…
181
+ `),u=f+u}if(/[^ ]/.test(u)){let f=1;const d=i.linePos[1];(d==null?void 0:d.line)===r&&d.col>l&&(f=Math.max(1,Math.min(d.col-l,80-o)));const g=" ".repeat(o)+"^".repeat(f);i.message+=`:
182
+
183
+ ${u}
184
+ ${g}
185
+ `}};function kr(n,{flow:e,indicator:i,next:r,offset:l,onError:o,parentIndent:u,startOnNewline:f}){let d=!1,g=f,m=f,y="",S="",w=!1,E=!1,x=null,_=null,A=null,C=null,H=null,V=null,K=null;for(const I of n)switch(E&&(I.type!=="space"&&I.type!=="newline"&&I.type!=="comma"&&o(I.offset,"MISSING_CHAR","Tags and anchors must be separated from the next token by white space"),E=!1),x&&(g&&I.type!=="comment"&&I.type!=="newline"&&o(x,"TAB_AS_INDENT","Tabs are not allowed as indentation"),x=null),I.type){case"space":!e&&(i!=="doc-start"||(r==null?void 0:r.type)!=="flow-collection")&&I.source.includes(" ")&&(x=I),m=!0;break;case"comment":{m||o(I,"MISSING_CHAR","Comments must be separated from other tokens by white space characters");const O=I.source.substring(1)||" ";y?y+=S+O:y=O,S="",g=!1;break}case"newline":g?y?y+=I.source:(!V||i!=="seq-item-ind")&&(d=!0):S+=I.source,g=!0,w=!0,(_||A)&&(C=I),m=!0;break;case"anchor":_&&o(I,"MULTIPLE_ANCHORS","A node can have at most one anchor"),I.source.endsWith(":")&&o(I.offset+I.source.length-1,"BAD_ALIAS","Anchor ending in : is ambiguous",!0),_=I,K??(K=I.offset),g=!1,m=!1,E=!0;break;case"tag":{A&&o(I,"MULTIPLE_TAGS","A node can have at most one tag"),A=I,K??(K=I.offset),g=!1,m=!1,E=!0;break}case i:(_||A)&&o(I,"BAD_PROP_ORDER",`Anchors and tags must be after the ${I.source} indicator`),V&&o(I,"UNEXPECTED_TOKEN",`Unexpected ${I.source} in ${e??"collection"}`),V=I,g=i==="seq-item-ind"||i==="explicit-key-ind",m=!1;break;case"comma":if(e){H&&o(I,"UNEXPECTED_TOKEN",`Unexpected , in ${e}`),H=I,g=!1,m=!1;break}default:o(I,"UNEXPECTED_TOKEN",`Unexpected ${I.type} token`),g=!1,m=!1}const Q=n[n.length-1],j=Q?Q.offset+Q.source.length:l;return E&&r&&r.type!=="space"&&r.type!=="newline"&&r.type!=="comma"&&(r.type!=="scalar"||r.source!=="")&&o(r.offset,"MISSING_CHAR","Tags and anchors must be separated from the next token by white space"),x&&(g&&x.indent<=u||(r==null?void 0:r.type)==="block-map"||(r==null?void 0:r.type)==="block-seq")&&o(x,"TAB_AS_INDENT","Tabs are not allowed as indentation"),{comma:H,found:V,spaceBefore:d,comment:y,hasNewline:w,anchor:_,tag:A,newlineAfterProp:C,end:j,start:K??j}}function ll(n){if(!n)return null;switch(n.type){case"alias":case"scalar":case"double-quoted-scalar":case"single-quoted-scalar":if(n.source.includes(`
186
+ `))return!0;if(n.end){for(const e of n.end)if(e.type==="newline")return!0}return!1;case"flow-collection":for(const e of n.items){for(const i of e.start)if(i.type==="newline")return!0;if(e.sep){for(const i of e.sep)if(i.type==="newline")return!0}if(ll(e.key)||ll(e.value))return!0}return!1;default:return!0}}function Qh(n,e,i){if((e==null?void 0:e.type)==="flow-collection"){const r=e.end[0];r.indent===n&&(r.source==="]"||r.source==="}")&&ll(e)&&i(r,"BAD_INDENT","Flow end indicator should be more indented than parent",!0)}}function NS(n,e,i){const{uniqueKeys:r}=n.options;if(r===!1)return!1;const l=typeof r=="function"?r:(o,u)=>o===u||ze(o)&&ze(u)&&o.value===u.value;return e.some(o=>l(o.key,i))}const J0="All mapping items must start at the same column";function mC({composeNode:n,composeEmptyNode:e},i,r,l,o){var m;const u=(o==null?void 0:o.nodeClass)??nn,f=new u(i.schema);i.atRoot&&(i.atRoot=!1);let d=r.offset,g=null;for(const y of r.items){const{start:S,key:w,sep:E,value:x}=y,_=kr(S,{indicator:"explicit-key-ind",next:w??(E==null?void 0:E[0]),offset:d,onError:l,parentIndent:r.indent,startOnNewline:!0}),A=!_.found;if(A){if(w&&(w.type==="block-seq"?l(d,"BLOCK_AS_IMPLICIT_KEY","A block sequence may not be used as an implicit map key"):"indent"in w&&w.indent!==r.indent&&l(d,"BAD_INDENT",J0)),!_.anchor&&!_.tag&&!E){g=_.end,_.comment&&(f.comment?f.comment+=`
187
+ `+_.comment:f.comment=_.comment);continue}(_.newlineAfterProp||ll(w))&&l(w??S[S.length-1],"MULTILINE_IMPLICIT_KEY","Implicit keys need to be on a single line")}else((m=_.found)==null?void 0:m.indent)!==r.indent&&l(d,"BAD_INDENT",J0);i.atKey=!0;const C=_.end,H=w?n(i,w,_,l):e(i,C,S,null,_,l);i.schema.compat&&Qh(r.indent,w,l),i.atKey=!1,NS(i,f.items,H)&&l(C,"DUPLICATE_KEY","Map keys must be unique");const V=kr(E??[],{indicator:"map-value-ind",next:x,offset:H.range[2],onError:l,parentIndent:r.indent,startOnNewline:!w||w.type==="block-scalar"});if(d=V.end,V.found){A&&((x==null?void 0:x.type)==="block-map"&&!V.hasNewline&&l(d,"BLOCK_AS_IMPLICIT_KEY","Nested mappings are not allowed in compact mappings"),i.options.strict&&_.start<V.found.offset-1024&&l(H.range,"KEY_OVER_1024_CHARS","The : indicator must be at most 1024 chars after the start of an implicit block mapping key"));const K=x?n(i,x,V,l):e(i,d,E,null,V,l);i.schema.compat&&Qh(r.indent,x,l),d=K.range[2];const Q=new Nt(H,K);i.options.keepSourceTokens&&(Q.srcToken=y),f.items.push(Q)}else{A&&l(H.range,"MISSING_CHAR","Implicit map keys need to be followed by map values"),V.comment&&(H.comment?H.comment+=`
188
+ `+V.comment:H.comment=V.comment);const K=new Nt(H);i.options.keepSourceTokens&&(K.srcToken=y),f.items.push(K)}}return g&&g<d&&l(g,"IMPOSSIBLE","Map comment with trailing content"),f.range=[r.offset,d,g??d],f}function yC({composeNode:n,composeEmptyNode:e},i,r,l,o){const u=(o==null?void 0:o.nodeClass)??Di,f=new u(i.schema);i.atRoot&&(i.atRoot=!1),i.atKey&&(i.atKey=!1);let d=r.offset,g=null;for(const{start:m,value:y}of r.items){const S=kr(m,{indicator:"seq-item-ind",next:y,offset:d,onError:l,parentIndent:r.indent,startOnNewline:!0});if(!S.found)if(S.anchor||S.tag||y)(y==null?void 0:y.type)==="block-seq"?l(S.end,"BAD_INDENT","All sequence items must start at the same column"):l(d,"MISSING_CHAR","Sequence item without - indicator");else{g=S.end,S.comment&&(f.comment=S.comment);continue}const w=y?n(i,y,S,l):e(i,S.end,m,null,S,l);i.schema.compat&&Qh(r.indent,y,l),d=w.range[2],f.items.push(w)}return f.range=[r.offset,d,g??d],f}function dl(n,e,i,r){let l="";if(n){let o=!1,u="";for(const f of n){const{source:d,type:g}=f;switch(g){case"space":o=!0;break;case"comment":{i&&!o&&r(f,"MISSING_CHAR","Comments must be separated from other tokens by white space characters");const m=d.substring(1)||" ";l?l+=u+m:l=m,u="";break}case"newline":l&&(u+=d),o=!0;break;default:r(f,"UNEXPECTED_TOKEN",`Unexpected ${g} at node end`)}e+=d.length}}return{comment:l,offset:e}}const wh="Block collections are not allowed within flow collections",xh=n=>n&&(n.type==="block-map"||n.type==="block-seq");function bC({composeNode:n,composeEmptyNode:e},i,r,l,o){var _;const u=r.start.source==="{",f=u?"flow map":"flow sequence",d=(o==null?void 0:o.nodeClass)??(u?nn:Di),g=new d(i.schema);g.flow=!0;const m=i.atRoot;m&&(i.atRoot=!1),i.atKey&&(i.atKey=!1);let y=r.offset+r.start.source.length;for(let A=0;A<r.items.length;++A){const C=r.items[A],{start:H,key:V,sep:K,value:Q}=C,j=kr(H,{flow:f,indicator:"explicit-key-ind",next:V??(K==null?void 0:K[0]),offset:y,onError:l,parentIndent:r.indent,startOnNewline:!1});if(!j.found){if(!j.anchor&&!j.tag&&!K&&!Q){A===0&&j.comma?l(j.comma,"UNEXPECTED_TOKEN",`Unexpected , in ${f}`):A<r.items.length-1&&l(j.start,"UNEXPECTED_TOKEN",`Unexpected empty item in ${f}`),j.comment&&(g.comment?g.comment+=`
189
+ `+j.comment:g.comment=j.comment),y=j.end;continue}!u&&i.options.strict&&ll(V)&&l(V,"MULTILINE_IMPLICIT_KEY","Implicit keys of flow sequence pairs need to be on a single line")}if(A===0)j.comma&&l(j.comma,"UNEXPECTED_TOKEN",`Unexpected , in ${f}`);else if(j.comma||l(j.start,"MISSING_CHAR",`Missing , between ${f} items`),j.comment){let I="";e:for(const O of H)switch(O.type){case"comma":case"space":break;case"comment":I=O.source.substring(1);break e;default:break e}if(I){let O=g.items[g.items.length-1];Ve(O)&&(O=O.value??O.key),O.comment?O.comment+=`
190
+ `+I:O.comment=I,j.comment=j.comment.substring(I.length+1)}}if(!u&&!K&&!j.found){const I=Q?n(i,Q,j,l):e(i,j.end,K,null,j,l);g.items.push(I),y=I.range[2],xh(Q)&&l(I.range,"BLOCK_IN_FLOW",wh)}else{i.atKey=!0;const I=j.end,O=V?n(i,V,j,l):e(i,I,H,null,j,l);xh(V)&&l(O.range,"BLOCK_IN_FLOW",wh),i.atKey=!1;const P=kr(K??[],{flow:f,indicator:"map-value-ind",next:Q,offset:O.range[2],onError:l,parentIndent:r.indent,startOnNewline:!1});if(P.found){if(!u&&!j.found&&i.options.strict){if(K)for(const ee of K){if(ee===P.found)break;if(ee.type==="newline"){l(ee,"MULTILINE_IMPLICIT_KEY","Implicit keys of flow sequence pairs need to be on a single line");break}}j.start<P.found.offset-1024&&l(P.found,"KEY_OVER_1024_CHARS","The : indicator must be at most 1024 chars after the start of an implicit flow sequence key")}}else Q&&("source"in Q&&((_=Q.source)==null?void 0:_[0])===":"?l(Q,"MISSING_CHAR",`Missing space after : in ${f}`):l(P.start,"MISSING_CHAR",`Missing , or : between ${f} items`));const J=Q?n(i,Q,P,l):P.found?e(i,P.end,K,null,P,l):null;J?xh(Q)&&l(J.range,"BLOCK_IN_FLOW",wh):P.comment&&(O.comment?O.comment+=`
191
+ `+P.comment:O.comment=P.comment);const $=new Nt(O,J);if(i.options.keepSourceTokens&&($.srcToken=C),u){const ee=g;NS(i,ee.items,O)&&l(I,"DUPLICATE_KEY","Map keys must be unique"),ee.items.push($)}else{const ee=new nn(i.schema);ee.flow=!0,ee.items.push($);const ce=(J??O).range;ee.range=[O.range[0],ce[1],ce[2]],g.items.push(ee)}y=J?J.range[2]:P.end}}const S=u?"}":"]",[w,...E]=r.end;let x=y;if((w==null?void 0:w.source)===S)x=w.offset+w.source.length;else{const A=f[0].toUpperCase()+f.substring(1),C=m?`${A} must end with a ${S}`:`${A} in block collection must be sufficiently indented and end with a ${S}`;l(y,m?"MISSING_CHAR":"BAD_INDENT",C),w&&w.source.length!==1&&E.unshift(w)}if(E.length>0){const A=dl(E,x,i.options.strict,l);A.comment&&(g.comment?g.comment+=`
192
+ `+A.comment:g.comment=A.comment),g.range=[r.offset,x,A.offset]}else g.range=[r.offset,x,x];return g}function _h(n,e,i,r,l,o){const u=i.type==="block-map"?mC(n,e,i,r,o):i.type==="block-seq"?yC(n,e,i,r,o):bC(n,e,i,r,o),f=u.constructor;return l==="!"||l===f.tagName?(u.tag=f.tagName,u):(l&&(u.tag=l),u)}function vC(n,e,i,r,l){var S;const o=r.tag,u=o?e.directives.tagName(o.source,w=>l(o,"TAG_RESOLVE_FAILED",w)):null;if(i.type==="block-seq"){const{anchor:w,newlineAfterProp:E}=r,x=w&&o?w.offset>o.offset?w:o:w??o;x&&(!E||E.offset<x.offset)&&l(x,"MISSING_CHAR","Missing newline after block sequence props")}const f=i.type==="block-map"?"map":i.type==="block-seq"?"seq":i.start.source==="{"?"map":"seq";if(!o||!u||u==="!"||u===nn.tagName&&f==="map"||u===Di.tagName&&f==="seq")return _h(n,e,i,l,u);let d=e.schema.tags.find(w=>w.tag===u&&w.collection===f);if(!d){const w=e.schema.knownTags[u];if((w==null?void 0:w.collection)===f)e.schema.tags.push(Object.assign({},w,{default:!1})),d=w;else return w?l(o,"BAD_COLLECTION_TYPE",`${w.tag} used for ${f} collection, but expects ${w.collection??"scalar"}`,!0):l(o,"TAG_RESOLVE_FAILED",`Unresolved tag: ${u}`,!0),_h(n,e,i,l,u)}const g=_h(n,e,i,l,u,d),m=((S=d.resolve)==null?void 0:S.call(d,g,w=>l(o,"TAG_RESOLVE_FAILED",w),e.options))??g,y=Xe(m)?m:new de(m);return y.range=g.range,y.tag=u,d!=null&&d.format&&(y.format=d.format),y}function kS(n,e,i){const r=e.offset,l=SC(e,n.options.strict,i);if(!l)return{value:"",type:null,comment:"",range:[r,r,r]};const o=l.mode===">"?de.BLOCK_FOLDED:de.BLOCK_LITERAL,u=e.source?wC(e.source):[];let f=u.length;for(let x=u.length-1;x>=0;--x){const _=u[x][1];if(_===""||_==="\r")f=x;else break}if(f===0){const x=l.chomp==="+"&&u.length>0?`
193
+ `.repeat(Math.max(1,u.length-1)):"";let _=r+l.length;return e.source&&(_+=e.source.length),{value:x,type:o,comment:l.comment,range:[r,_,_]}}let d=e.indent+l.indent,g=e.offset+l.length,m=0;for(let x=0;x<f;++x){const[_,A]=u[x];if(A===""||A==="\r")l.indent===0&&_.length>d&&(d=_.length);else{_.length<d&&i(g+_.length,"MISSING_CHAR","Block scalars with more-indented leading empty lines must use an explicit indentation indicator"),l.indent===0&&(d=_.length),m=x,d===0&&!n.atRoot&&i(g,"BAD_INDENT","Block scalar values in collections must be indented");break}g+=_.length+A.length+1}for(let x=u.length-1;x>=f;--x)u[x][0].length>d&&(f=x+1);let y="",S="",w=!1;for(let x=0;x<m;++x)y+=u[x][0].slice(d)+`
194
+ `;for(let x=m;x<f;++x){let[_,A]=u[x];g+=_.length+A.length+1;const C=A[A.length-1]==="\r";if(C&&(A=A.slice(0,-1)),A&&_.length<d){const V=`Block scalar lines must not be less indented than their ${l.indent?"explicit indentation indicator":"first line"}`;i(g-A.length-(C?2:1),"BAD_INDENT",V),_=""}o===de.BLOCK_LITERAL?(y+=S+_.slice(d)+A,S=`
195
+ `):_.length>d||A[0]===" "?(S===" "?S=`
196
+ `:!w&&S===`
197
+ `&&(S=`
198
+
199
+ `),y+=S+_.slice(d)+A,S=`
200
+ `,w=!0):A===""?S===`
201
+ `?y+=`
202
+ `:S=`
203
+ `:(y+=S+A,S=" ",w=!1)}switch(l.chomp){case"-":break;case"+":for(let x=f;x<u.length;++x)y+=`
204
+ `+u[x][0].slice(d);y[y.length-1]!==`
205
+ `&&(y+=`
206
+ `);break;default:y+=`
207
+ `}const E=r+l.length+e.source.length;return{value:y,type:o,comment:l.comment,range:[r,E,E]}}function SC({offset:n,props:e},i,r){if(e[0].type!=="block-scalar-header")return r(e[0],"IMPOSSIBLE","Block scalar header not found"),null;const{source:l}=e[0],o=l[0];let u=0,f="",d=-1;for(let S=1;S<l.length;++S){const w=l[S];if(!f&&(w==="-"||w==="+"))f=w;else{const E=Number(w);!u&&E?u=E:d===-1&&(d=n+S)}}d!==-1&&r(d,"UNEXPECTED_TOKEN",`Block scalar header includes extra characters: ${l}`);let g=!1,m="",y=l.length;for(let S=1;S<e.length;++S){const w=e[S];switch(w.type){case"space":g=!0;case"newline":y+=w.source.length;break;case"comment":i&&!g&&r(w,"MISSING_CHAR","Comments must be separated from other tokens by white space characters"),y+=w.source.length,m=w.source.substring(1);break;case"error":r(w,"UNEXPECTED_TOKEN",w.message),y+=w.source.length;break;default:{const E=`Unexpected token in block scalar header: ${w.type}`;r(w,"UNEXPECTED_TOKEN",E);const x=w.source;x&&typeof x=="string"&&(y+=x.length)}}}return{mode:o,indent:u,chomp:f,comment:m,length:y}}function wC(n){const e=n.split(/\n( *)/),i=e[0],r=i.match(/^( *)/),o=[r!=null&&r[1]?[r[1],i.slice(r[1].length)]:["",i]];for(let u=1;u<e.length;u+=2)o.push([e[u],e[u+1]]);return o}function MS(n,e,i){const{offset:r,type:l,source:o,end:u}=n;let f,d;const g=(S,w,E)=>i(r+S,w,E);switch(l){case"scalar":f=de.PLAIN,d=xC(o,g);break;case"single-quoted-scalar":f=de.QUOTE_SINGLE,d=_C(o,g);break;case"double-quoted-scalar":f=de.QUOTE_DOUBLE,d=EC(o,g);break;default:return i(n,"UNEXPECTED_TOKEN",`Expected a flow scalar value, but found: ${l}`),{value:"",type:null,comment:"",range:[r,r+o.length,r+o.length]}}const m=r+o.length,y=dl(u,m,e,i);return{value:d,type:f,comment:y.comment,range:[r,m,y.offset]}}function xC(n,e){let i="";switch(n[0]){case" ":i="a tab character";break;case",":i="flow indicator character ,";break;case"%":i="directive indicator character %";break;case"|":case">":{i=`block scalar indicator ${n[0]}`;break}case"@":case"`":{i=`reserved character ${n[0]}`;break}}return i&&e(0,"BAD_SCALAR_START",`Plain value cannot start with ${i}`),OS(n)}function _C(n,e){return(n[n.length-1]!=="'"||n.length===1)&&e(n.length,"MISSING_CHAR","Missing closing 'quote"),OS(n.slice(1,-1)).replace(/''/g,"'")}function OS(n){let e,i;try{e=new RegExp(`(.*?)(?<![ ])[ ]*\r?
208
+ `,"sy"),i=new RegExp(`[ ]*(.*?)(?:(?<![ ])[ ]*)?\r?
209
+ `,"sy")}catch{e=/(.*?)[ \t]*\r?\n/sy,i=/[ \t]*(.*?)[ \t]*\r?\n/sy}let r=e.exec(n);if(!r)return n;let l=r[1],o=" ",u=e.lastIndex;for(i.lastIndex=u;r=i.exec(n);)r[1]===""?o===`
210
+ `?l+=o:o=`
211
+ `:(l+=o+r[1],o=" "),u=i.lastIndex;const f=/[ \t]*(.*)/sy;return f.lastIndex=u,r=f.exec(n),l+o+((r==null?void 0:r[1])??"")}function EC(n,e){let i="";for(let r=1;r<n.length-1;++r){const l=n[r];if(!(l==="\r"&&n[r+1]===`
212
+ `))if(l===`
213
+ `){const{fold:o,offset:u}=TC(n,r);i+=o,r=u}else if(l==="\\"){let o=n[++r];const u=AC[o];if(u)i+=u;else if(o===`
214
+ `)for(o=n[r+1];o===" "||o===" ";)o=n[++r+1];else if(o==="\r"&&n[r+1]===`
215
+ `)for(o=n[++r+1];o===" "||o===" ";)o=n[++r+1];else if(o==="x"||o==="u"||o==="U"){const f={x:2,u:4,U:8}[o];i+=CC(n,r+1,f,e),r+=f}else{const f=n.substr(r-1,2);e(r-1,"BAD_DQ_ESCAPE",`Invalid escape sequence ${f}`),i+=f}}else if(l===" "||l===" "){const o=r;let u=n[r+1];for(;u===" "||u===" ";)u=n[++r+1];u!==`
216
+ `&&!(u==="\r"&&n[r+2]===`
217
+ `)&&(i+=r>o?n.slice(o,r+1):l)}else i+=l}return(n[n.length-1]!=='"'||n.length===1)&&e(n.length,"MISSING_CHAR",'Missing closing "quote'),i}function TC(n,e){let i="",r=n[e+1];for(;(r===" "||r===" "||r===`
218
+ `||r==="\r")&&!(r==="\r"&&n[e+2]!==`
219
+ `);)r===`
220
+ `&&(i+=`
221
+ `),e+=1,r=n[e+1];return i||(i=" "),{fold:i,offset:e}}const AC={0:"\0",a:"\x07",b:"\b",e:"\x1B",f:"\f",n:`
222
+ `,r:"\r",t:" ",v:"\v",N:"…",_:" ",L:"\u2028",P:"\u2029"," ":" ",'"':'"',"/":"/","\\":"\\"," ":" "};function CC(n,e,i,r){const l=n.substr(e,i),u=l.length===i&&/^[0-9a-fA-F]+$/.test(l)?parseInt(l,16):NaN;if(isNaN(u)){const f=n.substr(e-2,i+2);return r(e-2,"BAD_DQ_ESCAPE",`Invalid escape sequence ${f}`),f}return String.fromCodePoint(u)}function jS(n,e,i,r){const{value:l,type:o,comment:u,range:f}=e.type==="block-scalar"?kS(n,e,r):MS(e,n.options.strict,r),d=i?n.directives.tagName(i.source,y=>r(i,"TAG_RESOLVE_FAILED",y)):null;let g;n.options.stringKeys&&n.atKey?g=n.schema[jn]:d?g=NC(n.schema,l,d,i,r):e.type==="scalar"?g=kC(n,l,e,r):g=n.schema[jn];let m;try{const y=g.resolve(l,S=>r(i??e,"TAG_RESOLVE_FAILED",S),n.options);m=ze(y)?y:new de(y)}catch(y){const S=y instanceof Error?y.message:String(y);r(i??e,"TAG_RESOLVE_FAILED",S),m=new de(l)}return m.range=f,m.source=l,o&&(m.type=o),d&&(m.tag=d),g.format&&(m.format=g.format),u&&(m.comment=u),m}function NC(n,e,i,r,l){var f;if(i==="!")return n[jn];const o=[];for(const d of n.tags)if(!d.collection&&d.tag===i)if(d.default&&d.test)o.push(d);else return d;for(const d of o)if((f=d.test)!=null&&f.test(e))return d;const u=n.knownTags[i];return u&&!u.collection?(n.tags.push(Object.assign({},u,{default:!1,test:void 0})),u):(l(r,"TAG_RESOLVE_FAILED",`Unresolved tag: ${i}`,i!=="tag:yaml.org,2002:str"),n[jn])}function kC({atKey:n,directives:e,schema:i},r,l,o){const u=i.tags.find(f=>{var d;return(f.default===!0||n&&f.default==="key")&&((d=f.test)==null?void 0:d.test(r))})||i[jn];if(i.compat){const f=i.compat.find(d=>{var g;return d.default&&((g=d.test)==null?void 0:g.test(r))})??i[jn];if(u.tag!==f.tag){const d=e.tagString(u.tag),g=e.tagString(f.tag),m=`Value may be parsed as either ${d} or ${g}`;o(l,"TAG_RESOLVE_FAILED",m,!0)}}return u}function MC(n,e,i){if(e){i??(i=e.length);for(let r=i-1;r>=0;--r){let l=e[r];switch(l.type){case"space":case"comment":case"newline":n-=l.source.length;continue}for(l=e[++r];(l==null?void 0:l.type)==="space";)n+=l.source.length,l=e[++r];break}}return n}const OC={composeNode:LS,composeEmptyNode:Kd};function LS(n,e,i,r){const l=n.atKey,{spaceBefore:o,comment:u,anchor:f,tag:d}=i;let g,m=!0;switch(e.type){case"alias":g=jC(n,e,r),(f||d)&&r(e,"ALIAS_PROPS","An alias node must not specify any properties");break;case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":case"block-scalar":g=jS(n,e,d,r),f&&(g.anchor=f.source.substring(1));break;case"block-map":case"block-seq":case"flow-collection":try{g=vC(OC,n,e,i,r),f&&(g.anchor=f.source.substring(1))}catch(y){const S=y instanceof Error?y.message:String(y);r(e,"RESOURCE_EXHAUSTION",S)}break;default:{const y=e.type==="error"?e.message:`Unsupported token (type: ${e.type})`;r(e,"UNEXPECTED_TOKEN",y),m=!1}}return g??(g=Kd(n,e.offset,void 0,null,i,r)),f&&g.anchor===""&&r(f,"BAD_ALIAS","Anchor cannot be an empty string"),l&&n.options.stringKeys&&(!ze(g)||typeof g.value!="string"||g.tag&&g.tag!=="tag:yaml.org,2002:str")&&r(d??e,"NON_STRING_KEY","With stringKeys, all keys must be strings"),o&&(g.spaceBefore=!0),u&&(e.type==="scalar"&&e.source===""?g.comment=u:g.commentBefore=u),n.options.keepSourceTokens&&m&&(g.srcToken=e),g}function Kd(n,e,i,r,{spaceBefore:l,comment:o,anchor:u,tag:f,end:d},g){const m={type:"scalar",offset:MC(e,i,r),indent:-1,source:""},y=jS(n,m,f,g);return u&&(y.anchor=u.source.substring(1),y.anchor===""&&g(u,"BAD_ALIAS","Anchor cannot be an empty string")),l&&(y.spaceBefore=!0),o&&(y.comment=o,y.range[2]=d),y}function jC({options:n},{offset:e,source:i,end:r},l){const o=new Ec(i.substring(1));o.source===""&&l(e,"BAD_ALIAS","Alias cannot be an empty string"),o.source.endsWith(":")&&l(e+i.length-1,"BAD_ALIAS","Alias ending in : is ambiguous",!0);const u=e+i.length,f=dl(r,u,n.strict,l);return o.range=[e,u,f.offset],f.comment&&(o.comment=f.comment),o}function LC(n,e,{offset:i,start:r,value:l,end:o},u){const f=Object.assign({_directives:e},n),d=new Br(void 0,f),g={atKey:!1,atRoot:!0,directives:d.directives,options:d.options,schema:d.schema},m=kr(r,{indicator:"doc-start",next:l??(o==null?void 0:o[0]),offset:i,onError:u,parentIndent:0,startOnNewline:!0});m.found&&(d.directives.docStart=!0,l&&(l.type==="block-map"||l.type==="block-seq")&&!m.hasNewline&&u(m.end,"MISSING_CHAR","Block collection cannot start on same line with directives-end marker")),d.contents=l?LS(g,l,m,u):Kd(g,m.end,r,null,m,u);const y=d.contents.range[2],S=dl(o,y,!1,u);return S.comment&&(d.comment=S.comment),d.range=[i,y,S.offset],d}function qa(n){if(typeof n=="number")return[n,n+1];if(Array.isArray(n))return n.length===2?n:[n[0],n[1]];const{offset:e,source:i}=n;return[e,e+(typeof i=="string"?i.length:1)]}function Z0(n){var l;let e="",i=!1,r=!1;for(let o=0;o<n.length;++o){const u=n[o];switch(u[0]){case"#":e+=(e===""?"":r?`
223
+
224
+ `:`
225
+ `)+(u.substring(1)||" "),i=!0,r=!1;break;case"%":((l=n[o+1])==null?void 0:l[0])!=="#"&&(o+=1),i=!1;break;default:i||(r=!0),i=!1}}return{comment:e,afterEmptyLine:r}}class Xd{constructor(e={}){this.doc=null,this.atDirectives=!1,this.prelude=[],this.errors=[],this.warnings=[],this.onError=(i,r,l,o)=>{const u=qa(i);o?this.warnings.push(new CS(u,r,l)):this.errors.push(new fs(u,r,l))},this.directives=new Ot({version:e.version||"1.2"}),this.options=e}decorate(e,i){const{comment:r,afterEmptyLine:l}=Z0(this.prelude);if(r){const o=e.contents;if(i)e.comment=e.comment?`${e.comment}
226
+ ${r}`:r;else if(l||e.directives.docStart||!o)e.commentBefore=r;else if(Ke(o)&&!o.flow&&o.items.length>0){let u=o.items[0];Ve(u)&&(u=u.key);const f=u.commentBefore;u.commentBefore=f?`${r}
227
+ ${f}`:r}else{const u=o.commentBefore;o.commentBefore=u?`${r}
228
+ ${u}`:r}}i?(Array.prototype.push.apply(e.errors,this.errors),Array.prototype.push.apply(e.warnings,this.warnings)):(e.errors=this.errors,e.warnings=this.warnings),this.prelude=[],this.errors=[],this.warnings=[]}streamInfo(){return{comment:Z0(this.prelude).comment,directives:this.directives,errors:this.errors,warnings:this.warnings}}*compose(e,i=!1,r=-1){for(const l of e)yield*this.next(l);yield*this.end(i,r)}*next(e){switch(e.type){case"directive":this.directives.add(e.source,(i,r,l)=>{const o=qa(e);o[0]+=i,this.onError(o,"BAD_DIRECTIVE",r,l)}),this.prelude.push(e.source),this.atDirectives=!0;break;case"document":{const i=LC(this.options,this.directives,e,this.onError);this.atDirectives&&!i.directives.docStart&&this.onError(e,"MISSING_CHAR","Missing directives-end/doc-start indicator line"),this.decorate(i,!1),this.doc&&(yield this.doc),this.doc=i,this.atDirectives=!1;break}case"byte-order-mark":case"space":break;case"comment":case"newline":this.prelude.push(e.source);break;case"error":{const i=e.source?`${e.message}: ${JSON.stringify(e.source)}`:e.message,r=new fs(qa(e),"UNEXPECTED_TOKEN",i);this.atDirectives||!this.doc?this.errors.push(r):this.doc.errors.push(r);break}case"doc-end":{if(!this.doc){const r="Unexpected doc-end without preceding document";this.errors.push(new fs(qa(e),"UNEXPECTED_TOKEN",r));break}this.doc.directives.docEnd=!0;const i=dl(e.end,e.offset+e.source.length,this.doc.options.strict,this.onError);if(this.decorate(this.doc,!0),i.comment){const r=this.doc.comment;this.doc.comment=r?`${r}
229
+ ${i.comment}`:i.comment}this.doc.range[2]=i.offset;break}default:this.errors.push(new fs(qa(e),"UNEXPECTED_TOKEN",`Unsupported token ${e.type}`))}}*end(e=!1,i=-1){if(this.doc)this.decorate(this.doc,!0),yield this.doc,this.doc=null;else if(e){const r=Object.assign({_directives:this.directives},this.options),l=new Br(void 0,r);this.atDirectives&&this.onError(i,"MISSING_CHAR","Missing directives-end indicator line"),l.range=[0,i,i],this.decorate(l,!1),yield l}}}function RC(n,e=!0,i){if(n){const r=(l,o,u)=>{const f=typeof l=="number"?l:Array.isArray(l)?l[0]:l.offset;if(i)i(f,o,u);else throw new fs([f,f+1],o,u)};switch(n.type){case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return MS(n,e,r);case"block-scalar":return kS({options:{strict:e}},n,r)}}return null}function DC(n,e){const{implicitKey:i=!1,indent:r,inFlow:l=!1,offset:o=-1,type:u="PLAIN"}=e,f=fl({type:u,value:n},{implicitKey:i,indent:r>0?" ".repeat(r):"",inFlow:l,options:{blockQuote:!0,lineWidth:-1}}),d=e.end??[{type:"newline",offset:-1,indent:r,source:`
230
+ `}];switch(f[0]){case"|":case">":{const g=f.indexOf(`
231
+ `),m=f.substring(0,g),y=f.substring(g+1)+`
232
+ `,S=[{type:"block-scalar-header",offset:o,indent:r,source:m}];return RS(S,d)||S.push({type:"newline",offset:-1,indent:r,source:`
233
+ `}),{type:"block-scalar",offset:o,indent:r,props:S,source:y}}case'"':return{type:"double-quoted-scalar",offset:o,indent:r,source:f,end:d};case"'":return{type:"single-quoted-scalar",offset:o,indent:r,source:f,end:d};default:return{type:"scalar",offset:o,indent:r,source:f,end:d}}}function zC(n,e,i={}){let{afterKey:r=!1,implicitKey:l=!1,inFlow:o=!1,type:u}=i,f="indent"in n?n.indent:null;if(r&&typeof f=="number"&&(f+=2),!u)switch(n.type){case"single-quoted-scalar":u="QUOTE_SINGLE";break;case"double-quoted-scalar":u="QUOTE_DOUBLE";break;case"block-scalar":{const g=n.props[0];if(g.type!=="block-scalar-header")throw new Error("Invalid block scalar header");u=g.source[0]===">"?"BLOCK_FOLDED":"BLOCK_LITERAL";break}default:u="PLAIN"}const d=fl({type:u,value:e},{implicitKey:l||f===null,indent:f!==null&&f>0?" ".repeat(f):"",inFlow:o,options:{blockQuote:!0,lineWidth:-1}});switch(d[0]){case"|":case">":UC(n,d);break;case'"':Eh(n,d,"double-quoted-scalar");break;case"'":Eh(n,d,"single-quoted-scalar");break;default:Eh(n,d,"scalar")}}function UC(n,e){const i=e.indexOf(`
234
+ `),r=e.substring(0,i),l=e.substring(i+1)+`
235
+ `;if(n.type==="block-scalar"){const o=n.props[0];if(o.type!=="block-scalar-header")throw new Error("Invalid block scalar header");o.source=r,n.source=l}else{const{offset:o}=n,u="indent"in n?n.indent:-1,f=[{type:"block-scalar-header",offset:o,indent:u,source:r}];RS(f,"end"in n?n.end:void 0)||f.push({type:"newline",offset:-1,indent:u,source:`
236
+ `});for(const d of Object.keys(n))d!=="type"&&d!=="offset"&&delete n[d];Object.assign(n,{type:"block-scalar",indent:u,props:f,source:l})}}function RS(n,e){if(e)for(const i of e)switch(i.type){case"space":case"comment":n.push(i);break;case"newline":return n.push(i),!0}return!1}function Eh(n,e,i){switch(n.type){case"scalar":case"double-quoted-scalar":case"single-quoted-scalar":n.type=i,n.source=e;break;case"block-scalar":{const r=n.props.slice(1);let l=e.length;n.props[0].type==="block-scalar-header"&&(l-=n.props[0].source.length);for(const o of r)o.offset+=l;delete n.props,Object.assign(n,{type:i,source:e,end:r});break}case"block-map":case"block-seq":{const l={type:"newline",offset:n.offset+e.length,indent:n.indent,source:`
237
+ `};delete n.items,Object.assign(n,{type:i,source:e,end:[l]});break}default:{const r="indent"in n?n.indent:-1,l="end"in n&&Array.isArray(n.end)?n.end.filter(o=>o.type==="space"||o.type==="comment"||o.type==="newline"):[];for(const o of Object.keys(n))o!=="type"&&o!=="offset"&&delete n[o];Object.assign(n,{type:i,indent:r,source:e,end:l})}}}const HC=n=>"type"in n?dc(n):ec(n);function dc(n){switch(n.type){case"block-scalar":{let e="";for(const i of n.props)e+=dc(i);return e+n.source}case"block-map":case"block-seq":{let e="";for(const i of n.items)e+=ec(i);return e}case"flow-collection":{let e=n.start.source;for(const i of n.items)e+=ec(i);for(const i of n.end)e+=i.source;return e}case"document":{let e=ec(n);if(n.end)for(const i of n.end)e+=i.source;return e}default:{let e=n.source;if("end"in n&&n.end)for(const i of n.end)e+=i.source;return e}}}function ec({start:n,key:e,sep:i,value:r}){let l="";for(const o of n)l+=o.source;if(e&&(l+=dc(e)),i)for(const o of i)l+=o.source;return r&&(l+=dc(r)),l}const Ph=Symbol("break visit"),BC=Symbol("skip children"),DS=Symbol("remove item");function hs(n,e){"type"in n&&n.type==="document"&&(n={start:n.start,value:n.value}),zS(Object.freeze([]),n,e)}hs.BREAK=Ph;hs.SKIP=BC;hs.REMOVE=DS;hs.itemAtPath=(n,e)=>{let i=n;for(const[r,l]of e){const o=i==null?void 0:i[r];if(o&&"items"in o)i=o.items[l];else return}return i};hs.parentCollection=(n,e)=>{const i=hs.itemAtPath(n,e.slice(0,-1)),r=e[e.length-1][0],l=i==null?void 0:i[r];if(l&&"items"in l)return l;throw new Error("Parent collection not found")};function zS(n,e,i){let r=i(e,n);if(typeof r=="symbol")return r;for(const l of["key","value"]){const o=e[l];if(o&&"items"in o){for(let u=0;u<o.items.length;++u){const f=zS(Object.freeze(n.concat([[l,u]])),o.items[u],i);if(typeof f=="number")u=f-1;else{if(f===Ph)return Ph;f===DS&&(o.items.splice(u,1),u-=1)}}typeof r=="function"&&l==="key"&&(r=r(e,n))}}return typeof r=="function"?r(e,n):r}const Rc="\uFEFF",Dc="",zc="",ol="",qC=n=>!!n&&"items"in n,$C=n=>!!n&&(n.type==="scalar"||n.type==="single-quoted-scalar"||n.type==="double-quoted-scalar"||n.type==="block-scalar");function IC(n){switch(n){case Rc:return"<BOM>";case Dc:return"<DOC>";case zc:return"<FLOW_END>";case ol:return"<SCALAR>";default:return JSON.stringify(n)}}function US(n){switch(n){case Rc:return"byte-order-mark";case Dc:return"doc-mode";case zc:return"flow-error-end";case ol:return"scalar";case"---":return"doc-start";case"...":return"doc-end";case"":case`
238
+ `:case`\r
239
+ `:return"newline";case"-":return"seq-item-ind";case"?":return"explicit-key-ind";case":":return"map-value-ind";case"{":return"flow-map-start";case"}":return"flow-map-end";case"[":return"flow-seq-start";case"]":return"flow-seq-end";case",":return"comma"}switch(n[0]){case" ":case" ":return"space";case"#":return"comment";case"%":return"directive-line";case"*":return"alias";case"&":return"anchor";case"!":return"tag";case"'":return"single-quoted-scalar";case'"':return"double-quoted-scalar";case"|":case">":return"block-scalar-header"}return null}const VC=Object.freeze(Object.defineProperty({__proto__:null,BOM:Rc,DOCUMENT:Dc,FLOW_END:zc,SCALAR:ol,createScalarToken:DC,isCollection:qC,isScalar:$C,prettyToken:IC,resolveAsScalar:RC,setScalarValue:zC,stringify:HC,tokenType:US,visit:hs},Symbol.toStringTag,{value:"Module"}));function xn(n){switch(n){case void 0:case" ":case`
240
+ `:case"\r":case" ":return!0;default:return!1}}const W0=new Set("0123456789ABCDEFabcdef"),GC=new Set("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-#;/?:@&=+$_.!~*'()"),$o=new Set(",[]{}"),KC=new Set(` ,[]{}
241
+ \r `),Th=n=>!n||KC.has(n);class HS{constructor(){this.atEnd=!1,this.blockScalarIndent=-1,this.blockScalarKeep=!1,this.buffer="",this.flowKey=!1,this.flowLevel=0,this.indentNext=0,this.indentValue=0,this.lineEndPos=null,this.next=null,this.pos=0}*lex(e,i=!1){if(e){if(typeof e!="string")throw TypeError("source is not a string");this.buffer=this.buffer?this.buffer+e:e,this.lineEndPos=null}this.atEnd=!i;let r=this.next??"stream";for(;r&&(i||this.hasChars(1));)r=yield*this.parseNext(r)}atLineEnd(){let e=this.pos,i=this.buffer[e];for(;i===" "||i===" ";)i=this.buffer[++e];return!i||i==="#"||i===`
242
+ `?!0:i==="\r"?this.buffer[e+1]===`
243
+ `:!1}charAt(e){return this.buffer[this.pos+e]}continueScalar(e){let i=this.buffer[e];if(this.indentNext>0){let r=0;for(;i===" ";)i=this.buffer[++r+e];if(i==="\r"){const l=this.buffer[r+e+1];if(l===`
244
+ `||!l&&!this.atEnd)return e+r+1}return i===`
245
+ `||r>=this.indentNext||!i&&!this.atEnd?e+r:-1}if(i==="-"||i==="."){const r=this.buffer.substr(e,3);if((r==="---"||r==="...")&&xn(this.buffer[e+3]))return-1}return e}getLine(){let e=this.lineEndPos;return(typeof e!="number"||e!==-1&&e<this.pos)&&(e=this.buffer.indexOf(`
246
+ `,this.pos),this.lineEndPos=e),e===-1?this.atEnd?this.buffer.substring(this.pos):null:(this.buffer[e-1]==="\r"&&(e-=1),this.buffer.substring(this.pos,e))}hasChars(e){return this.pos+e<=this.buffer.length}setNext(e){return this.buffer=this.buffer.substring(this.pos),this.pos=0,this.lineEndPos=null,this.next=e,null}peek(e){return this.buffer.substr(this.pos,e)}*parseNext(e){switch(e){case"stream":return yield*this.parseStream();case"line-start":return yield*this.parseLineStart();case"block-start":return yield*this.parseBlockStart();case"doc":return yield*this.parseDocument();case"flow":return yield*this.parseFlowCollection();case"quoted-scalar":return yield*this.parseQuotedScalar();case"block-scalar":return yield*this.parseBlockScalar();case"plain-scalar":return yield*this.parsePlainScalar()}}*parseStream(){let e=this.getLine();if(e===null)return this.setNext("stream");if(e[0]===Rc&&(yield*this.pushCount(1),e=e.substring(1)),e[0]==="%"){let i=e.length,r=e.indexOf("#");for(;r!==-1;){const o=e[r-1];if(o===" "||o===" "){i=r-1;break}else r=e.indexOf("#",r+1)}for(;;){const o=e[i-1];if(o===" "||o===" ")i-=1;else break}const l=(yield*this.pushCount(i))+(yield*this.pushSpaces(!0));return yield*this.pushCount(e.length-l),this.pushNewline(),"stream"}if(this.atLineEnd()){const i=yield*this.pushSpaces(!0);return yield*this.pushCount(e.length-i),yield*this.pushNewline(),"stream"}return yield Dc,yield*this.parseLineStart()}*parseLineStart(){const e=this.charAt(0);if(!e&&!this.atEnd)return this.setNext("line-start");if(e==="-"||e==="."){if(!this.atEnd&&!this.hasChars(4))return this.setNext("line-start");const i=this.peek(3);if((i==="---"||i==="...")&&xn(this.charAt(3)))return yield*this.pushCount(3),this.indentValue=0,this.indentNext=0,i==="---"?"doc":"stream"}return this.indentValue=yield*this.pushSpaces(!1),this.indentNext>this.indentValue&&!xn(this.charAt(1))&&(this.indentNext=this.indentValue),yield*this.parseBlockStart()}*parseBlockStart(){const[e,i]=this.peek(2);if(!i&&!this.atEnd)return this.setNext("block-start");if((e==="-"||e==="?"||e===":")&&xn(i)){const r=(yield*this.pushCount(1))+(yield*this.pushSpaces(!0));return this.indentNext=this.indentValue+1,this.indentValue+=r,yield*this.parseBlockStart()}return"doc"}*parseDocument(){yield*this.pushSpaces(!0);const e=this.getLine();if(e===null)return this.setNext("doc");let i=yield*this.pushIndicators();switch(e[i]){case"#":yield*this.pushCount(e.length-i);case void 0:return yield*this.pushNewline(),yield*this.parseLineStart();case"{":case"[":return yield*this.pushCount(1),this.flowKey=!1,this.flowLevel=1,"flow";case"}":case"]":return yield*this.pushCount(1),"doc";case"*":return yield*this.pushUntil(Th),"doc";case'"':case"'":return yield*this.parseQuotedScalar();case"|":case">":return i+=yield*this.parseBlockScalarHeader(),i+=yield*this.pushSpaces(!0),yield*this.pushCount(e.length-i),yield*this.pushNewline(),yield*this.parseBlockScalar();default:return yield*this.parsePlainScalar()}}*parseFlowCollection(){let e,i,r=-1;do e=yield*this.pushNewline(),e>0?(i=yield*this.pushSpaces(!1),this.indentValue=r=i):i=0,i+=yield*this.pushSpaces(!0);while(e+i>0);const l=this.getLine();if(l===null)return this.setNext("flow");if((r!==-1&&r<this.indentNext&&l[0]!=="#"||r===0&&(l.startsWith("---")||l.startsWith("..."))&&xn(l[3]))&&!(r===this.indentNext-1&&this.flowLevel===1&&(l[0]==="]"||l[0]==="}")))return this.flowLevel=0,yield zc,yield*this.parseLineStart();let o=0;for(;l[o]===",";)o+=yield*this.pushCount(1),o+=yield*this.pushSpaces(!0),this.flowKey=!1;switch(o+=yield*this.pushIndicators(),l[o]){case void 0:return"flow";case"#":return yield*this.pushCount(l.length-o),"flow";case"{":case"[":return yield*this.pushCount(1),this.flowKey=!1,this.flowLevel+=1,"flow";case"}":case"]":return yield*this.pushCount(1),this.flowKey=!0,this.flowLevel-=1,this.flowLevel?"flow":"doc";case"*":return yield*this.pushUntil(Th),"flow";case'"':case"'":return this.flowKey=!0,yield*this.parseQuotedScalar();case":":{const u=this.charAt(1);if(this.flowKey||xn(u)||u===",")return this.flowKey=!1,yield*this.pushCount(1),yield*this.pushSpaces(!0),"flow"}default:return this.flowKey=!1,yield*this.parsePlainScalar()}}*parseQuotedScalar(){const e=this.charAt(0);let i=this.buffer.indexOf(e,this.pos+1);if(e==="'")for(;i!==-1&&this.buffer[i+1]==="'";)i=this.buffer.indexOf("'",i+2);else for(;i!==-1;){let o=0;for(;this.buffer[i-1-o]==="\\";)o+=1;if(o%2===0)break;i=this.buffer.indexOf('"',i+1)}const r=this.buffer.substring(0,i);let l=r.indexOf(`
247
+ `,this.pos);if(l!==-1){for(;l!==-1;){const o=this.continueScalar(l+1);if(o===-1)break;l=r.indexOf(`
248
+ `,o)}l!==-1&&(i=l-(r[l-1]==="\r"?2:1))}if(i===-1){if(!this.atEnd)return this.setNext("quoted-scalar");i=this.buffer.length}return yield*this.pushToIndex(i+1,!1),this.flowLevel?"flow":"doc"}*parseBlockScalarHeader(){this.blockScalarIndent=-1,this.blockScalarKeep=!1;let e=this.pos;for(;;){const i=this.buffer[++e];if(i==="+")this.blockScalarKeep=!0;else if(i>"0"&&i<="9")this.blockScalarIndent=Number(i)-1;else if(i!=="-")break}return yield*this.pushUntil(i=>xn(i)||i==="#")}*parseBlockScalar(){let e=this.pos-1,i=0,r;e:for(let o=this.pos;r=this.buffer[o];++o)switch(r){case" ":i+=1;break;case`
249
+ `:e=o,i=0;break;case"\r":{const u=this.buffer[o+1];if(!u&&!this.atEnd)return this.setNext("block-scalar");if(u===`
250
+ `)break}default:break e}if(!r&&!this.atEnd)return this.setNext("block-scalar");if(i>=this.indentNext){this.blockScalarIndent===-1?this.indentNext=i:this.indentNext=this.blockScalarIndent+(this.indentNext===0?1:this.indentNext);do{const o=this.continueScalar(e+1);if(o===-1)break;e=this.buffer.indexOf(`
251
+ `,o)}while(e!==-1);if(e===-1){if(!this.atEnd)return this.setNext("block-scalar");e=this.buffer.length}}let l=e+1;for(r=this.buffer[l];r===" ";)r=this.buffer[++l];if(r===" "){for(;r===" "||r===" "||r==="\r"||r===`
252
+ `;)r=this.buffer[++l];e=l-1}else if(!this.blockScalarKeep)do{let o=e-1,u=this.buffer[o];u==="\r"&&(u=this.buffer[--o]);const f=o;for(;u===" ";)u=this.buffer[--o];if(u===`
253
+ `&&o>=this.pos&&o+1+i>f)e=o;else break}while(!0);return yield ol,yield*this.pushToIndex(e+1,!0),yield*this.parseLineStart()}*parsePlainScalar(){const e=this.flowLevel>0;let i=this.pos-1,r=this.pos-1,l;for(;l=this.buffer[++r];)if(l===":"){const o=this.buffer[r+1];if(xn(o)||e&&$o.has(o))break;i=r}else if(xn(l)){let o=this.buffer[r+1];if(l==="\r"&&(o===`
254
+ `?(r+=1,l=`
255
+ `,o=this.buffer[r+1]):i=r),o==="#"||e&&$o.has(o))break;if(l===`
256
+ `){const u=this.continueScalar(r+1);if(u===-1)break;r=Math.max(r,u-2)}}else{if(e&&$o.has(l))break;i=r}return!l&&!this.atEnd?this.setNext("plain-scalar"):(yield ol,yield*this.pushToIndex(i+1,!0),e?"flow":"doc")}*pushCount(e){return e>0?(yield this.buffer.substr(this.pos,e),this.pos+=e,e):0}*pushToIndex(e,i){const r=this.buffer.slice(this.pos,e);return r?(yield r,this.pos+=r.length,r.length):(i&&(yield""),0)}*pushIndicators(){switch(this.charAt(0)){case"!":return(yield*this.pushTag())+(yield*this.pushSpaces(!0))+(yield*this.pushIndicators());case"&":return(yield*this.pushUntil(Th))+(yield*this.pushSpaces(!0))+(yield*this.pushIndicators());case"-":case"?":case":":{const e=this.flowLevel>0,i=this.charAt(1);if(xn(i)||e&&$o.has(i))return e?this.flowKey&&(this.flowKey=!1):this.indentNext=this.indentValue+1,(yield*this.pushCount(1))+(yield*this.pushSpaces(!0))+(yield*this.pushIndicators())}}return 0}*pushTag(){if(this.charAt(1)==="<"){let e=this.pos+2,i=this.buffer[e];for(;!xn(i)&&i!==">";)i=this.buffer[++e];return yield*this.pushToIndex(i===">"?e+1:e,!1)}else{let e=this.pos+1,i=this.buffer[e];for(;i;)if(GC.has(i))i=this.buffer[++e];else if(i==="%"&&W0.has(this.buffer[e+1])&&W0.has(this.buffer[e+2]))i=this.buffer[e+=3];else break;return yield*this.pushToIndex(e,!1)}}*pushNewline(){const e=this.buffer[this.pos];return e===`
257
+ `?yield*this.pushCount(1):e==="\r"&&this.charAt(1)===`
258
+ `?yield*this.pushCount(2):0}*pushSpaces(e){let i=this.pos-1,r;do r=this.buffer[++i];while(r===" "||e&&r===" ");const l=i-this.pos;return l>0&&(yield this.buffer.substr(this.pos,l),this.pos=i),l}*pushUntil(e){let i=this.pos,r=this.buffer[i];for(;!e(r);)r=this.buffer[++i];return yield*this.pushToIndex(i,!1)}}class BS{constructor(){this.lineStarts=[],this.addNewLine=e=>this.lineStarts.push(e),this.linePos=e=>{let i=0,r=this.lineStarts.length;for(;i<r;){const o=i+r>>1;this.lineStarts[o]<e?i=o+1:r=o}if(this.lineStarts[i]===e)return{line:i+1,col:1};if(i===0)return{line:0,col:e};const l=this.lineStarts[i-1];return{line:i,col:e-l+1}}}}function ji(n,e){for(let i=0;i<n.length;++i)if(n[i].type===e)return!0;return!1}function eb(n){for(let e=0;e<n.length;++e)switch(n[e].type){case"space":case"comment":case"newline":break;default:return e}return-1}function qS(n){switch(n==null?void 0:n.type){case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":case"flow-collection":return!0;default:return!1}}function Io(n){switch(n.type){case"document":return n.start;case"block-map":{const e=n.items[n.items.length-1];return e.sep??e.start}case"block-seq":return n.items[n.items.length-1].start;default:return[]}}function hr(n){var i;if(n.length===0)return[];let e=n.length;e:for(;--e>=0;)switch(n[e].type){case"doc-start":case"explicit-key-ind":case"map-value-ind":case"seq-item-ind":case"newline":break e}for(;((i=n[++e])==null?void 0:i.type)==="space";);return n.splice(e,n.length)}function tb(n){if(n.start.type==="flow-seq-start")for(const e of n.items)e.sep&&!e.value&&!ji(e.start,"explicit-key-ind")&&!ji(e.sep,"map-value-ind")&&(e.key&&(e.value=e.key),delete e.key,qS(e.value)?e.value.end?Array.prototype.push.apply(e.value.end,e.sep):e.value.end=e.sep:Array.prototype.push.apply(e.start,e.sep),delete e.sep)}class Yd{constructor(e){this.atNewLine=!0,this.atScalar=!1,this.indent=0,this.offset=0,this.onKeyLine=!1,this.stack=[],this.source="",this.type="",this.lexer=new HS,this.onNewLine=e}*parse(e,i=!1){this.onNewLine&&this.offset===0&&this.onNewLine(0);for(const r of this.lexer.lex(e,i))yield*this.next(r);i||(yield*this.end())}*next(e){if(this.source=e,this.atScalar){this.atScalar=!1,yield*this.step(),this.offset+=e.length;return}const i=US(e);if(i)if(i==="scalar")this.atNewLine=!1,this.atScalar=!0,this.type="scalar";else{switch(this.type=i,yield*this.step(),i){case"newline":this.atNewLine=!0,this.indent=0,this.onNewLine&&this.onNewLine(this.offset+e.length);break;case"space":this.atNewLine&&e[0]===" "&&(this.indent+=e.length);break;case"explicit-key-ind":case"map-value-ind":case"seq-item-ind":this.atNewLine&&(this.indent+=e.length);break;case"doc-mode":case"flow-error-end":return;default:this.atNewLine=!1}this.offset+=e.length}else{const r=`Not a YAML token: ${e}`;yield*this.pop({type:"error",offset:this.offset,message:r,source:e}),this.offset+=e.length}}*end(){for(;this.stack.length>0;)yield*this.pop()}get sourceToken(){return{type:this.type,offset:this.offset,indent:this.indent,source:this.source}}*step(){const e=this.peek(1);if(this.type==="doc-end"&&(e==null?void 0:e.type)!=="doc-end"){for(;this.stack.length>0;)yield*this.pop();this.stack.push({type:"doc-end",offset:this.offset,source:this.source});return}if(!e)return yield*this.stream();switch(e.type){case"document":return yield*this.document(e);case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return yield*this.scalar(e);case"block-scalar":return yield*this.blockScalar(e);case"block-map":return yield*this.blockMap(e);case"block-seq":return yield*this.blockSequence(e);case"flow-collection":return yield*this.flowCollection(e);case"doc-end":return yield*this.documentEnd(e)}yield*this.pop()}peek(e){return this.stack[this.stack.length-e]}*pop(e){const i=e??this.stack.pop();if(!i)yield{type:"error",offset:this.offset,source:"",message:"Tried to pop an empty stack"};else if(this.stack.length===0)yield i;else{const r=this.peek(1);switch(i.type==="block-scalar"?i.indent="indent"in r?r.indent:0:i.type==="flow-collection"&&r.type==="document"&&(i.indent=0),i.type==="flow-collection"&&tb(i),r.type){case"document":r.value=i;break;case"block-scalar":r.props.push(i);break;case"block-map":{const l=r.items[r.items.length-1];if(l.value){r.items.push({start:[],key:i,sep:[]}),this.onKeyLine=!0;return}else if(l.sep)l.value=i;else{Object.assign(l,{key:i,sep:[]}),this.onKeyLine=!l.explicitKey;return}break}case"block-seq":{const l=r.items[r.items.length-1];l.value?r.items.push({start:[],value:i}):l.value=i;break}case"flow-collection":{const l=r.items[r.items.length-1];!l||l.value?r.items.push({start:[],key:i,sep:[]}):l.sep?l.value=i:Object.assign(l,{key:i,sep:[]});return}default:yield*this.pop(),yield*this.pop(i)}if((r.type==="document"||r.type==="block-map"||r.type==="block-seq")&&(i.type==="block-map"||i.type==="block-seq")){const l=i.items[i.items.length-1];l&&!l.sep&&!l.value&&l.start.length>0&&eb(l.start)===-1&&(i.indent===0||l.start.every(o=>o.type!=="comment"||o.indent<i.indent))&&(r.type==="document"?r.end=l.start:r.items.push({start:l.start}),i.items.splice(-1,1))}}}*stream(){switch(this.type){case"directive-line":yield{type:"directive",offset:this.offset,source:this.source};return;case"byte-order-mark":case"space":case"comment":case"newline":yield this.sourceToken;return;case"doc-mode":case"doc-start":{const e={type:"document",offset:this.offset,start:[]};this.type==="doc-start"&&e.start.push(this.sourceToken),this.stack.push(e);return}}yield{type:"error",offset:this.offset,message:`Unexpected ${this.type} token in YAML stream`,source:this.source}}*document(e){if(e.value)return yield*this.lineEnd(e);switch(this.type){case"doc-start":{eb(e.start)!==-1?(yield*this.pop(),yield*this.step()):e.start.push(this.sourceToken);return}case"anchor":case"tag":case"space":case"comment":case"newline":e.start.push(this.sourceToken);return}const i=this.startBlockValue(e);i?this.stack.push(i):yield{type:"error",offset:this.offset,message:`Unexpected ${this.type} token in YAML document`,source:this.source}}*scalar(e){if(this.type==="map-value-ind"){const i=Io(this.peek(2)),r=hr(i);let l;e.end?(l=e.end,l.push(this.sourceToken),delete e.end):l=[this.sourceToken];const o={type:"block-map",offset:e.offset,indent:e.indent,items:[{start:r,key:e,sep:l}]};this.onKeyLine=!0,this.stack[this.stack.length-1]=o}else yield*this.lineEnd(e)}*blockScalar(e){switch(this.type){case"space":case"comment":case"newline":e.props.push(this.sourceToken);return;case"scalar":if(e.source=this.source,this.atNewLine=!0,this.indent=0,this.onNewLine){let i=this.source.indexOf(`
259
+ `)+1;for(;i!==0;)this.onNewLine(this.offset+i),i=this.source.indexOf(`
260
+ `,i)+1}yield*this.pop();break;default:yield*this.pop(),yield*this.step()}}*blockMap(e){var r;const i=e.items[e.items.length-1];switch(this.type){case"newline":if(this.onKeyLine=!1,i.value){const l="end"in i.value?i.value.end:void 0,o=Array.isArray(l)?l[l.length-1]:void 0;(o==null?void 0:o.type)==="comment"?l==null||l.push(this.sourceToken):e.items.push({start:[this.sourceToken]})}else i.sep?i.sep.push(this.sourceToken):i.start.push(this.sourceToken);return;case"space":case"comment":if(i.value)e.items.push({start:[this.sourceToken]});else if(i.sep)i.sep.push(this.sourceToken);else{if(this.atIndentedComment(i.start,e.indent)){const l=e.items[e.items.length-2],o=(r=l==null?void 0:l.value)==null?void 0:r.end;if(Array.isArray(o)){Array.prototype.push.apply(o,i.start),o.push(this.sourceToken),e.items.pop();return}}i.start.push(this.sourceToken)}return}if(this.indent>=e.indent){const l=!this.onKeyLine&&this.indent===e.indent,o=l&&(i.sep||i.explicitKey)&&this.type!=="seq-item-ind";let u=[];if(o&&i.sep&&!i.value){const f=[];for(let d=0;d<i.sep.length;++d){const g=i.sep[d];switch(g.type){case"newline":f.push(d);break;case"space":break;case"comment":g.indent>e.indent&&(f.length=0);break;default:f.length=0}}f.length>=2&&(u=i.sep.splice(f[1]))}switch(this.type){case"anchor":case"tag":o||i.value?(u.push(this.sourceToken),e.items.push({start:u}),this.onKeyLine=!0):i.sep?i.sep.push(this.sourceToken):i.start.push(this.sourceToken);return;case"explicit-key-ind":!i.sep&&!i.explicitKey?(i.start.push(this.sourceToken),i.explicitKey=!0):o||i.value?(u.push(this.sourceToken),e.items.push({start:u,explicitKey:!0})):this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:[this.sourceToken],explicitKey:!0}]}),this.onKeyLine=!0;return;case"map-value-ind":if(i.explicitKey)if(i.sep)if(i.value)e.items.push({start:[],key:null,sep:[this.sourceToken]});else if(ji(i.sep,"map-value-ind"))this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:u,key:null,sep:[this.sourceToken]}]});else if(qS(i.key)&&!ji(i.sep,"newline")){const f=hr(i.start),d=i.key,g=i.sep;g.push(this.sourceToken),delete i.key,delete i.sep,this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:f,key:d,sep:g}]})}else u.length>0?i.sep=i.sep.concat(u,this.sourceToken):i.sep.push(this.sourceToken);else if(ji(i.start,"newline"))Object.assign(i,{key:null,sep:[this.sourceToken]});else{const f=hr(i.start);this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:f,key:null,sep:[this.sourceToken]}]})}else i.sep?i.value||o?e.items.push({start:u,key:null,sep:[this.sourceToken]}):ji(i.sep,"map-value-ind")?this.stack.push({type:"block-map",offset:this.offset,indent:this.indent,items:[{start:[],key:null,sep:[this.sourceToken]}]}):i.sep.push(this.sourceToken):Object.assign(i,{key:null,sep:[this.sourceToken]});this.onKeyLine=!0;return;case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":{const f=this.flowScalar(this.type);o||i.value?(e.items.push({start:u,key:f,sep:[]}),this.onKeyLine=!0):i.sep?this.stack.push(f):(Object.assign(i,{key:f,sep:[]}),this.onKeyLine=!0);return}default:{const f=this.startBlockValue(e);if(f){if(f.type==="block-seq"){if(!i.explicitKey&&i.sep&&!ji(i.sep,"newline")){yield*this.pop({type:"error",offset:this.offset,message:"Unexpected block-seq-ind on same line with key",source:this.source});return}}else l&&e.items.push({start:u});this.stack.push(f);return}}}}yield*this.pop(),yield*this.step()}*blockSequence(e){var r;const i=e.items[e.items.length-1];switch(this.type){case"newline":if(i.value){const l="end"in i.value?i.value.end:void 0,o=Array.isArray(l)?l[l.length-1]:void 0;(o==null?void 0:o.type)==="comment"?l==null||l.push(this.sourceToken):e.items.push({start:[this.sourceToken]})}else i.start.push(this.sourceToken);return;case"space":case"comment":if(i.value)e.items.push({start:[this.sourceToken]});else{if(this.atIndentedComment(i.start,e.indent)){const l=e.items[e.items.length-2],o=(r=l==null?void 0:l.value)==null?void 0:r.end;if(Array.isArray(o)){Array.prototype.push.apply(o,i.start),o.push(this.sourceToken),e.items.pop();return}}i.start.push(this.sourceToken)}return;case"anchor":case"tag":if(i.value||this.indent<=e.indent)break;i.start.push(this.sourceToken);return;case"seq-item-ind":if(this.indent!==e.indent)break;i.value||ji(i.start,"seq-item-ind")?e.items.push({start:[this.sourceToken]}):i.start.push(this.sourceToken);return}if(this.indent>e.indent){const l=this.startBlockValue(e);if(l){this.stack.push(l);return}}yield*this.pop(),yield*this.step()}*flowCollection(e){const i=e.items[e.items.length-1];if(this.type==="flow-error-end"){let r;do yield*this.pop(),r=this.peek(1);while((r==null?void 0:r.type)==="flow-collection")}else if(e.end.length===0){switch(this.type){case"comma":case"explicit-key-ind":!i||i.sep?e.items.push({start:[this.sourceToken]}):i.start.push(this.sourceToken);return;case"map-value-ind":!i||i.value?e.items.push({start:[],key:null,sep:[this.sourceToken]}):i.sep?i.sep.push(this.sourceToken):Object.assign(i,{key:null,sep:[this.sourceToken]});return;case"space":case"comment":case"newline":case"anchor":case"tag":!i||i.value?e.items.push({start:[this.sourceToken]}):i.sep?i.sep.push(this.sourceToken):i.start.push(this.sourceToken);return;case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":{const l=this.flowScalar(this.type);!i||i.value?e.items.push({start:[],key:l,sep:[]}):i.sep?this.stack.push(l):Object.assign(i,{key:l,sep:[]});return}case"flow-map-end":case"flow-seq-end":e.end.push(this.sourceToken);return}const r=this.startBlockValue(e);r?this.stack.push(r):(yield*this.pop(),yield*this.step())}else{const r=this.peek(2);if(r.type==="block-map"&&(this.type==="map-value-ind"&&r.indent===e.indent||this.type==="newline"&&!r.items[r.items.length-1].sep))yield*this.pop(),yield*this.step();else if(this.type==="map-value-ind"&&r.type!=="flow-collection"){const l=Io(r),o=hr(l);tb(e);const u=e.end.splice(1,e.end.length);u.push(this.sourceToken);const f={type:"block-map",offset:e.offset,indent:e.indent,items:[{start:o,key:e,sep:u}]};this.onKeyLine=!0,this.stack[this.stack.length-1]=f}else yield*this.lineEnd(e)}}flowScalar(e){if(this.onNewLine){let i=this.source.indexOf(`
261
+ `)+1;for(;i!==0;)this.onNewLine(this.offset+i),i=this.source.indexOf(`
262
+ `,i)+1}return{type:e,offset:this.offset,indent:this.indent,source:this.source}}startBlockValue(e){switch(this.type){case"alias":case"scalar":case"single-quoted-scalar":case"double-quoted-scalar":return this.flowScalar(this.type);case"block-scalar-header":return{type:"block-scalar",offset:this.offset,indent:this.indent,props:[this.sourceToken],source:""};case"flow-map-start":case"flow-seq-start":return{type:"flow-collection",offset:this.offset,indent:this.indent,start:this.sourceToken,items:[],end:[]};case"seq-item-ind":return{type:"block-seq",offset:this.offset,indent:this.indent,items:[{start:[this.sourceToken]}]};case"explicit-key-ind":{this.onKeyLine=!0;const i=Io(e),r=hr(i);return r.push(this.sourceToken),{type:"block-map",offset:this.offset,indent:this.indent,items:[{start:r,explicitKey:!0}]}}case"map-value-ind":{this.onKeyLine=!0;const i=Io(e),r=hr(i);return{type:"block-map",offset:this.offset,indent:this.indent,items:[{start:r,key:null,sep:[this.sourceToken]}]}}}return null}atIndentedComment(e,i){return this.type!=="comment"||this.indent<=i?!1:e.every(r=>r.type==="newline"||r.type==="space")}*documentEnd(e){this.type!=="doc-mode"&&(e.end?e.end.push(this.sourceToken):e.end=[this.sourceToken],this.type==="newline"&&(yield*this.pop()))}*lineEnd(e){switch(this.type){case"comma":case"doc-start":case"doc-end":case"flow-seq-end":case"flow-map-end":case"map-value-ind":yield*this.pop(),yield*this.step();break;case"newline":this.onKeyLine=!1;case"space":case"comment":default:e.end?e.end.push(this.sourceToken):e.end=[this.sourceToken],this.type==="newline"&&(yield*this.pop())}}}function $S(n){const e=n.prettyErrors!==!1;return{lineCounter:n.lineCounter||e&&new BS||null,prettyErrors:e}}function XC(n,e={}){const{lineCounter:i,prettyErrors:r}=$S(e),l=new Yd(i==null?void 0:i.addNewLine),o=new Xd(e),u=Array.from(o.compose(l.parse(n)));if(r&&i)for(const f of u)f.errors.forEach(hc(n,i)),f.warnings.forEach(hc(n,i));return u.length>0?u:Object.assign([],{empty:!0},o.streamInfo())}function IS(n,e={}){const{lineCounter:i,prettyErrors:r}=$S(e),l=new Yd(i==null?void 0:i.addNewLine),o=new Xd(e);let u=null;for(const f of o.compose(l.parse(n),!0,n.length))if(!u)u=f;else if(u.options.logLevel!=="silent"){u.errors.push(new fs(f.range.slice(0,2),"MULTIPLE_DOCS","Source contains multiple documents; please use YAML.parseAllDocuments()"));break}return r&&i&&(u.errors.forEach(hc(n,i)),u.warnings.forEach(hc(n,i))),u}function YC(n,e,i){let r;typeof e=="function"?r=e:i===void 0&&e&&typeof e=="object"&&(i=e);const l=IS(n,i);if(!l)return null;if(l.warnings.forEach(o=>oS(l.options.logLevel,o)),l.errors.length>0){if(l.options.logLevel!=="silent")throw l.errors[0];l.errors=[]}return l.toJS(Object.assign({reviver:r},i))}function FC(n,e,i){let r=null;if(typeof e=="function"||Array.isArray(e)?r=e:i===void 0&&e&&(i=e),typeof i=="string"&&(i=i.length),typeof i=="number"){const l=Math.round(i);i=l<1?void 0:l>8?{indent:8}:{indent:l}}if(n===void 0){const{keepUndefined:l}=i??e??{};if(!l)return}return gs(n)&&!r?n.toString(i):new Br(n,r,i).toString(i)}const VS=Object.freeze(Object.defineProperty({__proto__:null,Alias:Ec,CST:VC,Composer:Xd,Document:Br,Lexer:HS,LineCounter:BS,Pair:Nt,Parser:Yd,Scalar:de,Schema:Lc,YAMLError:Gd,YAMLMap:nn,YAMLParseError:fs,YAMLSeq:Di,YAMLWarning:CS,isAlias:Ui,isCollection:Ke,isDocument:gs,isMap:Dr,isNode:Xe,isPair:Ve,isScalar:ze,isSeq:zr,parse:YC,parseAllDocuments:XC,parseDocument:IS,stringify:FC,visit:ms,visitAsync:_c},Symbol.toStringTag,{value:"Module"})),nb=[.5,1,2];function QC(n,e,i,r,l){const[o,u]=R.useState(!1),[f,d]=R.useState(1),[g,m]=R.useState(!1),[y,S]=R.useState(void 0),[w,E]=R.useState(void 0),x=nb[f],_=e?n.indexOf(e):-1,A=l.minimum,C=l.maximum,H=C-A||1,V=r?r.minimum:A,K=r?r.maximum:C,Q=R.useMemo(()=>r?n.filter(fe=>fe.startTime>=r.minimum&&fe.startTime<=r.maximum):n,[n,r]),j=Q.length?n.indexOf(Q[0]):0,I=Q.length?n.indexOf(Q[Q.length-1]):n.length-1,O=R.useRef(n);O.current=n;const P=R.useRef(i);P.current=i;const J=R.useRef(null),$=R.useCallback(fe=>{let _e=0,Ue=n.length-1;for(;_e<Ue;){const He=_e+Ue+1>>1;n[He].startTime<=fe?_e=He:Ue=He-1}if(_e<n.length-1){const He=fe-n[_e].startTime;n[_e+1].startTime-fe<He&&(_e=_e+1)}return Math.max(j,Math.min(I,_e))},[n,j,I]),ee=e?e.startTime:A;let ce;g&&y!==void 0?ce=y*100:o&&w!==void 0?ce=Math.max(0,Math.min(100,(w-A)/H*100)):ce=Math.max(0,Math.min(100,(ee-A)/H*100));const Me=R.useRef(V);Me.current=V;const q=R.useRef(K);q.current=K,R.useEffect(()=>{if(!o)return;let fe,_e,Ue=ee;Ue<Me.current&&(Ue=Me.current);let He=_;E(Ue);const Xt=Ye=>{if(_e!==void 0){const ys=(Ye-_e)*x;Ue=Math.min(Ue+ys,q.current)}_e=Ye,E(Ue);const Yt=$(Ue);if(Yt!==He&&(He=Yt,P.current(O.current[Yt])),Ue>=q.current){u(!1);return}fe=requestAnimationFrame(Xt)};return fe=requestAnimationFrame(Xt),()=>cancelAnimationFrame(fe)},[o,x]),R.useEffect(()=>{o||E(void 0)},[o]);const Z=R.useCallback(()=>{if(!n.length)return;const fe=_>=I;!o&&fe&&i(n[j]),u(!o)},[o,n,_,i,j,I]),re=R.useCallback(()=>{u(!1),n.length&&i(n[j])},[n,i,j]),me=R.useCallback(()=>{const fe=Math.max(_-1,j);fe!==_&&i(n[fe])},[n,_,i,j]),Ee=R.useCallback(()=>{const fe=Math.min(_+1,I);fe!==_&&i(n[fe])},[n,_,i,I]),M=R.useCallback(()=>{d(fe=>(fe+1)%nb.length)},[]);R.useEffect(()=>{u(!1)},[n]);const X=R.useCallback(fe=>{const _e=J.current.getBoundingClientRect();return Math.max(0,Math.min(1,(fe.clientX-_e.left)/_e.width))},[]),W=R.useCallback(fe=>{if(!n.length)return;const _e=A+fe*H,Ue=$(_e);P.current(O.current[Ue])},[n,A,H,$]),te=R.useRef(null);R.useEffect(()=>()=>{var fe;return(fe=te.current)==null?void 0:fe.call(te)},[]);const ue=R.useCallback(fe=>{var Xt;if(!n.length||fe.button!==0)return;fe.preventDefault(),fe.stopPropagation(),(Xt=J.current)==null||Xt.focus(),m(!0),u(!1);const _e=X(fe);S(_e),W(_e);const Ue=Ye=>{const Yt=X(Ye);S(Yt),W(Yt)},He=Ye=>{document.removeEventListener("mousemove",Ue),document.removeEventListener("mouseup",He),te.current=null;const Yt=X(Ye);W(Yt),S(void 0),m(!1)};document.addEventListener("mousemove",Ue),document.addEventListener("mouseup",He),te.current=()=>{document.removeEventListener("mousemove",Ue),document.removeEventListener("mouseup",He)}},[n,W,X]),se=!o&&!g,xe=n.length>0&&n.length<=200?n.map(fe=>(fe.startTime-A)/H*100):void 0,nt=_>j,Re=_<I,Ln=o||_>j;return{playing:o,speed:x,currentIndex:_,percent:ce,animating:se,togglePlay:Z,stop:re,prev:me,next:Ee,cycleSpeed:M,onScrubberMouseDown:ue,scrubberRef:J,actionsLength:n.length,canPrev:nt,canNext:Re,canStop:Ln,ticks:xe}}const PC=({playback:n})=>v.jsxs(v.Fragment,{children:[v.jsx(pt,{icon:"chevron-left",title:"Previous action",onClick:n.prev,disabled:!n.canPrev}),v.jsx(pt,{icon:n.playing?"debug-pause":"play",disabled:!n.actionsLength,title:n.playing?"Pause":"Play",onClick:n.togglePlay}),v.jsx(pt,{icon:"debug-stop",title:"Stop",onClick:n.stop,disabled:!n.canStop}),v.jsx(pt,{icon:"chevron-right",title:"Next action",onClick:n.next,disabled:!n.canNext}),v.jsxs("button",{className:"playback-speed",onClick:n.cycleSpeed,title:"Playback speed",children:[n.speed,"x"]})]}),JC=({playback:n})=>{var i;const e=R.useCallback(r=>{r.key==="ArrowLeft"?(r.preventDefault(),n.prev()):r.key==="ArrowRight"&&(r.preventDefault(),n.next())},[n]);return v.jsxs("div",{className:"playback-scrubber",ref:n.scrubberRef,onMouseDown:n.onScrubberMouseDown,onKeyDown:e,tabIndex:0,role:"slider","aria-label":"Playback position","aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":Math.round(n.percent),children:[v.jsx("div",{className:"playback-track"}),v.jsx("div",{className:"playback-track-filled"+(n.animating?" animated":""),style:{width:`${n.percent}%`}}),(i=n.ticks)==null?void 0:i.map((r,l)=>v.jsx("div",{className:"playback-tick",style:{left:`${r}%`}},l)),v.jsx("div",{className:"playback-thumb"+(n.animating?" animated":""),style:{left:`${n.percent}%`}})]})},ZC=({action:n,model:e,sdkLanguage:i,testIdAttributeName:r,isInspecting:l,setIsInspecting:o,highlightedElement:u,setHighlightedElement:f,playback:d})=>{const[g,m]=R.useState("action"),[y]=Kt("shouldPopulateCanvasFromScreenshot",!1),S=R.useMemo(()=>n2(n),[n]),{snapshotInfoUrl:w,snapshotUrl:E,popoutUrl:x}=R.useMemo(()=>{const A=S[g];return e&&A?i2(e.traceUri,A,y):{snapshotInfoUrl:void 0,snapshotUrl:void 0,popoutUrl:void 0}},[S,g,y,e]),_=R.useMemo(()=>w!==void 0?{snapshotInfoUrl:w,snapshotUrl:E,popoutUrl:x}:void 0,[w,E,x]);return v.jsxs("div",{className:"snapshot-tab vbox",children:[v.jsxs(bc,{children:[v.jsx(pt,{className:"pick-locator",title:"Pick locator",icon:"target",toggled:l,onClick:()=>o(!l)}),v.jsx("div",{className:"hbox",style:{height:"100%"},role:"tablist",children:["action","before","after"].map(A=>v.jsx(Fb,{id:A,title:t2(A),selected:g===A,onSelect:()=>m(A)},A))}),v.jsx("div",{style:{flex:"auto"}}),v.jsx(PC,{playback:d}),v.jsx(pt,{icon:"link-external",title:"Open snapshot in a new tab",disabled:!(_!=null&&_.popoutUrl),onClick:()=>{const A=window.open((_==null?void 0:_.popoutUrl)||"","_blank");A==null||A.addEventListener("DOMContentLoaded",()=>{new Vv(A,{isUnderTest:KS,sdkLanguage:i,testIdAttributeName:r,stableRafCount:1,browserName:"chromium",customEngines:[]}).consoleApi.install()})}})]}),v.jsx(WC,{snapshotUrls:_,sdkLanguage:i,testIdAttributeName:r,isInspecting:l,setIsInspecting:o,highlightedElement:u,setHighlightedElement:f})]})},WC=({snapshotUrls:n,sdkLanguage:e,testIdAttributeName:i,isInspecting:r,setIsInspecting:l,highlightedElement:o,setHighlightedElement:u})=>{const f=R.useRef(null),d=R.useRef(null),[g,m]=R.useState({viewport:XS,url:""}),y=R.useRef({iteration:0,visibleIframe:0});return R.useEffect(()=>{(async()=>{const S=y.current.iteration+1,w=1-y.current.visibleIframe;y.current.iteration=S;const E=await s2(n==null?void 0:n.snapshotInfoUrl);if(y.current.iteration!==S)return;const x=[f,d][w].current;if(x){let _=()=>{};const A=new Promise(C=>_=C);try{x.addEventListener("load",_),x.addEventListener("error",_);const C=(n==null?void 0:n.snapshotUrl)||zA;x.contentWindow?x.contentWindow.location.replace(C):x.src=C,await A}catch{}finally{x.removeEventListener("load",_),x.removeEventListener("error",_)}}y.current.iteration===S&&(y.current.visibleIframe=w,m(E))})()},[n]),v.jsxs("div",{className:"vbox",tabIndex:0,onKeyDown:S=>{S.key==="Escape"&&r&&l(!1)},children:[v.jsx(ib,{isInspecting:r,sdkLanguage:e,testIdAttributeName:i,highlightedElement:o,setHighlightedElement:u,iframe:f.current,iteration:y.current.iteration}),v.jsx(ib,{isInspecting:r,sdkLanguage:e,testIdAttributeName:i,highlightedElement:o,setHighlightedElement:u,iframe:d.current,iteration:y.current.iteration}),v.jsx(e2,{snapshotInfo:g,children:v.jsxs("div",{className:"snapshot-switcher",children:[v.jsx("iframe",{ref:f,name:"snapshot",title:"DOM Snapshot",sandbox:"allow-same-origin allow-scripts",className:ct(y.current.visibleIframe===0&&"snapshot-visible")}),v.jsx("iframe",{ref:d,name:"snapshot",title:"DOM Snapshot",sandbox:"allow-same-origin allow-scripts",className:ct(y.current.visibleIframe===1&&"snapshot-visible")})]})})]})},e2=({snapshotInfo:n,children:e})=>{const[i,r]=ds(),l=40,o={width:n.viewport.width,height:n.viewport.height},u={width:Math.max(o.width,480),height:Math.max(o.height+l,320)},f=Math.min(i.width/u.width,i.height/u.height,1),d={x:(i.width-u.width)/2,y:(i.height-u.height)/2};return v.jsx("div",{ref:r,className:"snapshot-wrapper",children:v.jsxs("div",{className:"snapshot-container",style:{width:u.width+"px",height:u.height+"px",transform:`translate(${d.x}px, ${d.y}px) scale(${f})`},children:[v.jsx(qA,{url:n.url}),v.jsx("div",{className:"snapshot-browser-body",children:v.jsx("div",{style:{width:o.width+"px",height:o.height+"px"},children:e})})]})})};function t2(n){return n==="before"?"Before":n==="after"?"After":n==="action"?"Action":n}const ib=({iframe:n,isInspecting:e,sdkLanguage:i,testIdAttributeName:r,highlightedElement:l,setHighlightedElement:o,iteration:u})=>(R.useEffect(()=>{const f=l.lastEdited==="ariaSnapshot"?l.ariaSnapshot:void 0,d=l.lastEdited==="locator"?l.locator:void 0,g=!!f||!!d||e,m=[],y=new URLSearchParams(window.location.search).get("isUnderTest")==="true";try{GS(m,g,i,r,y,"",n==null?void 0:n.contentWindow)}catch{}const S=f?cd(VS,f):void 0,w=d?HA(i,d,r):void 0;for(const{recorder:E,frameSelector:x}of m){const _=w!=null&&w.startsWith(x)?w.substring(x.length).trim():void 0,A=(S==null?void 0:S.errors.length)===0?S.fragment:void 0;E.setUIState({mode:e?"inspecting":"none",actionSelector:_,ariaTemplate:A,language:i,testIdAttributeName:r,overlay:{offsetX:0}},{async elementPicked(C){o({locator:Li(i,x+C.selector),ariaSnapshot:C.ariaSnapshot,lastEdited:"none"})},highlightUpdated(){for(const C of m)C.recorder!==E&&C.recorder.clearHighlight()}})}},[n,e,l,o,i,r,u]),v.jsx(v.Fragment,{}));function GS(n,e,i,r,l,o,u){if(!u)return;const f=u;if(!f._recorder&&e){const d=new Vv(u,{isUnderTest:l,sdkLanguage:i,testIdAttributeName:r,stableRafCount:1,browserName:"chromium",customEngines:[]}),g=new OA(d);f._injectedScript=d,f._recorder={recorder:g,frameSelector:o},l&&(window._weakRecordersForTest=window._weakRecordersForTest||new Set,window._weakRecordersForTest.add(new WeakRef(g)))}f._recorder&&n.push(f._recorder);for(let d=0;d<u.frames.length;++d){const g=u.frames[d],m=g.frameElement?f._injectedScript.generateSelectorSimple(g.frameElement,{omitInternalEngines:!0,testIdAttributeName:r})+" >> internal:control=enter-frame >> ":"";GS(n,e,i,r,l,o+m,g)}}const $a=(n,e)=>{if(!n)return;const i=n[e];if(i){if(!n.pageId){console.error("snapshot action must have a pageId");return}return{action:n,snapshotName:i,pageId:n.pageId,point:n.point}}};function n2(n){if(!n)return{};let e=$a(n,"beforeSnapshot");if(!e){for(let l=s0(n);l;l=s0(l))if(l.endTime<=n.startTime&&l.afterSnapshot){e=$a(l,"afterSnapshot");break}}let i=$a(n,"afterSnapshot");if(!i){let l;for(let o=r0(n);o&&o.startTime<=n.endTime;o=r0(o))o.endTime>n.endTime||!o.afterSnapshot||l&&l.endTime>o.endTime||(l=o);l?i=$a(l,"afterSnapshot"):i=e}const r=$a(n,"inputSnapshot")??i;return r&&(r.point=n.point),{action:r,before:e,after:i}}const KS=new URLSearchParams(window.location.search).has("isUnderTest");function i2(n,e,i){const r=new URLSearchParams;r.set("trace",n),r.set("name",e.snapshotName),KS&&r.set("isUnderTest","true"),e.point&&(r.set("pointX",String(e.point.x)),r.set("pointY",String(e.point.y))),i&&r.set("shouldPopulateCanvasFromScreenshot","1");const l=new URL(`snapshot/${e.pageId}?${r.toString()}`,window.location.href).toString(),o=new URL(`snapshotInfo/${e.pageId}?${r.toString()}`,window.location.href).toString(),u=new URLSearchParams;u.set("r",l),u.set("trace",n);const f=new URL(`snapshot.html?${u.toString()}`,window.location.href).toString();return{snapshotInfoUrl:o,snapshotUrl:l,popoutUrl:f}}async function s2(n){const e={url:"",viewport:XS,timestamp:void 0,wallTime:void 0};if(n){const r=await(await fetch(n)).json();r.error||(e.url=r.url,e.viewport=r.viewport,e.timestamp=r.timestamp,e.wallTime=r.wallTime)}return e}const XS={width:1280,height:720},r2=mc,a2=({stack:n,setSelectedFrame:e,selectedFrame:i})=>{const r=n||[];return v.jsx(r2,{name:"stack-trace",ariaLabel:"Stack trace",items:r,selectedItem:r[i],render:l=>{const o=l.file[1]===":"?"\\":"/";return v.jsxs(v.Fragment,{children:[v.jsx("span",{className:"stack-trace-frame-function",children:l.function||"(anonymous)"}),v.jsx("span",{className:"stack-trace-frame-location",children:l.file.split(o).pop()}),v.jsx("span",{className:"stack-trace-frame-line",children:":"+l.line})]})},onSelected:l=>e(r.indexOf(l))})};function l2(n,e,i,r,l){const o=ri();return Zh(async()=>{var w,E,x,_;const u=n==null?void 0:n[e],f=u!=null&&u.file?u:l;if(!f)return{source:{file:"",errors:[],content:void 0},targetLine:0,highlight:[]};const d=f.file;let g=i.get(d);g||(g={errors:((w=l==null?void 0:l.source)==null?void 0:w.errors)||[],content:(E=l==null?void 0:l.source)==null?void 0:E.content},i.set(d,g));const m=(f==null?void 0:f.line)||((x=g.errors[0])==null?void 0:x.line)||0,y=r&&d.startsWith(r)?d.substring(r.length+1):d,S=g.errors.map(A=>({type:"error",line:A.line,message:A.message}));if(S.push({line:m,type:"running"}),((_=l==null?void 0:l.source)==null?void 0:_.content)!==void 0)g.content=l.source.content;else if(g.content===void 0||f===l){const A=await c2(d);try{let C=o?await fetch(o.createRelativeUrl(`sha1/src@${A}.txt`)):void 0;(!C||C.status===404)&&(C=await fetch(`file?path=${encodeURIComponent(d)}`)),C.status>=400?g.content="":g.content=await C.text()}catch{g.content=`<Unable to read "${d}">`}}return{model:o,source:g,highlight:S,targetLine:m,fileName:y,location:f}},[n,e,r,l],{source:{errors:[],content:"Loading…"},highlight:[]})}const o2=({stack:n,sources:e,rootDir:i,fallbackLocation:r,stackFrameLocation:l,onOpenExternally:o})=>{const[u,f]=R.useState(),[d,g]=R.useState(0);R.useEffect(()=>{u!==n&&(f(n),g(0))},[n,u,f,g]);const{source:m,highlight:y,targetLine:S,fileName:w,location:E}=l2(n,d,e,i,r),x=R.useCallback(()=>{E&&(o?o(E):window.location.href=`vscode://file//${E.file}:${E.line}`)},[o,E]),_=((n==null?void 0:n.length)??0)>1,A=u2(w),C=A.endsWith(".md")?"markdown":"javascript";return v.jsx(nc,{sidebarSize:200,orientation:l==="bottom"?"vertical":"horizontal",sidebarHidden:!_,main:v.jsxs("div",{className:"vbox","data-testid":"source-code",children:[w&&v.jsxs(bc,{children:[v.jsx("div",{className:"source-tab-file-name",title:w,children:v.jsx("div",{children:A})}),v.jsx(od,{description:"Copy filename",value:A}),E&&v.jsx(pt,{icon:"link-external",title:"Open in VS Code",onClick:x})]}),v.jsx(Cr,{text:m.content||"",highlighter:C,highlight:y,revealLine:S,readOnly:!0,lineNumbers:!0,dataTestId:"source-code-mirror"})]}),sidebar:v.jsx(a2,{stack:n,selectedFrame:d,setSelectedFrame:g})})};async function c2(n){const e=new TextEncoder().encode(n),i=await crypto.subtle.digest("SHA-1",e),r=[],l=new DataView(i);for(let o=0;o<l.byteLength;o+=1){const u=l.getUint8(o).toString(16).padStart(2,"0");r.push(u)}return r.join("")}function u2(n){if(!n)return"";const e=n!=null&&n.includes("/")?"/":"\\";return(n==null?void 0:n.split(e).pop())??""}const YS={width:200,height:45},gr=2.5,f2=YS.height+gr*2,h2=({boundaries:n,previewPoint:e})=>{var m,y;const i=ri(),[r,l]=ds(),o=R.useRef(null);let u=0;if(o.current&&e){const S=o.current.getBoundingClientRect();u=(e.clientY-S.top+o.current.scrollTop)/f2|0}const f=(y=(m=i==null?void 0:i.pages)==null?void 0:m[u])==null?void 0:y.screencastFrames;let d,g;if(e!==void 0&&f&&f.length){const S=n.minimum+(n.maximum-n.minimum)*e.x/r.width;d=f[rb(f,S,FS)-1];const w={width:Math.min(800,window.innerWidth/2|0),height:Math.min(800,window.innerHeight/2|0)};g=d?QS({width:d.width,height:d.height},w):void 0}return v.jsxs("div",{className:"film-strip",ref:l,children:[v.jsx("div",{className:"film-strip-lanes",ref:o,children:i==null?void 0:i.pages.map((S,w)=>S.screencastFrames.length?v.jsx(d2,{boundaries:n,page:S,width:r.width},w):null)}),i&&(e==null?void 0:e.x)!==void 0&&v.jsxs("div",{className:"film-strip-hover",style:{top:r.bottom+5,left:Math.min(e.x,r.width-(g?g.width:0)-10)},children:[d&&g&&v.jsx("div",{style:{width:g.width,height:g.height},children:v.jsx("img",{src:i.createRelativeUrl(`sha1/${d.sha1}`),width:g.width,height:g.height})}),e.action&&v.jsx("div",{className:"film-strip-hover-title",children:ad(e.action,e)})]})]})},d2=({boundaries:n,page:e,width:i})=>{const r=ri(),l={width:0,height:0},o=e.screencastFrames;for(const _ of o)l.width=Math.max(l.width,_.width),l.height=Math.max(l.height,_.height);const u=QS(l,YS),f=o[0].timestamp,d=o[o.length-1].timestamp,g=n.maximum-n.minimum,m=(f-n.minimum)/g*i,y=(n.maximum-d)/g*i,w=(d-f)/g*i/(u.width+2*gr)|0,E=(d-f)/w,x=[];for(let _=0;f&&E&&_<w;++_){const A=f+E*_,C=rb(o,A,FS)-1;x.push(v.jsx("div",{className:"film-strip-frame",style:{width:u.width,height:u.height,backgroundImage:`url(${r==null?void 0:r.createRelativeUrl("sha1/"+o[C].sha1)})`,backgroundSize:`${u.width}px ${u.height}px`,margin:gr,marginRight:gr}},_))}return x.push(v.jsx("div",{className:"film-strip-frame",style:{width:u.width,height:u.height,backgroundImage:`url(${r==null?void 0:r.createRelativeUrl("sha1/"+o[o.length-1].sha1)})`,backgroundSize:`${u.width}px ${u.height}px`,margin:gr,marginRight:gr}},x.length)),v.jsx("div",{className:"film-strip-lane",style:{marginLeft:m+"px",marginRight:y+"px"},children:x})};function FS(n,e){return n-e.timestamp}function QS(n,e){const i=Math.max(n.width/e.width,n.height/e.height);return{width:n.width/i|0,height:n.height/i|0}}const p2=({model:n,boundaries:e,onSelected:i,selectedTime:r,setSelectedTime:l,highlightedTime:o,sdkLanguage:u,scrubber:f})=>{const[d,g]=ds(),[m,y]=R.useState(),[S,w]=R.useState(),[E]=Kt("actionsFilter",[]),{offsets:x,curtainLeft:_,curtainRight:A}=R.useMemo(()=>{let P=r||e;if(m&&m.startX!==m.endX){const ce=Mn(d.width,e,m.startX),Me=Mn(d.width,e,m.endX);P={minimum:Math.min(ce,Me),maximum:Math.max(ce,Me)}}const J=Mi(d.width,e,P.minimum),ee=Mi(d.width,e,e.maximum)-Mi(d.width,e,P.maximum);return{offsets:g2(d.width,e),curtainLeft:J,curtainRight:ee}},[r,e,m,d]),C=R.useMemo(()=>n==null?void 0:n.filteredActions(E),[n,E]),H=R.useMemo(()=>{if(!o)return;const P=Mi(d.width,e,o.minimum),J=Mi(d.width,e,o.maximum);return{left:P,width:Math.max(2,J-P)}},[o,e,d]),V=R.useCallback(P=>{if(w(void 0),!g.current)return;const J=P.clientX-g.current.getBoundingClientRect().left,$=Mn(d.width,e,J),ee=r?Mi(d.width,e,r.minimum):0,ce=r?Mi(d.width,e,r.maximum):0;r&&Math.abs(J-ee)<10?y({startX:ce,endX:J,type:"resize"}):r&&Math.abs(J-ce)<10?y({startX:ee,endX:J,type:"resize"}):r&&$>r.minimum&&$<r.maximum&&P.clientY-g.current.getBoundingClientRect().top<20?y({startX:ee,endX:ce,pivot:J,type:"move"}):y({startX:J,endX:J,type:"resize"})},[e,d,g,r]),K=R.useCallback(P=>{if(!g.current)return;const J=P.clientX-g.current.getBoundingClientRect().left,$=Mn(d.width,e,J),ee=C==null?void 0:C.findLast(Z=>Z.startTime<=$);if(!P.buttons){y(void 0);return}if(ee&&i(ee),!m)return;let ce=m;if(m.type==="resize")ce={...m,endX:J};else{const Z=J-m.pivot;let re=m.startX+Z,me=m.endX+Z;re<0&&(re=0,me=re+(m.endX-m.startX)),me>d.width&&(me=d.width,re=me-(m.endX-m.startX)),ce={...m,startX:re,endX:me,pivot:J}}y(ce);const Me=Mn(d.width,e,ce.startX),q=Mn(d.width,e,ce.endX);Me!==q&&l({minimum:Math.min(Me,q),maximum:Math.max(Me,q)})},[e,m,d,C,i,g,l]),Q=R.useCallback(()=>{if(w(void 0),!!m){if(m.startX!==m.endX){const P=Mn(d.width,e,m.startX),J=Mn(d.width,e,m.endX);l({minimum:Math.min(P,J),maximum:Math.max(P,J)})}else{const P=Mn(d.width,e,m.startX),J=C==null?void 0:C.findLast($=>$.startTime<=P);J&&i(J),l(void 0)}y(void 0)}},[e,m,d,C,l,i]),j=R.useCallback(P=>{if(!g.current)return;const J=P.clientX-g.current.getBoundingClientRect().left,$=Mn(d.width,e,J),ee=C==null?void 0:C.findLast(ce=>ce.startTime<=$);w({x:J,clientY:P.clientY,action:ee,sdkLanguage:u})},[e,d,C,g,u]),I=R.useCallback(()=>{w(void 0)},[]),O=R.useCallback(()=>{l(void 0)},[l]);return v.jsxs("div",{className:"timeline-view-container",children:[!!m&&v.jsx(Ib,{cursor:(m==null?void 0:m.type)==="resize"?"ew-resize":"grab",onPaneMouseUp:Q,onPaneMouseMove:K,onPaneDoubleClick:O}),v.jsxs("div",{ref:g,className:"timeline-view",onMouseDown:V,onMouseMove:j,onMouseLeave:I,children:[v.jsx("div",{className:"timeline-grid",children:x.map((P,J)=>v.jsx("div",{className:"timeline-divider",style:{left:P.position+"px"},children:v.jsx("div",{className:"timeline-time",children:_t(P.time-e.minimum)})},J))}),v.jsx(h2,{boundaries:e,previewPoint:S}),f,H&&v.jsx("div",{className:"timeline-highlight",style:{left:H.left,width:H.width}}),r&&v.jsxs("div",{className:"timeline-window",children:[v.jsx("div",{className:"timeline-window-curtain left",style:{width:_}}),v.jsx("div",{className:"timeline-window-resizer",style:{left:-5}}),v.jsx("div",{className:"timeline-window-center",children:v.jsx("div",{className:"timeline-window-drag"})}),v.jsx("div",{className:"timeline-window-resizer",style:{left:5}}),v.jsx("div",{className:"timeline-window-curtain right",style:{width:A}})]})]})]})};function g2(n,e){let r=n/64;const l=e.maximum-e.minimum,o=n/l;let u=l/r;const f=Math.ceil(Math.log(u)/Math.LN10);u=Math.pow(10,f),u*o>=320&&(u=u/5),u*o>=128&&(u=u/2);const d=e.minimum;let g=e.maximum;g+=64/o,r=Math.ceil((g-d)/u),u||(r=0);const m=[];for(let y=0;y<r;++y){const S=d+u*y;m.push({position:Mi(n,e,S),time:S})}return m}function Mi(n,e,i){return(i-e.minimum)/(e.maximum-e.minimum)*n}function Mn(n,e,i){return i/n*(e.maximum-e.minimum)+e.minimum}const m2=({model:n})=>{var i,r;if(!n)return v.jsx(v.Fragment,{});const e=n.wallTime!==void 0?new Date(n.wallTime).toLocaleString(void 0,{timeZoneName:"short"}):void 0;return v.jsxs("div",{style:{flex:"auto",display:"block",overflow:"hidden auto"},children:[v.jsx("div",{className:"call-section",style:{paddingTop:2},children:"Time"}),!!e&&v.jsxs("div",{className:"call-line",children:["start time:",v.jsx("span",{className:"call-value datetime",title:e,children:e})]}),v.jsxs("div",{className:"call-line",children:["duration:",v.jsx("span",{className:"call-value number",title:_t(n.endTime-n.startTime),children:_t(n.endTime-n.startTime)})]}),n.testTimeout!==void 0&&v.jsxs("div",{className:"call-line",children:["test timeout:",v.jsx("span",{className:"call-value number",title:_t(n.testTimeout),children:_t(n.testTimeout)})]}),v.jsx("div",{className:"call-section",children:"Browser"}),v.jsxs("div",{className:"call-line",children:["engine:",v.jsx("span",{className:"call-value string",title:n.browserName,children:n.browserName})]}),n.channel&&v.jsxs("div",{className:"call-line",children:["channel:",v.jsx("span",{className:"call-value string",title:n.channel,children:n.channel})]}),n.platform&&v.jsxs("div",{className:"call-line",children:["platform:",v.jsx("span",{className:"call-value string",title:n.platform,children:n.platform})]}),n.playwrightVersion&&v.jsxs("div",{className:"call-line",children:["playwright version:",v.jsx("span",{className:"call-value string",title:n.playwrightVersion,children:n.playwrightVersion})]}),n.options.userAgent&&v.jsxs("div",{className:"call-line",children:["user agent:",v.jsx("span",{className:"call-value datetime",title:n.options.userAgent,children:n.options.userAgent})]}),n.options.baseURL&&v.jsxs(v.Fragment,{children:[v.jsx("div",{className:"call-section",style:{paddingTop:2},children:"Config"}),v.jsxs("div",{className:"call-line",children:["baseURL:",ux(n.options.baseURL)?v.jsx("a",{className:"call-value string",href:n.options.baseURL,title:n.options.baseURL,target:"_blank",rel:"noopener noreferrer",children:n.options.baseURL}):v.jsx("span",{className:"call-value string",title:n.options.baseURL,children:n.options.baseURL})]})]}),v.jsx("div",{className:"call-section",children:"Viewport"}),n.options.viewport&&v.jsxs("div",{className:"call-line",children:["width:",v.jsx("span",{className:"call-value number",title:String(!!((i=n.options.viewport)!=null&&i.width)),children:n.options.viewport.width})]}),n.options.viewport&&v.jsxs("div",{className:"call-line",children:["height:",v.jsx("span",{className:"call-value number",title:String(!!((r=n.options.viewport)!=null&&r.height)),children:n.options.viewport.height})]}),v.jsxs("div",{className:"call-line",children:["is mobile:",v.jsx("span",{className:"call-value boolean",title:String(!!n.options.isMobile),children:String(!!n.options.isMobile)})]}),n.options.deviceScaleFactor&&v.jsxs("div",{className:"call-line",children:["device scale:",v.jsx("span",{className:"call-value number",title:String(n.options.deviceScaleFactor),children:String(n.options.deviceScaleFactor)})]}),v.jsx("div",{className:"call-section",children:"Counts"}),v.jsxs("div",{className:"call-line",children:["pages:",v.jsx("span",{className:"call-value number",children:n.pages.length})]}),v.jsxs("div",{className:"call-line",children:["actions:",v.jsx("span",{className:"call-value number",children:n.actions.length})]}),v.jsxs("div",{className:"call-line",children:["events:",v.jsx("span",{className:"call-value number",children:n.events.length})]})]})},y2=({annotations:n})=>n.length?v.jsx("div",{className:"annotations-tab",children:n.map((e,i)=>v.jsxs("div",{className:"annotation-item",children:[v.jsx("span",{style:{fontWeight:"bold"},children:e.type}),e.description&&v.jsxs("span",{children:[": ",Kb(e.description)]})]},`annotation-${i}`))}):v.jsx(ps,{text:"No annotations"}),b2=({sdkLanguage:n,isInspecting:e,setIsInspecting:i,highlightedElement:r,setHighlightedElement:l})=>{const[o,u]=R.useState(),f=R.useCallback(d=>{const{errors:g}=cd(VS,d,{prettyErrors:!1}),m=g.map(y=>({message:y.message,line:y.range[1].line,column:y.range[1].col,type:"subtle-error"}));u(m),l({...r,ariaSnapshot:d,lastEdited:"ariaSnapshot"}),i(!1)},[r,l,i]);return v.jsxs("div",{style:{flex:"auto",backgroundColor:"var(--vscode-sideBar-background)",padding:"0 10px 10px 10px",overflow:"auto"},children:[v.jsxs("div",{className:"hbox",style:{lineHeight:"28px",color:"var(--vscode-editorCodeLens-foreground)"},children:[v.jsx("div",{children:"Locator"}),v.jsx(pt,{style:{margin:"0 4px"},title:"Pick locator",icon:"target",toggled:e,onClick:()=>i(!e)}),v.jsx("div",{style:{flex:"auto"}}),v.jsx(pt,{icon:"files",title:"Copy locator",onClick:()=>{Fy(r.locator||"")}})]}),v.jsx("div",{style:{height:50},children:v.jsx(Cr,{text:r.locator||"",highlighter:n,isFocused:!0,wrapLines:!0,onChange:d=>{l({...r,locator:d,lastEdited:"locator"}),i(!1)}})}),v.jsxs("div",{className:"hbox",style:{lineHeight:"28px",color:"var(--vscode-editorCodeLens-foreground)"},children:[v.jsx("div",{style:{flex:"auto"},children:"Aria snapshot"}),v.jsx(pt,{icon:"files",title:"Copy snapshot",onClick:()=>{Fy(r.ariaSnapshot||"")}})]}),v.jsx("div",{style:{height:150},children:v.jsx(Cr,{text:r.ariaSnapshot||"",highlighter:"yaml",wrapLines:!1,highlight:o,onChange:f})})]})},v2=({className:n,style:e,open:i,isModal:r,minWidth:l,verticalOffset:o,requestClose:u,anchor:f,dataTestId:d,children:g})=>{const m=R.useRef(null),[y,S]=R.useState(0),[w]=Ah(m),[E,x]=Ah(f),_=f?S2(w,E,o):void 0;return R.useEffect(()=>{const A=H=>{!m.current||!(H.target instanceof Node)||m.current.contains(H.target)||u==null||u()},C=H=>{H.key==="Escape"&&(u==null||u())};return i?(document.addEventListener("mousedown",A),document.addEventListener("keydown",C),()=>{document.removeEventListener("mousedown",A),document.removeEventListener("keydown",C)}):()=>{}},[i,u]),R.useLayoutEffect(()=>x(),[i,x]),R.useEffect(()=>{const A=()=>S(C=>C+1);return window.addEventListener("resize",A),()=>{window.removeEventListener("resize",A)}},[]),R.useLayoutEffect(()=>{m.current&&(i?r?m.current.showModal():m.current.show():m.current.close())},[i,r]),v.jsx("dialog",{ref:m,style:{position:"fixed",margin:_?0:void 0,zIndex:110,top:_==null?void 0:_.top,left:_==null?void 0:_.left,minWidth:l||0,...e},className:n,"data-testid":d,children:g})};function S2(n,e,i=4,r=4){let l=Math.max(r,e.left);l+n.width>window.innerWidth-r&&(l=window.innerWidth-n.width-r);let o=Math.max(0,e.bottom)+i;return o+n.height>window.innerHeight-i&&(Math.max(0,e.top)>n.height+i?o=Math.max(0,e.top)-n.height-i:o=window.innerHeight-i-n.height),{left:l,top:o}}const w2=({title:n,icon:e,buttonChildren:i,anchorRef:r,dialogDataTestId:l,children:o})=>{const u=R.useRef(null),f=r??u,[d,g]=R.useState(!1);return v.jsxs(v.Fragment,{children:[v.jsx(pt,{ref:u,icon:e,title:n,onClick:()=>g(m=>!m),children:i}),v.jsx(v2,{style:{backgroundColor:"var(--vscode-sideBar-background)",padding:"4px 8px"},open:d,verticalOffset:8,requestClose:()=>g(!1),anchor:f,dataTestId:l,children:o})]})},PS=({settings:n})=>v.jsx("div",{className:"vbox settings-view",children:n.map(e=>{const i=`setting-${e.name.replaceAll(/\s+/g,"-")}`;return v.jsx("div",{className:`setting setting-${e.type}`,title:e.title,children:x2(e,i)},e.name)})}),x2=(n,e)=>{switch(n.type){case"check":return v.jsxs(v.Fragment,{children:[v.jsx("input",{type:"checkbox",id:e,checked:n.value,onChange:()=>n.set(!n.value)}),v.jsxs("label",{htmlFor:e,children:[n.name,!!n.count&&v.jsx("span",{className:"setting-counter",children:n.count})]})]});case"select":return v.jsxs(v.Fragment,{children:[v.jsxs("label",{htmlFor:e,children:[n.name,":",!!n.count&&v.jsx("span",{className:"setting-counter",children:n.count})]}),v.jsx("select",{id:e,value:n.value,onChange:i=>n.set(i.target.value),children:n.options.map(i=>v.jsx("option",{value:i.value,children:i.label},i.value))})]});default:return null}},R2=n=>{var i;const e=T2((i=n.model)==null?void 0:i.traceUri);return v.jsx(Xb.Provider,{value:n.model,children:v.jsx(_2,{partition:e,...n})})},_2=n=>{var yl;const{partition:e,model:i,showSourcesFirst:r,rootDir:l,fallbackLocation:o,isLive:u,hideTimeline:f,status:d,annotations:g,inert:m,onOpenExternally:y,revealSource:S,testRunMetadata:w}=n,[E,x]=Kt("navigatorTab","actions"),[_,A]=Kt("propertiesTab",r?"source":"call"),[C,H]=Kt("propertiesSidebarLocation","bottom"),[V]=Kt("actionsFilter",[]),[K,Q]=lr("selectedCallId"),[j,I]=lr("selectedTime"),[O,P]=lr("highlightedCallId"),[J,$]=lr("revealedErrorKey"),[ee,ce]=lr("revealedAttachmentCallId"),[Me,q]=lr("treeState",{expandedItems:new Map}),[Z,re]=R.useState("");gx(e);const[me,Ee]=R.useState({lastEdited:"none"}),[M,X]=R.useState(!1),[W,te]=R.useState(void 0),ue=R.useCallback(le=>{Q(le==null?void 0:le.callId),$(void 0)},[Q,$]),se=R.useMemo(()=>i==null?void 0:i.filteredActions(V),[i,V]),xe=((i==null?void 0:i.actions.length)??0)-((se==null?void 0:se.length)??0),nt=R.useMemo(()=>se==null?void 0:se.find(le=>le.callId===O),[se,O]),Re=R.useCallback(le=>{P(le==null?void 0:le.callId)},[P]),Ln=R.useMemo(()=>(i==null?void 0:i.sources)||new Map,[i]);R.useEffect(()=>{I(void 0),$(void 0)},[i,I,$]);const fe=R.useMemo(()=>{if(K){const Tn=se==null?void 0:se.find(sn=>sn.callId===K);if(Tn)return Tn}const le=i==null?void 0:i.failedAction();if(le)return le;if(se!=null&&se.length){let Tn=se.length-1;for(let sn=0;sn<se.length;++sn)if(se[sn].title==="After Hooks"&&sn){Tn=sn-1;break}return se[Tn]}},[i,se,K]),_e=R.useMemo(()=>nt||fe,[fe,nt]),Ue=R.useCallback(le=>{ue(le),Re(void 0)},[ue,Re]),{boundaries:He}=R.useMemo(()=>{const le={minimum:(i==null?void 0:i.startTime)||0,maximum:(i==null?void 0:i.endTime)||3e4};return le.minimum>le.maximum&&(le.minimum=0,le.maximum=3e4),le.maximum+=(le.maximum-le.minimum)/20,{boundaries:le}},[i]),Xt=QC(se||[],fe,Ue,j,He),Ye=R.useCallback(le=>{A(le),le!=="inspector"&&X(!1)},[A]),Yt=R.useCallback(le=>{!M&&le&&Ye("inspector"),X(le)},[X,Ye,M]),ys=R.useCallback(le=>{Ee(le),Ye("inspector")},[Ye]),qr=R.useCallback(le=>{Ye("attachments"),ce({callId:le})},[Ye,ce]);R.useEffect(()=>{S&&Ye("source")},[S,Ye]);const bs=tE(i,j),vs=kE(i,j),Ss=J_(i),Uc=R.useMemo(()=>{var le;return J!==void 0?(le=Ss.errors.get(J))==null?void 0:le.stack:_e==null?void 0:_e.stack},[_e,J,Ss]),it=(i==null?void 0:i.sdkLanguage)||"javascript",Hc={id:"inspector",title:"Locator",render:()=>v.jsx(b2,{sdkLanguage:it,isInspecting:M,setIsInspecting:Yt,highlightedElement:me,setHighlightedElement:Ee})},pl={id:"call",title:"Call",render:()=>v.jsx(T_,{action:_e,startTimeOffset:(i==null?void 0:i.startTime)??0,sdkLanguage:it})},gl={id:"log",title:"Log",render:()=>v.jsx(N_,{action:_e,isLive:u})},ws={id:"errors",title:"Errors",errorCount:Ss.errors.size,render:()=>v.jsx(W_,{errorsModel:Ss,testRunMetadata:w,sdkLanguage:it,revealInSource:le=>{le.action?ue(le.action):$(le.message),Ye("source")},wallTime:(i==null?void 0:i.wallTime)??0})};let ml;!fe&&o&&(ml=(yl=o.source)==null?void 0:yl.errors.length);const xs={id:"source",title:"Source",errorCount:ml,render:()=>v.jsx(o2,{stack:Uc,sources:Ln,rootDir:l,stackFrameLocation:C==="bottom"?"right":"bottom",fallbackLocation:o,onOpenExternally:y})},Bc={id:"console",title:"Console",count:bs.entries.length,render:()=>v.jsx(nE,{consoleModel:bs,boundaries:He,selectedTime:j,onEntryHovered:te,onAccepted:le=>I({minimum:le.timestamp,maximum:le.timestamp})})},qc={id:"network",title:"Network",count:vs.resources.length,render:()=>v.jsx(ME,{boundaries:He,networkModel:vs,onResourceHovered:te,sdkLanguage:(i==null?void 0:i.sdkLanguage)??"javascript"})},Hi={id:"attachments",title:"Attachments",count:i==null?void 0:i.visibleAttachments.length,render:()=>v.jsx(F_,{revealedAttachmentCallId:ee})},ut=[Hc,pl,gl,ws,Bc,qc,xs,Hi];if(g!==void 0){const le={id:"annotations",title:"Annotations",count:g.length,render:()=>v.jsx(y2,{annotations:g})};ut.push(le)}if(r){const le=ut.indexOf(xs);ut.splice(le,1),ut.splice(1,0,xs)}let Ft=0;!u&&i&&i.endTime>=0?Ft=i.endTime-i.startTime:i&&i.wallTime&&(Ft=Date.now()-i.wallTime);const kt={id:"actions",title:"Actions",component:v.jsxs("div",{className:"vbox",children:[d&&v.jsxs("div",{className:"workbench-run-status","data-testid":"workbench-run-status",children:[v.jsx("span",{className:ct("codicon",$b(d))}),v.jsx("div",{children:x_(d)}),v.jsx("div",{className:"spacer"}),v.jsx("div",{className:"workbench-run-duration",children:Ft?_t(Ft):""})]}),v.jsx("div",{className:"workbench-action-filter",children:v.jsx("input",{type:"search",placeholder:"Filter actions","aria-label":"Filter actions",spellCheck:!1,value:Z,onChange:le=>re(le.target.value)})}),v.jsx(E_,{sdkLanguage:it,actions:se||[],selectedAction:i?fe:void 0,selectedTime:j,setSelectedTime:I,treeState:Me,setTreeState:q,onSelected:Ue,onHighlighted:Re,revealActionAttachment:qr,revealConsole:()=>Ye("console"),isLive:u,actionFilterText:Z})]})},$c={id:"metadata",title:"Metadata",component:v.jsx(m2,{model:i})},Ic=E==="actions"&&v.jsx(E2,{counters:i==null?void 0:i.actionCounters,hiddenActionsCount:xe});return v.jsxs("div",{className:"vbox workbench",...m?{inert:!0}:{},children:[!f&&v.jsx(p2,{model:i,boundaries:He,onSelected:Ue,sdkLanguage:it,selectedTime:j,setSelectedTime:I,highlightedTime:W,scrubber:v.jsx(JC,{playback:Xt})}),v.jsx(nc,{sidebarSize:250,orientation:C==="bottom"?"vertical":"horizontal",settingName:"propertiesSidebar",main:v.jsx(nc,{sidebarSize:250,orientation:"horizontal",sidebarIsFirst:!0,settingName:"actionListSidebar",main:v.jsx(ZC,{action:_e,model:i,sdkLanguage:it,testIdAttributeName:(i==null?void 0:i.testIdAttributeName)||"data-testid",isInspecting:M,setIsInspecting:Yt,highlightedElement:me,setHighlightedElement:ys,playback:Xt}),sidebar:v.jsx(Rh,{tabs:[kt,$c],rightToolbar:[Ic],selectedTab:E,setSelectedTab:x})}),sidebar:v.jsx(Rh,{tabs:ut,selectedTab:_,setSelectedTab:Ye,rightToolbar:[C==="bottom"?v.jsx(pt,{title:"Dock to right",icon:"layout-sidebar-right-off",onClick:()=>{H("right")}}):v.jsx(pt,{title:"Dock to bottom",icon:"layout-panel-off",onClick:()=>{H("bottom")}})],mode:C==="bottom"?"default":"select"})})]})},E2=({counters:n,hiddenActionsCount:e})=>{const[i,r]=Kt("actionsFilter",[]),l=R.useRef(null),o=v.jsxs(v.Fragment,{children:[e>0&&v.jsxs("span",{className:"workbench-actions-hidden-count",title:e+" actions hidden by filters",children:[e," hidden"]}),v.jsx("span",{ref:l,className:"codicon codicon-filter"})]});return v.jsx(w2,{title:"Filter actions",dialogDataTestId:"actions-filter-dialog",buttonChildren:o,anchorRef:l,children:v.jsx(PS,{settings:[{type:"check",value:i.includes("getter"),set:u=>r(u?[...i,"getter"]:i.filter(f=>f!=="getter")),name:"Getters",count:n==null?void 0:n.get("getter")},{type:"check",value:i.includes("route"),set:u=>r(u?[...i,"route"]:i.filter(f=>f!=="route")),name:"Network routes",count:n==null?void 0:n.get("route")},{type:"check",value:i.includes("configuration"),set:u=>r(u?[...i,"configuration"]:i.filter(f=>f!=="configuration")),name:"Configuration",count:n==null?void 0:n.get("configuration")}]})})};function T2(n){if(!n)return"default";const e=new URL(n,"http://localhost");return e.searchParams.delete("timestamp"),e.toString()}var sb;(n=>{function e(i){for(const r of i.splice(0))r.dispose()}n.disposeAll=e})(sb||(sb={}));class dr{constructor(){this._listeners=new Set,this.event=(e,i)=>{this._listeners.add(e);let r=!1;const l=this,o={dispose(){r||(r=!0,l._listeners.delete(e))}};return i&&i.push(o),o}}fire(e){const i=!this._deliveryQueue;this._deliveryQueue||(this._deliveryQueue=[]);for(const r of this._listeners)this._deliveryQueue.push({listener:r,event:e});if(i){for(let r=0;r<this._deliveryQueue.length;r++){const{listener:l,event:o}=this._deliveryQueue[r];l.call(null,o)}this._deliveryQueue=void 0}}dispose(){this._listeners.clear(),this._deliveryQueue&&(this._deliveryQueue=[])}}class A2 extends Error{}class D2{constructor(e){this._ws=new WebSocket(e)}onmessage(e){this._ws.addEventListener("message",i=>e(i.data.toString()))}onopen(e){this._ws.addEventListener("open",e)}onerror(e){this._ws.addEventListener("error",e)}onclose(e){this._ws.addEventListener("close",e)}send(e){this._ws.send(e)}close(){this._ws.close()}}class z2{constructor(e){this._onCloseEmitter=new dr,this._onReportEmitter=new dr,this._onStdioEmitter=new dr,this._onTestFilesChangedEmitter=new dr,this._onLoadTraceRequestedEmitter=new dr,this._onTestPausedEmitter=new dr,this._lastId=0,this._callbacks=new Map,this._isClosed=!1,this.onClose=this._onCloseEmitter.event,this.onReport=this._onReportEmitter.event,this.onStdio=this._onStdioEmitter.event,this.onTestFilesChanged=this._onTestFilesChangedEmitter.event,this.onLoadTraceRequested=this._onLoadTraceRequestedEmitter.event,this.onTestPaused=this._onTestPausedEmitter.event,this._transport=e,this._transport.onmessage(r=>{const l=JSON.parse(r),{id:o,result:u,error:f,method:d,params:g}=l;if(o){const m=this._callbacks.get(o);if(!m)return;this._callbacks.delete(o),f?m.reject(new Error(f)):m.resolve(u)}else this._dispatchEvent(d,g)});const i=setInterval(()=>this._sendMessage("ping").catch(()=>{}),3e4);this._connectedPromise=new Promise((r,l)=>{this._transport.onopen(r),this._transport.onerror(l)}),this._transport.onclose(()=>{this._isClosed=!0,this._onCloseEmitter.fire(),clearInterval(i);for(const r of this._callbacks.values())r.reject(r.error);this._callbacks.clear()})}isClosed(){return this._isClosed}async _sendMessage(e,i){const r=globalThis.__logForTest;r==null||r({method:e,params:i}),await this._connectedPromise;const l=++this._lastId,o={id:l,method:e,params:i},u=new A2(`${e}: test server connection closed`);return this._transport.send(JSON.stringify(o)),new Promise((f,d)=>{this._callbacks.set(l,{resolve:f,reject:d,error:u})})}_sendMessageNoReply(e,i){this._sendMessage(e,i).catch(()=>{})}_dispatchEvent(e,i){e==="report"?this._onReportEmitter.fire(i):e==="stdio"?this._onStdioEmitter.fire(i):e==="testFilesChanged"?this._onTestFilesChangedEmitter.fire(i):e==="loadTraceRequested"?this._onLoadTraceRequestedEmitter.fire(i):e==="testPaused"&&this._onTestPausedEmitter.fire(i)}async initialize(e){await this._sendMessage("initialize",e)}async ping(e){await this._sendMessage("ping",e)}async pingNoReply(e){this._sendMessageNoReply("ping",e)}async watch(e){await this._sendMessage("watch",e)}watchNoReply(e){this._sendMessageNoReply("watch",e)}async open(e){await this._sendMessage("open",e)}openNoReply(e){this._sendMessageNoReply("open",e)}async resizeTerminal(e){await this._sendMessage("resizeTerminal",e)}resizeTerminalNoReply(e){this._sendMessageNoReply("resizeTerminal",e)}async checkBrowsers(e){return await this._sendMessage("checkBrowsers",e)}async installBrowsers(e){await this._sendMessage("installBrowsers",e)}async runGlobalSetup(e){return await this._sendMessage("runGlobalSetup",e)}async runGlobalTeardown(e){return await this._sendMessage("runGlobalTeardown",e)}async clearCache(e){return await this._sendMessage("clearCache",e)}async listFiles(e){return await this._sendMessage("listFiles",e)}async listTests(e){return await this._sendMessage("listTests",e)}async runTests(e){return await this._sendMessage("runTests",e)}async findRelatedTestFiles(e){return await this._sendMessage("findRelatedTestFiles",e)}async stopTests(e){await this._sendMessage("stopTests",e)}stopTestsNoReply(e){this._sendMessageNoReply("stopTests",e)}async closeGracefully(e){await this._sendMessage("closeGracefully",e)}close(){try{this._transport.close()}catch{}}}const U2=({location:n})=>{const[e,i]=Kt("shouldPopulateCanvasFromScreenshot",!1),[r,l]=wx(),[o,u]=Kt("mergeFiles",!1);return v.jsx(PS,{settings:[{type:"select",value:r,set:l,name:"Theme",options:vx},...n==="ui-mode"?[{type:"check",value:o,set:u,name:"Merge files"}]:[],{type:"check",value:e,set:i,name:"Display canvas content",title:"Attempt to display the captured canvas appearance in the snapshot preview. May not be accurate."}]})};export{w2 as D,Gb as E,Et as R,nc as S,j2 as T,D2 as W,U_ as _,z2 as a,U2 as b,R2 as c,v2 as d,N2 as e,O2 as f,Sx as g,k2 as h,M2 as i,v as j,ct as k,S_ as l,_t as m,bc as n,pt as o,Kt as p,PS as q,R as r,as as s,$b as t,ds as u,fx as v};