@hatiolab/things-scene 9.0.0-beta.2 → 9.0.0-beta.21

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 (341) hide show
  1. package/db.sqlite +0 -0
  2. package/dist/animation/animate.d.ts +4 -0
  3. package/dist/animation/animations/animation.d.ts +14 -0
  4. package/dist/animation/animations/fade.d.ts +4 -0
  5. package/dist/animation/animations/heartbeat.d.ts +4 -0
  6. package/dist/animation/animations/moving.d.ts +4 -0
  7. package/dist/animation/animations/outline.d.ts +10 -0
  8. package/dist/animation/animations/rotation.d.ts +4 -0
  9. package/dist/animation/animations/vibration.d.ts +4 -0
  10. package/dist/animation/compile.d.ts +1 -0
  11. package/dist/animation/delta.d.ts +19 -0
  12. package/dist/animation/index.d.ts +1 -0
  13. package/dist/command/command-change.d.ts +7 -0
  14. package/dist/command/command-migrate.d.ts +4 -0
  15. package/dist/command/command-migrate.js +85 -0
  16. package/dist/command/command-migrate.js.map +1 -0
  17. package/dist/command/command.d.ts +5 -0
  18. package/dist/command/snapshot-commander.d.ts +15 -0
  19. package/dist/components/anchor/anchor.d.ts +128 -0
  20. package/dist/components/anchor/ellipse-anchors.d.ts +2 -0
  21. package/dist/components/anchor/ellipse-anchors.js +38 -0
  22. package/dist/components/anchor/ellipse-anchors.js.map +1 -0
  23. package/dist/components/anchor/rect-anchors.d.ts +10 -0
  24. package/dist/components/audio.d.ts +25 -0
  25. package/dist/components/audio.js +141 -0
  26. package/dist/components/audio.js.map +1 -0
  27. package/dist/components/cloud.d.ts +13 -0
  28. package/dist/components/cloud.js +31 -0
  29. package/dist/components/cloud.js.map +1 -0
  30. package/dist/components/component.d.ts +227 -0
  31. package/dist/components/component.js +912 -0
  32. package/dist/components/component.js.map +1 -0
  33. package/dist/components/container-abstract.d.ts +51 -0
  34. package/dist/components/container-abstract.js +372 -0
  35. package/dist/components/container-abstract.js.map +1 -0
  36. package/dist/components/container.d.ts +38 -0
  37. package/dist/components/container.js +75 -0
  38. package/dist/components/container.js.map +1 -0
  39. package/dist/components/data/data-mapping.d.ts +16 -0
  40. package/dist/components/data/data.d.ts +8 -0
  41. package/dist/components/data/evaluator.d.ts +1 -0
  42. package/dist/components/donut.d.ts +15 -0
  43. package/dist/components/donut.js +74 -0
  44. package/dist/components/donut.js.map +1 -0
  45. package/dist/components/drawer/draw-image-pendable.d.ts +1 -0
  46. package/dist/components/drawer/effect.d.ts +1 -0
  47. package/dist/components/drawer/fill.d.ts +14 -0
  48. package/dist/components/drawer/format.d.ts +1 -0
  49. package/dist/components/drawer/line.d.ts +3 -0
  50. package/dist/components/drawer/stroke.d.ts +1 -0
  51. package/dist/components/drawer/text-wrapper.d.ts +10 -0
  52. package/dist/components/drawer/text.d.ts +3 -0
  53. package/dist/components/ellipse.d.ts +35 -0
  54. package/dist/components/ellipse.js +99 -0
  55. package/dist/components/ellipse.js.map +1 -0
  56. package/dist/components/file/ondropfile.d.ts +1 -0
  57. package/dist/components/fit/fit.d.ts +15 -0
  58. package/dist/components/geometry/transcoord.d.ts +41 -0
  59. package/dist/components/geometry/union.d.ts +6 -0
  60. package/dist/components/gif-view.d.ts +18 -0
  61. package/dist/components/gif-view.js +116 -0
  62. package/dist/components/gif-view.js.map +1 -0
  63. package/dist/components/global-ref.d.ts +36 -0
  64. package/dist/components/global-ref.js +128 -0
  65. package/dist/components/global-ref.js.map +1 -0
  66. package/dist/components/group.d.ts +15 -0
  67. package/dist/components/group.js +145 -0
  68. package/dist/components/group.js.map +1 -0
  69. package/dist/components/html/elements.d.ts +2 -0
  70. package/dist/components/html/fill.d.ts +1 -0
  71. package/dist/components/html/reposition.d.ts +1 -0
  72. package/dist/components/html/shadow.d.ts +1 -0
  73. package/dist/components/html-overlay-container.d.ts +27 -0
  74. package/dist/components/html-overlay-container.js +14 -0
  75. package/dist/components/html-overlay-container.js.map +1 -0
  76. package/dist/components/html-overlay-element.d.ts +25 -0
  77. package/dist/components/html-overlay-element.js +9 -0
  78. package/dist/components/html-overlay-element.js.map +1 -0
  79. package/dist/components/image-view.d.ts +19 -0
  80. package/dist/components/image-view.js +180 -0
  81. package/dist/components/image-view.js.map +1 -0
  82. package/dist/components/index.d.ts +32 -0
  83. package/dist/components/index.js +39 -0
  84. package/dist/components/index.js.map +1 -0
  85. package/dist/components/info-window.d.ts +41 -0
  86. package/dist/components/info-window.js +425 -0
  87. package/dist/components/info-window.js.map +1 -0
  88. package/dist/components/line.d.ts +91 -0
  89. package/dist/components/line.js +303 -0
  90. package/dist/components/line.js.map +1 -0
  91. package/dist/components/local-ref.d.ts +47 -0
  92. package/dist/components/local-ref.js +103 -0
  93. package/dist/components/local-ref.js.map +1 -0
  94. package/dist/components/mixins/connectable.d.ts +45 -0
  95. package/dist/components/mixins/data-source.d.ts +9 -0
  96. package/dist/components/mixins/html-element.d.ts +24 -0
  97. package/dist/components/mixins/move-handle.d.ts +11 -0
  98. package/dist/components/mixins/rect-path.d.ts +13 -0
  99. package/dist/components/mixins/value-holder.d.ts +18 -0
  100. package/dist/components/mutater/bounds.d.ts +10 -0
  101. package/dist/components/mutater/path.d.ts +5 -0
  102. package/dist/components/ortholine.d.ts +21 -0
  103. package/dist/components/ortholine.js +814 -0
  104. package/dist/components/ortholine.js.map +1 -0
  105. package/dist/components/outline/ellipse-outline.d.ts +4 -0
  106. package/dist/components/outline/ellipse-outline.js +11 -0
  107. package/dist/components/outline/ellipse-outline.js.map +1 -0
  108. package/dist/components/outline/path-outline.d.ts +1 -0
  109. package/dist/components/path.d.ts +5 -0
  110. package/dist/components/path.js +40 -0
  111. package/dist/components/path.js.map +1 -0
  112. package/dist/components/polygon.d.ts +40 -0
  113. package/dist/components/polygon.js +157 -0
  114. package/dist/components/polygon.js.map +1 -0
  115. package/dist/components/polyline.d.ts +18 -0
  116. package/dist/components/polyline.js +102 -0
  117. package/dist/components/polyline.js.map +1 -0
  118. package/dist/components/popup.d.ts +48 -0
  119. package/dist/components/popup.js +138 -0
  120. package/dist/components/popup.js.map +1 -0
  121. package/dist/components/rect.d.ts +26 -0
  122. package/dist/components/rect.js +91 -0
  123. package/dist/components/rect.js.map +1 -0
  124. package/dist/components/retention/retention-manager.d.ts +8 -0
  125. package/dist/components/root-container.d.ts +90 -0
  126. package/dist/components/root-container.js +478 -0
  127. package/dist/components/root-container.js.map +1 -0
  128. package/dist/components/ruler.d.ts +16 -0
  129. package/dist/components/ruler.js +77 -0
  130. package/dist/components/ruler.js.map +1 -0
  131. package/dist/components/shape.d.ts +25 -0
  132. package/dist/components/shape.js +80 -0
  133. package/dist/components/shape.js.map +1 -0
  134. package/dist/components/star.d.ts +13 -0
  135. package/dist/components/star.js +80 -0
  136. package/dist/components/star.js.map +1 -0
  137. package/dist/components/text/substitutor.d.ts +3 -0
  138. package/dist/components/text.d.ts +8 -0
  139. package/dist/components/text.js +15 -0
  140. package/dist/components/text.js.map +1 -0
  141. package/dist/components/three-container.d.ts +60 -0
  142. package/dist/components/three-container.js +515 -0
  143. package/dist/components/three-container.js.map +1 -0
  144. package/dist/components/triangle.d.ts +15 -0
  145. package/dist/components/triangle.js +76 -0
  146. package/dist/components/triangle.js.map +1 -0
  147. package/dist/const.d.ts +39 -0
  148. package/dist/core/collection.d.ts +8 -0
  149. package/dist/core/debug.d.ts +1 -0
  150. package/dist/core/deep-equals.d.ts +1 -0
  151. package/dist/core/dom-to-image.d.ts +127 -0
  152. package/dist/core/event.d.ts +92 -0
  153. package/dist/core/index.d.ts +2 -0
  154. package/dist/core/list.d.ts +32 -0
  155. package/dist/core/logger.d.ts +3 -0
  156. package/dist/core/memoize.d.ts +6 -0
  157. package/dist/core/mixin.d.ts +1 -0
  158. package/dist/core/obj-accessor.d.ts +1 -0
  159. package/dist/core/reference-map.d.ts +14 -0
  160. package/dist/core/round-rect.d.ts +19 -0
  161. package/dist/core/script-loader.d.ts +3 -0
  162. package/dist/core/snapshot-taker.d.ts +12 -0
  163. package/dist/core/stack.d.ts +2 -0
  164. package/dist/core/timecapsule.d.ts +18 -0
  165. package/dist/core/utils.d.ts +9 -0
  166. package/dist/decorator/anchors-decorator.d.ts +31 -0
  167. package/dist/decorator/data-spread-decorator.d.ts +1 -0
  168. package/dist/decorator/decotag-decorator.d.ts +1 -0
  169. package/dist/decorator/index.d.ts +2 -0
  170. package/dist/decorator/link-decorator.d.ts +1 -0
  171. package/dist/effect/gradation.d.ts +1 -0
  172. package/dist/effect/index.d.ts +1 -0
  173. package/dist/effect/shadow.d.ts +2 -0
  174. package/dist/effect/turn.d.ts +1 -0
  175. package/dist/event/event-engine.d.ts +12 -0
  176. package/dist/event/event-pump.d.ts +11 -0
  177. package/dist/event/event-tracker.d.ts +21 -0
  178. package/dist/event/index.d.ts +2 -0
  179. package/dist/event/ua-event-handler.d.ts +32 -0
  180. package/dist/event-map/event-map.d.ts +9 -0
  181. package/dist/event-map/index.d.ts +1 -0
  182. package/dist/event-map/move-handler.d.ts +1 -0
  183. package/dist/event-map/text-editor-lite.d.ts +1 -0
  184. package/dist/index.d.ts +1 -0
  185. package/dist/index.js +3 -0
  186. package/dist/index.js.map +1 -0
  187. package/dist/layer/action/emphasize.d.ts +2 -0
  188. package/dist/layer/action/popup.d.ts +5 -0
  189. package/dist/layer/action/pressed.d.ts +2 -0
  190. package/dist/layer/add-layer.d.ts +42 -0
  191. package/dist/layer/add-layer.js +142 -0
  192. package/dist/layer/add-layer.js.map +1 -0
  193. package/dist/layer/decotag-layer.d.ts +27 -0
  194. package/dist/layer/decotag-layer.js +105 -0
  195. package/dist/layer/decotag-layer.js.map +1 -0
  196. package/dist/layer/guide-layer.d.ts +44 -0
  197. package/dist/layer/guide-layer.js +261 -0
  198. package/dist/layer/guide-layer.js.map +1 -0
  199. package/dist/layer/index.d.ts +7 -0
  200. package/dist/layer/index.js +11 -0
  201. package/dist/layer/index.js.map +1 -0
  202. package/dist/layer/layer.d.ts +32 -0
  203. package/dist/layer/layer.js +155 -0
  204. package/dist/layer/layer.js.map +1 -0
  205. package/dist/layer/model-layer.d.ts +46 -0
  206. package/dist/layer/model-layer.js +402 -0
  207. package/dist/layer/model-layer.js.map +1 -0
  208. package/dist/layer/modeler/anchor-handler.d.ts +36 -0
  209. package/dist/layer/modeler/control-handler.d.ts +18 -0
  210. package/dist/layer/modeler/focus-outline.d.ts +5 -0
  211. package/dist/layer/modeler/group-outline.d.ts +5 -0
  212. package/dist/layer/modeler/index.d.ts +7 -0
  213. package/dist/layer/modeler/path-handler.d.ts +22 -0
  214. package/dist/layer/modeler/resizer.d.ts +13 -0
  215. package/dist/layer/modeler/rotator.d.ts +15 -0
  216. package/dist/layer/modeler/rotator.js +120 -0
  217. package/dist/layer/modeler/rotator.js.map +1 -0
  218. package/dist/layer/modeling-layer.d.ts +66 -0
  219. package/dist/layer/modeling-layer.js +451 -0
  220. package/dist/layer/modeling-layer.js.map +1 -0
  221. package/dist/layer/selection/selected-finder.d.ts +1 -0
  222. package/dist/layer/selection-layer.d.ts +42 -0
  223. package/dist/layer/selection-layer.js +307 -0
  224. package/dist/layer/selection-layer.js.map +1 -0
  225. package/dist/layer/shift-layer.d.ts +18 -0
  226. package/dist/layer/shift-layer.js +61 -0
  227. package/dist/layer/shift-layer.js.map +1 -0
  228. package/dist/layout/absolute.d.ts +8 -0
  229. package/dist/layout/card.d.ts +7 -0
  230. package/dist/layout/html-absolute.d.ts +8 -0
  231. package/dist/layout/index.d.ts +8 -0
  232. package/dist/layout/index.js +12 -0
  233. package/dist/layout/index.js.map +1 -0
  234. package/dist/layout/layout.d.ts +11 -0
  235. package/dist/layout/linear-horizontal.d.ts +7 -0
  236. package/dist/layout/linear-vertical.d.ts +7 -0
  237. package/dist/layout/table.d.ts +9 -0
  238. package/dist/layout/three.d.ts +8 -0
  239. package/dist/layout/three.js +20 -0
  240. package/dist/layout/three.js.map +1 -0
  241. package/dist/license/license.d.ts +18 -0
  242. package/dist/model/compile.d.ts +1 -0
  243. package/dist/model/compile.js +28 -0
  244. package/dist/model/compile.js.map +1 -0
  245. package/dist/model/duplicate.d.ts +1 -0
  246. package/dist/model/index.d.ts +3 -0
  247. package/dist/model/selector.d.ts +2 -0
  248. package/dist/style/compile.d.ts +1 -0
  249. package/dist/style/index.d.ts +1 -0
  250. package/dist/things-scene/api/add-start.d.ts +1 -0
  251. package/dist/things-scene/api/add.d.ts +5 -0
  252. package/dist/things-scene/api/align.d.ts +1 -0
  253. package/dist/things-scene/api/change.d.ts +2 -0
  254. package/dist/things-scene/api/clipboard.d.ts +3 -0
  255. package/dist/things-scene/api/distribute.d.ts +1 -0
  256. package/dist/things-scene/api/duplicate.d.ts +4 -0
  257. package/dist/things-scene/api/fullscreen.d.ts +1 -0
  258. package/dist/things-scene/api/group.d.ts +8 -0
  259. package/dist/things-scene/api/group.js +78 -0
  260. package/dist/things-scene/api/group.js.map +1 -0
  261. package/dist/things-scene/api/ids.d.ts +4 -0
  262. package/dist/things-scene/api/index.d.ts +15 -0
  263. package/dist/things-scene/api/listener.d.ts +3 -0
  264. package/dist/things-scene/api/remove.d.ts +4 -0
  265. package/dist/things-scene/api/symmetry.d.ts +2 -0
  266. package/dist/things-scene/api/symmetry.js +39 -0
  267. package/dist/things-scene/api/symmetry.js.map +1 -0
  268. package/dist/things-scene/api/to-data-url.d.ts +1 -0
  269. package/dist/things-scene/api/to-data-url.js +69 -0
  270. package/dist/things-scene/api/to-data-url.js.map +1 -0
  271. package/dist/things-scene/api/zorder.d.ts +2 -0
  272. package/dist/things-scene/application-context.d.ts +40 -0
  273. package/dist/things-scene/config.d.ts +4 -0
  274. package/dist/things-scene/create.d.ts +20 -0
  275. package/dist/things-scene/fps.d.ts +1 -0
  276. package/dist/things-scene/index.d.ts +17 -0
  277. package/dist/things-scene/index.js +23 -0
  278. package/dist/things-scene/index.js.map +1 -0
  279. package/dist/things-scene/polyfill.d.ts +2 -0
  280. package/dist/things-scene/scene.d.ts +155 -0
  281. package/dist/things-scene/version.d.ts +2 -0
  282. package/dist/threed/common.d.ts +22 -0
  283. package/dist/threed/control/three-controls.d.ts +11 -0
  284. package/dist/threed/control/three-controls.js +620 -0
  285. package/dist/threed/control/three-controls.js.map +1 -0
  286. package/dist/threed/html/elements.d.ts +2 -0
  287. package/dist/threed/real-object-camera-meshed.d.ts +12 -0
  288. package/dist/threed/real-object-camera-meshed.js +49 -0
  289. package/dist/threed/real-object-camera-meshed.js.map +1 -0
  290. package/dist/threed/real-object-camera.d.ts +9 -0
  291. package/dist/threed/real-object-camera.js +31 -0
  292. package/dist/threed/real-object-camera.js.map +1 -0
  293. package/dist/threed/real-object-dom-element.d.ts +20 -0
  294. package/dist/threed/real-object-dom-element.js +78 -0
  295. package/dist/threed/real-object-dom-element.js.map +1 -0
  296. package/dist/threed/real-object-dummy.d.ts +6 -0
  297. package/dist/threed/real-object-dummy.js +11 -0
  298. package/dist/threed/real-object-dummy.js.map +1 -0
  299. package/dist/threed/real-object-extrude.d.ts +19 -0
  300. package/dist/threed/real-object-extrude.js +171 -0
  301. package/dist/threed/real-object-extrude.js.map +1 -0
  302. package/dist/threed/real-object-gltf.d.ts +15 -0
  303. package/dist/threed/real-object-gltf.js +97 -0
  304. package/dist/threed/real-object-gltf.js.map +1 -0
  305. package/dist/threed/real-object-group.d.ts +5 -0
  306. package/dist/threed/real-object-group.js +11 -0
  307. package/dist/threed/real-object-group.js.map +1 -0
  308. package/dist/threed/real-object-mesh.d.ts +11 -0
  309. package/dist/threed/real-object-mesh.js +55 -0
  310. package/dist/threed/real-object-mesh.js.map +1 -0
  311. package/dist/threed/real-object-plane.d.ts +6 -0
  312. package/dist/threed/real-object-plane.js +23 -0
  313. package/dist/threed/real-object-plane.js.map +1 -0
  314. package/dist/threed/real-object-scene.d.ts +21 -0
  315. package/dist/threed/real-object-scene.js +89 -0
  316. package/dist/threed/real-object-scene.js.map +1 -0
  317. package/dist/threed/real-object-sprite.d.ts +12 -0
  318. package/dist/threed/real-object-sprite.js +35 -0
  319. package/dist/threed/real-object-sprite.js.map +1 -0
  320. package/dist/threed/real-object-text.d.ts +16 -0
  321. package/dist/threed/real-object-text.js +70 -0
  322. package/dist/threed/real-object-text.js.map +1 -0
  323. package/dist/threed/real-object.d.ts +48 -0
  324. package/dist/threed/real-object.js +199 -0
  325. package/dist/threed/real-object.js.map +1 -0
  326. package/dist/threed/texture/text-texture.d.ts +8 -0
  327. package/dist/threed/three-dimensional-container.d.ts +7 -0
  328. package/dist/threed/three-dimensional-container.js +2 -0
  329. package/dist/threed/three-dimensional-container.js.map +1 -0
  330. package/dist/threed/utils/bound-uv-generator.d.ts +16 -0
  331. package/dist/types.d.ts +53 -0
  332. package/dist/types.js +368 -0
  333. package/dist/types.js.map +1 -0
  334. package/package.json +5 -2
  335. package/schema.graphql +5 -0
  336. package/things-scene-ie.js +1 -1
  337. package/things-scene-ie.js.LICENSE.txt +22 -0
  338. package/things-scene-min.js +1 -1
  339. package/things-scene-min.js.LICENSE.txt +22 -0
  340. package/things-scene.d.ts +13 -1
  341. package/things-scene.mjs +34 -14
package/things-scene.mjs CHANGED
@@ -1,27 +1,26 @@
1
- var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},e=function(t){return t&&t.Math===Math&&t},r=e("object"==typeof globalThis&&globalThis)||e("object"==typeof window&&window)||e("object"==typeof self&&self)||e("object"==typeof t&&t)||e("object"==typeof t&&t)||function(){return this}()||Function("return this")(),n={},i=function(t){try{return!!t()}catch(t){return!0}},o=!i((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})),a=!i((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),s=a,c=Function.prototype.call,u=s?c.bind(c):function(){return c.apply(c,arguments)},l={},h={}.propertyIsEnumerable,f=Object.getOwnPropertyDescriptor,d=f&&!h.call({1:2},1);l.f=d?function(t){var e=f(this,t);return!!e&&e.enumerable}:h;var p,g,v=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},y=a,m=Function.prototype,b=m.call,x=y&&m.bind.bind(b,b),w=y?x:function(t){return function(){return b.apply(t,arguments)}},A=w,_=A({}.toString),k=A("".slice),E=function(t){return k(_(t),8,-1)},S=i,M=E,T=Object,P=w("".split),O=S((function(){return!T("z").propertyIsEnumerable(0)}))?function(t){return"String"===M(t)?P(t,""):T(t)}:T,I=function(t){return null==t},C=I,R=TypeError,j=function(t){if(C(t))throw new R("Can't call method on "+t);return t},L=O,D=j,z=function(t){return L(D(t))},N="object"==typeof document&&document.all,F=void 0===N&&void 0!==N?function(t){return"function"==typeof t||t===N}:function(t){return"function"==typeof t},B=F,U=function(t){return"object"==typeof t?null!==t:B(t)},Y=r,H=F,G=function(t,e){return arguments.length<2?(r=Y[t],H(r)?r:void 0):Y[t]&&Y[t][e];var r},W=w({}.isPrototypeOf),$=r.navigator,q=$&&$.userAgent,X=q?String(q):"",V=r,K=X,Q=V.process,J=V.Deno,Z=Q&&Q.versions||J&&J.version,tt=Z&&Z.v8;tt&&(g=(p=tt.split("."))[0]>0&&p[0]<4?1:+(p[0]+p[1])),!g&&K&&(!(p=K.match(/Edge\/(\d+)/))||p[1]>=74)&&(p=K.match(/Chrome\/(\d+)/))&&(g=+p[1]);var et=g,rt=et,nt=i,it=r.String,ot=!!Object.getOwnPropertySymbols&&!nt((function(){var t=Symbol("symbol detection");return!it(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&rt&&rt<41})),at=ot&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,st=G,ct=F,ut=W,lt=Object,ht=at?function(t){return"symbol"==typeof t}:function(t){var e=st("Symbol");return ct(e)&&ut(e.prototype,lt(t))},ft=String,dt=function(t){try{return ft(t)}catch(t){return"Object"}},pt=F,gt=dt,vt=TypeError,yt=function(t){if(pt(t))return t;throw new vt(gt(t)+" is not a function")},mt=yt,bt=I,xt=function(t,e){var r=t[e];return bt(r)?void 0:mt(r)},wt=u,At=F,_t=U,kt=TypeError,Et=function(t,e){var r,n;if("string"===e&&At(r=t.toString)&&!_t(n=wt(r,t)))return n;if(At(r=t.valueOf)&&!_t(n=wt(r,t)))return n;if("string"!==e&&At(r=t.toString)&&!_t(n=wt(r,t)))return n;throw new kt("Can't convert object to primitive value")},St={exports:{}},Mt=r,Tt=Object.defineProperty,Pt=function(t,e){try{Tt(Mt,t,{value:e,configurable:!0,writable:!0})}catch(r){Mt[t]=e}return e},Ot=r,It=Pt,Ct="__core-js_shared__",Rt=St.exports=Ot[Ct]||It(Ct,{});(Rt.versions||(Rt.versions=[])).push({version:"3.40.0",mode:"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.40.0/LICENSE",source:"https://github.com/zloirock/core-js"});var jt=St.exports,Lt=function(t,e){return jt[t]||(jt[t]=e||{})},Dt=j,zt=Object,Nt=function(t){return zt(Dt(t))},Ft=Nt,Bt=w({}.hasOwnProperty),Ut=Object.hasOwn||function(t,e){return Bt(Ft(t),e)},Yt=w,Ht=0,Gt=Math.random(),Wt=Yt(1..toString),$t=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Wt(++Ht+Gt,36)},qt=Lt,Xt=Ut,Vt=$t,Kt=ot,Qt=at,Jt=r.Symbol,Zt=qt("wks"),te=Qt?Jt.for||Jt:Jt&&Jt.withoutSetter||Vt,ee=function(t){return Xt(Zt,t)||(Zt[t]=Kt&&Xt(Jt,t)?Jt[t]:te("Symbol."+t)),Zt[t]},re=u,ne=U,ie=ht,oe=xt,ae=Et,se=TypeError,ce=ee("toPrimitive"),ue=function(t,e){if(!ne(t)||ie(t))return t;var r,n=oe(t,ce);if(n){if(void 0===e&&(e="default"),r=re(n,t,e),!ne(r)||ie(r))return r;throw new se("Can't convert object to primitive value")}return void 0===e&&(e="number"),ae(t,e)},le=ue,he=ht,fe=function(t){var e=le(t,"string");return he(e)?e:e+""},de=U,pe=r.document,ge=de(pe)&&de(pe.createElement),ve=function(t){return ge?pe.createElement(t):{}},ye=ve,me=!o&&!i((function(){return 7!==Object.defineProperty(ye("div"),"a",{get:function(){return 7}}).a})),be=o,xe=u,we=l,Ae=v,_e=z,ke=fe,Ee=Ut,Se=me,Me=Object.getOwnPropertyDescriptor;n.f=be?Me:function(t,e){if(t=_e(t),e=ke(e),Se)try{return Me(t,e)}catch(t){}if(Ee(t,e))return Ae(!xe(we.f,t,e),t[e])};var Te={},Pe=o&&i((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),Oe=U,Ie=String,Ce=TypeError,Re=function(t){if(Oe(t))return t;throw new Ce(Ie(t)+" is not an object")},je=o,Le=me,De=Pe,ze=Re,Ne=fe,Fe=TypeError,Be=Object.defineProperty,Ue=Object.getOwnPropertyDescriptor,Ye="enumerable",He="configurable",Ge="writable";Te.f=je?De?function(t,e,r){if(ze(t),e=Ne(e),ze(r),"function"==typeof t&&"prototype"===e&&"value"in r&&Ge in r&&!r[Ge]){var n=Ue(t,e);n&&n[Ge]&&(t[e]=r.value,r={configurable:He in r?r[He]:n[He],enumerable:Ye in r?r[Ye]:n[Ye],writable:!1})}return Be(t,e,r)}:Be:function(t,e,r){if(ze(t),e=Ne(e),ze(r),Le)try{return Be(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new Fe("Accessors not supported");return"value"in r&&(t[e]=r.value),t};var We=Te,$e=v,qe=o?function(t,e,r){return We.f(t,e,$e(1,r))}:function(t,e,r){return t[e]=r,t},Xe={exports:{}},Ve=o,Ke=Ut,Qe=Function.prototype,Je=Ve&&Object.getOwnPropertyDescriptor,Ze=Ke(Qe,"name"),tr={EXISTS:Ze,PROPER:Ze&&"something"===function(){}.name,CONFIGURABLE:Ze&&(!Ve||Ve&&Je(Qe,"name").configurable)},er=w,rr=F,nr=St.exports,ir=er(Function.toString);rr(nr.inspectSource)||(nr.inspectSource=function(t){return ir(t)});var or,ar,sr,cr=nr.inspectSource,ur=F,lr=r.WeakMap,hr=ur(lr)&&/native code/.test(String(lr)),fr=$t,dr=Lt("keys"),pr=function(t){return dr[t]||(dr[t]=fr(t))},gr={},vr=hr,yr=r,mr=U,br=qe,xr=Ut,wr=St.exports,Ar=pr,_r=gr,kr="Object already initialized",Er=yr.TypeError,Sr=yr.WeakMap;if(vr||wr.state){var Mr=wr.state||(wr.state=new Sr);Mr.get=Mr.get,Mr.has=Mr.has,Mr.set=Mr.set,or=function(t,e){if(Mr.has(t))throw new Er(kr);return e.facade=t,Mr.set(t,e),e},ar=function(t){return Mr.get(t)||{}},sr=function(t){return Mr.has(t)}}else{var Tr=Ar("state");_r[Tr]=!0,or=function(t,e){if(xr(t,Tr))throw new Er(kr);return e.facade=t,br(t,Tr,e),e},ar=function(t){return xr(t,Tr)?t[Tr]:{}},sr=function(t){return xr(t,Tr)}}var Pr={set:or,get:ar,has:sr,enforce:function(t){return sr(t)?ar(t):or(t,{})},getterFor:function(t){return function(e){var r;if(!mr(e)||(r=ar(e)).type!==t)throw new Er("Incompatible receiver, "+t+" required");return r}}},Or=w,Ir=i,Cr=F,Rr=Ut,jr=o,Lr=tr.CONFIGURABLE,Dr=cr,zr=Pr.enforce,Nr=Pr.get,Fr=String,Br=Object.defineProperty,Ur=Or("".slice),Yr=Or("".replace),Hr=Or([].join),Gr=jr&&!Ir((function(){return 8!==Br((function(){}),"length",{value:8}).length})),Wr=String(String).split("String"),$r=Xe.exports=function(t,e,r){"Symbol("===Ur(Fr(e),0,7)&&(e="["+Yr(Fr(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(e="get "+e),r&&r.setter&&(e="set "+e),(!Rr(t,"name")||Lr&&t.name!==e)&&(jr?Br(t,"name",{value:e,configurable:!0}):t.name=e),Gr&&r&&Rr(r,"arity")&&t.length!==r.arity&&Br(t,"length",{value:r.arity});try{r&&Rr(r,"constructor")&&r.constructor?jr&&Br(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var n=zr(t);return Rr(n,"source")||(n.source=Hr(Wr,"string"==typeof e?e:"")),t};Function.prototype.toString=$r((function(){return Cr(this)&&Nr(this).source||Dr(this)}),"toString");var qr=F,Xr=Te,Vr=Xe.exports,Kr=Pt,Qr=function(t,e,r,n){n||(n={});var i=n.enumerable,o=void 0!==n.name?n.name:e;if(qr(r)&&Vr(r,o,n),n.global)i?t[e]=r:Kr(e,r);else{try{n.unsafe?t[e]&&(i=!0):delete t[e]}catch(t){}i?t[e]=r:Xr.f(t,e,{value:r,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return t},Jr={},Zr=Math.ceil,tn=Math.floor,en=Math.trunc||function(t){var e=+t;return(e>0?tn:Zr)(e)},rn=en,nn=function(t){var e=+t;return e!=e||0===e?0:rn(e)},on=nn,an=Math.max,sn=Math.min,cn=function(t,e){var r=on(t);return r<0?an(r+e,0):sn(r,e)},un=nn,ln=Math.min,hn=function(t){var e=un(t);return e>0?ln(e,9007199254740991):0},fn=hn,dn=function(t){return fn(t.length)},pn=z,gn=cn,vn=dn,yn=function(t){return function(e,r,n){var i=pn(e),o=vn(i);if(0===o)return!t&&-1;var a,s=gn(n,o);if(t&&r!=r){for(;o>s;)if((a=i[s++])!=a)return!0}else for(;o>s;s++)if((t||s in i)&&i[s]===r)return t||s||0;return!t&&-1}},mn={includes:yn(!0),indexOf:yn(!1)},bn=Ut,xn=z,wn=mn.indexOf,An=gr,_n=w([].push),kn=function(t,e){var r,n=xn(t),i=0,o=[];for(r in n)!bn(An,r)&&bn(n,r)&&_n(o,r);for(;e.length>i;)bn(n,r=e[i++])&&(~wn(o,r)||_n(o,r));return o},En=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],Sn=kn,Mn=En.concat("length","prototype");Jr.f=Object.getOwnPropertyNames||function(t){return Sn(t,Mn)};var Tn={};Tn.f=Object.getOwnPropertySymbols;var Pn=G,On=Jr,In=Tn,Cn=Re,Rn=w([].concat),jn=Pn("Reflect","ownKeys")||function(t){var e=On.f(Cn(t)),r=In.f;return r?Rn(e,r(t)):e},Ln=Ut,Dn=jn,zn=n,Nn=Te,Fn=function(t,e,r){for(var n=Dn(e),i=Nn.f,o=zn.f,a=0;a<n.length;a++){var s=n[a];Ln(t,s)||r&&Ln(r,s)||i(t,s,o(e,s))}},Bn=i,Un=F,Yn=/#|\.prototype\./,Hn=function(t,e){var r=Wn[Gn(t)];return r===qn||r!==$n&&(Un(e)?Bn(e):!!e)},Gn=Hn.normalize=function(t){return String(t).replace(Yn,".").toLowerCase()},Wn=Hn.data={},$n=Hn.NATIVE="N",qn=Hn.POLYFILL="P",Xn=Hn,Vn=r,Kn=n.f,Qn=qe,Jn=Qr,Zn=Pt,ti=Fn,ei=Xn,ri=function(t,e){var r,n,i,o,a,s=t.target,c=t.global,u=t.stat;if(r=c?Vn:u?Vn[s]||Zn(s,{}):Vn[s]&&Vn[s].prototype)for(n in e){if(o=e[n],i=t.dontCallGetSet?(a=Kn(r,n))&&a.value:r[n],!ei(c?n:s+(u?".":"#")+n,t.forced)&&void 0!==i){if(typeof o==typeof i)continue;ti(o,i)}(t.sham||i&&i.sham)&&Qn(o,"sham",!0),Jn(r,n,o,t)}},ni={};ni[ee("toStringTag")]="z";var ii="[object z]"===String(ni),oi=ii,ai=F,si=E,ci=ee("toStringTag"),ui=Object,li="Arguments"===si(function(){return arguments}()),hi=oi?si:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=ui(t),ci))?r:li?si(e):"Object"===(n=si(e))&&ai(e.callee)?"Arguments":n},fi=hi,di=String,pi=function(t){if("Symbol"===fi(t))throw new TypeError("Cannot convert a Symbol value to a string");return di(t)},gi={},vi=kn,yi=En,mi=Object.keys||function(t){return vi(t,yi)},bi=o,xi=Pe,wi=Te,Ai=Re,_i=z,ki=mi;gi.f=bi&&!xi?Object.defineProperties:function(t,e){Ai(t);for(var r,n=_i(e),i=ki(e),o=i.length,a=0;o>a;)wi.f(t,r=i[a++],n[r]);return t};var Ei,Si=G("document","documentElement"),Mi=Re,Ti=gi,Pi=En,Oi=gr,Ii=Si,Ci=ve,Ri="prototype",ji="script",Li=pr("IE_PROTO"),Di=function(){},zi=function(t){return"<"+ji+">"+t+"</"+ji+">"},Ni=function(t){t.write(zi("")),t.close();var e=t.parentWindow.Object;return t=null,e},Fi=function(){try{Ei=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;Fi="undefined"!=typeof document?document.domain&&Ei?Ni(Ei):(e=Ci("iframe"),r="java"+ji+":",e.style.display="none",Ii.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(zi("document.F=Object")),t.close(),t.F):Ni(Ei);for(var n=Pi.length;n--;)delete Fi[Ri][Pi[n]];return Fi()};Oi[Li]=!0;var Bi=Object.create||function(t,e){var r;return null!==t?(Di[Ri]=Mi(t),r=new Di,Di[Ri]=null,r[Li]=t):r=Fi(),void 0===e?r:Ti.f(r,e)},Ui={},Yi=w([].slice),Hi=E,Gi=z,Wi=Jr.f,$i=Yi,qi="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Ui.f=function(t){return qi&&"Window"===Hi(t)?function(t){try{return Wi(t)}catch(t){return $i(qi)}}(t):Wi(Gi(t))};var Xi=Xe.exports,Vi=Te,Ki=function(t,e,r){return r.get&&Xi(r.get,e,{getter:!0}),r.set&&Xi(r.set,e,{setter:!0}),Vi.f(t,e,r)},Qi={},Ji=ee;Qi.f=Ji;var Zi=r,to=Zi,eo=Ut,ro=Qi,no=Te.f,io=function(t){var e=to.Symbol||(to.Symbol={});eo(e,t)||no(e,t,{value:ro.f(t)})},oo=u,ao=G,so=ee,co=Qr,uo=function(){var t=ao("Symbol"),e=t&&t.prototype,r=e&&e.valueOf,n=so("toPrimitive");e&&!e[n]&&co(e,n,(function(t){return oo(r,this)}),{arity:1})},lo=Te.f,ho=Ut,fo=ee("toStringTag"),po=function(t,e,r){t&&!r&&(t=t.prototype),t&&!ho(t,fo)&&lo(t,fo,{configurable:!0,value:e})},go=E,vo=w,yo=function(t){if("Function"===go(t))return vo(t)},mo=yt,bo=a,xo=yo(yo.bind),wo=function(t,e){return mo(t),void 0===e?t:bo?xo(t,e):function(){return t.apply(e,arguments)}},Ao=E,_o=Array.isArray||function(t){return"Array"===Ao(t)},ko=w,Eo=i,So=F,Mo=hi,To=cr,Po=function(){},Oo=G("Reflect","construct"),Io=/^\s*(?:class|function)\b/,Co=ko(Io.exec),Ro=!Io.test(Po),jo=function(t){if(!So(t))return!1;try{return Oo(Po,[],t),!0}catch(t){return!1}},Lo=function(t){if(!So(t))return!1;switch(Mo(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Ro||!!Co(Io,To(t))}catch(t){return!0}};Lo.sham=!0;var Do=!Oo||Eo((function(){var t;return jo(jo.call)||!jo(Object)||!jo((function(){t=!0}))||t}))?Lo:jo,zo=_o,No=Do,Fo=U,Bo=ee("species"),Uo=Array,Yo=function(t){var e;return zo(t)&&(e=t.constructor,(No(e)&&(e===Uo||zo(e.prototype))||Fo(e)&&null===(e=e[Bo]))&&(e=void 0)),void 0===e?Uo:e},Ho=function(t,e){return new(Yo(t))(0===e?0:e)},Go=wo,Wo=O,$o=Nt,qo=dn,Xo=Ho,Vo=w([].push),Ko=function(t){var e=1===t,r=2===t,n=3===t,i=4===t,o=6===t,a=7===t,s=5===t||o;return function(c,u,l,h){for(var f,d,p=$o(c),g=Wo(p),v=qo(g),y=Go(u,l),m=0,b=h||Xo,x=e?b(c,v):r||a?b(c,0):void 0;v>m;m++)if((s||m in g)&&(d=y(f=g[m],m,p),t))if(e)x[m]=d;else if(d)switch(t){case 3:return!0;case 5:return f;case 6:return m;case 2:Vo(x,f)}else switch(t){case 4:return!1;case 7:Vo(x,f)}return o?-1:n||i?i:x}},Qo={forEach:Ko(0),map:Ko(1),filter:Ko(2),some:Ko(3),every:Ko(4),find:Ko(5),findIndex:Ko(6),filterReject:Ko(7)},Jo=ri,Zo=r,ta=u,ea=w,ra=o,na=ot,ia=i,oa=Ut,aa=W,sa=Re,ca=z,ua=fe,la=pi,ha=v,fa=Bi,da=mi,pa=Jr,ga=Ui,va=Tn,ya=n,ma=Te,ba=gi,xa=l,wa=Qr,Aa=Ki,_a=Lt,ka=gr,Ea=$t,Sa=ee,Ma=Qi,Ta=io,Pa=uo,Oa=po,Ia=Pr,Ca=Qo.forEach,Ra=pr("hidden"),ja="Symbol",La="prototype",Da=Ia.set,za=Ia.getterFor(ja),Na=Object[La],Fa=Zo.Symbol,Ba=Fa&&Fa[La],Ua=Zo.RangeError,Ya=Zo.TypeError,Ha=Zo.QObject,Ga=ya.f,Wa=ma.f,$a=ga.f,qa=xa.f,Xa=ea([].push),Va=_a("symbols"),Ka=_a("op-symbols"),Qa=_a("wks"),Ja=!Ha||!Ha[La]||!Ha[La].findChild,Za=function(t,e,r){var n=Ga(Na,e);n&&delete Na[e],Wa(t,e,r),n&&t!==Na&&Wa(Na,e,n)},ts=ra&&ia((function(){return 7!==fa(Wa({},"a",{get:function(){return Wa(this,"a",{value:7}).a}})).a}))?Za:Wa,es=function(t,e){var r=Va[t]=fa(Ba);return Da(r,{type:ja,tag:t,description:e}),ra||(r.description=e),r},rs=function(t,e,r){t===Na&&rs(Ka,e,r),sa(t);var n=ua(e);return sa(r),oa(Va,n)?(r.enumerable?(oa(t,Ra)&&t[Ra][n]&&(t[Ra][n]=!1),r=fa(r,{enumerable:ha(0,!1)})):(oa(t,Ra)||Wa(t,Ra,ha(1,fa(null))),t[Ra][n]=!0),ts(t,n,r)):Wa(t,n,r)},ns=function(t,e){sa(t);var r=ca(e),n=da(r).concat(ss(r));return Ca(n,(function(e){ra&&!ta(is,r,e)||rs(t,e,r[e])})),t},is=function(t){var e=ua(t),r=ta(qa,this,e);return!(this===Na&&oa(Va,e)&&!oa(Ka,e))&&(!(r||!oa(this,e)||!oa(Va,e)||oa(this,Ra)&&this[Ra][e])||r)},os=function(t,e){var r=ca(t),n=ua(e);if(r!==Na||!oa(Va,n)||oa(Ka,n)){var i=Ga(r,n);return!i||!oa(Va,n)||oa(r,Ra)&&r[Ra][n]||(i.enumerable=!0),i}},as=function(t){var e=$a(ca(t)),r=[];return Ca(e,(function(t){oa(Va,t)||oa(ka,t)||Xa(r,t)})),r},ss=function(t){var e=t===Na,r=$a(e?Ka:ca(t)),n=[];return Ca(r,(function(t){!oa(Va,t)||e&&!oa(Na,t)||Xa(n,Va[t])})),n};na||(Fa=function(){if(aa(Ba,this))throw new Ya("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?la(arguments[0]):void 0,e=Ea(t),r=function(t){var n=void 0===this?Zo:this;n===Na&&ta(r,Ka,t),oa(n,Ra)&&oa(n[Ra],e)&&(n[Ra][e]=!1);var i=ha(1,t);try{ts(n,e,i)}catch(t){if(!(t instanceof Ua))throw t;Za(n,e,i)}};return ra&&Ja&&ts(Na,e,{configurable:!0,set:r}),es(e,t)},wa(Ba=Fa[La],"toString",(function(){return za(this).tag})),wa(Fa,"withoutSetter",(function(t){return es(Ea(t),t)})),xa.f=is,ma.f=rs,ba.f=ns,ya.f=os,pa.f=ga.f=as,va.f=ss,Ma.f=function(t){return es(Sa(t),t)},ra&&(Aa(Ba,"description",{configurable:!0,get:function(){return za(this).description}}),wa(Na,"propertyIsEnumerable",is,{unsafe:!0}))),Jo({global:!0,constructor:!0,wrap:!0,forced:!na,sham:!na},{Symbol:Fa}),Ca(da(Qa),(function(t){Ta(t)})),Jo({target:ja,stat:!0,forced:!na},{useSetter:function(){Ja=!0},useSimple:function(){Ja=!1}}),Jo({target:"Object",stat:!0,forced:!na,sham:!ra},{create:function(t,e){return void 0===e?fa(t):ns(fa(t),e)},defineProperty:rs,defineProperties:ns,getOwnPropertyDescriptor:os}),Jo({target:"Object",stat:!0,forced:!na},{getOwnPropertyNames:as}),Pa(),Oa(Fa,ja),ka[Ra]=!0;var cs=ot&&!!Symbol.for&&!!Symbol.keyFor,us=ri,ls=G,hs=Ut,fs=pi,ds=Lt,ps=cs,gs=ds("string-to-symbol-registry"),vs=ds("symbol-to-string-registry");us({target:"Symbol",stat:!0,forced:!ps},{for:function(t){var e=fs(t);if(hs(gs,e))return gs[e];var r=ls("Symbol")(e);return gs[e]=r,vs[r]=e,r}});var ys=ri,ms=Ut,bs=ht,xs=dt,ws=cs,As=Lt("symbol-to-string-registry");ys({target:"Symbol",stat:!0,forced:!ws},{keyFor:function(t){if(!bs(t))throw new TypeError(xs(t)+" is not a symbol");if(ms(As,t))return As[t]}});var _s=a,ks=Function.prototype,Es=ks.apply,Ss=ks.call,Ms="object"==typeof Reflect&&Reflect.apply||(_s?Ss.bind(Es):function(){return Ss.apply(Es,arguments)}),Ts=_o,Ps=F,Os=E,Is=pi,Cs=w([].push),Rs=ri,js=G,Ls=Ms,Ds=u,zs=w,Ns=i,Fs=F,Bs=ht,Us=Yi,Ys=function(t){if(Ps(t))return t;if(Ts(t)){for(var e=t.length,r=[],n=0;n<e;n++){var i=t[n];"string"==typeof i?Cs(r,i):"number"!=typeof i&&"Number"!==Os(i)&&"String"!==Os(i)||Cs(r,Is(i))}var o=r.length,a=!0;return function(t,e){if(a)return a=!1,e;if(Ts(this))return e;for(var n=0;n<o;n++)if(r[n]===t)return e}}},Hs=ot,Gs=String,Ws=js("JSON","stringify"),$s=zs(/./.exec),qs=zs("".charAt),Xs=zs("".charCodeAt),Vs=zs("".replace),Ks=zs(1..toString),Qs=/[\uD800-\uDFFF]/g,Js=/^[\uD800-\uDBFF]$/,Zs=/^[\uDC00-\uDFFF]$/,tc=!Hs||Ns((function(){var t=js("Symbol")("stringify detection");return"[null]"!==Ws([t])||"{}"!==Ws({a:t})||"{}"!==Ws(Object(t))})),ec=Ns((function(){return'"\\udf06\\ud834"'!==Ws("\udf06\ud834")||'"\\udead"'!==Ws("\udead")})),rc=function(t,e){var r=Us(arguments),n=Ys(e);if(Fs(n)||void 0!==t&&!Bs(t))return r[1]=function(t,e){if(Fs(n)&&(e=Ds(n,this,Gs(t),e)),!Bs(e))return e},Ls(Ws,null,r)},nc=function(t,e,r){var n=qs(r,e-1),i=qs(r,e+1);return $s(Js,t)&&!$s(Zs,i)||$s(Zs,t)&&!$s(Js,n)?"\\u"+Ks(Xs(t,0),16):t};Ws&&Rs({target:"JSON",stat:!0,arity:3,forced:tc||ec},{stringify:function(t,e,r){var n=Us(arguments),i=Ls(tc?rc:Ws,null,n);return ec&&"string"==typeof i?Vs(i,Qs,nc):i}});var ic=Tn,oc=Nt;ri({target:"Object",stat:!0,forced:!ot||i((function(){ic.f(1)}))},{getOwnPropertySymbols:function(t){var e=ic.f;return e?e(oc(t)):[]}});var ac=ri,sc=o,cc=w,uc=Ut,lc=F,hc=W,fc=pi,dc=Ki,pc=Fn,gc=r.Symbol,vc=gc&&gc.prototype;if(sc&&lc(gc)&&(!("description"in vc)||void 0!==gc().description)){var yc={},mc=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:fc(arguments[0]),e=hc(vc,this)?new gc(t):void 0===t?gc():gc(t);return""===t&&(yc[e]=!0),e};pc(mc,gc),mc.prototype=vc,vc.constructor=mc;var bc="Symbol(description detection)"===String(gc("description detection")),xc=cc(vc.valueOf),wc=cc(vc.toString),Ac=/^Symbol\((.*)\)[^)]+$/,_c=cc("".replace),kc=cc("".slice);dc(vc,"description",{configurable:!0,get:function(){var t=xc(this);if(uc(yc,t))return"";var e=wc(t),r=bc?kc(e,7,-1):_c(e,Ac,"$1");return""===r?void 0:r}}),ac({global:!0,constructor:!0,forced:!0},{Symbol:mc})}io("asyncIterator"),io("hasInstance"),io("isConcatSpreadable"),io("iterator"),io("match"),io("matchAll"),io("replace"),io("search"),io("species"),io("split");var Ec=uo;io("toPrimitive"),Ec();var Sc=G,Mc=po;io("toStringTag"),Mc(Sc("Symbol"),"Symbol"),io("unscopables");var Tc=w,Pc=yt,Oc=function(t,e,r){try{return Tc(Pc(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}},Ic=U,Cc=function(t){return Ic(t)||null===t},Rc=Cc,jc=String,Lc=TypeError,Dc=function(t){if(Rc(t))return t;throw new Lc("Can't set "+jc(t)+" as a prototype")},zc=Oc,Nc=U,Fc=j,Bc=Dc,Uc=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=zc(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return Fc(r),Bc(n),Nc(r)?(e?t(r,n):r.__proto__=n,r):r}}():void 0),Yc=Te.f,Hc=function(t,e,r){r in t||Yc(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})},Gc=F,Wc=U,$c=Uc,qc=function(t,e,r){var n,i;return $c&&Gc(n=e.constructor)&&n!==r&&Wc(i=n.prototype)&&i!==r.prototype&&$c(t,i),t},Xc=pi,Vc=function(t,e){return void 0===t?arguments.length<2?"":e:Xc(t)},Kc=U,Qc=qe,Jc=function(t,e){Kc(e)&&"cause"in e&&Qc(t,"cause",e.cause)},Zc=Error,tu=w("".replace),eu=String(new Zc("zxcasd").stack),ru=/\n\s*at [^:]*:[^\n]*/,nu=ru.test(eu),iu=function(t,e){if(nu&&"string"==typeof t&&!Zc.prepareStackTrace)for(;e--;)t=tu(t,ru,"");return t},ou=v,au=!i((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",ou(1,7)),7!==t.stack)})),su=qe,cu=iu,uu=au,lu=Error.captureStackTrace,hu=function(t,e,r,n){uu&&(lu?lu(t,e):su(t,"stack",cu(r,n)))},fu=G,du=Ut,pu=qe,gu=W,vu=Uc,yu=Fn,mu=Hc,bu=qc,xu=Vc,wu=Jc,Au=hu,_u=o,ku=function(t,e,r,n){var i="stackTraceLimit",o=n?2:1,a=t.split("."),s=a[a.length-1],c=fu.apply(null,a);if(c){var u=c.prototype;if(du(u,"cause")&&delete u.cause,!r)return c;var l=fu("Error"),h=e((function(t,e){var r=xu(n?e:t,void 0),i=n?new c(t):new c;return void 0!==r&&pu(i,"message",r),Au(i,h,i.stack,2),this&&gu(u,this)&&bu(i,this,h),arguments.length>o&&wu(i,arguments[o]),i}));h.prototype=u,"Error"!==s?vu?vu(h,l):yu(h,l,{name:!0}):_u&&i in c&&(mu(h,c,i),mu(h,c,"prepareStackTrace")),yu(h,c);try{u.name!==s&&pu(u,"name",s),u.constructor=h}catch(t){}return h}},Eu=ri,Su=Ms,Mu=ku,Tu="WebAssembly",Pu=r[Tu],Ou=7!==new Error("e",{cause:7}).cause,Iu=function(t,e){var r={};r[t]=Mu(t,e,Ou),Eu({global:!0,constructor:!0,arity:1,forced:Ou},r)},Cu=function(t,e){if(Pu&&Pu[t]){var r={};r[t]=Mu(Tu+"."+t,e,Ou),Eu({target:Tu,stat:!0,constructor:!0,arity:1,forced:Ou},r)}};Iu("Error",(function(t){return function(e){return Su(t,this,arguments)}})),Iu("EvalError",(function(t){return function(e){return Su(t,this,arguments)}})),Iu("RangeError",(function(t){return function(e){return Su(t,this,arguments)}})),Iu("ReferenceError",(function(t){return function(e){return Su(t,this,arguments)}})),Iu("SyntaxError",(function(t){return function(e){return Su(t,this,arguments)}})),Iu("TypeError",(function(t){return function(e){return Su(t,this,arguments)}})),Iu("URIError",(function(t){return function(e){return Su(t,this,arguments)}})),Cu("CompileError",(function(t){return function(e){return Su(t,this,arguments)}})),Cu("LinkError",(function(t){return function(e){return Su(t,this,arguments)}})),Cu("RuntimeError",(function(t){return function(e){return Su(t,this,arguments)}}));var Ru=o,ju=i,Lu=Re,Du=Vc,zu=Error.prototype.toString,Nu=ju((function(){if(Ru){var t=Object.create(Object.defineProperty({},"name",{get:function(){return this===t}}));if("true"!==zu.call(t))return!0}return"2: 1"!==zu.call({message:1,name:2})||"Error"!==zu.call({})})),Fu=Nu?function(){var t=Lu(this),e=Du(t.name,"Error"),r=Du(t.message);return e?r?e+": "+r:e:r}:zu,Bu=Qr,Uu=Fu,Yu=Error.prototype;Yu.toString!==Uu&&Bu(Yu,"toString",Uu);var Hu=!i((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),Gu=Ut,Wu=F,$u=Nt,qu=Hu,Xu=pr("IE_PROTO"),Vu=Object,Ku=Vu.prototype,Qu=qu?Vu.getPrototypeOf:function(t){var e=$u(t);if(Gu(e,Xu))return e[Xu];var r=e.constructor;return Wu(r)&&e instanceof r?r.prototype:e instanceof Vu?Ku:null},Ju={},Zu=Ju,tl=ee("iterator"),el=Array.prototype,rl=function(t){return void 0!==t&&(Zu.Array===t||el[tl]===t)},nl=hi,il=xt,ol=I,al=Ju,sl=ee("iterator"),cl=function(t){if(!ol(t))return il(t,sl)||il(t,"@@iterator")||al[nl(t)]},ul=u,ll=yt,hl=Re,fl=dt,dl=cl,pl=TypeError,gl=function(t,e){var r=arguments.length<2?dl(t):e;if(ll(r))return hl(ul(r,t));throw new pl(fl(t)+" is not iterable")},vl=u,yl=Re,ml=xt,bl=function(t,e,r){var n,i;yl(t);try{if(!(n=ml(t,"return"))){if("throw"===e)throw r;return r}n=vl(n,t)}catch(t){i=!0,n=t}if("throw"===e)throw r;if(i)throw n;return yl(n),r},xl=wo,wl=u,Al=Re,_l=dt,kl=rl,El=dn,Sl=W,Ml=gl,Tl=cl,Pl=bl,Ol=TypeError,Il=function(t,e){this.stopped=t,this.result=e},Cl=Il.prototype,Rl=function(t,e,r){var n,i,o,a,s,c,u,l=r&&r.that,h=!(!r||!r.AS_ENTRIES),f=!(!r||!r.IS_RECORD),d=!(!r||!r.IS_ITERATOR),p=!(!r||!r.INTERRUPTED),g=xl(e,l),v=function(t){return n&&Pl(n,"normal",t),new Il(!0,t)},y=function(t){return h?(Al(t),p?g(t[0],t[1],v):g(t[0],t[1])):p?g(t,v):g(t)};if(f)n=t.iterator;else if(d)n=t;else{if(!(i=Tl(t)))throw new Ol(_l(t)+" is not iterable");if(kl(i)){for(o=0,a=El(t);a>o;o++)if((s=y(t[o]))&&Sl(Cl,s))return s;return new Il(!1)}n=Ml(t,i)}for(c=f?t.next:n.next;!(u=wl(c,n)).done;){try{s=y(u.value)}catch(t){Pl(n,"throw",t)}if("object"==typeof s&&s&&Sl(Cl,s))return s}return new Il(!1)},jl=ri,Ll=W,Dl=Qu,zl=Uc,Nl=Fn,Fl=Bi,Bl=qe,Ul=v,Yl=Jc,Hl=hu,Gl=Rl,Wl=Vc,$l=ee("toStringTag"),ql=Error,Xl=[].push,Vl=function(t,e){var r,n=Ll(Kl,this);zl?r=zl(new ql,n?Dl(this):Kl):(r=n?this:Fl(Kl),Bl(r,$l,"Error")),void 0!==e&&Bl(r,"message",Wl(e)),Hl(r,Vl,r.stack,1),arguments.length>2&&Yl(r,arguments[2]);var i=[];return Gl(t,Xl,{that:i}),Bl(r,"errors",i),r};zl?zl(Vl,ql):Nl(Vl,ql,{name:!0});var Kl=Vl.prototype=Fl(ql.prototype,{constructor:Ul(1,Vl),message:Ul(1,""),name:Ul(1,"AggregateError")});jl({global:!0,constructor:!0,arity:2},{AggregateError:Vl});var Ql=ri,Jl=Ms,Zl=i,th=ku,eh="AggregateError",rh=G(eh),nh=!Zl((function(){return 1!==rh([1]).errors[0]}))&&Zl((function(){return 7!==rh([1],eh,{cause:7}).cause}));Ql({global:!0,constructor:!0,arity:2,forced:nh},{AggregateError:th(eh,(function(t){return function(e,r){return Jl(t,this,arguments)}}),nh,!0)});var ih=ee,oh=Bi,ah=Te.f,sh=ih("unscopables"),ch=Array.prototype;void 0===ch[sh]&&ah(ch,sh,{configurable:!0,value:oh(null)});var uh=function(t){ch[sh][t]=!0},lh=Nt,hh=dn,fh=nn,dh=uh;ri({target:"Array",proto:!0},{at:function(t){var e=lh(this),r=hh(e),n=fh(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:e[i]}}),dh("at");var ph=TypeError,gh=function(t){if(t>9007199254740991)throw ph("Maximum allowed index exceeded");return t},vh=o,yh=Te,mh=v,bh=function(t,e,r){vh?yh.f(t,e,mh(0,r)):t[e]=r},xh=i,wh=et,Ah=ee("species"),_h=function(t){return wh>=51||!xh((function(){var e=[];return(e.constructor={})[Ah]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},kh=ri,Eh=i,Sh=_o,Mh=U,Th=Nt,Ph=dn,Oh=gh,Ih=bh,Ch=Ho,Rh=_h,jh=et,Lh=ee("isConcatSpreadable"),Dh=jh>=51||!Eh((function(){var t=[];return t[Lh]=!1,t.concat()[0]!==t})),zh=function(t){if(!Mh(t))return!1;var e=t[Lh];return void 0!==e?!!e:Sh(t)};kh({target:"Array",proto:!0,arity:1,forced:!Dh||!Rh("concat")},{concat:function(t){var e,r,n,i,o,a=Th(this),s=Ch(a,0),c=0;for(e=-1,n=arguments.length;e<n;e++)if(zh(o=-1===e?a:arguments[e]))for(i=Ph(o),Oh(c+i),r=0;r<i;r++,c++)r in o&&Ih(s,c,o[r]);else Oh(c+1),Ih(s,c++,o);return s.length=c,s}});var Nh=dt,Fh=TypeError,Bh=function(t,e){if(!delete t[e])throw new Fh("Cannot delete property "+Nh(e)+" of "+Nh(t))},Uh=Nt,Yh=cn,Hh=dn,Gh=Bh,Wh=Math.min,$h=[].copyWithin||function(t,e){var r=Uh(this),n=Hh(r),i=Yh(t,n),o=Yh(e,n),a=arguments.length>2?arguments[2]:void 0,s=Wh((void 0===a?n:Yh(a,n))-o,n-i),c=1;for(o<i&&i<o+s&&(c=-1,o+=s-1,i+=s-1);s-- >0;)o in r?r[i]=r[o]:Gh(r,i),i+=c,o+=c;return r},qh=uh;ri({target:"Array",proto:!0},{copyWithin:$h}),qh("copyWithin");var Xh=i,Vh=function(t,e){var r=[][t];return!!r&&Xh((function(){r.call(null,e||function(){return 1},1)}))},Kh=Qo.every;ri({target:"Array",proto:!0,forced:!Vh("every")},{every:function(t){return Kh(this,t,arguments.length>1?arguments[1]:void 0)}});var Qh=Nt,Jh=cn,Zh=dn,tf=function(t){for(var e=Qh(this),r=Zh(e),n=arguments.length,i=Jh(n>1?arguments[1]:void 0,r),o=n>2?arguments[2]:void 0,a=void 0===o?r:Jh(o,r);a>i;)e[i++]=t;return e},ef=uh;ri({target:"Array",proto:!0},{fill:tf}),ef("fill");var rf=Qo.filter;ri({target:"Array",proto:!0,forced:!_h("filter")},{filter:function(t){return rf(this,t,arguments.length>1?arguments[1]:void 0)}});var nf=ri,of=Qo.find,af=uh,sf="find",cf=!0;sf in[]&&Array(1)[sf]((function(){cf=!1})),nf({target:"Array",proto:!0,forced:cf},{find:function(t){return of(this,t,arguments.length>1?arguments[1]:void 0)}}),af(sf);var uf=ri,lf=Qo.findIndex,hf=uh,ff="findIndex",df=!0;ff in[]&&Array(1)[ff]((function(){df=!1})),uf({target:"Array",proto:!0,forced:df},{findIndex:function(t){return lf(this,t,arguments.length>1?arguments[1]:void 0)}}),hf(ff);var pf=wo,gf=O,vf=Nt,yf=dn,mf=function(t){var e=1===t;return function(r,n,i){for(var o,a=vf(r),s=gf(a),c=yf(s),u=pf(n,i);c-- >0;)if(u(o=s[c],c,a))switch(t){case 0:return o;case 1:return c}return e?-1:void 0}},bf={findLast:mf(0),findLastIndex:mf(1)},xf=bf.findLast,wf=uh;ri({target:"Array",proto:!0},{findLast:function(t){return xf(this,t,arguments.length>1?arguments[1]:void 0)}}),wf("findLast");var Af=bf.findLastIndex,_f=uh;ri({target:"Array",proto:!0},{findLastIndex:function(t){return Af(this,t,arguments.length>1?arguments[1]:void 0)}}),_f("findLastIndex");var kf=_o,Ef=dn,Sf=gh,Mf=wo,Tf=function(t,e,r,n,i,o,a,s){for(var c,u,l=i,h=0,f=!!a&&Mf(a,s);h<n;)h in r&&(c=f?f(r[h],h,e):r[h],o>0&&kf(c)?(u=Ef(c),l=Tf(t,e,c,u,l,o-1)-1):(Sf(l+1),t[l]=c),l++),h++;return l},Pf=Tf,Of=Pf,If=Nt,Cf=dn,Rf=nn,jf=Ho;ri({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=If(this),r=Cf(e),n=jf(e,0);return n.length=Of(n,e,e,r,0,void 0===t?1:Rf(t)),n}});var Lf=Pf,Df=yt,zf=Nt,Nf=dn,Ff=Ho;ri({target:"Array",proto:!0},{flatMap:function(t){var e,r=zf(this),n=Nf(r);return Df(t),(e=Ff(r,0)).length=Lf(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}});var Bf=Qo.forEach,Uf=Vh("forEach")?[].forEach:function(t){return Bf(this,t,arguments.length>1?arguments[1]:void 0)};ri({target:"Array",proto:!0,forced:[].forEach!==Uf},{forEach:Uf});var Yf=Re,Hf=bl,Gf=function(t,e,r,n){try{return n?e(Yf(r)[0],r[1]):e(r)}catch(e){Hf(t,"throw",e)}},Wf=wo,$f=u,qf=Nt,Xf=Gf,Vf=rl,Kf=Do,Qf=dn,Jf=bh,Zf=gl,td=cl,ed=Array,rd=function(t){var e=qf(t),r=Kf(this),n=arguments.length,i=n>1?arguments[1]:void 0,o=void 0!==i;o&&(i=Wf(i,n>2?arguments[2]:void 0));var a,s,c,u,l,h,f=td(e),d=0;if(!f||this===ed&&Vf(f))for(a=Qf(e),s=r?new this(a):ed(a);a>d;d++)h=o?i(e[d],d):e[d],Jf(s,d,h);else for(s=r?new this:[],l=(u=Zf(e,f)).next;!(c=$f(l,u)).done;d++)h=o?Xf(u,i,[c.value,d],!0):c.value,Jf(s,d,h);return s.length=d,s},nd=ee("iterator"),id=!1;try{var od=0,ad={next:function(){return{done:!!od++}},return:function(){id=!0}};ad[nd]=function(){return this},Array.from(ad,(function(){throw 2}))}catch(t){}var sd=function(t,e){try{if(!e&&!id)return!1}catch(t){return!1}var r=!1;try{var n={};n[nd]=function(){return{next:function(){return{done:r=!0}}}},t(n)}catch(t){}return r},cd=rd;ri({target:"Array",stat:!0,forced:!sd((function(t){Array.from(t)}))},{from:cd});var ud=mn.includes,ld=uh;ri({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function(t){return ud(this,t,arguments.length>1?arguments[1]:void 0)}}),ld("includes");var hd=ri,fd=mn.indexOf,dd=Vh,pd=yo([].indexOf),gd=!!pd&&1/pd([1],1,-0)<0;hd({target:"Array",proto:!0,forced:gd||!dd("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return gd?pd(this,t,e)||0:fd(this,t,e)}}),ri({target:"Array",stat:!0},{isArray:_o});var vd,yd,md,bd=i,xd=F,wd=U,Ad=Qu,_d=Qr,kd=ee("iterator"),Ed=!1;[].keys&&("next"in(md=[].keys())?(yd=Ad(Ad(md)))!==Object.prototype&&(vd=yd):Ed=!0);var Sd=!wd(vd)||bd((function(){var t={};return vd[kd].call(t)!==t}));Sd&&(vd={}),xd(vd[kd])||_d(vd,kd,(function(){return this}));var Md={IteratorPrototype:vd,BUGGY_SAFARI_ITERATORS:Ed},Td=Md.IteratorPrototype,Pd=Bi,Od=v,Id=po,Cd=Ju,Rd=function(){return this},jd=function(t,e,r,n){var i=e+" Iterator";return t.prototype=Pd(Td,{next:Od(+!n,r)}),Id(t,i,!1),Cd[i]=Rd,t},Ld=ri,Dd=u,zd=F,Nd=jd,Fd=Qu,Bd=Uc,Ud=po,Yd=qe,Hd=Qr,Gd=Ju,Wd=tr.PROPER,$d=tr.CONFIGURABLE,qd=Md.IteratorPrototype,Xd=Md.BUGGY_SAFARI_ITERATORS,Vd=ee("iterator"),Kd="keys",Qd="values",Jd="entries",Zd=function(){return this},tp=function(t,e,r,n,i,o,a){Nd(r,e,n);var s,c,u,l=function(t){if(t===i&&g)return g;if(!Xd&&t&&t in d)return d[t];switch(t){case Kd:case Qd:case Jd:return function(){return new r(this,t)}}return function(){return new r(this)}},h=e+" Iterator",f=!1,d=t.prototype,p=d[Vd]||d["@@iterator"]||i&&d[i],g=!Xd&&p||l(i),v="Array"===e&&d.entries||p;if(v&&(s=Fd(v.call(new t)))!==Object.prototype&&s.next&&(Fd(s)!==qd&&(Bd?Bd(s,qd):zd(s[Vd])||Hd(s,Vd,Zd)),Ud(s,h,!0)),Wd&&i===Qd&&p&&p.name!==Qd&&($d?Yd(d,"name",Qd):(f=!0,g=function(){return Dd(p,this)})),i)if(c={values:l(Qd),keys:o?g:l(Kd),entries:l(Jd)},a)for(u in c)(Xd||f||!(u in d))&&Hd(d,u,c[u]);else Ld({target:e,proto:!0,forced:Xd||f},c);return d[Vd]!==g&&Hd(d,Vd,g,{name:i}),Gd[e]=g,c},ep=function(t,e){return{value:t,done:e}},rp=z,np=uh,ip=Ju,op=Pr,ap=Te.f,sp=tp,cp=ep,up=o,lp="Array Iterator",hp=op.set,fp=op.getterFor(lp),dp=sp(Array,"Array",(function(t,e){hp(this,{type:lp,target:rp(t),index:0,kind:e})}),(function(){var t=fp(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,cp(void 0,!0);switch(t.kind){case"keys":return cp(r,!1);case"values":return cp(e[r],!1)}return cp([r,e[r]],!1)}),"values"),pp=ip.Arguments=ip.Array;if(np("keys"),np("values"),np("entries"),up&&"values"!==pp.name)try{ap(pp,"name",{value:"values"})}catch(t){}var gp=ri,vp=O,yp=z,mp=Vh,bp=w([].join);gp({target:"Array",proto:!0,forced:vp!==Object||!mp("join",",")},{join:function(t){return bp(yp(this),void 0===t?",":t)}});var xp=Ms,wp=z,Ap=nn,_p=dn,kp=Vh,Ep=Math.min,Sp=[].lastIndexOf,Mp=!!Sp&&1/[1].lastIndexOf(1,-0)<0,Tp=kp("lastIndexOf"),Pp=Mp||!Tp?function(t){if(Mp)return xp(Sp,this,arguments)||0;var e=wp(this),r=_p(e);if(0===r)return-1;var n=r-1;for(arguments.length>1&&(n=Ep(n,Ap(arguments[1]))),n<0&&(n=r+n);n>=0;n--)if(n in e&&e[n]===t)return n||0;return-1}:Sp;ri({target:"Array",proto:!0,forced:Pp!==[].lastIndexOf},{lastIndexOf:Pp});var Op=Qo.map;ri({target:"Array",proto:!0,forced:!_h("map")},{map:function(t){return Op(this,t,arguments.length>1?arguments[1]:void 0)}});var Ip=Do,Cp=bh,Rp=Array;ri({target:"Array",stat:!0,forced:i((function(){function t(){}return!(Rp.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,r=new(Ip(this)?this:Rp)(e);e>t;)Cp(r,t,arguments[t++]);return r.length=e,r}});var jp=o,Lp=_o,Dp=TypeError,zp=Object.getOwnPropertyDescriptor,Np=jp&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}()?function(t,e){if(Lp(t)&&!zp(t,"length").writable)throw new Dp("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e},Fp=Nt,Bp=dn,Up=Np,Yp=gh;ri({target:"Array",proto:!0,arity:1,forced:i((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}}()},{push:function(t){var e=Fp(this),r=Bp(e),n=arguments.length;Yp(r+n);for(var i=0;i<n;i++)e[r]=arguments[i],r++;return Up(e,r),r}});var Hp=yt,Gp=Nt,Wp=O,$p=dn,qp=TypeError,Xp="Reduce of empty array with no initial value",Vp=function(t){return function(e,r,n,i){var o=Gp(e),a=Wp(o),s=$p(o);if(Hp(r),0===s&&n<2)throw new qp(Xp);var c=t?s-1:0,u=t?-1:1;if(n<2)for(;;){if(c in a){i=a[c],c+=u;break}if(c+=u,t?c<0:s<=c)throw new qp(Xp)}for(;t?c>=0:s>c;c+=u)c in a&&(i=r(i,a[c],c,o));return i}},Kp={left:Vp(!1),right:Vp(!0)},Qp=r,Jp=X,Zp=E,tg=function(t){return Jp.slice(0,t.length)===t},eg=tg("Bun/")?"BUN":tg("Cloudflare-Workers")?"CLOUDFLARE":tg("Deno/")?"DENO":tg("Node.js/")?"NODE":Qp.Bun&&"string"==typeof Bun.version?"BUN":Qp.Deno&&"object"==typeof Deno.version?"DENO":"process"===Zp(Qp.process)?"NODE":Qp.window&&Qp.document?"BROWSER":"REST",rg="NODE"===eg,ng=Kp.left;ri({target:"Array",proto:!0,forced:!rg&&et>79&&et<83||!Vh("reduce")},{reduce:function(t){var e=arguments.length;return ng(this,t,e,e>1?arguments[1]:void 0)}});var ig=Kp.right;ri({target:"Array",proto:!0,forced:!rg&&et>79&&et<83||!Vh("reduceRight")},{reduceRight:function(t){return ig(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}});var og=ri,ag=_o,sg=w([].reverse),cg=[1,2];og({target:"Array",proto:!0,forced:String(cg)===String(cg.reverse())},{reverse:function(){return ag(this)&&(this.length=this.length),sg(this)}});var ug=ri,lg=_o,hg=Do,fg=U,dg=cn,pg=dn,gg=z,vg=bh,yg=ee,mg=Yi,bg=_h("slice"),xg=yg("species"),wg=Array,Ag=Math.max;ug({target:"Array",proto:!0,forced:!bg},{slice:function(t,e){var r,n,i,o=gg(this),a=pg(o),s=dg(t,a),c=dg(void 0===e?a:e,a);if(lg(o)&&(r=o.constructor,(hg(r)&&(r===wg||lg(r.prototype))||fg(r)&&null===(r=r[xg]))&&(r=void 0),r===wg||void 0===r))return mg(o,s,c);for(n=new(void 0===r?wg:r)(Ag(c-s,0)),i=0;s<c;s++,i++)s in o&&vg(n,i,o[s]);return n.length=i,n}});var _g=Qo.some;ri({target:"Array",proto:!0,forced:!Vh("some")},{some:function(t){return _g(this,t,arguments.length>1?arguments[1]:void 0)}});var kg=Yi,Eg=Math.floor,Sg=function(t,e){var r=t.length;if(r<8)for(var n,i,o=1;o<r;){for(i=o,n=t[o];i&&e(t[i-1],n)>0;)t[i]=t[--i];i!==o++&&(t[i]=n)}else for(var a=Eg(r/2),s=Sg(kg(t,0,a),e),c=Sg(kg(t,a),e),u=s.length,l=c.length,h=0,f=0;h<u||f<l;)t[h+f]=h<u&&f<l?e(s[h],c[f])<=0?s[h++]:c[f++]:h<u?s[h++]:c[f++];return t},Mg=Sg,Tg=X.match(/firefox\/(\d+)/i),Pg=!!Tg&&+Tg[1],Og=/MSIE|Trident/.test(X),Ig=X.match(/AppleWebKit\/(\d+)\./),Cg=!!Ig&&+Ig[1],Rg=ri,jg=w,Lg=yt,Dg=Nt,zg=dn,Ng=Bh,Fg=pi,Bg=i,Ug=Mg,Yg=Vh,Hg=Pg,Gg=Og,Wg=et,$g=Cg,qg=[],Xg=jg(qg.sort),Vg=jg(qg.push),Kg=Bg((function(){qg.sort(void 0)})),Qg=Bg((function(){qg.sort(null)})),Jg=Yg("sort"),Zg=!Bg((function(){if(Wg)return Wg<70;if(!(Hg&&Hg>3)){if(Gg)return!0;if($g)return $g<603;var t,e,r,n,i="";for(t=65;t<76;t++){switch(e=String.fromCharCode(t),t){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)qg.push({k:e+n,v:r})}for(qg.sort((function(t,e){return e.v-t.v})),n=0;n<qg.length;n++)e=qg[n].k.charAt(0),i.charAt(i.length-1)!==e&&(i+=e);return"DGBEFHACIJK"!==i}}));Rg({target:"Array",proto:!0,forced:Kg||!Qg||!Jg||!Zg},{sort:function(t){void 0!==t&&Lg(t);var e=Dg(this);if(Zg)return void 0===t?Xg(e):Xg(e,t);var r,n,i=[],o=zg(e);for(n=0;n<o;n++)n in e&&Vg(i,e[n]);for(Ug(i,function(t){return function(e,r){return void 0===r?-1:void 0===e?1:void 0!==t?+t(e,r)||0:Fg(e)>Fg(r)?1:-1}}(t)),r=zg(i),n=0;n<r;)e[n]=i[n++];for(;n<o;)Ng(e,n++);return e}});var tv=G,ev=Ki,rv=o,nv=ee("species"),iv=function(t){var e=tv(t);rv&&e&&!e[nv]&&ev(e,nv,{configurable:!0,get:function(){return this}})};iv("Array");var ov=ri,av=Nt,sv=cn,cv=nn,uv=dn,lv=Np,hv=gh,fv=Ho,dv=bh,pv=Bh,gv=_h("splice"),vv=Math.max,yv=Math.min;ov({target:"Array",proto:!0,forced:!gv},{splice:function(t,e){var r,n,i,o,a,s,c=av(this),u=uv(c),l=sv(t,u),h=arguments.length;for(0===h?r=n=0:1===h?(r=0,n=u-l):(r=h-2,n=yv(vv(cv(e),0),u-l)),hv(u+r-n),i=fv(c,n),o=0;o<n;o++)(a=l+o)in c&&dv(i,o,c[a]);if(i.length=n,r<n){for(o=l;o<u-n;o++)s=o+r,(a=o+n)in c?c[s]=c[a]:pv(c,s);for(o=u;o>u-n+r;o--)pv(c,o-1)}else if(r>n)for(o=u-n;o>l;o--)s=o+r-1,(a=o+n-1)in c?c[s]=c[a]:pv(c,s);for(o=0;o<r;o++)c[o+l]=arguments[o+2];return lv(c,u-n+r),i}});var mv=dn,bv=function(t,e){for(var r=mv(t),n=new e(r),i=0;i<r;i++)n[i]=t[r-i-1];return n},xv=bv,wv=z,Av=uh,_v=Array;ri({target:"Array",proto:!0},{toReversed:function(){return xv(wv(this),_v)}}),Av("toReversed");var kv=dn,Ev=function(t,e,r){for(var n=0,i=arguments.length>2?r:kv(e),o=new t(i);i>n;)o[n]=e[n++];return o},Sv=r,Mv=ri,Tv=yt,Pv=z,Ov=Ev,Iv=function(t,e){var r=Sv[t],n=r&&r.prototype;return n&&n[e]},Cv=uh,Rv=Array,jv=w(Iv("Array","sort"));Mv({target:"Array",proto:!0},{toSorted:function(t){void 0!==t&&Tv(t);var e=Pv(this),r=Ov(Rv,e);return jv(r,t)}}),Cv("toSorted");var Lv=ri,Dv=uh,zv=gh,Nv=dn,Fv=cn,Bv=z,Uv=nn,Yv=Array,Hv=Math.max,Gv=Math.min;Lv({target:"Array",proto:!0},{toSpliced:function(t,e){var r,n,i,o,a=Bv(this),s=Nv(a),c=Fv(t,s),u=arguments.length,l=0;for(0===u?r=n=0:1===u?(r=0,n=s-c):(r=u-2,n=Gv(Hv(Uv(e),0),s-c)),i=zv(s+r-n),o=Yv(i);l<c;l++)o[l]=a[l];for(;l<c+r;l++)o[l]=arguments[l-c+2];for(;l<i;l++)o[l]=a[l+n-r];return o}}),Dv("toSpliced"),uh("flat"),uh("flatMap");var Wv=Nt,$v=dn,qv=Np,Xv=Bh,Vv=gh;ri({target:"Array",proto:!0,arity:1,forced:1!==[].unshift(0)||!function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(t){return t instanceof TypeError}}()},{unshift:function(t){var e=Wv(this),r=$v(e),n=arguments.length;if(n){Vv(r+n);for(var i=r;i--;){var o=i+n;i in e?e[o]=e[i]:Xv(e,o)}for(var a=0;a<n;a++)e[a]=arguments[a]}return qv(e,r+n)}});var Kv=dn,Qv=nn,Jv=RangeError,Zv=function(t,e,r,n){var i=Kv(t),o=Qv(r),a=o<0?i+o:o;if(a>=i||a<0)throw new Jv("Incorrect index");for(var s=new e(i),c=0;c<i;c++)s[c]=c===a?n:t[c];return s},ty=Zv,ey=z,ry=Array;ri({target:"Array",proto:!0},{with:function(t,e){return ty(ey(this),ry,t,e)}});var ny="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView,iy=Qr,oy=function(t,e,r){for(var n in e)iy(t,n,e[n],r);return t},ay=W,sy=TypeError,cy=function(t,e){if(ay(e,t))return t;throw new sy("Incorrect invocation")},uy=nn,ly=hn,hy=RangeError,fy=function(t){if(void 0===t)return 0;var e=uy(t),r=ly(e);if(e!==r)throw new hy("Wrong length or index");return r},dy=Math.sign||function(t){var e=+t;return 0===e||e!=e?e:e<0?-1:1},py=4503599627370496,gy=dy,vy=function(t){return t+py-py},yy=Math.abs,my=function(t,e,r,n){var i=+t,o=yy(i),a=gy(i);if(o<n)return a*vy(o/n/e)*n*e;var s=(1+e/2220446049250313e-31)*o,c=s-(s-o);return c>r||c!=c?a*(1/0):a*c},by=Math.fround||function(t){return my(t,1.1920928955078125e-7,34028234663852886e22,11754943508222875e-54)},xy=Array,wy=Math.abs,Ay=Math.pow,_y=Math.floor,ky=Math.log,Ey=Math.LN2,Sy={pack:function(t,e,r){var n,i,o,a=xy(r),s=8*r-e-1,c=(1<<s)-1,u=c>>1,l=23===e?Ay(2,-24)-Ay(2,-77):0,h=t<0||0===t&&1/t<0?1:0,f=0;for((t=wy(t))!=t||t===1/0?(i=t!=t?1:0,n=c):(n=_y(ky(t)/Ey),t*(o=Ay(2,-n))<1&&(n--,o*=2),(t+=n+u>=1?l/o:l*Ay(2,1-u))*o>=2&&(n++,o/=2),n+u>=c?(i=0,n=c):n+u>=1?(i=(t*o-1)*Ay(2,e),n+=u):(i=t*Ay(2,u-1)*Ay(2,e),n=0));e>=8;)a[f++]=255&i,i/=256,e-=8;for(n=n<<e|i,s+=e;s>0;)a[f++]=255&n,n/=256,s-=8;return a[f-1]|=128*h,a},unpack:function(t,e){var r,n=t.length,i=8*n-e-1,o=(1<<i)-1,a=o>>1,s=i-7,c=n-1,u=t[c--],l=127&u;for(u>>=7;s>0;)l=256*l+t[c--],s-=8;for(r=l&(1<<-s)-1,l>>=-s,s+=e;s>0;)r=256*r+t[c--],s-=8;if(0===l)l=1-a;else{if(l===o)return r?NaN:u?-1/0:1/0;r+=Ay(2,e),l-=a}return(u?-1:1)*r*Ay(2,l-e)}},My=r,Ty=w,Py=o,Oy=ny,Iy=qe,Cy=Ki,Ry=oy,jy=i,Ly=cy,Dy=nn,zy=hn,Ny=fy,Fy=by,By=Sy,Uy=Qu,Yy=Uc,Hy=tf,Gy=Yi,Wy=qc,$y=Fn,qy=po,Xy=Pr,Vy=tr.PROPER,Ky=tr.CONFIGURABLE,Qy="ArrayBuffer",Jy="DataView",Zy="prototype",tm="Wrong index",em=Xy.getterFor(Qy),rm=Xy.getterFor(Jy),nm=Xy.set,im=My[Qy],om=im,am=om&&om[Zy],sm=My[Jy],cm=sm&&sm[Zy],um=Object.prototype,lm=My.Array,hm=My.RangeError,fm=Ty(Hy),dm=Ty([].reverse),pm=By.pack,gm=By.unpack,vm=function(t){return[255&t]},ym=function(t){return[255&t,t>>8&255]},mm=function(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]},bm=function(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]},xm=function(t){return pm(Fy(t),23,4)},wm=function(t){return pm(t,52,8)},Am=function(t,e,r){Cy(t[Zy],e,{configurable:!0,get:function(){return r(this)[e]}})},_m=function(t,e,r,n){var i=rm(t),o=Ny(r),a=!!n;if(o+e>i.byteLength)throw new hm(tm);var s=i.bytes,c=o+i.byteOffset,u=Gy(s,c,c+e);return a?u:dm(u)},km=function(t,e,r,n,i,o){var a=rm(t),s=Ny(r),c=n(+i),u=!!o;if(s+e>a.byteLength)throw new hm(tm);for(var l=a.bytes,h=s+a.byteOffset,f=0;f<e;f++)l[h+f]=c[u?f:e-f-1]};if(Oy){var Em=Vy&&im.name!==Qy;jy((function(){im(1)}))&&jy((function(){new im(-1)}))&&!jy((function(){return new im,new im(1.5),new im(NaN),1!==im.length||Em&&!Ky}))?Em&&Ky&&Iy(im,"name",Qy):((om=function(t){return Ly(this,am),Wy(new im(Ny(t)),this,om)})[Zy]=am,am.constructor=om,$y(om,im)),Yy&&Uy(cm)!==um&&Yy(cm,um);var Sm=new sm(new om(2)),Mm=Ty(cm.setInt8);Sm.setInt8(0,2147483648),Sm.setInt8(1,2147483649),!Sm.getInt8(0)&&Sm.getInt8(1)||Ry(cm,{setInt8:function(t,e){Mm(this,t,e<<24>>24)},setUint8:function(t,e){Mm(this,t,e<<24>>24)}},{unsafe:!0})}else am=(om=function(t){Ly(this,am);var e=Ny(t);nm(this,{type:Qy,bytes:fm(lm(e),0),byteLength:e}),Py||(this.byteLength=e,this.detached=!1)})[Zy],sm=function(t,e,r){Ly(this,cm),Ly(t,am);var n=em(t),i=n.byteLength,o=Dy(e);if(o<0||o>i)throw new hm("Wrong offset");if(o+(r=void 0===r?i-o:zy(r))>i)throw new hm("Wrong length");nm(this,{type:Jy,buffer:t,byteLength:r,byteOffset:o,bytes:n.bytes}),Py||(this.buffer=t,this.byteLength=r,this.byteOffset=o)},cm=sm[Zy],Py&&(Am(om,"byteLength",em),Am(sm,"buffer",rm),Am(sm,"byteLength",rm),Am(sm,"byteOffset",rm)),Ry(cm,{getInt8:function(t){return _m(this,1,t)[0]<<24>>24},getUint8:function(t){return _m(this,1,t)[0]},getInt16:function(t){var e=_m(this,2,t,arguments.length>1&&arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=_m(this,2,t,arguments.length>1&&arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return bm(_m(this,4,t,arguments.length>1&&arguments[1]))},getUint32:function(t){return bm(_m(this,4,t,arguments.length>1&&arguments[1]))>>>0},getFloat32:function(t){return gm(_m(this,4,t,arguments.length>1&&arguments[1]),23)},getFloat64:function(t){return gm(_m(this,8,t,arguments.length>1&&arguments[1]),52)},setInt8:function(t,e){km(this,1,t,vm,e)},setUint8:function(t,e){km(this,1,t,vm,e)},setInt16:function(t,e){km(this,2,t,ym,e,arguments.length>2&&arguments[2])},setUint16:function(t,e){km(this,2,t,ym,e,arguments.length>2&&arguments[2])},setInt32:function(t,e){km(this,4,t,mm,e,arguments.length>2&&arguments[2])},setUint32:function(t,e){km(this,4,t,mm,e,arguments.length>2&&arguments[2])},setFloat32:function(t,e){km(this,4,t,xm,e,arguments.length>2&&arguments[2])},setFloat64:function(t,e){km(this,8,t,wm,e,arguments.length>2&&arguments[2])}});qy(om,Qy),qy(sm,Jy);var Tm={ArrayBuffer:om,DataView:sm},Pm=iv,Om="ArrayBuffer",Im=Tm[Om];ri({global:!0,constructor:!0,forced:r[Om]!==Im},{ArrayBuffer:Im}),Pm(Om);var Cm,Rm,jm,Lm=ny,Dm=o,zm=r,Nm=F,Fm=U,Bm=Ut,Um=hi,Ym=dt,Hm=qe,Gm=Qr,Wm=Ki,$m=W,qm=Qu,Xm=Uc,Vm=ee,Km=$t,Qm=Pr.enforce,Jm=Pr.get,Zm=zm.Int8Array,tb=Zm&&Zm.prototype,eb=zm.Uint8ClampedArray,rb=eb&&eb.prototype,nb=Zm&&qm(Zm),ib=tb&&qm(tb),ob=Object.prototype,ab=zm.TypeError,sb=Vm("toStringTag"),cb=Km("TYPED_ARRAY_TAG"),ub="TypedArrayConstructor",lb=Lm&&!!Xm&&"Opera"!==Um(zm.opera),hb=!1,fb={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},db={BigInt64Array:8,BigUint64Array:8},pb=function(t){var e=qm(t);if(Fm(e)){var r=Jm(e);return r&&Bm(r,ub)?r[ub]:pb(e)}},gb=function(t){if(!Fm(t))return!1;var e=Um(t);return Bm(fb,e)||Bm(db,e)};for(Cm in fb)(jm=(Rm=zm[Cm])&&Rm.prototype)?Qm(jm)[ub]=Rm:lb=!1;for(Cm in db)(jm=(Rm=zm[Cm])&&Rm.prototype)&&(Qm(jm)[ub]=Rm);if((!lb||!Nm(nb)||nb===Function.prototype)&&(nb=function(){throw new ab("Incorrect invocation")},lb))for(Cm in fb)zm[Cm]&&Xm(zm[Cm],nb);if((!lb||!ib||ib===ob)&&(ib=nb.prototype,lb))for(Cm in fb)zm[Cm]&&Xm(zm[Cm].prototype,ib);if(lb&&qm(rb)!==ib&&Xm(rb,ib),Dm&&!Bm(ib,sb))for(Cm in hb=!0,Wm(ib,sb,{configurable:!0,get:function(){return Fm(this)?this[cb]:void 0}}),fb)zm[Cm]&&Hm(zm[Cm],cb,Cm);var vb={NATIVE_ARRAY_BUFFER_VIEWS:lb,TYPED_ARRAY_TAG:hb&&cb,aTypedArray:function(t){if(gb(t))return t;throw new ab("Target is not a typed array")},aTypedArrayConstructor:function(t){if(Nm(t)&&(!Xm||$m(nb,t)))return t;throw new ab(Ym(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,e,r,n){if(Dm){if(r)for(var i in fb){var o=zm[i];if(o&&Bm(o.prototype,t))try{delete o.prototype[t]}catch(r){try{o.prototype[t]=e}catch(t){}}}ib[t]&&!r||Gm(ib,t,r?e:lb&&tb[t]||e,n)}},exportTypedArrayStaticMethod:function(t,e,r){var n,i;if(Dm){if(Xm){if(r)for(n in fb)if((i=zm[n])&&Bm(i,t))try{delete i[t]}catch(t){}if(nb[t]&&!r)return;try{return Gm(nb,t,r?e:lb&&nb[t]||e)}catch(t){}}for(n in fb)!(i=zm[n])||i[t]&&!r||Gm(i,t,e)}},getTypedArrayConstructor:pb,isView:function(t){if(!Fm(t))return!1;var e=Um(t);return"DataView"===e||Bm(fb,e)||Bm(db,e)},isTypedArray:gb,TypedArray:nb,TypedArrayPrototype:ib};ri({target:"ArrayBuffer",stat:!0,forced:!vb.NATIVE_ARRAY_BUFFER_VIEWS},{isView:vb.isView});var yb=ri,mb=yo,bb=i,xb=Re,wb=cn,Ab=hn,_b=Tm.ArrayBuffer,kb=Tm.DataView,Eb=kb.prototype,Sb=mb(_b.prototype.slice),Mb=mb(Eb.getUint8),Tb=mb(Eb.setUint8);yb({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:bb((function(){return!new _b(2).slice(1,void 0).byteLength}))},{slice:function(t,e){if(Sb&&void 0===e)return Sb(xb(this),t);for(var r=xb(this).byteLength,n=wb(t,r),i=wb(void 0===e?r:e,r),o=new _b(Ab(i-n)),a=new kb(this),s=new kb(o),c=0;n<i;)Tb(s,c++,Mb(a,n++));return o}}),ri({global:!0,constructor:!0,forced:!ny},{DataView:Tm.DataView});var Pb=r,Ob=Oc,Ib=E,Cb=Pb.ArrayBuffer,Rb=Pb.TypeError,jb=Cb&&Ob(Cb.prototype,"byteLength","get")||function(t){if("ArrayBuffer"!==Ib(t))throw new Rb("ArrayBuffer expected");return t.byteLength},Lb=ny,Db=jb,zb=r.DataView,Nb=function(t){if(!Lb||0!==Db(t))return!1;try{return new zb(t),!1}catch(t){return!0}},Fb=o,Bb=Ki,Ub=Nb,Yb=ArrayBuffer.prototype;Fb&&!("detached"in Yb)&&Bb(Yb,"detached",{configurable:!0,get:function(){return Ub(this)}});var Hb,Gb,Wb,$b,qb=Nb,Xb=TypeError,Vb=r,Kb=rg,Qb=function(t){if(Kb){try{return Vb.process.getBuiltinModule(t)}catch(t){}try{return Function('return require("'+t+'")')()}catch(t){}}},Jb=i,Zb=et,tx=eg,ex=r.structuredClone,rx=!!ex&&!Jb((function(){if("DENO"===tx&&Zb>92||"NODE"===tx&&Zb>94||"BROWSER"===tx&&Zb>97)return!1;var t=new ArrayBuffer(8),e=ex(t,{transfer:[t]});return 0!==t.byteLength||8!==e.byteLength})),nx=r,ix=Qb,ox=rx,ax=nx.structuredClone,sx=nx.ArrayBuffer,cx=nx.MessageChannel,ux=!1;if(ox)ux=function(t){ax(t,{transfer:[t]})};else if(sx)try{cx||(Hb=ix("worker_threads"))&&(cx=Hb.MessageChannel),cx&&(Gb=new cx,Wb=new sx(2),$b=function(t){Gb.port1.postMessage(null,[t])},2===Wb.byteLength&&($b(Wb),0===Wb.byteLength&&(ux=$b)))}catch(t){}var lx=ux,hx=r,fx=w,dx=Oc,px=fy,gx=function(t){if(qb(t))throw new Xb("ArrayBuffer is detached");return t},vx=jb,yx=lx,mx=rx,bx=hx.structuredClone,xx=hx.ArrayBuffer,wx=hx.DataView,Ax=Math.min,_x=xx.prototype,kx=wx.prototype,Ex=fx(_x.slice),Sx=dx(_x,"resizable","get"),Mx=dx(_x,"maxByteLength","get"),Tx=fx(kx.getInt8),Px=fx(kx.setInt8),Ox=(mx||yx)&&function(t,e,r){var n,i=vx(t),o=void 0===e?i:px(e),a=!Sx||!Sx(t);if(gx(t),mx&&(t=bx(t,{transfer:[t]}),i===o&&(r||a)))return t;if(i>=o&&(!r||a))n=Ex(t,0,o);else{var s=r&&!a&&Mx?{maxByteLength:Mx(t)}:void 0;n=new xx(o,s);for(var c=new wx(t),u=new wx(n),l=Ax(o,i),h=0;h<l;h++)Px(u,h,Tx(c,h))}return mx||yx(t),n},Ix=Ox;Ix&&ri({target:"ArrayBuffer",proto:!0},{transfer:function(){return Ix(this,arguments.length?arguments[0]:void 0,!0)}});var Cx=Ox;Cx&&ri({target:"ArrayBuffer",proto:!0},{transferToFixedLength:function(){return Cx(this,arguments.length?arguments[0]:void 0,!1)}});var Rx=ri,jx=w,Lx=i((function(){return 120!==new Date(16e11).getYear()})),Dx=jx(Date.prototype.getFullYear);Rx({target:"Date",proto:!0,forced:Lx},{getYear:function(){return Dx(this)-1900}});var zx=ri,Nx=Date,Fx=w(Nx.prototype.getTime);zx({target:"Date",stat:!0},{now:function(){return Fx(new Nx)}});var Bx=ri,Ux=w,Yx=nn,Hx=Date.prototype,Gx=Ux(Hx.getTime),Wx=Ux(Hx.setFullYear);Bx({target:"Date",proto:!0},{setYear:function(t){Gx(this);var e=Yx(t);return Wx(this,e>=0&&e<=99?e+1900:e)}}),ri({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString});var $x=nn,qx=pi,Xx=j,Vx=RangeError,Kx=function(t){var e=qx(Xx(this)),r="",n=$x(t);if(n<0||n===1/0)throw new Vx("Wrong number of repetitions");for(;n>0;(n>>>=1)&&(e+=e))1&n&&(r+=e);return r},Qx=w,Jx=hn,Zx=pi,tw=j,ew=Qx(Kx),rw=Qx("".slice),nw=Math.ceil,iw=function(t){return function(e,r,n){var i,o,a=Zx(tw(e)),s=Jx(r),c=a.length,u=void 0===n?" ":Zx(n);return s<=c||""===u?a:((o=ew(u,nw((i=s-c)/u.length))).length>i&&(o=rw(o,0,i)),t?a+o:o+a)}},ow={start:iw(!1),end:iw(!0)},aw=w,sw=i,cw=ow.start,uw=RangeError,lw=isFinite,hw=Math.abs,fw=Date.prototype,dw=fw.toISOString,pw=aw(fw.getTime),gw=aw(fw.getUTCDate),vw=aw(fw.getUTCFullYear),yw=aw(fw.getUTCHours),mw=aw(fw.getUTCMilliseconds),bw=aw(fw.getUTCMinutes),xw=aw(fw.getUTCMonth),ww=aw(fw.getUTCSeconds),Aw=sw((function(){return"0385-07-25T07:06:39.999Z"!==dw.call(new Date(-50000000000001))}))||!sw((function(){dw.call(new Date(NaN))}))?function(){if(!lw(pw(this)))throw new uw("Invalid time value");var t=this,e=vw(t),r=mw(t),n=e<0?"-":e>9999?"+":"";return n+cw(hw(e),n?6:4,0)+"-"+cw(xw(t)+1,2,0)+"-"+cw(gw(t),2,0)+"T"+cw(yw(t),2,0)+":"+cw(bw(t),2,0)+":"+cw(ww(t),2,0)+"."+cw(r,3,0)+"Z"}:dw,_w=Aw;ri({target:"Date",proto:!0,forced:Date.prototype.toISOString!==_w},{toISOString:_w});var kw=Nt,Ew=ue;ri({target:"Date",proto:!0,arity:1,forced:i((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}))},{toJSON:function(t){var e=kw(this),r=Ew(e,"number");return"number"!=typeof r||isFinite(r)?e.toISOString():null}});var Sw=Re,Mw=Et,Tw=TypeError,Pw=Ut,Ow=Qr,Iw=function(t){if(Sw(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new Tw("Incorrect hint");return Mw(this,t)},Cw=ee("toPrimitive"),Rw=Date.prototype;Pw(Rw,Cw)||Ow(Rw,Cw,Iw);var jw=w,Lw=Qr,Dw=Date.prototype,zw="Invalid Date",Nw="toString",Fw=jw(Dw[Nw]),Bw=jw(Dw.getTime);String(new Date(NaN))!==zw&&Lw(Dw,Nw,(function(){var t=Bw(this);return t==t?Fw(this):zw}));var Uw=ri,Yw=w,Hw=pi,Gw=Yw("".charAt),Ww=Yw("".charCodeAt),$w=Yw(/./.exec),qw=Yw(1..toString),Xw=Yw("".toUpperCase),Vw=/[\w*+\-./@]/,Kw=function(t,e){for(var r=qw(t,16);r.length<e;)r="0"+r;return r};Uw({global:!0},{escape:function(t){for(var e,r,n=Hw(t),i="",o=n.length,a=0;a<o;)e=Gw(n,a++),$w(Vw,e)?i+=e:i+=(r=Ww(e,0))<256?"%"+Kw(r,2):"%u"+Xw(Kw(r,4));return i}});var Qw=w,Jw=yt,Zw=U,tA=Ut,eA=Yi,rA=a,nA=Function,iA=Qw([].concat),oA=Qw([].join),aA={},sA=rA?nA.bind:function(t){var e=Jw(this),r=e.prototype,n=eA(arguments,1),i=function(){var r=iA(n,eA(arguments));return this instanceof i?function(t,e,r){if(!tA(aA,e)){for(var n=[],i=0;i<e;i++)n[i]="a["+i+"]";aA[e]=nA("C,a","return new C("+oA(n,",")+")")}return aA[e](t,r)}(e,r.length,r):e.apply(t,r)};return Zw(r)&&(i.prototype=r),i},cA=sA;ri({target:"Function",proto:!0,forced:Function.bind!==cA},{bind:cA});var uA=F,lA=U,hA=Te,fA=W,dA=ee,pA=Xe.exports,gA=dA("hasInstance"),vA=Function.prototype;gA in vA||hA.f(vA,gA,{value:pA((function(t){if(!uA(this)||!lA(t))return!1;var e=this.prototype;return lA(e)?fA(e,t):t instanceof this}),gA)});var yA=o,mA=tr.EXISTS,bA=w,xA=Ki,wA=Function.prototype,AA=bA(wA.toString),_A=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,kA=bA(_A.exec);yA&&!mA&&xA(wA,"name",{configurable:!0,get:function(){try{return kA(_A,AA(this))[1]}catch(t){return""}}});var EA=r;ri({global:!0,forced:EA.globalThis!==EA},{globalThis:EA});var SA=ri,MA=r,TA=cy,PA=Re,OA=F,IA=Qu,CA=Ki,RA=bh,jA=i,LA=Ut,DA=Md.IteratorPrototype,zA=o,NA="constructor",FA="Iterator",BA=ee("toStringTag"),UA=TypeError,YA=MA[FA],HA=!OA(YA)||YA.prototype!==DA||!jA((function(){YA({})})),GA=function(){if(TA(this,DA),IA(this)===DA)throw new UA("Abstract class Iterator not directly constructable")},WA=function(t,e){zA?CA(DA,t,{configurable:!0,get:function(){return e},set:function(e){if(PA(this),this===DA)throw new UA("You can't redefine this property");LA(this,t)?this[t]=e:RA(this,t,e)}}):DA[t]=e};LA(DA,BA)||WA(BA,FA),!HA&&LA(DA,NA)&&DA[NA]!==Object||WA(NA,GA),GA.prototype=DA,SA({global:!0,constructor:!0,forced:HA},{Iterator:GA});var $A=function(t){return{iterator:t,next:t.next,done:!1}},qA=RangeError,XA=function(t){if(t==t)return t;throw new qA("NaN is not allowed")},VA=nn,KA=RangeError,QA=function(t){var e=VA(t);if(e<0)throw new KA("The argument can't be less than 0");return e},JA=u,ZA=Bi,t_=qe,e_=oy,r_=Pr,n_=xt,i_=Md.IteratorPrototype,o_=ep,a_=bl,s_=ee("toStringTag"),c_="IteratorHelper",u_="WrapForValidIterator",l_=r_.set,h_=function(t){var e=r_.getterFor(t?u_:c_);return e_(ZA(i_),{next:function(){var r=e(this);if(t)return r.nextHandler();if(r.done)return o_(void 0,!0);try{var n=r.nextHandler();return r.returnHandlerResult?n:o_(n,r.done)}catch(t){throw r.done=!0,t}},return:function(){var r=e(this),n=r.iterator;if(r.done=!0,t){var i=n_(n,"return");return i?JA(i,n):o_(void 0,!0)}if(r.inner)try{a_(r.inner.iterator,"normal")}catch(t){return a_(n,"throw",t)}return n&&a_(n,"normal"),o_(void 0,!0)}})},f_=h_(!0),d_=h_(!1);t_(d_,s_,"Iterator Helper");var p_=function(t,e,r){var n=function(n,i){i?(i.iterator=n.iterator,i.next=n.next):i=n,i.type=e?u_:c_,i.returnHandlerResult=!!r,i.nextHandler=t,i.counter=0,i.done=!1,l_(this,i)};return n.prototype=e?f_:d_,n},g_=ri,v_=u,y_=Re,m_=$A,b_=XA,x_=QA,w_=p_((function(){for(var t,e=this.iterator,r=this.next;this.remaining;)if(this.remaining--,t=y_(v_(r,e)),this.done=!!t.done)return;if(t=y_(v_(r,e)),!(this.done=!!t.done))return t.value}));g_({target:"Iterator",proto:!0,real:!0,forced:false},{drop:function(t){y_(this);var e=x_(b_(+t));return new w_(m_(this),{remaining:e})}});var A_=Rl,__=yt,k_=Re,E_=$A;ri({target:"Iterator",proto:!0,real:!0},{every:function(t){k_(this),__(t);var e=E_(this),r=0;return!A_(e,(function(e,n){if(!t(e,r++))return n()}),{IS_RECORD:!0,INTERRUPTED:!0}).stopped}});var S_=ri,M_=u,T_=yt,P_=Re,O_=$A,I_=Gf,C_=p_((function(){for(var t,e,r=this.iterator,n=this.predicate,i=this.next;;){if(t=P_(M_(i,r)),this.done=!!t.done)return;if(e=t.value,I_(r,n,[e,this.counter++],!0))return e}}));S_({target:"Iterator",proto:!0,real:!0,forced:false},{filter:function(t){return P_(this),T_(t),new C_(O_(this),{predicate:t})}});var R_=Rl,j_=yt,L_=Re,D_=$A;ri({target:"Iterator",proto:!0,real:!0},{find:function(t){L_(this),j_(t);var e=D_(this),r=0;return R_(e,(function(e,n){if(t(e,r++))return n(e)}),{IS_RECORD:!0,INTERRUPTED:!0}).result}});var z_=u,N_=Re,F_=$A,B_=cl,U_=function(t,e){e&&"string"==typeof t||N_(t);var r=B_(t);return F_(N_(void 0!==r?z_(r,t):t))},Y_=ri,H_=u,G_=yt,W_=Re,$_=$A,q_=U_,X_=bl,V_=p_((function(){for(var t,e,r=this.iterator,n=this.mapper;;){if(e=this.inner)try{if(!(t=W_(H_(e.next,e.iterator))).done)return t.value;this.inner=null}catch(t){X_(r,"throw",t)}if(t=W_(H_(this.next,r)),this.done=!!t.done)return;try{this.inner=q_(n(t.value,this.counter++),!1)}catch(t){X_(r,"throw",t)}}}));Y_({target:"Iterator",proto:!0,real:!0,forced:false},{flatMap:function(t){return W_(this),G_(t),new V_($_(this),{mapper:t,inner:null})}});var K_=Rl,Q_=yt,J_=Re,Z_=$A;ri({target:"Iterator",proto:!0,real:!0},{forEach:function(t){J_(this),Q_(t);var e=Z_(this),r=0;K_(e,(function(e){t(e,r++)}),{IS_RECORD:!0})}});var tk=ri,ek=u,rk=Nt,nk=W,ik=Md.IteratorPrototype,ok=U_,ak=p_((function(){return ek(this.next,this.iterator)}),!0);tk({target:"Iterator",stat:!0,forced:false},{from:function(t){var e=ok("string"==typeof t?rk(t):t,!0);return nk(ik,e.iterator)?e.iterator:new ak(e)}});var sk=u,ck=yt,uk=Re,lk=$A,hk=Gf,fk=p_((function(){var t=this.iterator,e=uk(sk(this.next,t));if(!(this.done=!!e.done))return hk(t,this.mapper,[e.value,this.counter++],!0)}));ri({target:"Iterator",proto:!0,real:!0,forced:false},{map:function(t){return uk(this),ck(t),new fk(lk(this),{mapper:t})}});var dk=Rl,pk=yt,gk=Re,vk=$A,yk=TypeError;ri({target:"Iterator",proto:!0,real:!0},{reduce:function(t){gk(this),pk(t);var e=vk(this),r=arguments.length<2,n=r?void 0:arguments[1],i=0;if(dk(e,(function(e){r?(r=!1,n=e):n=t(n,e,i),i++}),{IS_RECORD:!0}),r)throw new yk("Reduce of empty iterator with no initial value");return n}});var mk=Rl,bk=yt,xk=Re,wk=$A;ri({target:"Iterator",proto:!0,real:!0},{some:function(t){xk(this),bk(t);var e=wk(this),r=0;return mk(e,(function(e,n){if(t(e,r++))return n()}),{IS_RECORD:!0,INTERRUPTED:!0}).stopped}});var Ak=ri,_k=u,kk=Re,Ek=$A,Sk=XA,Mk=QA,Tk=bl,Pk=p_((function(){var t=this.iterator;if(!this.remaining--)return this.done=!0,Tk(t,"normal",void 0);var e=kk(_k(this.next,t));return(this.done=!!e.done)?void 0:e.value}));Ak({target:"Iterator",proto:!0,real:!0,forced:false},{take:function(t){kk(this);var e=Mk(Sk(+t));return new Pk(Ek(this),{remaining:e})}});var Ok=Re,Ik=Rl,Ck=$A,Rk=[].push;ri({target:"Iterator",proto:!0,real:!0},{toArray:function(){var t=[];return Ik(Ck(Ok(this)),Rk,{that:t,IS_RECORD:!0}),t}}),po(r.JSON,"JSON",!0);var jk={exports:{}},Lk=i((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}})),Dk=i,zk=U,Nk=E,Fk=Lk,Bk=Object.isExtensible,Uk=Dk((function(){Bk(1)}))||Fk?function(t){return!!zk(t)&&((!Fk||"ArrayBuffer"!==Nk(t))&&(!Bk||Bk(t)))}:Bk,Yk=!i((function(){return Object.isExtensible(Object.preventExtensions({}))})),Hk=ri,Gk=w,Wk=gr,$k=U,qk=Ut,Xk=Te.f,Vk=Jr,Kk=Ui,Qk=Uk,Jk=Yk,Zk=!1,tE=$t("meta"),eE=0,rE=function(t){Xk(t,tE,{value:{objectID:"O"+eE++,weakData:{}}})},nE=jk.exports={enable:function(){nE.enable=function(){},Zk=!0;var t=Vk.f,e=Gk([].splice),r={};r[tE]=1,t(r).length&&(Vk.f=function(r){for(var n=t(r),i=0,o=n.length;i<o;i++)if(n[i]===tE){e(n,i,1);break}return n},Hk({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:Kk.f}))},fastKey:function(t,e){if(!$k(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!qk(t,tE)){if(!Qk(t))return"F";if(!e)return"E";rE(t)}return t[tE].objectID},getWeakData:function(t,e){if(!qk(t,tE)){if(!Qk(t))return!0;if(!e)return!1;rE(t)}return t[tE].weakData},onFreeze:function(t){return Jk&&Zk&&Qk(t)&&!qk(t,tE)&&rE(t),t}};Wk[tE]=!0;var iE=ri,oE=r,aE=w,sE=Xn,cE=Qr,uE=jk.exports,lE=Rl,hE=cy,fE=F,dE=I,pE=U,gE=i,vE=sd,yE=po,mE=qc,bE=function(t,e,r){var n=-1!==t.indexOf("Map"),i=-1!==t.indexOf("Weak"),o=n?"set":"add",a=oE[t],s=a&&a.prototype,c=a,u={},l=function(t){var e=aE(s[t]);cE(s,t,"add"===t?function(t){return e(this,0===t?0:t),this}:"delete"===t?function(t){return!(i&&!pE(t))&&e(this,0===t?0:t)}:"get"===t?function(t){return i&&!pE(t)?void 0:e(this,0===t?0:t)}:"has"===t?function(t){return!(i&&!pE(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if(sE(t,!fE(a)||!(i||s.forEach&&!gE((function(){(new a).entries().next()})))))c=r.getConstructor(e,t,n,o),uE.enable();else if(sE(t,!0)){var h=new c,f=h[o](i?{}:-0,1)!==h,d=gE((function(){h.has(1)})),p=vE((function(t){new a(t)})),g=!i&&gE((function(){for(var t=new a,e=5;e--;)t[o](e,e);return!t.has(-0)}));p||((c=e((function(t,e){hE(t,s);var r=mE(new a,t,c);return dE(e)||lE(e,r[o],{that:r,AS_ENTRIES:n}),r}))).prototype=s,s.constructor=c),(d||g)&&(l("delete"),l("has"),n&&l("get")),(g||f)&&l(o),i&&s.clear&&delete s.clear}return u[t]=c,iE({global:!0,constructor:!0,forced:c!==a},u),yE(c,t),i||r.setStrong(c,t,n),c},xE=Bi,wE=Ki,AE=oy,_E=wo,kE=cy,EE=I,SE=Rl,ME=tp,TE=ep,PE=iv,OE=o,IE=jk.exports.fastKey,CE=Pr.set,RE=Pr.getterFor,jE={getConstructor:function(t,e,r,n){var i=t((function(t,i){kE(t,o),CE(t,{type:e,index:xE(null),first:null,last:null,size:0}),OE||(t.size=0),EE(i)||SE(i,t[n],{that:t,AS_ENTRIES:r})})),o=i.prototype,a=RE(e),s=function(t,e,r){var n,i,o=a(t),s=c(t,e);return s?s.value=r:(o.last=s={index:i=IE(e,!0),key:e,value:r,previous:n=o.last,next:null,removed:!1},o.first||(o.first=s),n&&(n.next=s),OE?o.size++:t.size++,"F"!==i&&(o.index[i]=s)),t},c=function(t,e){var r,n=a(t),i=IE(e);if("F"!==i)return n.index[i];for(r=n.first;r;r=r.next)if(r.key===e)return r};return AE(o,{clear:function(){for(var t=a(this),e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=null),e=e.next;t.first=t.last=null,t.index=xE(null),OE?t.size=0:this.size=0},delete:function(t){var e=this,r=a(e),n=c(e,t);if(n){var i=n.next,o=n.previous;delete r.index[n.index],n.removed=!0,o&&(o.next=i),i&&(i.previous=o),r.first===n&&(r.first=i),r.last===n&&(r.last=o),OE?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=a(this),n=_E(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!c(this,t)}}),AE(o,r?{get:function(t){var e=c(this,t);return e&&e.value},set:function(t,e){return s(this,0===t?0:t,e)}}:{add:function(t){return s(this,t=0===t?0:t,t)}}),OE&&wE(o,"size",{configurable:!0,get:function(){return a(this).size}}),i},setStrong:function(t,e,r){var n=e+" Iterator",i=RE(e),o=RE(n);ME(t,e,(function(t,e){CE(this,{type:n,target:t,state:i(t),kind:e,last:null})}),(function(){for(var t=o(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?TE("keys"===e?r.key:"values"===e?r.value:[r.key,r.value],!1):(t.target=null,TE(void 0,!0))}),r?"entries":"values",!r,!0),PE(e)}};bE("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),jE);var LE=w,DE=Map.prototype,zE={Map:Map,set:LE(DE.set),get:LE(DE.get),has:LE(DE.has),remove:LE(DE.delete),proto:DE},NE=ri,FE=yt,BE=j,UE=Rl,YE=i,HE=zE.Map,GE=zE.has,WE=zE.get,$E=zE.set,qE=w([].push);NE({target:"Map",stat:!0,forced:YE((function(){return 1!==HE.groupBy("ab",(function(t){return t})).get("a").length}))},{groupBy:function(t,e){BE(t),FE(e);var r=new HE,n=0;return UE(t,(function(t){var i=e(t,n++);GE(r,i)?qE(WE(r,i),t):$E(r,i,[t])})),r}});var XE=Math.log,VE=Math.log1p||function(t){var e=+t;return e>-1e-8&&e<1e-8?e-e*e/2:XE(1+e)},KE=ri,QE=VE,JE=Math.acosh,ZE=Math.log,tS=Math.sqrt,eS=Math.LN2;KE({target:"Math",stat:!0,forced:!JE||710!==Math.floor(JE(Number.MAX_VALUE))||JE(1/0)!==1/0},{acosh:function(t){var e=+t;return e<1?NaN:e>94906265.62425156?ZE(e)+eS:QE(e-1+tS(e-1)*tS(e+1))}});var rS=ri,nS=Math.asinh,iS=Math.log,oS=Math.sqrt;rS({target:"Math",stat:!0,forced:!(nS&&1/nS(0)>0)},{asinh:function t(e){var r=+e;return isFinite(r)&&0!==r?r<0?-t(-r):iS(r+oS(r*r+1)):r}});var aS=ri,sS=Math.atanh,cS=Math.log;aS({target:"Math",stat:!0,forced:!(sS&&1/sS(-0)<0)},{atanh:function(t){var e=+t;return 0===e?e:cS((1+e)/(1-e))/2}});var uS=ri,lS=dy,hS=Math.abs,fS=Math.pow;uS({target:"Math",stat:!0},{cbrt:function(t){var e=+t;return lS(e)*fS(hS(e),1/3)}});var dS=ri,pS=Math.floor,gS=Math.log,vS=Math.LOG2E;dS({target:"Math",stat:!0},{clz32:function(t){var e=t>>>0;return e?31-pS(gS(e+.5)*vS):32}});var yS=Math.expm1,mS=Math.exp,bS=!yS||yS(10)>22025.465794806718||yS(10)<22025.465794806718||-2e-17!==yS(-2e-17)?function(t){var e=+t;return 0===e?e:e>-1e-6&&e<1e-6?e+e*e/2:mS(e)-1}:yS,xS=ri,wS=bS,AS=Math.cosh,_S=Math.abs,kS=Math.E;xS({target:"Math",stat:!0,forced:!AS||AS(710)===1/0},{cosh:function(t){var e=wS(_S(t)-1)+1;return(e+1/(e*kS*kS))*(kS/2)}});var ES=bS;ri({target:"Math",stat:!0,forced:ES!==Math.expm1},{expm1:ES}),ri({target:"Math",stat:!0},{fround:by});var SS=ri,MS=Math.hypot,TS=Math.abs,PS=Math.sqrt;SS({target:"Math",stat:!0,arity:2,forced:!!MS&&MS(1/0,NaN)!==1/0},{hypot:function(t,e){for(var r,n,i=0,o=0,a=arguments.length,s=0;o<a;)s<(r=TS(arguments[o++]))?(i=i*(n=s/r)*n+1,s=r):i+=r>0?(n=r/s)*n:r;return s===1/0?1/0:s*PS(i)}});var OS=ri,IS=i,CS=Math.imul;OS({target:"Math",stat:!0,forced:IS((function(){return-5!==CS(4294967295,5)||2!==CS.length}))},{imul:function(t,e){var r=65535,n=+t,i=+e,o=r&n,a=r&i;return 0|o*a+((r&n>>>16)*a+o*(r&i>>>16)<<16>>>0)}});var RS=Math.log,jS=Math.LOG10E,LS=Math.log10||function(t){return RS(t)*jS};ri({target:"Math",stat:!0},{log10:LS}),ri({target:"Math",stat:!0},{log1p:VE});var DS=Math.log,zS=Math.LN2,NS=Math.log2||function(t){return DS(t)/zS};ri({target:"Math",stat:!0},{log2:NS}),ri({target:"Math",stat:!0},{sign:dy});var FS=ri,BS=i,US=bS,YS=Math.abs,HS=Math.exp,GS=Math.E;FS({target:"Math",stat:!0,forced:BS((function(){return-2e-17!==Math.sinh(-2e-17)}))},{sinh:function(t){var e=+t;return YS(e)<1?(US(e)-US(-e))/2:(HS(e-1)-HS(-e-1))*(GS/2)}});var WS=ri,$S=bS,qS=Math.exp;WS({target:"Math",stat:!0},{tanh:function(t){var e=+t,r=$S(e),n=$S(-e);return r===1/0?1:n===1/0?-1:(r-n)/(qS(e)+qS(-e))}}),po(Math,"Math",!0),ri({target:"Math",stat:!0},{trunc:en});var XS=w(1..valueOf),VS="\t\n\v\f\r                 \u2028\u2029\ufeff",KS=j,QS=pi,JS=VS,ZS=w("".replace),tM=RegExp("^["+JS+"]+"),eM=RegExp("(^|[^"+JS+"])["+JS+"]+$"),rM=function(t){return function(e){var r=QS(KS(e));return 1&t&&(r=ZS(r,tM,"")),2&t&&(r=ZS(r,eM,"$1")),r}},nM={start:rM(1),end:rM(2),trim:rM(3)},iM=ri,oM=o,aM=r,sM=Zi,cM=w,uM=Xn,lM=Ut,hM=qc,fM=W,dM=ht,pM=ue,gM=i,vM=Jr.f,yM=n.f,mM=Te.f,bM=XS,xM=nM.trim,wM="Number",AM=aM[wM];sM[wM];var _M=AM.prototype,kM=aM.TypeError,EM=cM("".slice),SM=cM("".charCodeAt),MM=function(t){var e,r,n,i,o,a,s,c,u=pM(t,"number");if(dM(u))throw new kM("Cannot convert a Symbol value to a number");if("string"==typeof u&&u.length>2)if(u=xM(u),43===(e=SM(u,0))||45===e){if(88===(r=SM(u,2))||120===r)return NaN}else if(48===e){switch(SM(u,1)){case 66:case 98:n=2,i=49;break;case 79:case 111:n=8,i=55;break;default:return+u}for(a=(o=EM(u,2)).length,s=0;s<a;s++)if((c=SM(o,s))<48||c>i)return NaN;return parseInt(o,n)}return+u},TM=uM(wM,!AM(" 0o1")||!AM("0b1")||AM("+0x1")),PM=function(t){var e,r=arguments.length<1?0:AM(function(t){var e=pM(t,"number");return"bigint"==typeof e?e:MM(e)}(t));return fM(_M,e=this)&&gM((function(){bM(e)}))?hM(Object(r),this,PM):r};PM.prototype=_M,TM&&(_M.constructor=PM),iM({global:!0,constructor:!0,wrap:!0,forced:TM},{Number:PM});TM&&function(t,e){for(var r,n=oM?vM(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),i=0;n.length>i;i++)lM(e,r=n[i])&&!lM(t,r)&&mM(t,r,yM(e,r))}(sM[wM],AM),ri({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)});var OM=r.isFinite;ri({target:"Number",stat:!0},{isFinite:Number.isFinite||function(t){return"number"==typeof t&&OM(t)}});var IM=U,CM=Math.floor,RM=Number.isInteger||function(t){return!IM(t)&&isFinite(t)&&CM(t)===t};ri({target:"Number",stat:!0},{isInteger:RM}),ri({target:"Number",stat:!0},{isNaN:function(t){return t!=t}});var jM=ri,LM=RM,DM=Math.abs;jM({target:"Number",stat:!0},{isSafeInteger:function(t){return LM(t)&&DM(t)<=9007199254740991}}),ri({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991}),ri({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991});var zM=r,NM=i,FM=pi,BM=nM.trim,UM=VS,YM=w("".charAt),HM=zM.parseFloat,GM=zM.Symbol,WM=GM&&GM.iterator,$M=1/HM(UM+"-0")!=-1/0||WM&&!NM((function(){HM(Object(WM))}))?function(t){var e=BM(FM(t)),r=HM(e);return 0===r&&"-"===YM(e,0)?-0:r}:HM,qM=$M;ri({target:"Number",stat:!0,forced:Number.parseFloat!==qM},{parseFloat:qM});var XM=r,VM=i,KM=w,QM=pi,JM=nM.trim,ZM=VS,tT=XM.parseInt,eT=XM.Symbol,rT=eT&&eT.iterator,nT=/^[+-]?0x/i,iT=KM(nT.exec),oT=8!==tT(ZM+"08")||22!==tT(ZM+"0x16")||rT&&!VM((function(){tT(Object(rT))}))?function(t,e){var r=JM(QM(t));return tT(r,e>>>0||(iT(nT,r)?16:10))}:tT,aT=oT;ri({target:"Number",stat:!0,forced:Number.parseInt!==aT},{parseInt:aT});var sT=ri,cT=w,uT=nn,lT=XS,hT=Kx,fT=LS,dT=i,pT=RangeError,gT=String,vT=isFinite,yT=Math.abs,mT=Math.floor,bT=Math.pow,xT=Math.round,wT=cT(1..toExponential),AT=cT(hT),_T=cT("".slice),kT="-6.9000e-11"===wT(-69e-12,4)&&"1.25e+0"===wT(1.255,2)&&"1.235e+4"===wT(12345,3)&&"3e+1"===wT(25,0);sT({target:"Number",proto:!0,forced:!kT||!(dT((function(){wT(1,1/0)}))&&dT((function(){wT(1,-1/0)})))||!!dT((function(){wT(1/0,1/0),wT(NaN,1/0)}))},{toExponential:function(t){var e=lT(this);if(void 0===t)return wT(e);var r=uT(t);if(!vT(e))return String(e);if(r<0||r>20)throw new pT("Incorrect fraction digits");if(kT)return wT(e,r);var n,i,o,a,s="";if(e<0&&(s="-",e=-e),0===e)i=0,n=AT("0",r+1);else{var c=fT(e);i=mT(c);var u=bT(10,i-r),l=xT(e/u);2*e>=(2*l+1)*u&&(l+=1),l>=bT(10,r+1)&&(l/=10,i+=1),n=gT(l)}return 0!==r&&(n=_T(n,0,1)+"."+_T(n,1)),0===i?(o="+",a="0"):(o=i>0?"+":"-",a=gT(yT(i))),s+(n+="e"+o+a)}});var ET=ri,ST=w,MT=nn,TT=XS,PT=Kx,OT=i,IT=RangeError,CT=String,RT=Math.floor,jT=ST(PT),LT=ST("".slice),DT=ST(1..toFixed),zT=function(t,e,r){return 0===e?r:e%2==1?zT(t,e-1,r*t):zT(t*t,e/2,r)},NT=function(t,e,r){for(var n=-1,i=r;++n<6;)i+=e*t[n],t[n]=i%1e7,i=RT(i/1e7)},FT=function(t,e){for(var r=6,n=0;--r>=0;)n+=t[r],t[r]=RT(n/e),n=n%e*1e7},BT=function(t){for(var e=6,r="";--e>=0;)if(""!==r||0===e||0!==t[e]){var n=CT(t[e]);r=""===r?n:r+jT("0",7-n.length)+n}return r};ET({target:"Number",proto:!0,forced:OT((function(){return"0.000"!==DT(8e-5,3)||"1"!==DT(.9,0)||"1.25"!==DT(1.255,2)||"1000000000000000128"!==DT(0xde0b6b3a7640080,0)}))||!OT((function(){DT({})}))},{toFixed:function(t){var e,r,n,i,o=TT(this),a=MT(t),s=[0,0,0,0,0,0],c="",u="0";if(a<0||a>20)throw new IT("Incorrect fraction digits");if(o!=o)return"NaN";if(o<=-1e21||o>=1e21)return CT(o);if(o<0&&(c="-",o=-o),o>1e-21)if(e=function(t){for(var e=0,r=t;r>=4096;)e+=12,r/=4096;for(;r>=2;)e+=1,r/=2;return e}(o*zT(2,69,1))-69,r=e<0?o*zT(2,-e,1):o/zT(2,e,1),r*=4503599627370496,(e=52-e)>0){for(NT(s,0,r),n=a;n>=7;)NT(s,1e7,0),n-=7;for(NT(s,zT(10,n,1),0),n=e-1;n>=23;)FT(s,1<<23),n-=23;FT(s,1<<n),NT(s,1,1),FT(s,2),u=BT(s)}else NT(s,0,r),NT(s,1<<-e,0),u=BT(s)+jT("0",a);return u=a>0?c+((i=u.length)<=a?"0."+jT("0",a-i)+u:LT(u,0,i-a)+"."+LT(u,i-a)):c+u}});var UT=ri,YT=i,HT=XS,GT=w(1..toPrecision);UT({target:"Number",proto:!0,forced:YT((function(){return"1"!==GT(1,void 0)}))||!YT((function(){GT({})}))},{toPrecision:function(t){return void 0===t?GT(HT(this)):GT(HT(this),t)}});var WT=o,$T=w,qT=u,XT=i,VT=mi,KT=Tn,QT=l,JT=Nt,ZT=O,tP=Object.assign,eP=Object.defineProperty,rP=$T([].concat),nP=!tP||XT((function(){if(WT&&1!==tP({b:1},tP(eP({},"a",{enumerable:!0,get:function(){eP(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol("assign detection"),n="abcdefghijklmnopqrst";return t[r]=7,n.split("").forEach((function(t){e[t]=t})),7!==tP({},t)[r]||VT(tP({},e)).join("")!==n}))?function(t,e){for(var r=JT(t),n=arguments.length,i=1,o=KT.f,a=QT.f;n>i;)for(var s,c=ZT(arguments[i++]),u=o?rP(VT(c),o(c)):VT(c),l=u.length,h=0;l>h;)s=u[h++],WT&&!qT(a,c,s)||(r[s]=c[s]);return r}:tP,iP=nP;ri({target:"Object",stat:!0,arity:2,forced:Object.assign!==iP},{assign:iP}),ri({target:"Object",stat:!0,sham:!o},{create:Bi});var oP=r,aP=Cg,sP=!i((function(){if(!(aP&&aP<535)){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete oP[t]}})),cP=yt,uP=Nt,lP=Te;o&&ri({target:"Object",proto:!0,forced:sP},{__defineGetter__:function(t,e){lP.f(uP(this),t,{get:cP(e),enumerable:!0,configurable:!0})}});var hP=ri,fP=o,dP=gi.f;hP({target:"Object",stat:!0,forced:Object.defineProperties!==dP,sham:!fP},{defineProperties:dP});var pP=ri,gP=o,vP=Te.f;pP({target:"Object",stat:!0,forced:Object.defineProperty!==vP,sham:!gP},{defineProperty:vP});var yP=yt,mP=Nt,bP=Te;o&&ri({target:"Object",proto:!0,forced:sP},{__defineSetter__:function(t,e){bP.f(mP(this),t,{set:yP(e),enumerable:!0,configurable:!0})}});var xP=o,wP=i,AP=w,_P=Qu,kP=mi,EP=z,SP=AP(l.f),MP=AP([].push),TP=xP&&wP((function(){var t=Object.create(null);return t[2]=2,!SP(t,2)})),PP=function(t){return function(e){for(var r,n=EP(e),i=kP(n),o=TP&&null===_P(n),a=i.length,s=0,c=[];a>s;)r=i[s++],xP&&!(o?r in n:SP(n,r))||MP(c,t?[r,n[r]]:n[r]);return c}},OP={entries:PP(!0),values:PP(!1)},IP=OP.entries;ri({target:"Object",stat:!0},{entries:function(t){return IP(t)}});var CP=ri,RP=Yk,jP=i,LP=U,DP=jk.exports.onFreeze,zP=Object.freeze;CP({target:"Object",stat:!0,forced:jP((function(){zP(1)})),sham:!RP},{freeze:function(t){return zP&&LP(t)?zP(DP(t)):t}});var NP=Rl,FP=bh;ri({target:"Object",stat:!0},{fromEntries:function(t){var e={};return NP(t,(function(t,r){FP(e,t,r)}),{AS_ENTRIES:!0}),e}});var BP=ri,UP=i,YP=z,HP=n.f,GP=o;BP({target:"Object",stat:!0,forced:!GP||UP((function(){HP(1)})),sham:!GP},{getOwnPropertyDescriptor:function(t,e){return HP(YP(t),e)}});var WP=jn,$P=z,qP=n,XP=bh;ri({target:"Object",stat:!0,sham:!o},{getOwnPropertyDescriptors:function(t){for(var e,r,n=$P(t),i=qP.f,o=WP(n),a={},s=0;o.length>s;)void 0!==(r=i(n,e=o[s++]))&&XP(a,e,r);return a}});var VP=ri,KP=i,QP=Ui.f;VP({target:"Object",stat:!0,forced:KP((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:QP});var JP=Nt,ZP=Qu,tO=Hu;ri({target:"Object",stat:!0,forced:i((function(){ZP(1)})),sham:!tO},{getPrototypeOf:function(t){return ZP(JP(t))}});var eO=ri,rO=G,nO=w,iO=yt,oO=j,aO=fe,sO=Rl,cO=i,uO=Object.groupBy,lO=rO("Object","create"),hO=nO([].push);eO({target:"Object",stat:!0,forced:!uO||cO((function(){return 1!==uO("ab",(function(t){return t})).a.length}))},{groupBy:function(t,e){oO(t),iO(e);var r=lO(null),n=0;return sO(t,(function(t){var i=aO(e(t,n++));i in r?hO(r[i],t):r[i]=[t]})),r}}),ri({target:"Object",stat:!0},{hasOwn:Ut});var fO=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};ri({target:"Object",stat:!0},{is:fO});var dO=Uk;ri({target:"Object",stat:!0,forced:Object.isExtensible!==dO},{isExtensible:dO});var pO=ri,gO=i,vO=U,yO=E,mO=Lk,bO=Object.isFrozen;pO({target:"Object",stat:!0,forced:mO||gO((function(){bO(1)}))},{isFrozen:function(t){return!vO(t)||(!(!mO||"ArrayBuffer"!==yO(t))||!!bO&&bO(t))}});var xO=ri,wO=i,AO=U,_O=E,kO=Lk,EO=Object.isSealed;xO({target:"Object",stat:!0,forced:kO||wO((function(){EO(1)}))},{isSealed:function(t){return!AO(t)||(!(!kO||"ArrayBuffer"!==_O(t))||!!EO&&EO(t))}});var SO=Nt,MO=mi;ri({target:"Object",stat:!0,forced:i((function(){MO(1)}))},{keys:function(t){return MO(SO(t))}});var TO=ri,PO=o,OO=sP,IO=Nt,CO=fe,RO=Qu,jO=n.f;PO&&TO({target:"Object",proto:!0,forced:OO},{__lookupGetter__:function(t){var e,r=IO(this),n=CO(t);do{if(e=jO(r,n))return e.get}while(r=RO(r))}});var LO=ri,DO=o,zO=sP,NO=Nt,FO=fe,BO=Qu,UO=n.f;DO&&LO({target:"Object",proto:!0,forced:zO},{__lookupSetter__:function(t){var e,r=NO(this),n=FO(t);do{if(e=UO(r,n))return e.set}while(r=BO(r))}});var YO=ri,HO=U,GO=jk.exports.onFreeze,WO=Yk,$O=i,qO=Object.preventExtensions;YO({target:"Object",stat:!0,forced:$O((function(){qO(1)})),sham:!WO},{preventExtensions:function(t){return qO&&HO(t)?qO(GO(t)):t}});var XO=o,VO=Ki,KO=U,QO=Cc,JO=Nt,ZO=j,tI=Object.getPrototypeOf,eI=Object.setPrototypeOf,rI=Object.prototype,nI="__proto__";if(XO&&tI&&eI&&!(nI in rI))try{VO(rI,nI,{configurable:!0,get:function(){return tI(JO(this))},set:function(t){var e=ZO(this);QO(t)&&KO(e)&&eI(e,t)}})}catch(t){}var iI=ri,oI=U,aI=jk.exports.onFreeze,sI=Yk,cI=i,uI=Object.seal;iI({target:"Object",stat:!0,forced:cI((function(){uI(1)})),sham:!sI},{seal:function(t){return uI&&oI(t)?uI(aI(t)):t}}),ri({target:"Object",stat:!0},{setPrototypeOf:Uc});var lI=hi,hI=ii?{}.toString:function(){return"[object "+lI(this)+"]"};ii||Qr(Object.prototype,"toString",hI,{unsafe:!0});var fI=OP.values;ri({target:"Object",stat:!0},{values:function(t){return fI(t)}});ri({global:!0,forced:parseFloat!==$M},{parseFloat:$M});ri({global:!0,forced:parseInt!==oT},{parseInt:oT});var dI,pI,gI,vI,yI=Do,mI=dt,bI=TypeError,xI=function(t){if(yI(t))return t;throw new bI(mI(t)+" is not a constructor")},wI=Re,AI=xI,_I=I,kI=ee("species"),EI=function(t,e){var r,n=wI(t).constructor;return void 0===n||_I(r=wI(n)[kI])?e:AI(r)},SI=TypeError,MI=function(t,e){if(t<e)throw new SI("Not enough arguments");return t},TI=/(?:ipad|iphone|ipod).*applewebkit/i.test(X),PI=r,OI=Ms,II=wo,CI=F,RI=Ut,jI=i,LI=Si,DI=Yi,zI=ve,NI=MI,FI=TI,BI=rg,UI=PI.setImmediate,YI=PI.clearImmediate,HI=PI.process,GI=PI.Dispatch,WI=PI.Function,$I=PI.MessageChannel,qI=PI.String,XI=0,VI={},KI="onreadystatechange";jI((function(){dI=PI.location}));var QI=function(t){if(RI(VI,t)){var e=VI[t];delete VI[t],e()}},JI=function(t){return function(){QI(t)}},ZI=function(t){QI(t.data)},tC=function(t){PI.postMessage(qI(t),dI.protocol+"//"+dI.host)};UI&&YI||(UI=function(t){NI(arguments.length,1);var e=CI(t)?t:WI(t),r=DI(arguments,1);return VI[++XI]=function(){OI(e,void 0,r)},pI(XI),XI},YI=function(t){delete VI[t]},BI?pI=function(t){HI.nextTick(JI(t))}:GI&&GI.now?pI=function(t){GI.now(JI(t))}:$I&&!FI?(vI=(gI=new $I).port2,gI.port1.onmessage=ZI,pI=II(vI.postMessage,vI)):PI.addEventListener&&CI(PI.postMessage)&&!PI.importScripts&&dI&&"file:"!==dI.protocol&&!jI(tC)?(pI=tC,PI.addEventListener("message",ZI,!1)):pI=KI in zI("script")?function(t){LI.appendChild(zI("script"))[KI]=function(){LI.removeChild(this),QI(t)}}:function(t){setTimeout(JI(t),0)});var eC={set:UI,clear:YI},rC=r,nC=o,iC=Object.getOwnPropertyDescriptor,oC=function(t){if(!nC)return rC[t];var e=iC(rC,t);return e&&e.value},aC=function(){this.head=null,this.tail=null};aC.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var sC,cC,uC,lC,hC,fC=aC,dC=/ipad|iphone|ipod/i.test(X)&&"undefined"!=typeof Pebble,pC=/web0s(?!.*chrome)/i.test(X),gC=r,vC=oC,yC=wo,mC=eC.set,bC=fC,xC=TI,wC=dC,AC=pC,_C=rg,kC=gC.MutationObserver||gC.WebKitMutationObserver,EC=gC.document,SC=gC.process,MC=gC.Promise,TC=vC("queueMicrotask");if(!TC){var PC=new bC,OC=function(){var t,e;for(_C&&(t=SC.domain)&&t.exit();e=PC.get();)try{e()}catch(t){throw PC.head&&sC(),t}t&&t.enter()};xC||_C||AC||!kC||!EC?!wC&&MC&&MC.resolve?((lC=MC.resolve(void 0)).constructor=MC,hC=yC(lC.then,lC),sC=function(){hC(OC)}):_C?sC=function(){SC.nextTick(OC)}:(mC=yC(mC,gC),sC=function(){mC(OC)}):(cC=!0,uC=EC.createTextNode(""),new kC(OC).observe(uC,{characterData:!0}),sC=function(){uC.data=cC=!cC}),TC=function(t){PC.head||sC(),PC.add(t)}}var IC=TC,CC=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},RC=r.Promise,jC=r,LC=RC,DC=F,zC=Xn,NC=cr,FC=ee,BC=eg,UC=et;LC&&LC.prototype;var YC=FC("species"),HC=!1,GC=DC(jC.PromiseRejectionEvent),WC=zC("Promise",(function(){var t=NC(LC),e=t!==String(LC);if(!e&&66===UC)return!0;if(!UC||UC<51||!/native code/.test(t)){var r=new LC((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((r.constructor={})[YC]=n,!(HC=r.then((function(){}))instanceof n))return!0}return!(e||"BROWSER"!==BC&&"DENO"!==BC||GC)})),$C={CONSTRUCTOR:WC,REJECTION_EVENT:GC,SUBCLASSING:HC},qC={},XC=yt,VC=TypeError,KC=function(t){var e,r;this.promise=new t((function(t,n){if(void 0!==e||void 0!==r)throw new VC("Bad Promise constructor");e=t,r=n})),this.resolve=XC(e),this.reject=XC(r)};qC.f=function(t){return new KC(t)};var QC,JC,ZC,tR=ri,eR=rg,rR=r,nR=u,iR=Qr,oR=Uc,aR=po,sR=iv,cR=yt,uR=F,lR=U,hR=cy,fR=EI,dR=eC.set,pR=IC,gR=function(t,e){try{1===arguments.length?console.error(t):console.error(t,e)}catch(t){}},vR=CC,yR=fC,mR=Pr,bR=RC,xR=qC,wR="Promise",AR=$C.CONSTRUCTOR,_R=$C.REJECTION_EVENT,kR=$C.SUBCLASSING,ER=mR.getterFor(wR),SR=mR.set,MR=bR&&bR.prototype,TR=bR,PR=MR,OR=rR.TypeError,IR=rR.document,CR=rR.process,RR=xR.f,jR=RR,LR=!!(IR&&IR.createEvent&&rR.dispatchEvent),DR="unhandledrejection",zR=function(t){var e;return!(!lR(t)||!uR(e=t.then))&&e},NR=function(t,e){var r,n,i,o=e.value,a=1===e.state,s=a?t.ok:t.fail,c=t.resolve,u=t.reject,l=t.domain;try{s?(a||(2===e.rejection&&HR(e),e.rejection=1),!0===s?r=o:(l&&l.enter(),r=s(o),l&&(l.exit(),i=!0)),r===t.promise?u(new OR("Promise-chain cycle")):(n=zR(r))?nR(n,r,c,u):c(r)):u(o)}catch(t){l&&!i&&l.exit(),u(t)}},FR=function(t,e){t.notified||(t.notified=!0,pR((function(){for(var r,n=t.reactions;r=n.get();)NR(r,t);t.notified=!1,e&&!t.rejection&&UR(t)})))},BR=function(t,e,r){var n,i;LR?((n=IR.createEvent("Event")).promise=e,n.reason=r,n.initEvent(t,!1,!0),rR.dispatchEvent(n)):n={promise:e,reason:r},!_R&&(i=rR["on"+t])?i(n):t===DR&&gR("Unhandled promise rejection",r)},UR=function(t){nR(dR,rR,(function(){var e,r=t.facade,n=t.value;if(YR(t)&&(e=vR((function(){eR?CR.emit("unhandledRejection",n,r):BR(DR,r,n)})),t.rejection=eR||YR(t)?2:1,e.error))throw e.value}))},YR=function(t){return 1!==t.rejection&&!t.parent},HR=function(t){nR(dR,rR,(function(){var e=t.facade;eR?CR.emit("rejectionHandled",e):BR("rejectionhandled",e,t.value)}))},GR=function(t,e,r){return function(n){t(e,n,r)}},WR=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,FR(t,!0))},$R=function(t,e,r){if(!t.done){t.done=!0,r&&(t=r);try{if(t.facade===e)throw new OR("Promise can't be resolved itself");var n=zR(e);n?pR((function(){var r={done:!1};try{nR(n,e,GR($R,r,t),GR(WR,r,t))}catch(e){WR(r,e,t)}})):(t.value=e,t.state=1,FR(t,!1))}catch(e){WR({done:!1},e,t)}}};if(AR&&(PR=(TR=function(t){hR(this,PR),cR(t),nR(QC,this);var e=ER(this);try{t(GR($R,e),GR(WR,e))}catch(t){WR(e,t)}}).prototype,(QC=function(t){SR(this,{type:wR,done:!1,notified:!1,parent:!1,reactions:new yR,rejection:!1,state:0,value:null})}).prototype=iR(PR,"then",(function(t,e){var r=ER(this),n=RR(fR(this,TR));return r.parent=!0,n.ok=!uR(t)||t,n.fail=uR(e)&&e,n.domain=eR?CR.domain:void 0,0===r.state?r.reactions.add(n):pR((function(){NR(n,r)})),n.promise})),JC=function(){var t=new QC,e=ER(t);this.promise=t,this.resolve=GR($R,e),this.reject=GR(WR,e)},xR.f=RR=function(t){return t===TR||undefined===t?new JC(t):jR(t)},uR(bR)&&MR!==Object.prototype)){ZC=MR.then,kR||iR(MR,"then",(function(t,e){var r=this;return new TR((function(t,e){nR(ZC,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete MR.constructor}catch(t){}oR&&oR(MR,PR)}tR({global:!0,constructor:!0,wrap:!0,forced:AR},{Promise:TR}),aR(TR,wR,!1),sR(wR);var qR=RC,XR=$C.CONSTRUCTOR||!sd((function(t){qR.all(t).then(void 0,(function(){}))})),VR=u,KR=yt,QR=qC,JR=CC,ZR=Rl;ri({target:"Promise",stat:!0,forced:XR},{all:function(t){var e=this,r=QR.f(e),n=r.resolve,i=r.reject,o=JR((function(){var r=KR(e.resolve),o=[],a=0,s=1;ZR(t,(function(t){var c=a++,u=!1;s++,VR(r,e,t).then((function(t){u||(u=!0,o[c]=t,--s||n(o))}),i)})),--s||n(o)}));return o.error&&i(o.value),r.promise}});var tj=ri,ej=$C.CONSTRUCTOR,rj=RC,nj=G,ij=F,oj=Qr,aj=rj&&rj.prototype;if(tj({target:"Promise",proto:!0,forced:ej,real:!0},{catch:function(t){return this.then(void 0,t)}}),ij(rj)){var sj=nj("Promise").prototype.catch;aj.catch!==sj&&oj(aj,"catch",sj,{unsafe:!0})}var cj=u,uj=yt,lj=qC,hj=CC,fj=Rl;ri({target:"Promise",stat:!0,forced:XR},{race:function(t){var e=this,r=lj.f(e),n=r.reject,i=hj((function(){var i=uj(e.resolve);fj(t,(function(t){cj(i,e,t).then(r.resolve,n)}))}));return i.error&&n(i.value),r.promise}});var dj=qC;ri({target:"Promise",stat:!0,forced:$C.CONSTRUCTOR},{reject:function(t){var e=dj.f(this);return(0,e.reject)(t),e.promise}});var pj=Re,gj=U,vj=qC,yj=function(t,e){if(pj(t),gj(e)&&e.constructor===t)return e;var r=vj.f(t);return(0,r.resolve)(e),r.promise},mj=ri,bj=$C.CONSTRUCTOR,xj=yj;G("Promise"),mj({target:"Promise",stat:!0,forced:bj},{resolve:function(t){return xj(this,t)}});var wj=u,Aj=yt,_j=qC,kj=CC,Ej=Rl;ri({target:"Promise",stat:!0,forced:XR},{allSettled:function(t){var e=this,r=_j.f(e),n=r.resolve,i=r.reject,o=kj((function(){var r=Aj(e.resolve),i=[],o=0,a=1;Ej(t,(function(t){var s=o++,c=!1;a++,wj(r,e,t).then((function(t){c||(c=!0,i[s]={status:"fulfilled",value:t},--a||n(i))}),(function(t){c||(c=!0,i[s]={status:"rejected",reason:t},--a||n(i))}))})),--a||n(i)}));return o.error&&i(o.value),r.promise}});var Sj=u,Mj=yt,Tj=G,Pj=qC,Oj=CC,Ij=Rl,Cj="No one promise resolved";ri({target:"Promise",stat:!0,forced:XR},{any:function(t){var e=this,r=Tj("AggregateError"),n=Pj.f(e),i=n.resolve,o=n.reject,a=Oj((function(){var n=Mj(e.resolve),a=[],s=0,c=1,u=!1;Ij(t,(function(t){var l=s++,h=!1;c++,Sj(n,e,t).then((function(t){h||u||(u=!0,i(t))}),(function(t){h||u||(h=!0,a[l]=t,--c||o(new r(a,Cj)))}))})),--c||o(new r(a,Cj))}));return a.error&&o(a.value),n.promise}});var Rj=ri,jj=RC,Lj=i,Dj=G,zj=F,Nj=EI,Fj=yj,Bj=Qr,Uj=jj&&jj.prototype;if(Rj({target:"Promise",proto:!0,real:!0,forced:!!jj&&Lj((function(){Uj.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var e=Nj(this,Dj("Promise")),r=zj(t);return this.then(r?function(r){return Fj(e,t()).then((function(){return r}))}:t,r?function(r){return Fj(e,t()).then((function(){throw r}))}:t)}}),zj(jj)){var Yj=Dj("Promise").prototype.finally;Uj.finally!==Yj&&Bj(Uj,"finally",Yj,{unsafe:!0})}var Hj=ri,Gj=Ms,Wj=Yi,$j=qC,qj=yt,Xj=CC,Vj=r.Promise,Kj=!1;Hj({target:"Promise",stat:!0,forced:!Vj||!Vj.try||Xj((function(){Vj.try((function(t){Kj=8===t}),8)})).error||!Kj},{try:function(t){var e=arguments.length>1?Wj(arguments,1):[],r=$j.f(this),n=Xj((function(){return Gj(qj(t),void 0,e)}));return(n.error?r.reject:r.resolve)(n.value),r.promise}});var Qj=qC;ri({target:"Promise",stat:!0},{withResolvers:function(){var t=Qj.f(this);return{promise:t.promise,resolve:t.resolve,reject:t.reject}}});var Jj=Ms,Zj=yt,tL=Re;ri({target:"Reflect",stat:!0,forced:!i((function(){Reflect.apply((function(){}))}))},{apply:function(t,e,r){return Jj(Zj(t),e,tL(r))}});var eL=ri,rL=Ms,nL=sA,iL=xI,oL=Re,aL=U,sL=Bi,cL=i,uL=G("Reflect","construct"),lL=Object.prototype,hL=[].push,fL=cL((function(){function t(){}return!(uL((function(){}),[],t)instanceof t)})),dL=!cL((function(){uL((function(){}))})),pL=fL||dL;eL({target:"Reflect",stat:!0,forced:pL,sham:pL},{construct:function(t,e){iL(t),oL(e);var r=arguments.length<3?t:iL(arguments[2]);if(dL&&!fL)return uL(t,e,r);if(t===r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return rL(hL,n,e),new(rL(nL,t,n))}var i=r.prototype,o=sL(aL(i)?i:lL),a=rL(t,o,e);return aL(a)?a:o}});var gL=o,vL=Re,yL=fe,mL=Te;ri({target:"Reflect",stat:!0,forced:i((function(){Reflect.defineProperty(mL.f({},1,{value:1}),1,{value:2})})),sham:!gL},{defineProperty:function(t,e,r){vL(t);var n=yL(e);vL(r);try{return mL.f(t,n,r),!0}catch(t){return!1}}});var bL=ri,xL=Re,wL=n.f;bL({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=wL(xL(t),e);return!(r&&!r.configurable)&&delete t[e]}});var AL=Ut,_L=function(t){return void 0!==t&&(AL(t,"value")||AL(t,"writable"))},kL=u,EL=U,SL=Re,ML=_L,TL=n,PL=Qu;ri({target:"Reflect",stat:!0},{get:function t(e,r){var n,i,o=arguments.length<3?e:arguments[2];return SL(e)===o?e[r]:(n=TL.f(e,r))?ML(n)?n.value:void 0===n.get?void 0:kL(n.get,o):EL(i=PL(e))?t(i,r,o):void 0}});var OL=Re,IL=n;ri({target:"Reflect",stat:!0,sham:!o},{getOwnPropertyDescriptor:function(t,e){return IL.f(OL(t),e)}});var CL=Re,RL=Qu;ri({target:"Reflect",stat:!0,sham:!Hu},{getPrototypeOf:function(t){return RL(CL(t))}}),ri({target:"Reflect",stat:!0},{has:function(t,e){return e in t}});var jL=Re,LL=Uk;ri({target:"Reflect",stat:!0},{isExtensible:function(t){return jL(t),LL(t)}}),ri({target:"Reflect",stat:!0},{ownKeys:jn});var DL=G,zL=Re;ri({target:"Reflect",stat:!0,sham:!Yk},{preventExtensions:function(t){zL(t);try{var e=DL("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}});var NL=ri,FL=u,BL=Re,UL=U,YL=_L,HL=Te,GL=n,WL=Qu,$L=v;var qL=i((function(){var t=function(){},e=HL.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)}));NL({target:"Reflect",stat:!0,forced:qL},{set:function t(e,r,n){var i,o,a,s=arguments.length<4?e:arguments[3],c=GL.f(BL(e),r);if(!c){if(UL(o=WL(e)))return t(o,r,n,s);c=$L(0)}if(YL(c)){if(!1===c.writable||!UL(s))return!1;if(i=GL.f(s,r)){if(i.get||i.set||!1===i.writable)return!1;i.value=n,HL.f(s,r,i)}else HL.f(s,r,$L(0,n))}else{if(void 0===(a=c.set))return!1;FL(a,s,n)}return!0}});var XL=Re,VL=Dc,KL=Uc;KL&&ri({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){XL(t),VL(e);try{return KL(t,e),!0}catch(t){return!1}}});var QL=r,JL=po;ri({global:!0},{Reflect:{}}),JL(QL.Reflect,"Reflect",!0);var ZL=U,tD=E,eD=ee("match"),rD=function(t){var e;return ZL(t)&&(void 0!==(e=t[eD])?!!e:"RegExp"===tD(t))},nD=Re,iD=function(){var t=nD(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e},oD=u,aD=Ut,sD=W,cD=iD,uD=RegExp.prototype,lD=function(t){var e=t.flags;return void 0!==e||"flags"in uD||aD(t,"flags")||!sD(uD,t)?e:oD(cD,t)},hD=i,fD=r.RegExp,dD=hD((function(){var t=fD("a","y");return t.lastIndex=2,null!==t.exec("abcd")})),pD=dD||hD((function(){return!fD("a","y").sticky})),gD=dD||hD((function(){var t=fD("^r","gy");return t.lastIndex=2,null!==t.exec("str")})),vD={BROKEN_CARET:gD,MISSED_STICKY:pD,UNSUPPORTED_Y:dD},yD=i,mD=r.RegExp,bD=yD((function(){var t=mD(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)})),xD=i,wD=r.RegExp,AD=xD((function(){var t=wD("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),_D=o,kD=r,ED=w,SD=Xn,MD=qc,TD=qe,PD=Bi,OD=Jr.f,ID=W,CD=rD,RD=pi,jD=lD,LD=vD,DD=Hc,zD=Qr,ND=i,FD=Ut,BD=Pr.enforce,UD=iv,YD=bD,HD=AD,GD=ee("match"),WD=kD.RegExp,$D=WD.prototype,qD=kD.SyntaxError,XD=ED($D.exec),VD=ED("".charAt),KD=ED("".replace),QD=ED("".indexOf),JD=ED("".slice),ZD=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,tz=/a/g,ez=/a/g,rz=new WD(tz)!==tz,nz=LD.MISSED_STICKY,iz=LD.UNSUPPORTED_Y,oz=_D&&(!rz||nz||YD||HD||ND((function(){return ez[GD]=!1,WD(tz)!==tz||WD(ez)===ez||"/a/i"!==String(WD(tz,"i"))})));if(SD("RegExp",oz)){for(var az=function(t,e){var r,n,i,o,a,s,c=ID($D,this),u=CD(t),l=void 0===e,h=[],f=t;if(!c&&u&&l&&t.constructor===az)return t;if((u||ID($D,t))&&(t=t.source,l&&(e=jD(f))),t=void 0===t?"":RD(t),e=void 0===e?"":RD(e),f=t,YD&&"dotAll"in tz&&(n=!!e&&QD(e,"s")>-1)&&(e=KD(e,/s/g,"")),r=e,nz&&"sticky"in tz&&(i=!!e&&QD(e,"y")>-1)&&iz&&(e=KD(e,/y/g,"")),HD&&(o=function(t){for(var e,r=t.length,n=0,i="",o=[],a=PD(null),s=!1,c=!1,u=0,l="";n<=r;n++){if("\\"===(e=VD(t,n)))e+=VD(t,++n);else if("]"===e)s=!1;else if(!s)switch(!0){case"["===e:s=!0;break;case"("===e:if(i+=e,"?:"===JD(t,n+1,n+3))continue;XD(ZD,JD(t,n+1))&&(n+=2,c=!0),u++;continue;case">"===e&&c:if(""===l||FD(a,l))throw new qD("Invalid capture group name");a[l]=!0,o[o.length]=[l,u],c=!1,l="";continue}c?l+=e:i+=e}return[i,o]}(t),t=o[0],h=o[1]),a=MD(WD(t,e),c?this:$D,az),(n||i||h.length)&&(s=BD(a),n&&(s.dotAll=!0,s.raw=az(function(t){for(var e,r=t.length,n=0,i="",o=!1;n<=r;n++)"\\"!==(e=VD(t,n))?o||"."!==e?("["===e?o=!0:"]"===e&&(o=!1),i+=e):i+="[\\s\\S]":i+=e+VD(t,++n);return i}(t),r)),i&&(s.sticky=!0),h.length&&(s.groups=h)),t!==f)try{TD(a,"source",""===f?"(?:)":f)}catch(t){}return a},sz=OD(WD),cz=0;sz.length>cz;)DD(az,WD,sz[cz++]);$D.constructor=az,az.prototype=$D,zD(kD,"RegExp",az,{constructor:!0})}UD("RegExp");var uz=o,lz=bD,hz=E,fz=Ki,dz=Pr.get,pz=RegExp.prototype,gz=TypeError;uz&&lz&&fz(pz,"dotAll",{configurable:!0,get:function(){if(this!==pz){if("RegExp"===hz(this))return!!dz(this).dotAll;throw new gz("Incompatible receiver, RegExp required")}}});var vz=u,yz=w,mz=pi,bz=iD,xz=vD,wz=Bi,Az=Pr.get,_z=bD,kz=AD,Ez=Lt("native-string-replace",String.prototype.replace),Sz=RegExp.prototype.exec,Mz=Sz,Tz=yz("".charAt),Pz=yz("".indexOf),Oz=yz("".replace),Iz=yz("".slice),Cz=function(){var t=/a/,e=/b*/g;return vz(Sz,t,"a"),vz(Sz,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),Rz=xz.BROKEN_CARET,jz=void 0!==/()??/.exec("")[1];(Cz||jz||Rz||_z||kz)&&(Mz=function(t){var e,r,n,i,o,a,s,c=this,u=Az(c),l=mz(t),h=u.raw;if(h)return h.lastIndex=c.lastIndex,e=vz(Mz,h,l),c.lastIndex=h.lastIndex,e;var f=u.groups,d=Rz&&c.sticky,p=vz(bz,c),g=c.source,v=0,y=l;if(d&&(p=Oz(p,"y",""),-1===Pz(p,"g")&&(p+="g"),y=Iz(l,c.lastIndex),c.lastIndex>0&&(!c.multiline||c.multiline&&"\n"!==Tz(l,c.lastIndex-1))&&(g="(?: "+g+")",y=" "+y,v++),r=new RegExp("^(?:"+g+")",p)),jz&&(r=new RegExp("^"+g+"$(?!\\s)",p)),Cz&&(n=c.lastIndex),i=vz(Sz,d?r:c,y),d?i?(i.input=Iz(i.input,v),i[0]=Iz(i[0],v),i.index=c.lastIndex,c.lastIndex+=i[0].length):c.lastIndex=0:Cz&&i&&(c.lastIndex=c.global?i.index+i[0].length:n),jz&&i&&i.length>1&&vz(Ez,i[0],r,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(i[o]=void 0)})),i&&f)for(i.groups=a=wz(null),o=0;o<f.length;o++)a[(s=f[o])[0]]=i[s[1]];return i});var Lz=Mz;ri({target:"RegExp",proto:!0,forced:/./.exec!==Lz},{exec:Lz});var Dz=o,zz=Ki,Nz=iD,Fz=i,Bz=r.RegExp,Uz=Bz.prototype,Yz=Dz&&Fz((function(){var t=!0;try{Bz(".","d")}catch(e){t=!1}var e={},r="",n=t?"dgimsy":"gimsy",i=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},o={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var a in t&&(o.hasIndices="d"),o)i(a,o[a]);return Object.getOwnPropertyDescriptor(Uz,"flags").get.call(e)!==n||r!==n}));Yz&&zz(Uz,"flags",{configurable:!0,get:Nz});var Hz=o,Gz=vD.MISSED_STICKY,Wz=E,$z=Ki,qz=Pr.get,Xz=RegExp.prototype,Vz=TypeError;Hz&&Gz&&$z(Xz,"sticky",{configurable:!0,get:function(){if(this!==Xz){if("RegExp"===Wz(this))return!!qz(this).sticky;throw new Vz("Incompatible receiver, RegExp required")}}});var Kz,Qz,Jz=ri,Zz=u,tN=F,eN=Re,rN=pi,nN=(Kz=!1,(Qz=/[ac]/).exec=function(){return Kz=!0,/./.exec.apply(this,arguments)},!0===Qz.test("abc")&&Kz),iN=/./.test;Jz({target:"RegExp",proto:!0,forced:!nN},{test:function(t){var e=eN(this),r=rN(t),n=e.exec;if(!tN(n))return Zz(iN,e,r);var i=Zz(n,e,r);return null!==i&&(eN(i),!0)}});var oN=tr.PROPER,aN=Qr,sN=Re,cN=pi,uN=i,lN=lD,hN="toString",fN=RegExp.prototype,dN=fN[hN],pN=uN((function(){return"/a/b"!==dN.call({source:"a",flags:"b"})})),gN=oN&&dN.name!==hN;(pN||gN)&&aN(fN,hN,(function(){var t=sN(this);return"/"+cN(t.source)+"/"+cN(lN(t))}),{unsafe:!0}),bE("Set",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),jE);var vN=w,yN=Set.prototype,mN={Set:Set,add:vN(yN.add),has:vN(yN.has),remove:vN(yN.delete),proto:yN},bN=mN.has,xN=function(t){return bN(t),t},wN=u,AN=function(t,e,r){for(var n,i,o=r?t:t.iterator,a=t.next;!(n=wN(a,o)).done;)if(void 0!==(i=e(n.value)))return i},_N=w,kN=AN,EN=mN.Set,SN=mN.proto,MN=_N(SN.forEach),TN=_N(SN.keys),PN=TN(new EN).next,ON=function(t,e,r){return r?kN({iterator:TN(t),next:PN},e):MN(t,e)},IN=ON,CN=mN.Set,RN=mN.add,jN=function(t){var e=new CN;return IN(t,(function(t){RN(e,t)})),e},LN=Oc(mN.proto,"size","get")||function(t){return t.size},DN=yt,zN=Re,NN=u,FN=nn,BN=$A,UN="Invalid size",YN=RangeError,HN=TypeError,GN=Math.max,WN=function(t,e){this.set=t,this.size=GN(e,0),this.has=DN(t.has),this.keys=DN(t.keys)};WN.prototype={getIterator:function(){return BN(zN(NN(this.keys,this.set)))},includes:function(t){return NN(this.has,this.set,t)}};var $N=function(t){zN(t);var e=+t.size;if(e!=e)throw new HN(UN);var r=FN(e);if(r<0)throw new YN(UN);return new WN(t,r)},qN=xN,XN=jN,VN=LN,KN=$N,QN=ON,JN=AN,ZN=mN.has,tF=mN.remove,eF=G,rF=function(t){return{size:t,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}},nF=function(t){return{size:t,has:function(){return!0},keys:function(){throw new Error("e")}}},iF=function(t,e){var r=eF("Set");try{(new r)[t](rF(0));try{return(new r)[t](rF(-1)),!1}catch(i){if(!e)return!0;try{return(new r)[t](nF(-1/0)),!1}catch(i){var n=new r;return n.add(1),n.add(2),e(n[t](nF(1/0)))}}}catch(t){return!1}},oF=function(t){var e=qN(this),r=KN(t),n=XN(e);return VN(e)<=r.size?QN(e,(function(t){r.includes(t)&&tF(n,t)})):JN(r.getIterator(),(function(t){ZN(e,t)&&tF(n,t)})),n};ri({target:"Set",proto:!0,real:!0,forced:!iF("difference",(function(t){return 0===t.size}))},{difference:oF});var aF=xN,sF=LN,cF=$N,uF=ON,lF=AN,hF=mN.Set,fF=mN.add,dF=mN.has,pF=i,gF=function(t){var e=aF(this),r=cF(t),n=new hF;return sF(e)>r.size?lF(r.getIterator(),(function(t){dF(e,t)&&fF(n,t)})):uF(e,(function(t){r.includes(t)&&fF(n,t)})),n};ri({target:"Set",proto:!0,real:!0,forced:!iF("intersection",(function(t){return 2===t.size&&t.has(1)&&t.has(2)}))||pF((function(){return"3,2"!==String(Array.from(new Set([1,2,3]).intersection(new Set([3,2]))))}))},{intersection:gF});var vF=xN,yF=mN.has,mF=LN,bF=$N,xF=ON,wF=AN,AF=bl,_F=function(t){var e=vF(this),r=bF(t);if(mF(e)<=r.size)return!1!==xF(e,(function(t){if(r.includes(t))return!1}),!0);var n=r.getIterator();return!1!==wF(n,(function(t){if(yF(e,t))return AF(n,"normal",!1)}))};ri({target:"Set",proto:!0,real:!0,forced:!iF("isDisjointFrom",(function(t){return!t}))},{isDisjointFrom:_F});var kF=xN,EF=LN,SF=ON,MF=$N,TF=function(t){var e=kF(this),r=MF(t);return!(EF(e)>r.size)&&!1!==SF(e,(function(t){if(!r.includes(t))return!1}),!0)};ri({target:"Set",proto:!0,real:!0,forced:!iF("isSubsetOf",(function(t){return t}))},{isSubsetOf:TF});var PF=xN,OF=mN.has,IF=LN,CF=$N,RF=AN,jF=bl,LF=function(t){var e=PF(this),r=CF(t);if(IF(e)<r.size)return!1;var n=r.getIterator();return!1!==RF(n,(function(t){if(!OF(e,t))return jF(n,"normal",!1)}))};ri({target:"Set",proto:!0,real:!0,forced:!iF("isSupersetOf",(function(t){return!t}))},{isSupersetOf:LF});var DF=xN,zF=jN,NF=$N,FF=AN,BF=mN.add,UF=mN.has,YF=mN.remove,HF=function(t){var e=DF(this),r=NF(t).getIterator(),n=zF(e);return FF(r,(function(t){UF(e,t)?YF(n,t):BF(n,t)})),n};ri({target:"Set",proto:!0,real:!0,forced:!iF("symmetricDifference")},{symmetricDifference:HF});var GF=xN,WF=mN.add,$F=jN,qF=$N,XF=AN,VF=function(t){var e=GF(this),r=qF(t).getIterator(),n=$F(e);return XF(r,(function(t){WF(n,t)})),n};ri({target:"Set",proto:!0,real:!0,forced:!iF("union")},{union:VF});var KF=ri,QF=j,JF=nn,ZF=pi,tB=i,eB=w("".charAt);KF({target:"String",proto:!0,forced:tB((function(){return"\ud842"!=="𠮷".at(-2)}))},{at:function(t){var e=ZF(QF(this)),r=e.length,n=JF(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:eB(e,i)}});var rB=w,nB=nn,iB=pi,oB=j,aB=rB("".charAt),sB=rB("".charCodeAt),cB=rB("".slice),uB=function(t){return function(e,r){var n,i,o=iB(oB(e)),a=nB(r),s=o.length;return a<0||a>=s?t?"":void 0:(n=sB(o,a))<55296||n>56319||a+1===s||(i=sB(o,a+1))<56320||i>57343?t?aB(o,a):n:t?cB(o,a,a+2):i-56320+(n-55296<<10)+65536}},lB={codeAt:uB(!1),charAt:uB(!0)},hB=lB.codeAt;ri({target:"String",proto:!0},{codePointAt:function(t){return hB(this,t)}});var fB=rD,dB=TypeError,pB=function(t){if(fB(t))throw new dB("The method doesn't accept regular expressions");return t},gB=ee("match"),vB=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[gB]=!1,"/./"[t](e)}catch(t){}}return!1},yB=ri,mB=yo,bB=n.f,xB=hn,wB=pi,AB=pB,_B=j,kB=vB,EB=mB("".slice),SB=Math.min,MB=kB("endsWith"),TB=!MB&&!!function(){var t=bB(String.prototype,"endsWith");return t&&!t.writable}();yB({target:"String",proto:!0,forced:!TB&&!MB},{endsWith:function(t){var e=wB(_B(this));AB(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,i=void 0===r?n:SB(xB(r),n),o=wB(t);return EB(e,i-o.length,i)===o}});var PB=ri,OB=w,IB=cn,CB=RangeError,RB=String.fromCharCode,jB=String.fromCodePoint,LB=OB([].join);PB({target:"String",stat:!0,arity:1,forced:!!jB&&1!==jB.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,i=0;n>i;){if(e=+arguments[i++],IB(e,1114111)!==e)throw new CB(e+" is not a valid code point");r[i]=e<65536?RB(e):RB(55296+((e-=65536)>>10),e%1024+56320)}return LB(r,"")}});var DB=ri,zB=pB,NB=j,FB=pi,BB=vB,UB=w("".indexOf);DB({target:"String",proto:!0,forced:!BB("includes")},{includes:function(t){return!!~UB(FB(NB(this)),FB(zB(t)),arguments.length>1?arguments[1]:void 0)}});var YB=ri,HB=j,GB=pi,WB=w("".charCodeAt);YB({target:"String",proto:!0},{isWellFormed:function(){for(var t=GB(HB(this)),e=t.length,r=0;r<e;r++){var n=WB(t,r);if(55296==(63488&n)&&(n>=56320||++r>=e||56320!=(64512&WB(t,r))))return!1}return!0}});var $B=lB.charAt,qB=pi,XB=Pr,VB=tp,KB=ep,QB="String Iterator",JB=XB.set,ZB=XB.getterFor(QB);VB(String,"String",(function(t){JB(this,{type:QB,string:qB(t),index:0})}),(function(){var t,e=ZB(this),r=e.string,n=e.index;return n>=r.length?KB(void 0,!0):(t=$B(r,n),e.index+=t.length,KB(t,!1))}));var tU=u,eU=Qr,rU=Lz,nU=i,iU=ee,oU=qe,aU=iU("species"),sU=RegExp.prototype,cU=function(t,e,r,n){var i=iU(t),o=!nU((function(){var e={};return e[i]=function(){return 7},7!==""[t](e)})),a=o&&!nU((function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[aU]=function(){return r},r.flags="",r[i]=/./[i]),r.exec=function(){return e=!0,null},r[i](""),!e}));if(!o||!a||r){var s=/./[i],c=e(i,""[t],(function(t,e,r,n,i){var a=e.exec;return a===rU||a===sU.exec?o&&!i?{done:!0,value:tU(s,e,r,n)}:{done:!0,value:tU(t,r,e,n)}:{done:!1}}));eU(String.prototype,t,c[0]),eU(sU,i,c[1])}n&&oU(sU[i],"sham",!0)},uU=lB.charAt,lU=function(t,e,r){return e+(r?uU(t,e).length:1)},hU=u,fU=Re,dU=F,pU=E,gU=Lz,vU=TypeError,yU=function(t,e){var r=t.exec;if(dU(r)){var n=hU(r,t,e);return null!==n&&fU(n),n}if("RegExp"===pU(t))return hU(gU,t,e);throw new vU("RegExp#exec called on incompatible receiver")},mU=u,bU=Re,xU=I,wU=hn,AU=pi,_U=j,kU=xt,EU=lU,SU=yU;cU("match",(function(t,e,r){return[function(e){var r=_U(this),n=xU(e)?void 0:kU(e,t);return n?mU(n,e,r):new RegExp(e)[t](AU(r))},function(t){var n=bU(this),i=AU(t),o=r(e,n,i);if(o.done)return o.value;if(!n.global)return SU(n,i);var a=n.unicode;n.lastIndex=0;for(var s,c=[],u=0;null!==(s=SU(n,i));){var l=AU(s[0]);c[u]=l,""===l&&(n.lastIndex=EU(i,wU(n.lastIndex),a)),u++}return 0===u?null:c}]}));var MU=ri,TU=u,PU=yo,OU=jd,IU=ep,CU=j,RU=hn,jU=pi,LU=Re,DU=I,zU=rD,NU=lD,FU=xt,BU=Qr,UU=i,YU=EI,HU=lU,GU=yU,WU=Pr,$U=ee("matchAll"),qU="RegExp String",XU=qU+" Iterator",VU=WU.set,KU=WU.getterFor(XU),QU=RegExp.prototype,JU=TypeError,ZU=PU("".indexOf),tY=PU("".matchAll),eY=!!tY&&!UU((function(){tY("a",/./)})),rY=OU((function(t,e,r,n){VU(this,{type:XU,regexp:t,string:e,global:r,unicode:n,done:!1})}),qU,(function(){var t=KU(this);if(t.done)return IU(void 0,!0);var e=t.regexp,r=t.string,n=GU(e,r);return null===n?(t.done=!0,IU(void 0,!0)):t.global?(""===jU(n[0])&&(e.lastIndex=HU(r,RU(e.lastIndex),t.unicode)),IU(n,!1)):(t.done=!0,IU(n,!1))})),nY=function(t){var e,r,n,i=LU(this),o=jU(t),a=YU(i,RegExp),s=jU(NU(i));return e=new a(a===RegExp?i.source:i,s),r=!!~ZU(s,"g"),n=!!~ZU(s,"u"),e.lastIndex=RU(i.lastIndex),new rY(e,o,r,n)};MU({target:"String",proto:!0,forced:eY},{matchAll:function(t){var e,r,n,i=CU(this);if(DU(t)){if(eY)return tY(i,t)}else{if(zU(t)&&(e=jU(CU(NU(t))),!~ZU(e,"g")))throw new JU("`.matchAll` does not allow non-global regexes");if(eY)return tY(i,t);if(n=FU(t,$U))return TU(n,t,i)}return r=jU(i),new RegExp(t,"g")[$U](r)}}),$U in QU||BU(QU,$U,nY);var iY=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(X),oY=ow.end;ri({target:"String",proto:!0,forced:iY},{padEnd:function(t){return oY(this,t,arguments.length>1?arguments[1]:void 0)}});var aY=ow.start;ri({target:"String",proto:!0,forced:iY},{padStart:function(t){return aY(this,t,arguments.length>1?arguments[1]:void 0)}});var sY=ri,cY=w,uY=z,lY=Nt,hY=pi,fY=dn,dY=cY([].push),pY=cY([].join);sY({target:"String",stat:!0},{raw:function(t){var e=uY(lY(t).raw),r=fY(e);if(!r)return"";for(var n=arguments.length,i=[],o=0;;){if(dY(i,hY(e[o++])),o===r)return pY(i,"");o<n&&dY(i,hY(arguments[o]))}}}),ri({target:"String",proto:!0},{repeat:Kx});var gY=w,vY=Nt,yY=Math.floor,mY=gY("".charAt),bY=gY("".replace),xY=gY("".slice),wY=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,AY=/\$([$&'`]|\d{1,2})/g,_Y=function(t,e,r,n,i,o){var a=r+t.length,s=n.length,c=AY;return void 0!==i&&(i=vY(i),c=wY),bY(o,c,(function(o,c){var u;switch(mY(c,0)){case"$":return"$";case"&":return t;case"`":return xY(e,0,r);case"'":return xY(e,a);case"<":u=i[xY(c,1,-1)];break;default:var l=+c;if(0===l)return o;if(l>s){var h=yY(l/10);return 0===h?o:h<=s?void 0===n[h-1]?mY(c,1):n[h-1]+mY(c,1):o}u=n[l-1]}return void 0===u?"":u}))},kY=Ms,EY=u,SY=w,MY=cU,TY=i,PY=Re,OY=F,IY=I,CY=nn,RY=hn,jY=pi,LY=j,DY=lU,zY=xt,NY=_Y,FY=yU,BY=ee("replace"),UY=Math.max,YY=Math.min,HY=SY([].concat),GY=SY([].push),WY=SY("".indexOf),$Y=SY("".slice),qY="$0"==="a".replace(/./,"$0"),XY=!!/./[BY]&&""===/./[BY]("a","$0"),VY=!TY((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}));MY("replace",(function(t,e,r){var n=XY?"$":"$0";return[function(t,r){var n=LY(this),i=IY(t)?void 0:zY(t,BY);return i?EY(i,t,n,r):EY(e,jY(n),t,r)},function(t,i){var o=PY(this),a=jY(t);if("string"==typeof i&&-1===WY(i,n)&&-1===WY(i,"$<")){var s=r(e,o,a,i);if(s.done)return s.value}var c=OY(i);c||(i=jY(i));var u,l=o.global;l&&(u=o.unicode,o.lastIndex=0);for(var h,f=[];null!==(h=FY(o,a))&&(GY(f,h),l);){""===jY(h[0])&&(o.lastIndex=DY(a,RY(o.lastIndex),u))}for(var d,p="",g=0,v=0;v<f.length;v++){for(var y,m=jY((h=f[v])[0]),b=UY(YY(CY(h.index),a.length),0),x=[],w=1;w<h.length;w++)GY(x,void 0===(d=h[w])?d:String(d));var A=h.groups;if(c){var _=HY([m],x,b,a);void 0!==A&&GY(_,A),y=jY(kY(i,void 0,_))}else y=NY(m,a,b,x,A,i);b>=g&&(p+=$Y(a,g,b)+y,g=b+m.length)}return p+$Y(a,g)}]}),!VY||!qY||XY);var KY=ri,QY=u,JY=w,ZY=j,tH=F,eH=I,rH=rD,nH=pi,iH=xt,oH=lD,aH=_Y,sH=ee("replace"),cH=TypeError,uH=JY("".indexOf);JY("".replace);var lH=JY("".slice),hH=Math.max;KY({target:"String",proto:!0},{replaceAll:function(t,e){var r,n,i,o,a,s,c,u,l,h=ZY(this),f=0,d="";if(!eH(t)){if(rH(t)&&(r=nH(ZY(oH(t))),!~uH(r,"g")))throw new cH("`.replaceAll` does not allow non-global regexes");if(n=iH(t,sH))return QY(n,t,h,e)}for(i=nH(h),o=nH(t),(a=tH(e))||(e=nH(e)),s=o.length,c=hH(1,s),u=uH(i,o);-1!==u;)l=a?nH(e(o,u,i)):aH(o,i,u,[],void 0,e),d+=lH(i,f,u)+l,f=u+s,u=u+c>i.length?-1:uH(i,o,u+c);return f<i.length&&(d+=lH(i,f)),d}});var fH=u,dH=Re,pH=I,gH=j,vH=fO,yH=pi,mH=xt,bH=yU;cU("search",(function(t,e,r){return[function(e){var r=gH(this),n=pH(e)?void 0:mH(e,t);return n?fH(n,e,r):new RegExp(e)[t](yH(r))},function(t){var n=dH(this),i=yH(t),o=r(e,n,i);if(o.done)return o.value;var a=n.lastIndex;vH(a,0)||(n.lastIndex=0);var s=bH(n,i);return vH(n.lastIndex,a)||(n.lastIndex=a),null===s?-1:s.index}]}));var xH=u,wH=w,AH=cU,_H=Re,kH=I,EH=j,SH=EI,MH=lU,TH=hn,PH=pi,OH=xt,IH=yU,CH=i,RH=vD.UNSUPPORTED_Y,jH=Math.min,LH=wH([].push),DH=wH("".slice),zH=!CH((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]})),NH="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;AH("split",(function(t,e,r){var n="0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:xH(e,this,t,r)}:e;return[function(e,r){var i=EH(this),o=kH(e)?void 0:OH(e,t);return o?xH(o,e,i,r):xH(n,PH(i),e,r)},function(t,i){var o=_H(this),a=PH(t);if(!NH){var s=r(n,o,a,i,n!==e);if(s.done)return s.value}var c=SH(o,RegExp),u=o.unicode,l=(o.ignoreCase?"i":"")+(o.multiline?"m":"")+(o.unicode?"u":"")+(RH?"g":"y"),h=new c(RH?"^(?:"+o.source+")":o,l),f=void 0===i?4294967295:i>>>0;if(0===f)return[];if(0===a.length)return null===IH(h,a)?[a]:[];for(var d=0,p=0,g=[];p<a.length;){h.lastIndex=RH?0:p;var v,y=IH(h,RH?DH(a,p):a);if(null===y||(v=jH(TH(h.lastIndex+(RH?p:0)),a.length))===d)p=MH(a,p,u);else{if(LH(g,DH(a,d,p)),g.length===f)return g;for(var m=1;m<=y.length-1;m++)if(LH(g,y[m]),g.length===f)return g;p=d=v}}return LH(g,DH(a,d)),g}]}),NH||!zH,RH);var FH=ri,BH=yo,UH=n.f,YH=hn,HH=pi,GH=pB,WH=j,$H=vB,qH=BH("".slice),XH=Math.min,VH=$H("startsWith"),KH=!VH&&!!function(){var t=UH(String.prototype,"startsWith");return t&&!t.writable}();FH({target:"String",proto:!0,forced:!KH&&!VH},{startsWith:function(t){var e=HH(WH(this));GH(t);var r=YH(XH(arguments.length>1?arguments[1]:void 0,e.length)),n=HH(t);return qH(e,r,r+n.length)===n}});var QH=ri,JH=j,ZH=nn,tG=pi,eG=w("".slice),rG=Math.max,nG=Math.min;QH({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(t,e){var r,n,i=tG(JH(this)),o=i.length,a=ZH(t);return a===1/0&&(a=0),a<0&&(a=rG(o+a,0)),(r=void 0===e?o:ZH(e))<=0||r===1/0||a>=(n=nG(a+r,o))?"":eG(i,a,n)}});var iG=ri,oG=u,aG=w,sG=j,cG=pi,uG=i,lG=Array,hG=aG("".charAt),fG=aG("".charCodeAt),dG=aG([].join),pG="".toWellFormed,gG=pG&&uG((function(){return"1"!==oG(pG,1)}));iG({target:"String",proto:!0,forced:gG},{toWellFormed:function(){var t=cG(sG(this));if(gG)return oG(pG,t);for(var e=t.length,r=lG(e),n=0;n<e;n++){var i=fG(t,n);55296!=(63488&i)?r[n]=hG(t,n):i>=56320||n+1>=e||56320!=(64512&fG(t,n+1))?r[n]="�":(r[n]=hG(t,n),r[++n]=hG(t,n))}return dG(r,"")}});var vG=tr.PROPER,yG=i,mG=VS,bG=function(t){return yG((function(){return!!mG[t]()||"​…᠎"!=="​…᠎"[t]()||vG&&mG[t].name!==t}))},xG=nM.trim;ri({target:"String",proto:!0,forced:bG("trim")},{trim:function(){return xG(this)}});var wG=nM.end,AG=bG("trimEnd")?function(){return wG(this)}:"".trimEnd;ri({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==AG},{trimRight:AG});ri({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==AG},{trimEnd:AG});var _G=nM.start,kG=bG("trimStart")?function(){return _G(this)}:"".trimStart;ri({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==kG},{trimLeft:kG});ri({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==kG},{trimStart:kG});var EG=j,SG=pi,MG=/"/g,TG=w("".replace),PG=function(t,e,r,n){var i=SG(EG(t)),o="<"+e;return""!==r&&(o+=" "+r+'="'+TG(SG(n),MG,"&quot;")+'"'),o+">"+i+"</"+e+">"},OG=i,IG=function(t){return OG((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))},CG=PG;ri({target:"String",proto:!0,forced:IG("anchor")},{anchor:function(t){return CG(this,"a","name",t)}});var RG=PG;ri({target:"String",proto:!0,forced:IG("big")},{big:function(){return RG(this,"big","","")}});var jG=PG;ri({target:"String",proto:!0,forced:IG("blink")},{blink:function(){return jG(this,"blink","","")}});var LG=PG;ri({target:"String",proto:!0,forced:IG("bold")},{bold:function(){return LG(this,"b","","")}});var DG=PG;ri({target:"String",proto:!0,forced:IG("fixed")},{fixed:function(){return DG(this,"tt","","")}});var zG=PG;ri({target:"String",proto:!0,forced:IG("fontcolor")},{fontcolor:function(t){return zG(this,"font","color",t)}});var NG=PG;ri({target:"String",proto:!0,forced:IG("fontsize")},{fontsize:function(t){return NG(this,"font","size",t)}});var FG=PG;ri({target:"String",proto:!0,forced:IG("italics")},{italics:function(){return FG(this,"i","","")}});var BG=PG;ri({target:"String",proto:!0,forced:IG("link")},{link:function(t){return BG(this,"a","href",t)}});var UG=PG;ri({target:"String",proto:!0,forced:IG("small")},{small:function(){return UG(this,"small","","")}});var YG=PG;ri({target:"String",proto:!0,forced:IG("strike")},{strike:function(){return YG(this,"strike","","")}});var HG=PG;ri({target:"String",proto:!0,forced:IG("sub")},{sub:function(){return HG(this,"sub","","")}});var GG=PG;ri({target:"String",proto:!0,forced:IG("sup")},{sup:function(){return GG(this,"sup","","")}});var WG={exports:{}},$G=r,qG=i,XG=sd,VG=vb.NATIVE_ARRAY_BUFFER_VIEWS,KG=$G.ArrayBuffer,QG=$G.Int8Array,JG=!VG||!qG((function(){QG(1)}))||!qG((function(){new QG(-1)}))||!XG((function(t){new QG,new QG(null),new QG(1.5),new QG(t)}),!0)||qG((function(){return 1!==new QG(new KG(2),1,void 0).length})),ZG=QA,tW=RangeError,eW=function(t,e){var r=ZG(t);if(r%e)throw new tW("Wrong offset");return r},rW=Math.round,nW=hi,iW=function(t){var e=nW(t);return"BigInt64Array"===e||"BigUint64Array"===e},oW=ue,aW=TypeError,sW=function(t){var e=oW(t,"number");if("number"==typeof e)throw new aW("Can't convert number to bigint");return BigInt(e)},cW=wo,uW=u,lW=xI,hW=Nt,fW=dn,dW=gl,pW=cl,gW=rl,vW=iW,yW=vb.aTypedArrayConstructor,mW=sW,bW=function(t){var e,r,n,i,o,a,s,c,u=lW(this),l=hW(t),h=arguments.length,f=h>1?arguments[1]:void 0,d=void 0!==f,p=pW(l);if(p&&!gW(p))for(c=(s=dW(l,p)).next,l=[];!(a=uW(c,s)).done;)l.push(a.value);for(d&&h>2&&(f=cW(f,arguments[2])),r=fW(l),n=new(yW(u))(r),i=vW(n),e=0;r>e;e++)o=d?f(l[e],e):l[e],n[e]=i?mW(o):+o;return n},xW=ri,wW=r,AW=u,_W=o,kW=JG,EW=vb,SW=Tm,MW=cy,TW=v,PW=qe,OW=RM,IW=hn,CW=fy,RW=eW,jW=function(t){var e=rW(t);return e<0?0:e>255?255:255&e},LW=fe,DW=Ut,zW=hi,NW=U,FW=ht,BW=Bi,UW=W,YW=Uc,HW=Jr.f,GW=bW,WW=Qo.forEach,$W=iv,qW=Ki,XW=Te,VW=n,KW=Ev,QW=qc,JW=Pr.get,ZW=Pr.set,t$=Pr.enforce,e$=XW.f,r$=VW.f,n$=wW.RangeError,i$=SW.ArrayBuffer,o$=i$.prototype,a$=SW.DataView,s$=EW.NATIVE_ARRAY_BUFFER_VIEWS,c$=EW.TYPED_ARRAY_TAG,u$=EW.TypedArray,l$=EW.TypedArrayPrototype,h$=EW.isTypedArray,f$="BYTES_PER_ELEMENT",d$="Wrong length",p$=function(t,e){qW(t,e,{configurable:!0,get:function(){return JW(this)[e]}})},g$=function(t){var e;return UW(o$,t)||"ArrayBuffer"===(e=zW(t))||"SharedArrayBuffer"===e},v$=function(t,e){return h$(t)&&!FW(e)&&e in t&&OW(+e)&&e>=0},y$=function(t,e){return e=LW(e),v$(t,e)?TW(2,t[e]):r$(t,e)},m$=function(t,e,r){return e=LW(e),!(v$(t,e)&&NW(r)&&DW(r,"value"))||DW(r,"get")||DW(r,"set")||r.configurable||DW(r,"writable")&&!r.writable||DW(r,"enumerable")&&!r.enumerable?e$(t,e,r):(t[e]=r.value,t)};_W?(s$||(VW.f=y$,XW.f=m$,p$(l$,"buffer"),p$(l$,"byteOffset"),p$(l$,"byteLength"),p$(l$,"length")),xW({target:"Object",stat:!0,forced:!s$},{getOwnPropertyDescriptor:y$,defineProperty:m$}),WG.exports=function(t,e,r){var n=t.match(/\d+/)[0]/8,i=t+(r?"Clamped":"")+"Array",o="get"+t,a="set"+t,s=wW[i],c=s,u=c&&c.prototype,l={},h=function(t,e){e$(t,e,{get:function(){return function(t,e){var r=JW(t);return r.view[o](e*n+r.byteOffset,!0)}(this,e)},set:function(t){return function(t,e,i){var o=JW(t);o.view[a](e*n+o.byteOffset,r?jW(i):i,!0)}(this,e,t)},enumerable:!0})};s$?kW&&(c=e((function(t,e,r,i){return MW(t,u),QW(NW(e)?g$(e)?void 0!==i?new s(e,RW(r,n),i):void 0!==r?new s(e,RW(r,n)):new s(e):h$(e)?KW(c,e):AW(GW,c,e):new s(CW(e)),t,c)})),YW&&YW(c,u$),WW(HW(s),(function(t){t in c||PW(c,t,s[t])})),c.prototype=u):(c=e((function(t,e,r,i){MW(t,u);var o,a,s,l=0,f=0;if(NW(e)){if(!g$(e))return h$(e)?KW(c,e):AW(GW,c,e);o=e,f=RW(r,n);var d=e.byteLength;if(void 0===i){if(d%n)throw new n$(d$);if((a=d-f)<0)throw new n$(d$)}else if((a=IW(i)*n)+f>d)throw new n$(d$);s=a/n}else s=CW(e),o=new i$(a=s*n);for(ZW(t,{buffer:o,byteOffset:f,byteLength:a,length:s,view:new a$(o)});l<s;)h(t,l++)})),YW&&YW(c,u$),u=c.prototype=BW(l$)),u.constructor!==c&&PW(u,"constructor",c),t$(u).TypedArrayConstructor=c,c$&&PW(u,c$,i);var f=c!==s;l[i]=c,xW({global:!0,constructor:!0,forced:f,sham:!s$},l),f$ in c||PW(c,f$,n),f$ in u||PW(u,f$,n),$W(i)}):WG.exports=function(){},(0,WG.exports)("Float32",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,WG.exports)("Float64",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,WG.exports)("Int8",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,WG.exports)("Int16",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,WG.exports)("Int32",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,WG.exports)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,WG.exports)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}),!0),(0,WG.exports)("Uint16",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,WG.exports)("Uint32",(function(t){return function(e,r,n){return t(this,e,r,n)}}));var b$=dn,x$=nn,w$=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("at",(function(t){var e=w$(this),r=b$(e),n=x$(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:e[i]}));var A$=vb,_$=w($h),k$=A$.aTypedArray;(0,A$.exportTypedArrayMethod)("copyWithin",(function(t,e){return _$(k$(this),t,e,arguments.length>2?arguments[2]:void 0)}));var E$=Qo.every,S$=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("every",(function(t){return E$(S$(this),t,arguments.length>1?arguments[1]:void 0)}));var M$=tf,T$=sW,P$=hi,O$=u,I$=i,C$=vb.aTypedArray,R$=vb.exportTypedArrayMethod,j$=w("".slice),L$=I$((function(){var t=0;return new Int8Array(2).fill({valueOf:function(){return t++}}),1!==t}));R$("fill",(function(t){var e=arguments.length;C$(this);var r="Big"===j$(P$(this),0,3)?T$(t):+t;return O$(M$,this,r,e>1?arguments[1]:void 0,e>2?arguments[2]:void 0)}),L$);var D$=Ev,z$=vb.getTypedArrayConstructor,N$=Qo.filter,F$=function(t,e){return D$(z$(t),e)},B$=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("filter",(function(t){var e=N$(B$(this),t,arguments.length>1?arguments[1]:void 0);return F$(this,e)}));var U$=Qo.find,Y$=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("find",(function(t){return U$(Y$(this),t,arguments.length>1?arguments[1]:void 0)}));var H$=Qo.findIndex,G$=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("findIndex",(function(t){return H$(G$(this),t,arguments.length>1?arguments[1]:void 0)}));var W$=bf.findLast,$$=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("findLast",(function(t){return W$($$(this),t,arguments.length>1?arguments[1]:void 0)}));var q$=bf.findLastIndex,X$=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("findLastIndex",(function(t){return q$(X$(this),t,arguments.length>1?arguments[1]:void 0)}));var V$=Qo.forEach,K$=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("forEach",(function(t){V$(K$(this),t,arguments.length>1?arguments[1]:void 0)})),(0,vb.exportTypedArrayStaticMethod)("from",bW,JG);var Q$=mn.includes,J$=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("includes",(function(t){return Q$(J$(this),t,arguments.length>1?arguments[1]:void 0)}));var Z$=mn.indexOf,tq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("indexOf",(function(t){return Z$(tq(this),t,arguments.length>1?arguments[1]:void 0)}));var eq=r,rq=i,nq=w,iq=vb,oq=dp,aq=ee("iterator"),sq=eq.Uint8Array,cq=nq(oq.values),uq=nq(oq.keys),lq=nq(oq.entries),hq=iq.aTypedArray,fq=iq.exportTypedArrayMethod,dq=sq&&sq.prototype,pq=!rq((function(){dq[aq].call([1])})),gq=!!dq&&dq.values&&dq[aq]===dq.values&&"values"===dq.values.name,vq=function(){return cq(hq(this))};fq("entries",(function(){return lq(hq(this))}),pq),fq("keys",(function(){return uq(hq(this))}),pq),fq("values",vq,pq||!gq,{name:"values"}),fq(aq,vq,pq||!gq,{name:"values"});var yq=vb.aTypedArray,mq=vb.exportTypedArrayMethod,bq=w([].join);mq("join",(function(t){return bq(yq(this),t)}));var xq=Ms,wq=Pp,Aq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("lastIndexOf",(function(t){var e=arguments.length;return xq(wq,Aq(this),e>1?[t,arguments[1]]:[t])}));var _q=Qo.map,kq=vb.aTypedArray,Eq=vb.getTypedArrayConstructor;(0,vb.exportTypedArrayMethod)("map",(function(t){return _q(kq(this),t,arguments.length>1?arguments[1]:void 0,(function(t,e){return new(Eq(t))(e)}))}));var Sq=vb.aTypedArrayConstructor;(0,vb.exportTypedArrayStaticMethod)("of",(function(){for(var t=0,e=arguments.length,r=new(Sq(this))(e);e>t;)r[t]=arguments[t++];return r}),JG);var Mq=Kp.left,Tq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("reduce",(function(t){var e=arguments.length;return Mq(Tq(this),t,e,e>1?arguments[1]:void 0)}));var Pq=Kp.right,Oq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("reduceRight",(function(t){var e=arguments.length;return Pq(Oq(this),t,e,e>1?arguments[1]:void 0)}));var Iq=vb.aTypedArray,Cq=vb.exportTypedArrayMethod,Rq=Math.floor;Cq("reverse",(function(){for(var t,e=this,r=Iq(e).length,n=Rq(r/2),i=0;i<n;)t=e[i],e[i++]=e[--r],e[r]=t;return e}));var jq=r,Lq=u,Dq=vb,zq=dn,Nq=eW,Fq=Nt,Bq=i,Uq=jq.RangeError,Yq=jq.Int8Array,Hq=Yq&&Yq.prototype,Gq=Hq&&Hq.set,Wq=Dq.aTypedArray,$q=Dq.exportTypedArrayMethod,qq=!Bq((function(){var t=new Uint8ClampedArray(2);return Lq(Gq,t,{length:1,0:3},1),3!==t[1]})),Xq=qq&&Dq.NATIVE_ARRAY_BUFFER_VIEWS&&Bq((function(){var t=new Yq(2);return t.set(1),t.set("2",1),0!==t[0]||2!==t[1]}));$q("set",(function(t){Wq(this);var e=Nq(arguments.length>1?arguments[1]:void 0,1),r=Fq(t);if(qq)return Lq(Gq,this,r,e);var n=this.length,i=zq(r),o=0;if(i+e>n)throw new Uq("Wrong length");for(;o<i;)this[e+o]=r[o++]}),!qq||Xq);var Vq=Yi,Kq=vb.aTypedArray,Qq=vb.getTypedArrayConstructor;(0,vb.exportTypedArrayMethod)("slice",(function(t,e){for(var r=Vq(Kq(this),t,e),n=Qq(this),i=0,o=r.length,a=new n(o);o>i;)a[i]=r[i++];return a}),i((function(){new Int8Array(1).slice()})));var Jq=Qo.some,Zq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("some",(function(t){return Jq(Zq(this),t,arguments.length>1?arguments[1]:void 0)}));var tX=yo,eX=i,rX=yt,nX=Mg,iX=Pg,oX=Og,aX=et,sX=Cg,cX=vb.aTypedArray,uX=vb.exportTypedArrayMethod,lX=r.Uint16Array,hX=lX&&tX(lX.prototype.sort),fX=!(!hX||eX((function(){hX(new lX(2),null)}))&&eX((function(){hX(new lX(2),{})}))),dX=!!hX&&!eX((function(){if(aX)return aX<74;if(iX)return iX<67;if(oX)return!0;if(sX)return sX<602;var t,e,r=new lX(516),n=Array(516);for(t=0;t<516;t++)e=t%4,r[t]=515-t,n[t]=t-2*e+3;for(hX(r,(function(t,e){return(t/4|0)-(e/4|0)})),t=0;t<516;t++)if(r[t]!==n[t])return!0}));uX("sort",(function(t){return void 0!==t&&rX(t),dX?hX(this,t):nX(cX(this),function(t){return function(e,r){return void 0!==t?+t(e,r)||0:r!=r?-1:e!=e?1:0===e&&0===r?1/e>0&&1/r<0?1:-1:e>r}}(t))}),!dX||fX);var pX=hn,gX=cn,vX=vb.aTypedArray,yX=vb.getTypedArrayConstructor;(0,vb.exportTypedArrayMethod)("subarray",(function(t,e){var r=vX(this),n=r.length,i=gX(t,n);return new(yX(r))(r.buffer,r.byteOffset+i*r.BYTES_PER_ELEMENT,pX((void 0===e?n:gX(e,n))-i))}));var mX=Ms,bX=vb,xX=i,wX=Yi,AX=r.Int8Array,_X=bX.aTypedArray,kX=bX.exportTypedArrayMethod,EX=[].toLocaleString,SX=!!AX&&xX((function(){EX.call(new AX(1))}));kX("toLocaleString",(function(){return mX(EX,SX?wX(_X(this)):_X(this),wX(arguments))}),xX((function(){return[1,2].toLocaleString()!==new AX([1,2]).toLocaleString()}))||!xX((function(){AX.prototype.toLocaleString.call([1,2])})));var MX=bv,TX=vb.aTypedArray,PX=vb.getTypedArrayConstructor;(0,vb.exportTypedArrayMethod)("toReversed",(function(){return MX(TX(this),PX(this))}));var OX=yt,IX=Ev,CX=vb.aTypedArray,RX=vb.getTypedArrayConstructor,jX=vb.exportTypedArrayMethod,LX=w(vb.TypedArrayPrototype.sort);jX("toSorted",(function(t){void 0!==t&&OX(t);var e=CX(this),r=IX(RX(e),e);return LX(r,t)}));var DX=vb.exportTypedArrayMethod,zX=i,NX=w,FX=r.Uint8Array,BX=FX&&FX.prototype||{},UX=[].toString,YX=NX([].join);zX((function(){UX.call({})}))&&(UX=function(){return YX(this)});var HX=BX.toString!==UX;DX("toString",UX,HX);var GX=Zv,WX=iW,$X=nn,qX=sW,XX=vb.aTypedArray,VX=vb.getTypedArrayConstructor,KX=vb.exportTypedArrayMethod,QX=!!function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(t){return 8===t}}();KX("with",{with:function(t,e){var r=XX(this),n=$X(t),i=WX(r)?qX(e):+e;return GX(r,VX(r),n,i)}}.with,!QX);var JX=ri,ZX=w,tV=pi,eV=String.fromCharCode,rV=ZX("".charAt),nV=ZX(/./.exec),iV=ZX("".slice),oV=/^[\da-f]{2}$/i,aV=/^[\da-f]{4}$/i;JX({global:!0},{unescape:function(t){for(var e,r,n=tV(t),i="",o=n.length,a=0;a<o;){if("%"===(e=rV(n,a++)))if("u"===rV(n,a)){if(r=iV(n,a+1,a+5),nV(aV,r)){i+=eV(parseInt(r,16)),a+=5;continue}}else if(r=iV(n,a,a+2),nV(oV,r)){i+=eV(parseInt(r,16)),a+=2;continue}i+=e}return i}});var sV=w,cV=oy,uV=jk.exports.getWeakData,lV=cy,hV=Re,fV=I,dV=U,pV=Rl,gV=Ut,vV=Pr.set,yV=Pr.getterFor,mV=Qo.find,bV=Qo.findIndex,xV=sV([].splice),wV=0,AV=function(t){return t.frozen||(t.frozen=new _V)},_V=function(){this.entries=[]},kV=function(t,e){return mV(t.entries,(function(t){return t[0]===e}))};_V.prototype={get:function(t){var e=kV(this,t);if(e)return e[1]},has:function(t){return!!kV(this,t)},set:function(t,e){var r=kV(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=bV(this.entries,(function(e){return e[0]===t}));return~e&&xV(this.entries,e,1),!!~e}};var EV,SV={getConstructor:function(t,e,r,n){var i=t((function(t,i){lV(t,o),vV(t,{type:e,id:wV++,frozen:null}),fV(i)||pV(i,t[n],{that:t,AS_ENTRIES:r})})),o=i.prototype,a=yV(e),s=function(t,e,r){var n=a(t),i=uV(hV(e),!0);return!0===i?AV(n).set(e,r):i[n.id]=r,t};return cV(o,{delete:function(t){var e=a(this);if(!dV(t))return!1;var r=uV(t);return!0===r?AV(e).delete(t):r&&gV(r,e.id)&&delete r[e.id]},has:function(t){var e=a(this);if(!dV(t))return!1;var r=uV(t);return!0===r?AV(e).has(t):r&&gV(r,e.id)}}),cV(o,r?{get:function(t){var e=a(this);if(dV(t)){var r=uV(t);if(!0===r)return AV(e).get(t);if(r)return r[e.id]}},set:function(t,e){return s(this,t,e)}}:{add:function(t){return s(this,t,!0)}}),i}},MV=Yk,TV=r,PV=w,OV=oy,IV=jk.exports,CV=bE,RV=SV,jV=U,LV=Pr.enforce,DV=i,zV=hr,NV=Object,FV=Array.isArray,BV=NV.isExtensible,UV=NV.isFrozen,YV=NV.isSealed,HV=NV.freeze,GV=NV.seal,WV=!TV.ActiveXObject&&"ActiveXObject"in TV,$V=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},qV=CV("WeakMap",$V,RV),XV=qV.prototype,VV=PV(XV.set);if(zV)if(WV){EV=RV.getConstructor($V,"WeakMap",!0),IV.enable();var KV=PV(XV.delete),QV=PV(XV.has),JV=PV(XV.get);OV(XV,{delete:function(t){if(jV(t)&&!BV(t)){var e=LV(this);return e.frozen||(e.frozen=new EV),KV(this,t)||e.frozen.delete(t)}return KV(this,t)},has:function(t){if(jV(t)&&!BV(t)){var e=LV(this);return e.frozen||(e.frozen=new EV),QV(this,t)||e.frozen.has(t)}return QV(this,t)},get:function(t){if(jV(t)&&!BV(t)){var e=LV(this);return e.frozen||(e.frozen=new EV),QV(this,t)?JV(this,t):e.frozen.get(t)}return JV(this,t)},set:function(t,e){if(jV(t)&&!BV(t)){var r=LV(this);r.frozen||(r.frozen=new EV),QV(this,t)?VV(this,t,e):r.frozen.set(t,e)}else VV(this,t,e);return this}})}else MV&&DV((function(){var t=HV([]);return VV(new qV,t,1),!UV(t)}))&&OV(XV,{set:function(t,e){var r;return FV(t)&&(UV(t)?r=HV:YV(t)&&(r=GV)),VV(this,t,e),r&&r(t),this}});bE("WeakSet",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),SV);var ZV="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",tK=ZV+"+/",eK=ZV+"-_",rK=function(t){for(var e={},r=0;r<64;r++)e[t.charAt(r)]=r;return e},nK={i2c:tK,c2i:rK(tK),i2cUrl:eK,c2iUrl:rK(eK)},iK=ri,oK=r,aK=G,sK=w,cK=u,uK=i,lK=pi,hK=MI,fK=nK.c2i,dK=/[^\d+/a-z]/i,pK=/[\t\n\f\r ]+/g,gK=/[=]{1,2}$/,vK=aK("atob"),yK=String.fromCharCode,mK=sK("".charAt),bK=sK("".replace),xK=sK(dK.exec),wK=!!vK&&!uK((function(){return"hi"!==vK("aGk=")})),AK=wK&&uK((function(){return""!==vK(" ")})),_K=wK&&!uK((function(){vK("a")})),kK=wK&&!uK((function(){vK()})),EK=wK&&1!==vK.length;iK({global:!0,bind:!0,enumerable:!0,forced:!wK||AK||_K||kK||EK},{atob:function(t){if(hK(arguments.length,1),wK&&!AK&&!_K)return cK(vK,oK,t);var e,r,n,i=bK(lK(t),pK,""),o="",a=0,s=0;if(i.length%4==0&&(i=bK(i,gK,"")),(e=i.length)%4==1||xK(dK,i))throw new(aK("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(;a<e;)r=mK(i,a++),n=s%4?64*n+fK[r]:fK[r],s++%4&&(o+=yK(255&n>>(-2*s&6)));return o}});var SK=ri,MK=r,TK=G,PK=w,OK=u,IK=i,CK=pi,RK=MI,jK=nK.i2c,LK=TK("btoa"),DK=PK("".charAt),zK=PK("".charCodeAt),NK=!!LK&&!IK((function(){return"aGk="!==LK("hi")})),FK=NK&&!IK((function(){LK()})),BK=NK&&IK((function(){return"bnVsbA=="!==LK(null)})),UK=NK&&1!==LK.length;SK({global:!0,bind:!0,enumerable:!0,forced:!NK||FK||BK||UK},{btoa:function(t){if(RK(arguments.length,1),NK)return OK(LK,MK,CK(t));for(var e,r,n=CK(t),i="",o=0,a=jK;DK(n,o)||(a="=",o%1);){if((r=zK(n,o+=3/4))>255)throw new(TK("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");i+=DK(a,63&(e=e<<8|r)>>8-o%1*8)}return i}});var YK={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},HK=ve("span").classList,GK=HK&&HK.constructor&&HK.constructor.prototype,WK=GK===Object.prototype?void 0:GK,$K=r,qK=YK,XK=WK,VK=Uf,KK=qe,QK=function(t){if(t&&t.forEach!==VK)try{KK(t,"forEach",VK)}catch(e){t.forEach=VK}};for(var JK in qK)qK[JK]&&QK($K[JK]&&$K[JK].prototype);QK(XK);var ZK=r,tQ=YK,eQ=WK,rQ=dp,nQ=qe,iQ=po,oQ=ee("iterator"),aQ=rQ.values,sQ=function(t,e){if(t){if(t[oQ]!==aQ)try{nQ(t,oQ,aQ)}catch(e){t[oQ]=aQ}if(iQ(t,e,!0),tQ[e])for(var r in rQ)if(t[r]!==rQ[r])try{nQ(t,r,rQ[r])}catch(e){t[r]=rQ[r]}}};for(var cQ in tQ)sQ(ZK[cQ]&&ZK[cQ].prototype,cQ);sQ(eQ,"DOMTokenList");var uQ={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}},lQ=ri,hQ=G,fQ=Qb,dQ=i,pQ=Bi,gQ=v,vQ=Te.f,yQ=Qr,mQ=Ki,bQ=Ut,xQ=cy,wQ=Re,AQ=Fu,_Q=Vc,kQ=uQ,EQ=iu,SQ=Pr,MQ=o,TQ="DOMException",PQ="DATA_CLONE_ERR",OQ=hQ("Error"),IQ=hQ(TQ)||function(){try{(new(hQ("MessageChannel")||fQ("worker_threads").MessageChannel)).port1.postMessage(new WeakMap)}catch(t){if(t.name===PQ&&25===t.code)return t.constructor}}(),CQ=IQ&&IQ.prototype,RQ=OQ.prototype,jQ=SQ.set,LQ=SQ.getterFor(TQ),DQ="stack"in new OQ(TQ),zQ=function(t){return bQ(kQ,t)&&kQ[t].m?kQ[t].c:0},NQ=function(){xQ(this,FQ);var t=arguments.length,e=_Q(t<1?void 0:arguments[0]),r=_Q(t<2?void 0:arguments[1],"Error"),n=zQ(r);if(jQ(this,{type:TQ,name:r,message:e,code:n}),MQ||(this.name=r,this.message=e,this.code=n),DQ){var i=new OQ(e);i.name=TQ,vQ(this,"stack",gQ(1,EQ(i.stack,1)))}},FQ=NQ.prototype=pQ(RQ),BQ=function(t){return{enumerable:!0,configurable:!0,get:t}},UQ=function(t){return BQ((function(){return LQ(this)[t]}))};MQ&&(mQ(FQ,"code",UQ("code")),mQ(FQ,"message",UQ("message")),mQ(FQ,"name",UQ("name"))),vQ(FQ,"constructor",gQ(1,NQ));var YQ=dQ((function(){return!(new IQ instanceof OQ)})),HQ=YQ||dQ((function(){return RQ.toString!==AQ||"2: 1"!==String(new IQ(1,2))})),GQ=YQ||dQ((function(){return 25!==new IQ(1,"DataCloneError").code}));YQ||25!==IQ[PQ]||CQ[PQ];lQ({global:!0,constructor:!0,forced:YQ},{DOMException:YQ?NQ:IQ});var WQ=hQ(TQ),$Q=WQ.prototype;for(var qQ in HQ&&IQ===WQ&&yQ($Q,"toString",AQ),GQ&&MQ&&IQ===WQ&&mQ($Q,"code",BQ((function(){return zQ(wQ(this).name)}))),kQ)if(bQ(kQ,qQ)){var XQ=kQ[qQ],VQ=XQ.s,KQ=gQ(6,XQ.c);bQ(WQ,VQ)||vQ(WQ,VQ,KQ),bQ($Q,VQ)||vQ($Q,VQ,KQ)}var QQ=ri,JQ=r,ZQ=G,tJ=v,eJ=Te.f,rJ=Ut,nJ=cy,iJ=qc,oJ=Vc,aJ=uQ,sJ=iu,cJ=o,uJ="DOMException",lJ=ZQ("Error"),hJ=ZQ(uJ),fJ=function(){nJ(this,dJ);var t=arguments.length,e=oJ(t<1?void 0:arguments[0]),r=oJ(t<2?void 0:arguments[1],"Error"),n=new hJ(e,r),i=new lJ(e);return i.name=uJ,eJ(n,"stack",tJ(1,sJ(i.stack,1))),iJ(n,this,fJ),n},dJ=fJ.prototype=hJ.prototype,pJ="stack"in new lJ(uJ),gJ="stack"in new hJ(1,2),vJ=hJ&&cJ&&Object.getOwnPropertyDescriptor(JQ,uJ),yJ=!(!vJ||vJ.writable&&vJ.configurable),mJ=pJ&&!yJ&&!gJ;QQ({global:!0,constructor:!0,forced:mJ},{DOMException:mJ?fJ:hJ});var bJ=ZQ(uJ),xJ=bJ.prototype;if(xJ.constructor!==bJ)for(var wJ in eJ(xJ,"constructor",tJ(1,bJ)),aJ)if(rJ(aJ,wJ)){var AJ=aJ[wJ],_J=AJ.s;rJ(bJ,_J)||eJ(bJ,_J,tJ(6,AJ.c))}var kJ="DOMException";po(G(kJ),kJ);var EJ=eC.clear;ri({global:!0,bind:!0,enumerable:!0,forced:r.clearImmediate!==EJ},{clearImmediate:EJ});var SJ=r,MJ=Ms,TJ=F,PJ=eg,OJ=X,IJ=Yi,CJ=MI,RJ=SJ.Function,jJ=/MSIE .\./.test(OJ)||"BUN"===PJ&&function(){var t=SJ.Bun.version.split(".");return t.length<3||"0"===t[0]&&(t[1]<3||"3"===t[1]&&"0"===t[2])}(),LJ=function(t,e){var r=e?2:1;return jJ?function(n,i){var o=CJ(arguments.length,1)>r,a=TJ(n)?n:RJ(n),s=o?IJ(arguments,r):[],c=o?function(){MJ(a,this,s)}:a;return e?t(c,i):t(c)}:t},DJ=ri,zJ=r,NJ=eC.set,FJ=LJ,BJ=zJ.setImmediate?FJ(NJ,!1):NJ;DJ({global:!0,bind:!0,enumerable:!0,forced:zJ.setImmediate!==BJ},{setImmediate:BJ});var UJ=r,YJ=IC,HJ=yt,GJ=MI,WJ=o;ri({global:!0,enumerable:!0,dontCallGetSet:!0,forced:i((function(){return WJ&&1!==Object.getOwnPropertyDescriptor(UJ,"queueMicrotask").value.length}))},{queueMicrotask:function(t){GJ(arguments.length,1),YJ(HJ(t))}});var $J=ri,qJ=r,XJ=Ki,VJ=o,KJ=TypeError,QJ=Object.defineProperty,JJ=qJ.self!==qJ;try{if(VJ){var ZJ=Object.getOwnPropertyDescriptor(qJ,"self");!JJ&&ZJ&&ZJ.get&&ZJ.enumerable||XJ(qJ,"self",{get:function(){return qJ},set:function(t){if(this!==qJ)throw new KJ("Illegal invocation");QJ(qJ,"self",{value:t,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else $J({global:!0,simple:!0,forced:JJ},{self:qJ})}catch(t){}var tZ,eZ=ri,rZ=r,nZ=G,iZ=w,oZ=i,aZ=$t,sZ=F,cZ=Do,uZ=I,lZ=U,hZ=ht,fZ=Rl,dZ=Re,pZ=hi,gZ=Ut,vZ=bh,yZ=qe,mZ=dn,bZ=MI,xZ=lD,wZ=zE,AZ=mN,_Z=ON,kZ=lx,EZ=au,SZ=rx,MZ=rZ.Object,TZ=rZ.Array,PZ=rZ.Date,OZ=rZ.Error,IZ=rZ.TypeError,CZ=rZ.PerformanceMark,RZ=nZ("DOMException"),jZ=wZ.Map,LZ=wZ.has,DZ=wZ.get,zZ=wZ.set,NZ=AZ.Set,FZ=AZ.add,BZ=AZ.has,UZ=nZ("Object","keys"),YZ=iZ([].push),HZ=iZ((!0).valueOf),GZ=iZ(1..valueOf),WZ=iZ("".valueOf),$Z=iZ(PZ.prototype.getTime),qZ=aZ("structuredClone"),XZ="DataCloneError",VZ="Transferring",KZ=function(t){return!oZ((function(){var e=new rZ.Set([7]),r=t(e),n=t(MZ(7));return r===e||!r.has(7)||!lZ(n)||7!=+n}))&&t},QZ=function(t,e){return!oZ((function(){var r=new e,n=t({a:r,b:r});return!(n&&n.a===n.b&&n.a instanceof e&&n.a.stack===r.stack)}))},JZ=rZ.structuredClone,ZZ=!QZ(JZ,OZ)||!QZ(JZ,RZ)||(tZ=JZ,!!oZ((function(){var t=tZ(new rZ.AggregateError([1],qZ,{cause:3}));return"AggregateError"!==t.name||1!==t.errors[0]||t.message!==qZ||3!==t.cause}))),t0=!JZ&&KZ((function(t){return new CZ(qZ,{detail:t}).detail})),e0=KZ(JZ)||t0,r0=function(t){throw new RZ("Uncloneable type: "+t,XZ)},n0=function(t,e){throw new RZ((e||"Cloning")+" of "+t+" cannot be properly polyfilled in this engine",XZ)},i0=function(t,e){return e0||n0(e),e0(t)},o0=function(t,e,r){if(LZ(e,t))return DZ(e,t);var n,i,o,a,s,c;if("SharedArrayBuffer"===(r||pZ(t)))n=e0?e0(t):t;else{var u=rZ.DataView;u||sZ(t.slice)||n0("ArrayBuffer");try{if(sZ(t.slice)&&!t.resizable)n=t.slice(0);else{i=t.byteLength,o="maxByteLength"in t?{maxByteLength:t.maxByteLength}:void 0,n=new ArrayBuffer(i,o),a=new u(t),s=new u(n);for(c=0;c<i;c++)s.setUint8(c,a.getUint8(c))}}catch(t){throw new RZ("ArrayBuffer is detached",XZ)}}return zZ(e,t,n),n},a0=function(t,e){if(hZ(t)&&r0("Symbol"),!lZ(t))return t;if(e){if(LZ(e,t))return DZ(e,t)}else e=new jZ;var r,n,i,o,a,s,c,u,l=pZ(t);switch(l){case"Array":i=TZ(mZ(t));break;case"Object":i={};break;case"Map":i=new jZ;break;case"Set":i=new NZ;break;case"RegExp":i=new RegExp(t.source,xZ(t));break;case"Error":switch(n=t.name){case"AggregateError":i=new(nZ(n))([]);break;case"EvalError":case"RangeError":case"ReferenceError":case"SuppressedError":case"SyntaxError":case"TypeError":case"URIError":i=new(nZ(n));break;case"CompileError":case"LinkError":case"RuntimeError":i=new(nZ("WebAssembly",n));break;default:i=new OZ}break;case"DOMException":i=new RZ(t.message,t.name);break;case"ArrayBuffer":case"SharedArrayBuffer":i=o0(t,e,l);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":s="DataView"===l?t.byteLength:t.length,i=function(t,e,r,n,i){var o=rZ[e];return lZ(o)||n0(e),new o(o0(t.buffer,i),r,n)}(t,l,t.byteOffset,s,e);break;case"DOMQuad":try{i=new DOMQuad(a0(t.p1,e),a0(t.p2,e),a0(t.p3,e),a0(t.p4,e))}catch(e){i=i0(t,l)}break;case"File":if(e0)try{i=e0(t),pZ(i)!==l&&(i=void 0)}catch(t){}if(!i)try{i=new File([t],t.name,t)}catch(t){}i||n0(l);break;case"FileList":if(o=function(){var t;try{t=new rZ.DataTransfer}catch(e){try{t=new rZ.ClipboardEvent("").clipboardData}catch(t){}}return t&&t.items&&t.files?t:null}()){for(a=0,s=mZ(t);a<s;a++)o.items.add(a0(t[a],e));i=o.files}else i=i0(t,l);break;case"ImageData":try{i=new ImageData(a0(t.data,e),t.width,t.height,{colorSpace:t.colorSpace})}catch(e){i=i0(t,l)}break;default:if(e0)i=e0(t);else switch(l){case"BigInt":i=MZ(t.valueOf());break;case"Boolean":i=MZ(HZ(t));break;case"Number":i=MZ(GZ(t));break;case"String":i=MZ(WZ(t));break;case"Date":i=new PZ($Z(t));break;case"Blob":try{i=t.slice(0,t.size,t.type)}catch(t){n0(l)}break;case"DOMPoint":case"DOMPointReadOnly":r=rZ[l];try{i=r.fromPoint?r.fromPoint(t):new r(t.x,t.y,t.z,t.w)}catch(t){n0(l)}break;case"DOMRect":case"DOMRectReadOnly":r=rZ[l];try{i=r.fromRect?r.fromRect(t):new r(t.x,t.y,t.width,t.height)}catch(t){n0(l)}break;case"DOMMatrix":case"DOMMatrixReadOnly":r=rZ[l];try{i=r.fromMatrix?r.fromMatrix(t):new r(t)}catch(t){n0(l)}break;case"AudioData":case"VideoFrame":sZ(t.clone)||n0(l);try{i=t.clone()}catch(t){r0(l)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":n0(l);default:r0(l)}}switch(zZ(e,t,i),l){case"Array":case"Object":for(c=UZ(t),a=0,s=mZ(c);a<s;a++)u=c[a],vZ(i,u,a0(t[u],e));break;case"Map":t.forEach((function(t,r){zZ(i,a0(r,e),a0(t,e))}));break;case"Set":t.forEach((function(t){FZ(i,a0(t,e))}));break;case"Error":yZ(i,"message",a0(t.message,e)),gZ(t,"cause")&&yZ(i,"cause",a0(t.cause,e)),"AggregateError"===n?i.errors=a0(t.errors,e):"SuppressedError"===n&&(i.error=a0(t.error,e),i.suppressed=a0(t.suppressed,e));case"DOMException":EZ&&yZ(i,"stack",a0(t.stack,e))}return i};eZ({global:!0,enumerable:!0,sham:!SZ,forced:ZZ},{structuredClone:function(t){var e,r,n=bZ(arguments.length,1)>1&&!uZ(arguments[1])?dZ(arguments[1]):void 0,i=n?n.transfer:void 0;void 0!==i&&(r=function(t,e){if(!lZ(t))throw new IZ("Transfer option cannot be converted to a sequence");var r=[];fZ(t,(function(t){YZ(r,dZ(t))}));for(var n,i,o,a,s,c=0,u=mZ(r),l=new NZ;c<u;){if(n=r[c++],"ArrayBuffer"===(i=pZ(n))?BZ(l,n):LZ(e,n))throw new RZ("Duplicate transferable",XZ);if("ArrayBuffer"!==i){if(SZ)a=JZ(n,{transfer:[n]});else switch(i){case"ImageBitmap":o=rZ.OffscreenCanvas,cZ(o)||n0(i,VZ);try{(s=new o(n.width,n.height)).getContext("bitmaprenderer").transferFromImageBitmap(n),a=s.transferToImageBitmap()}catch(t){}break;case"AudioData":case"VideoFrame":sZ(n.clone)&&sZ(n.close)||n0(i,VZ);try{a=n.clone(),n.close()}catch(t){}break;case"MediaSourceHandle":case"MessagePort":case"MIDIAccess":case"OffscreenCanvas":case"ReadableStream":case"RTCDataChannel":case"TransformStream":case"WebTransportReceiveStream":case"WebTransportSendStream":case"WritableStream":n0(i,VZ)}if(void 0===a)throw new RZ("This object cannot be transferred: "+i,XZ);zZ(e,n,a)}else FZ(l,n)}return l}(i,e=new jZ));var o=a0(t,e);return r&&function(t){_Z(t,(function(t){SZ?e0(t,{transfer:[t]}):sZ(t.transfer)?t.transfer():kZ?kZ(t):n0("ArrayBuffer",VZ)}))}(r),o}});var s0=ri,c0=r,u0=LJ(c0.setInterval,!0);s0({global:!0,bind:!0,forced:c0.setInterval!==u0},{setInterval:u0});var l0=ri,h0=r,f0=LJ(h0.setTimeout,!0);l0({global:!0,bind:!0,forced:h0.setTimeout!==f0},{setTimeout:f0});var d0=i,p0=o,g0=ee("iterator"),v0=!d0((function(){var t=new URL("b?a=1&b=2&c=3","https://a"),e=t.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return t.pathname="c%20d",e.forEach((function(t,r){e.delete("b"),n+=r+t})),r.delete("a",2),r.delete("b",void 0),!e.size&&!p0||!e.sort||"https://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[g0]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("https://тест").host||"#%D0%B1"!==new URL("https://a#б").hash||"a1c3"!==n||"x"!==new URL("https://x",void 0).host})),y0=w,m0=2147483647,b0=/[^\0-\u007E]/,x0=/[.\u3002\uFF0E\uFF61]/g,w0="Overflow: input needs wider integers to process",A0=RangeError,_0=y0(x0.exec),k0=Math.floor,E0=String.fromCharCode,S0=y0("".charCodeAt),M0=y0([].join),T0=y0([].push),P0=y0("".replace),O0=y0("".split),I0=y0("".toLowerCase),C0=function(t){return t+22+75*(t<26)},R0=function(t,e,r){var n=0;for(t=r?k0(t/700):t>>1,t+=k0(t/e);t>455;)t=k0(t/35),n+=36;return k0(n+36*t/(t+38))},j0=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var i=S0(t,r++);if(i>=55296&&i<=56319&&r<n){var o=S0(t,r++);56320==(64512&o)?T0(e,((1023&i)<<10)+(1023&o)+65536):(T0(e,i),r--)}else T0(e,i)}return e}(t);var r,n,i=t.length,o=128,a=0,s=72;for(r=0;r<t.length;r++)(n=t[r])<128&&T0(e,E0(n));var c=e.length,u=c;for(c&&T0(e,"-");u<i;){var l=m0;for(r=0;r<t.length;r++)(n=t[r])>=o&&n<l&&(l=n);var h=u+1;if(l-o>k0((m0-a)/h))throw new A0(w0);for(a+=(l-o)*h,o=l,r=0;r<t.length;r++){if((n=t[r])<o&&++a>m0)throw new A0(w0);if(n===o){for(var f=a,d=36;;){var p=d<=s?1:d>=s+26?26:d-s;if(f<p)break;var g=f-p,v=36-p;T0(e,E0(C0(p+g%v))),f=k0(g/v),d+=36}T0(e,E0(C0(f))),s=R0(a,h,u===c),a=0,u++}}a++,o++}return M0(e,"")},L0=ri,D0=r,z0=oC,N0=G,F0=u,B0=w,U0=o,Y0=v0,H0=Qr,G0=Ki,W0=oy,$0=po,q0=jd,X0=Pr,V0=cy,K0=F,Q0=Ut,J0=wo,Z0=hi,t1=Re,e1=U,r1=pi,n1=Bi,i1=v,o1=gl,a1=cl,s1=ep,c1=MI,u1=Mg,l1=ee("iterator"),h1="URLSearchParams",f1=h1+"Iterator",d1=X0.set,p1=X0.getterFor(h1),g1=X0.getterFor(f1),v1=z0("fetch"),y1=z0("Request"),m1=z0("Headers"),b1=y1&&y1.prototype,x1=m1&&m1.prototype,w1=D0.TypeError,A1=D0.encodeURIComponent,_1=String.fromCharCode,k1=N0("String","fromCodePoint"),E1=parseInt,S1=B0("".charAt),M1=B0([].join),T1=B0([].push),P1=B0("".replace),O1=B0([].shift),I1=B0([].splice),C1=B0("".split),R1=B0("".slice),j1=B0(/./.exec),L1=/\+/g,D1=/^[0-9a-f]+$/i,z1=function(t,e){var r=R1(t,e,e+2);return j1(D1,r)?E1(r,16):NaN},N1=function(t){for(var e=0,r=128;r>0&&t&r;r>>=1)e++;return e},F1=function(t){var e=null;switch(t.length){case 1:e=t[0];break;case 2:e=(31&t[0])<<6|63&t[1];break;case 3:e=(15&t[0])<<12|(63&t[1])<<6|63&t[2];break;case 4:e=(7&t[0])<<18|(63&t[1])<<12|(63&t[2])<<6|63&t[3]}return e>1114111?null:e},B1=function(t){for(var e=(t=P1(t,L1," ")).length,r="",n=0;n<e;){var i=S1(t,n);if("%"===i){if("%"===S1(t,n+1)||n+3>e){r+="%",n++;continue}var o=z1(t,n+1);if(o!=o){r+=i,n++;continue}n+=2;var a=N1(o);if(0===a)i=_1(o);else{if(1===a||a>4){r+="�",n++;continue}for(var s=[o],c=1;c<a&&!(++n+3>e||"%"!==S1(t,n));){var u=z1(t,n+1);if(u!=u){n+=3;break}if(u>191||u<128)break;T1(s,u),n+=2,c++}if(s.length!==a){r+="�";continue}var l=F1(s);null===l?r+="�":i=k1(l)}}r+=i,n++}return r},U1=/[!'()~]|%20/g,Y1={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},H1=function(t){return Y1[t]},G1=function(t){return P1(A1(t),U1,H1)},W1=q0((function(t,e){d1(this,{type:f1,target:p1(t).entries,index:0,kind:e})}),h1,(function(){var t=g1(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,s1(void 0,!0);var n=e[r];switch(t.kind){case"keys":return s1(n.key,!1);case"values":return s1(n.value,!1)}return s1([n.key,n.value],!1)}),!0),$1=function(t){this.entries=[],this.url=null,void 0!==t&&(e1(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===S1(t,0)?R1(t,1):t:r1(t)))};$1.prototype={type:h1,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,i,o,a,s,c=this.entries,u=a1(t);if(u)for(r=(e=o1(t,u)).next;!(n=F0(r,e)).done;){if(o=(i=o1(t1(n.value))).next,(a=F0(o,i)).done||(s=F0(o,i)).done||!F0(o,i).done)throw new w1("Expected sequence with length 2");T1(c,{key:r1(a.value),value:r1(s.value)})}else for(var l in t)Q0(t,l)&&T1(c,{key:l,value:r1(t[l])})},parseQuery:function(t){if(t)for(var e,r,n=this.entries,i=C1(t,"&"),o=0;o<i.length;)(e=i[o++]).length&&(r=C1(e,"="),T1(n,{key:B1(O1(r)),value:B1(M1(r,"="))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],T1(r,G1(t.key)+"="+G1(t.value));return M1(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var q1=function(){V0(this,X1);var t=d1(this,new $1(arguments.length>0?arguments[0]:void 0));U0||(this.size=t.entries.length)},X1=q1.prototype;if(W0(X1,{append:function(t,e){var r=p1(this);c1(arguments.length,2),T1(r.entries,{key:r1(t),value:r1(e)}),U0||this.length++,r.updateURL()},delete:function(t){for(var e=p1(this),r=c1(arguments.length,1),n=e.entries,i=r1(t),o=r<2?void 0:arguments[1],a=void 0===o?o:r1(o),s=0;s<n.length;){var c=n[s];if(c.key!==i||void 0!==a&&c.value!==a)s++;else if(I1(n,s,1),void 0!==a)break}U0||(this.size=n.length),e.updateURL()},get:function(t){var e=p1(this).entries;c1(arguments.length,1);for(var r=r1(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=p1(this).entries;c1(arguments.length,1);for(var r=r1(t),n=[],i=0;i<e.length;i++)e[i].key===r&&T1(n,e[i].value);return n},has:function(t){for(var e=p1(this).entries,r=c1(arguments.length,1),n=r1(t),i=r<2?void 0:arguments[1],o=void 0===i?i:r1(i),a=0;a<e.length;){var s=e[a++];if(s.key===n&&(void 0===o||s.value===o))return!0}return!1},set:function(t,e){var r=p1(this);c1(arguments.length,1);for(var n,i=r.entries,o=!1,a=r1(t),s=r1(e),c=0;c<i.length;c++)(n=i[c]).key===a&&(o?I1(i,c--,1):(o=!0,n.value=s));o||T1(i,{key:a,value:s}),U0||(this.size=i.length),r.updateURL()},sort:function(){var t=p1(this);u1(t.entries,(function(t,e){return t.key>e.key?1:-1})),t.updateURL()},forEach:function(t){for(var e,r=p1(this).entries,n=J0(t,arguments.length>1?arguments[1]:void 0),i=0;i<r.length;)n((e=r[i++]).value,e.key,this)},keys:function(){return new W1(this,"keys")},values:function(){return new W1(this,"values")},entries:function(){return new W1(this,"entries")}},{enumerable:!0}),H0(X1,l1,X1.entries,{name:"entries"}),H0(X1,"toString",(function(){return p1(this).serialize()}),{enumerable:!0}),U0&&G0(X1,"size",{get:function(){return p1(this).entries.length},configurable:!0,enumerable:!0}),$0(q1,h1),L0({global:!0,constructor:!0,forced:!Y0},{URLSearchParams:q1}),!Y0&&K0(m1)){var V1=B0(x1.has),K1=B0(x1.set),Q1=function(t){if(e1(t)){var e,r=t.body;if(Z0(r)===h1)return e=t.headers?new m1(t.headers):new m1,V1(e,"content-type")||K1(e,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),n1(t,{body:i1(0,r1(r)),headers:i1(0,e)})}return t};if(K0(v1)&&L0({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return v1(t,arguments.length>1?Q1(arguments[1]):{})}}),K0(y1)){var J1=function(t){return V0(this,b1),new y1(t,arguments.length>1?Q1(arguments[1]):{})};b1.constructor=J1,J1.prototype=b1,L0({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:J1})}}var Z1,t2=ri,e2=o,r2=v0,n2=r,i2=wo,o2=w,a2=Qr,s2=Ki,c2=cy,u2=Ut,l2=nP,h2=rd,f2=Yi,d2=lB.codeAt,p2=function(t){var e,r,n=[],i=O0(P0(I0(t),x0,"."),".");for(e=0;e<i.length;e++)r=i[e],T0(n,_0(b0,r)?"xn--"+j0(r):r);return M0(n,".")},g2=pi,v2=po,y2=MI,m2={URLSearchParams:q1,getState:p1},b2=Pr,x2=b2.set,w2=b2.getterFor("URL"),A2=m2.URLSearchParams,_2=m2.getState,k2=n2.URL,E2=n2.TypeError,S2=n2.parseInt,M2=Math.floor,T2=Math.pow,P2=o2("".charAt),O2=o2(/./.exec),I2=o2([].join),C2=o2(1..toString),R2=o2([].pop),j2=o2([].push),L2=o2("".replace),D2=o2([].shift),z2=o2("".split),N2=o2("".slice),F2=o2("".toLowerCase),B2=o2([].unshift),U2="Invalid scheme",Y2="Invalid host",H2="Invalid port",G2=/[a-z]/i,W2=/[\d+-.a-z]/i,$2=/\d/,q2=/^0x/i,X2=/^[0-7]+$/,V2=/^\d+$/,K2=/^[\da-f]+$/i,Q2=/[\0\t\n\r #%/:<>?@[\\\]^|]/,J2=/[\0\t\n\r #/:<>?@[\\\]^|]/,Z2=/^[\u0000-\u0020]+/,t3=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,e3=/[\t\n\r]/g,r3=function(t){var e,r,n,i;if("number"==typeof t){for(e=[],r=0;r<4;r++)B2(e,t%256),t=M2(t/256);return I2(e,".")}if("object"==typeof t){for(e="",n=function(t){for(var e=null,r=1,n=null,i=0,o=0;o<8;o++)0!==t[o]?(i>r&&(e=n,r=i),n=null,i=0):(null===n&&(n=o),++i);return i>r?n:e}(t),r=0;r<8;r++)i&&0===t[r]||(i&&(i=!1),n===r?(e+=r?":":"::",i=!0):(e+=C2(t[r],16),r<7&&(e+=":")));return"["+e+"]"}return t},n3={},i3=l2({},n3,{" ":1,'"':1,"<":1,">":1,"`":1}),o3=l2({},i3,{"#":1,"?":1,"{":1,"}":1}),a3=l2({},o3,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),s3=function(t,e){var r=d2(t,0);return r>32&&r<127&&!u2(e,t)?t:encodeURIComponent(t)},c3={ftp:21,file:null,http:80,https:443,ws:80,wss:443},u3=function(t,e){var r;return 2===t.length&&O2(G2,P2(t,0))&&(":"===(r=P2(t,1))||!e&&"|"===r)},l3=function(t){var e;return t.length>1&&u3(N2(t,0,2))&&(2===t.length||"/"===(e=P2(t,2))||"\\"===e||"?"===e||"#"===e)},h3=function(t){return"."===t||"%2e"===F2(t)},f3={},d3={},p3={},g3={},v3={},y3={},m3={},b3={},x3={},w3={},A3={},_3={},k3={},E3={},S3={},M3={},T3={},P3={},O3={},I3={},C3={},R3=function(t,e,r){var n,i,o,a=g2(t);if(e){if(i=this.parse(a))throw new E2(i);this.searchParams=null}else{if(void 0!==r&&(n=new R3(r,!0)),i=this.parse(a,null,n))throw new E2(i);(o=_2(new A2)).bindURL(this),this.searchParams=o}};R3.prototype={type:"URL",parse:function(t,e,r){var n,i,o,a,s,c=this,u=e||f3,l=0,h="",f=!1,d=!1,p=!1;for(t=g2(t),e||(c.scheme="",c.username="",c.password="",c.host=null,c.port=null,c.path=[],c.query=null,c.fragment=null,c.cannotBeABaseURL=!1,t=L2(t,Z2,""),t=L2(t,t3,"$1")),t=L2(t,e3,""),n=h2(t);l<=n.length;){switch(i=n[l],u){case f3:if(!i||!O2(G2,i)){if(e)return U2;u=p3;continue}h+=F2(i),u=d3;break;case d3:if(i&&(O2(W2,i)||"+"===i||"-"===i||"."===i))h+=F2(i);else{if(":"!==i){if(e)return U2;h="",u=p3,l=0;continue}if(e&&(c.isSpecial()!==u2(c3,h)||"file"===h&&(c.includesCredentials()||null!==c.port)||"file"===c.scheme&&!c.host))return;if(c.scheme=h,e)return void(c.isSpecial()&&c3[c.scheme]===c.port&&(c.port=null));h="","file"===c.scheme?u=E3:c.isSpecial()&&r&&r.scheme===c.scheme?u=g3:c.isSpecial()?u=b3:"/"===n[l+1]?(u=v3,l++):(c.cannotBeABaseURL=!0,j2(c.path,""),u=O3)}break;case p3:if(!r||r.cannotBeABaseURL&&"#"!==i)return U2;if(r.cannotBeABaseURL&&"#"===i){c.scheme=r.scheme,c.path=f2(r.path),c.query=r.query,c.fragment="",c.cannotBeABaseURL=!0,u=C3;break}u="file"===r.scheme?E3:y3;continue;case g3:if("/"!==i||"/"!==n[l+1]){u=y3;continue}u=x3,l++;break;case v3:if("/"===i){u=w3;break}u=P3;continue;case y3:if(c.scheme=r.scheme,i===Z1)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=f2(r.path),c.query=r.query;else if("/"===i||"\\"===i&&c.isSpecial())u=m3;else if("?"===i)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=f2(r.path),c.query="",u=I3;else{if("#"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=f2(r.path),c.path.length--,u=P3;continue}c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=f2(r.path),c.query=r.query,c.fragment="",u=C3}break;case m3:if(!c.isSpecial()||"/"!==i&&"\\"!==i){if("/"!==i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,u=P3;continue}u=w3}else u=x3;break;case b3:if(u=x3,"/"!==i||"/"!==P2(h,l+1))continue;l++;break;case x3:if("/"!==i&&"\\"!==i){u=w3;continue}break;case w3:if("@"===i){f&&(h="%40"+h),f=!0,o=h2(h);for(var g=0;g<o.length;g++){var v=o[g];if(":"!==v||p){var y=s3(v,a3);p?c.password+=y:c.username+=y}else p=!0}h=""}else if(i===Z1||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(f&&""===h)return"Invalid authority";l-=h2(h).length+1,h="",u=A3}else h+=i;break;case A3:case _3:if(e&&"file"===c.scheme){u=M3;continue}if(":"!==i||d){if(i===Z1||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()){if(c.isSpecial()&&""===h)return Y2;if(e&&""===h&&(c.includesCredentials()||null!==c.port))return;if(a=c.parseHost(h))return a;if(h="",u=T3,e)return;continue}"["===i?d=!0:"]"===i&&(d=!1),h+=i}else{if(""===h)return Y2;if(a=c.parseHost(h))return a;if(h="",u=k3,e===_3)return}break;case k3:if(!O2($2,i)){if(i===Z1||"/"===i||"?"===i||"#"===i||"\\"===i&&c.isSpecial()||e){if(""!==h){var m=S2(h,10);if(m>65535)return H2;c.port=c.isSpecial()&&m===c3[c.scheme]?null:m,h=""}if(e)return;u=T3;continue}return H2}h+=i;break;case E3:if(c.scheme="file","/"===i||"\\"===i)u=S3;else{if(!r||"file"!==r.scheme){u=P3;continue}switch(i){case Z1:c.host=r.host,c.path=f2(r.path),c.query=r.query;break;case"?":c.host=r.host,c.path=f2(r.path),c.query="",u=I3;break;case"#":c.host=r.host,c.path=f2(r.path),c.query=r.query,c.fragment="",u=C3;break;default:l3(I2(f2(n,l),""))||(c.host=r.host,c.path=f2(r.path),c.shortenPath()),u=P3;continue}}break;case S3:if("/"===i||"\\"===i){u=M3;break}r&&"file"===r.scheme&&!l3(I2(f2(n,l),""))&&(u3(r.path[0],!0)?j2(c.path,r.path[0]):c.host=r.host),u=P3;continue;case M3:if(i===Z1||"/"===i||"\\"===i||"?"===i||"#"===i){if(!e&&u3(h))u=P3;else if(""===h){if(c.host="",e)return;u=T3}else{if(a=c.parseHost(h))return a;if("localhost"===c.host&&(c.host=""),e)return;h="",u=T3}continue}h+=i;break;case T3:if(c.isSpecial()){if(u=P3,"/"!==i&&"\\"!==i)continue}else if(e||"?"!==i)if(e||"#"!==i){if(i!==Z1&&(u=P3,"/"!==i))continue}else c.fragment="",u=C3;else c.query="",u=I3;break;case P3:if(i===Z1||"/"===i||"\\"===i&&c.isSpecial()||!e&&("?"===i||"#"===i)){if(".."===(s=F2(s=h))||"%2e."===s||".%2e"===s||"%2e%2e"===s?(c.shortenPath(),"/"===i||"\\"===i&&c.isSpecial()||j2(c.path,"")):h3(h)?"/"===i||"\\"===i&&c.isSpecial()||j2(c.path,""):("file"===c.scheme&&!c.path.length&&u3(h)&&(c.host&&(c.host=""),h=P2(h,0)+":"),j2(c.path,h)),h="","file"===c.scheme&&(i===Z1||"?"===i||"#"===i))for(;c.path.length>1&&""===c.path[0];)D2(c.path);"?"===i?(c.query="",u=I3):"#"===i&&(c.fragment="",u=C3)}else h+=s3(i,o3);break;case O3:"?"===i?(c.query="",u=I3):"#"===i?(c.fragment="",u=C3):i!==Z1&&(c.path[0]+=s3(i,n3));break;case I3:e||"#"!==i?i!==Z1&&("'"===i&&c.isSpecial()?c.query+="%27":c.query+="#"===i?"%23":s3(i,n3)):(c.fragment="",u=C3);break;case C3:i!==Z1&&(c.fragment+=s3(i,i3))}l++}},parseHost:function(t){var e,r,n;if("["===P2(t,0)){if("]"!==P2(t,t.length-1))return Y2;if(e=function(t){var e,r,n,i,o,a,s,c=[0,0,0,0,0,0,0,0],u=0,l=null,h=0,f=function(){return P2(t,h)};if(":"===f()){if(":"!==P2(t,1))return;h+=2,l=++u}for(;f();){if(8===u)return;if(":"!==f()){for(e=r=0;r<4&&O2(K2,f());)e=16*e+S2(f(),16),h++,r++;if("."===f()){if(0===r)return;if(h-=r,u>6)return;for(n=0;f();){if(i=null,n>0){if(!("."===f()&&n<4))return;h++}if(!O2($2,f()))return;for(;O2($2,f());){if(o=S2(f(),10),null===i)i=o;else{if(0===i)return;i=10*i+o}if(i>255)return;h++}c[u]=256*c[u]+i,2!=++n&&4!==n||u++}if(4!==n)return;break}if(":"===f()){if(h++,!f())return}else if(f())return;c[u++]=e}else{if(null!==l)return;h++,l=++u}}if(null!==l)for(a=u-l,u=7;0!==u&&a>0;)s=c[u],c[u--]=c[l+a-1],c[l+--a]=s;else if(8!==u)return;return c}(N2(t,1,-1)),!e)return Y2;this.host=e}else if(this.isSpecial()){if(t=p2(t),O2(Q2,t))return Y2;if(e=function(t){var e,r,n,i,o,a,s,c=z2(t,".");if(c.length&&""===c[c.length-1]&&c.length--,(e=c.length)>4)return t;for(r=[],n=0;n<e;n++){if(""===(i=c[n]))return t;if(o=10,i.length>1&&"0"===P2(i,0)&&(o=O2(q2,i)?16:8,i=N2(i,8===o?1:2)),""===i)a=0;else{if(!O2(10===o?V2:8===o?X2:K2,i))return t;a=S2(i,o)}j2(r,a)}for(n=0;n<e;n++)if(a=r[n],n===e-1){if(a>=T2(256,5-e))return null}else if(a>255)return null;for(s=R2(r),n=0;n<r.length;n++)s+=r[n]*T2(256,3-n);return s}(t),null===e)return Y2;this.host=e}else{if(O2(J2,t))return Y2;for(e="",r=h2(t),n=0;n<r.length;n++)e+=s3(r[n],n3);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"===this.scheme},includesCredentials:function(){return""!==this.username||""!==this.password},isSpecial:function(){return u2(c3,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"===this.scheme&&1===e&&u3(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,i=t.host,o=t.port,a=t.path,s=t.query,c=t.fragment,u=e+":";return null!==i?(u+="//",t.includesCredentials()&&(u+=r+(n?":"+n:"")+"@"),u+=r3(i),null!==o&&(u+=":"+o)):"file"===e&&(u+="//"),u+=t.cannotBeABaseURL?a[0]:a.length?"/"+I2(a,"/"):"",null!==s&&(u+="?"+s),null!==c&&(u+="#"+c),u},setHref:function(t){var e=this.parse(t);if(e)throw new E2(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"===t)try{return new j3(t.path[0]).origin}catch(t){return"null"}return"file"!==t&&this.isSpecial()?t+"://"+r3(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(g2(t)+":",f3)},getUsername:function(){return this.username},setUsername:function(t){var e=h2(g2(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<e.length;r++)this.username+=s3(e[r],a3)}},getPassword:function(){return this.password},setPassword:function(t){var e=h2(g2(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<e.length;r++)this.password+=s3(e[r],a3)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?r3(t):r3(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,A3)},getHostname:function(){var t=this.host;return null===t?"":r3(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,_3)},getPort:function(){var t=this.port;return null===t?"":g2(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""===(t=g2(t))?this.port=null:this.parse(t,k3))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+I2(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,T3))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""===(t=g2(t))?this.query=null:("?"===P2(t,0)&&(t=N2(t,1)),this.query="",this.parse(t,I3)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!==(t=g2(t))?("#"===P2(t,0)&&(t=N2(t,1)),this.fragment="",this.parse(t,C3)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var j3=function(t){var e=c2(this,L3),r=y2(arguments.length,1)>1?arguments[1]:void 0,n=x2(e,new R3(t,!1,r));e2||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},L3=j3.prototype,D3=function(t,e){return{get:function(){return w2(this)[t]()},set:e&&function(t){return w2(this)[e](t)},configurable:!0,enumerable:!0}};if(e2&&(s2(L3,"href",D3("serialize","setHref")),s2(L3,"origin",D3("getOrigin")),s2(L3,"protocol",D3("getProtocol","setProtocol")),s2(L3,"username",D3("getUsername","setUsername")),s2(L3,"password",D3("getPassword","setPassword")),s2(L3,"host",D3("getHost","setHost")),s2(L3,"hostname",D3("getHostname","setHostname")),s2(L3,"port",D3("getPort","setPort")),s2(L3,"pathname",D3("getPathname","setPathname")),s2(L3,"search",D3("getSearch","setSearch")),s2(L3,"searchParams",D3("getSearchParams")),s2(L3,"hash",D3("getHash","setHash"))),a2(L3,"toJSON",(function(){return w2(this).serialize()}),{enumerable:!0}),a2(L3,"toString",(function(){return w2(this).serialize()}),{enumerable:!0}),k2){var z3=k2.createObjectURL,N3=k2.revokeObjectURL;z3&&a2(j3,"createObjectURL",i2(z3,k2)),N3&&a2(j3,"revokeObjectURL",i2(N3,k2))}v2(j3,"URL"),t2({global:!0,constructor:!0,forced:!r2,sham:!e2},{URL:j3});var F3=ri,B3=i,U3=MI,Y3=pi,H3=v0,G3=G("URL"),W3=H3&&B3((function(){G3.canParse()})),$3=B3((function(){return 1!==G3.canParse.length}));F3({target:"URL",stat:!0,forced:!W3||$3},{canParse:function(t){var e=U3(arguments.length,1),r=Y3(t),n=e<2||void 0===arguments[1]?void 0:Y3(arguments[1]);try{return!!new G3(r,n)}catch(t){return!1}}});var q3=ri,X3=MI,V3=pi,K3=v0,Q3=G("URL");q3({target:"URL",stat:!0,forced:!K3},{parse:function(t){var e=X3(arguments.length,1),r=V3(t),n=e<2||void 0===arguments[1]?void 0:V3(arguments[1]);try{return new Q3(r,n)}catch(t){return null}}});var J3=u;ri({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return J3(URL.prototype.toString,this)}});var Z3=Qr,t4=w,e4=pi,r4=MI,n4=URLSearchParams,i4=n4.prototype,o4=t4(i4.append),a4=t4(i4.delete),s4=t4(i4.forEach),c4=t4([].push),u4=new n4("a=1&a=2&b=3");u4.delete("a",1),u4.delete("b",void 0),u4+""!="a=2"&&Z3(i4,"delete",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return a4(this,t);var n=[];s4(this,(function(t,e){c4(n,{key:e,value:t})})),r4(e,1);for(var i,o=e4(t),a=e4(r),s=0,c=0,u=!1,l=n.length;s<l;)i=n[s++],u||i.key===o?(u=!0,a4(this,i.key)):c++;for(;c<l;)(i=n[c++]).key===o&&i.value===a||o4(this,i.key,i.value)}),{enumerable:!0,unsafe:!0});var l4=Qr,h4=w,f4=pi,d4=MI,p4=URLSearchParams,g4=p4.prototype,v4=h4(g4.getAll),y4=h4(g4.has),m4=new p4("a=1");!m4.has("a",2)&&m4.has("a",void 0)||l4(g4,"has",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return y4(this,t);var n=v4(this,t);d4(e,1);for(var i=f4(r),o=0;o<n.length;)if(n[o++]===i)return!0;return!1}),{enumerable:!0,unsafe:!0});var b4=o,x4=w,w4=Ki,A4=URLSearchParams.prototype,_4=x4(A4.forEach);b4&&!("size"in A4)&&w4(A4,"size",{get:function(){var t=0;return _4(this,(function(){t++})),t},configurable:!0,enumerable:!0});!function(t){var e=function(t){var e,r=Object.prototype,n=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},a=o.iterator||"@@iterator",s=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var o=e&&e.prototype instanceof y?e:y,a=Object.create(o.prototype),s=new O(n||[]);return i(a,"_invoke",{value:S(t,r,s)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var f="suspendedStart",d="suspendedYield",p="executing",g="completed",v={};function y(){}function m(){}function b(){}var x={};u(x,a,(function(){return this}));var w=Object.getPrototypeOf,A=w&&w(w(I([])));A&&A!==r&&n.call(A,a)&&(x=A);var _=b.prototype=y.prototype=Object.create(x);function k(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(i,o,a,s){var c=h(t[i],t,o);if("throw"!==c.type){var u=c.arg,l=u.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,a,s)}),(function(t){r("throw",t,a,s)})):e.resolve(l).then((function(t){u.value=t,a(u)}),(function(t){return r("throw",t,a,s)}))}s(c.arg)}var o;i(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,i){r(t,n,e,i)}))}return o=o?o.then(i,i):i()}})}function S(t,e,r){var n=f;return function(i,o){if(n===p)throw new Error("Generator is already running");if(n===g){if("throw"===i)throw o;return C()}for(r.method=i,r.arg=o;;){var a=r.delegate;if(a){var s=M(a,r);if(s){if(s===v)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===f)throw n=g,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=p;var c=h(t,e,r);if("normal"===c.type){if(n=r.done?g:d,c.arg===v)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(n=g,r.method="throw",r.arg=c.arg)}}}function M(t,r){var n=r.method,i=t.iterator[n];if(i===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,M(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var o=h(i,t.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,v;var a=o.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function P(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(t){if(t){var r=t[a];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,o=function r(){for(;++i<t.length;)if(n.call(t,i))return r.value=t[i],r.done=!1,r;return r.value=e,r.done=!0,r};return o.next=o}}return{next:C}}function C(){return{value:e,done:!0}}return m.prototype=b,i(_,"constructor",{value:b,configurable:!0}),i(b,"constructor",{value:m,configurable:!0}),m.displayName=u(b,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,u(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},k(E.prototype),u(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,i,o){void 0===o&&(o=Promise);var a=new E(l(e,r,n,i),o);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},k(_),u(_,c,"Generator"),u(_,a,(function(){return this})),u(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=I,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(P),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function i(n,i){return s.type="throw",s.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return i("end");if(a.tryLoc<=this.prev){var c=n.call(a,"catchLoc"),u=n.call(a,"finallyLoc");if(c&&u){if(this.prev<a.catchLoc)return i(a.catchLoc,!0);if(this.prev<a.finallyLoc)return i(a.finallyLoc)}else if(c){if(this.prev<a.catchLoc)return i(a.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return i(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var o=i;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),P(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;P(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:I(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}({exports:{}}),((t,e)=>{var r,n,i,o;(null!==(e=(t=Path2D.prototype).roundRect)&&void 0!==e||(t.roundRect=a),globalThis.CanvasRenderingContext2D)&&(null!==(n=(r=globalThis.CanvasRenderingContext2D.prototype).roundRect)&&void 0!==n||(r.roundRect=a));globalThis.OffscreenCanvasRenderingContext2D&&(null!==(o=(i=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect)&&void 0!==o||(i.roundRect=a));function a(t,e,r,n,i){if([t,e,r,n].every((t=>Number.isFinite(t)))){var o,a,c,u;if(i=function(t){var e=typeof t;if("undefined"===e||null===t)return[0];if("function"===e)return[NaN];if("object"===e)return"function"==typeof t[Symbol.iterator]?[...t].map((t=>{var e=typeof t;return"undefined"===e||null===t?0:"function"===e?NaN:"object"===e?f(t):d(t)})):[f(t)];return[d(t)]}(i),4===i.length)o=p(i[0]),a=p(i[1]),c=p(i[2]),u=p(i[3]);else if(3===i.length)o=p(i[0]),a=p(i[1]),u=p(i[1]),c=p(i[2]);else if(2===i.length)o=p(i[0]),c=p(i[0]),a=p(i[1]),u=p(i[1]);else{if(1!==i.length)throw new RangeError("".concat(s(this)," ").concat(i.length," is not a valid size for radii sequence."));o=p(i[0]),a=p(i[0]),c=p(i[0]),u=p(i[0])}var l=[o,a,c,u],h=l.find((t=>{var{x:e,y:r}=t;return e<0||r<0}));if((null==h?void 0:h.x)<0?h.x:null==h||h.y,!l.some((t=>{var{x:e,y:r}=t;return!Number.isFinite(e)||!Number.isFinite(r)}))){if(h)throw new RangeError("".concat(s(this)," Radius value ").concat(h," is negative."));!function(t){var[e,i,o,a]=t,s=[Math.abs(r)/(e.x+i.x),Math.abs(n)/(i.y+o.y),Math.abs(r)/(o.x+a.x),Math.abs(n)/(e.y+a.y)],c=Math.min(...s);if(c<=1)for(var u of t)u.x*=c,u.y*=c}(l),r<0&&n<0?(this.moveTo(t-o.x,e),this.ellipse(t+r+a.x,e-a.y,a.x,a.y,0,1.5*-Math.PI,-Math.PI),this.ellipse(t+r+c.x,e+n+c.y,c.x,c.y,0,-Math.PI,-Math.PI/2),this.ellipse(t-u.x,e+n+u.y,u.x,u.y,0,-Math.PI/2,0),this.ellipse(t-o.x,e-o.y,o.x,o.y,0,0,-Math.PI/2)):r<0?(this.moveTo(t-o.x,e),this.ellipse(t+r+a.x,e+a.y,a.x,a.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(t+r+c.x,e+n-c.y,c.x,c.y,0,-Math.PI,1.5*-Math.PI,1),this.ellipse(t-u.x,e+n-u.y,u.x,u.y,0,Math.PI/2,0,1),this.ellipse(t-o.x,e+o.y,o.x,o.y,0,0,-Math.PI/2,1)):n<0?(this.moveTo(t+o.x,e),this.ellipse(t+r-a.x,e-a.y,a.x,a.y,0,Math.PI/2,0,1),this.ellipse(t+r-c.x,e+n+c.y,c.x,c.y,0,0,-Math.PI/2,1),this.ellipse(t+u.x,e+n+u.y,u.x,u.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(t+o.x,e-o.y,o.x,o.y,0,-Math.PI,1.5*-Math.PI,1)):(this.moveTo(t+o.x,e),this.ellipse(t+r-a.x,e+a.y,a.x,a.y,0,-Math.PI/2,0),this.ellipse(t+r-c.x,e+n-c.y,c.x,c.y,0,0,Math.PI/2),this.ellipse(t+u.x,e+n-u.y,u.x,u.y,0,Math.PI/2,Math.PI),this.ellipse(t+o.x,e+o.y,o.x,o.y,0,Math.PI,1.5*Math.PI)),this.closePath(),this.moveTo(t,e)}}function f(t){var{x:e,y:r,z:n,w:i}=t;return{x:e,y:r,z:n,w:i}}function d(t){return+t}function p(t){var e,r,n=d(t);return Number.isFinite(n)?{x:n,y:n}:Object(t)===t?{x:d(null!==(e=t.x)&&void 0!==e?e:0),y:d(null!==(r=t.y)&&void 0!==r?r:0)}:{x:NaN,y:NaN}}}function s(t){return"Failed to execute 'roundRect' on '".concat(function(t){return Object(t)===t&&t instanceof Path2D?"Path2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(null==t?void 0:t.constructor.name)||t}(t),"':")}})();var k4="done";function E4(t,e){return t===e||t!=t&&e!=e}function S4(t,e){for(var r=t.length;r--;)if(E4(t[r][0],e))return r;return-1}"function"!=typeof Object.assign&&(Object.assign=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1;r<arguments.length;r++){var n=arguments[r];if(null!=n)for(var i in n)n.hasOwnProperty(i)&&(e[i]=n[i])}return e}),"function"!=typeof Object.values&&(Object.values=function(t){let e=[];for(let r in t)e.push(t[r]);return e}),"function"!=typeof Object.keys&&(Object.values=function(t){let e=[];for(let r in t)e.push(r);return e}),"undefined"!=typeof CanvasRenderingContext2D&&null==CanvasRenderingContext2D.prototype.ellipse&&(CanvasRenderingContext2D.prototype.ellipse=function(t,e,r,n,i,o,a,s){this.save(),this.translate(t,e),this.rotate(i),this.translate(-r,-n),this.scale(r,n),this.arc(1,1,1,o,a,s),this.restore()}),function(){for(var t=0,e=["ms","moz","webkit","o"],r=0;r<e.length&&!window.requestAnimationFrame;++r)window.requestAnimationFrame=window[e[r]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e[r]+"CancelAnimationFrame"]||window[e[r]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(console.warn("requestAnimationFrame not supported"),window.requestAnimationFrame=function(e,r){var n=performance.now(),i=Math.max(0,33-(n-t)),o=window.setTimeout((function(){e(n+i)}),i);return t=n+i,o}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(t){clearTimeout(t)})}(),String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t});var M4=Array.prototype.splice;function T4(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}T4.prototype.clear=function(){this.__data__=[],this.size=0},T4.prototype.delete=function(t){var e=this.__data__,r=S4(e,t);return!(r<0)&&(r==e.length-1?e.pop():M4.call(e,r,1),--this.size,!0)},T4.prototype.get=function(t){var e=this.__data__,r=S4(e,t);return r<0?void 0:e[r][1]},T4.prototype.has=function(t){return S4(this.__data__,t)>-1},T4.prototype.set=function(t,e){var r=this.__data__,n=S4(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this};var P4="object"==typeof global&&global&&global.Object===Object&&global,O4="object"==typeof self&&self&&self.Object===Object&&self,I4=P4||O4||Function("return this")(),C4=I4.Symbol,R4=Object.prototype,j4=R4.hasOwnProperty,L4=R4.toString,D4=C4?C4.toStringTag:void 0;var z4=Object.prototype.toString;var N4=C4?C4.toStringTag:void 0;function F4(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":N4&&N4 in Object(t)?function(t){var e=j4.call(t,D4),r=t[D4];try{t[D4]=void 0;var n=!0}catch(t){}var i=L4.call(t);return n&&(e?t[D4]=r:delete t[D4]),i}(t):function(t){return z4.call(t)}(t)}function B4(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function U4(t){if(!B4(t))return!1;var e=F4(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e}var Y4=I4["__core-js_shared__"],H4=function(){var t=/[^.]+$/.exec(Y4&&Y4.keys&&Y4.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}();var G4=Function.prototype.toString;function W4(t){if(null!=t){try{return G4.call(t)}catch(t){}try{return t+""}catch(t){}}return""}var $4=/^\[object .+?Constructor\]$/,q4=Function.prototype,X4=Object.prototype,V4=q4.toString,K4=X4.hasOwnProperty,Q4=RegExp("^"+V4.call(K4).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function J4(t){return!(!B4(t)||(e=t,H4&&H4 in e))&&(U4(t)?Q4:$4).test(W4(t));var e}function Z4(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return J4(r)?r:void 0}var t5=Z4(I4,"Map"),e5=Z4(Object,"create");var r5=Object.prototype.hasOwnProperty;var n5=Object.prototype.hasOwnProperty;function i5(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function o5(t,e){var r=t.__data__;return function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}(e)?r["string"==typeof e?"string":"hash"]:r.map}function a5(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}i5.prototype.clear=function(){this.__data__=e5?e5(null):{},this.size=0},i5.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},i5.prototype.get=function(t){var e=this.__data__;if(e5){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return r5.call(e,t)?e[t]:void 0},i5.prototype.has=function(t){var e=this.__data__;return e5?void 0!==e[t]:n5.call(e,t)},i5.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=e5&&void 0===e?"__lodash_hash_undefined__":e,this},a5.prototype.clear=function(){this.size=0,this.__data__={hash:new i5,map:new(t5||T4),string:new i5}},a5.prototype.delete=function(t){var e=o5(this,t).delete(t);return this.size-=e?1:0,e},a5.prototype.get=function(t){return o5(this,t).get(t)},a5.prototype.has=function(t){return o5(this,t).has(t)},a5.prototype.set=function(t,e){var r=o5(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this};function s5(t){var e=this.__data__=new T4(t);this.size=e.size}s5.prototype.clear=function(){this.__data__=new T4,this.size=0},s5.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},s5.prototype.get=function(t){return this.__data__.get(t)},s5.prototype.has=function(t){return this.__data__.has(t)},s5.prototype.set=function(t,e){var r=this.__data__;if(r instanceof T4){var n=r.__data__;if(!t5||n.length<199)return n.push([t,e]),this.size=++r.size,this;r=this.__data__=new a5(n)}return r.set(t,e),this.size=r.size,this};function c5(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new a5;++e<r;)this.add(t[e])}function u5(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1}function l5(t,e){return t.has(e)}c5.prototype.add=c5.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},c5.prototype.has=function(t){return this.__data__.has(t)};function h5(t,e,r,n,i,o){var a=1&r,s=t.length,c=e.length;if(s!=c&&!(a&&c>s))return!1;var u=o.get(t),l=o.get(e);if(u&&l)return u==e&&l==t;var h=-1,f=!0,d=2&r?new c5:void 0;for(o.set(t,e),o.set(e,t);++h<s;){var p=t[h],g=e[h];if(n)var v=a?n(g,p,h,e,t,o):n(p,g,h,t,e,o);if(void 0!==v){if(v)continue;f=!1;break}if(d){if(!u5(e,(function(t,e){if(!l5(d,e)&&(p===t||i(p,t,r,n,o)))return d.push(e)}))){f=!1;break}}else if(p!==g&&!i(p,g,r,n,o)){f=!1;break}}return o.delete(t),o.delete(e),f}var f5=I4.Uint8Array;function d5(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r}function p5(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r}var g5=C4?C4.prototype:void 0,v5=g5?g5.valueOf:void 0;function y5(t,e){for(var r=-1,n=e.length,i=t.length;++r<n;)t[i+r]=e[r];return t}var m5=Array.isArray;function b5(t,e,r){var n=e(t);return m5(t)?n:y5(n,r(t))}function x5(){return[]}var w5=Object.prototype.propertyIsEnumerable,A5=Object.getOwnPropertySymbols,_5=A5?function(t){return null==t?[]:(t=Object(t),function(t,e){for(var r=-1,n=null==t?0:t.length,i=0,o=[];++r<n;){var a=t[r];e(a,r,t)&&(o[i++]=a)}return o}(A5(t),(function(e){return w5.call(t,e)})))}:x5,k5=_5;function E5(t){return null!=t&&"object"==typeof t}function S5(t){return E5(t)&&"[object Arguments]"==F4(t)}var M5=Object.prototype,T5=M5.hasOwnProperty,P5=M5.propertyIsEnumerable,O5=S5(function(){return arguments}())?S5:function(t){return E5(t)&&T5.call(t,"callee")&&!P5.call(t,"callee")},I5=O5;var C5="object"==typeof exports&&exports&&!exports.nodeType&&exports,R5=C5&&"object"==typeof module&&module&&!module.nodeType&&module,j5=R5&&R5.exports===C5?I4.Buffer:void 0,L5=(j5?j5.isBuffer:void 0)||function(){return!1},D5=/^(?:0|[1-9]\d*)$/;function z5(t,e){var r=typeof t;return!!(e=null==e?9007199254740991:e)&&("number"==r||"symbol"!=r&&D5.test(t))&&t>-1&&t%1==0&&t<e}function N5(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991}var F5={};function B5(t){return function(e){return t(e)}}F5["[object Float32Array]"]=F5["[object Float64Array]"]=F5["[object Int8Array]"]=F5["[object Int16Array]"]=F5["[object Int32Array]"]=F5["[object Uint8Array]"]=F5["[object Uint8ClampedArray]"]=F5["[object Uint16Array]"]=F5["[object Uint32Array]"]=!0,F5["[object Arguments]"]=F5["[object Array]"]=F5["[object ArrayBuffer]"]=F5["[object Boolean]"]=F5["[object DataView]"]=F5["[object Date]"]=F5["[object Error]"]=F5["[object Function]"]=F5["[object Map]"]=F5["[object Number]"]=F5["[object Object]"]=F5["[object RegExp]"]=F5["[object Set]"]=F5["[object String]"]=F5["[object WeakMap]"]=!1;var U5="object"==typeof exports&&exports&&!exports.nodeType&&exports,Y5=U5&&"object"==typeof module&&module&&!module.nodeType&&module,H5=Y5&&Y5.exports===U5&&P4.process,G5=function(){try{var t=Y5&&Y5.require&&Y5.require("util").types;return t||H5&&H5.binding&&H5.binding("util")}catch(t){}}(),W5=G5&&G5.isTypedArray,$5=W5?B5(W5):function(t){return E5(t)&&N5(t.length)&&!!F5[F4(t)]},q5=$5,X5=Object.prototype.hasOwnProperty;function V5(t,e){var r=m5(t),n=!r&&I5(t),i=!r&&!n&&L5(t),o=!r&&!n&&!i&&q5(t),a=r||n||i||o,s=a?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],c=s.length;for(var u in t)!e&&!X5.call(t,u)||a&&("length"==u||i&&("offset"==u||"parent"==u)||o&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||z5(u,c))||s.push(u);return s}var K5=Object.prototype;function Q5(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||K5)}function J5(t,e){return function(r){return t(e(r))}}var Z5=J5(Object.keys,Object),t6=Object.prototype.hasOwnProperty;function e6(t){if(!Q5(t))return Z5(t);var e=[];for(var r in Object(t))t6.call(t,r)&&"constructor"!=r&&e.push(r);return e}function r6(t){return null!=t&&N5(t.length)&&!U4(t)}function n6(t){return r6(t)?V5(t):e6(t)}function i6(t){return b5(t,n6,k5)}var o6=Object.prototype.hasOwnProperty;var a6=Z4(I4,"DataView"),s6=Z4(I4,"Promise"),c6=Z4(I4,"Set"),u6=Z4(I4,"WeakMap"),l6="[object Map]",h6="[object Promise]",f6="[object Set]",d6="[object WeakMap]",p6="[object DataView]",g6=W4(a6),v6=W4(t5),y6=W4(s6),m6=W4(c6),b6=W4(u6),x6=F4;(a6&&x6(new a6(new ArrayBuffer(1)))!=p6||t5&&x6(new t5)!=l6||s6&&x6(s6.resolve())!=h6||c6&&x6(new c6)!=f6||u6&&x6(new u6)!=d6)&&(x6=function(t){var e=F4(t),r="[object Object]"==e?t.constructor:void 0,n=r?W4(r):"";if(n)switch(n){case g6:return p6;case v6:return l6;case y6:return h6;case m6:return f6;case b6:return d6}return e});var w6=x6,A6="[object Arguments]",_6="[object Array]",k6="[object Object]",E6=Object.prototype.hasOwnProperty;function S6(t,e,r,n,i,o){var a=m5(t),s=m5(e),c=a?_6:w6(t),u=s?_6:w6(e),l=(c=c==A6?k6:c)==k6,h=(u=u==A6?k6:u)==k6,f=c==u;if(f&&L5(t)){if(!L5(e))return!1;a=!0,l=!1}if(f&&!l)return o||(o=new s5),a||q5(t)?h5(t,e,r,n,i,o):function(t,e,r,n,i,o,a){switch(r){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":return!(t.byteLength!=e.byteLength||!o(new f5(t),new f5(e)));case"[object Boolean]":case"[object Date]":case"[object Number]":return E4(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var s=d5;case"[object Set]":var c=1&n;if(s||(s=p5),t.size!=e.size&&!c)return!1;var u=a.get(t);if(u)return u==e;n|=2,a.set(t,e);var l=h5(s(t),s(e),n,i,o,a);return a.delete(t),l;case"[object Symbol]":if(v5)return v5.call(t)==v5.call(e)}return!1}(t,e,c,r,n,i,o);if(!(1&r)){var d=l&&E6.call(t,"__wrapped__"),p=h&&E6.call(e,"__wrapped__");if(d||p){var g=d?t.value():t,v=p?e.value():e;return o||(o=new s5),i(g,v,r,n,o)}}return!!f&&(o||(o=new s5),function(t,e,r,n,i,o){var a=1&r,s=i6(t),c=s.length;if(c!=i6(e).length&&!a)return!1;for(var u=c;u--;){var l=s[u];if(!(a?l in e:o6.call(e,l)))return!1}var h=o.get(t),f=o.get(e);if(h&&f)return h==e&&f==t;var d=!0;o.set(t,e),o.set(e,t);for(var p=a;++u<c;){var g=t[l=s[u]],v=e[l];if(n)var y=a?n(v,g,l,e,t,o):n(g,v,l,t,e,o);if(!(void 0===y?g===v||i(g,v,r,n,o):y)){d=!1;break}p||(p="constructor"==l)}if(d&&!p){var m=t.constructor,b=e.constructor;m==b||!("constructor"in t)||!("constructor"in e)||"function"==typeof m&&m instanceof m&&"function"==typeof b&&b instanceof b||(d=!1)}return o.delete(t),o.delete(e),d}(t,e,r,n,i,o))}function M6(t,e,r,n,i){return t===e||(null==t||null==e||!E5(t)&&!E5(e)?t!=t&&e!=e:S6(t,e,r,n,M6,i))}function T6(t,e){return M6(t,e)}var P6=function(){try{var t=Z4(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();function O6(t,e,r){"__proto__"==e&&P6?P6(t,e,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[e]=r}var I6=Object.prototype.hasOwnProperty;function C6(t,e,r){var n=t[e];I6.call(t,e)&&E4(n,r)&&(void 0!==r||e in t)||O6(t,e,r)}function R6(t,e,r,n){var i=!r;r||(r={});for(var o=-1,a=e.length;++o<a;){var s=e[o],c=n?n(r[s],t[s],s,r,t):void 0;void 0===c&&(c=t[s]),i?O6(r,s,c):C6(r,s,c)}return r}function j6(t){return t}function L6(t,e,r){switch(r.length){case 0:return t.call(e);case 1:return t.call(e,r[0]);case 2:return t.call(e,r[0],r[1]);case 3:return t.call(e,r[0],r[1],r[2])}return t.apply(e,r)}var D6=Math.max;function z6(t){return function(){return t}}var N6=P6?function(t,e){return P6(t,"toString",{configurable:!0,enumerable:!1,value:z6(e),writable:!0})}:j6,F6=Date.now;var B6=function(t){var e=0,r=0;return function(){var n=F6(),i=16-(n-r);if(r=n,i>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(N6),U6=B6;function Y6(t,e){return U6(function(t,e,r){return e=D6(void 0===e?t.length-1:e,0),function(){for(var n=arguments,i=-1,o=D6(n.length-e,0),a=Array(o);++i<o;)a[i]=n[e+i];i=-1;for(var s=Array(e+1);++i<e;)s[i]=n[i];return s[e]=r(a),L6(t,this,s)}}(t,e,j6),t+"")}function H6(t,e,r){if(!B4(r))return!1;var n=typeof e;return!!("number"==n?r6(r)&&z5(e,r.length):"string"==n&&e in r)&&E4(r[e],t)}var G6=Object.prototype.hasOwnProperty;function W6(t){if(!B4(t))return function(t){var e=[];if(null!=t)for(var r in Object(t))e.push(r);return e}(t);var e=Q5(t),r=[];for(var n in t)("constructor"!=n||!e&&G6.call(t,n))&&r.push(n);return r}function $6(t){return r6(t)?V5(t,!0):W6(t)}var q6,X6=(q6=function(t,e,r,n){R6(e,$6(e),t,n)},Y6((function(t,e){var r=-1,n=e.length,i=n>1?e[n-1]:void 0,o=n>2?e[2]:void 0;for(i=q6.length>3&&"function"==typeof i?(n--,i):void 0,o&&H6(e[0],e[1],o)&&(i=n<3?void 0:i,n=1),t=Object(t);++r<n;){var a=e[r];a&&q6(t,a,r,i)}return t}))),V6=X6,K6=J5(Object.getPrototypeOf,Object),Q6=Function.prototype,J6=Object.prototype,Z6=Q6.toString,t8=J6.hasOwnProperty,e8=Z6.call(Object);function r8(t){if(!E5(t))return!1;var e=F4(t);return"[object Error]"==e||"[object DOMException]"==e||"string"==typeof t.message&&"string"==typeof t.name&&!function(t){if(!E5(t)||"[object Object]"!=F4(t))return!1;var e=K6(t);if(null===e)return!0;var r=t8.call(e,"constructor")&&e.constructor;return"function"==typeof r&&r instanceof r&&Z6.call(r)==e8}(t)}var n8=Y6((function(t,e){try{return L6(t,void 0,e)}catch(t){return r8(t)?t:new Error(t)}})),i8=n8;function o8(t,e){for(var r=-1,n=null==t?0:t.length,i=Array(n);++r<n;)i[r]=e(t[r],r,t);return i}var a8=Object.prototype,s8=a8.hasOwnProperty;function c8(t,e,r,n){return void 0===t||E4(t,a8[r])&&!s8.call(n,r)?e:t}var u8={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};function l8(t){return"\\"+u8[t]}var h8=/<%=([\s\S]+?)%>/g;var f8,d8=(f8={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},function(t){return null==f8?void 0:f8[t]}),p8=d8;function g8(t){return"symbol"==typeof t||E5(t)&&"[object Symbol]"==F4(t)}var v8=C4?C4.prototype:void 0,y8=v8?v8.toString:void 0;function m8(t){if("string"==typeof t)return t;if(m5(t))return o8(t,m8)+"";if(g8(t))return y8?y8.call(t):"";var e=t+"";return"0"==e&&1/t==-1/0?"-0":e}function b8(t){return null==t?"":m8(t)}var x8=/[&<>"']/g,w8=RegExp(x8.source);var A8={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:h8,variable:"",imports:{_:{escape:function(t){return(t=b8(t))&&w8.test(t)?t.replace(x8,p8):t}}}},_8=/\b__p \+= '';/g,k8=/\b(__p \+=) '' \+/g,E8=/(__e\(.*?\)|\b__t\)) \+\n'';/g,S8=/[()=,{}\[\]\/\s]/,M8=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,T8=/($^)/,P8=/['\n\r\u2028\u2029\\]/g,O8=Object.prototype.hasOwnProperty;var I8={linear:function(t){return t},quad:function(t){return Math.pow(t,2)},circ:function(t){return 1-Math.sin(Math.acos(t))},back:function(t,e={x:1.5}){return Math.pow(t,2)*((e.x+1)*t-e.x)},bounce:function(t){for(let e=0,r=1;;e+=r,r/=2)if(t>=(7-4*e)/11)return-Math.pow((11-6*e-11*t)/4,2)+Math.pow(r,2)},elastic:function(t,e={x:1.5}){return Math.pow(2,10*(t-1))*Math.cos(20*Math.PI*e.x/3*t)}};class C8{constructor(t,e){this.client=t,this.config=e,this._started=!1;var{delta:r="linear",options:n,ease:i}=this.config;"string"==typeof r&&(r=I8[r]),this.delta="out"==i?function(t,e){return function(r){return 1-t(1-r,e)}}(r,n):"inout"==i?function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(r,n):r,this.init()}dispose(){this.stop(),delete this.client}init(){}start(){if(!this._started){var{duration:t=2e3,delay:e=0,repeat:r=!1,interval:n=0}=this.config;this._started=!0;var i=0,o=0,a=()=>{if(this._raf=null,this._timeout=null,!this._started)return;0==i&&(i=performance.now(),this.client.touch());let s=performance.now()-i,c=Math.max((s-e)%(t+n),0)/t,u=n<=0&&o>c;if(o=c,c>=1||u){if(this.step(1),this.client&&this.client.invalidate(),!r||!this._started)return this.stop(),void(i=0);if(n>0)return void(this._timeout=setTimeout((()=>{this.step(0),this.client&&this.client.invalidate(),this._timeout=setTimeout(a,n/2)}),n/2))}else this.step(this.delta(c)),this.client&&this.client.invalidate();this._raf=requestAnimationFrame(a)};this._raf=requestAnimationFrame(a)}}stop(){this._raf&&cancelAnimationFrame(this._raf),this._timeout&&clearTimeout(this._timeout),this._raf=null,this._timeout=null,this._started=!1}get started(){return this._started}set started(t){this.started!=!!t&&(t?this.start():this.stop())}}var R8={rotation:class extends C8{step(t){var{theta:e=6.28}=this.config;this.client.delta("theta",t*e)}},vibration:class extends C8{step(t){var{theta:e=.2617993877991494}=this.config,r=4*e,n=t*r;t<1/4?n*=-1:t<3/4?n-=2*e:n=r-n,this.client.delta("theta",n)}},heartbeat:class extends C8{step(t){var e,{scale:r=1.3}=this.config,n=2*(r-1);e=t<.5?1+n*t:1+(1-t)*n,this.client.delta("sx",e),this.client.delta("sy",e)}},moving:class extends C8{step(t){var{x:e=0,y:r=0}=this.config;this.client.delta("tx",t*e),this.client.delta("ty",t*r)}},outline:class extends C8{step(t){const{rideOn:e}=this.config,r=this.client;if(!e||!r||!r.root)return;const n=r.root.findById(e);if(!n)return;const{tx:i,ty:o}=r.delta(),a=n.outline(t),s=r.center,c=r.transcoordS2T(s.x,s.y);n&&(r.delta("tx",a.x-c.x+i),r.delta("ty",a.y-c.y+o))}},fade:class extends C8{step(t){var e,{startAlpha:r=1,endAlpha:n=0}=this.config,i=Math.max(Math.min(r,n,1),0),o=2*(Math.min(Math.max(r,n,1),1)-i);e=t<.5?o*t:(1-t)*o,this.client.delta("fade",e)}}};function j8(t){var{duration:e=1e3,delay:r=30,step:n,delta:i,ease:o,options:a,repeat:s=!1}=t;"string"==typeof i&&(i=I8[i]),"out"==o?i=function(t,e){return function(r){return 1-t(1-r,e)}}(i,a):"inout"==o&&(i=function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(i,a));var c=!1;return{start:function(){if(c)return this;c=!0;var t=0,r=()=>{if(c){0==t&&(t=performance.now());var o=(performance.now()-t)/e,u=s?o%1:Math.min(o,1);n(i(u,a)),!(o>=1)||s&&c||(this.stop(),t=0),c&&requestAnimationFrame(r)}};return requestAnimationFrame(r),this},stop:function(){return c=!1,this}}}var L8="object"==typeof exports&&exports&&!exports.nodeType&&exports,D8=L8&&"object"==typeof module&&module&&!module.nodeType&&module,z8=D8&&D8.exports===L8?I4.Buffer:void 0,N8=z8?z8.allocUnsafe:void 0;var F8=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)y5(e,k5(t)),t=K6(t);return e}:x5,B8=F8;function U8(t){return b5(t,$6,B8)}var Y8=Object.prototype.hasOwnProperty;function H8(t){var e=new t.constructor(t.byteLength);return new f5(e).set(new f5(t)),e}var G8=/\w*$/;var W8=C4?C4.prototype:void 0,$8=W8?W8.valueOf:void 0;function q8(t,e,r){var n,i=t.constructor;switch(e){case"[object ArrayBuffer]":return H8(t);case"[object Boolean]":case"[object Date]":return new i(+t);case"[object DataView]":return function(t,e){var r=e?H8(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}(t,r);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return function(t,e){var r=e?H8(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}(t,r);case"[object Map]":case"[object Set]":return new i;case"[object Number]":case"[object String]":return new i(t);case"[object RegExp]":return function(t){var e=new t.constructor(t.source,G8.exec(t));return e.lastIndex=t.lastIndex,e}(t);case"[object Symbol]":return n=t,$8?Object($8.call(n)):{}}}var X8=Object.create,V8=function(){function t(){}return function(e){if(!B4(e))return{};if(X8)return X8(e);t.prototype=e;var r=new t;return t.prototype=void 0,r}}(),K8=V8;var Q8=G5&&G5.isMap,J8=Q8?B5(Q8):function(t){return E5(t)&&"[object Map]"==w6(t)},Z8=J8;var t7=G5&&G5.isSet,e7=t7?B5(t7):function(t){return E5(t)&&"[object Set]"==w6(t)},r7=e7,n7="[object Arguments]",i7="[object Function]",o7="[object Object]",a7={};function s7(t,e,r,n,i,o){var a,s=1&e,c=2&e,u=4&e;if(r&&(a=i?r(t,n,i,o):r(t)),void 0!==a)return a;if(!B4(t))return t;var l=m5(t);if(l){if(a=function(t){var e=t.length,r=new t.constructor(e);return e&&"string"==typeof t[0]&&Y8.call(t,"index")&&(r.index=t.index,r.input=t.input),r}(t),!s)return function(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r<n;)e[r]=t[r];return e}(t,a)}else{var h=w6(t),f=h==i7||"[object GeneratorFunction]"==h;if(L5(t))return function(t,e){if(e)return t.slice();var r=t.length,n=N8?N8(r):new t.constructor(r);return t.copy(n),n}(t,s);if(h==o7||h==n7||f&&!i){if(a=c||f?{}:function(t){return"function"!=typeof t.constructor||Q5(t)?{}:K8(K6(t))}(t),!s)return c?function(t,e){return R6(t,B8(t),e)}(t,function(t,e){return t&&R6(e,$6(e),t)}(a,t)):function(t,e){return R6(t,k5(t),e)}(t,function(t,e){return t&&R6(e,n6(e),t)}(a,t))}else{if(!a7[h])return i?t:{};a=q8(t,h,s)}}o||(o=new s5);var d=o.get(t);if(d)return d;o.set(t,a),r7(t)?t.forEach((function(n){a.add(s7(n,e,r,n,t,o))})):Z8(t)&&t.forEach((function(n,i){a.set(i,s7(n,e,r,i,t,o))}));var p=l?void 0:(u?c?U8:i6:c?$6:n6)(t);return function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n&&!1!==e(t[r],r,t););}(p||t,(function(n,i){p&&(n=t[i=n]),C6(a,i,s7(n,e,r,i,t,o))})),a}a7[n7]=a7["[object Array]"]=a7["[object ArrayBuffer]"]=a7["[object DataView]"]=a7["[object Boolean]"]=a7["[object Date]"]=a7["[object Float32Array]"]=a7["[object Float64Array]"]=a7["[object Int8Array]"]=a7["[object Int16Array]"]=a7["[object Int32Array]"]=a7["[object Map]"]=a7["[object Number]"]=a7[o7]=a7["[object RegExp]"]=a7["[object Set]"]=a7["[object String]"]=a7["[object Symbol]"]=a7["[object Uint8Array]"]=a7["[object Uint8ClampedArray]"]=a7["[object Uint16Array]"]=a7["[object Uint32Array]"]=!0,a7["[object Error]"]=a7[i7]=a7["[object WeakMap]"]=!1;function c7(t){return s7(t,4)}var u7=function(){return I4.Date.now()},l7=/\s/;var h7=/^\s+/;function f7(t){return t?t.slice(0,function(t){for(var e=t.length;e--&&l7.test(t.charAt(e)););return e}(t)+1).replace(h7,""):t}var d7=/^[-+]0x[0-9a-f]+$/i,p7=/^0b[01]+$/i,g7=/^0o[0-7]+$/i,v7=parseInt;function y7(t){if("number"==typeof t)return t;if(g8(t))return NaN;if(B4(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=B4(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=f7(t);var r=p7.test(t);return r||g7.test(t)?v7(t.slice(2),r?2:8):d7.test(t)?NaN:+t}var m7=Math.max,b7=Math.min;function x7(t,e,r){var n,i,o,a,s,c,u=0,l=!1,h=!1,f=!0;if("function"!=typeof t)throw new TypeError("Expected a function");function d(e){var r=n,o=i;return n=i=void 0,u=e,a=t.apply(o,r)}function p(t){var r=t-c;return void 0===c||r>=e||r<0||h&&t-u>=o}function g(){var t=u7();if(p(t))return v(t);s=setTimeout(g,function(t){var r=e-(t-c);return h?b7(r,o-(t-u)):r}(t))}function v(t){return s=void 0,f&&n?d(t):(n=i=void 0,a)}function y(){var t=u7(),r=p(t);if(n=arguments,i=this,c=t,r){if(void 0===s)return function(t){return u=t,s=setTimeout(g,e),l?d(t):a}(c);if(h)return clearTimeout(s),s=setTimeout(g,e),d(c)}return void 0===s&&(s=setTimeout(g,e)),a}return e=y7(e)||0,B4(r)&&(l=!!r.leading,o=(h="maxWait"in r)?m7(y7(r.maxWait)||0,e):o,f="trailing"in r?!!r.trailing:f),y.cancel=function(){void 0!==s&&clearTimeout(s),u=0,n=c=i=s=void 0},y.flush=function(){return void 0===s?a:v(u7())},y}function w7(t,e,r){var n=!0,i=!0;if("function"!=typeof t)throw new TypeError("Expected a function");return B4(r)&&(n="leading"in r?!!r.leading:n,i="trailing"in r?!!r.trailing:i),x7(t,e,{leading:n,maxWait:e,trailing:i})}var A7=1/0;function _7(t){var e=function(t){return t?(t=y7(t))===A7||t===-1/0?17976931348623157e292*(t<0?-1:1):t==t?t:0:0===t?t:0}(t),r=e%1;return e==e?r?e-r:e:0}function k7(t){return function(t,e){var r;if("function"!=typeof e)throw new TypeError("Expected a function");return t=_7(t),function(){return--t>0&&(r=e.apply(this,arguments)),t<=1&&(e=void 0),r}}(2,t)}var E7=Object.prototype.hasOwnProperty;function S7(t){if(null==t)return!0;if(r6(t)&&(m5(t)||"string"==typeof t||"function"==typeof t.splice||L5(t)||q5(t)||I5(t)))return!t.length;var e=w6(t);if("[object Map]"==e||"[object Set]"==e)return!t.size;if(Q5(t))return!e6(t).length;for(var r in t)if(E7.call(t,r))return!1;return!0}var M7=0;function T7(t={},...e){return"object"!=typeof t&&(t={}),e.forEach((e=>{for(let r in e)"object"!=typeof e[r]?t[r]=e[r]:e[r].length>0?t[r]=e[r].map((t=>{let n;return n="object"!=typeof e[r]?t:T7({},t),n})):t[r]=T7(t[r],e[r])})),t}function P7(t){for(;t&&"object"==typeof t;){let e=t;for(let e in t){t=t[e];break}if(t===e){t=void 0;break}}return t}var O7=Object.freeze({__proto__:null,insertAt:function(t,e){return this.__collection__?(-1==(t=this.__collection__.indexOf(e))&&this.__collection__.splice(t,0,e),this):this},append:function(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.push(t),this},prepend:function(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.unshift(t),this},remove:function(t){if(!this.__collection__)return this;var e=this.__collection__.indexOf(t);return e>=0&&this.__collection__.splice(e,1),this},getAt:function(t){if(this.__collection__)return this.__collection__[t]},forEach:function(t,e){this.__collection__&&this.__collection__.forEach(t,e)},indexOf:function(t){if(this.__collection__)return this.__collection__.indexOf(t)},size:function(){return this.__collection__?this.__collection__.length:0},clear:function(){this.__collection__=[]},moveForward:function(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this.__collection__[e]=this.__collection__[e-1],this.__collection__[e-1]=t)},moveBackward:function(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this.__collection__[e]=this.__collection__[e+1],this.__collection__[e+1]=t)},moveToHead:function(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=this.__collection__.concat(r,n)}},moveToTail:function(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=r.concat(n,this.__collection__)}}});function I7(){}I7.prototype=O7;var C7=/\s+/;function R7(t,e,r,n){if(!r)return!0;if("object"==typeof r){for(let n in r){let i=r[n];t[e].apply(t,[n,i])}return!1}return!C7.test(r)||(r.split(C7).forEach((r=>t[e].apply(t,[r].concat(n)))),!1)}const j7=["on","off","once","delegate_on","delegate_off","trigger","listenTo"];var L7={withEvent(){j7.forEach((t=>this[t]=L7[t]))},on(t,e,r){return R7(this,"on",t,[e,r])&&e?(this._listeners||(this._listeners={}),(this._listeners[t]||(this._listeners[t]=[])).push({callback:e,context:r,ctx:r||this}),this):this},once(t,e,r){if(!R7(this,"once",t,[e,r])||!e)return this;var n=this,i=k7((function(){n.off(t,i),e.apply(n,arguments)}));i._callback=e,this.on(t,i,r)},off(t,e,r){if(!this._listeners||!R7(this,"off",t,[e,r]))return this;if(!t&&!e&&!r)return this._listeners=void 0,this;var n;n=t?[t]:Object.keys(this._listeners);for(let t=0;t<n.length;t++){let i=n[t],o=this._listeners[i];if(o){let t=[];if(this._listeners[i]=t,e||r)for(let n=0;n<o.length;n++){let i=o[n];(e&&e!==i.callback&&e!==i.callback._callback||r&&r!==i.context)&&t.push(i)}t.length||delete this._listeners[i]}}return this},delegate_on(t){return this._delegators||(this._delegators=new I7),this._delegators.append(t),this},delegate_off(t){return this._delegators?(this._delegators.remove(t),this):this},delegate(){if(this._delegators&&this._delegators.size()>0&&z7(this._delegators,arguments),!this._listeners)return this;var t=arguments.length-1,e=arguments[t];arguments[t]={origin:e.origin,name:e.name,deliverer:this};var r=this._listeners[e.name],n=this._listeners["(all)"];return r&&D7(r,arguments),n&&D7(n,arguments),this},trigger(t){var e=[].slice.call(arguments,1);if(e.push({origin:this,name:t,deliverer:this}),this._delegators&&this._delegators.size()>0&&z7(this._delegators,e),!this._listeners)return this;if(!R7(this,"trigger",t,e))return this;var r=this._listeners[t],n=this._listeners["(all)"];return r&&D7(r,e),n&&D7(n,e),this},stopListening(t,e,r){var n=this._listeningTo;if(!n)return this;var i=!e&&!r;r||"object"!=typeof e||(r=this),t&&((n={})[t._listenId]=t);for(let t in n){let o=n[t];o.off(e,r,this),(i||S7(o._events))&&delete this._listeningTo[t]}return this}};function D7(t,e){t.forEach((t=>t.callback.apply(t.ctx,e)))}function z7(t,e){t.forEach((t=>L7.delegate.apply(t,e)))}var N7={listenTo:"on",listenToOnce:"once"};for(let t in N7){var F7=N7[t];L7[t]=function(t,e,r){this._listeningTo||(this._listeningTo={});var n=this._listeningTo;return t._listenId||(t._listenId=`${"l"||""}${++M7}`),n[t._listenId]=t,r||"object"!=typeof e||(r=this),t[F7](e,r,this),this}}function B7(t,e){if(e instanceof Array)e.forEach((e=>B7(t,e)));else{if(t.mixedIn=t.hasOwnProperty("mixedIn")?t.mixedIn:[],t.mixingIn=t.hasOwnProperty("mixingIn")?t.mixingIn:[],t.mixedIn.indexOf(e)>=0)return t;if(t.mixingIn.indexOf(e)>=0)throw new Error(`found cyclic dependencies between ${t.mixingIn}`);t.mixingIn.push(e),e.call(t),t.mixingIn.pop(),t.mixedIn.push(e)}return t}var U7=(...t)=>{var e=[];t.forEach((t=>t&&t.stack&&e.push(t.stack))),console.error("[ERROR]",...t,e.join(" "))},Y7=(...t)=>{var e=[];t.forEach((t=>t&&t.stack&&e.push(t.stack))),console.warn("[WARN]",...t,e.join(" "))},H7=(...t)=>console.log("[DEBUG]",...t);function G7(t,e,r){var n=t.__lookupGetter__(e);n?r?t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),c7(this.__cache__[e])})):t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),this.__cache__[e]})):U7(`${e} is not defined in ${t.constructor.name}`)}const W7={},$7=0,q7=1,X7=2,V7=3,K7=4,Q7=5,J7={VIEW:0,EDIT:1,SHIFT:2,ADD:3},Z7=30,t9="undefined"==typeof window?1:window.devicePixelRatio||(window.matchMedia&&window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches?2:1)||1,e9=["mousemove","mouseup","mousedown","mouseout","wheel","touchstart","touchmove","touchend","dblclick"],r9=["keydown","keyup"],n9={ALPHA:1,FONT_SIZE:15,FONT_FAMILY:"serif",FONT_COLOR:"black",TEXT_ALIGN:"center",TEXT_BASELINE:"middle",TEXT_WRAP:!1,BOLD:!1,ITALIC:!1,STROKE_STYLE:"#999",LINE_DASH:"solid"},i9={x:1,y:1};function o9(t,e,r){var{left:n=0,top:i=0,blurSize:o=0,color:a="transparent"}=e,s=r.rootModel.get("scale")||i9;t.shadowOffsetX=n*s.x*t9,t.shadowOffsetY=i*s.y*t9,t.shadowBlur=o*s.x*t9,t.shadowColor=a}var a9={gradation:function(t,e,r){var{type:n,subType:i,from:o,to:a,colors:s}=r;switch(i){case"linear":var c=e.createLinearGradient(o.x,o.y,a.x,a.y);break;case"radial":c=e.createRadialGradient(o.x,o.y,o.r,a.x,a.y,a.r);break;default:c=e.createLinearGradient(o.x,o.y,a.x,a.y)}s&&(s.forEach((function(t){c.addColorStop(t.endPoint,t.color)})),e.fillStyle=c,e.fill())},shadow:o9};function s9(t,e,r,n){var i=e.get("class");return!!i&&(i.split(" ")||[]).indexOf(t.substr(1))>=0}function c9(t,e,r,n){return t==e.get("type")}function u9(t,e,r,n){if("(all)"==t)return!0;switch(t.charAt(0)){case"#":return function(t,e){return t.substr(1)==e.get("id")}(t,e);case".":return s9(t,e);case"(":return function(t,e,r,n){switch(t){case"(all)":return!0;case"(self)":return n===e;case"(root)":return!n.parent&&n===e;case"(descendant)":return n!==e;case"(child)":return n===e.parent;default:return!1}}(t,e,0,n);default:return c9(t,e)}}function l9(t,e,r,n,i,o){return t(e,r,n,i)&&o.push(r),r.components&&r.components.forEach((r=>{l9(t,e,r,n,i,o)})),o}function h9(t,e,r,n){switch(t){case"(all)":return!0;case"(parent)":return r&&r.parent===e;case"(child)":case"(children)":return r&&r===e.parent;case"(sibling)":case"(siblings)":return r&&r.parent===e.parent&&r!==e;default:return!1}}function f9(t,e,r){if("(root)"==t)return[e];if("(self)"==t)return r?[r]:[];var n;switch(t.charAt(0)){case"#":let r=e.root.findAllById(t.substr(1));return r||[];case".":n=s9;break;case"(":n=h9;break;default:n=c9}return l9(n,t,e,r,e,[])}function d9(t){throw new Error('Could not dynamically require "'+t+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var p9={exports:{}};!function(e){var r=function(t){var e,r=Object.prototype,n=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},a=o.iterator||"@@iterator",s=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var o=e&&e.prototype instanceof y?e:y,a=Object.create(o.prototype),s=new O(n||[]);return i(a,"_invoke",{value:S(t,r,s)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var f="suspendedStart",d="suspendedYield",p="executing",g="completed",v={};function y(){}function m(){}function b(){}var x={};u(x,a,(function(){return this}));var w=Object.getPrototypeOf,A=w&&w(w(I([])));A&&A!==r&&n.call(A,a)&&(x=A);var _=b.prototype=y.prototype=Object.create(x);function k(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(i,o,a,s){var c=h(t[i],t,o);if("throw"!==c.type){var u=c.arg,l=u.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,a,s)}),(function(t){r("throw",t,a,s)})):e.resolve(l).then((function(t){u.value=t,a(u)}),(function(t){return r("throw",t,a,s)}))}s(c.arg)}var o;i(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,i){r(t,n,e,i)}))}return o=o?o.then(i,i):i()}})}function S(t,r,n){var i=f;return function(o,a){if(i===p)throw new Error("Generator is already running");if(i===g){if("throw"===o)throw a;return{value:e,done:!0}}for(n.method=o,n.arg=a;;){var s=n.delegate;if(s){var c=M(s,n);if(c){if(c===v)continue;return c}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===f)throw i=g,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=p;var u=h(t,r,n);if("normal"===u.type){if(i=n.done?g:d,u.arg===v)continue;return{value:u.arg,done:n.done}}"throw"===u.type&&(i=g,n.method="throw",n.arg=u.arg)}}}function M(t,r){var n=r.method,i=t.iterator[n];if(i===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,M(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var o=h(i,t.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,v;var a=o.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function P(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(t){if(null!=t){var r=t[a];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,o=function r(){for(;++i<t.length;)if(n.call(t,i))return r.value=t[i],r.done=!1,r;return r.value=e,r.done=!0,r};return o.next=o}}throw new TypeError(typeof t+" is not iterable")}return m.prototype=b,i(_,"constructor",{value:b,configurable:!0}),i(b,"constructor",{value:m,configurable:!0}),m.displayName=u(b,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,u(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},k(E.prototype),u(E.prototype,s,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,i,o){void 0===o&&(o=Promise);var a=new E(l(e,r,n,i),o);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},k(_),u(_,c,"Generator"),u(_,a,(function(){return this})),u(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=I,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(P),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function i(n,i){return s.type="throw",s.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return i("end");if(a.tryLoc<=this.prev){var c=n.call(a,"catchLoc"),u=n.call(a,"finallyLoc");if(c&&u){if(this.prev<a.catchLoc)return i(a.catchLoc,!0);if(this.prev<a.finallyLoc)return i(a.finallyLoc)}else if(c){if(this.prev<a.catchLoc)return i(a.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return i(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var o=i;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),P(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;P(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:I(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(e.exports);try{regeneratorRuntime=r}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=r:Function("r","regeneratorRuntime = r")(r)}Number.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},String.fromCodePoint||function(t){var e=function(e){for(var r=[],n=0,i="",o=0,a=arguments.length;o!==a;++o){var s=+arguments[o];if(!(s<1114111&&s>>>0===s))throw RangeError("Invalid code point: "+s);s<=65535?n=r.push(s):(s-=65536,n=r.push(55296+(s>>10),s%1024+56320)),n>=16383&&(i+=t.apply(null,r),r.length=0)}return i+t.apply(null,r)};try{Object.defineProperty(String,"fromCodePoint",{value:e,configurable:!0,writable:!0})}catch(t){String.fromCodePoint=e}}(String.fromCharCode),Object.is||(Object.is=function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e})
2
- /*! https://mths.be/codepointat v0.2.0 by @mathias */,String.prototype.codePointAt||function(){var t=function(){try{var t={},e=Object.defineProperty,r=e(t,t,t)&&e}catch(t){}return r}(),e=function(t){if(null==this)throw TypeError();var e=String(this),r=e.length,n=t?Number(t):0;if(n!=n&&(n=0),!(n<0||n>=r)){var i,o=e.charCodeAt(n);return o>=55296&&o<=56319&&r>n+1&&(i=e.charCodeAt(n+1))>=56320&&i<=57343?1024*(o-55296)+i-56320+65536:o}};t?t(String.prototype,"codePointAt",{value:e,configurable:!0,writable:!0}):String.prototype.codePointAt=e}(),Math.log10=Math.log10||function(t){return Math.log(t)*Math.LOG10E},e.exports=function(){function t(e,r,n){function i(a,s){if(!r[a]){if(!e[a]){if(!s&&d9)return d9(a);if(o)return o(a,!0);var c=new Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var u=r[a]={exports:{}};e[a][0].call(u.exports,(function(t){return i(e[a][1][t]||t)}),u,u.exports,t,e,r,n)}return r[a].exports}for(var o=d9,a=0;a<n.length;a++)i(n[a]);return i}return t}()({1:[function(t,e,r){var n=t("./utils"),i=function(){var t=n.stringToArray,e=["Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"],r=["Zeroth","First","Second","Third","Fourth","Fifth","Sixth","Seventh","Eighth","Ninth","Tenth","Eleventh","Twelfth","Thirteenth","Fourteenth","Fifteenth","Sixteenth","Seventeenth","Eighteenth","Nineteenth"],i=["Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred"],o=["Thousand","Million","Billion","Trillion"];function a(t,n){var a=function t(n,a,s){var c="";if(n<=19)c=(a?" and ":"")+(s?r[n]:e[n]);else if(n<100){var u=Math.floor(n/10),l=n%10;c=(a?" and ":"")+i[u-2],l>0?c+="-"+t(l,!1,s):s&&(c=c.substring(0,c.length-1)+"ieth")}else if(n<1e3){var h=Math.floor(n/100),f=n%100;c=(a?", ":"")+e[h]+" Hundred",f>0?c+=t(f,!0,s):s&&(c+="th")}else{var d=Math.floor(Math.log10(n)/3);d>o.length&&(d=o.length);var p=Math.pow(10,3*d),g=Math.floor(n/p),v=n-g*p;c=(a?", ":"")+t(g,!1,!1)+" "+o[d-1],v>0?c+=t(v,!0,s):s&&(c+="th")}return c};return a(t,!1,n)}var s={};function c(t){var e=t.split(/,\s|\sand\s|[\s\\-]/).map((function(t){return s[t]})),r=[0];e.forEach((function(t){if(t<100){var e=r.pop();e>=1e3&&(r.push(e),e=0),r.push(e+t)}else r.push(r.pop()*t)}));var n=r.reduce((function(t,e){return t+e}),0);return n}e.forEach((function(t,e){s[t.toLowerCase()]=e})),r.forEach((function(t,e){s[t.toLowerCase()]=e})),i.forEach((function(t,e){var r=t.toLowerCase();s[r]=10*(e+2),s[r.substring(0,t.length-1)+"ieth"]=s[r]})),s.hundredth=100,o.forEach((function(t,e){var r=t.toLowerCase(),n=Math.pow(10,3*(e+1));s[r]=n,s[r+"th"]=n}));var u=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],l={M:1e3,D:500,C:100,L:50,X:10,V:5,I:1};function h(t){for(var e=0;e<u.length;e++){var r=u[e];if(t>=r[0])return r[1]+h(t-r[0])}return""}function f(t){for(var e=0,r=1,n=t.length-1;n>=0;n--){var i=t[n],o=l[i];o<r?e-=o:(r=o,e+=o)}return e}function d(t,e){for(var r=[],n=e.charCodeAt(0);t>0;)r.unshift(String.fromCharCode((t-1)%26+n)),t=Math.floor((t-1)/26);return r.join("")}function p(t,e){for(var r=e.charCodeAt(0),n=0,i=0;i<t.length;i++)n+=(t.charCodeAt(t.length-i-1)-r+1)*Math.pow(26,i);return n}function g(t,e){if(void 0!==t)return m(t=Math.floor(t),x(e))}var v={DECIMAL:"decimal",LETTERS:"letters",ROMAN:"roman",WORDS:"words",SEQUENCE:"sequence"},y={UPPER:"upper",LOWER:"lower",TITLE:"title"};function m(e,r){var n,i=e<0;switch(e=Math.abs(e),r.primary){case v.LETTERS:n=d(e,r.case===y.UPPER?"A":"a");break;case v.ROMAN:n=h(e),r.case===y.UPPER&&(n=n.toUpperCase());break;case v.WORDS:n=a(e,r.ordinal),r.case===y.UPPER?n=n.toUpperCase():r.case===y.LOWER&&(n=n.toLowerCase());break;case v.DECIMAL:n=""+e;var o=r.mandatoryDigits-n.length;if(o>0){var s=new Array(o+1).join("0");n=s+n}if(48!==r.zeroCode&&(n=t(n).map((function(t){return String.fromCodePoint(t.codePointAt(0)+r.zeroCode-48)})).join("")),r.regular)for(var c=Math.floor((n.length-1)/r.groupingSeparators.position);c>0;c--){var u=n.length-c*r.groupingSeparators.position;n=n.substr(0,u)+r.groupingSeparators.character+n.substr(u)}else r.groupingSeparators.reverse().forEach((function(t){var e=n.length-t.position;n=n.substr(0,e)+t.character+n.substr(e)}));if(r.ordinal){var l={1:"st",2:"nd",3:"rd"}[n[n.length-1]];(!l||n.length>1&&"1"===n[n.length-2])&&(l="th"),n+=l}break;case v.SEQUENCE:throw{code:"D3130",value:r.token}}return i&&(n="-"+n),n}var b=[48,1632,1776,1984,2406,2534,2662,2790,2918,3046,3174,3302,3430,3558,3664,3792,3872,4160,4240,6112,6160,6470,6608,6784,6800,6992,7088,7232,7248,42528,43216,43264,43472,43504,43600,44016,65296];function x(e){var r,n={type:"integer",primary:v.DECIMAL,case:y.LOWER,ordinal:!1},i=e.lastIndexOf(";");switch(-1===i?r=e:(r=e.substring(0,i),"o"===e.substring(i+1)[0]&&(n.ordinal=!0)),r){case"A":n.case=y.UPPER;case"a":n.primary=v.LETTERS;break;case"I":n.case=y.UPPER;case"i":n.primary=v.ROMAN;break;case"W":n.case=y.UPPER,n.primary=v.WORDS;break;case"Ww":n.case=y.TITLE,n.primary=v.WORDS;break;case"w":n.primary=v.WORDS;break;default:var o=null,a=0,s=0,c=[],u=0,l=t(r).map((function(t){return t.codePointAt(0)})).reverse();if(l.forEach((function(t){for(var e=!1,r=0;r<b.length;r++){var n=b[r];if(t>=n&&t<=n+9){if(e=!0,a++,u++,null===o)o=n;else if(n!==o)throw{code:"D3131"};break}}e||(35===t?(u++,s++):c.push({position:u,character:String.fromCodePoint(t)}))})),a>0){n.primary=v.DECIMAL,n.zeroCode=o,n.mandatoryDigits=a,n.optionalDigits=s;var h=function(t){if(0===t.length)return 0;for(var e=t[0].character,r=1;r<t.length;r++)if(t[r].character!==e)return 0;for(var n=t.map((function(t){return t.position})),i=function t(e,r){return 0===r?e:t(r,e%r)},o=n.reduce(i),a=1;a<=n.length;a++)if(-1===n.indexOf(a*o))return 0;return o},f=h(c);f>0?(n.regular=!0,n.groupingSeparators={position:f,character:c[0].character}):(n.regular=!1,n.groupingSeparators=c)}else n.primary=v.SEQUENCE,n.token=r}return n}var w={Y:"1",M:"1",D:"1",d:"1",F:"n",W:"1",w:"1",X:"1",x:"1",H:"1",h:"1",P:"n",m:"01",s:"01",f:"1",Z:"01:01",z:"01:01",C:"n",E:"n"};function A(t){for(var e=[],r={type:"datetime",parts:e},n=function(r,n){if(n>r){var i=t.substring(r,n);i=i.split("]]").join("]"),e.push({type:"literal",value:i})}},i=0,o=0;o<t.length;){if("["===t.charAt(o)){if("["===t.charAt(o+1)){n(i,o),e.push({type:"literal",value:"["}),i=o+=2;continue}if(n(i,o),i=o,-1===(o=t.indexOf("]",i)))throw{code:"D3135"};var a,s=t.substring(i+1,o),c={type:"marker",component:(s=s.split(/\s+/).join("")).charAt(0)},u=s.lastIndexOf(",");if(-1!==u){var l=s.substring(u+1),h=l.indexOf("-"),f=void 0,d=void 0,p=function(t){return void 0===t||"*"===t?void 0:parseInt(t)};-1===h?f=l:(f=l.substring(0,h),d=l.substring(h+1));var g={min:p(f),max:p(d)};c.width=g,a=s.substring(1,u)}else a=s.substring(1);if(1===a.length)c.presentation1=a;else if(a.length>1){var v=a.charAt(a.length-1);-1!=="atco".indexOf(v)?(c.presentation2=v,"o"===v&&(c.ordinal=!0),c.presentation1=a.substring(0,a.length-1)):c.presentation1=a}else c.presentation1=w[c.component];if(void 0===c.presentation1)throw{code:"D3132",value:c.component};if("n"===c.presentation1[0])c.names=y.LOWER;else if("N"===c.presentation1[0])"n"===c.presentation1[1]?c.names=y.TITLE:c.names=y.UPPER;else if(-1!=="YMDdFWwXxHhmsf".indexOf(c.component)){var m=c.presentation1;if(c.presentation2&&(m+=";"+c.presentation2),c.integerFormat=x(m),c.width&&void 0!==c.width.min&&c.integerFormat.mandatoryDigits<c.width.min&&(c.integerFormat.mandatoryDigits=c.width.min),-1!=="YMD".indexOf(c.component))if(c.n=-1,c.width&&void 0!==c.width.max)c.n=c.width.max,c.integerFormat.mandatoryDigits=c.n;else{var b=c.integerFormat.mandatoryDigits+c.integerFormat.optionalDigits;b>=2&&(c.n=b)}}"Z"!==c.component&&"z"!==c.component||(c.integerFormat=x(c.presentation1)),e.push(c),i=o+1}o++}return n(i,o),r}var _=["","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],k=["January","February","March","April","May","June","July","August","September","October","November","December"],E=864e5,S=function(t){var e=Date.UTC(t.year,t.month),r=new Date(e).getUTCDay();return 0===r&&(r=7),r>4?e+(8-r)*E:e-(r-1)*E},M=function t(e,r){return{year:e,month:r,nextMonth:function(){return 11===r?t(e+1,0):t(e,r+1)},previousMonth:function(){return 0===r?t(e-1,11):t(e,r-1)},nextYear:function(){return t(e+1,r)},previousYear:function(){return t(e-1,r)}}},T=function(t,e){return(e-t)/(7*E)+1},P=function(t,e){var r;switch(e){case"Y":r=t.getUTCFullYear();break;case"M":r=t.getUTCMonth()+1;break;case"D":r=t.getUTCDate();break;case"d":r=(Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate())-Date.UTC(t.getUTCFullYear(),0))/E+1;break;case"F":0===(r=t.getUTCDay())&&(r=7);break;case"W":var n=M(t.getUTCFullYear(),0),i=S(n),o=Date.UTC(n.year,t.getUTCMonth(),t.getUTCDate()),a=T(i,o);if(a>52)o>=S(n.nextYear())&&(a=1);else if(a<1){var s=S(n.previousYear());a=T(s,o)}r=Math.floor(a);break;case"w":var c=M(t.getUTCFullYear(),t.getUTCMonth()),u=S(c),l=Date.UTC(c.year,c.month,t.getUTCDate()),h=T(u,l);if(h>4)l>=S(c.nextMonth())&&(h=1);else if(h<1){var f=S(c.previousMonth());h=T(f,l)}r=Math.floor(h);break;case"X":var d=M(t.getUTCFullYear(),0),p=S(d),g=S(d.nextYear()),v=t.getTime();r=v<p?d.year-1:v>=g?d.year+1:d.year;break;case"x":var y=M(t.getUTCFullYear(),t.getUTCMonth()),m=S(y),b=y.nextMonth(),x=S(b),w=t.getTime();r=w<m?y.previousMonth().month+1:w>=x?b.month+1:y.month+1;break;case"H":r=t.getUTCHours();break;case"h":r=t.getUTCHours(),0==(r%=12)&&(r=12);break;case"P":r=t.getUTCHours()>=12?"pm":"am";break;case"m":r=t.getUTCMinutes();break;case"s":r=t.getUTCSeconds();break;case"f":r=t.getUTCMilliseconds();break;case"Z":case"z":break;case"C":case"E":r="ISO"}return r},O=null;function I(t,e,r){var n=0,i=0;if(void 0!==r){var o=parseInt(r);n=Math.floor(o/100),i=o%100}var a,s=function(t,e){var r=P(t,e.component);if(-1!=="YMDdFWwXxHhms".indexOf(e.component))if("Y"===e.component&&-1!==e.n&&(r%=Math.pow(10,e.n)),e.names){if("M"===e.component||"x"===e.component)r=k[r-1];else{if("F"!==e.component)throw{code:"D3133",value:e.component};r=_[r]}e.names===y.UPPER?r=r.toUpperCase():e.names===y.LOWER&&(r=r.toLowerCase()),e.width&&r.length>e.width.max&&(r=r.substring(0,e.width.max))}else r=m(r,e.integerFormat);else if("f"===e.component)r=m(r,e.integerFormat);else if("Z"===e.component||"z"===e.component){var o=100*n+i;if(e.integerFormat.regular)r=m(o,e.integerFormat);else{var a=e.integerFormat.mandatoryDigits;if(1===a||2===a)r=m(n,e.integerFormat),0!==i&&(r+=":"+g(i,"00"));else{if(3!==a&&4!==a)throw{code:"D3134",value:a};r=m(o,e.integerFormat)}}o>=0&&(r="+"+r),"z"===e.component&&(r="GMT"+r),0===o&&"t"===e.presentation2&&(r="Z")}return r};void 0===e?(null===O&&(O=A("[Y0001]-[M01]-[D01]T[H01]:[m01]:[s01].[f001][Z01:01t]")),a=O):a=A(e);var c=new Date(t+60*(60*n+i)*1e3),u="";return a.parts.forEach((function(t){"literal"===t.type?u+=t.value:u+=s(c,t)})),u}function C(t){var e={};if("datetime"===t.type)e.type="datetime",e.parts=t.parts.map((function(t){var e={};if("literal"===t.type)e.regex=t.value.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");else if("Z"===t.component||"z"===t.component){var r;Array.isArray(t.integerFormat.groupingSeparators)||(r=t.integerFormat.groupingSeparators),e.regex="","z"===t.component&&(e.regex="GMT"),e.regex+="[-+][0-9]+",r&&(e.regex+=r.character+"[0-9]+"),e.parse=function(e){"z"===t.component&&(e=e.substring(3));var n=0,i=0;return r?(n=Number.parseInt(e.substring(0,e.indexOf(r.character))),i=Number.parseInt(e.substring(e.indexOf(r.character)+1))):e.length-1<=2?n=Number.parseInt(e):(n=Number.parseInt(e.substring(0,3)),i=Number.parseInt(e.substring(3))),60*n+i}}else if(t.integerFormat)t.integerFormat.n=t.n,e=C(t.integerFormat);else{e.regex="[a-zA-Z]+";var n={};if("M"===t.component||"x"===t.component)k.forEach((function(e,r){t.width&&t.width.max?n[e.substring(0,t.width.max)]=r+1:n[e]=r+1}));else if("F"===t.component)_.forEach((function(e,r){r>0&&(t.width&&t.width.max?n[e.substring(0,t.width.max)]=r:n[e]=r)}));else{if("P"!==t.component)throw{code:"D3133",value:t.component};n={am:0,AM:0,pm:1,PM:1}}e.parse=function(t){return n[t]}}return e.component=t.component,e}));else{e.type="integer";var r,n=t.case===y.UPPER;switch(r=t.n&&t.n>0?0===t.optionalDigits?"{".concat(t.n,"}"):"{".concat(t.n-t.optionalDigits,",").concat(t.n,"}"):"+",t.primary){case v.LETTERS:e.regex=n?"[A-Z]+":"[a-z]+",e.parse=function(t){return p(t,n?"A":"a")};break;case v.ROMAN:e.regex=n?"[MDCLXVI]+":"[mdclxvi]+",e.parse=function(t){return f(n?t:t.toUpperCase())};break;case v.WORDS:e.regex="(?:"+Object.keys(s).concat("and","[\\-, ]").join("|")+")+",e.parse=function(t){return c(t.toLowerCase())};break;case v.DECIMAL:e.regex="[0-9]".concat(r),t.ordinal&&(e.regex+="(?:th|st|nd|rd)"),e.parse=function(e){var r=e;return t.ordinal&&(r=e.substring(0,e.length-2)),t.regular?r=r.split(",").join(""):t.groupingSeparators.forEach((function(t){r=r.split(t.character).join("")})),48!==t.zeroCode&&(r=r.split("").map((function(e){return String.fromCodePoint(e.codePointAt(0)-t.zeroCode+48)})).join("")),parseInt(r)};break;case v.SEQUENCE:throw{code:"D3130",value:t.token}}}return e}function R(t,e){if(void 0!==t)return C(x(e)).parse(t)}function j(t,e){var r=C(A(e)),n="^"+r.parts.map((function(t){return"("+t.regex+")"})).join("")+"$",i=new RegExp(n,"i").exec(t);if(null!==i){for(var o=161,a=130,s=84,c=72,u=23,l=47,h={},f=1;f<i.length;f++){var d=r.parts[f-1];d.parse&&(h[d.component]=d.parse(i[f]))}if(0===Object.getOwnPropertyNames(h).length)return;var p=0,g=function(t){p<<=1,p+=t?1:0},v=function(t){return!(~t&p||!(t&p))};"YXMxWwdD".split("").forEach((function(t){return g(h[t])}));var y=!v(o)&&v(a),m=v(s),b=!m&&v(c);p=0,"PHhmsf".split("").forEach((function(t){return g(h[t])}));var x=!v(u)&&v(l),w=(y?"YD":m?"XxwF":b?"XWF":"YMD")+(x?"Phmsf":"Hmsf"),_=this.environment.timestamp,k=!1,E=!1;if(w.split("").forEach((function(t){if(void 0===h[t])k?(h[t]=-1!=="MDd".indexOf(t)?1:0,E=!0):h[t]=P(_,t);else if(k=!0,E)throw{code:"D3136"}})),h.M>0?h.M-=1:h.M=0,y){var S=Date.UTC(h.Y,0),M=1e3*(h.d-1)*60*60*24,T=new Date(S+M);h.M=T.getUTCMonth(),h.D=T.getUTCDate()}if(m)throw{code:"D3136"};if(b)throw{code:"D3136"};x&&(h.H=12===h.h?0:h.h,1===h.P&&(h.H+=12));var O=Date.UTC(h.Y,h.M,h.D,h.H,h.m,h.s,h.f);return(h.Z||h.z)&&(O-=60*(h.Z||h.z)*1e3),O}}var L=new RegExp("^\\d{4}(-[01]\\d)*(-[0-3]\\d)*(T[0-2]\\d:[0-5]\\d:[0-5]\\d)*(\\.\\d+)?([+-][0-2]\\d:?[0-5]\\d|Z)?$");function D(t,e){if(void 0!==t){if(void 0===e){if(!L.test(t))throw{stack:(new Error).stack,code:"D3110",value:t};return Date.parse(t)}return j.call(this,t,e)}}function z(t,e,r){if(void 0!==t)return I.call(this,t,e,r)}return{formatInteger:g,parseInteger:R,fromMillis:z,toMillis:D}}();e.exports=i},{"./utils":6}],2:[function(e,r,n){(function(t){(function(){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(){
1
+ var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},e=function(t){return t&&t.Math===Math&&t},r=e("object"==typeof globalThis&&globalThis)||e("object"==typeof window&&window)||e("object"==typeof self&&self)||e("object"==typeof t&&t)||e("object"==typeof t&&t)||function(){return this}()||Function("return this")(),n={},i=function(t){try{return!!t()}catch(t){return!0}},a=!i((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})),s=!i((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),o=s,l=Function.prototype.call,h=o?l.bind(l):function(){return l.apply(l,arguments)},c={},u={}.propertyIsEnumerable,d=Object.getOwnPropertyDescriptor,p=d&&!u.call({1:2},1);c.f=p?function(t){var e=d(this,t);return!!e&&e.enumerable}:u;var f,g,v=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},m=s,y=Function.prototype,b=y.call,w=m&&y.bind.bind(b,b),x=m?w:function(t){return function(){return b.apply(t,arguments)}},A=x,_=A({}.toString),k=A("".slice),S=function(t){return k(_(t),8,-1)},E=i,M=S,T=Object,C=x("".split),P=E((function(){return!T("z").propertyIsEnumerable(0)}))?function(t){return"String"===M(t)?C(t,""):T(t)}:T,I=function(t){return null==t},R=I,O=TypeError,L=function(t){if(R(t))throw new O("Can't call method on "+t);return t},D=P,F=L,N=function(t){return D(F(t))},j="object"==typeof document&&document.all,B=void 0===j&&void 0!==j?function(t){return"function"==typeof t||t===j}:function(t){return"function"==typeof t},z=B,W=function(t){return"object"==typeof t?null!==t:z(t)},U=r,H=B,G=function(t,e){return arguments.length<2?(r=U[t],H(r)?r:void 0):U[t]&&U[t][e];var r},Y=x({}.isPrototypeOf),V=r.navigator,q=V&&V.userAgent,X=q?String(q):"",$=r,K=X,Q=$.process,J=$.Deno,Z=Q&&Q.versions||J&&J.version,tt=Z&&Z.v8;tt&&(g=(f=tt.split("."))[0]>0&&f[0]<4?1:+(f[0]+f[1])),!g&&K&&(!(f=K.match(/Edge\/(\d+)/))||f[1]>=74)&&(f=K.match(/Chrome\/(\d+)/))&&(g=+f[1]);var et=g,rt=et,nt=i,it=r.String,at=!!Object.getOwnPropertySymbols&&!nt((function(){var t=Symbol("symbol detection");return!it(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&rt&&rt<41})),st=at&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,ot=G,lt=B,ht=Y,ct=Object,ut=st?function(t){return"symbol"==typeof t}:function(t){var e=ot("Symbol");return lt(e)&&ht(e.prototype,ct(t))},dt=String,pt=function(t){try{return dt(t)}catch(t){return"Object"}},ft=B,gt=pt,vt=TypeError,mt=function(t){if(ft(t))return t;throw new vt(gt(t)+" is not a function")},yt=mt,bt=I,wt=function(t,e){var r=t[e];return bt(r)?void 0:yt(r)},xt=h,At=B,_t=W,kt=TypeError,St=function(t,e){var r,n;if("string"===e&&At(r=t.toString)&&!_t(n=xt(r,t)))return n;if(At(r=t.valueOf)&&!_t(n=xt(r,t)))return n;if("string"!==e&&At(r=t.toString)&&!_t(n=xt(r,t)))return n;throw new kt("Can't convert object to primitive value")},Et={exports:{}},Mt=r,Tt=Object.defineProperty,Ct=function(t,e){try{Tt(Mt,t,{value:e,configurable:!0,writable:!0})}catch(r){Mt[t]=e}return e},Pt=r,It=Ct,Rt="__core-js_shared__",Ot=Et.exports=Pt[Rt]||It(Rt,{});(Ot.versions||(Ot.versions=[])).push({version:"3.40.0",mode:"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.40.0/LICENSE",source:"https://github.com/zloirock/core-js"});var Lt=Et.exports,Dt=function(t,e){return Lt[t]||(Lt[t]=e||{})},Ft=L,Nt=Object,jt=function(t){return Nt(Ft(t))},Bt=jt,zt=x({}.hasOwnProperty),Wt=Object.hasOwn||function(t,e){return zt(Bt(t),e)},Ut=x,Ht=0,Gt=Math.random(),Yt=Ut(1..toString),Vt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Yt(++Ht+Gt,36)},qt=Dt,Xt=Wt,$t=Vt,Kt=at,Qt=st,Jt=r.Symbol,Zt=qt("wks"),te=Qt?Jt.for||Jt:Jt&&Jt.withoutSetter||$t,ee=function(t){return Xt(Zt,t)||(Zt[t]=Kt&&Xt(Jt,t)?Jt[t]:te("Symbol."+t)),Zt[t]},re=h,ne=W,ie=ut,ae=wt,se=St,oe=TypeError,le=ee("toPrimitive"),he=function(t,e){if(!ne(t)||ie(t))return t;var r,n=ae(t,le);if(n){if(void 0===e&&(e="default"),r=re(n,t,e),!ne(r)||ie(r))return r;throw new oe("Can't convert object to primitive value")}return void 0===e&&(e="number"),se(t,e)},ce=he,ue=ut,de=function(t){var e=ce(t,"string");return ue(e)?e:e+""},pe=W,fe=r.document,ge=pe(fe)&&pe(fe.createElement),ve=function(t){return ge?fe.createElement(t):{}},me=ve,ye=!a&&!i((function(){return 7!==Object.defineProperty(me("div"),"a",{get:function(){return 7}}).a})),be=a,we=h,xe=c,Ae=v,_e=N,ke=de,Se=Wt,Ee=ye,Me=Object.getOwnPropertyDescriptor;n.f=be?Me:function(t,e){if(t=_e(t),e=ke(e),Ee)try{return Me(t,e)}catch(t){}if(Se(t,e))return Ae(!we(xe.f,t,e),t[e])};var Te={},Ce=a&&i((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),Pe=W,Ie=String,Re=TypeError,Oe=function(t){if(Pe(t))return t;throw new Re(Ie(t)+" is not an object")},Le=a,De=ye,Fe=Ce,Ne=Oe,je=de,Be=TypeError,ze=Object.defineProperty,We=Object.getOwnPropertyDescriptor,Ue="enumerable",He="configurable",Ge="writable";Te.f=Le?Fe?function(t,e,r){if(Ne(t),e=je(e),Ne(r),"function"==typeof t&&"prototype"===e&&"value"in r&&Ge in r&&!r[Ge]){var n=We(t,e);n&&n[Ge]&&(t[e]=r.value,r={configurable:He in r?r[He]:n[He],enumerable:Ue in r?r[Ue]:n[Ue],writable:!1})}return ze(t,e,r)}:ze:function(t,e,r){if(Ne(t),e=je(e),Ne(r),De)try{return ze(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new Be("Accessors not supported");return"value"in r&&(t[e]=r.value),t};var Ye=Te,Ve=v,qe=a?function(t,e,r){return Ye.f(t,e,Ve(1,r))}:function(t,e,r){return t[e]=r,t},Xe={exports:{}},$e=a,Ke=Wt,Qe=Function.prototype,Je=$e&&Object.getOwnPropertyDescriptor,Ze=Ke(Qe,"name"),tr={EXISTS:Ze,PROPER:Ze&&"something"===function(){}.name,CONFIGURABLE:Ze&&(!$e||$e&&Je(Qe,"name").configurable)},er=x,rr=B,nr=Et.exports,ir=er(Function.toString);rr(nr.inspectSource)||(nr.inspectSource=function(t){return ir(t)});var ar,sr,or,lr=nr.inspectSource,hr=B,cr=r.WeakMap,ur=hr(cr)&&/native code/.test(String(cr)),dr=Vt,pr=Dt("keys"),fr=function(t){return pr[t]||(pr[t]=dr(t))},gr={},vr=ur,mr=r,yr=W,br=qe,wr=Wt,xr=Et.exports,Ar=fr,_r=gr,kr="Object already initialized",Sr=mr.TypeError,Er=mr.WeakMap;if(vr||xr.state){var Mr=xr.state||(xr.state=new Er);Mr.get=Mr.get,Mr.has=Mr.has,Mr.set=Mr.set,ar=function(t,e){if(Mr.has(t))throw new Sr(kr);return e.facade=t,Mr.set(t,e),e},sr=function(t){return Mr.get(t)||{}},or=function(t){return Mr.has(t)}}else{var Tr=Ar("state");_r[Tr]=!0,ar=function(t,e){if(wr(t,Tr))throw new Sr(kr);return e.facade=t,br(t,Tr,e),e},sr=function(t){return wr(t,Tr)?t[Tr]:{}},or=function(t){return wr(t,Tr)}}var Cr={set:ar,get:sr,has:or,enforce:function(t){return or(t)?sr(t):ar(t,{})},getterFor:function(t){return function(e){var r;if(!yr(e)||(r=sr(e)).type!==t)throw new Sr("Incompatible receiver, "+t+" required");return r}}},Pr=x,Ir=i,Rr=B,Or=Wt,Lr=a,Dr=tr.CONFIGURABLE,Fr=lr,Nr=Cr.enforce,jr=Cr.get,Br=String,zr=Object.defineProperty,Wr=Pr("".slice),Ur=Pr("".replace),Hr=Pr([].join),Gr=Lr&&!Ir((function(){return 8!==zr((function(){}),"length",{value:8}).length})),Yr=String(String).split("String"),Vr=Xe.exports=function(t,e,r){"Symbol("===Wr(Br(e),0,7)&&(e="["+Ur(Br(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(e="get "+e),r&&r.setter&&(e="set "+e),(!Or(t,"name")||Dr&&t.name!==e)&&(Lr?zr(t,"name",{value:e,configurable:!0}):t.name=e),Gr&&r&&Or(r,"arity")&&t.length!==r.arity&&zr(t,"length",{value:r.arity});try{r&&Or(r,"constructor")&&r.constructor?Lr&&zr(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var n=Nr(t);return Or(n,"source")||(n.source=Hr(Yr,"string"==typeof e?e:"")),t};Function.prototype.toString=Vr((function(){return Rr(this)&&jr(this).source||Fr(this)}),"toString");var qr=B,Xr=Te,$r=Xe.exports,Kr=Ct,Qr=function(t,e,r,n){n||(n={});var i=n.enumerable,a=void 0!==n.name?n.name:e;if(qr(r)&&$r(r,a,n),n.global)i?t[e]=r:Kr(e,r);else{try{n.unsafe?t[e]&&(i=!0):delete t[e]}catch(t){}i?t[e]=r:Xr.f(t,e,{value:r,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return t},Jr={},Zr=Math.ceil,tn=Math.floor,en=Math.trunc||function(t){var e=+t;return(e>0?tn:Zr)(e)},rn=en,nn=function(t){var e=+t;return e!=e||0===e?0:rn(e)},an=nn,sn=Math.max,on=Math.min,ln=function(t,e){var r=an(t);return r<0?sn(r+e,0):on(r,e)},hn=nn,cn=Math.min,un=function(t){var e=hn(t);return e>0?cn(e,9007199254740991):0},dn=un,pn=function(t){return dn(t.length)},fn=N,gn=ln,vn=pn,mn=function(t){return function(e,r,n){var i=fn(e),a=vn(i);if(0===a)return!t&&-1;var s,o=gn(n,a);if(t&&r!=r){for(;a>o;)if((s=i[o++])!=s)return!0}else for(;a>o;o++)if((t||o in i)&&i[o]===r)return t||o||0;return!t&&-1}},yn={includes:mn(!0),indexOf:mn(!1)},bn=Wt,wn=N,xn=yn.indexOf,An=gr,_n=x([].push),kn=function(t,e){var r,n=wn(t),i=0,a=[];for(r in n)!bn(An,r)&&bn(n,r)&&_n(a,r);for(;e.length>i;)bn(n,r=e[i++])&&(~xn(a,r)||_n(a,r));return a},Sn=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],En=kn,Mn=Sn.concat("length","prototype");Jr.f=Object.getOwnPropertyNames||function(t){return En(t,Mn)};var Tn={};Tn.f=Object.getOwnPropertySymbols;var Cn=G,Pn=Jr,In=Tn,Rn=Oe,On=x([].concat),Ln=Cn("Reflect","ownKeys")||function(t){var e=Pn.f(Rn(t)),r=In.f;return r?On(e,r(t)):e},Dn=Wt,Fn=Ln,Nn=n,jn=Te,Bn=function(t,e,r){for(var n=Fn(e),i=jn.f,a=Nn.f,s=0;s<n.length;s++){var o=n[s];Dn(t,o)||r&&Dn(r,o)||i(t,o,a(e,o))}},zn=i,Wn=B,Un=/#|\.prototype\./,Hn=function(t,e){var r=Yn[Gn(t)];return r===qn||r!==Vn&&(Wn(e)?zn(e):!!e)},Gn=Hn.normalize=function(t){return String(t).replace(Un,".").toLowerCase()},Yn=Hn.data={},Vn=Hn.NATIVE="N",qn=Hn.POLYFILL="P",Xn=Hn,$n=r,Kn=n.f,Qn=qe,Jn=Qr,Zn=Ct,ti=Bn,ei=Xn,ri=function(t,e){var r,n,i,a,s,o=t.target,l=t.global,h=t.stat;if(r=l?$n:h?$n[o]||Zn(o,{}):$n[o]&&$n[o].prototype)for(n in e){if(a=e[n],i=t.dontCallGetSet?(s=Kn(r,n))&&s.value:r[n],!ei(l?n:o+(h?".":"#")+n,t.forced)&&void 0!==i){if(typeof a==typeof i)continue;ti(a,i)}(t.sham||i&&i.sham)&&Qn(a,"sham",!0),Jn(r,n,a,t)}},ni={};ni[ee("toStringTag")]="z";var ii="[object z]"===String(ni),ai=ii,si=B,oi=S,li=ee("toStringTag"),hi=Object,ci="Arguments"===oi(function(){return arguments}()),ui=ai?oi:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=hi(t),li))?r:ci?oi(e):"Object"===(n=oi(e))&&si(e.callee)?"Arguments":n},di=ui,pi=String,fi=function(t){if("Symbol"===di(t))throw new TypeError("Cannot convert a Symbol value to a string");return pi(t)},gi={},vi=kn,mi=Sn,yi=Object.keys||function(t){return vi(t,mi)},bi=a,wi=Ce,xi=Te,Ai=Oe,_i=N,ki=yi;gi.f=bi&&!wi?Object.defineProperties:function(t,e){Ai(t);for(var r,n=_i(e),i=ki(e),a=i.length,s=0;a>s;)xi.f(t,r=i[s++],n[r]);return t};var Si,Ei=G("document","documentElement"),Mi=Oe,Ti=gi,Ci=Sn,Pi=gr,Ii=Ei,Ri=ve,Oi="prototype",Li="script",Di=fr("IE_PROTO"),Fi=function(){},Ni=function(t){return"<"+Li+">"+t+"</"+Li+">"},ji=function(t){t.write(Ni("")),t.close();var e=t.parentWindow.Object;return t=null,e},Bi=function(){try{Si=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;Bi="undefined"!=typeof document?document.domain&&Si?ji(Si):(e=Ri("iframe"),r="java"+Li+":",e.style.display="none",Ii.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(Ni("document.F=Object")),t.close(),t.F):ji(Si);for(var n=Ci.length;n--;)delete Bi[Oi][Ci[n]];return Bi()};Pi[Di]=!0;var zi=Object.create||function(t,e){var r;return null!==t?(Fi[Oi]=Mi(t),r=new Fi,Fi[Oi]=null,r[Di]=t):r=Bi(),void 0===e?r:Ti.f(r,e)},Wi={},Ui=x([].slice),Hi=S,Gi=N,Yi=Jr.f,Vi=Ui,qi="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Wi.f=function(t){return qi&&"Window"===Hi(t)?function(t){try{return Yi(t)}catch(t){return Vi(qi)}}(t):Yi(Gi(t))};var Xi=Xe.exports,$i=Te,Ki=function(t,e,r){return r.get&&Xi(r.get,e,{getter:!0}),r.set&&Xi(r.set,e,{setter:!0}),$i.f(t,e,r)},Qi={},Ji=ee;Qi.f=Ji;var Zi=r,ta=Zi,ea=Wt,ra=Qi,na=Te.f,ia=function(t){var e=ta.Symbol||(ta.Symbol={});ea(e,t)||na(e,t,{value:ra.f(t)})},aa=h,sa=G,oa=ee,la=Qr,ha=function(){var t=sa("Symbol"),e=t&&t.prototype,r=e&&e.valueOf,n=oa("toPrimitive");e&&!e[n]&&la(e,n,(function(t){return aa(r,this)}),{arity:1})},ca=Te.f,ua=Wt,da=ee("toStringTag"),pa=function(t,e,r){t&&!r&&(t=t.prototype),t&&!ua(t,da)&&ca(t,da,{configurable:!0,value:e})},fa=S,ga=x,va=function(t){if("Function"===fa(t))return ga(t)},ma=mt,ya=s,ba=va(va.bind),wa=function(t,e){return ma(t),void 0===e?t:ya?ba(t,e):function(){return t.apply(e,arguments)}},xa=S,Aa=Array.isArray||function(t){return"Array"===xa(t)},_a=x,ka=i,Sa=B,Ea=ui,Ma=lr,Ta=function(){},Ca=G("Reflect","construct"),Pa=/^\s*(?:class|function)\b/,Ia=_a(Pa.exec),Ra=!Pa.test(Ta),Oa=function(t){if(!Sa(t))return!1;try{return Ca(Ta,[],t),!0}catch(t){return!1}},La=function(t){if(!Sa(t))return!1;switch(Ea(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Ra||!!Ia(Pa,Ma(t))}catch(t){return!0}};La.sham=!0;var Da=!Ca||ka((function(){var t;return Oa(Oa.call)||!Oa(Object)||!Oa((function(){t=!0}))||t}))?La:Oa,Fa=Aa,Na=Da,ja=W,Ba=ee("species"),za=Array,Wa=function(t){var e;return Fa(t)&&(e=t.constructor,(Na(e)&&(e===za||Fa(e.prototype))||ja(e)&&null===(e=e[Ba]))&&(e=void 0)),void 0===e?za:e},Ua=function(t,e){return new(Wa(t))(0===e?0:e)},Ha=wa,Ga=P,Ya=jt,Va=pn,qa=Ua,Xa=x([].push),$a=function(t){var e=1===t,r=2===t,n=3===t,i=4===t,a=6===t,s=7===t,o=5===t||a;return function(l,h,c,u){for(var d,p,f=Ya(l),g=Ga(f),v=Va(g),m=Ha(h,c),y=0,b=u||qa,w=e?b(l,v):r||s?b(l,0):void 0;v>y;y++)if((o||y in g)&&(p=m(d=g[y],y,f),t))if(e)w[y]=p;else if(p)switch(t){case 3:return!0;case 5:return d;case 6:return y;case 2:Xa(w,d)}else switch(t){case 4:return!1;case 7:Xa(w,d)}return a?-1:n||i?i:w}},Ka={forEach:$a(0),map:$a(1),filter:$a(2),some:$a(3),every:$a(4),find:$a(5),findIndex:$a(6),filterReject:$a(7)},Qa=ri,Ja=r,Za=h,ts=x,es=a,rs=at,ns=i,is=Wt,as=Y,ss=Oe,os=N,ls=de,hs=fi,cs=v,us=zi,ds=yi,ps=Jr,fs=Wi,gs=Tn,vs=n,ms=Te,ys=gi,bs=c,ws=Qr,xs=Ki,As=Dt,_s=gr,ks=Vt,Ss=ee,Es=Qi,Ms=ia,Ts=ha,Cs=pa,Ps=Cr,Is=Ka.forEach,Rs=fr("hidden"),Os="Symbol",Ls="prototype",Ds=Ps.set,Fs=Ps.getterFor(Os),Ns=Object[Ls],js=Ja.Symbol,Bs=js&&js[Ls],zs=Ja.RangeError,Ws=Ja.TypeError,Us=Ja.QObject,Hs=vs.f,Gs=ms.f,Ys=fs.f,Vs=bs.f,qs=ts([].push),Xs=As("symbols"),$s=As("op-symbols"),Ks=As("wks"),Qs=!Us||!Us[Ls]||!Us[Ls].findChild,Js=function(t,e,r){var n=Hs(Ns,e);n&&delete Ns[e],Gs(t,e,r),n&&t!==Ns&&Gs(Ns,e,n)},Zs=es&&ns((function(){return 7!==us(Gs({},"a",{get:function(){return Gs(this,"a",{value:7}).a}})).a}))?Js:Gs,to=function(t,e){var r=Xs[t]=us(Bs);return Ds(r,{type:Os,tag:t,description:e}),es||(r.description=e),r},eo=function(t,e,r){t===Ns&&eo($s,e,r),ss(t);var n=ls(e);return ss(r),is(Xs,n)?(r.enumerable?(is(t,Rs)&&t[Rs][n]&&(t[Rs][n]=!1),r=us(r,{enumerable:cs(0,!1)})):(is(t,Rs)||Gs(t,Rs,cs(1,us(null))),t[Rs][n]=!0),Zs(t,n,r)):Gs(t,n,r)},ro=function(t,e){ss(t);var r=os(e),n=ds(r).concat(so(r));return Is(n,(function(e){es&&!Za(no,r,e)||eo(t,e,r[e])})),t},no=function(t){var e=ls(t),r=Za(Vs,this,e);return!(this===Ns&&is(Xs,e)&&!is($s,e))&&(!(r||!is(this,e)||!is(Xs,e)||is(this,Rs)&&this[Rs][e])||r)},io=function(t,e){var r=os(t),n=ls(e);if(r!==Ns||!is(Xs,n)||is($s,n)){var i=Hs(r,n);return!i||!is(Xs,n)||is(r,Rs)&&r[Rs][n]||(i.enumerable=!0),i}},ao=function(t){var e=Ys(os(t)),r=[];return Is(e,(function(t){is(Xs,t)||is(_s,t)||qs(r,t)})),r},so=function(t){var e=t===Ns,r=Ys(e?$s:os(t)),n=[];return Is(r,(function(t){!is(Xs,t)||e&&!is(Ns,t)||qs(n,Xs[t])})),n};rs||(js=function(){if(as(Bs,this))throw new Ws("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?hs(arguments[0]):void 0,e=ks(t),r=function(t){var n=void 0===this?Ja:this;n===Ns&&Za(r,$s,t),is(n,Rs)&&is(n[Rs],e)&&(n[Rs][e]=!1);var i=cs(1,t);try{Zs(n,e,i)}catch(t){if(!(t instanceof zs))throw t;Js(n,e,i)}};return es&&Qs&&Zs(Ns,e,{configurable:!0,set:r}),to(e,t)},ws(Bs=js[Ls],"toString",(function(){return Fs(this).tag})),ws(js,"withoutSetter",(function(t){return to(ks(t),t)})),bs.f=no,ms.f=eo,ys.f=ro,vs.f=io,ps.f=fs.f=ao,gs.f=so,Es.f=function(t){return to(Ss(t),t)},es&&(xs(Bs,"description",{configurable:!0,get:function(){return Fs(this).description}}),ws(Ns,"propertyIsEnumerable",no,{unsafe:!0}))),Qa({global:!0,constructor:!0,wrap:!0,forced:!rs,sham:!rs},{Symbol:js}),Is(ds(Ks),(function(t){Ms(t)})),Qa({target:Os,stat:!0,forced:!rs},{useSetter:function(){Qs=!0},useSimple:function(){Qs=!1}}),Qa({target:"Object",stat:!0,forced:!rs,sham:!es},{create:function(t,e){return void 0===e?us(t):ro(us(t),e)},defineProperty:eo,defineProperties:ro,getOwnPropertyDescriptor:io}),Qa({target:"Object",stat:!0,forced:!rs},{getOwnPropertyNames:ao}),Ts(),Cs(js,Os),_s[Rs]=!0;var oo=at&&!!Symbol.for&&!!Symbol.keyFor,lo=ri,ho=G,co=Wt,uo=fi,po=Dt,fo=oo,go=po("string-to-symbol-registry"),vo=po("symbol-to-string-registry");lo({target:"Symbol",stat:!0,forced:!fo},{for:function(t){var e=uo(t);if(co(go,e))return go[e];var r=ho("Symbol")(e);return go[e]=r,vo[r]=e,r}});var mo=ri,yo=Wt,bo=ut,wo=pt,xo=oo,Ao=Dt("symbol-to-string-registry");mo({target:"Symbol",stat:!0,forced:!xo},{keyFor:function(t){if(!bo(t))throw new TypeError(wo(t)+" is not a symbol");if(yo(Ao,t))return Ao[t]}});var _o=s,ko=Function.prototype,So=ko.apply,Eo=ko.call,Mo="object"==typeof Reflect&&Reflect.apply||(_o?Eo.bind(So):function(){return Eo.apply(So,arguments)}),To=Aa,Co=B,Po=S,Io=fi,Ro=x([].push),Oo=ri,Lo=G,Do=Mo,Fo=h,No=x,jo=i,Bo=B,zo=ut,Wo=Ui,Uo=function(t){if(Co(t))return t;if(To(t)){for(var e=t.length,r=[],n=0;n<e;n++){var i=t[n];"string"==typeof i?Ro(r,i):"number"!=typeof i&&"Number"!==Po(i)&&"String"!==Po(i)||Ro(r,Io(i))}var a=r.length,s=!0;return function(t,e){if(s)return s=!1,e;if(To(this))return e;for(var n=0;n<a;n++)if(r[n]===t)return e}}},Ho=at,Go=String,Yo=Lo("JSON","stringify"),Vo=No(/./.exec),qo=No("".charAt),Xo=No("".charCodeAt),$o=No("".replace),Ko=No(1..toString),Qo=/[\uD800-\uDFFF]/g,Jo=/^[\uD800-\uDBFF]$/,Zo=/^[\uDC00-\uDFFF]$/,tl=!Ho||jo((function(){var t=Lo("Symbol")("stringify detection");return"[null]"!==Yo([t])||"{}"!==Yo({a:t})||"{}"!==Yo(Object(t))})),el=jo((function(){return'"\\udf06\\ud834"'!==Yo("\udf06\ud834")||'"\\udead"'!==Yo("\udead")})),rl=function(t,e){var r=Wo(arguments),n=Uo(e);if(Bo(n)||void 0!==t&&!zo(t))return r[1]=function(t,e){if(Bo(n)&&(e=Fo(n,this,Go(t),e)),!zo(e))return e},Do(Yo,null,r)},nl=function(t,e,r){var n=qo(r,e-1),i=qo(r,e+1);return Vo(Jo,t)&&!Vo(Zo,i)||Vo(Zo,t)&&!Vo(Jo,n)?"\\u"+Ko(Xo(t,0),16):t};Yo&&Oo({target:"JSON",stat:!0,arity:3,forced:tl||el},{stringify:function(t,e,r){var n=Wo(arguments),i=Do(tl?rl:Yo,null,n);return el&&"string"==typeof i?$o(i,Qo,nl):i}});var il=Tn,al=jt;ri({target:"Object",stat:!0,forced:!at||i((function(){il.f(1)}))},{getOwnPropertySymbols:function(t){var e=il.f;return e?e(al(t)):[]}});var sl=ri,ol=a,ll=x,hl=Wt,cl=B,ul=Y,dl=fi,pl=Ki,fl=Bn,gl=r.Symbol,vl=gl&&gl.prototype;if(ol&&cl(gl)&&(!("description"in vl)||void 0!==gl().description)){var ml={},yl=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:dl(arguments[0]),e=ul(vl,this)?new gl(t):void 0===t?gl():gl(t);return""===t&&(ml[e]=!0),e};fl(yl,gl),yl.prototype=vl,vl.constructor=yl;var bl="Symbol(description detection)"===String(gl("description detection")),wl=ll(vl.valueOf),xl=ll(vl.toString),Al=/^Symbol\((.*)\)[^)]+$/,_l=ll("".replace),kl=ll("".slice);pl(vl,"description",{configurable:!0,get:function(){var t=wl(this);if(hl(ml,t))return"";var e=xl(t),r=bl?kl(e,7,-1):_l(e,Al,"$1");return""===r?void 0:r}}),sl({global:!0,constructor:!0,forced:!0},{Symbol:yl})}ia("asyncIterator"),ia("hasInstance"),ia("isConcatSpreadable"),ia("iterator"),ia("match"),ia("matchAll"),ia("replace"),ia("search"),ia("species"),ia("split");var Sl=ha;ia("toPrimitive"),Sl();var El=G,Ml=pa;ia("toStringTag"),Ml(El("Symbol"),"Symbol"),ia("unscopables");var Tl=x,Cl=mt,Pl=function(t,e,r){try{return Tl(Cl(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}},Il=W,Rl=function(t){return Il(t)||null===t},Ol=Rl,Ll=String,Dl=TypeError,Fl=function(t){if(Ol(t))return t;throw new Dl("Can't set "+Ll(t)+" as a prototype")},Nl=Pl,jl=W,Bl=L,zl=Fl,Wl=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=Nl(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return Bl(r),zl(n),jl(r)?(e?t(r,n):r.__proto__=n,r):r}}():void 0),Ul=Te.f,Hl=function(t,e,r){r in t||Ul(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})},Gl=B,Yl=W,Vl=Wl,ql=function(t,e,r){var n,i;return Vl&&Gl(n=e.constructor)&&n!==r&&Yl(i=n.prototype)&&i!==r.prototype&&Vl(t,i),t},Xl=fi,$l=function(t,e){return void 0===t?arguments.length<2?"":e:Xl(t)},Kl=W,Ql=qe,Jl=function(t,e){Kl(e)&&"cause"in e&&Ql(t,"cause",e.cause)},Zl=Error,th=x("".replace),eh=String(new Zl("zxcasd").stack),rh=/\n\s*at [^:]*:[^\n]*/,nh=rh.test(eh),ih=function(t,e){if(nh&&"string"==typeof t&&!Zl.prepareStackTrace)for(;e--;)t=th(t,rh,"");return t},ah=v,sh=!i((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",ah(1,7)),7!==t.stack)})),oh=qe,lh=ih,hh=sh,ch=Error.captureStackTrace,uh=function(t,e,r,n){hh&&(ch?ch(t,e):oh(t,"stack",lh(r,n)))},dh=G,ph=Wt,fh=qe,gh=Y,vh=Wl,mh=Bn,yh=Hl,bh=ql,wh=$l,xh=Jl,Ah=uh,_h=a,kh=function(t,e,r,n){var i="stackTraceLimit",a=n?2:1,s=t.split("."),o=s[s.length-1],l=dh.apply(null,s);if(l){var h=l.prototype;if(ph(h,"cause")&&delete h.cause,!r)return l;var c=dh("Error"),u=e((function(t,e){var r=wh(n?e:t,void 0),i=n?new l(t):new l;return void 0!==r&&fh(i,"message",r),Ah(i,u,i.stack,2),this&&gh(h,this)&&bh(i,this,u),arguments.length>a&&xh(i,arguments[a]),i}));u.prototype=h,"Error"!==o?vh?vh(u,c):mh(u,c,{name:!0}):_h&&i in l&&(yh(u,l,i),yh(u,l,"prepareStackTrace")),mh(u,l);try{h.name!==o&&fh(h,"name",o),h.constructor=u}catch(t){}return u}},Sh=ri,Eh=Mo,Mh=kh,Th="WebAssembly",Ch=r[Th],Ph=7!==new Error("e",{cause:7}).cause,Ih=function(t,e){var r={};r[t]=Mh(t,e,Ph),Sh({global:!0,constructor:!0,arity:1,forced:Ph},r)},Rh=function(t,e){if(Ch&&Ch[t]){var r={};r[t]=Mh(Th+"."+t,e,Ph),Sh({target:Th,stat:!0,constructor:!0,arity:1,forced:Ph},r)}};Ih("Error",(function(t){return function(e){return Eh(t,this,arguments)}})),Ih("EvalError",(function(t){return function(e){return Eh(t,this,arguments)}})),Ih("RangeError",(function(t){return function(e){return Eh(t,this,arguments)}})),Ih("ReferenceError",(function(t){return function(e){return Eh(t,this,arguments)}})),Ih("SyntaxError",(function(t){return function(e){return Eh(t,this,arguments)}})),Ih("TypeError",(function(t){return function(e){return Eh(t,this,arguments)}})),Ih("URIError",(function(t){return function(e){return Eh(t,this,arguments)}})),Rh("CompileError",(function(t){return function(e){return Eh(t,this,arguments)}})),Rh("LinkError",(function(t){return function(e){return Eh(t,this,arguments)}})),Rh("RuntimeError",(function(t){return function(e){return Eh(t,this,arguments)}}));var Oh=a,Lh=i,Dh=Oe,Fh=$l,Nh=Error.prototype.toString,jh=Lh((function(){if(Oh){var t=Object.create(Object.defineProperty({},"name",{get:function(){return this===t}}));if("true"!==Nh.call(t))return!0}return"2: 1"!==Nh.call({message:1,name:2})||"Error"!==Nh.call({})})),Bh=jh?function(){var t=Dh(this),e=Fh(t.name,"Error"),r=Fh(t.message);return e?r?e+": "+r:e:r}:Nh,zh=Qr,Wh=Bh,Uh=Error.prototype;Uh.toString!==Wh&&zh(Uh,"toString",Wh);var Hh=!i((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),Gh=Wt,Yh=B,Vh=jt,qh=Hh,Xh=fr("IE_PROTO"),$h=Object,Kh=$h.prototype,Qh=qh?$h.getPrototypeOf:function(t){var e=Vh(t);if(Gh(e,Xh))return e[Xh];var r=e.constructor;return Yh(r)&&e instanceof r?r.prototype:e instanceof $h?Kh:null},Jh={},Zh=Jh,tc=ee("iterator"),ec=Array.prototype,rc=function(t){return void 0!==t&&(Zh.Array===t||ec[tc]===t)},nc=ui,ic=wt,ac=I,sc=Jh,oc=ee("iterator"),lc=function(t){if(!ac(t))return ic(t,oc)||ic(t,"@@iterator")||sc[nc(t)]},hc=h,cc=mt,uc=Oe,dc=pt,pc=lc,fc=TypeError,gc=function(t,e){var r=arguments.length<2?pc(t):e;if(cc(r))return uc(hc(r,t));throw new fc(dc(t)+" is not iterable")},vc=h,mc=Oe,yc=wt,bc=function(t,e,r){var n,i;mc(t);try{if(!(n=yc(t,"return"))){if("throw"===e)throw r;return r}n=vc(n,t)}catch(t){i=!0,n=t}if("throw"===e)throw r;if(i)throw n;return mc(n),r},wc=wa,xc=h,Ac=Oe,_c=pt,kc=rc,Sc=pn,Ec=Y,Mc=gc,Tc=lc,Cc=bc,Pc=TypeError,Ic=function(t,e){this.stopped=t,this.result=e},Rc=Ic.prototype,Oc=function(t,e,r){var n,i,a,s,o,l,h,c=r&&r.that,u=!(!r||!r.AS_ENTRIES),d=!(!r||!r.IS_RECORD),p=!(!r||!r.IS_ITERATOR),f=!(!r||!r.INTERRUPTED),g=wc(e,c),v=function(t){return n&&Cc(n,"normal",t),new Ic(!0,t)},m=function(t){return u?(Ac(t),f?g(t[0],t[1],v):g(t[0],t[1])):f?g(t,v):g(t)};if(d)n=t.iterator;else if(p)n=t;else{if(!(i=Tc(t)))throw new Pc(_c(t)+" is not iterable");if(kc(i)){for(a=0,s=Sc(t);s>a;a++)if((o=m(t[a]))&&Ec(Rc,o))return o;return new Ic(!1)}n=Mc(t,i)}for(l=d?t.next:n.next;!(h=xc(l,n)).done;){try{o=m(h.value)}catch(t){Cc(n,"throw",t)}if("object"==typeof o&&o&&Ec(Rc,o))return o}return new Ic(!1)},Lc=ri,Dc=Y,Fc=Qh,Nc=Wl,jc=Bn,Bc=zi,zc=qe,Wc=v,Uc=Jl,Hc=uh,Gc=Oc,Yc=$l,Vc=ee("toStringTag"),qc=Error,Xc=[].push,$c=function(t,e){var r,n=Dc(Kc,this);Nc?r=Nc(new qc,n?Fc(this):Kc):(r=n?this:Bc(Kc),zc(r,Vc,"Error")),void 0!==e&&zc(r,"message",Yc(e)),Hc(r,$c,r.stack,1),arguments.length>2&&Uc(r,arguments[2]);var i=[];return Gc(t,Xc,{that:i}),zc(r,"errors",i),r};Nc?Nc($c,qc):jc($c,qc,{name:!0});var Kc=$c.prototype=Bc(qc.prototype,{constructor:Wc(1,$c),message:Wc(1,""),name:Wc(1,"AggregateError")});Lc({global:!0,constructor:!0,arity:2},{AggregateError:$c});var Qc=ri,Jc=Mo,Zc=i,tu=kh,eu="AggregateError",ru=G(eu),nu=!Zc((function(){return 1!==ru([1]).errors[0]}))&&Zc((function(){return 7!==ru([1],eu,{cause:7}).cause}));Qc({global:!0,constructor:!0,arity:2,forced:nu},{AggregateError:tu(eu,(function(t){return function(e,r){return Jc(t,this,arguments)}}),nu,!0)});var iu=ee,au=zi,su=Te.f,ou=iu("unscopables"),lu=Array.prototype;void 0===lu[ou]&&su(lu,ou,{configurable:!0,value:au(null)});var hu=function(t){lu[ou][t]=!0},cu=jt,uu=pn,du=nn,pu=hu;ri({target:"Array",proto:!0},{at:function(t){var e=cu(this),r=uu(e),n=du(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:e[i]}}),pu("at");var fu=TypeError,gu=function(t){if(t>9007199254740991)throw fu("Maximum allowed index exceeded");return t},vu=a,mu=Te,yu=v,bu=function(t,e,r){vu?mu.f(t,e,yu(0,r)):t[e]=r},wu=i,xu=et,Au=ee("species"),_u=function(t){return xu>=51||!wu((function(){var e=[];return(e.constructor={})[Au]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},ku=ri,Su=i,Eu=Aa,Mu=W,Tu=jt,Cu=pn,Pu=gu,Iu=bu,Ru=Ua,Ou=_u,Lu=et,Du=ee("isConcatSpreadable"),Fu=Lu>=51||!Su((function(){var t=[];return t[Du]=!1,t.concat()[0]!==t})),Nu=function(t){if(!Mu(t))return!1;var e=t[Du];return void 0!==e?!!e:Eu(t)};ku({target:"Array",proto:!0,arity:1,forced:!Fu||!Ou("concat")},{concat:function(t){var e,r,n,i,a,s=Tu(this),o=Ru(s,0),l=0;for(e=-1,n=arguments.length;e<n;e++)if(Nu(a=-1===e?s:arguments[e]))for(i=Cu(a),Pu(l+i),r=0;r<i;r++,l++)r in a&&Iu(o,l,a[r]);else Pu(l+1),Iu(o,l++,a);return o.length=l,o}});var ju=pt,Bu=TypeError,zu=function(t,e){if(!delete t[e])throw new Bu("Cannot delete property "+ju(e)+" of "+ju(t))},Wu=jt,Uu=ln,Hu=pn,Gu=zu,Yu=Math.min,Vu=[].copyWithin||function(t,e){var r=Wu(this),n=Hu(r),i=Uu(t,n),a=Uu(e,n),s=arguments.length>2?arguments[2]:void 0,o=Yu((void 0===s?n:Uu(s,n))-a,n-i),l=1;for(a<i&&i<a+o&&(l=-1,a+=o-1,i+=o-1);o-- >0;)a in r?r[i]=r[a]:Gu(r,i),i+=l,a+=l;return r},qu=hu;ri({target:"Array",proto:!0},{copyWithin:Vu}),qu("copyWithin");var Xu=i,$u=function(t,e){var r=[][t];return!!r&&Xu((function(){r.call(null,e||function(){return 1},1)}))},Ku=Ka.every;ri({target:"Array",proto:!0,forced:!$u("every")},{every:function(t){return Ku(this,t,arguments.length>1?arguments[1]:void 0)}});var Qu=jt,Ju=ln,Zu=pn,td=function(t){for(var e=Qu(this),r=Zu(e),n=arguments.length,i=Ju(n>1?arguments[1]:void 0,r),a=n>2?arguments[2]:void 0,s=void 0===a?r:Ju(a,r);s>i;)e[i++]=t;return e},ed=hu;ri({target:"Array",proto:!0},{fill:td}),ed("fill");var rd=Ka.filter;ri({target:"Array",proto:!0,forced:!_u("filter")},{filter:function(t){return rd(this,t,arguments.length>1?arguments[1]:void 0)}});var nd=ri,id=Ka.find,ad=hu,sd="find",od=!0;sd in[]&&Array(1)[sd]((function(){od=!1})),nd({target:"Array",proto:!0,forced:od},{find:function(t){return id(this,t,arguments.length>1?arguments[1]:void 0)}}),ad(sd);var ld=ri,hd=Ka.findIndex,cd=hu,ud="findIndex",dd=!0;ud in[]&&Array(1)[ud]((function(){dd=!1})),ld({target:"Array",proto:!0,forced:dd},{findIndex:function(t){return hd(this,t,arguments.length>1?arguments[1]:void 0)}}),cd(ud);var pd=wa,fd=P,gd=jt,vd=pn,md=function(t){var e=1===t;return function(r,n,i){for(var a,s=gd(r),o=fd(s),l=vd(o),h=pd(n,i);l-- >0;)if(h(a=o[l],l,s))switch(t){case 0:return a;case 1:return l}return e?-1:void 0}},yd={findLast:md(0),findLastIndex:md(1)},bd=yd.findLast,wd=hu;ri({target:"Array",proto:!0},{findLast:function(t){return bd(this,t,arguments.length>1?arguments[1]:void 0)}}),wd("findLast");var xd=yd.findLastIndex,Ad=hu;ri({target:"Array",proto:!0},{findLastIndex:function(t){return xd(this,t,arguments.length>1?arguments[1]:void 0)}}),Ad("findLastIndex");var _d=Aa,kd=pn,Sd=gu,Ed=wa,Md=function(t,e,r,n,i,a,s,o){for(var l,h,c=i,u=0,d=!!s&&Ed(s,o);u<n;)u in r&&(l=d?d(r[u],u,e):r[u],a>0&&_d(l)?(h=kd(l),c=Md(t,e,l,h,c,a-1)-1):(Sd(c+1),t[c]=l),c++),u++;return c},Td=Md,Cd=Td,Pd=jt,Id=pn,Rd=nn,Od=Ua;ri({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=Pd(this),r=Id(e),n=Od(e,0);return n.length=Cd(n,e,e,r,0,void 0===t?1:Rd(t)),n}});var Ld=Td,Dd=mt,Fd=jt,Nd=pn,jd=Ua;ri({target:"Array",proto:!0},{flatMap:function(t){var e,r=Fd(this),n=Nd(r);return Dd(t),(e=jd(r,0)).length=Ld(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}});var Bd=Ka.forEach,zd=$u("forEach")?[].forEach:function(t){return Bd(this,t,arguments.length>1?arguments[1]:void 0)};ri({target:"Array",proto:!0,forced:[].forEach!==zd},{forEach:zd});var Wd=Oe,Ud=bc,Hd=function(t,e,r,n){try{return n?e(Wd(r)[0],r[1]):e(r)}catch(e){Ud(t,"throw",e)}},Gd=wa,Yd=h,Vd=jt,qd=Hd,Xd=rc,$d=Da,Kd=pn,Qd=bu,Jd=gc,Zd=lc,tp=Array,ep=function(t){var e=Vd(t),r=$d(this),n=arguments.length,i=n>1?arguments[1]:void 0,a=void 0!==i;a&&(i=Gd(i,n>2?arguments[2]:void 0));var s,o,l,h,c,u,d=Zd(e),p=0;if(!d||this===tp&&Xd(d))for(s=Kd(e),o=r?new this(s):tp(s);s>p;p++)u=a?i(e[p],p):e[p],Qd(o,p,u);else for(o=r?new this:[],c=(h=Jd(e,d)).next;!(l=Yd(c,h)).done;p++)u=a?qd(h,i,[l.value,p],!0):l.value,Qd(o,p,u);return o.length=p,o},rp=ee("iterator"),np=!1;try{var ip=0,ap={next:function(){return{done:!!ip++}},return:function(){np=!0}};ap[rp]=function(){return this},Array.from(ap,(function(){throw 2}))}catch(t){}var sp=function(t,e){try{if(!e&&!np)return!1}catch(t){return!1}var r=!1;try{var n={};n[rp]=function(){return{next:function(){return{done:r=!0}}}},t(n)}catch(t){}return r},op=ep;ri({target:"Array",stat:!0,forced:!sp((function(t){Array.from(t)}))},{from:op});var lp=yn.includes,hp=hu;ri({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function(t){return lp(this,t,arguments.length>1?arguments[1]:void 0)}}),hp("includes");var cp=ri,up=yn.indexOf,dp=$u,pp=va([].indexOf),fp=!!pp&&1/pp([1],1,-0)<0;cp({target:"Array",proto:!0,forced:fp||!dp("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return fp?pp(this,t,e)||0:up(this,t,e)}}),ri({target:"Array",stat:!0},{isArray:Aa});var gp,vp,mp,yp=i,bp=B,wp=W,xp=Qh,Ap=Qr,_p=ee("iterator"),kp=!1;[].keys&&("next"in(mp=[].keys())?(vp=xp(xp(mp)))!==Object.prototype&&(gp=vp):kp=!0);var Sp=!wp(gp)||yp((function(){var t={};return gp[_p].call(t)!==t}));Sp&&(gp={}),bp(gp[_p])||Ap(gp,_p,(function(){return this}));var Ep={IteratorPrototype:gp,BUGGY_SAFARI_ITERATORS:kp},Mp=Ep.IteratorPrototype,Tp=zi,Cp=v,Pp=pa,Ip=Jh,Rp=function(){return this},Op=function(t,e,r,n){var i=e+" Iterator";return t.prototype=Tp(Mp,{next:Cp(+!n,r)}),Pp(t,i,!1),Ip[i]=Rp,t},Lp=ri,Dp=h,Fp=B,Np=Op,jp=Qh,Bp=Wl,zp=pa,Wp=qe,Up=Qr,Hp=Jh,Gp=tr.PROPER,Yp=tr.CONFIGURABLE,Vp=Ep.IteratorPrototype,qp=Ep.BUGGY_SAFARI_ITERATORS,Xp=ee("iterator"),$p="keys",Kp="values",Qp="entries",Jp=function(){return this},Zp=function(t,e,r,n,i,a,s){Np(r,e,n);var o,l,h,c=function(t){if(t===i&&g)return g;if(!qp&&t&&t in p)return p[t];switch(t){case $p:case Kp:case Qp:return function(){return new r(this,t)}}return function(){return new r(this)}},u=e+" Iterator",d=!1,p=t.prototype,f=p[Xp]||p["@@iterator"]||i&&p[i],g=!qp&&f||c(i),v="Array"===e&&p.entries||f;if(v&&(o=jp(v.call(new t)))!==Object.prototype&&o.next&&(jp(o)!==Vp&&(Bp?Bp(o,Vp):Fp(o[Xp])||Up(o,Xp,Jp)),zp(o,u,!0)),Gp&&i===Kp&&f&&f.name!==Kp&&(Yp?Wp(p,"name",Kp):(d=!0,g=function(){return Dp(f,this)})),i)if(l={values:c(Kp),keys:a?g:c($p),entries:c(Qp)},s)for(h in l)(qp||d||!(h in p))&&Up(p,h,l[h]);else Lp({target:e,proto:!0,forced:qp||d},l);return p[Xp]!==g&&Up(p,Xp,g,{name:i}),Hp[e]=g,l},tf=function(t,e){return{value:t,done:e}},ef=N,rf=hu,nf=Jh,af=Cr,sf=Te.f,of=Zp,lf=tf,hf=a,cf="Array Iterator",uf=af.set,df=af.getterFor(cf),pf=of(Array,"Array",(function(t,e){uf(this,{type:cf,target:ef(t),index:0,kind:e})}),(function(){var t=df(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,lf(void 0,!0);switch(t.kind){case"keys":return lf(r,!1);case"values":return lf(e[r],!1)}return lf([r,e[r]],!1)}),"values"),ff=nf.Arguments=nf.Array;if(rf("keys"),rf("values"),rf("entries"),hf&&"values"!==ff.name)try{sf(ff,"name",{value:"values"})}catch(t){}var gf=ri,vf=P,mf=N,yf=$u,bf=x([].join);gf({target:"Array",proto:!0,forced:vf!==Object||!yf("join",",")},{join:function(t){return bf(mf(this),void 0===t?",":t)}});var wf=Mo,xf=N,Af=nn,_f=pn,kf=$u,Sf=Math.min,Ef=[].lastIndexOf,Mf=!!Ef&&1/[1].lastIndexOf(1,-0)<0,Tf=kf("lastIndexOf"),Cf=Mf||!Tf?function(t){if(Mf)return wf(Ef,this,arguments)||0;var e=xf(this),r=_f(e);if(0===r)return-1;var n=r-1;for(arguments.length>1&&(n=Sf(n,Af(arguments[1]))),n<0&&(n=r+n);n>=0;n--)if(n in e&&e[n]===t)return n||0;return-1}:Ef;ri({target:"Array",proto:!0,forced:Cf!==[].lastIndexOf},{lastIndexOf:Cf});var Pf=Ka.map;ri({target:"Array",proto:!0,forced:!_u("map")},{map:function(t){return Pf(this,t,arguments.length>1?arguments[1]:void 0)}});var If=Da,Rf=bu,Of=Array;ri({target:"Array",stat:!0,forced:i((function(){function t(){}return!(Of.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,r=new(If(this)?this:Of)(e);e>t;)Rf(r,t,arguments[t++]);return r.length=e,r}});var Lf=a,Df=Aa,Ff=TypeError,Nf=Object.getOwnPropertyDescriptor,jf=Lf&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}()?function(t,e){if(Df(t)&&!Nf(t,"length").writable)throw new Ff("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e},Bf=jt,zf=pn,Wf=jf,Uf=gu;ri({target:"Array",proto:!0,arity:1,forced:i((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}}()},{push:function(t){var e=Bf(this),r=zf(e),n=arguments.length;Uf(r+n);for(var i=0;i<n;i++)e[r]=arguments[i],r++;return Wf(e,r),r}});var Hf=mt,Gf=jt,Yf=P,Vf=pn,qf=TypeError,Xf="Reduce of empty array with no initial value",$f=function(t){return function(e,r,n,i){var a=Gf(e),s=Yf(a),o=Vf(a);if(Hf(r),0===o&&n<2)throw new qf(Xf);var l=t?o-1:0,h=t?-1:1;if(n<2)for(;;){if(l in s){i=s[l],l+=h;break}if(l+=h,t?l<0:o<=l)throw new qf(Xf)}for(;t?l>=0:o>l;l+=h)l in s&&(i=r(i,s[l],l,a));return i}},Kf={left:$f(!1),right:$f(!0)},Qf=r,Jf=X,Zf=S,tg=function(t){return Jf.slice(0,t.length)===t},eg=tg("Bun/")?"BUN":tg("Cloudflare-Workers")?"CLOUDFLARE":tg("Deno/")?"DENO":tg("Node.js/")?"NODE":Qf.Bun&&"string"==typeof Bun.version?"BUN":Qf.Deno&&"object"==typeof Deno.version?"DENO":"process"===Zf(Qf.process)?"NODE":Qf.window&&Qf.document?"BROWSER":"REST",rg="NODE"===eg,ng=Kf.left;ri({target:"Array",proto:!0,forced:!rg&&et>79&&et<83||!$u("reduce")},{reduce:function(t){var e=arguments.length;return ng(this,t,e,e>1?arguments[1]:void 0)}});var ig=Kf.right;ri({target:"Array",proto:!0,forced:!rg&&et>79&&et<83||!$u("reduceRight")},{reduceRight:function(t){return ig(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}});var ag=ri,sg=Aa,og=x([].reverse),lg=[1,2];ag({target:"Array",proto:!0,forced:String(lg)===String(lg.reverse())},{reverse:function(){return sg(this)&&(this.length=this.length),og(this)}});var hg=ri,cg=Aa,ug=Da,dg=W,pg=ln,fg=pn,gg=N,vg=bu,mg=ee,yg=Ui,bg=_u("slice"),wg=mg("species"),xg=Array,Ag=Math.max;hg({target:"Array",proto:!0,forced:!bg},{slice:function(t,e){var r,n,i,a=gg(this),s=fg(a),o=pg(t,s),l=pg(void 0===e?s:e,s);if(cg(a)&&(r=a.constructor,(ug(r)&&(r===xg||cg(r.prototype))||dg(r)&&null===(r=r[wg]))&&(r=void 0),r===xg||void 0===r))return yg(a,o,l);for(n=new(void 0===r?xg:r)(Ag(l-o,0)),i=0;o<l;o++,i++)o in a&&vg(n,i,a[o]);return n.length=i,n}});var _g=Ka.some;ri({target:"Array",proto:!0,forced:!$u("some")},{some:function(t){return _g(this,t,arguments.length>1?arguments[1]:void 0)}});var kg=Ui,Sg=Math.floor,Eg=function(t,e){var r=t.length;if(r<8)for(var n,i,a=1;a<r;){for(i=a,n=t[a];i&&e(t[i-1],n)>0;)t[i]=t[--i];i!==a++&&(t[i]=n)}else for(var s=Sg(r/2),o=Eg(kg(t,0,s),e),l=Eg(kg(t,s),e),h=o.length,c=l.length,u=0,d=0;u<h||d<c;)t[u+d]=u<h&&d<c?e(o[u],l[d])<=0?o[u++]:l[d++]:u<h?o[u++]:l[d++];return t},Mg=Eg,Tg=X.match(/firefox\/(\d+)/i),Cg=!!Tg&&+Tg[1],Pg=/MSIE|Trident/.test(X),Ig=X.match(/AppleWebKit\/(\d+)\./),Rg=!!Ig&&+Ig[1],Og=ri,Lg=x,Dg=mt,Fg=jt,Ng=pn,jg=zu,Bg=fi,zg=i,Wg=Mg,Ug=$u,Hg=Cg,Gg=Pg,Yg=et,Vg=Rg,qg=[],Xg=Lg(qg.sort),$g=Lg(qg.push),Kg=zg((function(){qg.sort(void 0)})),Qg=zg((function(){qg.sort(null)})),Jg=Ug("sort"),Zg=!zg((function(){if(Yg)return Yg<70;if(!(Hg&&Hg>3)){if(Gg)return!0;if(Vg)return Vg<603;var t,e,r,n,i="";for(t=65;t<76;t++){switch(e=String.fromCharCode(t),t){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)qg.push({k:e+n,v:r})}for(qg.sort((function(t,e){return e.v-t.v})),n=0;n<qg.length;n++)e=qg[n].k.charAt(0),i.charAt(i.length-1)!==e&&(i+=e);return"DGBEFHACIJK"!==i}}));Og({target:"Array",proto:!0,forced:Kg||!Qg||!Jg||!Zg},{sort:function(t){void 0!==t&&Dg(t);var e=Fg(this);if(Zg)return void 0===t?Xg(e):Xg(e,t);var r,n,i=[],a=Ng(e);for(n=0;n<a;n++)n in e&&$g(i,e[n]);for(Wg(i,function(t){return function(e,r){return void 0===r?-1:void 0===e?1:void 0!==t?+t(e,r)||0:Bg(e)>Bg(r)?1:-1}}(t)),r=Ng(i),n=0;n<r;)e[n]=i[n++];for(;n<a;)jg(e,n++);return e}});var tv=G,ev=Ki,rv=a,nv=ee("species"),iv=function(t){var e=tv(t);rv&&e&&!e[nv]&&ev(e,nv,{configurable:!0,get:function(){return this}})};iv("Array");var av=ri,sv=jt,ov=ln,lv=nn,hv=pn,cv=jf,uv=gu,dv=Ua,pv=bu,fv=zu,gv=_u("splice"),vv=Math.max,mv=Math.min;av({target:"Array",proto:!0,forced:!gv},{splice:function(t,e){var r,n,i,a,s,o,l=sv(this),h=hv(l),c=ov(t,h),u=arguments.length;for(0===u?r=n=0:1===u?(r=0,n=h-c):(r=u-2,n=mv(vv(lv(e),0),h-c)),uv(h+r-n),i=dv(l,n),a=0;a<n;a++)(s=c+a)in l&&pv(i,a,l[s]);if(i.length=n,r<n){for(a=c;a<h-n;a++)o=a+r,(s=a+n)in l?l[o]=l[s]:fv(l,o);for(a=h;a>h-n+r;a--)fv(l,a-1)}else if(r>n)for(a=h-n;a>c;a--)o=a+r-1,(s=a+n-1)in l?l[o]=l[s]:fv(l,o);for(a=0;a<r;a++)l[a+c]=arguments[a+2];return cv(l,h-n+r),i}});var yv=pn,bv=function(t,e){for(var r=yv(t),n=new e(r),i=0;i<r;i++)n[i]=t[r-i-1];return n},wv=bv,xv=N,Av=hu,_v=Array;ri({target:"Array",proto:!0},{toReversed:function(){return wv(xv(this),_v)}}),Av("toReversed");var kv=pn,Sv=function(t,e,r){for(var n=0,i=arguments.length>2?r:kv(e),a=new t(i);i>n;)a[n]=e[n++];return a},Ev=r,Mv=ri,Tv=mt,Cv=N,Pv=Sv,Iv=function(t,e){var r=Ev[t],n=r&&r.prototype;return n&&n[e]},Rv=hu,Ov=Array,Lv=x(Iv("Array","sort"));Mv({target:"Array",proto:!0},{toSorted:function(t){void 0!==t&&Tv(t);var e=Cv(this),r=Pv(Ov,e);return Lv(r,t)}}),Rv("toSorted");var Dv=ri,Fv=hu,Nv=gu,jv=pn,Bv=ln,zv=N,Wv=nn,Uv=Array,Hv=Math.max,Gv=Math.min;Dv({target:"Array",proto:!0},{toSpliced:function(t,e){var r,n,i,a,s=zv(this),o=jv(s),l=Bv(t,o),h=arguments.length,c=0;for(0===h?r=n=0:1===h?(r=0,n=o-l):(r=h-2,n=Gv(Hv(Wv(e),0),o-l)),i=Nv(o+r-n),a=Uv(i);c<l;c++)a[c]=s[c];for(;c<l+r;c++)a[c]=arguments[c-l+2];for(;c<i;c++)a[c]=s[c+n-r];return a}}),Fv("toSpliced"),hu("flat"),hu("flatMap");var Yv=jt,Vv=pn,qv=jf,Xv=zu,$v=gu;ri({target:"Array",proto:!0,arity:1,forced:1!==[].unshift(0)||!function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(t){return t instanceof TypeError}}()},{unshift:function(t){var e=Yv(this),r=Vv(e),n=arguments.length;if(n){$v(r+n);for(var i=r;i--;){var a=i+n;i in e?e[a]=e[i]:Xv(e,a)}for(var s=0;s<n;s++)e[s]=arguments[s]}return qv(e,r+n)}});var Kv=pn,Qv=nn,Jv=RangeError,Zv=function(t,e,r,n){var i=Kv(t),a=Qv(r),s=a<0?i+a:a;if(s>=i||s<0)throw new Jv("Incorrect index");for(var o=new e(i),l=0;l<i;l++)o[l]=l===s?n:t[l];return o},tm=Zv,em=N,rm=Array;ri({target:"Array",proto:!0},{with:function(t,e){return tm(em(this),rm,t,e)}});var nm="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView,im=Qr,am=function(t,e,r){for(var n in e)im(t,n,e[n],r);return t},sm=Y,om=TypeError,lm=function(t,e){if(sm(e,t))return t;throw new om("Incorrect invocation")},hm=nn,cm=un,um=RangeError,dm=function(t){if(void 0===t)return 0;var e=hm(t),r=cm(e);if(e!==r)throw new um("Wrong length or index");return r},pm=Math.sign||function(t){var e=+t;return 0===e||e!=e?e:e<0?-1:1},fm=4503599627370496,gm=pm,vm=function(t){return t+fm-fm},mm=Math.abs,ym=function(t,e,r,n){var i=+t,a=mm(i),s=gm(i);if(a<n)return s*vm(a/n/e)*n*e;var o=(1+e/2220446049250313e-31)*a,l=o-(o-a);return l>r||l!=l?s*(1/0):s*l},bm=Math.fround||function(t){return ym(t,1.1920928955078125e-7,34028234663852886e22,11754943508222875e-54)},wm=Array,xm=Math.abs,Am=Math.pow,_m=Math.floor,km=Math.log,Sm=Math.LN2,Em={pack:function(t,e,r){var n,i,a,s=wm(r),o=8*r-e-1,l=(1<<o)-1,h=l>>1,c=23===e?Am(2,-24)-Am(2,-77):0,u=t<0||0===t&&1/t<0?1:0,d=0;for((t=xm(t))!=t||t===1/0?(i=t!=t?1:0,n=l):(n=_m(km(t)/Sm),t*(a=Am(2,-n))<1&&(n--,a*=2),(t+=n+h>=1?c/a:c*Am(2,1-h))*a>=2&&(n++,a/=2),n+h>=l?(i=0,n=l):n+h>=1?(i=(t*a-1)*Am(2,e),n+=h):(i=t*Am(2,h-1)*Am(2,e),n=0));e>=8;)s[d++]=255&i,i/=256,e-=8;for(n=n<<e|i,o+=e;o>0;)s[d++]=255&n,n/=256,o-=8;return s[d-1]|=128*u,s},unpack:function(t,e){var r,n=t.length,i=8*n-e-1,a=(1<<i)-1,s=a>>1,o=i-7,l=n-1,h=t[l--],c=127&h;for(h>>=7;o>0;)c=256*c+t[l--],o-=8;for(r=c&(1<<-o)-1,c>>=-o,o+=e;o>0;)r=256*r+t[l--],o-=8;if(0===c)c=1-s;else{if(c===a)return r?NaN:h?-1/0:1/0;r+=Am(2,e),c-=s}return(h?-1:1)*r*Am(2,c-e)}},Mm=r,Tm=x,Cm=a,Pm=nm,Im=qe,Rm=Ki,Om=am,Lm=i,Dm=lm,Fm=nn,Nm=un,jm=dm,Bm=bm,zm=Em,Wm=Qh,Um=Wl,Hm=td,Gm=Ui,Ym=ql,Vm=Bn,qm=pa,Xm=Cr,$m=tr.PROPER,Km=tr.CONFIGURABLE,Qm="ArrayBuffer",Jm="DataView",Zm="prototype",ty="Wrong index",ey=Xm.getterFor(Qm),ry=Xm.getterFor(Jm),ny=Xm.set,iy=Mm[Qm],ay=iy,sy=ay&&ay[Zm],oy=Mm[Jm],ly=oy&&oy[Zm],hy=Object.prototype,cy=Mm.Array,uy=Mm.RangeError,dy=Tm(Hm),py=Tm([].reverse),fy=zm.pack,gy=zm.unpack,vy=function(t){return[255&t]},my=function(t){return[255&t,t>>8&255]},yy=function(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]},by=function(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]},wy=function(t){return fy(Bm(t),23,4)},xy=function(t){return fy(t,52,8)},Ay=function(t,e,r){Rm(t[Zm],e,{configurable:!0,get:function(){return r(this)[e]}})},_y=function(t,e,r,n){var i=ry(t),a=jm(r),s=!!n;if(a+e>i.byteLength)throw new uy(ty);var o=i.bytes,l=a+i.byteOffset,h=Gm(o,l,l+e);return s?h:py(h)},ky=function(t,e,r,n,i,a){var s=ry(t),o=jm(r),l=n(+i),h=!!a;if(o+e>s.byteLength)throw new uy(ty);for(var c=s.bytes,u=o+s.byteOffset,d=0;d<e;d++)c[u+d]=l[h?d:e-d-1]};if(Pm){var Sy=$m&&iy.name!==Qm;Lm((function(){iy(1)}))&&Lm((function(){new iy(-1)}))&&!Lm((function(){return new iy,new iy(1.5),new iy(NaN),1!==iy.length||Sy&&!Km}))?Sy&&Km&&Im(iy,"name",Qm):((ay=function(t){return Dm(this,sy),Ym(new iy(jm(t)),this,ay)})[Zm]=sy,sy.constructor=ay,Vm(ay,iy)),Um&&Wm(ly)!==hy&&Um(ly,hy);var Ey=new oy(new ay(2)),My=Tm(ly.setInt8);Ey.setInt8(0,2147483648),Ey.setInt8(1,2147483649),!Ey.getInt8(0)&&Ey.getInt8(1)||Om(ly,{setInt8:function(t,e){My(this,t,e<<24>>24)},setUint8:function(t,e){My(this,t,e<<24>>24)}},{unsafe:!0})}else sy=(ay=function(t){Dm(this,sy);var e=jm(t);ny(this,{type:Qm,bytes:dy(cy(e),0),byteLength:e}),Cm||(this.byteLength=e,this.detached=!1)})[Zm],oy=function(t,e,r){Dm(this,ly),Dm(t,sy);var n=ey(t),i=n.byteLength,a=Fm(e);if(a<0||a>i)throw new uy("Wrong offset");if(a+(r=void 0===r?i-a:Nm(r))>i)throw new uy("Wrong length");ny(this,{type:Jm,buffer:t,byteLength:r,byteOffset:a,bytes:n.bytes}),Cm||(this.buffer=t,this.byteLength=r,this.byteOffset=a)},ly=oy[Zm],Cm&&(Ay(ay,"byteLength",ey),Ay(oy,"buffer",ry),Ay(oy,"byteLength",ry),Ay(oy,"byteOffset",ry)),Om(ly,{getInt8:function(t){return _y(this,1,t)[0]<<24>>24},getUint8:function(t){return _y(this,1,t)[0]},getInt16:function(t){var e=_y(this,2,t,arguments.length>1&&arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=_y(this,2,t,arguments.length>1&&arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return by(_y(this,4,t,arguments.length>1&&arguments[1]))},getUint32:function(t){return by(_y(this,4,t,arguments.length>1&&arguments[1]))>>>0},getFloat32:function(t){return gy(_y(this,4,t,arguments.length>1&&arguments[1]),23)},getFloat64:function(t){return gy(_y(this,8,t,arguments.length>1&&arguments[1]),52)},setInt8:function(t,e){ky(this,1,t,vy,e)},setUint8:function(t,e){ky(this,1,t,vy,e)},setInt16:function(t,e){ky(this,2,t,my,e,arguments.length>2&&arguments[2])},setUint16:function(t,e){ky(this,2,t,my,e,arguments.length>2&&arguments[2])},setInt32:function(t,e){ky(this,4,t,yy,e,arguments.length>2&&arguments[2])},setUint32:function(t,e){ky(this,4,t,yy,e,arguments.length>2&&arguments[2])},setFloat32:function(t,e){ky(this,4,t,wy,e,arguments.length>2&&arguments[2])},setFloat64:function(t,e){ky(this,8,t,xy,e,arguments.length>2&&arguments[2])}});qm(ay,Qm),qm(oy,Jm);var Ty={ArrayBuffer:ay,DataView:oy},Cy=iv,Py="ArrayBuffer",Iy=Ty[Py];ri({global:!0,constructor:!0,forced:r[Py]!==Iy},{ArrayBuffer:Iy}),Cy(Py);var Ry,Oy,Ly,Dy=nm,Fy=a,Ny=r,jy=B,By=W,zy=Wt,Wy=ui,Uy=pt,Hy=qe,Gy=Qr,Yy=Ki,Vy=Y,qy=Qh,Xy=Wl,$y=ee,Ky=Vt,Qy=Cr.enforce,Jy=Cr.get,Zy=Ny.Int8Array,tb=Zy&&Zy.prototype,eb=Ny.Uint8ClampedArray,rb=eb&&eb.prototype,nb=Zy&&qy(Zy),ib=tb&&qy(tb),ab=Object.prototype,sb=Ny.TypeError,ob=$y("toStringTag"),lb=Ky("TYPED_ARRAY_TAG"),hb="TypedArrayConstructor",cb=Dy&&!!Xy&&"Opera"!==Wy(Ny.opera),ub=!1,db={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},pb={BigInt64Array:8,BigUint64Array:8},fb=function(t){var e=qy(t);if(By(e)){var r=Jy(e);return r&&zy(r,hb)?r[hb]:fb(e)}},gb=function(t){if(!By(t))return!1;var e=Wy(t);return zy(db,e)||zy(pb,e)};for(Ry in db)(Ly=(Oy=Ny[Ry])&&Oy.prototype)?Qy(Ly)[hb]=Oy:cb=!1;for(Ry in pb)(Ly=(Oy=Ny[Ry])&&Oy.prototype)&&(Qy(Ly)[hb]=Oy);if((!cb||!jy(nb)||nb===Function.prototype)&&(nb=function(){throw new sb("Incorrect invocation")},cb))for(Ry in db)Ny[Ry]&&Xy(Ny[Ry],nb);if((!cb||!ib||ib===ab)&&(ib=nb.prototype,cb))for(Ry in db)Ny[Ry]&&Xy(Ny[Ry].prototype,ib);if(cb&&qy(rb)!==ib&&Xy(rb,ib),Fy&&!zy(ib,ob))for(Ry in ub=!0,Yy(ib,ob,{configurable:!0,get:function(){return By(this)?this[lb]:void 0}}),db)Ny[Ry]&&Hy(Ny[Ry],lb,Ry);var vb={NATIVE_ARRAY_BUFFER_VIEWS:cb,TYPED_ARRAY_TAG:ub&&lb,aTypedArray:function(t){if(gb(t))return t;throw new sb("Target is not a typed array")},aTypedArrayConstructor:function(t){if(jy(t)&&(!Xy||Vy(nb,t)))return t;throw new sb(Uy(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,e,r,n){if(Fy){if(r)for(var i in db){var a=Ny[i];if(a&&zy(a.prototype,t))try{delete a.prototype[t]}catch(r){try{a.prototype[t]=e}catch(t){}}}ib[t]&&!r||Gy(ib,t,r?e:cb&&tb[t]||e,n)}},exportTypedArrayStaticMethod:function(t,e,r){var n,i;if(Fy){if(Xy){if(r)for(n in db)if((i=Ny[n])&&zy(i,t))try{delete i[t]}catch(t){}if(nb[t]&&!r)return;try{return Gy(nb,t,r?e:cb&&nb[t]||e)}catch(t){}}for(n in db)!(i=Ny[n])||i[t]&&!r||Gy(i,t,e)}},getTypedArrayConstructor:fb,isView:function(t){if(!By(t))return!1;var e=Wy(t);return"DataView"===e||zy(db,e)||zy(pb,e)},isTypedArray:gb,TypedArray:nb,TypedArrayPrototype:ib};ri({target:"ArrayBuffer",stat:!0,forced:!vb.NATIVE_ARRAY_BUFFER_VIEWS},{isView:vb.isView});var mb=ri,yb=va,bb=i,wb=Oe,xb=ln,Ab=un,_b=Ty.ArrayBuffer,kb=Ty.DataView,Sb=kb.prototype,Eb=yb(_b.prototype.slice),Mb=yb(Sb.getUint8),Tb=yb(Sb.setUint8);mb({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:bb((function(){return!new _b(2).slice(1,void 0).byteLength}))},{slice:function(t,e){if(Eb&&void 0===e)return Eb(wb(this),t);for(var r=wb(this).byteLength,n=xb(t,r),i=xb(void 0===e?r:e,r),a=new _b(Ab(i-n)),s=new kb(this),o=new kb(a),l=0;n<i;)Tb(o,l++,Mb(s,n++));return a}}),ri({global:!0,constructor:!0,forced:!nm},{DataView:Ty.DataView});var Cb=r,Pb=Pl,Ib=S,Rb=Cb.ArrayBuffer,Ob=Cb.TypeError,Lb=Rb&&Pb(Rb.prototype,"byteLength","get")||function(t){if("ArrayBuffer"!==Ib(t))throw new Ob("ArrayBuffer expected");return t.byteLength},Db=nm,Fb=Lb,Nb=r.DataView,jb=function(t){if(!Db||0!==Fb(t))return!1;try{return new Nb(t),!1}catch(t){return!0}},Bb=a,zb=Ki,Wb=jb,Ub=ArrayBuffer.prototype;Bb&&!("detached"in Ub)&&zb(Ub,"detached",{configurable:!0,get:function(){return Wb(this)}});var Hb,Gb,Yb,Vb,qb=jb,Xb=TypeError,$b=r,Kb=rg,Qb=function(t){if(Kb){try{return $b.process.getBuiltinModule(t)}catch(t){}try{return Function('return require("'+t+'")')()}catch(t){}}},Jb=i,Zb=et,tw=eg,ew=r.structuredClone,rw=!!ew&&!Jb((function(){if("DENO"===tw&&Zb>92||"NODE"===tw&&Zb>94||"BROWSER"===tw&&Zb>97)return!1;var t=new ArrayBuffer(8),e=ew(t,{transfer:[t]});return 0!==t.byteLength||8!==e.byteLength})),nw=r,iw=Qb,aw=rw,sw=nw.structuredClone,ow=nw.ArrayBuffer,lw=nw.MessageChannel,hw=!1;if(aw)hw=function(t){sw(t,{transfer:[t]})};else if(ow)try{lw||(Hb=iw("worker_threads"))&&(lw=Hb.MessageChannel),lw&&(Gb=new lw,Yb=new ow(2),Vb=function(t){Gb.port1.postMessage(null,[t])},2===Yb.byteLength&&(Vb(Yb),0===Yb.byteLength&&(hw=Vb)))}catch(t){}var cw=hw,uw=r,dw=x,pw=Pl,fw=dm,gw=function(t){if(qb(t))throw new Xb("ArrayBuffer is detached");return t},vw=Lb,mw=cw,yw=rw,bw=uw.structuredClone,ww=uw.ArrayBuffer,xw=uw.DataView,Aw=Math.min,_w=ww.prototype,kw=xw.prototype,Sw=dw(_w.slice),Ew=pw(_w,"resizable","get"),Mw=pw(_w,"maxByteLength","get"),Tw=dw(kw.getInt8),Cw=dw(kw.setInt8),Pw=(yw||mw)&&function(t,e,r){var n,i=vw(t),a=void 0===e?i:fw(e),s=!Ew||!Ew(t);if(gw(t),yw&&(t=bw(t,{transfer:[t]}),i===a&&(r||s)))return t;if(i>=a&&(!r||s))n=Sw(t,0,a);else{var o=r&&!s&&Mw?{maxByteLength:Mw(t)}:void 0;n=new ww(a,o);for(var l=new xw(t),h=new xw(n),c=Aw(a,i),u=0;u<c;u++)Cw(h,u,Tw(l,u))}return yw||mw(t),n},Iw=Pw;Iw&&ri({target:"ArrayBuffer",proto:!0},{transfer:function(){return Iw(this,arguments.length?arguments[0]:void 0,!0)}});var Rw=Pw;Rw&&ri({target:"ArrayBuffer",proto:!0},{transferToFixedLength:function(){return Rw(this,arguments.length?arguments[0]:void 0,!1)}});var Ow=ri,Lw=x,Dw=i((function(){return 120!==new Date(16e11).getYear()})),Fw=Lw(Date.prototype.getFullYear);Ow({target:"Date",proto:!0,forced:Dw},{getYear:function(){return Fw(this)-1900}});var Nw=ri,jw=Date,Bw=x(jw.prototype.getTime);Nw({target:"Date",stat:!0},{now:function(){return Bw(new jw)}});var zw=ri,Ww=x,Uw=nn,Hw=Date.prototype,Gw=Ww(Hw.getTime),Yw=Ww(Hw.setFullYear);zw({target:"Date",proto:!0},{setYear:function(t){Gw(this);var e=Uw(t);return Yw(this,e>=0&&e<=99?e+1900:e)}}),ri({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString});var Vw=nn,qw=fi,Xw=L,$w=RangeError,Kw=function(t){var e=qw(Xw(this)),r="",n=Vw(t);if(n<0||n===1/0)throw new $w("Wrong number of repetitions");for(;n>0;(n>>>=1)&&(e+=e))1&n&&(r+=e);return r},Qw=x,Jw=un,Zw=fi,tx=L,ex=Qw(Kw),rx=Qw("".slice),nx=Math.ceil,ix=function(t){return function(e,r,n){var i,a,s=Zw(tx(e)),o=Jw(r),l=s.length,h=void 0===n?" ":Zw(n);return o<=l||""===h?s:((a=ex(h,nx((i=o-l)/h.length))).length>i&&(a=rx(a,0,i)),t?s+a:a+s)}},ax={start:ix(!1),end:ix(!0)},sx=x,ox=i,lx=ax.start,hx=RangeError,cx=isFinite,ux=Math.abs,dx=Date.prototype,px=dx.toISOString,fx=sx(dx.getTime),gx=sx(dx.getUTCDate),vx=sx(dx.getUTCFullYear),mx=sx(dx.getUTCHours),yx=sx(dx.getUTCMilliseconds),bx=sx(dx.getUTCMinutes),wx=sx(dx.getUTCMonth),xx=sx(dx.getUTCSeconds),Ax=ox((function(){return"0385-07-25T07:06:39.999Z"!==px.call(new Date(-50000000000001))}))||!ox((function(){px.call(new Date(NaN))}))?function(){if(!cx(fx(this)))throw new hx("Invalid time value");var t=this,e=vx(t),r=yx(t),n=e<0?"-":e>9999?"+":"";return n+lx(ux(e),n?6:4,0)+"-"+lx(wx(t)+1,2,0)+"-"+lx(gx(t),2,0)+"T"+lx(mx(t),2,0)+":"+lx(bx(t),2,0)+":"+lx(xx(t),2,0)+"."+lx(r,3,0)+"Z"}:px,_x=Ax;ri({target:"Date",proto:!0,forced:Date.prototype.toISOString!==_x},{toISOString:_x});var kx=jt,Sx=he;ri({target:"Date",proto:!0,arity:1,forced:i((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}))},{toJSON:function(t){var e=kx(this),r=Sx(e,"number");return"number"!=typeof r||isFinite(r)?e.toISOString():null}});var Ex=Oe,Mx=St,Tx=TypeError,Cx=Wt,Px=Qr,Ix=function(t){if(Ex(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new Tx("Incorrect hint");return Mx(this,t)},Rx=ee("toPrimitive"),Ox=Date.prototype;Cx(Ox,Rx)||Px(Ox,Rx,Ix);var Lx=x,Dx=Qr,Fx=Date.prototype,Nx="Invalid Date",jx="toString",Bx=Lx(Fx[jx]),zx=Lx(Fx.getTime);String(new Date(NaN))!==Nx&&Dx(Fx,jx,(function(){var t=zx(this);return t==t?Bx(this):Nx}));var Wx=ri,Ux=x,Hx=fi,Gx=Ux("".charAt),Yx=Ux("".charCodeAt),Vx=Ux(/./.exec),qx=Ux(1..toString),Xx=Ux("".toUpperCase),$x=/[\w*+\-./@]/,Kx=function(t,e){for(var r=qx(t,16);r.length<e;)r="0"+r;return r};Wx({global:!0},{escape:function(t){for(var e,r,n=Hx(t),i="",a=n.length,s=0;s<a;)e=Gx(n,s++),Vx($x,e)?i+=e:i+=(r=Yx(e,0))<256?"%"+Kx(r,2):"%u"+Xx(Kx(r,4));return i}});var Qx=x,Jx=mt,Zx=W,tA=Wt,eA=Ui,rA=s,nA=Function,iA=Qx([].concat),aA=Qx([].join),sA={},oA=rA?nA.bind:function(t){var e=Jx(this),r=e.prototype,n=eA(arguments,1),i=function(){var r=iA(n,eA(arguments));return this instanceof i?function(t,e,r){if(!tA(sA,e)){for(var n=[],i=0;i<e;i++)n[i]="a["+i+"]";sA[e]=nA("C,a","return new C("+aA(n,",")+")")}return sA[e](t,r)}(e,r.length,r):e.apply(t,r)};return Zx(r)&&(i.prototype=r),i},lA=oA;ri({target:"Function",proto:!0,forced:Function.bind!==lA},{bind:lA});var hA=B,cA=W,uA=Te,dA=Y,pA=ee,fA=Xe.exports,gA=pA("hasInstance"),vA=Function.prototype;gA in vA||uA.f(vA,gA,{value:fA((function(t){if(!hA(this)||!cA(t))return!1;var e=this.prototype;return cA(e)?dA(e,t):t instanceof this}),gA)});var mA=a,yA=tr.EXISTS,bA=x,wA=Ki,xA=Function.prototype,AA=bA(xA.toString),_A=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,kA=bA(_A.exec);mA&&!yA&&wA(xA,"name",{configurable:!0,get:function(){try{return kA(_A,AA(this))[1]}catch(t){return""}}});var SA=r;ri({global:!0,forced:SA.globalThis!==SA},{globalThis:SA});var EA=ri,MA=r,TA=lm,CA=Oe,PA=B,IA=Qh,RA=Ki,OA=bu,LA=i,DA=Wt,FA=Ep.IteratorPrototype,NA=a,jA="constructor",BA="Iterator",zA=ee("toStringTag"),WA=TypeError,UA=MA[BA],HA=!PA(UA)||UA.prototype!==FA||!LA((function(){UA({})})),GA=function(){if(TA(this,FA),IA(this)===FA)throw new WA("Abstract class Iterator not directly constructable")},YA=function(t,e){NA?RA(FA,t,{configurable:!0,get:function(){return e},set:function(e){if(CA(this),this===FA)throw new WA("You can't redefine this property");DA(this,t)?this[t]=e:OA(this,t,e)}}):FA[t]=e};DA(FA,zA)||YA(zA,BA),!HA&&DA(FA,jA)&&FA[jA]!==Object||YA(jA,GA),GA.prototype=FA,EA({global:!0,constructor:!0,forced:HA},{Iterator:GA});var VA=function(t){return{iterator:t,next:t.next,done:!1}},qA=RangeError,XA=function(t){if(t==t)return t;throw new qA("NaN is not allowed")},$A=nn,KA=RangeError,QA=function(t){var e=$A(t);if(e<0)throw new KA("The argument can't be less than 0");return e},JA=h,ZA=zi,t_=qe,e_=am,r_=Cr,n_=wt,i_=Ep.IteratorPrototype,a_=tf,s_=bc,o_=ee("toStringTag"),l_="IteratorHelper",h_="WrapForValidIterator",c_=r_.set,u_=function(t){var e=r_.getterFor(t?h_:l_);return e_(ZA(i_),{next:function(){var r=e(this);if(t)return r.nextHandler();if(r.done)return a_(void 0,!0);try{var n=r.nextHandler();return r.returnHandlerResult?n:a_(n,r.done)}catch(t){throw r.done=!0,t}},return:function(){var r=e(this),n=r.iterator;if(r.done=!0,t){var i=n_(n,"return");return i?JA(i,n):a_(void 0,!0)}if(r.inner)try{s_(r.inner.iterator,"normal")}catch(t){return s_(n,"throw",t)}return n&&s_(n,"normal"),a_(void 0,!0)}})},d_=u_(!0),p_=u_(!1);t_(p_,o_,"Iterator Helper");var f_=function(t,e,r){var n=function(n,i){i?(i.iterator=n.iterator,i.next=n.next):i=n,i.type=e?h_:l_,i.returnHandlerResult=!!r,i.nextHandler=t,i.counter=0,i.done=!1,c_(this,i)};return n.prototype=e?d_:p_,n},g_=ri,v_=h,m_=Oe,y_=VA,b_=XA,w_=QA,x_=f_((function(){for(var t,e=this.iterator,r=this.next;this.remaining;)if(this.remaining--,t=m_(v_(r,e)),this.done=!!t.done)return;if(t=m_(v_(r,e)),!(this.done=!!t.done))return t.value}));g_({target:"Iterator",proto:!0,real:!0,forced:false},{drop:function(t){m_(this);var e=w_(b_(+t));return new x_(y_(this),{remaining:e})}});var A_=Oc,__=mt,k_=Oe,S_=VA;ri({target:"Iterator",proto:!0,real:!0},{every:function(t){k_(this),__(t);var e=S_(this),r=0;return!A_(e,(function(e,n){if(!t(e,r++))return n()}),{IS_RECORD:!0,INTERRUPTED:!0}).stopped}});var E_=ri,M_=h,T_=mt,C_=Oe,P_=VA,I_=Hd,R_=f_((function(){for(var t,e,r=this.iterator,n=this.predicate,i=this.next;;){if(t=C_(M_(i,r)),this.done=!!t.done)return;if(e=t.value,I_(r,n,[e,this.counter++],!0))return e}}));E_({target:"Iterator",proto:!0,real:!0,forced:false},{filter:function(t){return C_(this),T_(t),new R_(P_(this),{predicate:t})}});var O_=Oc,L_=mt,D_=Oe,F_=VA;ri({target:"Iterator",proto:!0,real:!0},{find:function(t){D_(this),L_(t);var e=F_(this),r=0;return O_(e,(function(e,n){if(t(e,r++))return n(e)}),{IS_RECORD:!0,INTERRUPTED:!0}).result}});var N_=h,j_=Oe,B_=VA,z_=lc,W_=function(t,e){e&&"string"==typeof t||j_(t);var r=z_(t);return B_(j_(void 0!==r?N_(r,t):t))},U_=ri,H_=h,G_=mt,Y_=Oe,V_=VA,q_=W_,X_=bc,$_=f_((function(){for(var t,e,r=this.iterator,n=this.mapper;;){if(e=this.inner)try{if(!(t=Y_(H_(e.next,e.iterator))).done)return t.value;this.inner=null}catch(t){X_(r,"throw",t)}if(t=Y_(H_(this.next,r)),this.done=!!t.done)return;try{this.inner=q_(n(t.value,this.counter++),!1)}catch(t){X_(r,"throw",t)}}}));U_({target:"Iterator",proto:!0,real:!0,forced:false},{flatMap:function(t){return Y_(this),G_(t),new $_(V_(this),{mapper:t,inner:null})}});var K_=Oc,Q_=mt,J_=Oe,Z_=VA;ri({target:"Iterator",proto:!0,real:!0},{forEach:function(t){J_(this),Q_(t);var e=Z_(this),r=0;K_(e,(function(e){t(e,r++)}),{IS_RECORD:!0})}});var tk=ri,ek=h,rk=jt,nk=Y,ik=Ep.IteratorPrototype,ak=W_,sk=f_((function(){return ek(this.next,this.iterator)}),!0);tk({target:"Iterator",stat:!0,forced:false},{from:function(t){var e=ak("string"==typeof t?rk(t):t,!0);return nk(ik,e.iterator)?e.iterator:new sk(e)}});var ok=h,lk=mt,hk=Oe,ck=VA,uk=Hd,dk=f_((function(){var t=this.iterator,e=hk(ok(this.next,t));if(!(this.done=!!e.done))return uk(t,this.mapper,[e.value,this.counter++],!0)}));ri({target:"Iterator",proto:!0,real:!0,forced:false},{map:function(t){return hk(this),lk(t),new dk(ck(this),{mapper:t})}});var pk=Oc,fk=mt,gk=Oe,vk=VA,mk=TypeError;ri({target:"Iterator",proto:!0,real:!0},{reduce:function(t){gk(this),fk(t);var e=vk(this),r=arguments.length<2,n=r?void 0:arguments[1],i=0;if(pk(e,(function(e){r?(r=!1,n=e):n=t(n,e,i),i++}),{IS_RECORD:!0}),r)throw new mk("Reduce of empty iterator with no initial value");return n}});var yk=Oc,bk=mt,wk=Oe,xk=VA;ri({target:"Iterator",proto:!0,real:!0},{some:function(t){wk(this),bk(t);var e=xk(this),r=0;return yk(e,(function(e,n){if(t(e,r++))return n()}),{IS_RECORD:!0,INTERRUPTED:!0}).stopped}});var Ak=ri,_k=h,kk=Oe,Sk=VA,Ek=XA,Mk=QA,Tk=bc,Ck=f_((function(){var t=this.iterator;if(!this.remaining--)return this.done=!0,Tk(t,"normal",void 0);var e=kk(_k(this.next,t));return(this.done=!!e.done)?void 0:e.value}));Ak({target:"Iterator",proto:!0,real:!0,forced:false},{take:function(t){kk(this);var e=Mk(Ek(+t));return new Ck(Sk(this),{remaining:e})}});var Pk=Oe,Ik=Oc,Rk=VA,Ok=[].push;ri({target:"Iterator",proto:!0,real:!0},{toArray:function(){var t=[];return Ik(Rk(Pk(this)),Ok,{that:t,IS_RECORD:!0}),t}}),pa(r.JSON,"JSON",!0);var Lk={exports:{}},Dk=i((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}})),Fk=i,Nk=W,jk=S,Bk=Dk,zk=Object.isExtensible,Wk=Fk((function(){zk(1)}))||Bk?function(t){return!!Nk(t)&&((!Bk||"ArrayBuffer"!==jk(t))&&(!zk||zk(t)))}:zk,Uk=!i((function(){return Object.isExtensible(Object.preventExtensions({}))})),Hk=ri,Gk=x,Yk=gr,Vk=W,qk=Wt,Xk=Te.f,$k=Jr,Kk=Wi,Qk=Wk,Jk=Uk,Zk=!1,tS=Vt("meta"),eS=0,rS=function(t){Xk(t,tS,{value:{objectID:"O"+eS++,weakData:{}}})},nS=Lk.exports={enable:function(){nS.enable=function(){},Zk=!0;var t=$k.f,e=Gk([].splice),r={};r[tS]=1,t(r).length&&($k.f=function(r){for(var n=t(r),i=0,a=n.length;i<a;i++)if(n[i]===tS){e(n,i,1);break}return n},Hk({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:Kk.f}))},fastKey:function(t,e){if(!Vk(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!qk(t,tS)){if(!Qk(t))return"F";if(!e)return"E";rS(t)}return t[tS].objectID},getWeakData:function(t,e){if(!qk(t,tS)){if(!Qk(t))return!0;if(!e)return!1;rS(t)}return t[tS].weakData},onFreeze:function(t){return Jk&&Zk&&Qk(t)&&!qk(t,tS)&&rS(t),t}};Yk[tS]=!0;var iS=ri,aS=r,sS=x,oS=Xn,lS=Qr,hS=Lk.exports,cS=Oc,uS=lm,dS=B,pS=I,fS=W,gS=i,vS=sp,mS=pa,yS=ql,bS=function(t,e,r){var n=-1!==t.indexOf("Map"),i=-1!==t.indexOf("Weak"),a=n?"set":"add",s=aS[t],o=s&&s.prototype,l=s,h={},c=function(t){var e=sS(o[t]);lS(o,t,"add"===t?function(t){return e(this,0===t?0:t),this}:"delete"===t?function(t){return!(i&&!fS(t))&&e(this,0===t?0:t)}:"get"===t?function(t){return i&&!fS(t)?void 0:e(this,0===t?0:t)}:"has"===t?function(t){return!(i&&!fS(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if(oS(t,!dS(s)||!(i||o.forEach&&!gS((function(){(new s).entries().next()})))))l=r.getConstructor(e,t,n,a),hS.enable();else if(oS(t,!0)){var u=new l,d=u[a](i?{}:-0,1)!==u,p=gS((function(){u.has(1)})),f=vS((function(t){new s(t)})),g=!i&&gS((function(){for(var t=new s,e=5;e--;)t[a](e,e);return!t.has(-0)}));f||((l=e((function(t,e){uS(t,o);var r=yS(new s,t,l);return pS(e)||cS(e,r[a],{that:r,AS_ENTRIES:n}),r}))).prototype=o,o.constructor=l),(p||g)&&(c("delete"),c("has"),n&&c("get")),(g||d)&&c(a),i&&o.clear&&delete o.clear}return h[t]=l,iS({global:!0,constructor:!0,forced:l!==s},h),mS(l,t),i||r.setStrong(l,t,n),l},wS=zi,xS=Ki,AS=am,_S=wa,kS=lm,SS=I,ES=Oc,MS=Zp,TS=tf,CS=iv,PS=a,IS=Lk.exports.fastKey,RS=Cr.set,OS=Cr.getterFor,LS={getConstructor:function(t,e,r,n){var i=t((function(t,i){kS(t,a),RS(t,{type:e,index:wS(null),first:null,last:null,size:0}),PS||(t.size=0),SS(i)||ES(i,t[n],{that:t,AS_ENTRIES:r})})),a=i.prototype,s=OS(e),o=function(t,e,r){var n,i,a=s(t),o=l(t,e);return o?o.value=r:(a.last=o={index:i=IS(e,!0),key:e,value:r,previous:n=a.last,next:null,removed:!1},a.first||(a.first=o),n&&(n.next=o),PS?a.size++:t.size++,"F"!==i&&(a.index[i]=o)),t},l=function(t,e){var r,n=s(t),i=IS(e);if("F"!==i)return n.index[i];for(r=n.first;r;r=r.next)if(r.key===e)return r};return AS(a,{clear:function(){for(var t=s(this),e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=null),e=e.next;t.first=t.last=null,t.index=wS(null),PS?t.size=0:this.size=0},delete:function(t){var e=this,r=s(e),n=l(e,t);if(n){var i=n.next,a=n.previous;delete r.index[n.index],n.removed=!0,a&&(a.next=i),i&&(i.previous=a),r.first===n&&(r.first=i),r.last===n&&(r.last=a),PS?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=s(this),n=_S(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!l(this,t)}}),AS(a,r?{get:function(t){var e=l(this,t);return e&&e.value},set:function(t,e){return o(this,0===t?0:t,e)}}:{add:function(t){return o(this,t=0===t?0:t,t)}}),PS&&xS(a,"size",{configurable:!0,get:function(){return s(this).size}}),i},setStrong:function(t,e,r){var n=e+" Iterator",i=OS(e),a=OS(n);MS(t,e,(function(t,e){RS(this,{type:n,target:t,state:i(t),kind:e,last:null})}),(function(){for(var t=a(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?TS("keys"===e?r.key:"values"===e?r.value:[r.key,r.value],!1):(t.target=null,TS(void 0,!0))}),r?"entries":"values",!r,!0),CS(e)}};bS("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),LS);var DS=x,FS=Map.prototype,NS={Map:Map,set:DS(FS.set),get:DS(FS.get),has:DS(FS.has),remove:DS(FS.delete),proto:FS},jS=ri,BS=mt,zS=L,WS=Oc,US=i,HS=NS.Map,GS=NS.has,YS=NS.get,VS=NS.set,qS=x([].push);jS({target:"Map",stat:!0,forced:US((function(){return 1!==HS.groupBy("ab",(function(t){return t})).get("a").length}))},{groupBy:function(t,e){zS(t),BS(e);var r=new HS,n=0;return WS(t,(function(t){var i=e(t,n++);GS(r,i)?qS(YS(r,i),t):VS(r,i,[t])})),r}});var XS=Math.log,$S=Math.log1p||function(t){var e=+t;return e>-1e-8&&e<1e-8?e-e*e/2:XS(1+e)},KS=ri,QS=$S,JS=Math.acosh,ZS=Math.log,tE=Math.sqrt,eE=Math.LN2;KS({target:"Math",stat:!0,forced:!JS||710!==Math.floor(JS(Number.MAX_VALUE))||JS(1/0)!==1/0},{acosh:function(t){var e=+t;return e<1?NaN:e>94906265.62425156?ZS(e)+eE:QS(e-1+tE(e-1)*tE(e+1))}});var rE=ri,nE=Math.asinh,iE=Math.log,aE=Math.sqrt;rE({target:"Math",stat:!0,forced:!(nE&&1/nE(0)>0)},{asinh:function t(e){var r=+e;return isFinite(r)&&0!==r?r<0?-t(-r):iE(r+aE(r*r+1)):r}});var sE=ri,oE=Math.atanh,lE=Math.log;sE({target:"Math",stat:!0,forced:!(oE&&1/oE(-0)<0)},{atanh:function(t){var e=+t;return 0===e?e:lE((1+e)/(1-e))/2}});var hE=ri,cE=pm,uE=Math.abs,dE=Math.pow;hE({target:"Math",stat:!0},{cbrt:function(t){var e=+t;return cE(e)*dE(uE(e),1/3)}});var pE=ri,fE=Math.floor,gE=Math.log,vE=Math.LOG2E;pE({target:"Math",stat:!0},{clz32:function(t){var e=t>>>0;return e?31-fE(gE(e+.5)*vE):32}});var mE=Math.expm1,yE=Math.exp,bE=!mE||mE(10)>22025.465794806718||mE(10)<22025.465794806718||-2e-17!==mE(-2e-17)?function(t){var e=+t;return 0===e?e:e>-1e-6&&e<1e-6?e+e*e/2:yE(e)-1}:mE,wE=ri,xE=bE,AE=Math.cosh,_E=Math.abs,kE=Math.E;wE({target:"Math",stat:!0,forced:!AE||AE(710)===1/0},{cosh:function(t){var e=xE(_E(t)-1)+1;return(e+1/(e*kE*kE))*(kE/2)}});var SE=bE;ri({target:"Math",stat:!0,forced:SE!==Math.expm1},{expm1:SE}),ri({target:"Math",stat:!0},{fround:bm});var EE=ri,ME=Math.hypot,TE=Math.abs,CE=Math.sqrt;EE({target:"Math",stat:!0,arity:2,forced:!!ME&&ME(1/0,NaN)!==1/0},{hypot:function(t,e){for(var r,n,i=0,a=0,s=arguments.length,o=0;a<s;)o<(r=TE(arguments[a++]))?(i=i*(n=o/r)*n+1,o=r):i+=r>0?(n=r/o)*n:r;return o===1/0?1/0:o*CE(i)}});var PE=ri,IE=i,RE=Math.imul;PE({target:"Math",stat:!0,forced:IE((function(){return-5!==RE(4294967295,5)||2!==RE.length}))},{imul:function(t,e){var r=65535,n=+t,i=+e,a=r&n,s=r&i;return 0|a*s+((r&n>>>16)*s+a*(r&i>>>16)<<16>>>0)}});var OE=Math.log,LE=Math.LOG10E,DE=Math.log10||function(t){return OE(t)*LE};ri({target:"Math",stat:!0},{log10:DE}),ri({target:"Math",stat:!0},{log1p:$S});var FE=Math.log,NE=Math.LN2,jE=Math.log2||function(t){return FE(t)/NE};ri({target:"Math",stat:!0},{log2:jE}),ri({target:"Math",stat:!0},{sign:pm});var BE=ri,zE=i,WE=bE,UE=Math.abs,HE=Math.exp,GE=Math.E;BE({target:"Math",stat:!0,forced:zE((function(){return-2e-17!==Math.sinh(-2e-17)}))},{sinh:function(t){var e=+t;return UE(e)<1?(WE(e)-WE(-e))/2:(HE(e-1)-HE(-e-1))*(GE/2)}});var YE=ri,VE=bE,qE=Math.exp;YE({target:"Math",stat:!0},{tanh:function(t){var e=+t,r=VE(e),n=VE(-e);return r===1/0?1:n===1/0?-1:(r-n)/(qE(e)+qE(-e))}}),pa(Math,"Math",!0),ri({target:"Math",stat:!0},{trunc:en});var XE=x(1..valueOf),$E="\t\n\v\f\r                 \u2028\u2029\ufeff",KE=L,QE=fi,JE=$E,ZE=x("".replace),tM=RegExp("^["+JE+"]+"),eM=RegExp("(^|[^"+JE+"])["+JE+"]+$"),rM=function(t){return function(e){var r=QE(KE(e));return 1&t&&(r=ZE(r,tM,"")),2&t&&(r=ZE(r,eM,"$1")),r}},nM={start:rM(1),end:rM(2),trim:rM(3)},iM=ri,aM=a,sM=r,oM=Zi,lM=x,hM=Xn,cM=Wt,uM=ql,dM=Y,pM=ut,fM=he,gM=i,vM=Jr.f,mM=n.f,yM=Te.f,bM=XE,wM=nM.trim,xM="Number",AM=sM[xM];oM[xM];var _M=AM.prototype,kM=sM.TypeError,SM=lM("".slice),EM=lM("".charCodeAt),MM=function(t){var e,r,n,i,a,s,o,l,h=fM(t,"number");if(pM(h))throw new kM("Cannot convert a Symbol value to a number");if("string"==typeof h&&h.length>2)if(h=wM(h),43===(e=EM(h,0))||45===e){if(88===(r=EM(h,2))||120===r)return NaN}else if(48===e){switch(EM(h,1)){case 66:case 98:n=2,i=49;break;case 79:case 111:n=8,i=55;break;default:return+h}for(s=(a=SM(h,2)).length,o=0;o<s;o++)if((l=EM(a,o))<48||l>i)return NaN;return parseInt(a,n)}return+h},TM=hM(xM,!AM(" 0o1")||!AM("0b1")||AM("+0x1")),CM=function(t){var e,r=arguments.length<1?0:AM(function(t){var e=fM(t,"number");return"bigint"==typeof e?e:MM(e)}(t));return dM(_M,e=this)&&gM((function(){bM(e)}))?uM(Object(r),this,CM):r};CM.prototype=_M,TM&&(_M.constructor=CM),iM({global:!0,constructor:!0,wrap:!0,forced:TM},{Number:CM});TM&&function(t,e){for(var r,n=aM?vM(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),i=0;n.length>i;i++)cM(e,r=n[i])&&!cM(t,r)&&yM(t,r,mM(e,r))}(oM[xM],AM),ri({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)});var PM=r.isFinite;ri({target:"Number",stat:!0},{isFinite:Number.isFinite||function(t){return"number"==typeof t&&PM(t)}});var IM=W,RM=Math.floor,OM=Number.isInteger||function(t){return!IM(t)&&isFinite(t)&&RM(t)===t};ri({target:"Number",stat:!0},{isInteger:OM}),ri({target:"Number",stat:!0},{isNaN:function(t){return t!=t}});var LM=ri,DM=OM,FM=Math.abs;LM({target:"Number",stat:!0},{isSafeInteger:function(t){return DM(t)&&FM(t)<=9007199254740991}}),ri({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991}),ri({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991});var NM=r,jM=i,BM=fi,zM=nM.trim,WM=$E,UM=x("".charAt),HM=NM.parseFloat,GM=NM.Symbol,YM=GM&&GM.iterator,VM=1/HM(WM+"-0")!=-1/0||YM&&!jM((function(){HM(Object(YM))}))?function(t){var e=zM(BM(t)),r=HM(e);return 0===r&&"-"===UM(e,0)?-0:r}:HM,qM=VM;ri({target:"Number",stat:!0,forced:Number.parseFloat!==qM},{parseFloat:qM});var XM=r,$M=i,KM=x,QM=fi,JM=nM.trim,ZM=$E,tT=XM.parseInt,eT=XM.Symbol,rT=eT&&eT.iterator,nT=/^[+-]?0x/i,iT=KM(nT.exec),aT=8!==tT(ZM+"08")||22!==tT(ZM+"0x16")||rT&&!$M((function(){tT(Object(rT))}))?function(t,e){var r=JM(QM(t));return tT(r,e>>>0||(iT(nT,r)?16:10))}:tT,sT=aT;ri({target:"Number",stat:!0,forced:Number.parseInt!==sT},{parseInt:sT});var oT=ri,lT=x,hT=nn,cT=XE,uT=Kw,dT=DE,pT=i,fT=RangeError,gT=String,vT=isFinite,mT=Math.abs,yT=Math.floor,bT=Math.pow,wT=Math.round,xT=lT(1..toExponential),AT=lT(uT),_T=lT("".slice),kT="-6.9000e-11"===xT(-69e-12,4)&&"1.25e+0"===xT(1.255,2)&&"1.235e+4"===xT(12345,3)&&"3e+1"===xT(25,0);oT({target:"Number",proto:!0,forced:!kT||!(pT((function(){xT(1,1/0)}))&&pT((function(){xT(1,-1/0)})))||!!pT((function(){xT(1/0,1/0),xT(NaN,1/0)}))},{toExponential:function(t){var e=cT(this);if(void 0===t)return xT(e);var r=hT(t);if(!vT(e))return String(e);if(r<0||r>20)throw new fT("Incorrect fraction digits");if(kT)return xT(e,r);var n,i,a,s,o="";if(e<0&&(o="-",e=-e),0===e)i=0,n=AT("0",r+1);else{var l=dT(e);i=yT(l);var h=bT(10,i-r),c=wT(e/h);2*e>=(2*c+1)*h&&(c+=1),c>=bT(10,r+1)&&(c/=10,i+=1),n=gT(c)}return 0!==r&&(n=_T(n,0,1)+"."+_T(n,1)),0===i?(a="+",s="0"):(a=i>0?"+":"-",s=gT(mT(i))),o+(n+="e"+a+s)}});var ST=ri,ET=x,MT=nn,TT=XE,CT=Kw,PT=i,IT=RangeError,RT=String,OT=Math.floor,LT=ET(CT),DT=ET("".slice),FT=ET(1..toFixed),NT=function(t,e,r){return 0===e?r:e%2==1?NT(t,e-1,r*t):NT(t*t,e/2,r)},jT=function(t,e,r){for(var n=-1,i=r;++n<6;)i+=e*t[n],t[n]=i%1e7,i=OT(i/1e7)},BT=function(t,e){for(var r=6,n=0;--r>=0;)n+=t[r],t[r]=OT(n/e),n=n%e*1e7},zT=function(t){for(var e=6,r="";--e>=0;)if(""!==r||0===e||0!==t[e]){var n=RT(t[e]);r=""===r?n:r+LT("0",7-n.length)+n}return r};ST({target:"Number",proto:!0,forced:PT((function(){return"0.000"!==FT(8e-5,3)||"1"!==FT(.9,0)||"1.25"!==FT(1.255,2)||"1000000000000000128"!==FT(0xde0b6b3a7640080,0)}))||!PT((function(){FT({})}))},{toFixed:function(t){var e,r,n,i,a=TT(this),s=MT(t),o=[0,0,0,0,0,0],l="",h="0";if(s<0||s>20)throw new IT("Incorrect fraction digits");if(a!=a)return"NaN";if(a<=-1e21||a>=1e21)return RT(a);if(a<0&&(l="-",a=-a),a>1e-21)if(e=function(t){for(var e=0,r=t;r>=4096;)e+=12,r/=4096;for(;r>=2;)e+=1,r/=2;return e}(a*NT(2,69,1))-69,r=e<0?a*NT(2,-e,1):a/NT(2,e,1),r*=4503599627370496,(e=52-e)>0){for(jT(o,0,r),n=s;n>=7;)jT(o,1e7,0),n-=7;for(jT(o,NT(10,n,1),0),n=e-1;n>=23;)BT(o,1<<23),n-=23;BT(o,1<<n),jT(o,1,1),BT(o,2),h=zT(o)}else jT(o,0,r),jT(o,1<<-e,0),h=zT(o)+LT("0",s);return h=s>0?l+((i=h.length)<=s?"0."+LT("0",s-i)+h:DT(h,0,i-s)+"."+DT(h,i-s)):l+h}});var WT=ri,UT=i,HT=XE,GT=x(1..toPrecision);WT({target:"Number",proto:!0,forced:UT((function(){return"1"!==GT(1,void 0)}))||!UT((function(){GT({})}))},{toPrecision:function(t){return void 0===t?GT(HT(this)):GT(HT(this),t)}});var YT=a,VT=x,qT=h,XT=i,$T=yi,KT=Tn,QT=c,JT=jt,ZT=P,tC=Object.assign,eC=Object.defineProperty,rC=VT([].concat),nC=!tC||XT((function(){if(YT&&1!==tC({b:1},tC(eC({},"a",{enumerable:!0,get:function(){eC(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol("assign detection"),n="abcdefghijklmnopqrst";return t[r]=7,n.split("").forEach((function(t){e[t]=t})),7!==tC({},t)[r]||$T(tC({},e)).join("")!==n}))?function(t,e){for(var r=JT(t),n=arguments.length,i=1,a=KT.f,s=QT.f;n>i;)for(var o,l=ZT(arguments[i++]),h=a?rC($T(l),a(l)):$T(l),c=h.length,u=0;c>u;)o=h[u++],YT&&!qT(s,l,o)||(r[o]=l[o]);return r}:tC,iC=nC;ri({target:"Object",stat:!0,arity:2,forced:Object.assign!==iC},{assign:iC}),ri({target:"Object",stat:!0,sham:!a},{create:zi});var aC=r,sC=Rg,oC=!i((function(){if(!(sC&&sC<535)){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete aC[t]}})),lC=mt,hC=jt,cC=Te;a&&ri({target:"Object",proto:!0,forced:oC},{__defineGetter__:function(t,e){cC.f(hC(this),t,{get:lC(e),enumerable:!0,configurable:!0})}});var uC=ri,dC=a,pC=gi.f;uC({target:"Object",stat:!0,forced:Object.defineProperties!==pC,sham:!dC},{defineProperties:pC});var fC=ri,gC=a,vC=Te.f;fC({target:"Object",stat:!0,forced:Object.defineProperty!==vC,sham:!gC},{defineProperty:vC});var mC=mt,yC=jt,bC=Te;a&&ri({target:"Object",proto:!0,forced:oC},{__defineSetter__:function(t,e){bC.f(yC(this),t,{set:mC(e),enumerable:!0,configurable:!0})}});var wC=a,xC=i,AC=x,_C=Qh,kC=yi,SC=N,EC=AC(c.f),MC=AC([].push),TC=wC&&xC((function(){var t=Object.create(null);return t[2]=2,!EC(t,2)})),CC=function(t){return function(e){for(var r,n=SC(e),i=kC(n),a=TC&&null===_C(n),s=i.length,o=0,l=[];s>o;)r=i[o++],wC&&!(a?r in n:EC(n,r))||MC(l,t?[r,n[r]]:n[r]);return l}},PC={entries:CC(!0),values:CC(!1)},IC=PC.entries;ri({target:"Object",stat:!0},{entries:function(t){return IC(t)}});var RC=ri,OC=Uk,LC=i,DC=W,FC=Lk.exports.onFreeze,NC=Object.freeze;RC({target:"Object",stat:!0,forced:LC((function(){NC(1)})),sham:!OC},{freeze:function(t){return NC&&DC(t)?NC(FC(t)):t}});var jC=Oc,BC=bu;ri({target:"Object",stat:!0},{fromEntries:function(t){var e={};return jC(t,(function(t,r){BC(e,t,r)}),{AS_ENTRIES:!0}),e}});var zC=ri,WC=i,UC=N,HC=n.f,GC=a;zC({target:"Object",stat:!0,forced:!GC||WC((function(){HC(1)})),sham:!GC},{getOwnPropertyDescriptor:function(t,e){return HC(UC(t),e)}});var YC=Ln,VC=N,qC=n,XC=bu;ri({target:"Object",stat:!0,sham:!a},{getOwnPropertyDescriptors:function(t){for(var e,r,n=VC(t),i=qC.f,a=YC(n),s={},o=0;a.length>o;)void 0!==(r=i(n,e=a[o++]))&&XC(s,e,r);return s}});var $C=ri,KC=i,QC=Wi.f;$C({target:"Object",stat:!0,forced:KC((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:QC});var JC=jt,ZC=Qh,tP=Hh;ri({target:"Object",stat:!0,forced:i((function(){ZC(1)})),sham:!tP},{getPrototypeOf:function(t){return ZC(JC(t))}});var eP=ri,rP=G,nP=x,iP=mt,aP=L,sP=de,oP=Oc,lP=i,hP=Object.groupBy,cP=rP("Object","create"),uP=nP([].push);eP({target:"Object",stat:!0,forced:!hP||lP((function(){return 1!==hP("ab",(function(t){return t})).a.length}))},{groupBy:function(t,e){aP(t),iP(e);var r=cP(null),n=0;return oP(t,(function(t){var i=sP(e(t,n++));i in r?uP(r[i],t):r[i]=[t]})),r}}),ri({target:"Object",stat:!0},{hasOwn:Wt});var dP=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};ri({target:"Object",stat:!0},{is:dP});var pP=Wk;ri({target:"Object",stat:!0,forced:Object.isExtensible!==pP},{isExtensible:pP});var fP=ri,gP=i,vP=W,mP=S,yP=Dk,bP=Object.isFrozen;fP({target:"Object",stat:!0,forced:yP||gP((function(){bP(1)}))},{isFrozen:function(t){return!vP(t)||(!(!yP||"ArrayBuffer"!==mP(t))||!!bP&&bP(t))}});var wP=ri,xP=i,AP=W,_P=S,kP=Dk,SP=Object.isSealed;wP({target:"Object",stat:!0,forced:kP||xP((function(){SP(1)}))},{isSealed:function(t){return!AP(t)||(!(!kP||"ArrayBuffer"!==_P(t))||!!SP&&SP(t))}});var EP=jt,MP=yi;ri({target:"Object",stat:!0,forced:i((function(){MP(1)}))},{keys:function(t){return MP(EP(t))}});var TP=ri,CP=a,PP=oC,IP=jt,RP=de,OP=Qh,LP=n.f;CP&&TP({target:"Object",proto:!0,forced:PP},{__lookupGetter__:function(t){var e,r=IP(this),n=RP(t);do{if(e=LP(r,n))return e.get}while(r=OP(r))}});var DP=ri,FP=a,NP=oC,jP=jt,BP=de,zP=Qh,WP=n.f;FP&&DP({target:"Object",proto:!0,forced:NP},{__lookupSetter__:function(t){var e,r=jP(this),n=BP(t);do{if(e=WP(r,n))return e.set}while(r=zP(r))}});var UP=ri,HP=W,GP=Lk.exports.onFreeze,YP=Uk,VP=i,qP=Object.preventExtensions;UP({target:"Object",stat:!0,forced:VP((function(){qP(1)})),sham:!YP},{preventExtensions:function(t){return qP&&HP(t)?qP(GP(t)):t}});var XP=a,$P=Ki,KP=W,QP=Rl,JP=jt,ZP=L,tI=Object.getPrototypeOf,eI=Object.setPrototypeOf,rI=Object.prototype,nI="__proto__";if(XP&&tI&&eI&&!(nI in rI))try{$P(rI,nI,{configurable:!0,get:function(){return tI(JP(this))},set:function(t){var e=ZP(this);QP(t)&&KP(e)&&eI(e,t)}})}catch(t){}var iI=ri,aI=W,sI=Lk.exports.onFreeze,oI=Uk,lI=i,hI=Object.seal;iI({target:"Object",stat:!0,forced:lI((function(){hI(1)})),sham:!oI},{seal:function(t){return hI&&aI(t)?hI(sI(t)):t}}),ri({target:"Object",stat:!0},{setPrototypeOf:Wl});var cI=ui,uI=ii?{}.toString:function(){return"[object "+cI(this)+"]"};ii||Qr(Object.prototype,"toString",uI,{unsafe:!0});var dI=PC.values;ri({target:"Object",stat:!0},{values:function(t){return dI(t)}});ri({global:!0,forced:parseFloat!==VM},{parseFloat:VM});ri({global:!0,forced:parseInt!==aT},{parseInt:aT});var pI,fI,gI,vI,mI=Da,yI=pt,bI=TypeError,wI=function(t){if(mI(t))return t;throw new bI(yI(t)+" is not a constructor")},xI=Oe,AI=wI,_I=I,kI=ee("species"),SI=function(t,e){var r,n=xI(t).constructor;return void 0===n||_I(r=xI(n)[kI])?e:AI(r)},EI=TypeError,MI=function(t,e){if(t<e)throw new EI("Not enough arguments");return t},TI=/(?:ipad|iphone|ipod).*applewebkit/i.test(X),CI=r,PI=Mo,II=wa,RI=B,OI=Wt,LI=i,DI=Ei,FI=Ui,NI=ve,jI=MI,BI=TI,zI=rg,WI=CI.setImmediate,UI=CI.clearImmediate,HI=CI.process,GI=CI.Dispatch,YI=CI.Function,VI=CI.MessageChannel,qI=CI.String,XI=0,$I={},KI="onreadystatechange";LI((function(){pI=CI.location}));var QI=function(t){if(OI($I,t)){var e=$I[t];delete $I[t],e()}},JI=function(t){return function(){QI(t)}},ZI=function(t){QI(t.data)},tR=function(t){CI.postMessage(qI(t),pI.protocol+"//"+pI.host)};WI&&UI||(WI=function(t){jI(arguments.length,1);var e=RI(t)?t:YI(t),r=FI(arguments,1);return $I[++XI]=function(){PI(e,void 0,r)},fI(XI),XI},UI=function(t){delete $I[t]},zI?fI=function(t){HI.nextTick(JI(t))}:GI&&GI.now?fI=function(t){GI.now(JI(t))}:VI&&!BI?(vI=(gI=new VI).port2,gI.port1.onmessage=ZI,fI=II(vI.postMessage,vI)):CI.addEventListener&&RI(CI.postMessage)&&!CI.importScripts&&pI&&"file:"!==pI.protocol&&!LI(tR)?(fI=tR,CI.addEventListener("message",ZI,!1)):fI=KI in NI("script")?function(t){DI.appendChild(NI("script"))[KI]=function(){DI.removeChild(this),QI(t)}}:function(t){setTimeout(JI(t),0)});var eR={set:WI,clear:UI},rR=r,nR=a,iR=Object.getOwnPropertyDescriptor,aR=function(t){if(!nR)return rR[t];var e=iR(rR,t);return e&&e.value},sR=function(){this.head=null,this.tail=null};sR.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var oR,lR,hR,cR,uR,dR=sR,pR=/ipad|iphone|ipod/i.test(X)&&"undefined"!=typeof Pebble,fR=/web0s(?!.*chrome)/i.test(X),gR=r,vR=aR,mR=wa,yR=eR.set,bR=dR,wR=TI,xR=pR,AR=fR,_R=rg,kR=gR.MutationObserver||gR.WebKitMutationObserver,SR=gR.document,ER=gR.process,MR=gR.Promise,TR=vR("queueMicrotask");if(!TR){var CR=new bR,PR=function(){var t,e;for(_R&&(t=ER.domain)&&t.exit();e=CR.get();)try{e()}catch(t){throw CR.head&&oR(),t}t&&t.enter()};wR||_R||AR||!kR||!SR?!xR&&MR&&MR.resolve?((cR=MR.resolve(void 0)).constructor=MR,uR=mR(cR.then,cR),oR=function(){uR(PR)}):_R?oR=function(){ER.nextTick(PR)}:(yR=mR(yR,gR),oR=function(){yR(PR)}):(lR=!0,hR=SR.createTextNode(""),new kR(PR).observe(hR,{characterData:!0}),oR=function(){hR.data=lR=!lR}),TR=function(t){CR.head||oR(),CR.add(t)}}var IR=TR,RR=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},OR=r.Promise,LR=r,DR=OR,FR=B,NR=Xn,jR=lr,BR=ee,zR=eg,WR=et;DR&&DR.prototype;var UR=BR("species"),HR=!1,GR=FR(LR.PromiseRejectionEvent),YR=NR("Promise",(function(){var t=jR(DR),e=t!==String(DR);if(!e&&66===WR)return!0;if(!WR||WR<51||!/native code/.test(t)){var r=new DR((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((r.constructor={})[UR]=n,!(HR=r.then((function(){}))instanceof n))return!0}return!(e||"BROWSER"!==zR&&"DENO"!==zR||GR)})),VR={CONSTRUCTOR:YR,REJECTION_EVENT:GR,SUBCLASSING:HR},qR={},XR=mt,$R=TypeError,KR=function(t){var e,r;this.promise=new t((function(t,n){if(void 0!==e||void 0!==r)throw new $R("Bad Promise constructor");e=t,r=n})),this.resolve=XR(e),this.reject=XR(r)};qR.f=function(t){return new KR(t)};var QR,JR,ZR,tO=ri,eO=rg,rO=r,nO=h,iO=Qr,aO=Wl,sO=pa,oO=iv,lO=mt,hO=B,cO=W,uO=lm,dO=SI,pO=eR.set,fO=IR,gO=function(t,e){try{1===arguments.length?console.error(t):console.error(t,e)}catch(t){}},vO=RR,mO=dR,yO=Cr,bO=OR,wO=qR,xO="Promise",AO=VR.CONSTRUCTOR,_O=VR.REJECTION_EVENT,kO=VR.SUBCLASSING,SO=yO.getterFor(xO),EO=yO.set,MO=bO&&bO.prototype,TO=bO,CO=MO,PO=rO.TypeError,IO=rO.document,RO=rO.process,OO=wO.f,LO=OO,DO=!!(IO&&IO.createEvent&&rO.dispatchEvent),FO="unhandledrejection",NO=function(t){var e;return!(!cO(t)||!hO(e=t.then))&&e},jO=function(t,e){var r,n,i,a=e.value,s=1===e.state,o=s?t.ok:t.fail,l=t.resolve,h=t.reject,c=t.domain;try{o?(s||(2===e.rejection&&HO(e),e.rejection=1),!0===o?r=a:(c&&c.enter(),r=o(a),c&&(c.exit(),i=!0)),r===t.promise?h(new PO("Promise-chain cycle")):(n=NO(r))?nO(n,r,l,h):l(r)):h(a)}catch(t){c&&!i&&c.exit(),h(t)}},BO=function(t,e){t.notified||(t.notified=!0,fO((function(){for(var r,n=t.reactions;r=n.get();)jO(r,t);t.notified=!1,e&&!t.rejection&&WO(t)})))},zO=function(t,e,r){var n,i;DO?((n=IO.createEvent("Event")).promise=e,n.reason=r,n.initEvent(t,!1,!0),rO.dispatchEvent(n)):n={promise:e,reason:r},!_O&&(i=rO["on"+t])?i(n):t===FO&&gO("Unhandled promise rejection",r)},WO=function(t){nO(pO,rO,(function(){var e,r=t.facade,n=t.value;if(UO(t)&&(e=vO((function(){eO?RO.emit("unhandledRejection",n,r):zO(FO,r,n)})),t.rejection=eO||UO(t)?2:1,e.error))throw e.value}))},UO=function(t){return 1!==t.rejection&&!t.parent},HO=function(t){nO(pO,rO,(function(){var e=t.facade;eO?RO.emit("rejectionHandled",e):zO("rejectionhandled",e,t.value)}))},GO=function(t,e,r){return function(n){t(e,n,r)}},YO=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,BO(t,!0))},VO=function(t,e,r){if(!t.done){t.done=!0,r&&(t=r);try{if(t.facade===e)throw new PO("Promise can't be resolved itself");var n=NO(e);n?fO((function(){var r={done:!1};try{nO(n,e,GO(VO,r,t),GO(YO,r,t))}catch(e){YO(r,e,t)}})):(t.value=e,t.state=1,BO(t,!1))}catch(e){YO({done:!1},e,t)}}};if(AO&&(CO=(TO=function(t){uO(this,CO),lO(t),nO(QR,this);var e=SO(this);try{t(GO(VO,e),GO(YO,e))}catch(t){YO(e,t)}}).prototype,(QR=function(t){EO(this,{type:xO,done:!1,notified:!1,parent:!1,reactions:new mO,rejection:!1,state:0,value:null})}).prototype=iO(CO,"then",(function(t,e){var r=SO(this),n=OO(dO(this,TO));return r.parent=!0,n.ok=!hO(t)||t,n.fail=hO(e)&&e,n.domain=eO?RO.domain:void 0,0===r.state?r.reactions.add(n):fO((function(){jO(n,r)})),n.promise})),JR=function(){var t=new QR,e=SO(t);this.promise=t,this.resolve=GO(VO,e),this.reject=GO(YO,e)},wO.f=OO=function(t){return t===TO||undefined===t?new JR(t):LO(t)},hO(bO)&&MO!==Object.prototype)){ZR=MO.then,kO||iO(MO,"then",(function(t,e){var r=this;return new TO((function(t,e){nO(ZR,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete MO.constructor}catch(t){}aO&&aO(MO,CO)}tO({global:!0,constructor:!0,wrap:!0,forced:AO},{Promise:TO}),sO(TO,xO,!1),oO(xO);var qO=OR,XO=VR.CONSTRUCTOR||!sp((function(t){qO.all(t).then(void 0,(function(){}))})),$O=h,KO=mt,QO=qR,JO=RR,ZO=Oc;ri({target:"Promise",stat:!0,forced:XO},{all:function(t){var e=this,r=QO.f(e),n=r.resolve,i=r.reject,a=JO((function(){var r=KO(e.resolve),a=[],s=0,o=1;ZO(t,(function(t){var l=s++,h=!1;o++,$O(r,e,t).then((function(t){h||(h=!0,a[l]=t,--o||n(a))}),i)})),--o||n(a)}));return a.error&&i(a.value),r.promise}});var tL=ri,eL=VR.CONSTRUCTOR,rL=OR,nL=G,iL=B,aL=Qr,sL=rL&&rL.prototype;if(tL({target:"Promise",proto:!0,forced:eL,real:!0},{catch:function(t){return this.then(void 0,t)}}),iL(rL)){var oL=nL("Promise").prototype.catch;sL.catch!==oL&&aL(sL,"catch",oL,{unsafe:!0})}var lL=h,hL=mt,cL=qR,uL=RR,dL=Oc;ri({target:"Promise",stat:!0,forced:XO},{race:function(t){var e=this,r=cL.f(e),n=r.reject,i=uL((function(){var i=hL(e.resolve);dL(t,(function(t){lL(i,e,t).then(r.resolve,n)}))}));return i.error&&n(i.value),r.promise}});var pL=qR;ri({target:"Promise",stat:!0,forced:VR.CONSTRUCTOR},{reject:function(t){var e=pL.f(this);return(0,e.reject)(t),e.promise}});var fL=Oe,gL=W,vL=qR,mL=function(t,e){if(fL(t),gL(e)&&e.constructor===t)return e;var r=vL.f(t);return(0,r.resolve)(e),r.promise},yL=ri,bL=VR.CONSTRUCTOR,wL=mL;G("Promise"),yL({target:"Promise",stat:!0,forced:bL},{resolve:function(t){return wL(this,t)}});var xL=h,AL=mt,_L=qR,kL=RR,SL=Oc;ri({target:"Promise",stat:!0,forced:XO},{allSettled:function(t){var e=this,r=_L.f(e),n=r.resolve,i=r.reject,a=kL((function(){var r=AL(e.resolve),i=[],a=0,s=1;SL(t,(function(t){var o=a++,l=!1;s++,xL(r,e,t).then((function(t){l||(l=!0,i[o]={status:"fulfilled",value:t},--s||n(i))}),(function(t){l||(l=!0,i[o]={status:"rejected",reason:t},--s||n(i))}))})),--s||n(i)}));return a.error&&i(a.value),r.promise}});var EL=h,ML=mt,TL=G,CL=qR,PL=RR,IL=Oc,RL="No one promise resolved";ri({target:"Promise",stat:!0,forced:XO},{any:function(t){var e=this,r=TL("AggregateError"),n=CL.f(e),i=n.resolve,a=n.reject,s=PL((function(){var n=ML(e.resolve),s=[],o=0,l=1,h=!1;IL(t,(function(t){var c=o++,u=!1;l++,EL(n,e,t).then((function(t){u||h||(h=!0,i(t))}),(function(t){u||h||(u=!0,s[c]=t,--l||a(new r(s,RL)))}))})),--l||a(new r(s,RL))}));return s.error&&a(s.value),n.promise}});var OL=ri,LL=OR,DL=i,FL=G,NL=B,jL=SI,BL=mL,zL=Qr,WL=LL&&LL.prototype;if(OL({target:"Promise",proto:!0,real:!0,forced:!!LL&&DL((function(){WL.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var e=jL(this,FL("Promise")),r=NL(t);return this.then(r?function(r){return BL(e,t()).then((function(){return r}))}:t,r?function(r){return BL(e,t()).then((function(){throw r}))}:t)}}),NL(LL)){var UL=FL("Promise").prototype.finally;WL.finally!==UL&&zL(WL,"finally",UL,{unsafe:!0})}var HL=ri,GL=Mo,YL=Ui,VL=qR,qL=mt,XL=RR,$L=r.Promise,KL=!1;HL({target:"Promise",stat:!0,forced:!$L||!$L.try||XL((function(){$L.try((function(t){KL=8===t}),8)})).error||!KL},{try:function(t){var e=arguments.length>1?YL(arguments,1):[],r=VL.f(this),n=XL((function(){return GL(qL(t),void 0,e)}));return(n.error?r.reject:r.resolve)(n.value),r.promise}});var QL=qR;ri({target:"Promise",stat:!0},{withResolvers:function(){var t=QL.f(this);return{promise:t.promise,resolve:t.resolve,reject:t.reject}}});var JL=Mo,ZL=mt,tD=Oe;ri({target:"Reflect",stat:!0,forced:!i((function(){Reflect.apply((function(){}))}))},{apply:function(t,e,r){return JL(ZL(t),e,tD(r))}});var eD=ri,rD=Mo,nD=oA,iD=wI,aD=Oe,sD=W,oD=zi,lD=i,hD=G("Reflect","construct"),cD=Object.prototype,uD=[].push,dD=lD((function(){function t(){}return!(hD((function(){}),[],t)instanceof t)})),pD=!lD((function(){hD((function(){}))})),fD=dD||pD;eD({target:"Reflect",stat:!0,forced:fD,sham:fD},{construct:function(t,e){iD(t),aD(e);var r=arguments.length<3?t:iD(arguments[2]);if(pD&&!dD)return hD(t,e,r);if(t===r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return rD(uD,n,e),new(rD(nD,t,n))}var i=r.prototype,a=oD(sD(i)?i:cD),s=rD(t,a,e);return sD(s)?s:a}});var gD=a,vD=Oe,mD=de,yD=Te;ri({target:"Reflect",stat:!0,forced:i((function(){Reflect.defineProperty(yD.f({},1,{value:1}),1,{value:2})})),sham:!gD},{defineProperty:function(t,e,r){vD(t);var n=mD(e);vD(r);try{return yD.f(t,n,r),!0}catch(t){return!1}}});var bD=ri,wD=Oe,xD=n.f;bD({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=xD(wD(t),e);return!(r&&!r.configurable)&&delete t[e]}});var AD=Wt,_D=function(t){return void 0!==t&&(AD(t,"value")||AD(t,"writable"))},kD=h,SD=W,ED=Oe,MD=_D,TD=n,CD=Qh;ri({target:"Reflect",stat:!0},{get:function t(e,r){var n,i,a=arguments.length<3?e:arguments[2];return ED(e)===a?e[r]:(n=TD.f(e,r))?MD(n)?n.value:void 0===n.get?void 0:kD(n.get,a):SD(i=CD(e))?t(i,r,a):void 0}});var PD=Oe,ID=n;ri({target:"Reflect",stat:!0,sham:!a},{getOwnPropertyDescriptor:function(t,e){return ID.f(PD(t),e)}});var RD=Oe,OD=Qh;ri({target:"Reflect",stat:!0,sham:!Hh},{getPrototypeOf:function(t){return OD(RD(t))}}),ri({target:"Reflect",stat:!0},{has:function(t,e){return e in t}});var LD=Oe,DD=Wk;ri({target:"Reflect",stat:!0},{isExtensible:function(t){return LD(t),DD(t)}}),ri({target:"Reflect",stat:!0},{ownKeys:Ln});var FD=G,ND=Oe;ri({target:"Reflect",stat:!0,sham:!Uk},{preventExtensions:function(t){ND(t);try{var e=FD("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}});var jD=ri,BD=h,zD=Oe,WD=W,UD=_D,HD=Te,GD=n,YD=Qh,VD=v;var qD=i((function(){var t=function(){},e=HD.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)}));jD({target:"Reflect",stat:!0,forced:qD},{set:function t(e,r,n){var i,a,s,o=arguments.length<4?e:arguments[3],l=GD.f(zD(e),r);if(!l){if(WD(a=YD(e)))return t(a,r,n,o);l=VD(0)}if(UD(l)){if(!1===l.writable||!WD(o))return!1;if(i=GD.f(o,r)){if(i.get||i.set||!1===i.writable)return!1;i.value=n,HD.f(o,r,i)}else HD.f(o,r,VD(0,n))}else{if(void 0===(s=l.set))return!1;BD(s,o,n)}return!0}});var XD=Oe,$D=Fl,KD=Wl;KD&&ri({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){XD(t),$D(e);try{return KD(t,e),!0}catch(t){return!1}}});var QD=r,JD=pa;ri({global:!0},{Reflect:{}}),JD(QD.Reflect,"Reflect",!0);var ZD=W,tF=S,eF=ee("match"),rF=function(t){var e;return ZD(t)&&(void 0!==(e=t[eF])?!!e:"RegExp"===tF(t))},nF=Oe,iF=function(){var t=nF(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e},aF=h,sF=Wt,oF=Y,lF=iF,hF=RegExp.prototype,cF=function(t){var e=t.flags;return void 0!==e||"flags"in hF||sF(t,"flags")||!oF(hF,t)?e:aF(lF,t)},uF=i,dF=r.RegExp,pF=uF((function(){var t=dF("a","y");return t.lastIndex=2,null!==t.exec("abcd")})),fF=pF||uF((function(){return!dF("a","y").sticky})),gF=pF||uF((function(){var t=dF("^r","gy");return t.lastIndex=2,null!==t.exec("str")})),vF={BROKEN_CARET:gF,MISSED_STICKY:fF,UNSUPPORTED_Y:pF},mF=i,yF=r.RegExp,bF=mF((function(){var t=yF(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)})),wF=i,xF=r.RegExp,AF=wF((function(){var t=xF("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),_F=a,kF=r,SF=x,EF=Xn,MF=ql,TF=qe,CF=zi,PF=Jr.f,IF=Y,RF=rF,OF=fi,LF=cF,DF=vF,FF=Hl,NF=Qr,jF=i,BF=Wt,zF=Cr.enforce,WF=iv,UF=bF,HF=AF,GF=ee("match"),YF=kF.RegExp,VF=YF.prototype,qF=kF.SyntaxError,XF=SF(VF.exec),$F=SF("".charAt),KF=SF("".replace),QF=SF("".indexOf),JF=SF("".slice),ZF=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,tN=/a/g,eN=/a/g,rN=new YF(tN)!==tN,nN=DF.MISSED_STICKY,iN=DF.UNSUPPORTED_Y,aN=_F&&(!rN||nN||UF||HF||jF((function(){return eN[GF]=!1,YF(tN)!==tN||YF(eN)===eN||"/a/i"!==String(YF(tN,"i"))})));if(EF("RegExp",aN)){for(var sN=function(t,e){var r,n,i,a,s,o,l=IF(VF,this),h=RF(t),c=void 0===e,u=[],d=t;if(!l&&h&&c&&t.constructor===sN)return t;if((h||IF(VF,t))&&(t=t.source,c&&(e=LF(d))),t=void 0===t?"":OF(t),e=void 0===e?"":OF(e),d=t,UF&&"dotAll"in tN&&(n=!!e&&QF(e,"s")>-1)&&(e=KF(e,/s/g,"")),r=e,nN&&"sticky"in tN&&(i=!!e&&QF(e,"y")>-1)&&iN&&(e=KF(e,/y/g,"")),HF&&(a=function(t){for(var e,r=t.length,n=0,i="",a=[],s=CF(null),o=!1,l=!1,h=0,c="";n<=r;n++){if("\\"===(e=$F(t,n)))e+=$F(t,++n);else if("]"===e)o=!1;else if(!o)switch(!0){case"["===e:o=!0;break;case"("===e:if(i+=e,"?:"===JF(t,n+1,n+3))continue;XF(ZF,JF(t,n+1))&&(n+=2,l=!0),h++;continue;case">"===e&&l:if(""===c||BF(s,c))throw new qF("Invalid capture group name");s[c]=!0,a[a.length]=[c,h],l=!1,c="";continue}l?c+=e:i+=e}return[i,a]}(t),t=a[0],u=a[1]),s=MF(YF(t,e),l?this:VF,sN),(n||i||u.length)&&(o=zF(s),n&&(o.dotAll=!0,o.raw=sN(function(t){for(var e,r=t.length,n=0,i="",a=!1;n<=r;n++)"\\"!==(e=$F(t,n))?a||"."!==e?("["===e?a=!0:"]"===e&&(a=!1),i+=e):i+="[\\s\\S]":i+=e+$F(t,++n);return i}(t),r)),i&&(o.sticky=!0),u.length&&(o.groups=u)),t!==d)try{TF(s,"source",""===d?"(?:)":d)}catch(t){}return s},oN=PF(YF),lN=0;oN.length>lN;)FF(sN,YF,oN[lN++]);VF.constructor=sN,sN.prototype=VF,NF(kF,"RegExp",sN,{constructor:!0})}WF("RegExp");var hN=a,cN=bF,uN=S,dN=Ki,pN=Cr.get,fN=RegExp.prototype,gN=TypeError;hN&&cN&&dN(fN,"dotAll",{configurable:!0,get:function(){if(this!==fN){if("RegExp"===uN(this))return!!pN(this).dotAll;throw new gN("Incompatible receiver, RegExp required")}}});var vN=h,mN=x,yN=fi,bN=iF,wN=vF,xN=zi,AN=Cr.get,_N=bF,kN=AF,SN=Dt("native-string-replace",String.prototype.replace),EN=RegExp.prototype.exec,MN=EN,TN=mN("".charAt),CN=mN("".indexOf),PN=mN("".replace),IN=mN("".slice),RN=function(){var t=/a/,e=/b*/g;return vN(EN,t,"a"),vN(EN,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),ON=wN.BROKEN_CARET,LN=void 0!==/()??/.exec("")[1];(RN||LN||ON||_N||kN)&&(MN=function(t){var e,r,n,i,a,s,o,l=this,h=AN(l),c=yN(t),u=h.raw;if(u)return u.lastIndex=l.lastIndex,e=vN(MN,u,c),l.lastIndex=u.lastIndex,e;var d=h.groups,p=ON&&l.sticky,f=vN(bN,l),g=l.source,v=0,m=c;if(p&&(f=PN(f,"y",""),-1===CN(f,"g")&&(f+="g"),m=IN(c,l.lastIndex),l.lastIndex>0&&(!l.multiline||l.multiline&&"\n"!==TN(c,l.lastIndex-1))&&(g="(?: "+g+")",m=" "+m,v++),r=new RegExp("^(?:"+g+")",f)),LN&&(r=new RegExp("^"+g+"$(?!\\s)",f)),RN&&(n=l.lastIndex),i=vN(EN,p?r:l,m),p?i?(i.input=IN(i.input,v),i[0]=IN(i[0],v),i.index=l.lastIndex,l.lastIndex+=i[0].length):l.lastIndex=0:RN&&i&&(l.lastIndex=l.global?i.index+i[0].length:n),LN&&i&&i.length>1&&vN(SN,i[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(i[a]=void 0)})),i&&d)for(i.groups=s=xN(null),a=0;a<d.length;a++)s[(o=d[a])[0]]=i[o[1]];return i});var DN=MN;ri({target:"RegExp",proto:!0,forced:/./.exec!==DN},{exec:DN});var FN=a,NN=Ki,jN=iF,BN=i,zN=r.RegExp,WN=zN.prototype,UN=FN&&BN((function(){var t=!0;try{zN(".","d")}catch(e){t=!1}var e={},r="",n=t?"dgimsy":"gimsy",i=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},a={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var s in t&&(a.hasIndices="d"),a)i(s,a[s]);return Object.getOwnPropertyDescriptor(WN,"flags").get.call(e)!==n||r!==n}));UN&&NN(WN,"flags",{configurable:!0,get:jN});var HN=a,GN=vF.MISSED_STICKY,YN=S,VN=Ki,qN=Cr.get,XN=RegExp.prototype,$N=TypeError;HN&&GN&&VN(XN,"sticky",{configurable:!0,get:function(){if(this!==XN){if("RegExp"===YN(this))return!!qN(this).sticky;throw new $N("Incompatible receiver, RegExp required")}}});var KN,QN,JN=ri,ZN=h,tj=B,ej=Oe,rj=fi,nj=(KN=!1,(QN=/[ac]/).exec=function(){return KN=!0,/./.exec.apply(this,arguments)},!0===QN.test("abc")&&KN),ij=/./.test;JN({target:"RegExp",proto:!0,forced:!nj},{test:function(t){var e=ej(this),r=rj(t),n=e.exec;if(!tj(n))return ZN(ij,e,r);var i=ZN(n,e,r);return null!==i&&(ej(i),!0)}});var aj=tr.PROPER,sj=Qr,oj=Oe,lj=fi,hj=i,cj=cF,uj="toString",dj=RegExp.prototype,pj=dj[uj],fj=hj((function(){return"/a/b"!==pj.call({source:"a",flags:"b"})})),gj=aj&&pj.name!==uj;(fj||gj)&&sj(dj,uj,(function(){var t=oj(this);return"/"+lj(t.source)+"/"+lj(cj(t))}),{unsafe:!0}),bS("Set",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),LS);var vj=x,mj=Set.prototype,yj={Set:Set,add:vj(mj.add),has:vj(mj.has),remove:vj(mj.delete),proto:mj},bj=yj.has,wj=function(t){return bj(t),t},xj=h,Aj=function(t,e,r){for(var n,i,a=r?t:t.iterator,s=t.next;!(n=xj(s,a)).done;)if(void 0!==(i=e(n.value)))return i},_j=x,kj=Aj,Sj=yj.Set,Ej=yj.proto,Mj=_j(Ej.forEach),Tj=_j(Ej.keys),Cj=Tj(new Sj).next,Pj=function(t,e,r){return r?kj({iterator:Tj(t),next:Cj},e):Mj(t,e)},Ij=Pj,Rj=yj.Set,Oj=yj.add,Lj=function(t){var e=new Rj;return Ij(t,(function(t){Oj(e,t)})),e},Dj=Pl(yj.proto,"size","get")||function(t){return t.size},Fj=mt,Nj=Oe,jj=h,Bj=nn,zj=VA,Wj="Invalid size",Uj=RangeError,Hj=TypeError,Gj=Math.max,Yj=function(t,e){this.set=t,this.size=Gj(e,0),this.has=Fj(t.has),this.keys=Fj(t.keys)};Yj.prototype={getIterator:function(){return zj(Nj(jj(this.keys,this.set)))},includes:function(t){return jj(this.has,this.set,t)}};var Vj=function(t){Nj(t);var e=+t.size;if(e!=e)throw new Hj(Wj);var r=Bj(e);if(r<0)throw new Uj(Wj);return new Yj(t,r)},qj=wj,Xj=Lj,$j=Dj,Kj=Vj,Qj=Pj,Jj=Aj,Zj=yj.has,tB=yj.remove,eB=G,rB=function(t){return{size:t,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}},nB=function(t){return{size:t,has:function(){return!0},keys:function(){throw new Error("e")}}},iB=function(t,e){var r=eB("Set");try{(new r)[t](rB(0));try{return(new r)[t](rB(-1)),!1}catch(i){if(!e)return!0;try{return(new r)[t](nB(-1/0)),!1}catch(i){var n=new r;return n.add(1),n.add(2),e(n[t](nB(1/0)))}}}catch(t){return!1}},aB=function(t){var e=qj(this),r=Kj(t),n=Xj(e);return $j(e)<=r.size?Qj(e,(function(t){r.includes(t)&&tB(n,t)})):Jj(r.getIterator(),(function(t){Zj(e,t)&&tB(n,t)})),n};ri({target:"Set",proto:!0,real:!0,forced:!iB("difference",(function(t){return 0===t.size}))},{difference:aB});var sB=wj,oB=Dj,lB=Vj,hB=Pj,cB=Aj,uB=yj.Set,dB=yj.add,pB=yj.has,fB=i,gB=function(t){var e=sB(this),r=lB(t),n=new uB;return oB(e)>r.size?cB(r.getIterator(),(function(t){pB(e,t)&&dB(n,t)})):hB(e,(function(t){r.includes(t)&&dB(n,t)})),n};ri({target:"Set",proto:!0,real:!0,forced:!iB("intersection",(function(t){return 2===t.size&&t.has(1)&&t.has(2)}))||fB((function(){return"3,2"!==String(Array.from(new Set([1,2,3]).intersection(new Set([3,2]))))}))},{intersection:gB});var vB=wj,mB=yj.has,yB=Dj,bB=Vj,wB=Pj,xB=Aj,AB=bc,_B=function(t){var e=vB(this),r=bB(t);if(yB(e)<=r.size)return!1!==wB(e,(function(t){if(r.includes(t))return!1}),!0);var n=r.getIterator();return!1!==xB(n,(function(t){if(mB(e,t))return AB(n,"normal",!1)}))};ri({target:"Set",proto:!0,real:!0,forced:!iB("isDisjointFrom",(function(t){return!t}))},{isDisjointFrom:_B});var kB=wj,SB=Dj,EB=Pj,MB=Vj,TB=function(t){var e=kB(this),r=MB(t);return!(SB(e)>r.size)&&!1!==EB(e,(function(t){if(!r.includes(t))return!1}),!0)};ri({target:"Set",proto:!0,real:!0,forced:!iB("isSubsetOf",(function(t){return t}))},{isSubsetOf:TB});var CB=wj,PB=yj.has,IB=Dj,RB=Vj,OB=Aj,LB=bc,DB=function(t){var e=CB(this),r=RB(t);if(IB(e)<r.size)return!1;var n=r.getIterator();return!1!==OB(n,(function(t){if(!PB(e,t))return LB(n,"normal",!1)}))};ri({target:"Set",proto:!0,real:!0,forced:!iB("isSupersetOf",(function(t){return!t}))},{isSupersetOf:DB});var FB=wj,NB=Lj,jB=Vj,BB=Aj,zB=yj.add,WB=yj.has,UB=yj.remove,HB=function(t){var e=FB(this),r=jB(t).getIterator(),n=NB(e);return BB(r,(function(t){WB(e,t)?UB(n,t):zB(n,t)})),n};ri({target:"Set",proto:!0,real:!0,forced:!iB("symmetricDifference")},{symmetricDifference:HB});var GB=wj,YB=yj.add,VB=Lj,qB=Vj,XB=Aj,$B=function(t){var e=GB(this),r=qB(t).getIterator(),n=VB(e);return XB(r,(function(t){YB(n,t)})),n};ri({target:"Set",proto:!0,real:!0,forced:!iB("union")},{union:$B});var KB=ri,QB=L,JB=nn,ZB=fi,tz=i,ez=x("".charAt);KB({target:"String",proto:!0,forced:tz((function(){return"\ud842"!=="𠮷".at(-2)}))},{at:function(t){var e=ZB(QB(this)),r=e.length,n=JB(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:ez(e,i)}});var rz=x,nz=nn,iz=fi,az=L,sz=rz("".charAt),oz=rz("".charCodeAt),lz=rz("".slice),hz=function(t){return function(e,r){var n,i,a=iz(az(e)),s=nz(r),o=a.length;return s<0||s>=o?t?"":void 0:(n=oz(a,s))<55296||n>56319||s+1===o||(i=oz(a,s+1))<56320||i>57343?t?sz(a,s):n:t?lz(a,s,s+2):i-56320+(n-55296<<10)+65536}},cz={codeAt:hz(!1),charAt:hz(!0)},uz=cz.codeAt;ri({target:"String",proto:!0},{codePointAt:function(t){return uz(this,t)}});var dz=rF,pz=TypeError,fz=function(t){if(dz(t))throw new pz("The method doesn't accept regular expressions");return t},gz=ee("match"),vz=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[gz]=!1,"/./"[t](e)}catch(t){}}return!1},mz=ri,yz=va,bz=n.f,wz=un,xz=fi,Az=fz,_z=L,kz=vz,Sz=yz("".slice),Ez=Math.min,Mz=kz("endsWith"),Tz=!Mz&&!!function(){var t=bz(String.prototype,"endsWith");return t&&!t.writable}();mz({target:"String",proto:!0,forced:!Tz&&!Mz},{endsWith:function(t){var e=xz(_z(this));Az(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,i=void 0===r?n:Ez(wz(r),n),a=xz(t);return Sz(e,i-a.length,i)===a}});var Cz=ri,Pz=x,Iz=ln,Rz=RangeError,Oz=String.fromCharCode,Lz=String.fromCodePoint,Dz=Pz([].join);Cz({target:"String",stat:!0,arity:1,forced:!!Lz&&1!==Lz.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,i=0;n>i;){if(e=+arguments[i++],Iz(e,1114111)!==e)throw new Rz(e+" is not a valid code point");r[i]=e<65536?Oz(e):Oz(55296+((e-=65536)>>10),e%1024+56320)}return Dz(r,"")}});var Fz=ri,Nz=fz,jz=L,Bz=fi,zz=vz,Wz=x("".indexOf);Fz({target:"String",proto:!0,forced:!zz("includes")},{includes:function(t){return!!~Wz(Bz(jz(this)),Bz(Nz(t)),arguments.length>1?arguments[1]:void 0)}});var Uz=ri,Hz=L,Gz=fi,Yz=x("".charCodeAt);Uz({target:"String",proto:!0},{isWellFormed:function(){for(var t=Gz(Hz(this)),e=t.length,r=0;r<e;r++){var n=Yz(t,r);if(55296==(63488&n)&&(n>=56320||++r>=e||56320!=(64512&Yz(t,r))))return!1}return!0}});var Vz=cz.charAt,qz=fi,Xz=Cr,$z=Zp,Kz=tf,Qz="String Iterator",Jz=Xz.set,Zz=Xz.getterFor(Qz);$z(String,"String",(function(t){Jz(this,{type:Qz,string:qz(t),index:0})}),(function(){var t,e=Zz(this),r=e.string,n=e.index;return n>=r.length?Kz(void 0,!0):(t=Vz(r,n),e.index+=t.length,Kz(t,!1))}));var tW=h,eW=Qr,rW=DN,nW=i,iW=ee,aW=qe,sW=iW("species"),oW=RegExp.prototype,lW=function(t,e,r,n){var i=iW(t),a=!nW((function(){var e={};return e[i]=function(){return 7},7!==""[t](e)})),s=a&&!nW((function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[sW]=function(){return r},r.flags="",r[i]=/./[i]),r.exec=function(){return e=!0,null},r[i](""),!e}));if(!a||!s||r){var o=/./[i],l=e(i,""[t],(function(t,e,r,n,i){var s=e.exec;return s===rW||s===oW.exec?a&&!i?{done:!0,value:tW(o,e,r,n)}:{done:!0,value:tW(t,r,e,n)}:{done:!1}}));eW(String.prototype,t,l[0]),eW(oW,i,l[1])}n&&aW(oW[i],"sham",!0)},hW=cz.charAt,cW=function(t,e,r){return e+(r?hW(t,e).length:1)},uW=h,dW=Oe,pW=B,fW=S,gW=DN,vW=TypeError,mW=function(t,e){var r=t.exec;if(pW(r)){var n=uW(r,t,e);return null!==n&&dW(n),n}if("RegExp"===fW(t))return uW(gW,t,e);throw new vW("RegExp#exec called on incompatible receiver")},yW=h,bW=Oe,wW=I,xW=un,AW=fi,_W=L,kW=wt,SW=cW,EW=mW;lW("match",(function(t,e,r){return[function(e){var r=_W(this),n=wW(e)?void 0:kW(e,t);return n?yW(n,e,r):new RegExp(e)[t](AW(r))},function(t){var n=bW(this),i=AW(t),a=r(e,n,i);if(a.done)return a.value;if(!n.global)return EW(n,i);var s=n.unicode;n.lastIndex=0;for(var o,l=[],h=0;null!==(o=EW(n,i));){var c=AW(o[0]);l[h]=c,""===c&&(n.lastIndex=SW(i,xW(n.lastIndex),s)),h++}return 0===h?null:l}]}));var MW=ri,TW=h,CW=va,PW=Op,IW=tf,RW=L,OW=un,LW=fi,DW=Oe,FW=I,NW=rF,jW=cF,BW=wt,zW=Qr,WW=i,UW=SI,HW=cW,GW=mW,YW=Cr,VW=ee("matchAll"),qW="RegExp String",XW=qW+" Iterator",$W=YW.set,KW=YW.getterFor(XW),QW=RegExp.prototype,JW=TypeError,ZW=CW("".indexOf),tU=CW("".matchAll),eU=!!tU&&!WW((function(){tU("a",/./)})),rU=PW((function(t,e,r,n){$W(this,{type:XW,regexp:t,string:e,global:r,unicode:n,done:!1})}),qW,(function(){var t=KW(this);if(t.done)return IW(void 0,!0);var e=t.regexp,r=t.string,n=GW(e,r);return null===n?(t.done=!0,IW(void 0,!0)):t.global?(""===LW(n[0])&&(e.lastIndex=HW(r,OW(e.lastIndex),t.unicode)),IW(n,!1)):(t.done=!0,IW(n,!1))})),nU=function(t){var e,r,n,i=DW(this),a=LW(t),s=UW(i,RegExp),o=LW(jW(i));return e=new s(s===RegExp?i.source:i,o),r=!!~ZW(o,"g"),n=!!~ZW(o,"u"),e.lastIndex=OW(i.lastIndex),new rU(e,a,r,n)};MW({target:"String",proto:!0,forced:eU},{matchAll:function(t){var e,r,n,i=RW(this);if(FW(t)){if(eU)return tU(i,t)}else{if(NW(t)&&(e=LW(RW(jW(t))),!~ZW(e,"g")))throw new JW("`.matchAll` does not allow non-global regexes");if(eU)return tU(i,t);if(n=BW(t,VW))return TW(n,t,i)}return r=LW(i),new RegExp(t,"g")[VW](r)}}),VW in QW||zW(QW,VW,nU);var iU=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(X),aU=ax.end;ri({target:"String",proto:!0,forced:iU},{padEnd:function(t){return aU(this,t,arguments.length>1?arguments[1]:void 0)}});var sU=ax.start;ri({target:"String",proto:!0,forced:iU},{padStart:function(t){return sU(this,t,arguments.length>1?arguments[1]:void 0)}});var oU=ri,lU=x,hU=N,cU=jt,uU=fi,dU=pn,pU=lU([].push),fU=lU([].join);oU({target:"String",stat:!0},{raw:function(t){var e=hU(cU(t).raw),r=dU(e);if(!r)return"";for(var n=arguments.length,i=[],a=0;;){if(pU(i,uU(e[a++])),a===r)return fU(i,"");a<n&&pU(i,uU(arguments[a]))}}}),ri({target:"String",proto:!0},{repeat:Kw});var gU=x,vU=jt,mU=Math.floor,yU=gU("".charAt),bU=gU("".replace),wU=gU("".slice),xU=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,AU=/\$([$&'`]|\d{1,2})/g,_U=function(t,e,r,n,i,a){var s=r+t.length,o=n.length,l=AU;return void 0!==i&&(i=vU(i),l=xU),bU(a,l,(function(a,l){var h;switch(yU(l,0)){case"$":return"$";case"&":return t;case"`":return wU(e,0,r);case"'":return wU(e,s);case"<":h=i[wU(l,1,-1)];break;default:var c=+l;if(0===c)return a;if(c>o){var u=mU(c/10);return 0===u?a:u<=o?void 0===n[u-1]?yU(l,1):n[u-1]+yU(l,1):a}h=n[c-1]}return void 0===h?"":h}))},kU=Mo,SU=h,EU=x,MU=lW,TU=i,CU=Oe,PU=B,IU=I,RU=nn,OU=un,LU=fi,DU=L,FU=cW,NU=wt,jU=_U,BU=mW,zU=ee("replace"),WU=Math.max,UU=Math.min,HU=EU([].concat),GU=EU([].push),YU=EU("".indexOf),VU=EU("".slice),qU="$0"==="a".replace(/./,"$0"),XU=!!/./[zU]&&""===/./[zU]("a","$0"),$U=!TU((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}));MU("replace",(function(t,e,r){var n=XU?"$":"$0";return[function(t,r){var n=DU(this),i=IU(t)?void 0:NU(t,zU);return i?SU(i,t,n,r):SU(e,LU(n),t,r)},function(t,i){var a=CU(this),s=LU(t);if("string"==typeof i&&-1===YU(i,n)&&-1===YU(i,"$<")){var o=r(e,a,s,i);if(o.done)return o.value}var l=PU(i);l||(i=LU(i));var h,c=a.global;c&&(h=a.unicode,a.lastIndex=0);for(var u,d=[];null!==(u=BU(a,s))&&(GU(d,u),c);){""===LU(u[0])&&(a.lastIndex=FU(s,OU(a.lastIndex),h))}for(var p,f="",g=0,v=0;v<d.length;v++){for(var m,y=LU((u=d[v])[0]),b=WU(UU(RU(u.index),s.length),0),w=[],x=1;x<u.length;x++)GU(w,void 0===(p=u[x])?p:String(p));var A=u.groups;if(l){var _=HU([y],w,b,s);void 0!==A&&GU(_,A),m=LU(kU(i,void 0,_))}else m=jU(y,s,b,w,A,i);b>=g&&(f+=VU(s,g,b)+m,g=b+y.length)}return f+VU(s,g)}]}),!$U||!qU||XU);var KU=ri,QU=h,JU=x,ZU=L,tH=B,eH=I,rH=rF,nH=fi,iH=wt,aH=cF,sH=_U,oH=ee("replace"),lH=TypeError,hH=JU("".indexOf);JU("".replace);var cH=JU("".slice),uH=Math.max;KU({target:"String",proto:!0},{replaceAll:function(t,e){var r,n,i,a,s,o,l,h,c,u=ZU(this),d=0,p="";if(!eH(t)){if(rH(t)&&(r=nH(ZU(aH(t))),!~hH(r,"g")))throw new lH("`.replaceAll` does not allow non-global regexes");if(n=iH(t,oH))return QU(n,t,u,e)}for(i=nH(u),a=nH(t),(s=tH(e))||(e=nH(e)),o=a.length,l=uH(1,o),h=hH(i,a);-1!==h;)c=s?nH(e(a,h,i)):sH(a,i,h,[],void 0,e),p+=cH(i,d,h)+c,d=h+o,h=h+l>i.length?-1:hH(i,a,h+l);return d<i.length&&(p+=cH(i,d)),p}});var dH=h,pH=Oe,fH=I,gH=L,vH=dP,mH=fi,yH=wt,bH=mW;lW("search",(function(t,e,r){return[function(e){var r=gH(this),n=fH(e)?void 0:yH(e,t);return n?dH(n,e,r):new RegExp(e)[t](mH(r))},function(t){var n=pH(this),i=mH(t),a=r(e,n,i);if(a.done)return a.value;var s=n.lastIndex;vH(s,0)||(n.lastIndex=0);var o=bH(n,i);return vH(n.lastIndex,s)||(n.lastIndex=s),null===o?-1:o.index}]}));var wH=h,xH=x,AH=lW,_H=Oe,kH=I,SH=L,EH=SI,MH=cW,TH=un,CH=fi,PH=wt,IH=mW,RH=i,OH=vF.UNSUPPORTED_Y,LH=Math.min,DH=xH([].push),FH=xH("".slice),NH=!RH((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]})),jH="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;AH("split",(function(t,e,r){var n="0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:wH(e,this,t,r)}:e;return[function(e,r){var i=SH(this),a=kH(e)?void 0:PH(e,t);return a?wH(a,e,i,r):wH(n,CH(i),e,r)},function(t,i){var a=_H(this),s=CH(t);if(!jH){var o=r(n,a,s,i,n!==e);if(o.done)return o.value}var l=EH(a,RegExp),h=a.unicode,c=(a.ignoreCase?"i":"")+(a.multiline?"m":"")+(a.unicode?"u":"")+(OH?"g":"y"),u=new l(OH?"^(?:"+a.source+")":a,c),d=void 0===i?4294967295:i>>>0;if(0===d)return[];if(0===s.length)return null===IH(u,s)?[s]:[];for(var p=0,f=0,g=[];f<s.length;){u.lastIndex=OH?0:f;var v,m=IH(u,OH?FH(s,f):s);if(null===m||(v=LH(TH(u.lastIndex+(OH?f:0)),s.length))===p)f=MH(s,f,h);else{if(DH(g,FH(s,p,f)),g.length===d)return g;for(var y=1;y<=m.length-1;y++)if(DH(g,m[y]),g.length===d)return g;f=p=v}}return DH(g,FH(s,p)),g}]}),jH||!NH,OH);var BH=ri,zH=va,WH=n.f,UH=un,HH=fi,GH=fz,YH=L,VH=vz,qH=zH("".slice),XH=Math.min,$H=VH("startsWith"),KH=!$H&&!!function(){var t=WH(String.prototype,"startsWith");return t&&!t.writable}();BH({target:"String",proto:!0,forced:!KH&&!$H},{startsWith:function(t){var e=HH(YH(this));GH(t);var r=UH(XH(arguments.length>1?arguments[1]:void 0,e.length)),n=HH(t);return qH(e,r,r+n.length)===n}});var QH=ri,JH=L,ZH=nn,tG=fi,eG=x("".slice),rG=Math.max,nG=Math.min;QH({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(t,e){var r,n,i=tG(JH(this)),a=i.length,s=ZH(t);return s===1/0&&(s=0),s<0&&(s=rG(a+s,0)),(r=void 0===e?a:ZH(e))<=0||r===1/0||s>=(n=nG(s+r,a))?"":eG(i,s,n)}});var iG=ri,aG=h,sG=x,oG=L,lG=fi,hG=i,cG=Array,uG=sG("".charAt),dG=sG("".charCodeAt),pG=sG([].join),fG="".toWellFormed,gG=fG&&hG((function(){return"1"!==aG(fG,1)}));iG({target:"String",proto:!0,forced:gG},{toWellFormed:function(){var t=lG(oG(this));if(gG)return aG(fG,t);for(var e=t.length,r=cG(e),n=0;n<e;n++){var i=dG(t,n);55296!=(63488&i)?r[n]=uG(t,n):i>=56320||n+1>=e||56320!=(64512&dG(t,n+1))?r[n]="�":(r[n]=uG(t,n),r[++n]=uG(t,n))}return pG(r,"")}});var vG=tr.PROPER,mG=i,yG=$E,bG=function(t){return mG((function(){return!!yG[t]()||"​…᠎"!=="​…᠎"[t]()||vG&&yG[t].name!==t}))},wG=nM.trim;ri({target:"String",proto:!0,forced:bG("trim")},{trim:function(){return wG(this)}});var xG=nM.end,AG=bG("trimEnd")?function(){return xG(this)}:"".trimEnd;ri({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==AG},{trimRight:AG});ri({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==AG},{trimEnd:AG});var _G=nM.start,kG=bG("trimStart")?function(){return _G(this)}:"".trimStart;ri({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==kG},{trimLeft:kG});ri({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==kG},{trimStart:kG});var SG=L,EG=fi,MG=/"/g,TG=x("".replace),CG=function(t,e,r,n){var i=EG(SG(t)),a="<"+e;return""!==r&&(a+=" "+r+'="'+TG(EG(n),MG,"&quot;")+'"'),a+">"+i+"</"+e+">"},PG=i,IG=function(t){return PG((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))},RG=CG;ri({target:"String",proto:!0,forced:IG("anchor")},{anchor:function(t){return RG(this,"a","name",t)}});var OG=CG;ri({target:"String",proto:!0,forced:IG("big")},{big:function(){return OG(this,"big","","")}});var LG=CG;ri({target:"String",proto:!0,forced:IG("blink")},{blink:function(){return LG(this,"blink","","")}});var DG=CG;ri({target:"String",proto:!0,forced:IG("bold")},{bold:function(){return DG(this,"b","","")}});var FG=CG;ri({target:"String",proto:!0,forced:IG("fixed")},{fixed:function(){return FG(this,"tt","","")}});var NG=CG;ri({target:"String",proto:!0,forced:IG("fontcolor")},{fontcolor:function(t){return NG(this,"font","color",t)}});var jG=CG;ri({target:"String",proto:!0,forced:IG("fontsize")},{fontsize:function(t){return jG(this,"font","size",t)}});var BG=CG;ri({target:"String",proto:!0,forced:IG("italics")},{italics:function(){return BG(this,"i","","")}});var zG=CG;ri({target:"String",proto:!0,forced:IG("link")},{link:function(t){return zG(this,"a","href",t)}});var WG=CG;ri({target:"String",proto:!0,forced:IG("small")},{small:function(){return WG(this,"small","","")}});var UG=CG;ri({target:"String",proto:!0,forced:IG("strike")},{strike:function(){return UG(this,"strike","","")}});var HG=CG;ri({target:"String",proto:!0,forced:IG("sub")},{sub:function(){return HG(this,"sub","","")}});var GG=CG;ri({target:"String",proto:!0,forced:IG("sup")},{sup:function(){return GG(this,"sup","","")}});var YG={exports:{}},VG=r,qG=i,XG=sp,$G=vb.NATIVE_ARRAY_BUFFER_VIEWS,KG=VG.ArrayBuffer,QG=VG.Int8Array,JG=!$G||!qG((function(){QG(1)}))||!qG((function(){new QG(-1)}))||!XG((function(t){new QG,new QG(null),new QG(1.5),new QG(t)}),!0)||qG((function(){return 1!==new QG(new KG(2),1,void 0).length})),ZG=QA,tY=RangeError,eY=function(t,e){var r=ZG(t);if(r%e)throw new tY("Wrong offset");return r},rY=Math.round,nY=ui,iY=function(t){var e=nY(t);return"BigInt64Array"===e||"BigUint64Array"===e},aY=he,sY=TypeError,oY=function(t){var e=aY(t,"number");if("number"==typeof e)throw new sY("Can't convert number to bigint");return BigInt(e)},lY=wa,hY=h,cY=wI,uY=jt,dY=pn,pY=gc,fY=lc,gY=rc,vY=iY,mY=vb.aTypedArrayConstructor,yY=oY,bY=function(t){var e,r,n,i,a,s,o,l,h=cY(this),c=uY(t),u=arguments.length,d=u>1?arguments[1]:void 0,p=void 0!==d,f=fY(c);if(f&&!gY(f))for(l=(o=pY(c,f)).next,c=[];!(s=hY(l,o)).done;)c.push(s.value);for(p&&u>2&&(d=lY(d,arguments[2])),r=dY(c),n=new(mY(h))(r),i=vY(n),e=0;r>e;e++)a=p?d(c[e],e):c[e],n[e]=i?yY(a):+a;return n},wY=ri,xY=r,AY=h,_Y=a,kY=JG,SY=vb,EY=Ty,MY=lm,TY=v,CY=qe,PY=OM,IY=un,RY=dm,OY=eY,LY=function(t){var e=rY(t);return e<0?0:e>255?255:255&e},DY=de,FY=Wt,NY=ui,jY=W,BY=ut,zY=zi,WY=Y,UY=Wl,HY=Jr.f,GY=bY,YY=Ka.forEach,VY=iv,qY=Ki,XY=Te,$Y=n,KY=Sv,QY=ql,JY=Cr.get,ZY=Cr.set,tV=Cr.enforce,eV=XY.f,rV=$Y.f,nV=xY.RangeError,iV=EY.ArrayBuffer,aV=iV.prototype,sV=EY.DataView,oV=SY.NATIVE_ARRAY_BUFFER_VIEWS,lV=SY.TYPED_ARRAY_TAG,hV=SY.TypedArray,cV=SY.TypedArrayPrototype,uV=SY.isTypedArray,dV="BYTES_PER_ELEMENT",pV="Wrong length",fV=function(t,e){qY(t,e,{configurable:!0,get:function(){return JY(this)[e]}})},gV=function(t){var e;return WY(aV,t)||"ArrayBuffer"===(e=NY(t))||"SharedArrayBuffer"===e},vV=function(t,e){return uV(t)&&!BY(e)&&e in t&&PY(+e)&&e>=0},mV=function(t,e){return e=DY(e),vV(t,e)?TY(2,t[e]):rV(t,e)},yV=function(t,e,r){return e=DY(e),!(vV(t,e)&&jY(r)&&FY(r,"value"))||FY(r,"get")||FY(r,"set")||r.configurable||FY(r,"writable")&&!r.writable||FY(r,"enumerable")&&!r.enumerable?eV(t,e,r):(t[e]=r.value,t)};_Y?(oV||($Y.f=mV,XY.f=yV,fV(cV,"buffer"),fV(cV,"byteOffset"),fV(cV,"byteLength"),fV(cV,"length")),wY({target:"Object",stat:!0,forced:!oV},{getOwnPropertyDescriptor:mV,defineProperty:yV}),YG.exports=function(t,e,r){var n=t.match(/\d+/)[0]/8,i=t+(r?"Clamped":"")+"Array",a="get"+t,s="set"+t,o=xY[i],l=o,h=l&&l.prototype,c={},u=function(t,e){eV(t,e,{get:function(){return function(t,e){var r=JY(t);return r.view[a](e*n+r.byteOffset,!0)}(this,e)},set:function(t){return function(t,e,i){var a=JY(t);a.view[s](e*n+a.byteOffset,r?LY(i):i,!0)}(this,e,t)},enumerable:!0})};oV?kY&&(l=e((function(t,e,r,i){return MY(t,h),QY(jY(e)?gV(e)?void 0!==i?new o(e,OY(r,n),i):void 0!==r?new o(e,OY(r,n)):new o(e):uV(e)?KY(l,e):AY(GY,l,e):new o(RY(e)),t,l)})),UY&&UY(l,hV),YY(HY(o),(function(t){t in l||CY(l,t,o[t])})),l.prototype=h):(l=e((function(t,e,r,i){MY(t,h);var a,s,o,c=0,d=0;if(jY(e)){if(!gV(e))return uV(e)?KY(l,e):AY(GY,l,e);a=e,d=OY(r,n);var p=e.byteLength;if(void 0===i){if(p%n)throw new nV(pV);if((s=p-d)<0)throw new nV(pV)}else if((s=IY(i)*n)+d>p)throw new nV(pV);o=s/n}else o=RY(e),a=new iV(s=o*n);for(ZY(t,{buffer:a,byteOffset:d,byteLength:s,length:o,view:new sV(a)});c<o;)u(t,c++)})),UY&&UY(l,hV),h=l.prototype=zY(cV)),h.constructor!==l&&CY(h,"constructor",l),tV(h).TypedArrayConstructor=l,lV&&CY(h,lV,i);var d=l!==o;c[i]=l,wY({global:!0,constructor:!0,forced:d,sham:!oV},c),dV in l||CY(l,dV,n),dV in h||CY(h,dV,n),VY(i)}):YG.exports=function(){},(0,YG.exports)("Float32",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,YG.exports)("Float64",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,YG.exports)("Int8",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,YG.exports)("Int16",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,YG.exports)("Int32",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,YG.exports)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,YG.exports)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}),!0),(0,YG.exports)("Uint16",(function(t){return function(e,r,n){return t(this,e,r,n)}})),(0,YG.exports)("Uint32",(function(t){return function(e,r,n){return t(this,e,r,n)}}));var bV=pn,wV=nn,xV=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("at",(function(t){var e=xV(this),r=bV(e),n=wV(t),i=n>=0?n:r+n;return i<0||i>=r?void 0:e[i]}));var AV=vb,_V=x(Vu),kV=AV.aTypedArray;(0,AV.exportTypedArrayMethod)("copyWithin",(function(t,e){return _V(kV(this),t,e,arguments.length>2?arguments[2]:void 0)}));var SV=Ka.every,EV=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("every",(function(t){return SV(EV(this),t,arguments.length>1?arguments[1]:void 0)}));var MV=td,TV=oY,CV=ui,PV=h,IV=i,RV=vb.aTypedArray,OV=vb.exportTypedArrayMethod,LV=x("".slice),DV=IV((function(){var t=0;return new Int8Array(2).fill({valueOf:function(){return t++}}),1!==t}));OV("fill",(function(t){var e=arguments.length;RV(this);var r="Big"===LV(CV(this),0,3)?TV(t):+t;return PV(MV,this,r,e>1?arguments[1]:void 0,e>2?arguments[2]:void 0)}),DV);var FV=Sv,NV=vb.getTypedArrayConstructor,jV=Ka.filter,BV=function(t,e){return FV(NV(t),e)},zV=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("filter",(function(t){var e=jV(zV(this),t,arguments.length>1?arguments[1]:void 0);return BV(this,e)}));var WV=Ka.find,UV=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("find",(function(t){return WV(UV(this),t,arguments.length>1?arguments[1]:void 0)}));var HV=Ka.findIndex,GV=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("findIndex",(function(t){return HV(GV(this),t,arguments.length>1?arguments[1]:void 0)}));var YV=yd.findLast,VV=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("findLast",(function(t){return YV(VV(this),t,arguments.length>1?arguments[1]:void 0)}));var qV=yd.findLastIndex,XV=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("findLastIndex",(function(t){return qV(XV(this),t,arguments.length>1?arguments[1]:void 0)}));var $V=Ka.forEach,KV=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("forEach",(function(t){$V(KV(this),t,arguments.length>1?arguments[1]:void 0)})),(0,vb.exportTypedArrayStaticMethod)("from",bY,JG);var QV=yn.includes,JV=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("includes",(function(t){return QV(JV(this),t,arguments.length>1?arguments[1]:void 0)}));var ZV=yn.indexOf,tq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("indexOf",(function(t){return ZV(tq(this),t,arguments.length>1?arguments[1]:void 0)}));var eq=r,rq=i,nq=x,iq=vb,aq=pf,sq=ee("iterator"),oq=eq.Uint8Array,lq=nq(aq.values),hq=nq(aq.keys),cq=nq(aq.entries),uq=iq.aTypedArray,dq=iq.exportTypedArrayMethod,pq=oq&&oq.prototype,fq=!rq((function(){pq[sq].call([1])})),gq=!!pq&&pq.values&&pq[sq]===pq.values&&"values"===pq.values.name,vq=function(){return lq(uq(this))};dq("entries",(function(){return cq(uq(this))}),fq),dq("keys",(function(){return hq(uq(this))}),fq),dq("values",vq,fq||!gq,{name:"values"}),dq(sq,vq,fq||!gq,{name:"values"});var mq=vb.aTypedArray,yq=vb.exportTypedArrayMethod,bq=x([].join);yq("join",(function(t){return bq(mq(this),t)}));var wq=Mo,xq=Cf,Aq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("lastIndexOf",(function(t){var e=arguments.length;return wq(xq,Aq(this),e>1?[t,arguments[1]]:[t])}));var _q=Ka.map,kq=vb.aTypedArray,Sq=vb.getTypedArrayConstructor;(0,vb.exportTypedArrayMethod)("map",(function(t){return _q(kq(this),t,arguments.length>1?arguments[1]:void 0,(function(t,e){return new(Sq(t))(e)}))}));var Eq=vb.aTypedArrayConstructor;(0,vb.exportTypedArrayStaticMethod)("of",(function(){for(var t=0,e=arguments.length,r=new(Eq(this))(e);e>t;)r[t]=arguments[t++];return r}),JG);var Mq=Kf.left,Tq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("reduce",(function(t){var e=arguments.length;return Mq(Tq(this),t,e,e>1?arguments[1]:void 0)}));var Cq=Kf.right,Pq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("reduceRight",(function(t){var e=arguments.length;return Cq(Pq(this),t,e,e>1?arguments[1]:void 0)}));var Iq=vb.aTypedArray,Rq=vb.exportTypedArrayMethod,Oq=Math.floor;Rq("reverse",(function(){for(var t,e=this,r=Iq(e).length,n=Oq(r/2),i=0;i<n;)t=e[i],e[i++]=e[--r],e[r]=t;return e}));var Lq=r,Dq=h,Fq=vb,Nq=pn,jq=eY,Bq=jt,zq=i,Wq=Lq.RangeError,Uq=Lq.Int8Array,Hq=Uq&&Uq.prototype,Gq=Hq&&Hq.set,Yq=Fq.aTypedArray,Vq=Fq.exportTypedArrayMethod,qq=!zq((function(){var t=new Uint8ClampedArray(2);return Dq(Gq,t,{length:1,0:3},1),3!==t[1]})),Xq=qq&&Fq.NATIVE_ARRAY_BUFFER_VIEWS&&zq((function(){var t=new Uq(2);return t.set(1),t.set("2",1),0!==t[0]||2!==t[1]}));Vq("set",(function(t){Yq(this);var e=jq(arguments.length>1?arguments[1]:void 0,1),r=Bq(t);if(qq)return Dq(Gq,this,r,e);var n=this.length,i=Nq(r),a=0;if(i+e>n)throw new Wq("Wrong length");for(;a<i;)this[e+a]=r[a++]}),!qq||Xq);var $q=Ui,Kq=vb.aTypedArray,Qq=vb.getTypedArrayConstructor;(0,vb.exportTypedArrayMethod)("slice",(function(t,e){for(var r=$q(Kq(this),t,e),n=Qq(this),i=0,a=r.length,s=new n(a);a>i;)s[i]=r[i++];return s}),i((function(){new Int8Array(1).slice()})));var Jq=Ka.some,Zq=vb.aTypedArray;(0,vb.exportTypedArrayMethod)("some",(function(t){return Jq(Zq(this),t,arguments.length>1?arguments[1]:void 0)}));var tX=va,eX=i,rX=mt,nX=Mg,iX=Cg,aX=Pg,sX=et,oX=Rg,lX=vb.aTypedArray,hX=vb.exportTypedArrayMethod,cX=r.Uint16Array,uX=cX&&tX(cX.prototype.sort),dX=!(!uX||eX((function(){uX(new cX(2),null)}))&&eX((function(){uX(new cX(2),{})}))),pX=!!uX&&!eX((function(){if(sX)return sX<74;if(iX)return iX<67;if(aX)return!0;if(oX)return oX<602;var t,e,r=new cX(516),n=Array(516);for(t=0;t<516;t++)e=t%4,r[t]=515-t,n[t]=t-2*e+3;for(uX(r,(function(t,e){return(t/4|0)-(e/4|0)})),t=0;t<516;t++)if(r[t]!==n[t])return!0}));hX("sort",(function(t){return void 0!==t&&rX(t),pX?uX(this,t):nX(lX(this),function(t){return function(e,r){return void 0!==t?+t(e,r)||0:r!=r?-1:e!=e?1:0===e&&0===r?1/e>0&&1/r<0?1:-1:e>r}}(t))}),!pX||dX);var fX=un,gX=ln,vX=vb.aTypedArray,mX=vb.getTypedArrayConstructor;(0,vb.exportTypedArrayMethod)("subarray",(function(t,e){var r=vX(this),n=r.length,i=gX(t,n);return new(mX(r))(r.buffer,r.byteOffset+i*r.BYTES_PER_ELEMENT,fX((void 0===e?n:gX(e,n))-i))}));var yX=Mo,bX=vb,wX=i,xX=Ui,AX=r.Int8Array,_X=bX.aTypedArray,kX=bX.exportTypedArrayMethod,SX=[].toLocaleString,EX=!!AX&&wX((function(){SX.call(new AX(1))}));kX("toLocaleString",(function(){return yX(SX,EX?xX(_X(this)):_X(this),xX(arguments))}),wX((function(){return[1,2].toLocaleString()!==new AX([1,2]).toLocaleString()}))||!wX((function(){AX.prototype.toLocaleString.call([1,2])})));var MX=bv,TX=vb.aTypedArray,CX=vb.getTypedArrayConstructor;(0,vb.exportTypedArrayMethod)("toReversed",(function(){return MX(TX(this),CX(this))}));var PX=mt,IX=Sv,RX=vb.aTypedArray,OX=vb.getTypedArrayConstructor,LX=vb.exportTypedArrayMethod,DX=x(vb.TypedArrayPrototype.sort);LX("toSorted",(function(t){void 0!==t&&PX(t);var e=RX(this),r=IX(OX(e),e);return DX(r,t)}));var FX=vb.exportTypedArrayMethod,NX=i,jX=x,BX=r.Uint8Array,zX=BX&&BX.prototype||{},WX=[].toString,UX=jX([].join);NX((function(){WX.call({})}))&&(WX=function(){return UX(this)});var HX=zX.toString!==WX;FX("toString",WX,HX);var GX=Zv,YX=iY,VX=nn,qX=oY,XX=vb.aTypedArray,$X=vb.getTypedArrayConstructor,KX=vb.exportTypedArrayMethod,QX=!!function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(t){return 8===t}}();KX("with",{with:function(t,e){var r=XX(this),n=VX(t),i=YX(r)?qX(e):+e;return GX(r,$X(r),n,i)}}.with,!QX);var JX=ri,ZX=x,t$=fi,e$=String.fromCharCode,r$=ZX("".charAt),n$=ZX(/./.exec),i$=ZX("".slice),a$=/^[\da-f]{2}$/i,s$=/^[\da-f]{4}$/i;JX({global:!0},{unescape:function(t){for(var e,r,n=t$(t),i="",a=n.length,s=0;s<a;){if("%"===(e=r$(n,s++)))if("u"===r$(n,s)){if(r=i$(n,s+1,s+5),n$(s$,r)){i+=e$(parseInt(r,16)),s+=5;continue}}else if(r=i$(n,s,s+2),n$(a$,r)){i+=e$(parseInt(r,16)),s+=2;continue}i+=e}return i}});var o$=x,l$=am,h$=Lk.exports.getWeakData,c$=lm,u$=Oe,d$=I,p$=W,f$=Oc,g$=Wt,v$=Cr.set,m$=Cr.getterFor,y$=Ka.find,b$=Ka.findIndex,w$=o$([].splice),x$=0,A$=function(t){return t.frozen||(t.frozen=new _$)},_$=function(){this.entries=[]},k$=function(t,e){return y$(t.entries,(function(t){return t[0]===e}))};_$.prototype={get:function(t){var e=k$(this,t);if(e)return e[1]},has:function(t){return!!k$(this,t)},set:function(t,e){var r=k$(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=b$(this.entries,(function(e){return e[0]===t}));return~e&&w$(this.entries,e,1),!!~e}};var S$,E$={getConstructor:function(t,e,r,n){var i=t((function(t,i){c$(t,a),v$(t,{type:e,id:x$++,frozen:null}),d$(i)||f$(i,t[n],{that:t,AS_ENTRIES:r})})),a=i.prototype,s=m$(e),o=function(t,e,r){var n=s(t),i=h$(u$(e),!0);return!0===i?A$(n).set(e,r):i[n.id]=r,t};return l$(a,{delete:function(t){var e=s(this);if(!p$(t))return!1;var r=h$(t);return!0===r?A$(e).delete(t):r&&g$(r,e.id)&&delete r[e.id]},has:function(t){var e=s(this);if(!p$(t))return!1;var r=h$(t);return!0===r?A$(e).has(t):r&&g$(r,e.id)}}),l$(a,r?{get:function(t){var e=s(this);if(p$(t)){var r=h$(t);if(!0===r)return A$(e).get(t);if(r)return r[e.id]}},set:function(t,e){return o(this,t,e)}}:{add:function(t){return o(this,t,!0)}}),i}},M$=Uk,T$=r,C$=x,P$=am,I$=Lk.exports,R$=bS,O$=E$,L$=W,D$=Cr.enforce,F$=i,N$=ur,j$=Object,B$=Array.isArray,z$=j$.isExtensible,W$=j$.isFrozen,U$=j$.isSealed,H$=j$.freeze,G$=j$.seal,Y$=!T$.ActiveXObject&&"ActiveXObject"in T$,V$=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},q$=R$("WeakMap",V$,O$),X$=q$.prototype,$$=C$(X$.set);if(N$)if(Y$){S$=O$.getConstructor(V$,"WeakMap",!0),I$.enable();var K$=C$(X$.delete),Q$=C$(X$.has),J$=C$(X$.get);P$(X$,{delete:function(t){if(L$(t)&&!z$(t)){var e=D$(this);return e.frozen||(e.frozen=new S$),K$(this,t)||e.frozen.delete(t)}return K$(this,t)},has:function(t){if(L$(t)&&!z$(t)){var e=D$(this);return e.frozen||(e.frozen=new S$),Q$(this,t)||e.frozen.has(t)}return Q$(this,t)},get:function(t){if(L$(t)&&!z$(t)){var e=D$(this);return e.frozen||(e.frozen=new S$),Q$(this,t)?J$(this,t):e.frozen.get(t)}return J$(this,t)},set:function(t,e){if(L$(t)&&!z$(t)){var r=D$(this);r.frozen||(r.frozen=new S$),Q$(this,t)?$$(this,t,e):r.frozen.set(t,e)}else $$(this,t,e);return this}})}else M$&&F$((function(){var t=H$([]);return $$(new q$,t,1),!W$(t)}))&&P$(X$,{set:function(t,e){var r;return B$(t)&&(W$(t)?r=H$:U$(t)&&(r=G$)),$$(this,t,e),r&&r(t),this}});bS("WeakSet",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),E$);var Z$="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",tK=Z$+"+/",eK=Z$+"-_",rK=function(t){for(var e={},r=0;r<64;r++)e[t.charAt(r)]=r;return e},nK={i2c:tK,c2i:rK(tK),i2cUrl:eK,c2iUrl:rK(eK)},iK=ri,aK=r,sK=G,oK=x,lK=h,hK=i,cK=fi,uK=MI,dK=nK.c2i,pK=/[^\d+/a-z]/i,fK=/[\t\n\f\r ]+/g,gK=/[=]{1,2}$/,vK=sK("atob"),mK=String.fromCharCode,yK=oK("".charAt),bK=oK("".replace),wK=oK(pK.exec),xK=!!vK&&!hK((function(){return"hi"!==vK("aGk=")})),AK=xK&&hK((function(){return""!==vK(" ")})),_K=xK&&!hK((function(){vK("a")})),kK=xK&&!hK((function(){vK()})),SK=xK&&1!==vK.length;iK({global:!0,bind:!0,enumerable:!0,forced:!xK||AK||_K||kK||SK},{atob:function(t){if(uK(arguments.length,1),xK&&!AK&&!_K)return lK(vK,aK,t);var e,r,n,i=bK(cK(t),fK,""),a="",s=0,o=0;if(i.length%4==0&&(i=bK(i,gK,"")),(e=i.length)%4==1||wK(pK,i))throw new(sK("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(;s<e;)r=yK(i,s++),n=o%4?64*n+dK[r]:dK[r],o++%4&&(a+=mK(255&n>>(-2*o&6)));return a}});var EK=ri,MK=r,TK=G,CK=x,PK=h,IK=i,RK=fi,OK=MI,LK=nK.i2c,DK=TK("btoa"),FK=CK("".charAt),NK=CK("".charCodeAt),jK=!!DK&&!IK((function(){return"aGk="!==DK("hi")})),BK=jK&&!IK((function(){DK()})),zK=jK&&IK((function(){return"bnVsbA=="!==DK(null)})),WK=jK&&1!==DK.length;EK({global:!0,bind:!0,enumerable:!0,forced:!jK||BK||zK||WK},{btoa:function(t){if(OK(arguments.length,1),jK)return PK(DK,MK,RK(t));for(var e,r,n=RK(t),i="",a=0,s=LK;FK(n,a)||(s="=",a%1);){if((r=NK(n,a+=3/4))>255)throw new(TK("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");i+=FK(s,63&(e=e<<8|r)>>8-a%1*8)}return i}});var UK={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},HK=ve("span").classList,GK=HK&&HK.constructor&&HK.constructor.prototype,YK=GK===Object.prototype?void 0:GK,VK=r,qK=UK,XK=YK,$K=zd,KK=qe,QK=function(t){if(t&&t.forEach!==$K)try{KK(t,"forEach",$K)}catch(e){t.forEach=$K}};for(var JK in qK)qK[JK]&&QK(VK[JK]&&VK[JK].prototype);QK(XK);var ZK=r,tQ=UK,eQ=YK,rQ=pf,nQ=qe,iQ=pa,aQ=ee("iterator"),sQ=rQ.values,oQ=function(t,e){if(t){if(t[aQ]!==sQ)try{nQ(t,aQ,sQ)}catch(e){t[aQ]=sQ}if(iQ(t,e,!0),tQ[e])for(var r in rQ)if(t[r]!==rQ[r])try{nQ(t,r,rQ[r])}catch(e){t[r]=rQ[r]}}};for(var lQ in tQ)oQ(ZK[lQ]&&ZK[lQ].prototype,lQ);oQ(eQ,"DOMTokenList");var hQ={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}},cQ=ri,uQ=G,dQ=Qb,pQ=i,fQ=zi,gQ=v,vQ=Te.f,mQ=Qr,yQ=Ki,bQ=Wt,wQ=lm,xQ=Oe,AQ=Bh,_Q=$l,kQ=hQ,SQ=ih,EQ=Cr,MQ=a,TQ="DOMException",CQ="DATA_CLONE_ERR",PQ=uQ("Error"),IQ=uQ(TQ)||function(){try{(new(uQ("MessageChannel")||dQ("worker_threads").MessageChannel)).port1.postMessage(new WeakMap)}catch(t){if(t.name===CQ&&25===t.code)return t.constructor}}(),RQ=IQ&&IQ.prototype,OQ=PQ.prototype,LQ=EQ.set,DQ=EQ.getterFor(TQ),FQ="stack"in new PQ(TQ),NQ=function(t){return bQ(kQ,t)&&kQ[t].m?kQ[t].c:0},jQ=function(){wQ(this,BQ);var t=arguments.length,e=_Q(t<1?void 0:arguments[0]),r=_Q(t<2?void 0:arguments[1],"Error"),n=NQ(r);if(LQ(this,{type:TQ,name:r,message:e,code:n}),MQ||(this.name=r,this.message=e,this.code=n),FQ){var i=new PQ(e);i.name=TQ,vQ(this,"stack",gQ(1,SQ(i.stack,1)))}},BQ=jQ.prototype=fQ(OQ),zQ=function(t){return{enumerable:!0,configurable:!0,get:t}},WQ=function(t){return zQ((function(){return DQ(this)[t]}))};MQ&&(yQ(BQ,"code",WQ("code")),yQ(BQ,"message",WQ("message")),yQ(BQ,"name",WQ("name"))),vQ(BQ,"constructor",gQ(1,jQ));var UQ=pQ((function(){return!(new IQ instanceof PQ)})),HQ=UQ||pQ((function(){return OQ.toString!==AQ||"2: 1"!==String(new IQ(1,2))})),GQ=UQ||pQ((function(){return 25!==new IQ(1,"DataCloneError").code}));UQ||25!==IQ[CQ]||RQ[CQ];cQ({global:!0,constructor:!0,forced:UQ},{DOMException:UQ?jQ:IQ});var YQ=uQ(TQ),VQ=YQ.prototype;for(var qQ in HQ&&IQ===YQ&&mQ(VQ,"toString",AQ),GQ&&MQ&&IQ===YQ&&yQ(VQ,"code",zQ((function(){return NQ(xQ(this).name)}))),kQ)if(bQ(kQ,qQ)){var XQ=kQ[qQ],$Q=XQ.s,KQ=gQ(6,XQ.c);bQ(YQ,$Q)||vQ(YQ,$Q,KQ),bQ(VQ,$Q)||vQ(VQ,$Q,KQ)}var QQ=ri,JQ=r,ZQ=G,tJ=v,eJ=Te.f,rJ=Wt,nJ=lm,iJ=ql,aJ=$l,sJ=hQ,oJ=ih,lJ=a,hJ="DOMException",cJ=ZQ("Error"),uJ=ZQ(hJ),dJ=function(){nJ(this,pJ);var t=arguments.length,e=aJ(t<1?void 0:arguments[0]),r=aJ(t<2?void 0:arguments[1],"Error"),n=new uJ(e,r),i=new cJ(e);return i.name=hJ,eJ(n,"stack",tJ(1,oJ(i.stack,1))),iJ(n,this,dJ),n},pJ=dJ.prototype=uJ.prototype,fJ="stack"in new cJ(hJ),gJ="stack"in new uJ(1,2),vJ=uJ&&lJ&&Object.getOwnPropertyDescriptor(JQ,hJ),mJ=!(!vJ||vJ.writable&&vJ.configurable),yJ=fJ&&!mJ&&!gJ;QQ({global:!0,constructor:!0,forced:yJ},{DOMException:yJ?dJ:uJ});var bJ=ZQ(hJ),wJ=bJ.prototype;if(wJ.constructor!==bJ)for(var xJ in eJ(wJ,"constructor",tJ(1,bJ)),sJ)if(rJ(sJ,xJ)){var AJ=sJ[xJ],_J=AJ.s;rJ(bJ,_J)||eJ(bJ,_J,tJ(6,AJ.c))}var kJ="DOMException";pa(G(kJ),kJ);var SJ=eR.clear;ri({global:!0,bind:!0,enumerable:!0,forced:r.clearImmediate!==SJ},{clearImmediate:SJ});var EJ=r,MJ=Mo,TJ=B,CJ=eg,PJ=X,IJ=Ui,RJ=MI,OJ=EJ.Function,LJ=/MSIE .\./.test(PJ)||"BUN"===CJ&&function(){var t=EJ.Bun.version.split(".");return t.length<3||"0"===t[0]&&(t[1]<3||"3"===t[1]&&"0"===t[2])}(),DJ=function(t,e){var r=e?2:1;return LJ?function(n,i){var a=RJ(arguments.length,1)>r,s=TJ(n)?n:OJ(n),o=a?IJ(arguments,r):[],l=a?function(){MJ(s,this,o)}:s;return e?t(l,i):t(l)}:t},FJ=ri,NJ=r,jJ=eR.set,BJ=DJ,zJ=NJ.setImmediate?BJ(jJ,!1):jJ;FJ({global:!0,bind:!0,enumerable:!0,forced:NJ.setImmediate!==zJ},{setImmediate:zJ});var WJ=r,UJ=IR,HJ=mt,GJ=MI,YJ=a;ri({global:!0,enumerable:!0,dontCallGetSet:!0,forced:i((function(){return YJ&&1!==Object.getOwnPropertyDescriptor(WJ,"queueMicrotask").value.length}))},{queueMicrotask:function(t){GJ(arguments.length,1),UJ(HJ(t))}});var VJ=ri,qJ=r,XJ=Ki,$J=a,KJ=TypeError,QJ=Object.defineProperty,JJ=qJ.self!==qJ;try{if($J){var ZJ=Object.getOwnPropertyDescriptor(qJ,"self");!JJ&&ZJ&&ZJ.get&&ZJ.enumerable||XJ(qJ,"self",{get:function(){return qJ},set:function(t){if(this!==qJ)throw new KJ("Illegal invocation");QJ(qJ,"self",{value:t,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else VJ({global:!0,simple:!0,forced:JJ},{self:qJ})}catch(t){}var tZ,eZ=ri,rZ=r,nZ=G,iZ=x,aZ=i,sZ=Vt,oZ=B,lZ=Da,hZ=I,cZ=W,uZ=ut,dZ=Oc,pZ=Oe,fZ=ui,gZ=Wt,vZ=bu,mZ=qe,yZ=pn,bZ=MI,wZ=cF,xZ=NS,AZ=yj,_Z=Pj,kZ=cw,SZ=sh,EZ=rw,MZ=rZ.Object,TZ=rZ.Array,CZ=rZ.Date,PZ=rZ.Error,IZ=rZ.TypeError,RZ=rZ.PerformanceMark,OZ=nZ("DOMException"),LZ=xZ.Map,DZ=xZ.has,FZ=xZ.get,NZ=xZ.set,jZ=AZ.Set,BZ=AZ.add,zZ=AZ.has,WZ=nZ("Object","keys"),UZ=iZ([].push),HZ=iZ((!0).valueOf),GZ=iZ(1..valueOf),YZ=iZ("".valueOf),VZ=iZ(CZ.prototype.getTime),qZ=sZ("structuredClone"),XZ="DataCloneError",$Z="Transferring",KZ=function(t){return!aZ((function(){var e=new rZ.Set([7]),r=t(e),n=t(MZ(7));return r===e||!r.has(7)||!cZ(n)||7!=+n}))&&t},QZ=function(t,e){return!aZ((function(){var r=new e,n=t({a:r,b:r});return!(n&&n.a===n.b&&n.a instanceof e&&n.a.stack===r.stack)}))},JZ=rZ.structuredClone,ZZ=!QZ(JZ,PZ)||!QZ(JZ,OZ)||(tZ=JZ,!!aZ((function(){var t=tZ(new rZ.AggregateError([1],qZ,{cause:3}));return"AggregateError"!==t.name||1!==t.errors[0]||t.message!==qZ||3!==t.cause}))),t0=!JZ&&KZ((function(t){return new RZ(qZ,{detail:t}).detail})),e0=KZ(JZ)||t0,r0=function(t){throw new OZ("Uncloneable type: "+t,XZ)},n0=function(t,e){throw new OZ((e||"Cloning")+" of "+t+" cannot be properly polyfilled in this engine",XZ)},i0=function(t,e){return e0||n0(e),e0(t)},a0=function(t,e,r){if(DZ(e,t))return FZ(e,t);var n,i,a,s,o,l;if("SharedArrayBuffer"===(r||fZ(t)))n=e0?e0(t):t;else{var h=rZ.DataView;h||oZ(t.slice)||n0("ArrayBuffer");try{if(oZ(t.slice)&&!t.resizable)n=t.slice(0);else{i=t.byteLength,a="maxByteLength"in t?{maxByteLength:t.maxByteLength}:void 0,n=new ArrayBuffer(i,a),s=new h(t),o=new h(n);for(l=0;l<i;l++)o.setUint8(l,s.getUint8(l))}}catch(t){throw new OZ("ArrayBuffer is detached",XZ)}}return NZ(e,t,n),n},s0=function(t,e){if(uZ(t)&&r0("Symbol"),!cZ(t))return t;if(e){if(DZ(e,t))return FZ(e,t)}else e=new LZ;var r,n,i,a,s,o,l,h,c=fZ(t);switch(c){case"Array":i=TZ(yZ(t));break;case"Object":i={};break;case"Map":i=new LZ;break;case"Set":i=new jZ;break;case"RegExp":i=new RegExp(t.source,wZ(t));break;case"Error":switch(n=t.name){case"AggregateError":i=new(nZ(n))([]);break;case"EvalError":case"RangeError":case"ReferenceError":case"SuppressedError":case"SyntaxError":case"TypeError":case"URIError":i=new(nZ(n));break;case"CompileError":case"LinkError":case"RuntimeError":i=new(nZ("WebAssembly",n));break;default:i=new PZ}break;case"DOMException":i=new OZ(t.message,t.name);break;case"ArrayBuffer":case"SharedArrayBuffer":i=a0(t,e,c);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":o="DataView"===c?t.byteLength:t.length,i=function(t,e,r,n,i){var a=rZ[e];return cZ(a)||n0(e),new a(a0(t.buffer,i),r,n)}(t,c,t.byteOffset,o,e);break;case"DOMQuad":try{i=new DOMQuad(s0(t.p1,e),s0(t.p2,e),s0(t.p3,e),s0(t.p4,e))}catch(e){i=i0(t,c)}break;case"File":if(e0)try{i=e0(t),fZ(i)!==c&&(i=void 0)}catch(t){}if(!i)try{i=new File([t],t.name,t)}catch(t){}i||n0(c);break;case"FileList":if(a=function(){var t;try{t=new rZ.DataTransfer}catch(e){try{t=new rZ.ClipboardEvent("").clipboardData}catch(t){}}return t&&t.items&&t.files?t:null}()){for(s=0,o=yZ(t);s<o;s++)a.items.add(s0(t[s],e));i=a.files}else i=i0(t,c);break;case"ImageData":try{i=new ImageData(s0(t.data,e),t.width,t.height,{colorSpace:t.colorSpace})}catch(e){i=i0(t,c)}break;default:if(e0)i=e0(t);else switch(c){case"BigInt":i=MZ(t.valueOf());break;case"Boolean":i=MZ(HZ(t));break;case"Number":i=MZ(GZ(t));break;case"String":i=MZ(YZ(t));break;case"Date":i=new CZ(VZ(t));break;case"Blob":try{i=t.slice(0,t.size,t.type)}catch(t){n0(c)}break;case"DOMPoint":case"DOMPointReadOnly":r=rZ[c];try{i=r.fromPoint?r.fromPoint(t):new r(t.x,t.y,t.z,t.w)}catch(t){n0(c)}break;case"DOMRect":case"DOMRectReadOnly":r=rZ[c];try{i=r.fromRect?r.fromRect(t):new r(t.x,t.y,t.width,t.height)}catch(t){n0(c)}break;case"DOMMatrix":case"DOMMatrixReadOnly":r=rZ[c];try{i=r.fromMatrix?r.fromMatrix(t):new r(t)}catch(t){n0(c)}break;case"AudioData":case"VideoFrame":oZ(t.clone)||n0(c);try{i=t.clone()}catch(t){r0(c)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":n0(c);default:r0(c)}}switch(NZ(e,t,i),c){case"Array":case"Object":for(l=WZ(t),s=0,o=yZ(l);s<o;s++)h=l[s],vZ(i,h,s0(t[h],e));break;case"Map":t.forEach((function(t,r){NZ(i,s0(r,e),s0(t,e))}));break;case"Set":t.forEach((function(t){BZ(i,s0(t,e))}));break;case"Error":mZ(i,"message",s0(t.message,e)),gZ(t,"cause")&&mZ(i,"cause",s0(t.cause,e)),"AggregateError"===n?i.errors=s0(t.errors,e):"SuppressedError"===n&&(i.error=s0(t.error,e),i.suppressed=s0(t.suppressed,e));case"DOMException":SZ&&mZ(i,"stack",s0(t.stack,e))}return i};eZ({global:!0,enumerable:!0,sham:!EZ,forced:ZZ},{structuredClone:function(t){var e,r,n=bZ(arguments.length,1)>1&&!hZ(arguments[1])?pZ(arguments[1]):void 0,i=n?n.transfer:void 0;void 0!==i&&(r=function(t,e){if(!cZ(t))throw new IZ("Transfer option cannot be converted to a sequence");var r=[];dZ(t,(function(t){UZ(r,pZ(t))}));for(var n,i,a,s,o,l=0,h=yZ(r),c=new jZ;l<h;){if(n=r[l++],"ArrayBuffer"===(i=fZ(n))?zZ(c,n):DZ(e,n))throw new OZ("Duplicate transferable",XZ);if("ArrayBuffer"!==i){if(EZ)s=JZ(n,{transfer:[n]});else switch(i){case"ImageBitmap":a=rZ.OffscreenCanvas,lZ(a)||n0(i,$Z);try{(o=new a(n.width,n.height)).getContext("bitmaprenderer").transferFromImageBitmap(n),s=o.transferToImageBitmap()}catch(t){}break;case"AudioData":case"VideoFrame":oZ(n.clone)&&oZ(n.close)||n0(i,$Z);try{s=n.clone(),n.close()}catch(t){}break;case"MediaSourceHandle":case"MessagePort":case"MIDIAccess":case"OffscreenCanvas":case"ReadableStream":case"RTCDataChannel":case"TransformStream":case"WebTransportReceiveStream":case"WebTransportSendStream":case"WritableStream":n0(i,$Z)}if(void 0===s)throw new OZ("This object cannot be transferred: "+i,XZ);NZ(e,n,s)}else BZ(c,n)}return c}(i,e=new LZ));var a=s0(t,e);return r&&function(t){_Z(t,(function(t){EZ?e0(t,{transfer:[t]}):oZ(t.transfer)?t.transfer():kZ?kZ(t):n0("ArrayBuffer",$Z)}))}(r),a}});var o0=ri,l0=r,h0=DJ(l0.setInterval,!0);o0({global:!0,bind:!0,forced:l0.setInterval!==h0},{setInterval:h0});var c0=ri,u0=r,d0=DJ(u0.setTimeout,!0);c0({global:!0,bind:!0,forced:u0.setTimeout!==d0},{setTimeout:d0});var p0=i,f0=a,g0=ee("iterator"),v0=!p0((function(){var t=new URL("b?a=1&b=2&c=3","https://a"),e=t.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return t.pathname="c%20d",e.forEach((function(t,r){e.delete("b"),n+=r+t})),r.delete("a",2),r.delete("b",void 0),!e.size&&!f0||!e.sort||"https://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[g0]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("https://тест").host||"#%D0%B1"!==new URL("https://a#б").hash||"a1c3"!==n||"x"!==new URL("https://x",void 0).host})),m0=x,y0=2147483647,b0=/[^\0-\u007E]/,w0=/[.\u3002\uFF0E\uFF61]/g,x0="Overflow: input needs wider integers to process",A0=RangeError,_0=m0(w0.exec),k0=Math.floor,S0=String.fromCharCode,E0=m0("".charCodeAt),M0=m0([].join),T0=m0([].push),C0=m0("".replace),P0=m0("".split),I0=m0("".toLowerCase),R0=function(t){return t+22+75*(t<26)},O0=function(t,e,r){var n=0;for(t=r?k0(t/700):t>>1,t+=k0(t/e);t>455;)t=k0(t/35),n+=36;return k0(n+36*t/(t+38))},L0=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var i=E0(t,r++);if(i>=55296&&i<=56319&&r<n){var a=E0(t,r++);56320==(64512&a)?T0(e,((1023&i)<<10)+(1023&a)+65536):(T0(e,i),r--)}else T0(e,i)}return e}(t);var r,n,i=t.length,a=128,s=0,o=72;for(r=0;r<t.length;r++)(n=t[r])<128&&T0(e,S0(n));var l=e.length,h=l;for(l&&T0(e,"-");h<i;){var c=y0;for(r=0;r<t.length;r++)(n=t[r])>=a&&n<c&&(c=n);var u=h+1;if(c-a>k0((y0-s)/u))throw new A0(x0);for(s+=(c-a)*u,a=c,r=0;r<t.length;r++){if((n=t[r])<a&&++s>y0)throw new A0(x0);if(n===a){for(var d=s,p=36;;){var f=p<=o?1:p>=o+26?26:p-o;if(d<f)break;var g=d-f,v=36-f;T0(e,S0(R0(f+g%v))),d=k0(g/v),p+=36}T0(e,S0(R0(d))),o=O0(s,u,h===l),s=0,h++}}s++,a++}return M0(e,"")},D0=ri,F0=r,N0=aR,j0=G,B0=h,z0=x,W0=a,U0=v0,H0=Qr,G0=Ki,Y0=am,V0=pa,q0=Op,X0=Cr,$0=lm,K0=B,Q0=Wt,J0=wa,Z0=ui,t1=Oe,e1=W,r1=fi,n1=zi,i1=v,a1=gc,s1=lc,o1=tf,l1=MI,h1=Mg,c1=ee("iterator"),u1="URLSearchParams",d1=u1+"Iterator",p1=X0.set,f1=X0.getterFor(u1),g1=X0.getterFor(d1),v1=N0("fetch"),m1=N0("Request"),y1=N0("Headers"),b1=m1&&m1.prototype,w1=y1&&y1.prototype,x1=F0.TypeError,A1=F0.encodeURIComponent,_1=String.fromCharCode,k1=j0("String","fromCodePoint"),S1=parseInt,E1=z0("".charAt),M1=z0([].join),T1=z0([].push),C1=z0("".replace),P1=z0([].shift),I1=z0([].splice),R1=z0("".split),O1=z0("".slice),L1=z0(/./.exec),D1=/\+/g,F1=/^[0-9a-f]+$/i,N1=function(t,e){var r=O1(t,e,e+2);return L1(F1,r)?S1(r,16):NaN},j1=function(t){for(var e=0,r=128;r>0&&t&r;r>>=1)e++;return e},B1=function(t){var e=null;switch(t.length){case 1:e=t[0];break;case 2:e=(31&t[0])<<6|63&t[1];break;case 3:e=(15&t[0])<<12|(63&t[1])<<6|63&t[2];break;case 4:e=(7&t[0])<<18|(63&t[1])<<12|(63&t[2])<<6|63&t[3]}return e>1114111?null:e},z1=function(t){for(var e=(t=C1(t,D1," ")).length,r="",n=0;n<e;){var i=E1(t,n);if("%"===i){if("%"===E1(t,n+1)||n+3>e){r+="%",n++;continue}var a=N1(t,n+1);if(a!=a){r+=i,n++;continue}n+=2;var s=j1(a);if(0===s)i=_1(a);else{if(1===s||s>4){r+="�",n++;continue}for(var o=[a],l=1;l<s&&!(++n+3>e||"%"!==E1(t,n));){var h=N1(t,n+1);if(h!=h){n+=3;break}if(h>191||h<128)break;T1(o,h),n+=2,l++}if(o.length!==s){r+="�";continue}var c=B1(o);null===c?r+="�":i=k1(c)}}r+=i,n++}return r},W1=/[!'()~]|%20/g,U1={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},H1=function(t){return U1[t]},G1=function(t){return C1(A1(t),W1,H1)},Y1=q0((function(t,e){p1(this,{type:d1,target:f1(t).entries,index:0,kind:e})}),u1,(function(){var t=g1(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,o1(void 0,!0);var n=e[r];switch(t.kind){case"keys":return o1(n.key,!1);case"values":return o1(n.value,!1)}return o1([n.key,n.value],!1)}),!0),V1=function(t){this.entries=[],this.url=null,void 0!==t&&(e1(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===E1(t,0)?O1(t,1):t:r1(t)))};V1.prototype={type:u1,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,i,a,s,o,l=this.entries,h=s1(t);if(h)for(r=(e=a1(t,h)).next;!(n=B0(r,e)).done;){if(a=(i=a1(t1(n.value))).next,(s=B0(a,i)).done||(o=B0(a,i)).done||!B0(a,i).done)throw new x1("Expected sequence with length 2");T1(l,{key:r1(s.value),value:r1(o.value)})}else for(var c in t)Q0(t,c)&&T1(l,{key:c,value:r1(t[c])})},parseQuery:function(t){if(t)for(var e,r,n=this.entries,i=R1(t,"&"),a=0;a<i.length;)(e=i[a++]).length&&(r=R1(e,"="),T1(n,{key:z1(P1(r)),value:z1(M1(r,"="))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],T1(r,G1(t.key)+"="+G1(t.value));return M1(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var q1=function(){$0(this,X1);var t=p1(this,new V1(arguments.length>0?arguments[0]:void 0));W0||(this.size=t.entries.length)},X1=q1.prototype;if(Y0(X1,{append:function(t,e){var r=f1(this);l1(arguments.length,2),T1(r.entries,{key:r1(t),value:r1(e)}),W0||this.length++,r.updateURL()},delete:function(t){for(var e=f1(this),r=l1(arguments.length,1),n=e.entries,i=r1(t),a=r<2?void 0:arguments[1],s=void 0===a?a:r1(a),o=0;o<n.length;){var l=n[o];if(l.key!==i||void 0!==s&&l.value!==s)o++;else if(I1(n,o,1),void 0!==s)break}W0||(this.size=n.length),e.updateURL()},get:function(t){var e=f1(this).entries;l1(arguments.length,1);for(var r=r1(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=f1(this).entries;l1(arguments.length,1);for(var r=r1(t),n=[],i=0;i<e.length;i++)e[i].key===r&&T1(n,e[i].value);return n},has:function(t){for(var e=f1(this).entries,r=l1(arguments.length,1),n=r1(t),i=r<2?void 0:arguments[1],a=void 0===i?i:r1(i),s=0;s<e.length;){var o=e[s++];if(o.key===n&&(void 0===a||o.value===a))return!0}return!1},set:function(t,e){var r=f1(this);l1(arguments.length,1);for(var n,i=r.entries,a=!1,s=r1(t),o=r1(e),l=0;l<i.length;l++)(n=i[l]).key===s&&(a?I1(i,l--,1):(a=!0,n.value=o));a||T1(i,{key:s,value:o}),W0||(this.size=i.length),r.updateURL()},sort:function(){var t=f1(this);h1(t.entries,(function(t,e){return t.key>e.key?1:-1})),t.updateURL()},forEach:function(t){for(var e,r=f1(this).entries,n=J0(t,arguments.length>1?arguments[1]:void 0),i=0;i<r.length;)n((e=r[i++]).value,e.key,this)},keys:function(){return new Y1(this,"keys")},values:function(){return new Y1(this,"values")},entries:function(){return new Y1(this,"entries")}},{enumerable:!0}),H0(X1,c1,X1.entries,{name:"entries"}),H0(X1,"toString",(function(){return f1(this).serialize()}),{enumerable:!0}),W0&&G0(X1,"size",{get:function(){return f1(this).entries.length},configurable:!0,enumerable:!0}),V0(q1,u1),D0({global:!0,constructor:!0,forced:!U0},{URLSearchParams:q1}),!U0&&K0(y1)){var $1=z0(w1.has),K1=z0(w1.set),Q1=function(t){if(e1(t)){var e,r=t.body;if(Z0(r)===u1)return e=t.headers?new y1(t.headers):new y1,$1(e,"content-type")||K1(e,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),n1(t,{body:i1(0,r1(r)),headers:i1(0,e)})}return t};if(K0(v1)&&D0({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return v1(t,arguments.length>1?Q1(arguments[1]):{})}}),K0(m1)){var J1=function(t){return $0(this,b1),new m1(t,arguments.length>1?Q1(arguments[1]):{})};b1.constructor=J1,J1.prototype=b1,D0({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:J1})}}var Z1,t2=ri,e2=a,r2=v0,n2=r,i2=wa,a2=x,s2=Qr,o2=Ki,l2=lm,h2=Wt,c2=nC,u2=ep,d2=Ui,p2=cz.codeAt,f2=function(t){var e,r,n=[],i=P0(C0(I0(t),w0,"."),".");for(e=0;e<i.length;e++)r=i[e],T0(n,_0(b0,r)?"xn--"+L0(r):r);return M0(n,".")},g2=fi,v2=pa,m2=MI,y2={URLSearchParams:q1,getState:f1},b2=Cr,w2=b2.set,x2=b2.getterFor("URL"),A2=y2.URLSearchParams,_2=y2.getState,k2=n2.URL,S2=n2.TypeError,E2=n2.parseInt,M2=Math.floor,T2=Math.pow,C2=a2("".charAt),P2=a2(/./.exec),I2=a2([].join),R2=a2(1..toString),O2=a2([].pop),L2=a2([].push),D2=a2("".replace),F2=a2([].shift),N2=a2("".split),j2=a2("".slice),B2=a2("".toLowerCase),z2=a2([].unshift),W2="Invalid scheme",U2="Invalid host",H2="Invalid port",G2=/[a-z]/i,Y2=/[\d+-.a-z]/i,V2=/\d/,q2=/^0x/i,X2=/^[0-7]+$/,$2=/^\d+$/,K2=/^[\da-f]+$/i,Q2=/[\0\t\n\r #%/:<>?@[\\\]^|]/,J2=/[\0\t\n\r #/:<>?@[\\\]^|]/,Z2=/^[\u0000-\u0020]+/,t3=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,e3=/[\t\n\r]/g,r3=function(t){var e,r,n,i;if("number"==typeof t){for(e=[],r=0;r<4;r++)z2(e,t%256),t=M2(t/256);return I2(e,".")}if("object"==typeof t){for(e="",n=function(t){for(var e=null,r=1,n=null,i=0,a=0;a<8;a++)0!==t[a]?(i>r&&(e=n,r=i),n=null,i=0):(null===n&&(n=a),++i);return i>r?n:e}(t),r=0;r<8;r++)i&&0===t[r]||(i&&(i=!1),n===r?(e+=r?":":"::",i=!0):(e+=R2(t[r],16),r<7&&(e+=":")));return"["+e+"]"}return t},n3={},i3=c2({},n3,{" ":1,'"':1,"<":1,">":1,"`":1}),a3=c2({},i3,{"#":1,"?":1,"{":1,"}":1}),s3=c2({},a3,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),o3=function(t,e){var r=p2(t,0);return r>32&&r<127&&!h2(e,t)?t:encodeURIComponent(t)},l3={ftp:21,file:null,http:80,https:443,ws:80,wss:443},h3=function(t,e){var r;return 2===t.length&&P2(G2,C2(t,0))&&(":"===(r=C2(t,1))||!e&&"|"===r)},c3=function(t){var e;return t.length>1&&h3(j2(t,0,2))&&(2===t.length||"/"===(e=C2(t,2))||"\\"===e||"?"===e||"#"===e)},u3=function(t){return"."===t||"%2e"===B2(t)},d3={},p3={},f3={},g3={},v3={},m3={},y3={},b3={},w3={},x3={},A3={},_3={},k3={},S3={},E3={},M3={},T3={},C3={},P3={},I3={},R3={},O3=function(t,e,r){var n,i,a,s=g2(t);if(e){if(i=this.parse(s))throw new S2(i);this.searchParams=null}else{if(void 0!==r&&(n=new O3(r,!0)),i=this.parse(s,null,n))throw new S2(i);(a=_2(new A2)).bindURL(this),this.searchParams=a}};O3.prototype={type:"URL",parse:function(t,e,r){var n,i,a,s,o,l=this,h=e||d3,c=0,u="",d=!1,p=!1,f=!1;for(t=g2(t),e||(l.scheme="",l.username="",l.password="",l.host=null,l.port=null,l.path=[],l.query=null,l.fragment=null,l.cannotBeABaseURL=!1,t=D2(t,Z2,""),t=D2(t,t3,"$1")),t=D2(t,e3,""),n=u2(t);c<=n.length;){switch(i=n[c],h){case d3:if(!i||!P2(G2,i)){if(e)return W2;h=f3;continue}u+=B2(i),h=p3;break;case p3:if(i&&(P2(Y2,i)||"+"===i||"-"===i||"."===i))u+=B2(i);else{if(":"!==i){if(e)return W2;u="",h=f3,c=0;continue}if(e&&(l.isSpecial()!==h2(l3,u)||"file"===u&&(l.includesCredentials()||null!==l.port)||"file"===l.scheme&&!l.host))return;if(l.scheme=u,e)return void(l.isSpecial()&&l3[l.scheme]===l.port&&(l.port=null));u="","file"===l.scheme?h=S3:l.isSpecial()&&r&&r.scheme===l.scheme?h=g3:l.isSpecial()?h=b3:"/"===n[c+1]?(h=v3,c++):(l.cannotBeABaseURL=!0,L2(l.path,""),h=P3)}break;case f3:if(!r||r.cannotBeABaseURL&&"#"!==i)return W2;if(r.cannotBeABaseURL&&"#"===i){l.scheme=r.scheme,l.path=d2(r.path),l.query=r.query,l.fragment="",l.cannotBeABaseURL=!0,h=R3;break}h="file"===r.scheme?S3:m3;continue;case g3:if("/"!==i||"/"!==n[c+1]){h=m3;continue}h=w3,c++;break;case v3:if("/"===i){h=x3;break}h=C3;continue;case m3:if(l.scheme=r.scheme,i===Z1)l.username=r.username,l.password=r.password,l.host=r.host,l.port=r.port,l.path=d2(r.path),l.query=r.query;else if("/"===i||"\\"===i&&l.isSpecial())h=y3;else if("?"===i)l.username=r.username,l.password=r.password,l.host=r.host,l.port=r.port,l.path=d2(r.path),l.query="",h=I3;else{if("#"!==i){l.username=r.username,l.password=r.password,l.host=r.host,l.port=r.port,l.path=d2(r.path),l.path.length--,h=C3;continue}l.username=r.username,l.password=r.password,l.host=r.host,l.port=r.port,l.path=d2(r.path),l.query=r.query,l.fragment="",h=R3}break;case y3:if(!l.isSpecial()||"/"!==i&&"\\"!==i){if("/"!==i){l.username=r.username,l.password=r.password,l.host=r.host,l.port=r.port,h=C3;continue}h=x3}else h=w3;break;case b3:if(h=w3,"/"!==i||"/"!==C2(u,c+1))continue;c++;break;case w3:if("/"!==i&&"\\"!==i){h=x3;continue}break;case x3:if("@"===i){d&&(u="%40"+u),d=!0,a=u2(u);for(var g=0;g<a.length;g++){var v=a[g];if(":"!==v||f){var m=o3(v,s3);f?l.password+=m:l.username+=m}else f=!0}u=""}else if(i===Z1||"/"===i||"?"===i||"#"===i||"\\"===i&&l.isSpecial()){if(d&&""===u)return"Invalid authority";c-=u2(u).length+1,u="",h=A3}else u+=i;break;case A3:case _3:if(e&&"file"===l.scheme){h=M3;continue}if(":"!==i||p){if(i===Z1||"/"===i||"?"===i||"#"===i||"\\"===i&&l.isSpecial()){if(l.isSpecial()&&""===u)return U2;if(e&&""===u&&(l.includesCredentials()||null!==l.port))return;if(s=l.parseHost(u))return s;if(u="",h=T3,e)return;continue}"["===i?p=!0:"]"===i&&(p=!1),u+=i}else{if(""===u)return U2;if(s=l.parseHost(u))return s;if(u="",h=k3,e===_3)return}break;case k3:if(!P2(V2,i)){if(i===Z1||"/"===i||"?"===i||"#"===i||"\\"===i&&l.isSpecial()||e){if(""!==u){var y=E2(u,10);if(y>65535)return H2;l.port=l.isSpecial()&&y===l3[l.scheme]?null:y,u=""}if(e)return;h=T3;continue}return H2}u+=i;break;case S3:if(l.scheme="file","/"===i||"\\"===i)h=E3;else{if(!r||"file"!==r.scheme){h=C3;continue}switch(i){case Z1:l.host=r.host,l.path=d2(r.path),l.query=r.query;break;case"?":l.host=r.host,l.path=d2(r.path),l.query="",h=I3;break;case"#":l.host=r.host,l.path=d2(r.path),l.query=r.query,l.fragment="",h=R3;break;default:c3(I2(d2(n,c),""))||(l.host=r.host,l.path=d2(r.path),l.shortenPath()),h=C3;continue}}break;case E3:if("/"===i||"\\"===i){h=M3;break}r&&"file"===r.scheme&&!c3(I2(d2(n,c),""))&&(h3(r.path[0],!0)?L2(l.path,r.path[0]):l.host=r.host),h=C3;continue;case M3:if(i===Z1||"/"===i||"\\"===i||"?"===i||"#"===i){if(!e&&h3(u))h=C3;else if(""===u){if(l.host="",e)return;h=T3}else{if(s=l.parseHost(u))return s;if("localhost"===l.host&&(l.host=""),e)return;u="",h=T3}continue}u+=i;break;case T3:if(l.isSpecial()){if(h=C3,"/"!==i&&"\\"!==i)continue}else if(e||"?"!==i)if(e||"#"!==i){if(i!==Z1&&(h=C3,"/"!==i))continue}else l.fragment="",h=R3;else l.query="",h=I3;break;case C3:if(i===Z1||"/"===i||"\\"===i&&l.isSpecial()||!e&&("?"===i||"#"===i)){if(".."===(o=B2(o=u))||"%2e."===o||".%2e"===o||"%2e%2e"===o?(l.shortenPath(),"/"===i||"\\"===i&&l.isSpecial()||L2(l.path,"")):u3(u)?"/"===i||"\\"===i&&l.isSpecial()||L2(l.path,""):("file"===l.scheme&&!l.path.length&&h3(u)&&(l.host&&(l.host=""),u=C2(u,0)+":"),L2(l.path,u)),u="","file"===l.scheme&&(i===Z1||"?"===i||"#"===i))for(;l.path.length>1&&""===l.path[0];)F2(l.path);"?"===i?(l.query="",h=I3):"#"===i&&(l.fragment="",h=R3)}else u+=o3(i,a3);break;case P3:"?"===i?(l.query="",h=I3):"#"===i?(l.fragment="",h=R3):i!==Z1&&(l.path[0]+=o3(i,n3));break;case I3:e||"#"!==i?i!==Z1&&("'"===i&&l.isSpecial()?l.query+="%27":l.query+="#"===i?"%23":o3(i,n3)):(l.fragment="",h=R3);break;case R3:i!==Z1&&(l.fragment+=o3(i,i3))}c++}},parseHost:function(t){var e,r,n;if("["===C2(t,0)){if("]"!==C2(t,t.length-1))return U2;if(e=function(t){var e,r,n,i,a,s,o,l=[0,0,0,0,0,0,0,0],h=0,c=null,u=0,d=function(){return C2(t,u)};if(":"===d()){if(":"!==C2(t,1))return;u+=2,c=++h}for(;d();){if(8===h)return;if(":"!==d()){for(e=r=0;r<4&&P2(K2,d());)e=16*e+E2(d(),16),u++,r++;if("."===d()){if(0===r)return;if(u-=r,h>6)return;for(n=0;d();){if(i=null,n>0){if(!("."===d()&&n<4))return;u++}if(!P2(V2,d()))return;for(;P2(V2,d());){if(a=E2(d(),10),null===i)i=a;else{if(0===i)return;i=10*i+a}if(i>255)return;u++}l[h]=256*l[h]+i,2!=++n&&4!==n||h++}if(4!==n)return;break}if(":"===d()){if(u++,!d())return}else if(d())return;l[h++]=e}else{if(null!==c)return;u++,c=++h}}if(null!==c)for(s=h-c,h=7;0!==h&&s>0;)o=l[h],l[h--]=l[c+s-1],l[c+--s]=o;else if(8!==h)return;return l}(j2(t,1,-1)),!e)return U2;this.host=e}else if(this.isSpecial()){if(t=f2(t),P2(Q2,t))return U2;if(e=function(t){var e,r,n,i,a,s,o,l=N2(t,".");if(l.length&&""===l[l.length-1]&&l.length--,(e=l.length)>4)return t;for(r=[],n=0;n<e;n++){if(""===(i=l[n]))return t;if(a=10,i.length>1&&"0"===C2(i,0)&&(a=P2(q2,i)?16:8,i=j2(i,8===a?1:2)),""===i)s=0;else{if(!P2(10===a?$2:8===a?X2:K2,i))return t;s=E2(i,a)}L2(r,s)}for(n=0;n<e;n++)if(s=r[n],n===e-1){if(s>=T2(256,5-e))return null}else if(s>255)return null;for(o=O2(r),n=0;n<r.length;n++)o+=r[n]*T2(256,3-n);return o}(t),null===e)return U2;this.host=e}else{if(P2(J2,t))return U2;for(e="",r=u2(t),n=0;n<r.length;n++)e+=o3(r[n],n3);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"===this.scheme},includesCredentials:function(){return""!==this.username||""!==this.password},isSpecial:function(){return h2(l3,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"===this.scheme&&1===e&&h3(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,i=t.host,a=t.port,s=t.path,o=t.query,l=t.fragment,h=e+":";return null!==i?(h+="//",t.includesCredentials()&&(h+=r+(n?":"+n:"")+"@"),h+=r3(i),null!==a&&(h+=":"+a)):"file"===e&&(h+="//"),h+=t.cannotBeABaseURL?s[0]:s.length?"/"+I2(s,"/"):"",null!==o&&(h+="?"+o),null!==l&&(h+="#"+l),h},setHref:function(t){var e=this.parse(t);if(e)throw new S2(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"===t)try{return new L3(t.path[0]).origin}catch(t){return"null"}return"file"!==t&&this.isSpecial()?t+"://"+r3(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(g2(t)+":",d3)},getUsername:function(){return this.username},setUsername:function(t){var e=u2(g2(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<e.length;r++)this.username+=o3(e[r],s3)}},getPassword:function(){return this.password},setPassword:function(t){var e=u2(g2(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<e.length;r++)this.password+=o3(e[r],s3)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?r3(t):r3(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,A3)},getHostname:function(){var t=this.host;return null===t?"":r3(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,_3)},getPort:function(){var t=this.port;return null===t?"":g2(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""===(t=g2(t))?this.port=null:this.parse(t,k3))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+I2(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,T3))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""===(t=g2(t))?this.query=null:("?"===C2(t,0)&&(t=j2(t,1)),this.query="",this.parse(t,I3)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!==(t=g2(t))?("#"===C2(t,0)&&(t=j2(t,1)),this.fragment="",this.parse(t,R3)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var L3=function(t){var e=l2(this,D3),r=m2(arguments.length,1)>1?arguments[1]:void 0,n=w2(e,new O3(t,!1,r));e2||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},D3=L3.prototype,F3=function(t,e){return{get:function(){return x2(this)[t]()},set:e&&function(t){return x2(this)[e](t)},configurable:!0,enumerable:!0}};if(e2&&(o2(D3,"href",F3("serialize","setHref")),o2(D3,"origin",F3("getOrigin")),o2(D3,"protocol",F3("getProtocol","setProtocol")),o2(D3,"username",F3("getUsername","setUsername")),o2(D3,"password",F3("getPassword","setPassword")),o2(D3,"host",F3("getHost","setHost")),o2(D3,"hostname",F3("getHostname","setHostname")),o2(D3,"port",F3("getPort","setPort")),o2(D3,"pathname",F3("getPathname","setPathname")),o2(D3,"search",F3("getSearch","setSearch")),o2(D3,"searchParams",F3("getSearchParams")),o2(D3,"hash",F3("getHash","setHash"))),s2(D3,"toJSON",(function(){return x2(this).serialize()}),{enumerable:!0}),s2(D3,"toString",(function(){return x2(this).serialize()}),{enumerable:!0}),k2){var N3=k2.createObjectURL,j3=k2.revokeObjectURL;N3&&s2(L3,"createObjectURL",i2(N3,k2)),j3&&s2(L3,"revokeObjectURL",i2(j3,k2))}v2(L3,"URL"),t2({global:!0,constructor:!0,forced:!r2,sham:!e2},{URL:L3});var B3=ri,z3=i,W3=MI,U3=fi,H3=v0,G3=G("URL"),Y3=H3&&z3((function(){G3.canParse()})),V3=z3((function(){return 1!==G3.canParse.length}));B3({target:"URL",stat:!0,forced:!Y3||V3},{canParse:function(t){var e=W3(arguments.length,1),r=U3(t),n=e<2||void 0===arguments[1]?void 0:U3(arguments[1]);try{return!!new G3(r,n)}catch(t){return!1}}});var q3=ri,X3=MI,$3=fi,K3=v0,Q3=G("URL");q3({target:"URL",stat:!0,forced:!K3},{parse:function(t){var e=X3(arguments.length,1),r=$3(t),n=e<2||void 0===arguments[1]?void 0:$3(arguments[1]);try{return new Q3(r,n)}catch(t){return null}}});var J3=h;ri({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return J3(URL.prototype.toString,this)}});var Z3=Qr,t4=x,e4=fi,r4=MI,n4=URLSearchParams,i4=n4.prototype,a4=t4(i4.append),s4=t4(i4.delete),o4=t4(i4.forEach),l4=t4([].push),h4=new n4("a=1&a=2&b=3");h4.delete("a",1),h4.delete("b",void 0),h4+""!="a=2"&&Z3(i4,"delete",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return s4(this,t);var n=[];o4(this,(function(t,e){l4(n,{key:e,value:t})})),r4(e,1);for(var i,a=e4(t),s=e4(r),o=0,l=0,h=!1,c=n.length;o<c;)i=n[o++],h||i.key===a?(h=!0,s4(this,i.key)):l++;for(;l<c;)(i=n[l++]).key===a&&i.value===s||a4(this,i.key,i.value)}),{enumerable:!0,unsafe:!0});var c4=Qr,u4=x,d4=fi,p4=MI,f4=URLSearchParams,g4=f4.prototype,v4=u4(g4.getAll),m4=u4(g4.has),y4=new f4("a=1");!y4.has("a",2)&&y4.has("a",void 0)||c4(g4,"has",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return m4(this,t);var n=v4(this,t);p4(e,1);for(var i=d4(r),a=0;a<n.length;)if(n[a++]===i)return!0;return!1}),{enumerable:!0,unsafe:!0});var b4=a,w4=x,x4=Ki,A4=URLSearchParams.prototype,_4=w4(A4.forEach);b4&&!("size"in A4)&&x4(A4,"size",{get:function(){var t=0;return _4(this,(function(){t++})),t},configurable:!0,enumerable:!0});!function(t){var e=function(t){var e,r=Object.prototype,n=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},s=a.iterator||"@@iterator",o=a.asyncIterator||"@@asyncIterator",l=a.toStringTag||"@@toStringTag";function h(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{h({},"")}catch(t){h=function(t,e,r){return t[e]=r}}function c(t,e,r,n){var a=e&&e.prototype instanceof m?e:m,s=Object.create(a.prototype),o=new P(n||[]);return i(s,"_invoke",{value:E(t,r,o)}),s}function u(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var d="suspendedStart",p="suspendedYield",f="executing",g="completed",v={};function m(){}function y(){}function b(){}var w={};h(w,s,(function(){return this}));var x=Object.getPrototypeOf,A=x&&x(x(I([])));A&&A!==r&&n.call(A,s)&&(w=A);var _=b.prototype=m.prototype=Object.create(w);function k(t){["next","throw","return"].forEach((function(e){h(t,e,(function(t){return this._invoke(e,t)}))}))}function S(t,e){function r(i,a,s,o){var l=u(t[i],t,a);if("throw"!==l.type){var h=l.arg,c=h.value;return c&&"object"==typeof c&&n.call(c,"__await")?e.resolve(c.__await).then((function(t){r("next",t,s,o)}),(function(t){r("throw",t,s,o)})):e.resolve(c).then((function(t){h.value=t,s(h)}),(function(t){return r("throw",t,s,o)}))}o(l.arg)}var a;i(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,i){r(t,n,e,i)}))}return a=a?a.then(i,i):i()}})}function E(t,e,r){var n=d;return function(i,a){if(n===f)throw new Error("Generator is already running");if(n===g){if("throw"===i)throw a;return R()}for(r.method=i,r.arg=a;;){var s=r.delegate;if(s){var o=M(s,r);if(o){if(o===v)continue;return o}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===d)throw n=g,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=f;var l=u(t,e,r);if("normal"===l.type){if(n=r.done?g:p,l.arg===v)continue;return{value:l.arg,done:r.done}}"throw"===l.type&&(n=g,r.method="throw",r.arg=l.arg)}}}function M(t,r){var n=r.method,i=t.iterator[n];if(i===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,M(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var a=u(i,t.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,v;var s=a.arg;return s?s.done?(r[t.resultName]=s.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):s:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function C(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function P(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(t){if(t){var r=t[s];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,a=function r(){for(;++i<t.length;)if(n.call(t,i))return r.value=t[i],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}return{next:R}}function R(){return{value:e,done:!0}}return y.prototype=b,i(_,"constructor",{value:b,configurable:!0}),i(b,"constructor",{value:y,configurable:!0}),y.displayName=h(b,l,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===y||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,h(t,l,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},k(S.prototype),h(S.prototype,o,(function(){return this})),t.AsyncIterator=S,t.async=function(e,r,n,i,a){void 0===a&&(a=Promise);var s=new S(c(e,r,n,i),a);return t.isGeneratorFunction(r)?s:s.next().then((function(t){return t.done?t.value:s.next()}))},k(_),h(_,l,"Generator"),h(_,s,(function(){return this})),h(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=I,P.prototype={constructor:P,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(C),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function i(n,i){return o.type="throw",o.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var a=this.tryEntries.length-1;a>=0;--a){var s=this.tryEntries[a],o=s.completion;if("root"===s.tryLoc)return i("end");if(s.tryLoc<=this.prev){var l=n.call(s,"catchLoc"),h=n.call(s,"finallyLoc");if(l&&h){if(this.prev<s.catchLoc)return i(s.catchLoc,!0);if(this.prev<s.finallyLoc)return i(s.finallyLoc)}else if(l){if(this.prev<s.catchLoc)return i(s.catchLoc,!0)}else{if(!h)throw new Error("try statement without catch or finally");if(this.prev<s.finallyLoc)return i(s.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var a=i;break}}a&&("break"===t||"continue"===t)&&a.tryLoc<=e&&e<=a.finallyLoc&&(a=null);var s=a?a.completion:{};return s.type=t,s.arg=e,a?(this.method="next",this.next=a.finallyLoc,v):this.complete(s)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),C(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;C(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:I(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}({exports:{}}),((t,e)=>{var r,n,i,a;(null!==(e=(t=Path2D.prototype).roundRect)&&void 0!==e||(t.roundRect=s),globalThis.CanvasRenderingContext2D)&&(null!==(n=(r=globalThis.CanvasRenderingContext2D.prototype).roundRect)&&void 0!==n||(r.roundRect=s));globalThis.OffscreenCanvasRenderingContext2D&&(null!==(a=(i=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect)&&void 0!==a||(i.roundRect=s));function s(t,e,r,n,i){if([t,e,r,n].every((t=>Number.isFinite(t)))){var a,s,l,h;if(i=function(t){var e=typeof t;if("undefined"===e||null===t)return[0];if("function"===e)return[NaN];if("object"===e)return"function"==typeof t[Symbol.iterator]?[...t].map((t=>{var e=typeof t;return"undefined"===e||null===t?0:"function"===e?NaN:"object"===e?d(t):p(t)})):[d(t)];return[p(t)]}(i),4===i.length)a=f(i[0]),s=f(i[1]),l=f(i[2]),h=f(i[3]);else if(3===i.length)a=f(i[0]),s=f(i[1]),h=f(i[1]),l=f(i[2]);else if(2===i.length)a=f(i[0]),l=f(i[0]),s=f(i[1]),h=f(i[1]);else{if(1!==i.length)throw new RangeError("".concat(o(this)," ").concat(i.length," is not a valid size for radii sequence."));a=f(i[0]),s=f(i[0]),l=f(i[0]),h=f(i[0])}var c=[a,s,l,h],u=c.find((t=>{var{x:e,y:r}=t;return e<0||r<0}));if((null==u?void 0:u.x)<0?u.x:null==u||u.y,!c.some((t=>{var{x:e,y:r}=t;return!Number.isFinite(e)||!Number.isFinite(r)}))){if(u)throw new RangeError("".concat(o(this)," Radius value ").concat(u," is negative."));!function(t){var[e,i,a,s]=t,o=[Math.abs(r)/(e.x+i.x),Math.abs(n)/(i.y+a.y),Math.abs(r)/(a.x+s.x),Math.abs(n)/(e.y+s.y)],l=Math.min(...o);if(l<=1)for(var h of t)h.x*=l,h.y*=l}(c),r<0&&n<0?(this.moveTo(t-a.x,e),this.ellipse(t+r+s.x,e-s.y,s.x,s.y,0,1.5*-Math.PI,-Math.PI),this.ellipse(t+r+l.x,e+n+l.y,l.x,l.y,0,-Math.PI,-Math.PI/2),this.ellipse(t-h.x,e+n+h.y,h.x,h.y,0,-Math.PI/2,0),this.ellipse(t-a.x,e-a.y,a.x,a.y,0,0,-Math.PI/2)):r<0?(this.moveTo(t-a.x,e),this.ellipse(t+r+s.x,e+s.y,s.x,s.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(t+r+l.x,e+n-l.y,l.x,l.y,0,-Math.PI,1.5*-Math.PI,1),this.ellipse(t-h.x,e+n-h.y,h.x,h.y,0,Math.PI/2,0,1),this.ellipse(t-a.x,e+a.y,a.x,a.y,0,0,-Math.PI/2,1)):n<0?(this.moveTo(t+a.x,e),this.ellipse(t+r-s.x,e-s.y,s.x,s.y,0,Math.PI/2,0,1),this.ellipse(t+r-l.x,e+n+l.y,l.x,l.y,0,0,-Math.PI/2,1),this.ellipse(t+h.x,e+n+h.y,h.x,h.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(t+a.x,e-a.y,a.x,a.y,0,-Math.PI,1.5*-Math.PI,1)):(this.moveTo(t+a.x,e),this.ellipse(t+r-s.x,e+s.y,s.x,s.y,0,-Math.PI/2,0),this.ellipse(t+r-l.x,e+n-l.y,l.x,l.y,0,0,Math.PI/2),this.ellipse(t+h.x,e+n-h.y,h.x,h.y,0,Math.PI/2,Math.PI),this.ellipse(t+a.x,e+a.y,a.x,a.y,0,Math.PI,1.5*Math.PI)),this.closePath(),this.moveTo(t,e)}}function d(t){var{x:e,y:r,z:n,w:i}=t;return{x:e,y:r,z:n,w:i}}function p(t){return+t}function f(t){var e,r,n=p(t);return Number.isFinite(n)?{x:n,y:n}:Object(t)===t?{x:p(null!==(e=t.x)&&void 0!==e?e:0),y:p(null!==(r=t.y)&&void 0!==r?r:0)}:{x:NaN,y:NaN}}}function o(t){return"Failed to execute 'roundRect' on '".concat(function(t){return Object(t)===t&&t instanceof Path2D?"Path2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(null==t?void 0:t.constructor.name)||t}(t),"':")}})();var k4="done";function S4(t,e){return t===e||t!=t&&e!=e}function E4(t,e){for(var r=t.length;r--;)if(S4(t[r][0],e))return r;return-1}"function"!=typeof Object.assign&&(Object.assign=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1;r<arguments.length;r++){var n=arguments[r];if(null!=n)for(var i in n)n.hasOwnProperty(i)&&(e[i]=n[i])}return e}),"function"!=typeof Object.values&&(Object.values=function(t){let e=[];for(let r in t)e.push(t[r]);return e}),"function"!=typeof Object.keys&&(Object.values=function(t){let e=[];for(let r in t)e.push(r);return e}),"undefined"!=typeof CanvasRenderingContext2D&&null==CanvasRenderingContext2D.prototype.ellipse&&(CanvasRenderingContext2D.prototype.ellipse=function(t,e,r,n,i,a,s,o){this.save(),this.translate(t,e),this.rotate(i),this.translate(-r,-n),this.scale(r,n),this.arc(1,1,1,a,s,o),this.restore()}),function(){for(var t=0,e=["ms","moz","webkit","o"],r=0;r<e.length&&!window.requestAnimationFrame;++r)window.requestAnimationFrame=window[e[r]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e[r]+"CancelAnimationFrame"]||window[e[r]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(console.warn("requestAnimationFrame not supported"),window.requestAnimationFrame=function(e,r){var n=performance.now(),i=Math.max(0,33-(n-t)),a=window.setTimeout((function(){e(n+i)}),i);return t=n+i,a}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(t){clearTimeout(t)})}(),String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t});var M4=Array.prototype.splice;function T4(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}T4.prototype.clear=function(){this.__data__=[],this.size=0},T4.prototype.delete=function(t){var e=this.__data__,r=E4(e,t);return!(r<0)&&(r==e.length-1?e.pop():M4.call(e,r,1),--this.size,!0)},T4.prototype.get=function(t){var e=this.__data__,r=E4(e,t);return r<0?void 0:e[r][1]},T4.prototype.has=function(t){return E4(this.__data__,t)>-1},T4.prototype.set=function(t,e){var r=this.__data__,n=E4(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this};var C4="object"==typeof global&&global&&global.Object===Object&&global,P4="object"==typeof self&&self&&self.Object===Object&&self,I4=C4||P4||Function("return this")(),R4=I4.Symbol,O4=Object.prototype,L4=O4.hasOwnProperty,D4=O4.toString,F4=R4?R4.toStringTag:void 0;var N4=Object.prototype.toString;var j4=R4?R4.toStringTag:void 0;function B4(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":j4&&j4 in Object(t)?function(t){var e=L4.call(t,F4),r=t[F4];try{t[F4]=void 0;var n=!0}catch(t){}var i=D4.call(t);return n&&(e?t[F4]=r:delete t[F4]),i}(t):function(t){return N4.call(t)}(t)}function z4(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function W4(t){if(!z4(t))return!1;var e=B4(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e}var U4=I4["__core-js_shared__"],H4=function(){var t=/[^.]+$/.exec(U4&&U4.keys&&U4.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}();var G4=Function.prototype.toString;function Y4(t){if(null!=t){try{return G4.call(t)}catch(t){}try{return t+""}catch(t){}}return""}var V4=/^\[object .+?Constructor\]$/,q4=Function.prototype,X4=Object.prototype,$4=q4.toString,K4=X4.hasOwnProperty,Q4=RegExp("^"+$4.call(K4).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function J4(t){return!(!z4(t)||(e=t,H4&&H4 in e))&&(W4(t)?Q4:V4).test(Y4(t));var e}function Z4(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return J4(r)?r:void 0}var t5=Z4(I4,"Map"),e5=Z4(Object,"create");var r5=Object.prototype.hasOwnProperty;var n5=Object.prototype.hasOwnProperty;function i5(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function a5(t,e){var r=t.__data__;return function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}(e)?r["string"==typeof e?"string":"hash"]:r.map}function s5(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}i5.prototype.clear=function(){this.__data__=e5?e5(null):{},this.size=0},i5.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},i5.prototype.get=function(t){var e=this.__data__;if(e5){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return r5.call(e,t)?e[t]:void 0},i5.prototype.has=function(t){var e=this.__data__;return e5?void 0!==e[t]:n5.call(e,t)},i5.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=e5&&void 0===e?"__lodash_hash_undefined__":e,this},s5.prototype.clear=function(){this.size=0,this.__data__={hash:new i5,map:new(t5||T4),string:new i5}},s5.prototype.delete=function(t){var e=a5(this,t).delete(t);return this.size-=e?1:0,e},s5.prototype.get=function(t){return a5(this,t).get(t)},s5.prototype.has=function(t){return a5(this,t).has(t)},s5.prototype.set=function(t,e){var r=a5(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this};function o5(t){var e=this.__data__=new T4(t);this.size=e.size}o5.prototype.clear=function(){this.__data__=new T4,this.size=0},o5.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},o5.prototype.get=function(t){return this.__data__.get(t)},o5.prototype.has=function(t){return this.__data__.has(t)},o5.prototype.set=function(t,e){var r=this.__data__;if(r instanceof T4){var n=r.__data__;if(!t5||n.length<199)return n.push([t,e]),this.size=++r.size,this;r=this.__data__=new s5(n)}return r.set(t,e),this.size=r.size,this};function l5(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new s5;++e<r;)this.add(t[e])}function h5(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1}function c5(t,e){return t.has(e)}l5.prototype.add=l5.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},l5.prototype.has=function(t){return this.__data__.has(t)};function u5(t,e,r,n,i,a){var s=1&r,o=t.length,l=e.length;if(o!=l&&!(s&&l>o))return!1;var h=a.get(t),c=a.get(e);if(h&&c)return h==e&&c==t;var u=-1,d=!0,p=2&r?new l5:void 0;for(a.set(t,e),a.set(e,t);++u<o;){var f=t[u],g=e[u];if(n)var v=s?n(g,f,u,e,t,a):n(f,g,u,t,e,a);if(void 0!==v){if(v)continue;d=!1;break}if(p){if(!h5(e,(function(t,e){if(!c5(p,e)&&(f===t||i(f,t,r,n,a)))return p.push(e)}))){d=!1;break}}else if(f!==g&&!i(f,g,r,n,a)){d=!1;break}}return a.delete(t),a.delete(e),d}var d5=I4.Uint8Array;function p5(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r}function f5(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r}var g5=R4?R4.prototype:void 0,v5=g5?g5.valueOf:void 0;function m5(t,e){for(var r=-1,n=e.length,i=t.length;++r<n;)t[i+r]=e[r];return t}var y5=Array.isArray;function b5(t,e,r){var n=e(t);return y5(t)?n:m5(n,r(t))}function w5(){return[]}var x5=Object.prototype.propertyIsEnumerable,A5=Object.getOwnPropertySymbols,_5=A5?function(t){return null==t?[]:(t=Object(t),function(t,e){for(var r=-1,n=null==t?0:t.length,i=0,a=[];++r<n;){var s=t[r];e(s,r,t)&&(a[i++]=s)}return a}(A5(t),(function(e){return x5.call(t,e)})))}:w5,k5=_5;function S5(t){return null!=t&&"object"==typeof t}function E5(t){return S5(t)&&"[object Arguments]"==B4(t)}var M5=Object.prototype,T5=M5.hasOwnProperty,C5=M5.propertyIsEnumerable,P5=E5(function(){return arguments}())?E5:function(t){return S5(t)&&T5.call(t,"callee")&&!C5.call(t,"callee")},I5=P5;var R5="object"==typeof exports&&exports&&!exports.nodeType&&exports,O5=R5&&"object"==typeof module&&module&&!module.nodeType&&module,L5=O5&&O5.exports===R5?I4.Buffer:void 0,D5=(L5?L5.isBuffer:void 0)||function(){return!1},F5=/^(?:0|[1-9]\d*)$/;function N5(t,e){var r=typeof t;return!!(e=null==e?9007199254740991:e)&&("number"==r||"symbol"!=r&&F5.test(t))&&t>-1&&t%1==0&&t<e}function j5(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991}var B5={};function z5(t){return function(e){return t(e)}}B5["[object Float32Array]"]=B5["[object Float64Array]"]=B5["[object Int8Array]"]=B5["[object Int16Array]"]=B5["[object Int32Array]"]=B5["[object Uint8Array]"]=B5["[object Uint8ClampedArray]"]=B5["[object Uint16Array]"]=B5["[object Uint32Array]"]=!0,B5["[object Arguments]"]=B5["[object Array]"]=B5["[object ArrayBuffer]"]=B5["[object Boolean]"]=B5["[object DataView]"]=B5["[object Date]"]=B5["[object Error]"]=B5["[object Function]"]=B5["[object Map]"]=B5["[object Number]"]=B5["[object Object]"]=B5["[object RegExp]"]=B5["[object Set]"]=B5["[object String]"]=B5["[object WeakMap]"]=!1;var W5="object"==typeof exports&&exports&&!exports.nodeType&&exports,U5=W5&&"object"==typeof module&&module&&!module.nodeType&&module,H5=U5&&U5.exports===W5&&C4.process,G5=function(){try{var t=U5&&U5.require&&U5.require("util").types;return t||H5&&H5.binding&&H5.binding("util")}catch(t){}}(),Y5=G5&&G5.isTypedArray,V5=Y5?z5(Y5):function(t){return S5(t)&&j5(t.length)&&!!B5[B4(t)]},q5=V5,X5=Object.prototype.hasOwnProperty;function $5(t,e){var r=y5(t),n=!r&&I5(t),i=!r&&!n&&D5(t),a=!r&&!n&&!i&&q5(t),s=r||n||i||a,o=s?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],l=o.length;for(var h in t)!e&&!X5.call(t,h)||s&&("length"==h||i&&("offset"==h||"parent"==h)||a&&("buffer"==h||"byteLength"==h||"byteOffset"==h)||N5(h,l))||o.push(h);return o}var K5=Object.prototype;function Q5(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||K5)}function J5(t,e){return function(r){return t(e(r))}}var Z5=J5(Object.keys,Object),t6=Object.prototype.hasOwnProperty;function e6(t){if(!Q5(t))return Z5(t);var e=[];for(var r in Object(t))t6.call(t,r)&&"constructor"!=r&&e.push(r);return e}function r6(t){return null!=t&&j5(t.length)&&!W4(t)}function n6(t){return r6(t)?$5(t):e6(t)}function i6(t){return b5(t,n6,k5)}var a6=Object.prototype.hasOwnProperty;var s6=Z4(I4,"DataView"),o6=Z4(I4,"Promise"),l6=Z4(I4,"Set"),h6=Z4(I4,"WeakMap"),c6="[object Map]",u6="[object Promise]",d6="[object Set]",p6="[object WeakMap]",f6="[object DataView]",g6=Y4(s6),v6=Y4(t5),m6=Y4(o6),y6=Y4(l6),b6=Y4(h6),w6=B4;(s6&&w6(new s6(new ArrayBuffer(1)))!=f6||t5&&w6(new t5)!=c6||o6&&w6(o6.resolve())!=u6||l6&&w6(new l6)!=d6||h6&&w6(new h6)!=p6)&&(w6=function(t){var e=B4(t),r="[object Object]"==e?t.constructor:void 0,n=r?Y4(r):"";if(n)switch(n){case g6:return f6;case v6:return c6;case m6:return u6;case y6:return d6;case b6:return p6}return e});var x6=w6,A6="[object Arguments]",_6="[object Array]",k6="[object Object]",S6=Object.prototype.hasOwnProperty;function E6(t,e,r,n,i,a){var s=y5(t),o=y5(e),l=s?_6:x6(t),h=o?_6:x6(e),c=(l=l==A6?k6:l)==k6,u=(h=h==A6?k6:h)==k6,d=l==h;if(d&&D5(t)){if(!D5(e))return!1;s=!0,c=!1}if(d&&!c)return a||(a=new o5),s||q5(t)?u5(t,e,r,n,i,a):function(t,e,r,n,i,a,s){switch(r){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":return!(t.byteLength!=e.byteLength||!a(new d5(t),new d5(e)));case"[object Boolean]":case"[object Date]":case"[object Number]":return S4(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var o=p5;case"[object Set]":var l=1&n;if(o||(o=f5),t.size!=e.size&&!l)return!1;var h=s.get(t);if(h)return h==e;n|=2,s.set(t,e);var c=u5(o(t),o(e),n,i,a,s);return s.delete(t),c;case"[object Symbol]":if(v5)return v5.call(t)==v5.call(e)}return!1}(t,e,l,r,n,i,a);if(!(1&r)){var p=c&&S6.call(t,"__wrapped__"),f=u&&S6.call(e,"__wrapped__");if(p||f){var g=p?t.value():t,v=f?e.value():e;return a||(a=new o5),i(g,v,r,n,a)}}return!!d&&(a||(a=new o5),function(t,e,r,n,i,a){var s=1&r,o=i6(t),l=o.length;if(l!=i6(e).length&&!s)return!1;for(var h=l;h--;){var c=o[h];if(!(s?c in e:a6.call(e,c)))return!1}var u=a.get(t),d=a.get(e);if(u&&d)return u==e&&d==t;var p=!0;a.set(t,e),a.set(e,t);for(var f=s;++h<l;){var g=t[c=o[h]],v=e[c];if(n)var m=s?n(v,g,c,e,t,a):n(g,v,c,t,e,a);if(!(void 0===m?g===v||i(g,v,r,n,a):m)){p=!1;break}f||(f="constructor"==c)}if(p&&!f){var y=t.constructor,b=e.constructor;y==b||!("constructor"in t)||!("constructor"in e)||"function"==typeof y&&y instanceof y&&"function"==typeof b&&b instanceof b||(p=!1)}return a.delete(t),a.delete(e),p}(t,e,r,n,i,a))}function M6(t,e,r,n,i){return t===e||(null==t||null==e||!S5(t)&&!S5(e)?t!=t&&e!=e:E6(t,e,r,n,M6,i))}function T6(t,e){return M6(t,e)}var C6=function(){try{var t=Z4(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();function P6(t,e,r){"__proto__"==e&&C6?C6(t,e,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[e]=r}var I6=Object.prototype.hasOwnProperty;function R6(t,e,r){var n=t[e];I6.call(t,e)&&S4(n,r)&&(void 0!==r||e in t)||P6(t,e,r)}function O6(t,e,r,n){var i=!r;r||(r={});for(var a=-1,s=e.length;++a<s;){var o=e[a],l=n?n(r[o],t[o],o,r,t):void 0;void 0===l&&(l=t[o]),i?P6(r,o,l):R6(r,o,l)}return r}function L6(t){return t}function D6(t,e,r){switch(r.length){case 0:return t.call(e);case 1:return t.call(e,r[0]);case 2:return t.call(e,r[0],r[1]);case 3:return t.call(e,r[0],r[1],r[2])}return t.apply(e,r)}var F6=Math.max;function N6(t){return function(){return t}}var j6=C6?function(t,e){return C6(t,"toString",{configurable:!0,enumerable:!1,value:N6(e),writable:!0})}:L6,B6=Date.now;var z6=function(t){var e=0,r=0;return function(){var n=B6(),i=16-(n-r);if(r=n,i>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(j6),W6=z6;function U6(t,e){return W6(function(t,e,r){return e=F6(void 0===e?t.length-1:e,0),function(){for(var n=arguments,i=-1,a=F6(n.length-e,0),s=Array(a);++i<a;)s[i]=n[e+i];i=-1;for(var o=Array(e+1);++i<e;)o[i]=n[i];return o[e]=r(s),D6(t,this,o)}}(t,e,L6),t+"")}function H6(t,e,r){if(!z4(r))return!1;var n=typeof e;return!!("number"==n?r6(r)&&N5(e,r.length):"string"==n&&e in r)&&S4(r[e],t)}var G6=Object.prototype.hasOwnProperty;function Y6(t){if(!z4(t))return function(t){var e=[];if(null!=t)for(var r in Object(t))e.push(r);return e}(t);var e=Q5(t),r=[];for(var n in t)("constructor"!=n||!e&&G6.call(t,n))&&r.push(n);return r}function V6(t){return r6(t)?$5(t,!0):Y6(t)}var q6,X6=(q6=function(t,e,r,n){O6(e,V6(e),t,n)},U6((function(t,e){var r=-1,n=e.length,i=n>1?e[n-1]:void 0,a=n>2?e[2]:void 0;for(i=q6.length>3&&"function"==typeof i?(n--,i):void 0,a&&H6(e[0],e[1],a)&&(i=n<3?void 0:i,n=1),t=Object(t);++r<n;){var s=e[r];s&&q6(t,s,r,i)}return t}))),$6=X6,K6=J5(Object.getPrototypeOf,Object),Q6=Function.prototype,J6=Object.prototype,Z6=Q6.toString,t8=J6.hasOwnProperty,e8=Z6.call(Object);function r8(t){if(!S5(t))return!1;var e=B4(t);return"[object Error]"==e||"[object DOMException]"==e||"string"==typeof t.message&&"string"==typeof t.name&&!function(t){if(!S5(t)||"[object Object]"!=B4(t))return!1;var e=K6(t);if(null===e)return!0;var r=t8.call(e,"constructor")&&e.constructor;return"function"==typeof r&&r instanceof r&&Z6.call(r)==e8}(t)}var n8=U6((function(t,e){try{return D6(t,void 0,e)}catch(t){return r8(t)?t:new Error(t)}})),i8=n8;function a8(t,e){for(var r=-1,n=null==t?0:t.length,i=Array(n);++r<n;)i[r]=e(t[r],r,t);return i}var s8=Object.prototype,o8=s8.hasOwnProperty;function l8(t,e,r,n){return void 0===t||S4(t,s8[r])&&!o8.call(n,r)?e:t}var h8={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};function c8(t){return"\\"+h8[t]}var u8=/<%=([\s\S]+?)%>/g;var d8,p8=(d8={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},function(t){return null==d8?void 0:d8[t]}),f8=p8;function g8(t){return"symbol"==typeof t||S5(t)&&"[object Symbol]"==B4(t)}var v8=R4?R4.prototype:void 0,m8=v8?v8.toString:void 0;function y8(t){if("string"==typeof t)return t;if(y5(t))return a8(t,y8)+"";if(g8(t))return m8?m8.call(t):"";var e=t+"";return"0"==e&&1/t==-1/0?"-0":e}function b8(t){return null==t?"":y8(t)}var w8=/[&<>"']/g,x8=RegExp(w8.source);var A8={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:u8,variable:"",imports:{_:{escape:function(t){return(t=b8(t))&&x8.test(t)?t.replace(w8,f8):t}}}},_8=/\b__p \+= '';/g,k8=/\b(__p \+=) '' \+/g,S8=/(__e\(.*?\)|\b__t\)) \+\n'';/g,E8=/[()=,{}\[\]\/\s]/,M8=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,T8=/($^)/,C8=/['\n\r\u2028\u2029\\]/g,P8=Object.prototype.hasOwnProperty;var I8={linear:function(t){return t},quad:function(t){return Math.pow(t,2)},circ:function(t){return 1-Math.sin(Math.acos(t))},back:function(t,e={x:1.5}){return Math.pow(t,2)*((e.x+1)*t-e.x)},bounce:function(t){for(let e=0,r=1;;e+=r,r/=2)if(t>=(7-4*e)/11)return-Math.pow((11-6*e-11*t)/4,2)+Math.pow(r,2)},elastic:function(t,e={x:1.5}){return Math.pow(2,10*(t-1))*Math.cos(20*Math.PI*e.x/3*t)}};class R8{constructor(t,e){this.client=t,this.config=e,this._started=!1;var{delta:r="linear",options:n,ease:i}=this.config;"string"==typeof r&&(r=I8[r]),this.delta="out"==i?function(t,e){return function(r){return 1-t(1-r,e)}}(r,n):"inout"==i?function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(r,n):r,this.init()}dispose(){this.stop(),delete this.client}init(){}start(){if(!this._started){var{duration:t=2e3,delay:e=0,repeat:r=!1,interval:n=0}=this.config;this._started=!0;var i=0,a=0,s=()=>{if(this._raf=null,this._timeout=null,!this._started)return;0==i&&(i=performance.now(),this.client?.touch());let o=performance.now()-i,l=Math.max((o-e)%(t+n),0)/t,h=n<=0&&a>l;if(a=l,l>=1||h){if(this.step(1),this.client&&this.client.invalidate(),!r||!this._started)return this.stop(),void(i=0);if(n>0)return void(this._timeout=setTimeout((()=>{this.step(0),this.client&&this.client.invalidate(),this._timeout=setTimeout(s,n/2)}),n/2))}else this.step(this.delta(l)),this.client&&this.client.invalidate();this._raf=requestAnimationFrame(s)};this._raf=requestAnimationFrame(s)}}stop(){this._raf&&cancelAnimationFrame(this._raf),this._timeout&&clearTimeout(this._timeout),this._raf=null,this._timeout=null,this._started=!1}get started(){return this._started}set started(t){this.started!=!!t&&(t?this.start():this.stop())}}var O8={rotation:class extends R8{step(t){var{theta:e=6.28}=this.config;this.client.delta("theta",t*e)}},vibration:class extends R8{step(t){var{theta:e=.2617993877991494}=this.config,r=4*e,n=t*r;t<1/4?n*=-1:t<3/4?n-=2*e:n=r-n,this.client.delta("theta",n)}},heartbeat:class extends R8{step(t){var e,{scale:r=1.3}=this.config,n=2*(r-1);e=t<.5?1+n*t:1+(1-t)*n,this.client.delta("sx",e),this.client.delta("sy",e)}},moving:class extends R8{step(t){var{x:e=0,y:r=0}=this.config;this.client.delta("tx",t*e),this.client.delta("ty",t*r)}},outline:class extends R8{step(t){const{rideOn:e}=this.config,r=this.client;if(!e||!r||!r.root)return;const n=r.root.findById(e);if(!n)return;const{tx:i,ty:a}=r.delta(),s=n.outline(t),o=r.center,l=r.transcoordS2T(o.x,o.y);n&&(r.delta("tx",s.x-l.x+i),r.delta("ty",s.y-l.y+a))}},fade:class extends R8{step(t){var e,{startAlpha:r=1,endAlpha:n=0}=this.config,i=Math.max(Math.min(r,n,1),0),a=2*(Math.min(Math.max(r,n,1),1)-i);e=t<.5?a*t:(1-t)*a,this.client.delta("fade",e)}}};function L8(t,e){var r=O8[e.type];return r?new r(t,e):null}function D8(t){var{duration:e=1e3,delay:r=30,step:n,delta:i,ease:a,options:s,repeat:o=!1}=t;"string"==typeof i&&(i=I8[i]),"out"==a?i=function(t,e){return function(r){return 1-t(1-r,e)}}(i,s):"inout"==a&&(i=function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(i,s));var l=!1;return{start:function(){if(l)return this;l=!0;var t=0,r=()=>{if(l){0==t&&(t=performance.now());var a=(performance.now()-t)/e,h=o?a%1:Math.min(a,1);n(i(h,s)),!(a>=1)||o&&l||(this.stop(),t=0),l&&requestAnimationFrame(r)}};return requestAnimationFrame(r),this},stop:function(){return l=!1,this}}}var F8="object"==typeof exports&&exports&&!exports.nodeType&&exports,N8=F8&&"object"==typeof module&&module&&!module.nodeType&&module,j8=N8&&N8.exports===F8?I4.Buffer:void 0,B8=j8?j8.allocUnsafe:void 0;var z8=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)m5(e,k5(t)),t=K6(t);return e}:w5,W8=z8;function U8(t){return b5(t,V6,W8)}var H8=Object.prototype.hasOwnProperty;function G8(t){var e=new t.constructor(t.byteLength);return new d5(e).set(new d5(t)),e}var Y8=/\w*$/;var V8=R4?R4.prototype:void 0,q8=V8?V8.valueOf:void 0;function X8(t,e,r){var n,i=t.constructor;switch(e){case"[object ArrayBuffer]":return G8(t);case"[object Boolean]":case"[object Date]":return new i(+t);case"[object DataView]":return function(t,e){var r=e?G8(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}(t,r);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return function(t,e){var r=e?G8(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}(t,r);case"[object Map]":case"[object Set]":return new i;case"[object Number]":case"[object String]":return new i(t);case"[object RegExp]":return function(t){var e=new t.constructor(t.source,Y8.exec(t));return e.lastIndex=t.lastIndex,e}(t);case"[object Symbol]":return n=t,q8?Object(q8.call(n)):{}}}var $8=Object.create,K8=function(){function t(){}return function(e){if(!z4(e))return{};if($8)return $8(e);t.prototype=e;var r=new t;return t.prototype=void 0,r}}(),Q8=K8;var J8=G5&&G5.isMap,Z8=J8?z5(J8):function(t){return S5(t)&&"[object Map]"==x6(t)},t7=Z8;var e7=G5&&G5.isSet,r7=e7?z5(e7):function(t){return S5(t)&&"[object Set]"==x6(t)},n7=r7,i7="[object Arguments]",a7="[object Function]",s7="[object Object]",o7={};function l7(t,e,r,n,i,a){var s,o=1&e,l=2&e,h=4&e;if(r&&(s=i?r(t,n,i,a):r(t)),void 0!==s)return s;if(!z4(t))return t;var c=y5(t);if(c){if(s=function(t){var e=t.length,r=new t.constructor(e);return e&&"string"==typeof t[0]&&H8.call(t,"index")&&(r.index=t.index,r.input=t.input),r}(t),!o)return function(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r<n;)e[r]=t[r];return e}(t,s)}else{var u=x6(t),d=u==a7||"[object GeneratorFunction]"==u;if(D5(t))return function(t,e){if(e)return t.slice();var r=t.length,n=B8?B8(r):new t.constructor(r);return t.copy(n),n}(t,o);if(u==s7||u==i7||d&&!i){if(s=l||d?{}:function(t){return"function"!=typeof t.constructor||Q5(t)?{}:Q8(K6(t))}(t),!o)return l?function(t,e){return O6(t,W8(t),e)}(t,function(t,e){return t&&O6(e,V6(e),t)}(s,t)):function(t,e){return O6(t,k5(t),e)}(t,function(t,e){return t&&O6(e,n6(e),t)}(s,t))}else{if(!o7[u])return i?t:{};s=X8(t,u,o)}}a||(a=new o5);var p=a.get(t);if(p)return p;a.set(t,s),n7(t)?t.forEach((function(n){s.add(l7(n,e,r,n,t,a))})):t7(t)&&t.forEach((function(n,i){s.set(i,l7(n,e,r,i,t,a))}));var f=c?void 0:(h?l?U8:i6:l?V6:n6)(t);return function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n&&!1!==e(t[r],r,t););}(f||t,(function(n,i){f&&(n=t[i=n]),R6(s,i,l7(n,e,r,i,t,a))})),s}o7[i7]=o7["[object Array]"]=o7["[object ArrayBuffer]"]=o7["[object DataView]"]=o7["[object Boolean]"]=o7["[object Date]"]=o7["[object Float32Array]"]=o7["[object Float64Array]"]=o7["[object Int8Array]"]=o7["[object Int16Array]"]=o7["[object Int32Array]"]=o7["[object Map]"]=o7["[object Number]"]=o7[s7]=o7["[object RegExp]"]=o7["[object Set]"]=o7["[object String]"]=o7["[object Symbol]"]=o7["[object Uint8Array]"]=o7["[object Uint8ClampedArray]"]=o7["[object Uint16Array]"]=o7["[object Uint32Array]"]=!0,o7["[object Error]"]=o7[a7]=o7["[object WeakMap]"]=!1;function h7(t){return l7(t,4)}var c7=function(){return I4.Date.now()},u7=/\s/;var d7=/^\s+/;function p7(t){return t?t.slice(0,function(t){for(var e=t.length;e--&&u7.test(t.charAt(e)););return e}(t)+1).replace(d7,""):t}var f7=/^[-+]0x[0-9a-f]+$/i,g7=/^0b[01]+$/i,v7=/^0o[0-7]+$/i,m7=parseInt;function y7(t){if("number"==typeof t)return t;if(g8(t))return NaN;if(z4(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=z4(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=p7(t);var r=g7.test(t);return r||v7.test(t)?m7(t.slice(2),r?2:8):f7.test(t)?NaN:+t}var b7=Math.max,w7=Math.min;function x7(t,e,r){var n,i,a,s,o,l,h=0,c=!1,u=!1,d=!0;if("function"!=typeof t)throw new TypeError("Expected a function");function p(e){var r=n,a=i;return n=i=void 0,h=e,s=t.apply(a,r)}function f(t){var r=t-l;return void 0===l||r>=e||r<0||u&&t-h>=a}function g(){var t=c7();if(f(t))return v(t);o=setTimeout(g,function(t){var r=e-(t-l);return u?w7(r,a-(t-h)):r}(t))}function v(t){return o=void 0,d&&n?p(t):(n=i=void 0,s)}function m(){var t=c7(),r=f(t);if(n=arguments,i=this,l=t,r){if(void 0===o)return function(t){return h=t,o=setTimeout(g,e),c?p(t):s}(l);if(u)return clearTimeout(o),o=setTimeout(g,e),p(l)}return void 0===o&&(o=setTimeout(g,e)),s}return e=y7(e)||0,z4(r)&&(c=!!r.leading,a=(u="maxWait"in r)?b7(y7(r.maxWait)||0,e):a,d="trailing"in r?!!r.trailing:d),m.cancel=function(){void 0!==o&&clearTimeout(o),h=0,n=l=i=o=void 0},m.flush=function(){return void 0===o?s:v(c7())},m}function A7(t,e,r){var n=!0,i=!0;if("function"!=typeof t)throw new TypeError("Expected a function");return z4(r)&&(n="leading"in r?!!r.leading:n,i="trailing"in r?!!r.trailing:i),x7(t,e,{leading:n,maxWait:e,trailing:i})}var _7=1/0;function k7(t){var e=function(t){return t?(t=y7(t))===_7||t===-1/0?17976931348623157e292*(t<0?-1:1):t==t?t:0:0===t?t:0}(t),r=e%1;return e==e?r?e-r:e:0}function S7(t){return function(t,e){var r;if("function"!=typeof e)throw new TypeError("Expected a function");return t=k7(t),function(){return--t>0&&(r=e.apply(this,arguments)),t<=1&&(e=void 0),r}}(2,t)}var E7=Object.prototype.hasOwnProperty;function M7(t){if(null==t)return!0;if(r6(t)&&(y5(t)||"string"==typeof t||"function"==typeof t.splice||D5(t)||q5(t)||I5(t)))return!t.length;var e=x6(t);if("[object Map]"==e||"[object Set]"==e)return!t.size;if(Q5(t))return!e6(t).length;for(var r in t)if(E7.call(t,r))return!1;return!0}var T7=0;function C7(t={},...e){return"object"!=typeof t&&(t={}),e.forEach((e=>{for(let r in e)"object"!=typeof e[r]?t[r]=e[r]:e[r].length>0?t[r]=e[r].map((t=>{let n;return n="object"!=typeof e[r]?t:C7({},t),n})):t[r]=C7(t[r],e[r])})),t}function P7(t){for(;t&&"object"==typeof t;){let e=t;for(let e in t){t=t[e];break}if(t===e){t=void 0;break}}return t}var I7=Object.freeze({__proto__:null,insertAt:function(t,e){return this.__collection__?(-1==(t=this.__collection__.indexOf(e))&&this.__collection__.splice(t,0,e),this):this},append:function(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.push(t),this},prepend:function(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.unshift(t),this},remove:function(t){if(!this.__collection__)return this;var e=this.__collection__.indexOf(t);return e>=0&&this.__collection__.splice(e,1),this},getAt:function(t){if(this.__collection__)return this.__collection__[t]},forEach:function(t,e){this.__collection__&&this.__collection__.forEach(t,e)},indexOf:function(t){if(this.__collection__)return this.__collection__.indexOf(t)},size:function(){return this.__collection__?this.__collection__.length:0},clear:function(){this.__collection__=[]},moveForward:function(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this.__collection__[e]=this.__collection__[e-1],this.__collection__[e-1]=t)},moveBackward:function(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this.__collection__[e]=this.__collection__[e+1],this.__collection__[e+1]=t)},moveToHead:function(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=this.__collection__.concat(r,n)}},moveToTail:function(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=r.concat(n,this.__collection__)}}});function R7(){}R7.prototype=I7;var O7=/\s+/;function L7(t,e,r,n){if(!r)return!0;if("object"==typeof r){for(let n in r){let i=r[n];t[e].apply(t,[n,i])}return!1}return!O7.test(r)||(r.split(O7).forEach((r=>t[e].apply(t,[r].concat(n)))),!1)}const D7=["on","off","once","delegate_on","delegate_off","trigger","listenTo"];var F7={withEvent(){D7.forEach((t=>this[t]=F7[t]))},on(t,e,r){return L7(this,"on",t,[e,r])&&e?(this._listeners||(this._listeners={}),(this._listeners[t]||(this._listeners[t]=[])).push({callback:e,context:r,ctx:r||this}),this):this},once(t,e,r){if(!L7(this,"once",t,[e,r])||!e)return this;var n=this,i=S7((function(){n.off(t,i),e.apply(n,arguments)}));i._callback=e,this.on(t,i,r)},off(t,e,r){if(!this._listeners||!L7(this,"off",t,[e,r]))return this;if(!t&&!e&&!r)return this._listeners=void 0,this;var n;n=t?[t]:Object.keys(this._listeners);for(let t=0;t<n.length;t++){let i=n[t],a=this._listeners[i];if(a){let t=[];if(this._listeners[i]=t,e||r)for(let n=0;n<a.length;n++){let i=a[n];(e&&e!==i.callback&&e!==i.callback._callback||r&&r!==i.context)&&t.push(i)}t.length||delete this._listeners[i]}}return this},delegate_on(t){return this._delegators||(this._delegators=new R7),this._delegators.append(t),this},delegate_off(t){return this._delegators?(this._delegators.remove(t),this):this},delegate(){if(this._delegators&&this._delegators.size()>0&&j7(this._delegators,arguments),!this._listeners)return this;var t=arguments.length-1,e=arguments[t];arguments[t]={origin:e.origin,name:e.name,deliverer:this};var r=this._listeners[e.name],n=this._listeners["(all)"];return r&&N7(r,arguments),n&&N7(n,arguments),this},trigger(t){var e=[].slice.call(arguments,1);if(e.push({origin:this,name:t,deliverer:this}),this._delegators&&this._delegators.size()>0&&j7(this._delegators,e),!this._listeners)return this;if(!L7(this,"trigger",t,e))return this;var r=this._listeners[t],n=this._listeners["(all)"];return r&&N7(r,e),n&&N7(n,e),this},stopListening(t,e,r){var n=this._listeningTo;if(!n)return this;var i=!e&&!r;r||"object"!=typeof e||(r=this),t&&((n={})[t._listenId]=t);for(let t in n){let a=n[t];a.off(e,r,this),(i||M7(a._events))&&delete this._listeningTo[t]}return this}};function N7(t,e){t.forEach((t=>t.callback.apply(t.ctx,e)))}function j7(t,e){t.forEach((t=>F7.delegate.apply(t,e)))}var B7={listenTo:"on",listenToOnce:"once"};for(let t in B7){var z7=B7[t];F7[t]=function(t,e,r){this._listeningTo||(this._listeningTo={});var n=this._listeningTo;return t._listenId||(t._listenId=`${"l"||""}${++T7}`),n[t._listenId]=t,r||"object"!=typeof e||(r=this),t[z7](e,r,this),this}}function W7(t,e){if(e instanceof Array)e.forEach((e=>W7(t,e)));else{if(t.mixedIn=t.hasOwnProperty("mixedIn")?t.mixedIn:[],t.mixingIn=t.hasOwnProperty("mixingIn")?t.mixingIn:[],t.mixedIn.indexOf(e)>=0)return t;if(t.mixingIn.indexOf(e)>=0)throw new Error(`found cyclic dependencies between ${t.mixingIn}`);t.mixingIn.push(e),e.call(t),t.mixingIn.pop(),t.mixedIn.push(e)}return t}var U7=(...t)=>{var e=[];t.forEach((t=>t&&t.stack&&e.push(t.stack))),console.error("[ERROR]",...t,e.join(" "))},H7=(...t)=>{var e=[];t.forEach((t=>t&&t.stack&&e.push(t.stack))),console.warn("[WARN]",...t,e.join(" "))},G7=(...t)=>console.log("[DEBUG]",...t);function Y7(t,e,r){var n=t.__lookupGetter__(e);n?r?t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),h7(this.__cache__[e])})):t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),this.__cache__[e]})):U7(`${e} is not defined in ${t.constructor.name}`)}const V7={},q7=0,X7=1,$7=2,K7=3,Q7=4,J7=5,Z7={VIEW:0,EDIT:1,SHIFT:2,ADD:3},t9=30,e9="undefined"==typeof window?1:window.devicePixelRatio||(window.matchMedia&&window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches?2:1)||1,r9=["mousemove","mouseup","mousedown","mouseout","wheel","touchstart","touchmove","touchend","dblclick"],n9=["keydown","keyup"],i9={ALPHA:1,FONT_SIZE:15,FONT_FAMILY:"serif",FONT_COLOR:"black",TEXT_ALIGN:"center",TEXT_BASELINE:"middle",TEXT_WRAP:!1,BOLD:!1,ITALIC:!1,STROKE_STYLE:"#999",LINE_DASH:"solid",LETTER_SPACING:0},a9={x:1,y:1};function s9(t,e,r){var{left:n=0,top:i=0,blurSize:a=0,color:s="transparent"}=e,o=r.rootModel.get("scale")||a9;t.shadowOffsetX=n*o.x*e9,t.shadowOffsetY=i*o.y*e9,t.shadowBlur=a*o.x*e9,t.shadowColor=s}var o9={gradation:function(t,e,r){var{type:n,subType:i,from:a,to:s,colors:o}=r;switch(i){case"linear":var l=e.createLinearGradient(a.x,a.y,s.x,s.y);break;case"radial":l=e.createRadialGradient(a.x,a.y,a.r,s.x,s.y,s.r);break;default:l=e.createLinearGradient(a.x,a.y,s.x,s.y)}o&&(o.forEach((function(t){l.addColorStop(t.endPoint,t.color)})),e.fillStyle=l,e.fill())},shadow:s9};function l9(t,e,r,n){var i=e.get("class");return!!i&&(i.split(" ")||[]).indexOf(t.substr(1))>=0}function h9(t,e,r,n){return t==e.get("type")}function c9(t,e,r,n){if("(all)"==t)return!0;switch(t.charAt(0)){case"#":return function(t,e){return t.substr(1)==e.get("id")}(t,e);case".":return l9(t,e);case"(":return function(t,e,r,n){switch(t){case"(all)":return!0;case"(self)":return n===e;case"(root)":return!n.parent&&n===e;case"(descendant)":return n!==e;case"(child)":return n===e.parent;default:return!1}}(t,e,0,n);default:return h9(t,e)}}function u9(t,e,r,n,i,a){return t(e,r,n,i)&&a.push(r),r.components&&r.components.forEach((r=>{u9(t,e,r,n,i,a)})),a}function d9(t,e,r,n){switch(t){case"(all)":return!0;case"(parent)":return r&&r.parent===e;case"(child)":case"(children)":return r&&r===e.parent;case"(sibling)":case"(siblings)":return r&&r.parent===e.parent&&r!==e;default:return!1}}function p9(t,e,r){if("(root)"==t)return[e];if("(self)"==t)return r?[r]:[];var n;switch(t.charAt(0)){case"#":let r=e.root.findAllById(t.substr(1));return r||[];case".":n=l9;break;case"(":n=d9;break;default:n=h9}return u9(n,t,e,r,e,[])}function f9(t){throw new Error('Could not dynamically require "'+t+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var g9={exports:{}};!function(e){var r=function(t){var e,r=Object.prototype,n=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},s=a.iterator||"@@iterator",o=a.asyncIterator||"@@asyncIterator",l=a.toStringTag||"@@toStringTag";function h(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{h({},"")}catch(t){h=function(t,e,r){return t[e]=r}}function c(t,e,r,n){var a=e&&e.prototype instanceof m?e:m,s=Object.create(a.prototype),o=new P(n||[]);return i(s,"_invoke",{value:E(t,r,o)}),s}function u(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var d="suspendedStart",p="suspendedYield",f="executing",g="completed",v={};function m(){}function y(){}function b(){}var w={};h(w,s,(function(){return this}));var x=Object.getPrototypeOf,A=x&&x(x(I([])));A&&A!==r&&n.call(A,s)&&(w=A);var _=b.prototype=m.prototype=Object.create(w);function k(t){["next","throw","return"].forEach((function(e){h(t,e,(function(t){return this._invoke(e,t)}))}))}function S(t,e){function r(i,a,s,o){var l=u(t[i],t,a);if("throw"!==l.type){var h=l.arg,c=h.value;return c&&"object"==typeof c&&n.call(c,"__await")?e.resolve(c.__await).then((function(t){r("next",t,s,o)}),(function(t){r("throw",t,s,o)})):e.resolve(c).then((function(t){h.value=t,s(h)}),(function(t){return r("throw",t,s,o)}))}o(l.arg)}var a;i(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,i){r(t,n,e,i)}))}return a=a?a.then(i,i):i()}})}function E(t,r,n){var i=d;return function(a,s){if(i===f)throw new Error("Generator is already running");if(i===g){if("throw"===a)throw s;return{value:e,done:!0}}for(n.method=a,n.arg=s;;){var o=n.delegate;if(o){var l=M(o,n);if(l){if(l===v)continue;return l}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===d)throw i=g,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=f;var h=u(t,r,n);if("normal"===h.type){if(i=n.done?g:p,h.arg===v)continue;return{value:h.arg,done:n.done}}"throw"===h.type&&(i=g,n.method="throw",n.arg=h.arg)}}}function M(t,r){var n=r.method,i=t.iterator[n];if(i===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,M(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var a=u(i,t.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,v;var s=a.arg;return s?s.done?(r[t.resultName]=s.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):s:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function C(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function P(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function I(t){if(null!=t){var r=t[s];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,a=function r(){for(;++i<t.length;)if(n.call(t,i))return r.value=t[i],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}throw new TypeError(typeof t+" is not iterable")}return y.prototype=b,i(_,"constructor",{value:b,configurable:!0}),i(b,"constructor",{value:y,configurable:!0}),y.displayName=h(b,l,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===y||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,h(t,l,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},k(S.prototype),h(S.prototype,o,(function(){return this})),t.AsyncIterator=S,t.async=function(e,r,n,i,a){void 0===a&&(a=Promise);var s=new S(c(e,r,n,i),a);return t.isGeneratorFunction(r)?s:s.next().then((function(t){return t.done?t.value:s.next()}))},k(_),h(_,l,"Generator"),h(_,s,(function(){return this})),h(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=I,P.prototype={constructor:P,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(C),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function i(n,i){return o.type="throw",o.arg=t,r.next=n,i&&(r.method="next",r.arg=e),!!i}for(var a=this.tryEntries.length-1;a>=0;--a){var s=this.tryEntries[a],o=s.completion;if("root"===s.tryLoc)return i("end");if(s.tryLoc<=this.prev){var l=n.call(s,"catchLoc"),h=n.call(s,"finallyLoc");if(l&&h){if(this.prev<s.catchLoc)return i(s.catchLoc,!0);if(this.prev<s.finallyLoc)return i(s.finallyLoc)}else if(l){if(this.prev<s.catchLoc)return i(s.catchLoc,!0)}else{if(!h)throw new Error("try statement without catch or finally");if(this.prev<s.finallyLoc)return i(s.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var a=i;break}}a&&("break"===t||"continue"===t)&&a.tryLoc<=e&&e<=a.finallyLoc&&(a=null);var s=a?a.completion:{};return s.type=t,s.arg=e,a?(this.method="next",this.next=a.finallyLoc,v):this.complete(s)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),C(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;C(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:I(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(e.exports);try{regeneratorRuntime=r}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=r:Function("r","regeneratorRuntime = r")(r)}Number.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},String.fromCodePoint||function(t){var e=function(e){for(var r=[],n=0,i="",a=0,s=arguments.length;a!==s;++a){var o=+arguments[a];if(!(o<1114111&&o>>>0===o))throw RangeError("Invalid code point: "+o);o<=65535?n=r.push(o):(o-=65536,n=r.push(55296+(o>>10),o%1024+56320)),n>=16383&&(i+=t.apply(null,r),r.length=0)}return i+t.apply(null,r)};try{Object.defineProperty(String,"fromCodePoint",{value:e,configurable:!0,writable:!0})}catch(t){String.fromCodePoint=e}}(String.fromCharCode),Object.is||(Object.is=function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e})
2
+ /*! https://mths.be/codepointat v0.2.0 by @mathias */,String.prototype.codePointAt||function(){var t=function(){try{var t={},e=Object.defineProperty,r=e(t,t,t)&&e}catch(t){}return r}(),e=function(t){if(null==this)throw TypeError();var e=String(this),r=e.length,n=t?Number(t):0;if(n!=n&&(n=0),!(n<0||n>=r)){var i,a=e.charCodeAt(n);return a>=55296&&a<=56319&&r>n+1&&(i=e.charCodeAt(n+1))>=56320&&i<=57343?1024*(a-55296)+i-56320+65536:a}};t?t(String.prototype,"codePointAt",{value:e,configurable:!0,writable:!0}):String.prototype.codePointAt=e}(),Math.log10=Math.log10||function(t){return Math.log(t)*Math.LOG10E},e.exports=function(){function t(e,r,n){function i(s,o){if(!r[s]){if(!e[s]){if(!o&&f9)return f9(s);if(a)return a(s,!0);var l=new Error("Cannot find module '"+s+"'");throw l.code="MODULE_NOT_FOUND",l}var h=r[s]={exports:{}};e[s][0].call(h.exports,(function(t){return i(e[s][1][t]||t)}),h,h.exports,t,e,r,n)}return r[s].exports}for(var a=f9,s=0;s<n.length;s++)i(n[s]);return i}return t}()({1:[function(t,e,r){var n=t("./utils"),i=function(){var t=n.stringToArray,e=["Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"],r=["Zeroth","First","Second","Third","Fourth","Fifth","Sixth","Seventh","Eighth","Ninth","Tenth","Eleventh","Twelfth","Thirteenth","Fourteenth","Fifteenth","Sixteenth","Seventeenth","Eighteenth","Nineteenth"],i=["Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred"],a=["Thousand","Million","Billion","Trillion"];function s(t,n){var s=function t(n,s,o){var l="";if(n<=19)l=(s?" and ":"")+(o?r[n]:e[n]);else if(n<100){var h=Math.floor(n/10),c=n%10;l=(s?" and ":"")+i[h-2],c>0?l+="-"+t(c,!1,o):o&&(l=l.substring(0,l.length-1)+"ieth")}else if(n<1e3){var u=Math.floor(n/100),d=n%100;l=(s?", ":"")+e[u]+" Hundred",d>0?l+=t(d,!0,o):o&&(l+="th")}else{var p=Math.floor(Math.log10(n)/3);p>a.length&&(p=a.length);var f=Math.pow(10,3*p),g=Math.floor(n/f),v=n-g*f;l=(s?", ":"")+t(g,!1,!1)+" "+a[p-1],v>0?l+=t(v,!0,o):o&&(l+="th")}return l};return s(t,!1,n)}var o={};function l(t){var e=t.split(/,\s|\sand\s|[\s\\-]/).map((function(t){return o[t]})),r=[0];e.forEach((function(t){if(t<100){var e=r.pop();e>=1e3&&(r.push(e),e=0),r.push(e+t)}else r.push(r.pop()*t)}));var n=r.reduce((function(t,e){return t+e}),0);return n}e.forEach((function(t,e){o[t.toLowerCase()]=e})),r.forEach((function(t,e){o[t.toLowerCase()]=e})),i.forEach((function(t,e){var r=t.toLowerCase();o[r]=10*(e+2),o[r.substring(0,t.length-1)+"ieth"]=o[r]})),o.hundredth=100,a.forEach((function(t,e){var r=t.toLowerCase(),n=Math.pow(10,3*(e+1));o[r]=n,o[r+"th"]=n}));var h=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],c={M:1e3,D:500,C:100,L:50,X:10,V:5,I:1};function u(t){for(var e=0;e<h.length;e++){var r=h[e];if(t>=r[0])return r[1]+u(t-r[0])}return""}function d(t){for(var e=0,r=1,n=t.length-1;n>=0;n--){var i=t[n],a=c[i];a<r?e-=a:(r=a,e+=a)}return e}function p(t,e){for(var r=[],n=e.charCodeAt(0);t>0;)r.unshift(String.fromCharCode((t-1)%26+n)),t=Math.floor((t-1)/26);return r.join("")}function f(t,e){for(var r=e.charCodeAt(0),n=0,i=0;i<t.length;i++)n+=(t.charCodeAt(t.length-i-1)-r+1)*Math.pow(26,i);return n}function g(t,e){if(void 0!==t)return y(t=Math.floor(t),w(e))}var v={DECIMAL:"decimal",LETTERS:"letters",ROMAN:"roman",WORDS:"words",SEQUENCE:"sequence"},m={UPPER:"upper",LOWER:"lower",TITLE:"title"};function y(e,r){var n,i=e<0;switch(e=Math.abs(e),r.primary){case v.LETTERS:n=p(e,r.case===m.UPPER?"A":"a");break;case v.ROMAN:n=u(e),r.case===m.UPPER&&(n=n.toUpperCase());break;case v.WORDS:n=s(e,r.ordinal),r.case===m.UPPER?n=n.toUpperCase():r.case===m.LOWER&&(n=n.toLowerCase());break;case v.DECIMAL:n=""+e;var a=r.mandatoryDigits-n.length;if(a>0){var o=new Array(a+1).join("0");n=o+n}if(48!==r.zeroCode&&(n=t(n).map((function(t){return String.fromCodePoint(t.codePointAt(0)+r.zeroCode-48)})).join("")),r.regular)for(var l=Math.floor((n.length-1)/r.groupingSeparators.position);l>0;l--){var h=n.length-l*r.groupingSeparators.position;n=n.substr(0,h)+r.groupingSeparators.character+n.substr(h)}else r.groupingSeparators.reverse().forEach((function(t){var e=n.length-t.position;n=n.substr(0,e)+t.character+n.substr(e)}));if(r.ordinal){var c={1:"st",2:"nd",3:"rd"}[n[n.length-1]];(!c||n.length>1&&"1"===n[n.length-2])&&(c="th"),n+=c}break;case v.SEQUENCE:throw{code:"D3130",value:r.token}}return i&&(n="-"+n),n}var b=[48,1632,1776,1984,2406,2534,2662,2790,2918,3046,3174,3302,3430,3558,3664,3792,3872,4160,4240,6112,6160,6470,6608,6784,6800,6992,7088,7232,7248,42528,43216,43264,43472,43504,43600,44016,65296];function w(e){var r,n={type:"integer",primary:v.DECIMAL,case:m.LOWER,ordinal:!1},i=e.lastIndexOf(";");switch(-1===i?r=e:(r=e.substring(0,i),"o"===e.substring(i+1)[0]&&(n.ordinal=!0)),r){case"A":n.case=m.UPPER;case"a":n.primary=v.LETTERS;break;case"I":n.case=m.UPPER;case"i":n.primary=v.ROMAN;break;case"W":n.case=m.UPPER,n.primary=v.WORDS;break;case"Ww":n.case=m.TITLE,n.primary=v.WORDS;break;case"w":n.primary=v.WORDS;break;default:var a=null,s=0,o=0,l=[],h=0,c=t(r).map((function(t){return t.codePointAt(0)})).reverse();if(c.forEach((function(t){for(var e=!1,r=0;r<b.length;r++){var n=b[r];if(t>=n&&t<=n+9){if(e=!0,s++,h++,null===a)a=n;else if(n!==a)throw{code:"D3131"};break}}e||(35===t?(h++,o++):l.push({position:h,character:String.fromCodePoint(t)}))})),s>0){n.primary=v.DECIMAL,n.zeroCode=a,n.mandatoryDigits=s,n.optionalDigits=o;var u=function(t){if(0===t.length)return 0;for(var e=t[0].character,r=1;r<t.length;r++)if(t[r].character!==e)return 0;for(var n=t.map((function(t){return t.position})),i=function t(e,r){return 0===r?e:t(r,e%r)},a=n.reduce(i),s=1;s<=n.length;s++)if(-1===n.indexOf(s*a))return 0;return a},d=u(l);d>0?(n.regular=!0,n.groupingSeparators={position:d,character:l[0].character}):(n.regular=!1,n.groupingSeparators=l)}else n.primary=v.SEQUENCE,n.token=r}return n}var x={Y:"1",M:"1",D:"1",d:"1",F:"n",W:"1",w:"1",X:"1",x:"1",H:"1",h:"1",P:"n",m:"01",s:"01",f:"1",Z:"01:01",z:"01:01",C:"n",E:"n"};function A(t){for(var e=[],r={type:"datetime",parts:e},n=function(r,n){if(n>r){var i=t.substring(r,n);i=i.split("]]").join("]"),e.push({type:"literal",value:i})}},i=0,a=0;a<t.length;){if("["===t.charAt(a)){if("["===t.charAt(a+1)){n(i,a),e.push({type:"literal",value:"["}),i=a+=2;continue}if(n(i,a),i=a,-1===(a=t.indexOf("]",i)))throw{code:"D3135"};var s,o=t.substring(i+1,a),l={type:"marker",component:(o=o.split(/\s+/).join("")).charAt(0)},h=o.lastIndexOf(",");if(-1!==h){var c=o.substring(h+1),u=c.indexOf("-"),d=void 0,p=void 0,f=function(t){return void 0===t||"*"===t?void 0:parseInt(t)};-1===u?d=c:(d=c.substring(0,u),p=c.substring(u+1));var g={min:f(d),max:f(p)};l.width=g,s=o.substring(1,h)}else s=o.substring(1);if(1===s.length)l.presentation1=s;else if(s.length>1){var v=s.charAt(s.length-1);-1!=="atco".indexOf(v)?(l.presentation2=v,"o"===v&&(l.ordinal=!0),l.presentation1=s.substring(0,s.length-1)):l.presentation1=s}else l.presentation1=x[l.component];if(void 0===l.presentation1)throw{code:"D3132",value:l.component};if("n"===l.presentation1[0])l.names=m.LOWER;else if("N"===l.presentation1[0])"n"===l.presentation1[1]?l.names=m.TITLE:l.names=m.UPPER;else if(-1!=="YMDdFWwXxHhmsf".indexOf(l.component)){var y=l.presentation1;if(l.presentation2&&(y+=";"+l.presentation2),l.integerFormat=w(y),l.width&&void 0!==l.width.min&&l.integerFormat.mandatoryDigits<l.width.min&&(l.integerFormat.mandatoryDigits=l.width.min),-1!=="YMD".indexOf(l.component))if(l.n=-1,l.width&&void 0!==l.width.max)l.n=l.width.max,l.integerFormat.mandatoryDigits=l.n;else{var b=l.integerFormat.mandatoryDigits+l.integerFormat.optionalDigits;b>=2&&(l.n=b)}}"Z"!==l.component&&"z"!==l.component||(l.integerFormat=w(l.presentation1)),e.push(l),i=a+1}a++}return n(i,a),r}var _=["","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],k=["January","February","March","April","May","June","July","August","September","October","November","December"],S=864e5,E=function(t){var e=Date.UTC(t.year,t.month),r=new Date(e).getUTCDay();return 0===r&&(r=7),r>4?e+(8-r)*S:e-(r-1)*S},M=function t(e,r){return{year:e,month:r,nextMonth:function(){return 11===r?t(e+1,0):t(e,r+1)},previousMonth:function(){return 0===r?t(e-1,11):t(e,r-1)},nextYear:function(){return t(e+1,r)},previousYear:function(){return t(e-1,r)}}},T=function(t,e){return(e-t)/(7*S)+1},C=function(t,e){var r;switch(e){case"Y":r=t.getUTCFullYear();break;case"M":r=t.getUTCMonth()+1;break;case"D":r=t.getUTCDate();break;case"d":r=(Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate())-Date.UTC(t.getUTCFullYear(),0))/S+1;break;case"F":0===(r=t.getUTCDay())&&(r=7);break;case"W":var n=M(t.getUTCFullYear(),0),i=E(n),a=Date.UTC(n.year,t.getUTCMonth(),t.getUTCDate()),s=T(i,a);if(s>52)a>=E(n.nextYear())&&(s=1);else if(s<1){var o=E(n.previousYear());s=T(o,a)}r=Math.floor(s);break;case"w":var l=M(t.getUTCFullYear(),t.getUTCMonth()),h=E(l),c=Date.UTC(l.year,l.month,t.getUTCDate()),u=T(h,c);if(u>4)c>=E(l.nextMonth())&&(u=1);else if(u<1){var d=E(l.previousMonth());u=T(d,c)}r=Math.floor(u);break;case"X":var p=M(t.getUTCFullYear(),0),f=E(p),g=E(p.nextYear()),v=t.getTime();r=v<f?p.year-1:v>=g?p.year+1:p.year;break;case"x":var m=M(t.getUTCFullYear(),t.getUTCMonth()),y=E(m),b=m.nextMonth(),w=E(b),x=t.getTime();r=x<y?m.previousMonth().month+1:x>=w?b.month+1:m.month+1;break;case"H":r=t.getUTCHours();break;case"h":r=t.getUTCHours(),0==(r%=12)&&(r=12);break;case"P":r=t.getUTCHours()>=12?"pm":"am";break;case"m":r=t.getUTCMinutes();break;case"s":r=t.getUTCSeconds();break;case"f":r=t.getUTCMilliseconds();break;case"Z":case"z":break;case"C":case"E":r="ISO"}return r},P=null;function I(t,e,r){var n=0,i=0;if(void 0!==r){var a=parseInt(r);n=Math.floor(a/100),i=a%100}var s,o=function(t,e){var r=C(t,e.component);if(-1!=="YMDdFWwXxHhms".indexOf(e.component))if("Y"===e.component&&-1!==e.n&&(r%=Math.pow(10,e.n)),e.names){if("M"===e.component||"x"===e.component)r=k[r-1];else{if("F"!==e.component)throw{code:"D3133",value:e.component};r=_[r]}e.names===m.UPPER?r=r.toUpperCase():e.names===m.LOWER&&(r=r.toLowerCase()),e.width&&r.length>e.width.max&&(r=r.substring(0,e.width.max))}else r=y(r,e.integerFormat);else if("f"===e.component)r=y(r,e.integerFormat);else if("Z"===e.component||"z"===e.component){var a=100*n+i;if(e.integerFormat.regular)r=y(a,e.integerFormat);else{var s=e.integerFormat.mandatoryDigits;if(1===s||2===s)r=y(n,e.integerFormat),0!==i&&(r+=":"+g(i,"00"));else{if(3!==s&&4!==s)throw{code:"D3134",value:s};r=y(a,e.integerFormat)}}a>=0&&(r="+"+r),"z"===e.component&&(r="GMT"+r),0===a&&"t"===e.presentation2&&(r="Z")}return r};void 0===e?(null===P&&(P=A("[Y0001]-[M01]-[D01]T[H01]:[m01]:[s01].[f001][Z01:01t]")),s=P):s=A(e);var l=new Date(t+60*(60*n+i)*1e3),h="";return s.parts.forEach((function(t){"literal"===t.type?h+=t.value:h+=o(l,t)})),h}function R(t){var e={};if("datetime"===t.type)e.type="datetime",e.parts=t.parts.map((function(t){var e={};if("literal"===t.type)e.regex=t.value.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");else if("Z"===t.component||"z"===t.component){var r;Array.isArray(t.integerFormat.groupingSeparators)||(r=t.integerFormat.groupingSeparators),e.regex="","z"===t.component&&(e.regex="GMT"),e.regex+="[-+][0-9]+",r&&(e.regex+=r.character+"[0-9]+"),e.parse=function(e){"z"===t.component&&(e=e.substring(3));var n=0,i=0;return r?(n=Number.parseInt(e.substring(0,e.indexOf(r.character))),i=Number.parseInt(e.substring(e.indexOf(r.character)+1))):e.length-1<=2?n=Number.parseInt(e):(n=Number.parseInt(e.substring(0,3)),i=Number.parseInt(e.substring(3))),60*n+i}}else if(t.integerFormat)t.integerFormat.n=t.n,e=R(t.integerFormat);else{e.regex="[a-zA-Z]+";var n={};if("M"===t.component||"x"===t.component)k.forEach((function(e,r){t.width&&t.width.max?n[e.substring(0,t.width.max)]=r+1:n[e]=r+1}));else if("F"===t.component)_.forEach((function(e,r){r>0&&(t.width&&t.width.max?n[e.substring(0,t.width.max)]=r:n[e]=r)}));else{if("P"!==t.component)throw{code:"D3133",value:t.component};n={am:0,AM:0,pm:1,PM:1}}e.parse=function(t){return n[t]}}return e.component=t.component,e}));else{e.type="integer";var r,n=t.case===m.UPPER;switch(r=t.n&&t.n>0?0===t.optionalDigits?"{".concat(t.n,"}"):"{".concat(t.n-t.optionalDigits,",").concat(t.n,"}"):"+",t.primary){case v.LETTERS:e.regex=n?"[A-Z]+":"[a-z]+",e.parse=function(t){return f(t,n?"A":"a")};break;case v.ROMAN:e.regex=n?"[MDCLXVI]+":"[mdclxvi]+",e.parse=function(t){return d(n?t:t.toUpperCase())};break;case v.WORDS:e.regex="(?:"+Object.keys(o).concat("and","[\\-, ]").join("|")+")+",e.parse=function(t){return l(t.toLowerCase())};break;case v.DECIMAL:e.regex="[0-9]".concat(r),t.ordinal&&(e.regex+="(?:th|st|nd|rd)"),e.parse=function(e){var r=e;return t.ordinal&&(r=e.substring(0,e.length-2)),t.regular?r=r.split(",").join(""):t.groupingSeparators.forEach((function(t){r=r.split(t.character).join("")})),48!==t.zeroCode&&(r=r.split("").map((function(e){return String.fromCodePoint(e.codePointAt(0)-t.zeroCode+48)})).join("")),parseInt(r)};break;case v.SEQUENCE:throw{code:"D3130",value:t.token}}}return e}function O(t,e){if(void 0!==t)return R(w(e)).parse(t)}function L(t,e){var r=R(A(e)),n="^"+r.parts.map((function(t){return"("+t.regex+")"})).join("")+"$",i=new RegExp(n,"i").exec(t);if(null!==i){for(var a=161,s=130,o=84,l=72,h=23,c=47,u={},d=1;d<i.length;d++){var p=r.parts[d-1];p.parse&&(u[p.component]=p.parse(i[d]))}if(0===Object.getOwnPropertyNames(u).length)return;var f=0,g=function(t){f<<=1,f+=t?1:0},v=function(t){return!(~t&f||!(t&f))};"YXMxWwdD".split("").forEach((function(t){return g(u[t])}));var m=!v(a)&&v(s),y=v(o),b=!y&&v(l);f=0,"PHhmsf".split("").forEach((function(t){return g(u[t])}));var w=!v(h)&&v(c),x=(m?"YD":y?"XxwF":b?"XWF":"YMD")+(w?"Phmsf":"Hmsf"),_=this.environment.timestamp,k=!1,S=!1;if(x.split("").forEach((function(t){if(void 0===u[t])k?(u[t]=-1!=="MDd".indexOf(t)?1:0,S=!0):u[t]=C(_,t);else if(k=!0,S)throw{code:"D3136"}})),u.M>0?u.M-=1:u.M=0,m){var E=Date.UTC(u.Y,0),M=1e3*(u.d-1)*60*60*24,T=new Date(E+M);u.M=T.getUTCMonth(),u.D=T.getUTCDate()}if(y)throw{code:"D3136"};if(b)throw{code:"D3136"};w&&(u.H=12===u.h?0:u.h,1===u.P&&(u.H+=12));var P=Date.UTC(u.Y,u.M,u.D,u.H,u.m,u.s,u.f);return(u.Z||u.z)&&(P-=60*(u.Z||u.z)*1e3),P}}var D=new RegExp("^\\d{4}(-[01]\\d)*(-[0-3]\\d)*(T[0-2]\\d:[0-5]\\d:[0-5]\\d)*(\\.\\d+)?([+-][0-2]\\d:?[0-5]\\d|Z)?$");function F(t,e){if(void 0!==t){if(void 0===e){if(!D.test(t))throw{stack:(new Error).stack,code:"D3110",value:t};return Date.parse(t)}return L.call(this,t,e)}}function N(t,e,r){if(void 0!==t)return I.call(this,t,e,r)}return{formatInteger:g,parseInteger:O,fromMillis:N,toMillis:F}}();e.exports=i},{"./utils":6}],2:[function(e,r,n){(function(t){(function(){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(){
3
3
  /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
4
- i=function(){return e};var t,e={},r=Object.prototype,o=r.hasOwnProperty,a=Object.defineProperty||function(t,e,r){t[e]=r.value},s="function"==typeof Symbol?Symbol:{},c=s.iterator||"@@iterator",u=s.asyncIterator||"@@asyncIterator",l=s.toStringTag||"@@toStringTag";function h(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{h({},"")}catch(t){h=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof b?e:b,o=Object.create(i.prototype),s=new C(n||[]);return a(o,"_invoke",{value:T(t,r,s)}),o}function d(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var p="suspendedStart",g="suspendedYield",v="executing",y="completed",m={};function b(){}function x(){}function w(){}var A={};h(A,c,(function(){return this}));var _=Object.getPrototypeOf,k=_&&_(_(R([])));k&&k!==r&&o.call(k,c)&&(A=k);var E=w.prototype=b.prototype=Object.create(A);function S(t){["next","throw","return"].forEach((function(e){h(t,e,(function(t){return this._invoke(e,t)}))}))}function M(t,e){function r(i,a,s,c){var u=d(t[i],t,a);if("throw"!==u.type){var l=u.arg,h=l.value;return h&&"object"==n(h)&&o.call(h,"__await")?e.resolve(h.__await).then((function(t){r("next",t,s,c)}),(function(t){r("throw",t,s,c)})):e.resolve(h).then((function(t){l.value=t,s(l)}),(function(t){return r("throw",t,s,c)}))}c(u.arg)}var i;a(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,i){r(t,n,e,i)}))}return i=i?i.then(o,o):o()}})}function T(e,r,n){var i=p;return function(o,a){if(i===v)throw new Error("Generator is already running");if(i===y){if("throw"===o)throw a;return{value:t,done:!0}}for(n.method=o,n.arg=a;;){var s=n.delegate;if(s){var c=P(s,n);if(c){if(c===m)continue;return c}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===p)throw i=y,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=v;var u=d(e,r,n);if("normal"===u.type){if(i=n.done?y:g,u.arg===m)continue;return{value:u.arg,done:n.done}}"throw"===u.type&&(i=y,n.method="throw",n.arg=u.arg)}}}function P(e,r){var n=r.method,i=e.iterator[n];if(i===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,P(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),m;var o=d(i,e.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,m;var a=o.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,m):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,m)}function O(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function I(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function C(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(O,this),this.reset(!0)}function R(e){if(e||""===e){var r=e[c];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var i=-1,a=function r(){for(;++i<e.length;)if(o.call(e,i))return r.value=e[i],r.done=!1,r;return r.value=t,r.done=!0,r};return a.next=a}}throw new TypeError(n(e)+" is not iterable")}return x.prototype=w,a(E,"constructor",{value:w,configurable:!0}),a(w,"constructor",{value:x,configurable:!0}),x.displayName=h(w,l,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===x||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,h(t,l,"GeneratorFunction")),t.prototype=Object.create(E),t},e.awrap=function(t){return{__await:t}},S(M.prototype),h(M.prototype,u,(function(){return this})),e.AsyncIterator=M,e.async=function(t,r,n,i,o){void 0===o&&(o=Promise);var a=new M(f(t,r,n,i),o);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},S(E),h(E,l,"Generator"),h(E,c,(function(){return this})),h(E,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=R,C.prototype={constructor:C,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(I),!e)for(var r in this)"t"===r.charAt(0)&&o.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,i){return s.type="throw",s.arg=e,r.next=n,i&&(r.method="next",r.arg=t),!!i}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var c=o.call(a,"catchLoc"),u=o.call(a,"finallyLoc");if(c&&u){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,m):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),m},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),I(r),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;I(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:R(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),m}},e}var o=e("./utils"),a=function(){var e=i().mark(U),r=i().mark(Y),a=i().mark(H),s=i().mark(G),c=i().mark(Q),u=i().mark(ft),l=i().mark(dt),h=i().mark(pt),f=i().mark(vt),d=i().mark(kt),p=i().mark(Tt),g=i().mark(It),v=o.isNumeric,y=o.isArrayOfStrings,m=o.isArrayOfNumbers,b=o.createSequence,x=o.isSequence,w=o.isFunction,A=o.isLambda,_=o.isIterable,k=o.getFunctionArity,E=o.isDeepEqual,S=o.stringToArray;function M(t){if(void 0!==t){var e=0;return t.forEach((function(t){e+=t})),e}}function T(t){return void 0===t?0:t.length}function P(t){if(void 0!==t&&0!==t.length)return Math.max.apply(Math,t)}function O(t){if(void 0!==t&&0!==t.length)return Math.min.apply(Math,t)}function I(t){if(void 0!==t&&0!==t.length){var e=0;return t.forEach((function(t){e+=t})),e/t.length}}function C(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(void 0!==t){var r;if("string"==typeof t)r=t;else if(w(t))r="";else{if("number"==typeof t&&!isFinite(t))throw{code:"D3001",value:t,stack:(new Error).stack};var n=e?2:0;Array.isArray(t)&&t.outerWrapper&&(t=t[0]),r=JSON.stringify(t,(function(t,e){return null!=e&&e.toPrecision&&v(e)?Number(e.toPrecision(15)):e&&w(e)?"":e}),n)}return r}}function R(t,e,r){if(void 0!==t){var n=S(t),i=n.length;if(i+e<0&&(e=0),void 0!==r){if(r<=0)return"";var o=e>=0?e+r:i+e+r;return n.slice(e,o).join("")}return n.slice(e).join("")}}function j(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(0,r):t}}function L(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(r+e.length):t}}function D(t){if(void 0!==t)return t.toLowerCase()}function z(t){if(void 0!==t)return t.toUpperCase()}function N(t){if(void 0!==t)return S(t).length}function F(t){if(void 0!==t){var e=t.replace(/[ \t\n\r]+/gm," ");return" "===e.charAt(0)&&(e=e.substring(1))," "===e.charAt(e.length-1)&&(e=e.substring(0,e.length-1)),e}}function B(t,e,r){if(void 0!==t){var n;void 0!==r&&0!==r.length||(r=" ");var i=Math.abs(e)-N(t);if(i>0){var o=new Array(i+1).join(r);r.length>1&&(o=R(o,0,i)),n=e>0?t+o:o+t}else n=t;return n}}function U(t,r){var n;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=t.apply(this,[r]),!_(n)){e.next=4;break}return e.delegateYield(n,"t0",3);case 3:n=e.t0;case 4:if(!n||"number"==typeof n.start||"number"===n.end||Array.isArray(n.groups)||w(n.next)){e.next=6;break}throw{code:"T1010",stack:(new Error).stack};case 6:return e.abrupt("return",n);case 7:case"end":return e.stop()}}),e,this)}function Y(t,e){var n,o;return i().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if(void 0!==t){r.next=2;break}return r.abrupt("return",void 0);case 2:if("string"!=typeof e){r.next=6;break}n=-1!==t.indexOf(e),r.next=9;break;case 6:return r.delegateYield(U(e,t),"t0",7);case 7:o=r.t0,n=void 0!==o;case 9:return r.abrupt("return",n);case 10:case"end":return r.stop()}}),r)}function H(t,e,r){var n,o,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!(r<0)){i.next=4;break}throw{stack:(new Error).stack,value:r,code:"D3040",index:3};case 4:if(n=b(),!(void 0===r||r>0)){i.next=17;break}return o=0,i.delegateYield(U(e,t),"t0",8);case 8:if(void 0===(s=i.t0)){i.next=17;break}case 10:if(void 0===s||!(void 0===r||o<r)){i.next=17;break}return n.push({match:s.match,index:s.start,groups:s.groups}),i.delegateYield(U(s.next),"t1",13);case 13:s=i.t1,o++,i.next=10;break;case 17:return i.abrupt("return",n);case 18:case"end":return i.stop()}}),a)}function G(t,e,r,n){var o,a,c,u,l,h,f,d;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(o=this,""!==e){i.next=5;break}throw{code:"D3010",stack:(new Error).stack,value:e,index:2};case 5:if(!(n<0)){i.next=7;break}throw{code:"D3011",stack:(new Error).stack,value:n,index:4};case 7:if(a="string"==typeof r?function(t){for(var e="",n=0,i=r.indexOf("$",n);-1!==i&&n<r.length;){e+=r.substring(n,i),n=i+1;var o=r.charAt(n);if("$"===o)e+="$",n++;else if("0"===o)e+=t.match,n++;else{var a;if(a=0===t.groups.length?1:Math.floor(Math.log(t.groups.length)*Math.LOG10E)+1,i=parseInt(r.substring(n,n+a),10),a>1&&i>t.groups.length&&(i=parseInt(r.substring(n,n+a-1),10)),isNaN(i))e+="$";else{if(t.groups.length>0){var s=t.groups[i-1];void 0!==s&&(e+=s)}n+=i.toString().length}}i=r.indexOf("$",n)}return e+=r.substring(n)}:r,c="",u=0,!(void 0===n||n>0)){i.next=44;break}if(l=0,"string"!=typeof e){i.next=18;break}for(h=t.indexOf(e,u);-1!==h&&(void 0===n||l<n);)c+=t.substring(u,h),c+=r,u=h+e.length,l++,h=t.indexOf(e,u);c+=t.substring(u),i.next=42;break;case 18:return i.delegateYield(U(e,t),"t0",19);case 19:if(void 0===(f=i.t0)){i.next=41;break}case 21:if(void 0===f||!(void 0===n||l<n)){i.next=38;break}if(c+=t.substring(u,f.start),d=a.apply(o,[f]),!_(d)){i.next=27;break}return i.delegateYield(d,"t1",26);case 26:d=i.t1;case 27:if("string"!=typeof d){i.next=31;break}c+=d,i.next=32;break;case 31:throw{code:"D3012",stack:(new Error).stack,value:d};case 32:return u=f.start+f.match.length,l++,i.delegateYield(U(f.next),"t2",35);case 35:f=i.t2,i.next=21;break;case 38:c+=t.substring(u),i.next=42;break;case 41:c=t;case 42:i.next=45;break;case 44:c=t;case 45:return i.abrupt("return",c);case 46:case"end":return i.stop()}}),s,this)}function W(e){if(void 0!==e){var r="undefined"!=typeof window?window.btoa:function(e){return new t.Buffer.from(e,"binary").toString("base64")};return r(e)}}function $(e){if(void 0!==e){var r="undefined"!=typeof window?window.atob:function(e){return new t.Buffer.from(e,"base64").toString("binary")};return r(e)}}function q(t){if(void 0!==t){var e;try{e=encodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrlComponent"}}return e}}function X(t){if(void 0!==t){var e;try{e=encodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrl"}}return e}}function V(t){if(void 0!==t){var e;try{e=decodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrlComponent"}}return e}}function K(t){if(void 0!==t){var e;try{e=decodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrl"}}return e}}function Q(t,e,r){var n,o,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!(r<0)){i.next=4;break}throw{code:"D3020",stack:(new Error).stack,value:r,index:3};case 4:if(n=[],!(void 0===r||r>0)){i.next=27;break}if("string"!=typeof e){i.next=10;break}n=t.split(e,r),i.next=27;break;case 10:return o=0,i.delegateYield(U(e,t),"t0",12);case 12:if(void 0===(a=i.t0)){i.next=26;break}s=0;case 15:if(void 0===a||!(void 0===r||o<r)){i.next=23;break}return n.push(t.substring(s,a.start)),s=a.end,i.delegateYield(U(a.next),"t1",19);case 19:a=i.t1,o++,i.next=15;break;case 23:(void 0===r||o<r)&&n.push(t.substring(s)),i.next=27;break;case 26:n.push(t);case 27:return i.abrupt("return",n);case 28:case"end":return i.stop()}}),c)}function J(t,e){if(void 0!==t)return void 0===e&&(e=""),t.join(e)}function Z(t,e,r){if(void 0!==t){var n={"decimal-separator":".","grouping-separator":",","exponent-separator":"e",infinity:"Infinity","minus-sign":"-",NaN:"NaN",percent:"%","per-mille":"‰","zero-digit":"0",digit:"#","pattern-separator":";"};void 0!==r&&Object.keys(r).forEach((function(t){n[t]=r[t]}));for(var i=[],o=n["zero-digit"].charCodeAt(0),a=o;a<o+10;a++)i.push(String.fromCharCode(a));var s=i.concat([n["decimal-separator"],n["exponent-separator"],n["grouping-separator"],n.digit,n["pattern-separator"]]),c=e.split(n["pattern-separator"]);if(c.length>2)throw{code:"D3080",stack:(new Error).stack};var u=function(t){var e,r,i,o,a=function(){for(var e,r=0;r<t.length;r++)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(0,r)}(),c=function(){for(var e,r=t.length-1;r>=0;r--)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(r+1)}(),u=t.substring(a.length,t.length-c.length),l=t.indexOf(n["exponent-separator"],a.length);-1===l||l>t.length-c.length?(e=u,r=void 0):(e=u.substring(0,l),r=u.substring(l+1));var h=e.indexOf(n["decimal-separator"]);return-1===h?(i=e,o=c):(i=e.substring(0,h),o=e.substring(h+1)),{prefix:a,suffix:c,activePart:u,mantissaPart:e,exponentPart:r,integerPart:i,fractionalPart:o,subpicture:t}},l=function(t){var e,r,o=t.subpicture,a=o.indexOf(n["decimal-separator"]);a!==o.lastIndexOf(n["decimal-separator"])&&(e="D3081"),o.indexOf(n.percent)!==o.lastIndexOf(n.percent)&&(e="D3082"),o.indexOf(n["per-mille"])!==o.lastIndexOf(n["per-mille"])&&(e="D3083"),-1!==o.indexOf(n.percent)&&-1!==o.indexOf(n["per-mille"])&&(e="D3084");var c=!1;for(r=0;r<t.mantissaPart.length;r++){var u=t.mantissaPart.charAt(r);if(-1!==i.indexOf(u)||u===n.digit){c=!0;break}}c||(e="D3085"),-1!==t.activePart.split("").map((function(t){return-1===s.indexOf(t)?"p":"a"})).join("").indexOf("p")&&(e="D3086"),-1!==a?o.charAt(a-1)!==n["grouping-separator"]&&o.charAt(a+1)!==n["grouping-separator"]||(e="D3087"):t.integerPart.charAt(t.integerPart.length-1)===n["grouping-separator"]&&(e="D3088"),-1!==o.indexOf(n["grouping-separator"]+n["grouping-separator"])&&(e="D3089");var l=t.integerPart.indexOf(n.digit);-1!==l&&t.integerPart.substring(0,l).split("").filter((function(t){return i.indexOf(t)>-1})).length>0&&(e="D3090"),-1!==(l=t.fractionalPart.lastIndexOf(n.digit))&&t.fractionalPart.substring(l).split("").filter((function(t){return i.indexOf(t)>-1})).length>0&&(e="D3091");var h="string"==typeof t.exponentPart;if(h&&t.exponentPart.length>0&&(-1!==o.indexOf(n.percent)||-1!==o.indexOf(n["per-mille"]))&&(e="D3092"),h&&(0===t.exponentPart.length||t.exponentPart.split("").filter((function(t){return-1===i.indexOf(t)})).length>0)&&(e="D3093"),e)throw{code:e,stack:(new Error).stack}},h=function(t){var e=function(e,r){for(var o=[],a=e.indexOf(n["grouping-separator"]);-1!==a;){var s=(r?e.substring(0,a):e.substring(a)).split("").filter((function(t){return-1!==i.indexOf(t)||t===n.digit})).length;o.push(s),a=t.integerPart.indexOf(n["grouping-separator"],a+1)}return o},r=e(t.integerPart),o=function(t){if(0===t.length)return 0;for(var e=function t(e,r){return 0===r?e:t(r,e%r)},r=t.reduce(e),n=1;n<=t.length;n++)if(-1===t.indexOf(n*r))return 0;return r},a=o(r),s=e(t.fractionalPart,!0),c=t.integerPart.split("").filter((function(t){return-1!==i.indexOf(t)})).length,u=c,l=t.fractionalPart.split(""),h=l.filter((function(t){return-1!==i.indexOf(t)})).length,f=l.filter((function(t){return-1!==i.indexOf(t)||t===n.digit})).length,d="string"==typeof t.exponentPart;0===c&&0===f&&(d?(h=1,f=1):c=1),d&&0===c&&-1!==t.integerPart.indexOf(n.digit)&&(c=1),0===c&&0===h&&(h=1);var p=0;return d&&(p=t.exponentPart.split("").filter((function(t){return-1!==i.indexOf(t)})).length),{integerPartGroupingPositions:r,regularGrouping:a,minimumIntegerPartSize:c,scalingFactor:u,prefix:t.prefix,fractionalPartGroupingPositions:s,minimumFactionalPartSize:h,maximumFactionalPartSize:f,minimumExponentSize:p,suffix:t.suffix,picture:t.subpicture}},f=c.map(u);f.forEach(l);var d,p,g,v,y=f.map(h),m=n["minus-sign"],b=n["zero-digit"],x=n["decimal-separator"],w=n["grouping-separator"];if(1===y.length&&(y.push(JSON.parse(JSON.stringify(y[0]))),y[1].prefix=m+y[1].prefix),p=-1!==(d=t>=0?y[0]:y[1]).picture.indexOf(n.percent)?100*t:-1!==d.picture.indexOf(n["per-mille"])?1e3*t:t,0===d.minimumExponentSize)g=p;else{var A=Math.pow(10,d.scalingFactor),_=Math.pow(10,d.scalingFactor-1);for(g=p,v=0;g<_;)g*=10,v-=1;for(;g>A;)g/=10,v+=1}var k=function(t,e){var r=Math.abs(t).toFixed(e);return"0"!==b&&(r=r.split("").map((function(t){return t>="0"&&t<="9"?i[t.charCodeAt(0)-48]:t})).join("")),r},E=k(ot(g,d.maximumFactionalPartSize),d.maximumFactionalPartSize),S=E.indexOf(".");for(-1===S?E+=x:E=E.replace(".",x);E.charAt(0)===b;)E=E.substring(1);for(;E.charAt(E.length-1)===b;)E=E.substring(0,E.length-1);S=E.indexOf(x);var M=d.minimumIntegerPartSize-S,T=d.minimumFactionalPartSize-(E.length-S-1);if(E=(M>0?new Array(M+1).join(b):"")+E,E+=T>0?new Array(T+1).join(b):"",S=E.indexOf(x),d.regularGrouping>0)for(var P=Math.floor((S-1)/d.regularGrouping),O=1;O<=P;O++)E=[E.slice(0,S-O*d.regularGrouping),w,E.slice(S-O*d.regularGrouping)].join("");else d.integerPartGroupingPositions.forEach((function(t){E=[E.slice(0,S-t),w,E.slice(S-t)].join(""),S++}));if(S=E.indexOf(x),d.fractionalPartGroupingPositions.forEach((function(t){E=[E.slice(0,t+S+1),w,E.slice(t+S+1)].join("")})),S=E.indexOf(x),-1!==d.picture.indexOf(x)&&S!==E.length-1||(E=E.substring(0,E.length-1)),void 0!==v){var I=k(v,0);(M=d.minimumExponentSize-I.length)>0&&(I=new Array(M+1).join(b)+I),E=E+n["exponent-separator"]+(v<0?m:"")+I}return E=d.prefix+E+d.suffix}}function tt(t,e){if(void 0!==t){if(t=ot(t),(e=void 0===e?10:ot(e))<2||e>36)throw{code:"D3100",stack:(new Error).stack,value:e};return t.toString(e)}}function et(t){var e;if(void 0!==t){if("number"==typeof t)e=t;else if("string"==typeof t&&/^-?[0-9]+(\.[0-9]+)?([Ee][-+]?[0-9]+)?$/.test(t)&&!isNaN(parseFloat(t))&&isFinite(t))e=parseFloat(t);else if(!0===t)e=1;else{if(!1!==t)throw{code:"D3030",value:t,stack:(new Error).stack,index:1};e=0}return e}}function rt(t){if(void 0!==t)return Math.abs(t)}function nt(t){if(void 0!==t)return Math.floor(t)}function it(t){if(void 0!==t)return Math.ceil(t)}function ot(t,e){var r;if(void 0!==t){if(e){var n=t.toString().split("e");t=+(n[0]+"e"+(n[1]?+n[1]+e:e))}var i=(r=Math.round(t))-t;return.5===Math.abs(i)&&1===Math.abs(r%2)&&(r-=1),e&&(n=r.toString().split("e"),r=+(n[0]+"e"+(n[1]?+n[1]-e:-e))),Object.is(r,-0)&&(r=0),r}}function at(t){if(void 0!==t){if(t<0)throw{stack:(new Error).stack,code:"D3060",index:1,value:t};return Math.sqrt(t)}}function st(t,e){var r;if(void 0!==t){if(r=Math.pow(t,e),!isFinite(r))throw{stack:(new Error).stack,code:"D3061",index:1,value:t,exp:e};return r}}function ct(){return Math.random()}function ut(t){if(void 0!==t){var e=!1;return Array.isArray(t)?1===t.length?e=ut(t[0]):t.length>1&&(e=t.filter((function(t){return ut(t)})).length>0):"string"==typeof t?t.length>0&&(e=!0):v(t)?0!==t&&(e=!0):null!==t&&"object"===n(t)?Object.keys(t).length>0&&(e=!0):"boolean"==typeof t&&!0===t&&(e=!0),e}}function lt(t){if(void 0!==t)return!ut(t)}function ht(t,e,r,n){var i=[e],o=k(t);return o>=2&&i.push(r),o>=3&&i.push(n),i}function ft(t,e){var r,n,o,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=b(),n=0;case 4:if(!(n<t.length)){i.next=12;break}return o=ht(e,t[n],n,t),i.delegateYield(e.apply(this,o),"t0",7);case 7:void 0!==(a=i.t0)&&r.push(a);case 9:n++,i.next=4;break;case 12:return i.abrupt("return",r);case 13:case"end":return i.stop()}}),u,this)}function dt(t,e){var r,n,o,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=b(),n=0;case 4:if(!(n<t.length)){i.next=13;break}return o=t[n],a=ht(e,o,n,t),i.delegateYield(e.apply(this,a),"t0",8);case 8:ut(i.t0)&&r.push(o);case 10:n++,i.next=4;break;case 13:return i.abrupt("return",r);case 14:case"end":return i.stop()}}),l,this)}function pt(t,e){var r,n,o,a,s,c,u;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=!1,o=0;case 4:if(!(o<t.length)){i.next=22;break}if(a=t[o],s=!0,void 0===e){i.next=12;break}return c=ht(e,a,o,t),i.delegateYield(e.apply(this,c),"t0",10);case 10:u=i.t0,s=ut(u);case 12:if(!s){i.next=19;break}if(r){i.next=18;break}n=a,r=!0,i.next=19;break;case 18:throw{stack:(new Error).stack,code:"D3138",index:o};case 19:o++,i.next=4;break;case 22:if(r){i.next=24;break}throw{stack:(new Error).stack,code:"D3139"};case 24:return i.abrupt("return",n);case 25:case"end":return i.stop()}}),h,this)}function gt(){for(var t=[],e=Array.prototype.slice.call(arguments),r=Math.min.apply(Math,e.map((function(t){return Array.isArray(t)?t.length:0}))),n=0;n<r;n++){var i=e.map((function(t){return t[n]}));t.push(i)}return t}function vt(t,e,r){var n,o,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!((o=k(e))<2)){i.next=5;break}throw{stack:(new Error).stack,code:"D3050",index:1};case 5:void 0===r&&t.length>0?(n=t[0],a=1):(n=r,a=0);case 6:if(!(a<t.length)){i.next=15;break}return s=[n,t[a]],o>=3&&s.push(a),o>=4&&s.push(t),i.delegateYield(e.apply(this,s),"t0",11);case 11:n=i.t0,a++,i.next=6;break;case 15:return i.abrupt("return",n);case 16:case"end":return i.stop()}}),f,this)}function yt(t){var e=b();if(Array.isArray(t)){var r={};t.forEach((function(t){yt(t).forEach((function(t){r[t]=!0}))})),e=yt(r)}else null===t||"object"!==n(t)||A(t)||Object.keys(t).forEach((function(t){return e.push(t)}));return e}function mt(t,e){var r;if(Array.isArray(t)){r=b();for(var i=0;i<t.length;i++){var o=mt(t[i],e);void 0!==o&&(Array.isArray(o)?o.forEach((function(t){return r.push(t)})):r.push(o))}}else null!==t&&"object"===n(t)&&(r=t[e]);return r}function bt(t,e){return void 0===t?e:void 0===e?t:(Array.isArray(t)||(t=b(t)),Array.isArray(e)||(e=[e]),t.concat(e))}function xt(t){return void 0!==t}function wt(t){var e=b();if(Array.isArray(t))t.forEach((function(t){e=bt(e,wt(t))}));else if(null===t||"object"!==n(t)||A(t))e=t;else for(var r in t){var i={};i[r]=t[r],e.push(i)}return e}function At(t){if(void 0!==t){var e={};return t.forEach((function(t){for(var r in t)e[r]=t[r]})),e}}function _t(t){if(void 0!==t){if(t.length<=1)return t;for(var e=t.length,r=new Array(e),n=0;n<e;n++)r[e-n-1]=t[n];return r}}function kt(t,e){var r,n,o,a;return i().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:r=b(),s.t0=i().keys(t);case 2:if((s.t1=s.t0()).done){s.next=10;break}return n=s.t1.value,o=ht(e,t[n],n,t),s.delegateYield(e.apply(this,o),"t2",6);case 6:void 0!==(a=s.t2)&&r.push(a),s.next=2;break;case 10:return s.abrupt("return",r);case 11:case"end":return s.stop()}}),d,this)}function Et(t){throw{code:"D3137",stack:(new Error).stack,message:t||"$error() function evaluated"}}function St(t,e){if(!t)throw{code:"D3141",stack:(new Error).stack,message:e||"$assert() statement failed"}}function Mt(t){if(void 0!==t)return null===t?"null":v(t)?"number":"string"==typeof t?"string":"boolean"==typeof t?"boolean":Array.isArray(t)?"array":w(t)?"function":"object"}function Tt(t,e){var r,n,o,a;return i().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:if(void 0!==t){s.next=2;break}return s.abrupt("return",void 0);case 2:if(!(t.length<=1)){s.next=4;break}return s.abrupt("return",t);case 4:if(void 0!==e){s.next=10;break}if(m(t)||y(t)){s.next=7;break}throw{stack:(new Error).stack,code:"D3070",index:1};case 7:r=i().mark((function t(e,r){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",e>r);case 1:case"end":return t.stop()}}),t)})),s.next=11;break;case 10:r=e;case 11:return n=i().mark((function t(e,n){var o,a;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return o=i().mark((function t(e,n,o){return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(0!==n.length){i.next=4;break}Array.prototype.push.apply(e,o),i.next=16;break;case 4:if(0!==o.length){i.next=8;break}Array.prototype.push.apply(e,n),i.next=16;break;case 8:return i.delegateYield(r(n[0],o[0]),"t0",9);case 9:if(!i.t0){i.next=14;break}return e.push(o[0]),i.delegateYield(t(e,n,o.slice(1)),"t1",12);case 12:i.next=16;break;case 14:return e.push(n[0]),i.delegateYield(t(e,n.slice(1),o),"t2",16);case 16:case"end":return i.stop()}}),t)})),a=[],t.delegateYield(o(a,e,n),"t0",3);case 3:return t.abrupt("return",a);case 4:case"end":return t.stop()}}),t)})),o=i().mark((function t(e){var r,o,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(Array.isArray(e)&&!(e.length<=1)){i.next=4;break}return i.abrupt("return",e);case 4:return r=Math.floor(e.length/2),o=e.slice(0,r),a=e.slice(r),i.delegateYield(t(o),"t0",8);case 8:return o=i.t0,i.delegateYield(t(a),"t1",10);case 10:return a=i.t1,i.delegateYield(n(o,a),"t2",12);case 12:return i.abrupt("return",i.t2);case 13:case"end":return i.stop()}}),t)})),s.delegateYield(o(t),"t0",14);case 14:return a=s.t0,s.abrupt("return",a);case 16:case"end":return s.stop()}}),p)}function Pt(t){if(void 0!==t){if(t.length<=1)return t;for(var e=new Array(t.length),r=0;r<t.length;r++){var n=Math.floor(Math.random()*(r+1));r!==n&&(e[r]=e[n]),e[n]=t[r]}return e}}function Ot(t){if(void 0!==t){if(!Array.isArray(t)||t.length<=1)return t;for(var e=x(t)?b():[],r=0;r<t.length;r++){for(var n=t[r],i=!1,o=0;o<e.length;o++)if(E(n,e[o])){i=!0;break}i||e.push(n)}return e}}function It(t,e){var r,n,o,a;return i().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:r={},s.t0=i().keys(t);case 2:if((s.t1=s.t0()).done){s.next=11;break}return n=s.t1.value,o=t[n],a=ht(e,o,n,t),s.delegateYield(e.apply(this,a),"t2",7);case 7:ut(s.t2)&&(r[n]=o),s.next=2;break;case 11:return 0===Object.keys(r).length&&(r=void 0),s.abrupt("return",r);case 13:case"end":return s.stop()}}),g,this)}return{sum:M,count:T,max:P,min:O,average:I,string:C,substring:R,substringBefore:j,substringAfter:L,lowercase:D,uppercase:z,length:N,trim:F,pad:B,match:H,contains:Y,replace:G,split:Q,join:J,formatNumber:Z,formatBase:tt,number:et,floor:nt,ceil:it,round:ot,abs:rt,sqrt:at,power:st,random:ct,boolean:ut,not:lt,map:ft,zip:gt,filter:dt,single:pt,foldLeft:vt,sift:It,keys:yt,lookup:mt,append:bt,exists:xt,spread:wt,merge:At,reverse:_t,each:kt,error:Et,assert:St,type:Mt,sort:Tt,shuffle:Pt,distinct:Ot,base64encode:W,base64decode:$,encodeUrlComponent:q,encodeUrl:X,decodeUrlComponent:V,decodeUrl:K}}();r.exports=a}).call(this)}).call(this,void 0!==t?t:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utils":6}],3:[function(t,e,r){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(){
4
+ i=function(){return e};var t,e={},r=Object.prototype,a=r.hasOwnProperty,s=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},l=o.iterator||"@@iterator",h=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function d(t,e,r,n){var i=e&&e.prototype instanceof b?e:b,a=Object.create(i.prototype),o=new R(n||[]);return s(a,"_invoke",{value:T(t,r,o)}),a}function p(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=d;var f="suspendedStart",g="suspendedYield",v="executing",m="completed",y={};function b(){}function w(){}function x(){}var A={};u(A,l,(function(){return this}));var _=Object.getPrototypeOf,k=_&&_(_(O([])));k&&k!==r&&a.call(k,l)&&(A=k);var S=x.prototype=b.prototype=Object.create(A);function E(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function M(t,e){function r(i,s,o,l){var h=p(t[i],t,s);if("throw"!==h.type){var c=h.arg,u=c.value;return u&&"object"==n(u)&&a.call(u,"__await")?e.resolve(u.__await).then((function(t){r("next",t,o,l)}),(function(t){r("throw",t,o,l)})):e.resolve(u).then((function(t){c.value=t,o(c)}),(function(t){return r("throw",t,o,l)}))}l(h.arg)}var i;s(this,"_invoke",{value:function(t,n){function a(){return new e((function(e,i){r(t,n,e,i)}))}return i=i?i.then(a,a):a()}})}function T(e,r,n){var i=f;return function(a,s){if(i===v)throw new Error("Generator is already running");if(i===m){if("throw"===a)throw s;return{value:t,done:!0}}for(n.method=a,n.arg=s;;){var o=n.delegate;if(o){var l=C(o,n);if(l){if(l===y)continue;return l}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===f)throw i=m,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=v;var h=p(e,r,n);if("normal"===h.type){if(i=n.done?m:g,h.arg===y)continue;return{value:h.arg,done:n.done}}"throw"===h.type&&(i=m,n.method="throw",n.arg=h.arg)}}}function C(e,r){var n=r.method,i=e.iterator[n];if(i===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,C(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),y;var a=p(i,e.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,y;var s=a.arg;return s?s.done?(r[e.resultName]=s.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,y):s:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,y)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function I(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function R(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function O(e){if(e||""===e){var r=e[l];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var i=-1,s=function r(){for(;++i<e.length;)if(a.call(e,i))return r.value=e[i],r.done=!1,r;return r.value=t,r.done=!0,r};return s.next=s}}throw new TypeError(n(e)+" is not iterable")}return w.prototype=x,s(S,"constructor",{value:x,configurable:!0}),s(x,"constructor",{value:w,configurable:!0}),w.displayName=u(x,c,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,x):(t.__proto__=x,u(t,c,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},E(M.prototype),u(M.prototype,h,(function(){return this})),e.AsyncIterator=M,e.async=function(t,r,n,i,a){void 0===a&&(a=Promise);var s=new M(d(t,r,n,i),a);return e.isGeneratorFunction(r)?s:s.next().then((function(t){return t.done?t.value:s.next()}))},E(S),u(S,c,"Generator"),u(S,l,(function(){return this})),u(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=O,R.prototype={constructor:R,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(I),!e)for(var r in this)"t"===r.charAt(0)&&a.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,i){return o.type="throw",o.arg=e,r.next=n,i&&(r.method="next",r.arg=t),!!i}for(var i=this.tryEntries.length-1;i>=0;--i){var s=this.tryEntries[i],o=s.completion;if("root"===s.tryLoc)return n("end");if(s.tryLoc<=this.prev){var l=a.call(s,"catchLoc"),h=a.call(s,"finallyLoc");if(l&&h){if(this.prev<s.catchLoc)return n(s.catchLoc,!0);if(this.prev<s.finallyLoc)return n(s.finallyLoc)}else if(l){if(this.prev<s.catchLoc)return n(s.catchLoc,!0)}else{if(!h)throw new Error("try statement without catch or finally");if(this.prev<s.finallyLoc)return n(s.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&a.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var s=i?i.completion:{};return s.type=t,s.arg=e,i?(this.method="next",this.next=i.finallyLoc,y):this.complete(s)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),y},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),I(r),y}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;I(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:O(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),y}},e}var a=e("./utils"),s=function(){var e=i().mark(W),r=i().mark(U),s=i().mark(H),o=i().mark(G),l=i().mark(Q),h=i().mark(dt),c=i().mark(pt),u=i().mark(ft),d=i().mark(vt),p=i().mark(kt),f=i().mark(Tt),g=i().mark(It),v=a.isNumeric,m=a.isArrayOfStrings,y=a.isArrayOfNumbers,b=a.createSequence,w=a.isSequence,x=a.isFunction,A=a.isLambda,_=a.isIterable,k=a.getFunctionArity,S=a.isDeepEqual,E=a.stringToArray;function M(t){if(void 0!==t){var e=0;return t.forEach((function(t){e+=t})),e}}function T(t){return void 0===t?0:t.length}function C(t){if(void 0!==t&&0!==t.length)return Math.max.apply(Math,t)}function P(t){if(void 0!==t&&0!==t.length)return Math.min.apply(Math,t)}function I(t){if(void 0!==t&&0!==t.length){var e=0;return t.forEach((function(t){e+=t})),e/t.length}}function R(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(void 0!==t){var r;if("string"==typeof t)r=t;else if(x(t))r="";else{if("number"==typeof t&&!isFinite(t))throw{code:"D3001",value:t,stack:(new Error).stack};var n=e?2:0;Array.isArray(t)&&t.outerWrapper&&(t=t[0]),r=JSON.stringify(t,(function(t,e){return null!=e&&e.toPrecision&&v(e)?Number(e.toPrecision(15)):e&&x(e)?"":e}),n)}return r}}function O(t,e,r){if(void 0!==t){var n=E(t),i=n.length;if(i+e<0&&(e=0),void 0!==r){if(r<=0)return"";var a=e>=0?e+r:i+e+r;return n.slice(e,a).join("")}return n.slice(e).join("")}}function L(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(0,r):t}}function D(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(r+e.length):t}}function F(t){if(void 0!==t)return t.toLowerCase()}function N(t){if(void 0!==t)return t.toUpperCase()}function j(t){if(void 0!==t)return E(t).length}function B(t){if(void 0!==t){var e=t.replace(/[ \t\n\r]+/gm," ");return" "===e.charAt(0)&&(e=e.substring(1))," "===e.charAt(e.length-1)&&(e=e.substring(0,e.length-1)),e}}function z(t,e,r){if(void 0!==t){var n;void 0!==r&&0!==r.length||(r=" ");var i=Math.abs(e)-j(t);if(i>0){var a=new Array(i+1).join(r);r.length>1&&(a=O(a,0,i)),n=e>0?t+a:a+t}else n=t;return n}}function W(t,r){var n;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(n=t.apply(this,[r]),!_(n)){e.next=4;break}return e.delegateYield(n,"t0",3);case 3:n=e.t0;case 4:if(!n||"number"==typeof n.start||"number"===n.end||Array.isArray(n.groups)||x(n.next)){e.next=6;break}throw{code:"T1010",stack:(new Error).stack};case 6:return e.abrupt("return",n);case 7:case"end":return e.stop()}}),e,this)}function U(t,e){var n,a;return i().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if(void 0!==t){r.next=2;break}return r.abrupt("return",void 0);case 2:if("string"!=typeof e){r.next=6;break}n=-1!==t.indexOf(e),r.next=9;break;case 6:return r.delegateYield(W(e,t),"t0",7);case 7:a=r.t0,n=void 0!==a;case 9:return r.abrupt("return",n);case 10:case"end":return r.stop()}}),r)}function H(t,e,r){var n,a,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!(r<0)){i.next=4;break}throw{stack:(new Error).stack,value:r,code:"D3040",index:3};case 4:if(n=b(),!(void 0===r||r>0)){i.next=17;break}return a=0,i.delegateYield(W(e,t),"t0",8);case 8:if(void 0===(o=i.t0)){i.next=17;break}case 10:if(void 0===o||!(void 0===r||a<r)){i.next=17;break}return n.push({match:o.match,index:o.start,groups:o.groups}),i.delegateYield(W(o.next),"t1",13);case 13:o=i.t1,a++,i.next=10;break;case 17:return i.abrupt("return",n);case 18:case"end":return i.stop()}}),s)}function G(t,e,r,n){var a,s,l,h,c,u,d,p;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(a=this,""!==e){i.next=5;break}throw{code:"D3010",stack:(new Error).stack,value:e,index:2};case 5:if(!(n<0)){i.next=7;break}throw{code:"D3011",stack:(new Error).stack,value:n,index:4};case 7:if(s="string"==typeof r?function(t){for(var e="",n=0,i=r.indexOf("$",n);-1!==i&&n<r.length;){e+=r.substring(n,i),n=i+1;var a=r.charAt(n);if("$"===a)e+="$",n++;else if("0"===a)e+=t.match,n++;else{var s;if(s=0===t.groups.length?1:Math.floor(Math.log(t.groups.length)*Math.LOG10E)+1,i=parseInt(r.substring(n,n+s),10),s>1&&i>t.groups.length&&(i=parseInt(r.substring(n,n+s-1),10)),isNaN(i))e+="$";else{if(t.groups.length>0){var o=t.groups[i-1];void 0!==o&&(e+=o)}n+=i.toString().length}}i=r.indexOf("$",n)}return e+=r.substring(n)}:r,l="",h=0,!(void 0===n||n>0)){i.next=44;break}if(c=0,"string"!=typeof e){i.next=18;break}for(u=t.indexOf(e,h);-1!==u&&(void 0===n||c<n);)l+=t.substring(h,u),l+=r,h=u+e.length,c++,u=t.indexOf(e,h);l+=t.substring(h),i.next=42;break;case 18:return i.delegateYield(W(e,t),"t0",19);case 19:if(void 0===(d=i.t0)){i.next=41;break}case 21:if(void 0===d||!(void 0===n||c<n)){i.next=38;break}if(l+=t.substring(h,d.start),p=s.apply(a,[d]),!_(p)){i.next=27;break}return i.delegateYield(p,"t1",26);case 26:p=i.t1;case 27:if("string"!=typeof p){i.next=31;break}l+=p,i.next=32;break;case 31:throw{code:"D3012",stack:(new Error).stack,value:p};case 32:return h=d.start+d.match.length,c++,i.delegateYield(W(d.next),"t2",35);case 35:d=i.t2,i.next=21;break;case 38:l+=t.substring(h),i.next=42;break;case 41:l=t;case 42:i.next=45;break;case 44:l=t;case 45:return i.abrupt("return",l);case 46:case"end":return i.stop()}}),o,this)}function Y(e){if(void 0!==e){var r="undefined"!=typeof window?window.btoa:function(e){return new t.Buffer.from(e,"binary").toString("base64")};return r(e)}}function V(e){if(void 0!==e){var r="undefined"!=typeof window?window.atob:function(e){return new t.Buffer.from(e,"base64").toString("binary")};return r(e)}}function q(t){if(void 0!==t){var e;try{e=encodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrlComponent"}}return e}}function X(t){if(void 0!==t){var e;try{e=encodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrl"}}return e}}function $(t){if(void 0!==t){var e;try{e=decodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrlComponent"}}return e}}function K(t){if(void 0!==t){var e;try{e=decodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrl"}}return e}}function Q(t,e,r){var n,a,s,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!(r<0)){i.next=4;break}throw{code:"D3020",stack:(new Error).stack,value:r,index:3};case 4:if(n=[],!(void 0===r||r>0)){i.next=27;break}if("string"!=typeof e){i.next=10;break}n=t.split(e,r),i.next=27;break;case 10:return a=0,i.delegateYield(W(e,t),"t0",12);case 12:if(void 0===(s=i.t0)){i.next=26;break}o=0;case 15:if(void 0===s||!(void 0===r||a<r)){i.next=23;break}return n.push(t.substring(o,s.start)),o=s.end,i.delegateYield(W(s.next),"t1",19);case 19:s=i.t1,a++,i.next=15;break;case 23:(void 0===r||a<r)&&n.push(t.substring(o)),i.next=27;break;case 26:n.push(t);case 27:return i.abrupt("return",n);case 28:case"end":return i.stop()}}),l)}function J(t,e){if(void 0!==t)return void 0===e&&(e=""),t.join(e)}function Z(t,e,r){if(void 0!==t){var n={"decimal-separator":".","grouping-separator":",","exponent-separator":"e",infinity:"Infinity","minus-sign":"-",NaN:"NaN",percent:"%","per-mille":"‰","zero-digit":"0",digit:"#","pattern-separator":";"};void 0!==r&&Object.keys(r).forEach((function(t){n[t]=r[t]}));for(var i=[],a=n["zero-digit"].charCodeAt(0),s=a;s<a+10;s++)i.push(String.fromCharCode(s));var o=i.concat([n["decimal-separator"],n["exponent-separator"],n["grouping-separator"],n.digit,n["pattern-separator"]]),l=e.split(n["pattern-separator"]);if(l.length>2)throw{code:"D3080",stack:(new Error).stack};var h=function(t){var e,r,i,a,s=function(){for(var e,r=0;r<t.length;r++)if(e=t.charAt(r),-1!==o.indexOf(e)&&e!==n["exponent-separator"])return t.substring(0,r)}(),l=function(){for(var e,r=t.length-1;r>=0;r--)if(e=t.charAt(r),-1!==o.indexOf(e)&&e!==n["exponent-separator"])return t.substring(r+1)}(),h=t.substring(s.length,t.length-l.length),c=t.indexOf(n["exponent-separator"],s.length);-1===c||c>t.length-l.length?(e=h,r=void 0):(e=h.substring(0,c),r=h.substring(c+1));var u=e.indexOf(n["decimal-separator"]);return-1===u?(i=e,a=l):(i=e.substring(0,u),a=e.substring(u+1)),{prefix:s,suffix:l,activePart:h,mantissaPart:e,exponentPart:r,integerPart:i,fractionalPart:a,subpicture:t}},c=function(t){var e,r,a=t.subpicture,s=a.indexOf(n["decimal-separator"]);s!==a.lastIndexOf(n["decimal-separator"])&&(e="D3081"),a.indexOf(n.percent)!==a.lastIndexOf(n.percent)&&(e="D3082"),a.indexOf(n["per-mille"])!==a.lastIndexOf(n["per-mille"])&&(e="D3083"),-1!==a.indexOf(n.percent)&&-1!==a.indexOf(n["per-mille"])&&(e="D3084");var l=!1;for(r=0;r<t.mantissaPart.length;r++){var h=t.mantissaPart.charAt(r);if(-1!==i.indexOf(h)||h===n.digit){l=!0;break}}l||(e="D3085"),-1!==t.activePart.split("").map((function(t){return-1===o.indexOf(t)?"p":"a"})).join("").indexOf("p")&&(e="D3086"),-1!==s?a.charAt(s-1)!==n["grouping-separator"]&&a.charAt(s+1)!==n["grouping-separator"]||(e="D3087"):t.integerPart.charAt(t.integerPart.length-1)===n["grouping-separator"]&&(e="D3088"),-1!==a.indexOf(n["grouping-separator"]+n["grouping-separator"])&&(e="D3089");var c=t.integerPart.indexOf(n.digit);-1!==c&&t.integerPart.substring(0,c).split("").filter((function(t){return i.indexOf(t)>-1})).length>0&&(e="D3090"),-1!==(c=t.fractionalPart.lastIndexOf(n.digit))&&t.fractionalPart.substring(c).split("").filter((function(t){return i.indexOf(t)>-1})).length>0&&(e="D3091");var u="string"==typeof t.exponentPart;if(u&&t.exponentPart.length>0&&(-1!==a.indexOf(n.percent)||-1!==a.indexOf(n["per-mille"]))&&(e="D3092"),u&&(0===t.exponentPart.length||t.exponentPart.split("").filter((function(t){return-1===i.indexOf(t)})).length>0)&&(e="D3093"),e)throw{code:e,stack:(new Error).stack}},u=function(t){var e=function(e,r){for(var a=[],s=e.indexOf(n["grouping-separator"]);-1!==s;){var o=(r?e.substring(0,s):e.substring(s)).split("").filter((function(t){return-1!==i.indexOf(t)||t===n.digit})).length;a.push(o),s=t.integerPart.indexOf(n["grouping-separator"],s+1)}return a},r=e(t.integerPart),a=function(t){if(0===t.length)return 0;for(var e=function t(e,r){return 0===r?e:t(r,e%r)},r=t.reduce(e),n=1;n<=t.length;n++)if(-1===t.indexOf(n*r))return 0;return r},s=a(r),o=e(t.fractionalPart,!0),l=t.integerPart.split("").filter((function(t){return-1!==i.indexOf(t)})).length,h=l,c=t.fractionalPart.split(""),u=c.filter((function(t){return-1!==i.indexOf(t)})).length,d=c.filter((function(t){return-1!==i.indexOf(t)||t===n.digit})).length,p="string"==typeof t.exponentPart;0===l&&0===d&&(p?(u=1,d=1):l=1),p&&0===l&&-1!==t.integerPart.indexOf(n.digit)&&(l=1),0===l&&0===u&&(u=1);var f=0;return p&&(f=t.exponentPart.split("").filter((function(t){return-1!==i.indexOf(t)})).length),{integerPartGroupingPositions:r,regularGrouping:s,minimumIntegerPartSize:l,scalingFactor:h,prefix:t.prefix,fractionalPartGroupingPositions:o,minimumFactionalPartSize:u,maximumFactionalPartSize:d,minimumExponentSize:f,suffix:t.suffix,picture:t.subpicture}},d=l.map(h);d.forEach(c);var p,f,g,v,m=d.map(u),y=n["minus-sign"],b=n["zero-digit"],w=n["decimal-separator"],x=n["grouping-separator"];if(1===m.length&&(m.push(JSON.parse(JSON.stringify(m[0]))),m[1].prefix=y+m[1].prefix),f=-1!==(p=t>=0?m[0]:m[1]).picture.indexOf(n.percent)?100*t:-1!==p.picture.indexOf(n["per-mille"])?1e3*t:t,0===p.minimumExponentSize)g=f;else{var A=Math.pow(10,p.scalingFactor),_=Math.pow(10,p.scalingFactor-1);for(g=f,v=0;g<_;)g*=10,v-=1;for(;g>A;)g/=10,v+=1}var k=function(t,e){var r=Math.abs(t).toFixed(e);return"0"!==b&&(r=r.split("").map((function(t){return t>="0"&&t<="9"?i[t.charCodeAt(0)-48]:t})).join("")),r},S=k(at(g,p.maximumFactionalPartSize),p.maximumFactionalPartSize),E=S.indexOf(".");for(-1===E?S+=w:S=S.replace(".",w);S.charAt(0)===b;)S=S.substring(1);for(;S.charAt(S.length-1)===b;)S=S.substring(0,S.length-1);E=S.indexOf(w);var M=p.minimumIntegerPartSize-E,T=p.minimumFactionalPartSize-(S.length-E-1);if(S=(M>0?new Array(M+1).join(b):"")+S,S+=T>0?new Array(T+1).join(b):"",E=S.indexOf(w),p.regularGrouping>0)for(var C=Math.floor((E-1)/p.regularGrouping),P=1;P<=C;P++)S=[S.slice(0,E-P*p.regularGrouping),x,S.slice(E-P*p.regularGrouping)].join("");else p.integerPartGroupingPositions.forEach((function(t){S=[S.slice(0,E-t),x,S.slice(E-t)].join(""),E++}));if(E=S.indexOf(w),p.fractionalPartGroupingPositions.forEach((function(t){S=[S.slice(0,t+E+1),x,S.slice(t+E+1)].join("")})),E=S.indexOf(w),-1!==p.picture.indexOf(w)&&E!==S.length-1||(S=S.substring(0,S.length-1)),void 0!==v){var I=k(v,0);(M=p.minimumExponentSize-I.length)>0&&(I=new Array(M+1).join(b)+I),S=S+n["exponent-separator"]+(v<0?y:"")+I}return S=p.prefix+S+p.suffix}}function tt(t,e){if(void 0!==t){if(t=at(t),(e=void 0===e?10:at(e))<2||e>36)throw{code:"D3100",stack:(new Error).stack,value:e};return t.toString(e)}}function et(t){var e;if(void 0!==t){if("number"==typeof t)e=t;else if("string"==typeof t&&/^-?[0-9]+(\.[0-9]+)?([Ee][-+]?[0-9]+)?$/.test(t)&&!isNaN(parseFloat(t))&&isFinite(t))e=parseFloat(t);else if(!0===t)e=1;else{if(!1!==t)throw{code:"D3030",value:t,stack:(new Error).stack,index:1};e=0}return e}}function rt(t){if(void 0!==t)return Math.abs(t)}function nt(t){if(void 0!==t)return Math.floor(t)}function it(t){if(void 0!==t)return Math.ceil(t)}function at(t,e){var r;if(void 0!==t){if(e){var n=t.toString().split("e");t=+(n[0]+"e"+(n[1]?+n[1]+e:e))}var i=(r=Math.round(t))-t;return.5===Math.abs(i)&&1===Math.abs(r%2)&&(r-=1),e&&(n=r.toString().split("e"),r=+(n[0]+"e"+(n[1]?+n[1]-e:-e))),Object.is(r,-0)&&(r=0),r}}function st(t){if(void 0!==t){if(t<0)throw{stack:(new Error).stack,code:"D3060",index:1,value:t};return Math.sqrt(t)}}function ot(t,e){var r;if(void 0!==t){if(r=Math.pow(t,e),!isFinite(r))throw{stack:(new Error).stack,code:"D3061",index:1,value:t,exp:e};return r}}function lt(){return Math.random()}function ht(t){if(void 0!==t){var e=!1;return Array.isArray(t)?1===t.length?e=ht(t[0]):t.length>1&&(e=t.filter((function(t){return ht(t)})).length>0):"string"==typeof t?t.length>0&&(e=!0):v(t)?0!==t&&(e=!0):null!==t&&"object"===n(t)?Object.keys(t).length>0&&(e=!0):"boolean"==typeof t&&!0===t&&(e=!0),e}}function ct(t){if(void 0!==t)return!ht(t)}function ut(t,e,r,n){var i=[e],a=k(t);return a>=2&&i.push(r),a>=3&&i.push(n),i}function dt(t,e){var r,n,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=b(),n=0;case 4:if(!(n<t.length)){i.next=12;break}return a=ut(e,t[n],n,t),i.delegateYield(e.apply(this,a),"t0",7);case 7:void 0!==(s=i.t0)&&r.push(s);case 9:n++,i.next=4;break;case 12:return i.abrupt("return",r);case 13:case"end":return i.stop()}}),h,this)}function pt(t,e){var r,n,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=b(),n=0;case 4:if(!(n<t.length)){i.next=13;break}return a=t[n],s=ut(e,a,n,t),i.delegateYield(e.apply(this,s),"t0",8);case 8:ht(i.t0)&&r.push(a);case 10:n++,i.next=4;break;case 13:return i.abrupt("return",r);case 14:case"end":return i.stop()}}),c,this)}function ft(t,e){var r,n,a,s,o,l,h;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=!1,a=0;case 4:if(!(a<t.length)){i.next=22;break}if(s=t[a],o=!0,void 0===e){i.next=12;break}return l=ut(e,s,a,t),i.delegateYield(e.apply(this,l),"t0",10);case 10:h=i.t0,o=ht(h);case 12:if(!o){i.next=19;break}if(r){i.next=18;break}n=s,r=!0,i.next=19;break;case 18:throw{stack:(new Error).stack,code:"D3138",index:a};case 19:a++,i.next=4;break;case 22:if(r){i.next=24;break}throw{stack:(new Error).stack,code:"D3139"};case 24:return i.abrupt("return",n);case 25:case"end":return i.stop()}}),u,this)}function gt(){for(var t=[],e=Array.prototype.slice.call(arguments),r=Math.min.apply(Math,e.map((function(t){return Array.isArray(t)?t.length:0}))),n=0;n<r;n++){var i=e.map((function(t){return t[n]}));t.push(i)}return t}function vt(t,e,r){var n,a,s,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!((a=k(e))<2)){i.next=5;break}throw{stack:(new Error).stack,code:"D3050",index:1};case 5:void 0===r&&t.length>0?(n=t[0],s=1):(n=r,s=0);case 6:if(!(s<t.length)){i.next=15;break}return o=[n,t[s]],a>=3&&o.push(s),a>=4&&o.push(t),i.delegateYield(e.apply(this,o),"t0",11);case 11:n=i.t0,s++,i.next=6;break;case 15:return i.abrupt("return",n);case 16:case"end":return i.stop()}}),d,this)}function mt(t){var e=b();if(Array.isArray(t)){var r={};t.forEach((function(t){mt(t).forEach((function(t){r[t]=!0}))})),e=mt(r)}else null===t||"object"!==n(t)||A(t)||Object.keys(t).forEach((function(t){return e.push(t)}));return e}function yt(t,e){var r;if(Array.isArray(t)){r=b();for(var i=0;i<t.length;i++){var a=yt(t[i],e);void 0!==a&&(Array.isArray(a)?a.forEach((function(t){return r.push(t)})):r.push(a))}}else null!==t&&"object"===n(t)&&(r=t[e]);return r}function bt(t,e){return void 0===t?e:void 0===e?t:(Array.isArray(t)||(t=b(t)),Array.isArray(e)||(e=[e]),t.concat(e))}function wt(t){return void 0!==t}function xt(t){var e=b();if(Array.isArray(t))t.forEach((function(t){e=bt(e,xt(t))}));else if(null===t||"object"!==n(t)||A(t))e=t;else for(var r in t){var i={};i[r]=t[r],e.push(i)}return e}function At(t){if(void 0!==t){var e={};return t.forEach((function(t){for(var r in t)e[r]=t[r]})),e}}function _t(t){if(void 0!==t){if(t.length<=1)return t;for(var e=t.length,r=new Array(e),n=0;n<e;n++)r[e-n-1]=t[n];return r}}function kt(t,e){var r,n,a,s;return i().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:r=b(),o.t0=i().keys(t);case 2:if((o.t1=o.t0()).done){o.next=10;break}return n=o.t1.value,a=ut(e,t[n],n,t),o.delegateYield(e.apply(this,a),"t2",6);case 6:void 0!==(s=o.t2)&&r.push(s),o.next=2;break;case 10:return o.abrupt("return",r);case 11:case"end":return o.stop()}}),p,this)}function St(t){throw{code:"D3137",stack:(new Error).stack,message:t||"$error() function evaluated"}}function Et(t,e){if(!t)throw{code:"D3141",stack:(new Error).stack,message:e||"$assert() statement failed"}}function Mt(t){if(void 0!==t)return null===t?"null":v(t)?"number":"string"==typeof t?"string":"boolean"==typeof t?"boolean":Array.isArray(t)?"array":x(t)?"function":"object"}function Tt(t,e){var r,n,a,s;return i().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(void 0!==t){o.next=2;break}return o.abrupt("return",void 0);case 2:if(!(t.length<=1)){o.next=4;break}return o.abrupt("return",t);case 4:if(void 0!==e){o.next=10;break}if(y(t)||m(t)){o.next=7;break}throw{stack:(new Error).stack,code:"D3070",index:1};case 7:r=i().mark((function t(e,r){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",e>r);case 1:case"end":return t.stop()}}),t)})),o.next=11;break;case 10:r=e;case 11:return n=i().mark((function t(e,n){var a,s;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return a=i().mark((function t(e,n,a){return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(0!==n.length){i.next=4;break}Array.prototype.push.apply(e,a),i.next=16;break;case 4:if(0!==a.length){i.next=8;break}Array.prototype.push.apply(e,n),i.next=16;break;case 8:return i.delegateYield(r(n[0],a[0]),"t0",9);case 9:if(!i.t0){i.next=14;break}return e.push(a[0]),i.delegateYield(t(e,n,a.slice(1)),"t1",12);case 12:i.next=16;break;case 14:return e.push(n[0]),i.delegateYield(t(e,n.slice(1),a),"t2",16);case 16:case"end":return i.stop()}}),t)})),s=[],t.delegateYield(a(s,e,n),"t0",3);case 3:return t.abrupt("return",s);case 4:case"end":return t.stop()}}),t)})),a=i().mark((function t(e){var r,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(Array.isArray(e)&&!(e.length<=1)){i.next=4;break}return i.abrupt("return",e);case 4:return r=Math.floor(e.length/2),a=e.slice(0,r),s=e.slice(r),i.delegateYield(t(a),"t0",8);case 8:return a=i.t0,i.delegateYield(t(s),"t1",10);case 10:return s=i.t1,i.delegateYield(n(a,s),"t2",12);case 12:return i.abrupt("return",i.t2);case 13:case"end":return i.stop()}}),t)})),o.delegateYield(a(t),"t0",14);case 14:return s=o.t0,o.abrupt("return",s);case 16:case"end":return o.stop()}}),f)}function Ct(t){if(void 0!==t){if(t.length<=1)return t;for(var e=new Array(t.length),r=0;r<t.length;r++){var n=Math.floor(Math.random()*(r+1));r!==n&&(e[r]=e[n]),e[n]=t[r]}return e}}function Pt(t){if(void 0!==t){if(!Array.isArray(t)||t.length<=1)return t;for(var e=w(t)?b():[],r=0;r<t.length;r++){for(var n=t[r],i=!1,a=0;a<e.length;a++)if(S(n,e[a])){i=!0;break}i||e.push(n)}return e}}function It(t,e){var r,n,a,s;return i().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:r={},o.t0=i().keys(t);case 2:if((o.t1=o.t0()).done){o.next=11;break}return n=o.t1.value,a=t[n],s=ut(e,a,n,t),o.delegateYield(e.apply(this,s),"t2",7);case 7:ht(o.t2)&&(r[n]=a),o.next=2;break;case 11:return 0===Object.keys(r).length&&(r=void 0),o.abrupt("return",r);case 13:case"end":return o.stop()}}),g,this)}return{sum:M,count:T,max:C,min:P,average:I,string:R,substring:O,substringBefore:L,substringAfter:D,lowercase:F,uppercase:N,length:j,trim:B,pad:z,match:H,contains:U,replace:G,split:Q,join:J,formatNumber:Z,formatBase:tt,number:et,floor:nt,ceil:it,round:at,abs:rt,sqrt:st,power:ot,random:lt,boolean:ht,not:ct,map:dt,zip:gt,filter:pt,single:ft,foldLeft:vt,sift:It,keys:mt,lookup:yt,append:bt,exists:wt,spread:xt,merge:At,reverse:_t,each:kt,error:St,assert:Et,type:Mt,sort:Tt,shuffle:Ct,distinct:Pt,base64encode:Y,base64decode:V,encodeUrlComponent:q,encodeUrl:X,decodeUrlComponent:$,decodeUrl:K}}();r.exports=s}).call(this)}).call(this,void 0!==t?t:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utils":6}],3:[function(t,e,r){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(){
5
5
  /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
6
- i=function(){return e};var t,e={},r=Object.prototype,o=r.hasOwnProperty,a=Object.defineProperty||function(t,e,r){t[e]=r.value},s="function"==typeof Symbol?Symbol:{},c=s.iterator||"@@iterator",u=s.asyncIterator||"@@asyncIterator",l=s.toStringTag||"@@toStringTag";function h(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{h({},"")}catch(t){h=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var i=e&&e.prototype instanceof b?e:b,o=Object.create(i.prototype),s=new C(n||[]);return a(o,"_invoke",{value:T(t,r,s)}),o}function d(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var p="suspendedStart",g="suspendedYield",v="executing",y="completed",m={};function b(){}function x(){}function w(){}var A={};h(A,c,(function(){return this}));var _=Object.getPrototypeOf,k=_&&_(_(R([])));k&&k!==r&&o.call(k,c)&&(A=k);var E=w.prototype=b.prototype=Object.create(A);function S(t){["next","throw","return"].forEach((function(e){h(t,e,(function(t){return this._invoke(e,t)}))}))}function M(t,e){function r(i,a,s,c){var u=d(t[i],t,a);if("throw"!==u.type){var l=u.arg,h=l.value;return h&&"object"==n(h)&&o.call(h,"__await")?e.resolve(h.__await).then((function(t){r("next",t,s,c)}),(function(t){r("throw",t,s,c)})):e.resolve(h).then((function(t){l.value=t,s(l)}),(function(t){return r("throw",t,s,c)}))}c(u.arg)}var i;a(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,i){r(t,n,e,i)}))}return i=i?i.then(o,o):o()}})}function T(e,r,n){var i=p;return function(o,a){if(i===v)throw new Error("Generator is already running");if(i===y){if("throw"===o)throw a;return{value:t,done:!0}}for(n.method=o,n.arg=a;;){var s=n.delegate;if(s){var c=P(s,n);if(c){if(c===m)continue;return c}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===p)throw i=y,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=v;var u=d(e,r,n);if("normal"===u.type){if(i=n.done?y:g,u.arg===m)continue;return{value:u.arg,done:n.done}}"throw"===u.type&&(i=y,n.method="throw",n.arg=u.arg)}}}function P(e,r){var n=r.method,i=e.iterator[n];if(i===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,P(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),m;var o=d(i,e.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,m;var a=o.arg;return a?a.done?(r[e.resultName]=a.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,m):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,m)}function O(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function I(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function C(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(O,this),this.reset(!0)}function R(e){if(e||""===e){var r=e[c];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var i=-1,a=function r(){for(;++i<e.length;)if(o.call(e,i))return r.value=e[i],r.done=!1,r;return r.value=t,r.done=!0,r};return a.next=a}}throw new TypeError(n(e)+" is not iterable")}return x.prototype=w,a(E,"constructor",{value:w,configurable:!0}),a(w,"constructor",{value:x,configurable:!0}),x.displayName=h(w,l,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===x||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,h(t,l,"GeneratorFunction")),t.prototype=Object.create(E),t},e.awrap=function(t){return{__await:t}},S(M.prototype),h(M.prototype,u,(function(){return this})),e.AsyncIterator=M,e.async=function(t,r,n,i,o){void 0===o&&(o=Promise);var a=new M(f(t,r,n,i),o);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},S(E),h(E,l,"Generator"),h(E,c,(function(){return this})),h(E,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=R,C.prototype={constructor:C,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(I),!e)for(var r in this)"t"===r.charAt(0)&&o.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,i){return s.type="throw",s.arg=e,r.next=n,i&&(r.method="next",r.arg=t),!!i}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var c=o.call(a,"catchLoc"),u=o.call(a,"finallyLoc");if(c&&u){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,m):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),m},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),I(r),m}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;I(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:R(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),m}},e}var o=t("./datetime"),a=t("./functions"),s=t("./utils"),c=t("./parser"),u=t("./signature"),l=function(){var t=i().mark(B),e=i().mark(U),r=i().mark(H),l=i().mark(G),h=i().mark(W),f=i().mark($),d=i().mark(q),p=i().mark(X),g=i().mark(ot),v=i().mark(ct),y=i().mark(ht),m=i().mark(ft),b=i().mark(dt),x=i().mark(vt),w=i().mark(bt),A=i().mark(xt),_=i().mark(wt),k=i().mark(At),E=i().mark(kt),S=i().mark(St),M=i().mark(Pt),T=i().mark(Ct),P=s.isNumeric,O=s.isArrayOfStrings,I=s.isArrayOfNumbers,C=s.createSequence,R=s.isSequence,j=s.isFunction,L=s.isLambda,D=s.isIterable,z=s.getFunctionArity,N=s.isDeepEqual,F=jt(null);function B(e,r,n){var o,a,s,c;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:(a=n.lookup("__evaluate_entry"))&&a(e,r,n),t.t0=e.type,t.next="path"===t.t0?5:"binary"===t.t0?8:"unary"===t.t0?11:"name"===t.t0?14:"string"===t.t0||"number"===t.t0||"value"===t.t0?16:"wildcard"===t.t0?18:"descendant"===t.t0?20:"parent"===t.t0?22:"condition"===t.t0?24:"block"===t.t0?27:"bind"===t.t0?30:"regex"===t.t0?33:"function"===t.t0?35:"variable"===t.t0?38:"lambda"===t.t0?40:"partial"===t.t0?42:"apply"===t.t0?45:"transform"===t.t0?48:50;break;case 5:return t.delegateYield(U(e,r,n),"t1",6);case 6:return o=t.t1,t.abrupt("break",50);case 8:return t.delegateYield(q(e,r,n),"t2",9);case 9:return o=t.t2,t.abrupt("break",50);case 11:return t.delegateYield(X(e,r,n),"t3",12);case 12:return o=t.t3,t.abrupt("break",50);case 14:return o=V(e,r),t.abrupt("break",50);case 16:return o=K(e),t.abrupt("break",50);case 18:return o=Q(e,r),t.abrupt("break",50);case 20:return o=Z(e,r),t.abrupt("break",50);case 22:return o=n.lookup(e.slot.label),t.abrupt("break",50);case 24:return t.delegateYield(ft(e,r,n),"t4",25);case 25:return o=t.t4,t.abrupt("break",50);case 27:return t.delegateYield(dt(e,r,n),"t5",28);case 28:return o=t.t5,t.abrupt("break",50);case 30:return t.delegateYield(ht(e,r,n),"t6",31);case 31:return o=t.t6,t.abrupt("break",50);case 33:return o=pt(e),t.abrupt("break",50);case 35:return t.delegateYield(xt(e,r,n),"t7",36);case 36:return o=t.t7,t.abrupt("break",50);case 38:return o=gt(e,r,n),t.abrupt("break",50);case 40:return o=_t(e,r,n),t.abrupt("break",50);case 42:return t.delegateYield(kt(e,r,n),"t8",43);case 43:return o=t.t8,t.abrupt("break",50);case 45:return t.delegateYield(bt(e,r,n),"t9",46);case 46:return o=t.t9,t.abrupt("break",50);case 48:return o=yt(e,r,n),t.abrupt("break",50);case 50:if(!n.async||null!=o&&"function"==typeof o.then||(o=Promise.resolve(o)),!n.async||"function"!=typeof o.then||!e.nextFunction||"function"!=typeof o[e.nextFunction]){t.next=54;break}t.next=57;break;case 54:return t.next=56,o;case 56:o=t.sent;case 57:if(!Object.prototype.hasOwnProperty.call(e,"predicate")){t.next=65;break}s=0;case 59:if(!(s<e.predicate.length)){t.next=65;break}return t.delegateYield($(e.predicate[s].expr,o,n),"t10",61);case 61:o=t.t10;case 62:s++,t.next=59;break;case 65:if("path"===e.type||!Object.prototype.hasOwnProperty.call(e,"group")){t.next=68;break}return t.delegateYield(ct(e.group,o,n),"t11",67);case 67:o=t.t11;case 68:return(c=n.lookup("__evaluate_exit"))&&c(e,r,n,o),o&&R(o)&&!o.tupleStream&&(e.keepArray&&(o.keepSingleton=!0),0===o.length?o=void 0:1===o.length&&(o=o.keepSingleton?o:o[0])),t.abrupt("return",o);case 72:case"end":return t.stop()}}),t)}function U(t,r,n){var o,a,s,c,u,l;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:o=Array.isArray(r)&&"variable"!==t.steps[0].type?r:C(r),s=!1,c=void 0,u=0;case 4:if(!(u<t.steps.length)){e.next=25;break}if((l=t.steps[u]).tuple&&(s=!0),0!==u||!l.consarray){e.next=12;break}return e.delegateYield(B(l,o,n),"t0",9);case 9:a=e.t0,e.next=19;break;case 12:if(!s){e.next=17;break}return e.delegateYield(W(l,o,c,n),"t1",14);case 14:c=e.t1,e.next=19;break;case 17:return e.delegateYield(H(l,o,n,u===t.steps.length-1),"t2",18);case 18:a=e.t2;case 19:if(s||void 0!==a&&0!==a.length){e.next=21;break}return e.abrupt("break",25);case 21:void 0===l.focus&&(o=a);case 22:u++,e.next=4;break;case 25:if(s)if(t.tuple)a=c;else for(a=C(),u=0;u<c.length;u++)a.push(c[u]["@"]);if(t.keepSingletonArray&&(Array.isArray(a)&&a.cons&&!a.sequence&&(a=C(a)),a.keepSingleton=!0),!t.hasOwnProperty("group")){e.next=30;break}return e.delegateYield(ct(t.group,s?c:a,n),"t3",29);case 29:a=e.t3;case 30:return e.abrupt("return",a);case 31:case"end":return e.stop()}}),e)}function Y(t,e){var r=jt(t);for(var n in e)r.bind(n,e[n]);return r}function H(t,e,n,o){var a,s,c,u,l;return i().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if("sort"!==t.type){r.next=7;break}return r.delegateYield(vt(t,e,n),"t0",2);case 2:if(a=r.t0,!t.stages){r.next=6;break}return r.delegateYield(G(t.stages,a,n),"t1",5);case 5:a=r.t1;case 6:return r.abrupt("return",a);case 7:a=C(),s=0;case 9:if(!(s<e.length)){r.next=24;break}return r.delegateYield(B(t,e[s],n),"t2",11);case 11:if(c=r.t2,!t.stages){r.next=20;break}u=0;case 14:if(!(u<t.stages.length)){r.next=20;break}return r.delegateYield($(t.stages[u].expr,c,n),"t3",16);case 16:c=r.t3;case 17:u++,r.next=14;break;case 20:void 0!==c&&a.push(c);case 21:s++,r.next=9;break;case 24:return l=C(),o&&1===a.length&&Array.isArray(a[0])&&!R(a[0])?l=a[0]:a.forEach((function(t){!Array.isArray(t)||t.cons?l.push(t):t.forEach((function(t){return l.push(t)}))})),r.abrupt("return",l);case 27:case"end":return r.stop()}}),r)}function G(t,e,r){var n,o,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:n=e,o=0;case 2:if(!(o<t.length)){i.next=15;break}a=t[o],i.t0=a.type,i.next="filter"===i.t0?7:"index"===i.t0?10:12;break;case 7:return i.delegateYield($(a.expr,n,r),"t1",8);case 8:return n=i.t1,i.abrupt("break",12);case 10:for(s=0;s<n.length;s++)n[s][a.value]=s;return i.abrupt("break",12);case 12:o++,i.next=2;break;case 15:return i.abrupt("return",n);case 16:case"end":return i.stop()}}),l)}function W(t,e,r,n){var o,a,s,c,u,l,f,d;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if("sort"!==t.type){i.next=15;break}if(!r){i.next=6;break}return i.delegateYield(vt(t,r,n),"t0",3);case 3:o=i.t0,i.next=11;break;case 6:return i.delegateYield(vt(t,e,n),"t1",7);case 7:for(a=i.t1,(o=C()).tupleStream=!0,s=0;s<a.length;s++)(c={"@":a[s]})[t.index]=s,o.push(c);case 11:if(!t.stages){i.next=14;break}return i.delegateYield(G(t.stages,o,n),"t2",13);case 13:o=i.t2;case 14:return i.abrupt("return",o);case 15:(o=C()).tupleStream=!0,u=n,void 0===r&&(r=e.map((function(t){return{"@":t}}))),l=0;case 20:if(!(l<r.length)){i.next=28;break}return u=Y(n,r[l]),i.delegateYield(B(t,r[l]["@"],u),"t3",23);case 23:if(void 0!==(f=i.t3))for(Array.isArray(f)||(f=[f]),d=0;d<f.length;d++)c={},Object.assign(c,r[l]),f.tupleStream?Object.assign(c,f[d]):(t.focus?(c[t.focus]=f[d],c["@"]=r[l]["@"]):c["@"]=f[d],t.index&&(c[t.index]=d),t.ancestor&&(c[t.ancestor.label]=r[l]["@"])),o.push(c);case 25:l++,i.next=20;break;case 28:if(!t.stages){i.next=31;break}return i.delegateYield(G(t.stages,o,n),"t4",30);case 30:o=i.t4;case 31:return i.abrupt("return",o);case 32:case"end":return i.stop()}}),h)}function $(t,e,r){var n,o,s,c,u,l;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(n=C(),e&&e.tupleStream&&(n.tupleStream=!0),Array.isArray(e)||(e=C(e)),"number"!==t.type){i.next=10;break}(o=Math.floor(t.value))<0&&(o=e.length+o),void 0!==(s=e[o])&&(Array.isArray(s)?n=s:n.push(s)),i.next=23;break;case 10:o=0;case 11:if(!(o<e.length)){i.next=23;break}return s=e[o],c=s,u=r,e.tupleStream&&(c=s["@"],u=Y(r,s)),i.delegateYield(B(t,c,u),"t0",17);case 17:l=i.t0,P(l)&&(l=[l]),I(l)?l.forEach((function(t){var r=Math.floor(t);r<0&&(r=e.length+r),r===o&&n.push(s)})):a.boolean(l)&&n.push(s);case 20:o++,i.next=11;break;case 23:return i.abrupt("return",n);case 24:case"end":return i.stop()}}),f)}function q(t,e,r){var n,o,a,s,c;return i().wrap((function(u){for(;;)switch(u.prev=u.next){case 0:return u.delegateYield(B(t.lhs,e,r),"t0",1);case 1:if(o=u.t0,a=t.value,s=i().mark((function n(){return i().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(B(t.rhs,e,r),"t0",1);case 1:return n.abrupt("return",n.t0);case 2:case"end":return n.stop()}}),n)})),"and"!==a&&"or"!==a){u.next=15;break}return u.prev=5,u.delegateYield(ot(o,s,a),"t1",7);case 7:return u.abrupt("return",u.t1);case 10:throw u.prev=10,u.t2=u.catch(5),u.t2.position=t.position,u.t2.token=a,u.t2;case 15:return u.delegateYield(s(),"t3",16);case 16:c=u.t3,u.prev=17,u.t4=a,u.next="+"===u.t4||"-"===u.t4||"*"===u.t4||"/"===u.t4||"%"===u.t4?21:"="===u.t4||"!="===u.t4?23:"<"===u.t4||"<="===u.t4||">"===u.t4||">="===u.t4?25:"&"===u.t4?27:".."===u.t4?29:"in"===u.t4?31:33;break;case 21:return n=et(o,c,a),u.abrupt("break",33);case 23:return n=rt(o,c,a),u.abrupt("break",33);case 25:return n=nt(o,c,a),u.abrupt("break",33);case 27:return n=st(o,c),u.abrupt("break",33);case 29:return n=lt(o,c),u.abrupt("break",33);case 31:return n=it(o,c),u.abrupt("break",33);case 33:u.next=40;break;case 35:throw u.prev=35,u.t5=u.catch(17),u.t5.position=t.position,u.t5.token=a,u.t5;case 40:return u.abrupt("return",n);case 41:case"end":return u.stop()}}),d,null,[[5,10],[17,35]])}function X(t,e,r){var n,o,s,c;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:i.t0=t.value,i.next="-"===i.t0?3:"["===i.t0?15:"{"===i.t0?27:30;break;case 3:return i.delegateYield(B(t.expression,e,r),"t1",4);case 4:if(void 0!==(n=i.t1)){i.next=9;break}n=void 0,i.next=14;break;case 9:if(!P(n)){i.next=13;break}n=-n,i.next=14;break;case 13:throw{code:"D1002",stack:(new Error).stack,position:t.position,token:t.value,value:n};case 14:return i.abrupt("break",30);case 15:n=[],o=0;case 17:if(!(o<t.expressions.length)){i.next=25;break}return s=t.expressions[o],i.delegateYield(B(s,e,r),"t2",20);case 20:void 0!==(c=i.t2)&&("["===s.value?n.push(c):n=a.append(n,c));case 22:o++,i.next=17;break;case 25:return t.consarray&&Object.defineProperty(n,"cons",{enumerable:!1,configurable:!1,value:!0}),i.abrupt("break",30);case 27:return i.delegateYield(ct(t,e,r),"t3",28);case 28:return n=i.t3,i.abrupt("break",30);case 30:return i.abrupt("return",n);case 31:case"end":return i.stop()}}),p)}function V(t,e,r){return a.lookup(e,t.value)}function K(t){return t.value}function Q(t,e){var r=C();return Array.isArray(e)&&e.outerWrapper&&e.length>0&&(e=e[0]),null!==e&&"object"===n(e)&&Object.keys(e).forEach((function(t){var n=e[t];Array.isArray(n)?(n=J(n),r=a.append(r,n)):r.push(n)})),r}function J(t,e){return void 0===e&&(e=[]),Array.isArray(t)?t.forEach((function(t){J(t,e)})):e.push(t),e}function Z(t,e){var r,n=C();return void 0!==e&&(tt(e,n),r=1===n.length?n[0]:n),r}function tt(t,e){Array.isArray(t)||e.push(t),Array.isArray(t)?t.forEach((function(t){tt(t,e)})):null!==t&&"object"===n(t)&&Object.keys(t).forEach((function(r){tt(t[r],e)}))}function et(t,e,r){var n;if(void 0!==t&&!P(t))throw{code:"T2001",stack:(new Error).stack,value:t};if(void 0!==e&&!P(e))throw{code:"T2002",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return n;switch(r){case"+":n=t+e;break;case"-":n=t-e;break;case"*":n=t*e;break;case"/":n=t/e;break;case"%":n=t%e}return n}function rt(t,e,r){var i,o=n(t),a=n(e);if("undefined"===o||"undefined"===a)return!1;switch(r){case"=":i=N(t,e);break;case"!=":i=!N(t,e)}return i}function nt(t,e,r){var i,o=n(t),a=n(e);if("undefined"!==o&&"string"!==o&&"number"!==o||"undefined"!==a&&"string"!==a&&"number"!==a)throw{code:"T2010",stack:(new Error).stack,value:"string"!==o&&"number"!==o?t:e};if("undefined"!==o&&"undefined"!==a){if(o!==a)throw{code:"T2009",stack:(new Error).stack,value:t,value2:e};switch(r){case"<":i=t<e;break;case"<=":i=t<=e;break;case">":i=t>e;break;case">=":i=t>=e}return i}}function it(t,e){var r=!1;if(void 0===t||void 0===e)return!1;Array.isArray(e)||(e=[e]);for(var n=0;n<e.length;n++)if(e[n]===t){r=!0;break}return r}function ot(t,e,r){var n,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:o=at(t),i.t0=r,i.next="and"===i.t0?4:"or"===i.t0?12:20;break;case 4:if(i.t1=o,!i.t1){i.next=10;break}return i.t2=at,i.delegateYield(e(),"t3",8);case 8:i.t4=i.t3,i.t1=(0,i.t2)(i.t4);case 10:return n=i.t1,i.abrupt("break",20);case 12:if(i.t5=o,i.t5){i.next=18;break}return i.t6=at,i.delegateYield(e(),"t7",16);case 16:i.t8=i.t7,i.t5=(0,i.t6)(i.t8);case 18:return n=i.t5,i.abrupt("break",20);case 20:return i.abrupt("return",n);case 21:case"end":return i.stop()}}),g)}function at(t){var e=a.boolean(t);return void 0!==e&&e}function st(t,e){var r="",n="";return void 0!==t&&(r=a.string(t)),void 0!==e&&(n=a.string(e)),r.concat(n)}function ct(t,e,r){var n,o,s,c,u,l,h,f,d,p,g,y,m;return i().wrap((function(v){for(;;)switch(v.prev=v.next){case 0:n={},o={},s=!(!e||!e.tupleStream),Array.isArray(e)||(e=C(e)),0===e.length&&e.push(void 0),c=0;case 6:if(!(c<e.length)){v.next=31;break}u=e[c],l=s?Y(r,u):r,h=0;case 10:if(!(h<t.lhs.length)){v.next=28;break}return f=t.lhs[h],v.delegateYield(B(f[0],s?u["@"]:u,l),"t0",13);case 13:if("string"==typeof(d=v.t0)||void 0===d){v.next=16;break}throw{code:"T1003",stack:(new Error).stack,position:t.position,value:d};case 16:if(void 0===d){v.next=25;break}if(p={data:u,exprIndex:h},!o.hasOwnProperty(d)){v.next=24;break}if(o[d].exprIndex===h){v.next=21;break}throw{code:"D1009",stack:(new Error).stack,position:t.position,value:d};case 21:o[d].data=a.append(o[d].data,u),v.next=25;break;case 24:o[d]=p;case 25:h++,v.next=10;break;case 28:c++,v.next=6;break;case 31:v.t1=i().keys(o);case 32:if((v.t2=v.t1()).done){v.next=43;break}return d=v.t2.value,p=o[d],g=p.data,l=r,s&&(y=ut(p.data),g=y["@"],delete y["@"],l=Y(r,y)),v.delegateYield(B(t.lhs[p.exprIndex][1],g,l),"t3",39);case 39:void 0!==(m=v.t3)&&(n[d]=m),v.next=32;break;case 43:return v.abrupt("return",n);case 44:case"end":return v.stop()}}),v)}function ut(t){if(!Array.isArray(t))return t;var e={};Object.assign(e,t[0]);for(var r=1;r<t.length;r++)for(var n in t[r])e[n]=a.append(e[n],t[r][n]);return e}function lt(t,e){var r;if(void 0!==t&&!Number.isInteger(t))throw{code:"T2003",stack:(new Error).stack,value:t};if(void 0!==e&&!Number.isInteger(e))throw{code:"T2004",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return r;if(t>e)return r;var n=e-t+1;if(n>1e7)throw{code:"D2014",stack:(new Error).stack,value:n};r=new Array(n);for(var i=t,o=0;i<=e;i++,o++)r[o]=i;return r.sequence=!0,r}function ht(t,e,r){var n;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(B(t.rhs,e,r),"t0",1);case 1:return n=i.t0,r.bind(t.lhs.value,n),i.abrupt("return",n);case 4:case"end":return i.stop()}}),y)}function ft(t,e,r){var n,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(B(t.condition,e,r),"t0",1);case 1:if(o=i.t0,!a.boolean(o)){i.next=7;break}return i.delegateYield(B(t.then,e,r),"t1",4);case 4:n=i.t1,i.next=10;break;case 7:if(void 0===t.else){i.next=10;break}return i.delegateYield(B(t.else,e,r),"t2",9);case 9:n=i.t2;case 10:return i.abrupt("return",n);case 11:case"end":return i.stop()}}),m)}function dt(t,e,r){var n,o,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:o=jt(r),a=0;case 2:if(!(a<t.expressions.length)){i.next=8;break}return i.delegateYield(B(t.expressions[a],e,o),"t0",4);case 4:n=i.t0;case 5:a++,i.next=2;break;case 8:return i.abrupt("return",n);case 9:case"end":return i.stop()}}),b)}function pt(t){var e=new zt.RegexEngine(t.value),r=function r(n,i){var o;e.lastIndex=i||0;var a=e.exec(n);if(null!==a){if(o={match:a[0],start:a.index,end:a.index+a[0].length,groups:[]},a.length>1)for(var s=1;s<a.length;s++)o.groups.push(a[s]);o.next=function(){if(!(e.lastIndex>=n.length)){var i=r(n,e.lastIndex);if(i&&""===i.match)throw{code:"D1004",stack:(new Error).stack,position:t.position,value:t.value.source};return i}}}return o};return r}function gt(t,e,r){return""===t.value?e&&e.outerWrapper?e[0]:e:r.lookup(t.value)}function vt(t,e,r){var o,s,c,u,l;return i().wrap((function(h){for(;;)switch(h.prev=h.next){case 0:return s=e,c=!!e.tupleStream,u=i().mark((function e(o,a){var s,u,l,h,f,d,p,g,v;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:s=0,u=0;case 2:if(!(0===s&&u<t.terms.length)){e.next=35;break}return l=t.terms[u],h=o,f=r,c&&(h=o["@"],f=Y(r,o)),e.delegateYield(B(l.expression,h,f),"t0",8);case 8:return d=e.t0,h=a,f=r,c&&(h=a["@"],f=Y(r,a)),e.delegateYield(B(l.expression,h,f),"t1",13);case 13:if(p=e.t1,g=n(d),v=n(p),"undefined"!==g){e.next=19;break}return s="undefined"===v?0:1,e.abrupt("continue",32);case 19:if("undefined"!==v){e.next=22;break}return s=-1,e.abrupt("continue",32);case 22:if(!("string"!==g&&"number"!==g||"string"!==v&&"number"!==v)){e.next=24;break}throw{code:"T2008",stack:(new Error).stack,position:t.position,value:"string"!==g&&"number"!==g?d:p};case 24:if(g===v){e.next=26;break}throw{code:"T2007",stack:(new Error).stack,position:t.position,value:d,value2:p};case 26:if(d!==p){e.next=30;break}return e.abrupt("continue",32);case 30:s=d<p?-1:1;case 31:!0===l.descending&&(s=-s);case 32:u++,e.next=2;break;case 35:return e.abrupt("return",1===s);case 36:case"end":return e.stop()}}),e)})),l={environment:r,input:e},h.delegateYield(a.sort.apply(l,[s,u]),"t0",5);case 5:return o=h.t0,h.abrupt("return",o);case 7:case"end":return h.stop()}}),x)}function yt(t,e,r){var o=i().mark((function e(o){var a,s,c,u,l,h,f,d,p,g,v;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==o){e.next=2;break}return e.abrupt("return",void 0);case 2:if(a=r.lookup("clone"),j(a)){e.next=5;break}throw{code:"T2013",stack:(new Error).stack,position:t.position};case 5:return e.delegateYield(wt(a,[o],null,r),"t0",6);case 6:return s=e.t0,e.delegateYield(B(t.pattern,s,r),"t1",8);case 8:if(void 0===(c=e.t1)){e.next=35;break}Array.isArray(c)||(c=[c]),u=0;case 12:if(!(u<c.length)){e.next=35;break}if(!(l=c[u])||!(l.isPrototypeOf(s)||l instanceof Object.constructor)){e.next=16;break}throw{code:"D1010",stack:(new Error).stack,position:t.position};case 16:return e.delegateYield(B(t.update,l,r),"t2",17);case 17:if(h=e.t2,"undefined"===(f=n(h))){e.next=23;break}if("object"===f&&null!==h&&!Array.isArray(h)){e.next=22;break}throw{code:"T2011",stack:(new Error).stack,position:t.update.position,value:h};case 22:for(d in h)l[d]=h[d];case 23:if(void 0===t.delete){e.next=32;break}return e.delegateYield(B(t.delete,l,r),"t3",25);case 25:if(void 0===(p=e.t3)){e.next=32;break}if(g=p,Array.isArray(p)||(p=[p]),O(p)){e.next=31;break}throw{code:"T2012",stack:(new Error).stack,position:t.delete.position,value:g};case 31:for(v=0;v<p.length;v++)"object"===n(l)&&null!==l&&delete l[p[v]];case 32:u++,e.next=12;break;case 35:return e.abrupt("return",s);case 36:case"end":return e.stop()}}),e)}));return It(o,"<(oa):o>")}var mt=c("function($f, $g) { function($x){ $g($f($x)) } }");function bt(t,e,r){var n,o,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(B(t.lhs,e,r),"t0",1);case 1:if(o=i.t0,"function"!==t.rhs.type){i.next=7;break}return i.delegateYield(xt(t.rhs,e,r,{context:o}),"t1",4);case 4:n=i.t1,i.next=20;break;case 7:return i.delegateYield(B(t.rhs,e,r),"t2",8);case 8:if(a=i.t2,j(a)){i.next=11;break}throw{code:"T2006",stack:(new Error).stack,position:t.position,value:a};case 11:if(!j(o)){i.next=18;break}return i.delegateYield(B(mt,null,r),"t3",13);case 13:return s=i.t3,i.delegateYield(wt(s,[o,a],null,r),"t4",15);case 15:n=i.t4,i.next=20;break;case 18:return i.delegateYield(wt(a,[o],null,r),"t5",19);case 19:n=i.t5;case 20:return i.abrupt("return",n);case 21:case"end":return i.stop()}}),w)}function xt(t,e,r,o){var a,s,c,u,l,h;return i().wrap((function(f){for(;;)switch(f.prev=f.next){case 0:return f.delegateYield(B(t.procedure,e,r),"t0",1);case 1:if(void 0!==(s=f.t0)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){f.next=4;break}throw{code:"T1005",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 4:c=[],void 0!==o&&c.push(o.context),u=i().mark((function n(){var o,a;return i().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(B(t.arguments[l],e,r),"t0",1);case 1:o=n.t0,j(o)?(a=i().mark((function t(){var e,n,a,s=arguments;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(e=s.length,n=new Array(e),a=0;a<e;a++)n[a]=s[a];return t.delegateYield(wt(o,n,null,r),"t0",2);case 2:return t.abrupt("return",t.t0);case 3:case"end":return t.stop()}}),t)})),a.arity=z(o),c.push(a)):c.push(o);case 3:case"end":return n.stop()}}),n)})),l=0;case 8:if(!(l<t.arguments.length)){f.next=13;break}return f.delegateYield(u(),"t1",10);case 10:l++,f.next=8;break;case 13:return h="path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value,f.prev=14,"object"===n(s)&&(s.token=h,s.position=t.position),f.delegateYield(wt(s,c,e,r),"t2",17);case 17:a=f.t2,f.next=25;break;case 20:throw f.prev=20,f.t3=f.catch(14),f.t3.position||(f.t3.position=t.position),f.t3.token||(f.t3.token=h),f.t3;case 25:return f.abrupt("return",a);case 26:case"end":return f.stop()}}),A,null,[[14,20]])}function wt(t,e,r,n){var o,a,s,c;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(At(t,e,r,n),"t0",1);case 1:o=i.t0;case 2:if(!L(o)||!0!==o.thunk){i.next=21;break}return i.delegateYield(B(o.body.procedure,o.input,o.environment),"t1",4);case 4:a=i.t1,"variable"===o.body.procedure.type&&(a.token=o.body.procedure.value),a.position=o.body.procedure.position,s=[],c=0;case 9:if(!(c<o.body.arguments.length)){i.next=17;break}return i.t2=s,i.delegateYield(B(o.body.arguments[c],o.input,o.environment),"t3",12);case 12:i.t4=i.t3,i.t2.push.call(i.t2,i.t4);case 14:c++,i.next=9;break;case 17:return i.delegateYield(At(a,s,r,n),"t5",18);case 18:o=i.t5,i.next=2;break;case 21:return i.abrupt("return",o);case 22:case"end":return i.stop()}}),_)}function At(t,e,r,n){var o,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(i.prev=0,a=e,t&&(a=Et(t.signature,e,r)),!L(t)){i.next=8;break}return i.delegateYield(St(t,a),"t0",5);case 5:o=i.t0,i.next=24;break;case 8:if(!t||!0!==t._jsonata_function){i.next=16;break}if(s={environment:n,input:r},o=t.implementation.apply(s,a),!D(o)){i.next=14;break}return i.delegateYield(o,"t1",13);case 13:o=i.t1;case 14:i.next=24;break;case 16:if("function"!=typeof t){i.next=23;break}if(o=t.apply(r,a),!D(o)){i.next=21;break}return i.delegateYield(o,"t2",20);case 20:o=i.t2;case 21:i.next=24;break;case 23:throw{code:"T1006",stack:(new Error).stack};case 24:i.next=30;break;case 26:throw i.prev=26,i.t3=i.catch(0),t&&(void 0===i.t3.token&&void 0!==t.token&&(i.t3.token=t.token),i.t3.position=t.position||i.t3.position),i.t3;case 30:return i.abrupt("return",o);case 31:case"end":return i.stop()}}),k,null,[[0,26]])}function _t(t,e,r){var n={_jsonata_lambda:!0,input:e,environment:r,arguments:t.arguments,signature:t.signature,body:t.body};return!0===t.thunk&&(n.thunk=!0),n.apply=i().mark((function t(r,o){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.delegateYield(wt(n,o,e,r.environment),"t0",1);case 1:return t.abrupt("return",t.t0);case 2:case"end":return t.stop()}}),t)})),n}function kt(t,e,r){var n,o,a,s,c;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:o=[],a=0;case 2:if(!(a<t.arguments.length)){i.next=15;break}if("operator"!==(s=t.arguments[a]).type||"?"!==s.value){i.next=8;break}o.push(s),i.next=12;break;case 8:return i.t0=o,i.delegateYield(B(s,e,r),"t1",10);case 10:i.t2=i.t1,i.t0.push.call(i.t0,i.t2);case 12:a++,i.next=2;break;case 15:return i.delegateYield(B(t.procedure,e,r),"t3",16);case 16:if(void 0!==(c=i.t3)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){i.next=19;break}throw{code:"T1007",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 19:if(!L(c)){i.next=23;break}n=Mt(c,o),i.next=32;break;case 23:if(!c||!0!==c._jsonata_function){i.next=27;break}n=Tt(c.implementation,o),i.next=32;break;case 27:if("function"!=typeof c){i.next=31;break}n=Tt(c,o),i.next=32;break;case 31:throw{code:"T1008",stack:(new Error).stack,position:t.position,token:"path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value};case 32:return i.abrupt("return",n);case 33:case"end":return i.stop()}}),E)}function Et(t,e,r){return void 0===t?e:t.validate(e,r)}function St(t,e){var r,n;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(n=jt(t.environment),t.arguments.forEach((function(t,r){n.bind(t.value,e[r])})),"function"!=typeof t.body){i.next=7;break}return i.delegateYield(Pt(t.body,n),"t0",4);case 4:r=i.t0,i.next=9;break;case 7:return i.delegateYield(B(t.body,t.input,n),"t1",8);case 8:r=i.t1;case 9:return i.abrupt("return",r);case 10:case"end":return i.stop()}}),S)}function Mt(t,e){var r=jt(t.environment),n=[];return t.arguments.forEach((function(t,i){var o=e[i];o&&"operator"===o.type&&"?"===o.value?n.push(t):r.bind(t.value,o)})),{_jsonata_lambda:!0,input:t.input,environment:r,arguments:n,body:t.body}}function Tt(t,e){var r=Ot(t),n="function("+(r=r.map((function(t){return"$"+t.trim()}))).join(", ")+"){ _ }",i=c(n);return i.body=t,Mt(i,e)}function Pt(t,e){var r,n,o,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(r=Ot(t),n=r.map((function(t){return e.lookup(t.trim())})),o={environment:e},a=t.apply(o,n),!D(a)){i.next=7;break}return i.delegateYield(a,"t0",6);case 6:a=i.t0;case 7:return i.abrupt("return",a);case 8:case"end":return i.stop()}}),M)}function Ot(t){var e=t.toString();return/\(([^)]*)\)/.exec(e)[1].split(",")}function It(t,e){var r={_jsonata_function:!0,implementation:t};return void 0!==e&&(r.signature=u(e)),r}function Ct(t,e){var r,n,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=this.input,void 0!==e&&(r=e,Array.isArray(r)&&!R(r)&&((r=C(r)).outerWrapper=!0)),i.prev=4,n=c(t,!1),i.next=12;break;case 8:throw i.prev=8,i.t0=i.catch(4),Dt(i.t0),{stack:(new Error).stack,code:"D3120",value:i.t0.message,error:i.t0};case 12:return i.prev=12,i.delegateYield(B(n,r,this.environment),"t1",14);case 14:o=i.t1,i.next=21;break;case 17:throw i.prev=17,i.t2=i.catch(12),Dt(i.t2),{stack:(new Error).stack,code:"D3121",value:i.t2.message,error:i.t2};case 21:return i.abrupt("return",o);case 22:case"end":return i.stop()}}),T,this,[[4,8],[12,17]])}function Rt(t){if(void 0!==t)return JSON.parse(a.string(t))}function jt(t){var e={};return{bind:function(t,r){e[t]=r},lookup:function(r){var n;return e.hasOwnProperty(r)?n=e[r]:t&&(n=t.lookup(r)),n},timestamp:t?t.timestamp:null,async:!!t&&t.async,global:t?t.global:{ancestry:[null]}}}F.bind("sum",It(a.sum,"<a<n>:n>")),F.bind("count",It(a.count,"<a:n>")),F.bind("max",It(a.max,"<a<n>:n>")),F.bind("min",It(a.min,"<a<n>:n>")),F.bind("average",It(a.average,"<a<n>:n>")),F.bind("string",It(a.string,"<x-b?:s>")),F.bind("substring",It(a.substring,"<s-nn?:s>")),F.bind("substringBefore",It(a.substringBefore,"<s-s:s>")),F.bind("substringAfter",It(a.substringAfter,"<s-s:s>")),F.bind("lowercase",It(a.lowercase,"<s-:s>")),F.bind("uppercase",It(a.uppercase,"<s-:s>")),F.bind("length",It(a.length,"<s-:n>")),F.bind("trim",It(a.trim,"<s-:s>")),F.bind("pad",It(a.pad,"<s-ns?:s>")),F.bind("match",It(a.match,"<s-f<s:o>n?:a<o>>")),F.bind("contains",It(a.contains,"<s-(sf):b>")),F.bind("replace",It(a.replace,"<s-(sf)(sf)n?:s>")),F.bind("split",It(a.split,"<s-(sf)n?:a<s>>")),F.bind("join",It(a.join,"<a<s>s?:s>")),F.bind("formatNumber",It(a.formatNumber,"<n-so?:s>")),F.bind("formatBase",It(a.formatBase,"<n-n?:s>")),F.bind("formatInteger",It(o.formatInteger,"<n-s:s>")),F.bind("parseInteger",It(o.parseInteger,"<s-s:n>")),F.bind("number",It(a.number,"<(nsb)-:n>")),F.bind("floor",It(a.floor,"<n-:n>")),F.bind("ceil",It(a.ceil,"<n-:n>")),F.bind("round",It(a.round,"<n-n?:n>")),F.bind("abs",It(a.abs,"<n-:n>")),F.bind("sqrt",It(a.sqrt,"<n-:n>")),F.bind("power",It(a.power,"<n-n:n>")),F.bind("random",It(a.random,"<:n>")),F.bind("boolean",It(a.boolean,"<x-:b>")),F.bind("not",It(a.not,"<x-:b>")),F.bind("map",It(a.map,"<af>")),F.bind("zip",It(a.zip,"<a+>")),F.bind("filter",It(a.filter,"<af>")),F.bind("single",It(a.single,"<af?>")),F.bind("reduce",It(a.foldLeft,"<afj?:j>")),F.bind("sift",It(a.sift,"<o-f?:o>")),F.bind("keys",It(a.keys,"<x-:a<s>>")),F.bind("lookup",It(a.lookup,"<x-s:x>")),F.bind("append",It(a.append,"<xx:a>")),F.bind("exists",It(a.exists,"<x:b>")),F.bind("spread",It(a.spread,"<x-:a<o>>")),F.bind("merge",It(a.merge,"<a<o>:o>")),F.bind("reverse",It(a.reverse,"<a:a>")),F.bind("each",It(a.each,"<o-f:a>")),F.bind("error",It(a.error,"<s?:x>")),F.bind("assert",It(a.assert,"<bs?:x>")),F.bind("type",It(a.type,"<x:s>")),F.bind("sort",It(a.sort,"<af?:a>")),F.bind("shuffle",It(a.shuffle,"<a:a>")),F.bind("distinct",It(a.distinct,"<x:x>")),F.bind("base64encode",It(a.base64encode,"<s-:s>")),F.bind("base64decode",It(a.base64decode,"<s-:s>")),F.bind("encodeUrlComponent",It(a.encodeUrlComponent,"<s-:s>")),F.bind("encodeUrl",It(a.encodeUrl,"<s-:s>")),F.bind("decodeUrlComponent",It(a.decodeUrlComponent,"<s-:s>")),F.bind("decodeUrl",It(a.decodeUrl,"<s-:s>")),F.bind("eval",It(Ct,"<sx?:x>")),F.bind("toMillis",It(o.toMillis,"<s-s?:n>")),F.bind("fromMillis",It(o.fromMillis,"<n-s?s?:s>")),F.bind("clone",It(Rt,"<(oa)-:o>"));var Lt={S0101:"String literal must be terminated by a matching quote",S0102:"Number out of range: {{token}}",S0103:"Unsupported escape sequence: \\{{token}}",S0104:"The escape sequence \\u must be followed by 4 hex digits",S0105:"Quoted property name must be terminated with a backquote (`)",S0106:"Comment has no closing tag",S0201:"Syntax error: {{token}}",S0202:"Expected {{value}}, got {{token}}",S0203:"Expected {{value}} before end of expression",S0204:"Unknown operator: {{token}}",S0205:"Unexpected token: {{token}}",S0206:"Unknown expression type: {{token}}",S0207:"Unexpected end of expression",S0208:"Parameter {{value}} of function definition must be a variable name (start with $)",S0209:"A predicate cannot follow a grouping expression in a step",S0210:"Each step can only have one grouping expression",S0211:"The symbol {{token}} cannot be used as a unary operator",S0212:"The left side of := must be a variable name (start with $)",S0213:"The literal value {{value}} cannot be used as a step within a path expression",S0214:"The right side of {{token}} must be a variable name (start with $)",S0215:"A context variable binding must precede any predicates on a step",S0216:"A context variable binding must precede the 'order-by' clause on a step",S0217:"The object representing the 'parent' cannot be derived from this expression",S0301:"Empty regular expressions are not allowed",S0302:"No terminating / in regular expression",S0402:"Choice groups containing parameterized types are not supported",S0401:"Type parameters can only be applied to functions and arrays",S0500:"Attempted to evaluate an expression containing syntax error(s)",T0410:"Argument {{index}} of function {{token}} does not match function signature",T0411:"Context value is not a compatible type with argument {{index}} of function {{token}}",T0412:"Argument {{index}} of function {{token}} must be an array of {{type}}",D1001:"Number out of range: {{value}}",D1002:"Cannot negate a non-numeric value: {{value}}",T1003:"Key in object structure must evaluate to a string; got: {{value}}",D1004:"Regular expression matches zero length string",T1005:"Attempted to invoke a non-function. Did you mean ${{{token}}}?",T1006:"Attempted to invoke a non-function",T1007:"Attempted to partially apply a non-function. Did you mean ${{{token}}}?",T1008:"Attempted to partially apply a non-function",D1009:"Multiple key definitions evaluate to same key: {{value}}",D1010:"Attempted to access the Javascript object prototype",T1010:"The matcher function argument passed to function {{token}} does not return the correct object structure",T2001:"The left side of the {{token}} operator must evaluate to a number",T2002:"The right side of the {{token}} operator must evaluate to a number",T2003:"The left side of the range operator (..) must evaluate to an integer",T2004:"The right side of the range operator (..) must evaluate to an integer",D2005:"The left side of := must be a variable name (start with $)",T2006:"The right side of the function application operator ~> must be a function",T2007:"Type mismatch when comparing values {{value}} and {{value2}} in order-by clause",T2008:"The expressions within an order-by clause must evaluate to numeric or string values",T2009:"The values {{value}} and {{value2}} either side of operator {{token}} must be of the same data type",T2010:"The expressions either side of operator {{token}} must evaluate to numeric or string values",T2011:"The insert/update clause of the transform expression must evaluate to an object: {{value}}",T2012:"The delete clause of the transform expression must evaluate to a string or array of strings: {{value}}",T2013:"The transform expression clones the input object using the $clone() function. This has been overridden in the current scope by a non-function.",D2014:"The size of the sequence allocated by the range operator (..) must not exceed 1e6. Attempted to allocate {{value}}.",D3001:"Attempting to invoke string function on Infinity or NaN",D3010:"Second argument of replace function cannot be an empty string",D3011:"Fourth argument of replace function must evaluate to a positive number",D3012:"Attempted to replace a matched string with a non-string value",D3020:"Third argument of split function must evaluate to a positive number",D3030:"Unable to cast value to a number: {{value}}",D3040:"Third argument of match function must evaluate to a positive number",D3050:"The second argument of reduce function must be a function with at least two arguments",D3060:"The sqrt function cannot be applied to a negative number: {{value}}",D3061:"The power function has resulted in a value that cannot be represented as a JSON number: base={{value}}, exponent={{exp}}",D3070:"The single argument form of the sort function can only be applied to an array of strings or an array of numbers. Use the second argument to specify a comparison function",D3080:"The picture string must only contain a maximum of two sub-pictures",D3081:"The sub-picture must not contain more than one instance of the 'decimal-separator' character",D3082:"The sub-picture must not contain more than one instance of the 'percent' character",D3083:"The sub-picture must not contain more than one instance of the 'per-mille' character",D3084:"The sub-picture must not contain both a 'percent' and a 'per-mille' character",D3085:"The mantissa part of a sub-picture must contain at least one character that is either an 'optional digit character' or a member of the 'decimal digit family'",D3086:"The sub-picture must not contain a passive character that is preceded by an active character and that is followed by another active character",D3087:"The sub-picture must not contain a 'grouping-separator' character that appears adjacent to a 'decimal-separator' character",D3088:"The sub-picture must not contain a 'grouping-separator' at the end of the integer part",D3089:"The sub-picture must not contain two adjacent instances of the 'grouping-separator' character",D3090:"The integer part of the sub-picture must not contain a member of the 'decimal digit family' that is followed by an instance of the 'optional digit character'",D3091:"The fractional part of the sub-picture must not contain an instance of the 'optional digit character' that is followed by a member of the 'decimal digit family'",D3092:"A sub-picture that contains a 'percent' or 'per-mille' character must not contain a character treated as an 'exponent-separator'",D3093:"The exponent part of the sub-picture must comprise only of one or more characters that are members of the 'decimal digit family'",D3100:"The radix of the formatBase function must be between 2 and 36. It was given {{value}}",D3110:"The argument of the toMillis function must be an ISO 8601 formatted timestamp. Given {{value}}",D3120:"Syntax error in expression passed to function eval: {{value}}",D3121:"Dynamic error evaluating the expression passed to function eval: {{value}}",D3130:"Formatting or parsing an integer as a sequence starting with {{value}} is not supported by this implementation",D3131:"In a decimal digit pattern, all digits must be from the same decimal group",D3132:"Unknown component specifier {{value}} in date/time picture string",D3133:"The 'name' modifier can only be applied to months and days in the date/time picture string, not {{value}}",D3134:"The timezone integer format specifier cannot have more than four digits",D3135:"No matching closing bracket ']' in date/time picture string",D3136:"The date/time picture string is missing specifiers required to parse the timestamp",D3137:"{{{message}}}",D3138:"The $single() function expected exactly 1 matching result. Instead it matched more.",D3139:"The $single() function expected exactly 1 matching result. Instead it matched 0.",D3140:"Malformed URL passed to ${{{functionName}}}(): {{value}}",D3141:"{{{message}}}"};function Dt(t){var e=Lt[t.code];if(void 0!==e){var r=e.replace(/\{\{\{([^}]+)}}}/g,(function(){return t[arguments[1]]}));r=r.replace(/\{\{([^}]+)}}/g,(function(){return JSON.stringify(t[arguments[1]])})),t.message=r}}function zt(t,e){var r,n;try{r=c(t,e&&e.recover),n=r.errors,delete r.errors}catch(t){throw Dt(t),t}var i=jt(F),a=new Date;return i.bind("now",It((function(t,e){return o.fromMillis(a.getTime(),t,e)}),"<s?s?:s>")),i.bind("millis",It((function(){return a.getTime()}),"<:n>")),e&&e.RegexEngine?zt.RegexEngine=e.RegexEngine:zt.RegexEngine=RegExp,{evaluate:function(t,e,o){if(void 0!==n){var s={code:"S0500",position:0};throw Dt(s),s}var c,u,l;if(void 0!==e)for(var h in c=jt(i),e)c.bind(h,e[h]);else c=i;if(c.bind("$",t),a=new Date,c.timestamp=a,Array.isArray(t)&&!R(t)&&((t=C(t)).outerWrapper=!0),"function"==typeof o){c.async=!0;var f=function(t){Dt(t),o(t,null)},d=function t(e){(u=l.next(e)).done?o(null,u.value):u.value.then(t).catch(f)};l=B(r,t,c),(u=l.next()).value.then(d).catch(f)}else try{for(l=B(r,t,c),u=l.next();!u.done;)u=l.next(u.value);return u.value}catch(s){throw Dt(s),s}},assign:function(t,e){i.bind(t,e)},registerFunction:function(t,e,r){var n=It(e,r);i.bind(t,n)},ast:function(){return r},errors:function(){return n}}}return zt.parser=c,zt}();e.exports=l},{"./datetime":1,"./functions":2,"./parser":4,"./signature":5,"./utils":6}],4:[function(t,e,r){var n=t("./signature"),i=function(){var t={".":75,"[":80,"]":0,"{":70,"}":0,"(":80,")":0,",":0,"@":80,"#":80,";":80,":":80,"?":20,"+":50,"-":50,"*":60,"/":60,"%":60,"|":20,"=":40,"<":40,">":40,"^":40,"**":60,"..":20,":=":10,"!=":40,"<=":40,">=":40,"~>":40,and:30,or:25,in:40,"&":50,"!":0,"~":0},e={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"},r=function(r){var n=0,i=r.length,o=function(t,e){return{type:t,value:e,position:n}},a=function(){for(var t,e,o=n,a=0;n<i;){var s=r.charAt(n);if("/"===s&&"\\"!==r.charAt(n-1)&&0===a){if(""===(t=r.substring(o,n)))throw{code:"S0301",stack:(new Error).stack,position:n};for(n++,s=r.charAt(n),o=n;"i"===s||"m"===s;)n++,s=r.charAt(n);return e=r.substring(o,n)+"g",new RegExp(t,e)}"("!==s&&"["!==s&&"{"!==s||"\\"===r.charAt(n-1)||a++,")"!==s&&"]"!==s&&"}"!==s||"\\"===r.charAt(n-1)||a--,n++}throw{code:"S0302",stack:(new Error).stack,position:n}},s=function s(c){if(n>=i)return null;for(var u=r.charAt(n);n<i&&" \t\n\r\v".indexOf(u)>-1;)n++,u=r.charAt(n);if("/"===u&&"*"===r.charAt(n+1)){var l=n;for(n+=2,u=r.charAt(n);"*"!==u||"/"!==r.charAt(n+1);)if(u=r.charAt(++n),n>=i)throw{code:"S0106",stack:(new Error).stack,position:l};return n+=2,u=r.charAt(n),s(c)}if(!0!==c&&"/"===u)return n++,o("regex",a());if("."===u&&"."===r.charAt(n+1))return n+=2,o("operator","..");if(":"===u&&"="===r.charAt(n+1))return n+=2,o("operator",":=");if("!"===u&&"="===r.charAt(n+1))return n+=2,o("operator","!=");if(">"===u&&"="===r.charAt(n+1))return n+=2,o("operator",">=");if("<"===u&&"="===r.charAt(n+1))return n+=2,o("operator","<=");if("*"===u&&"*"===r.charAt(n+1))return n+=2,o("operator","**");if("~"===u&&">"===r.charAt(n+1))return n+=2,o("operator","~>");if(Object.prototype.hasOwnProperty.call(t,u))return n++,o("operator",u);if('"'===u||"'"===u){var h=u;n++;for(var f="";n<i;){if("\\"===(u=r.charAt(n)))if(n++,u=r.charAt(n),Object.prototype.hasOwnProperty.call(e,u))f+=e[u];else{if("u"!==u)throw{code:"S0103",stack:(new Error).stack,position:n,token:u};var d=r.substr(n+1,4);if(!/^[0-9a-fA-F]+$/.test(d))throw{code:"S0104",stack:(new Error).stack,position:n};var p=parseInt(d,16);f+=String.fromCharCode(p),n+=4}else{if(u===h)return n++,o("string",f);f+=u}n++}throw{code:"S0101",stack:(new Error).stack,position:n}}var g,v=/^-?(0|([1-9][0-9]*))(\.[0-9]+)?([Ee][-+]?[0-9]+)?/.exec(r.substring(n));if(null!==v){var y=parseFloat(v[0]);if(!isNaN(y)&&isFinite(y))return n+=v[0].length,o("number",y);throw{code:"S0102",stack:(new Error).stack,position:n,token:v[0]}}if("`"===u){n++;var m=r.indexOf("`",n);if(-1!==m)return g=r.substring(n,m),n=m+1,o("name",g);throw n=i,{code:"S0105",stack:(new Error).stack,position:n}}for(var b,x=n;;)if(b=r.charAt(x),x===i||" \t\n\r\v".indexOf(b)>-1||Object.prototype.hasOwnProperty.call(t,b)){if("$"===r.charAt(n))return g=r.substring(n+1,x),n=x,o("variable",g);switch(g=r.substring(n,x),n=x,g){case"or":case"in":case"and":return o("operator",g);case"true":return o("value",!0);case"false":return o("value",!1);case"null":return o("value",null);default:return n===i&&""===g?null:o("name",g)}}else x++};return s},i=function(e,i){var o,a,s={},c=[],u=function(){var t=[];"(end)"!==o.id&&t.push({type:o.type,value:o.value,position:o.position});for(var e=a();null!==e;)t.push(e),e=a();return t},l={nud:function(){var t={code:"S0211",token:this.value,position:this.position};if(i)return t.remaining=u(),t.type="error",c.push(t),t;throw t.stack=(new Error).stack,t}},h=function(t,e){var r=s[t];return e=e||0,r?e>=r.lbp&&(r.lbp=e):((r=Object.create(l)).id=r.value=t,r.lbp=e,s[t]=r),r},f=function(t){if(i){t.remaining=u(),c.push(t);var e=s["(error)"];return(o=Object.create(e)).error=t,o.type="(error)",o}throw t.stack=(new Error).stack,t},d=function(t,r){if(t&&o.id!==t){var n={code:"(end)"===o.id?"S0203":"S0202",position:o.position,token:o.value,value:t};return f(n)}var i=a(r);if(null===i)return(o=s["(end)"]).position=e.length,o;var c,u=i.value,l=i.type;switch(l){case"name":case"variable":c=s["(name)"];break;case"operator":if(!(c=s[u]))return f({code:"S0204",stack:(new Error).stack,position:i.position,token:u});break;case"string":case"number":case"value":c=s["(literal)"];break;case"regex":l="regex",c=s["(regex)"];break;default:return f({code:"S0205",stack:(new Error).stack,position:i.position,token:u})}return(o=Object.create(c)).value=u,o.type=l,o.position=i.position,o},p=function(t){var e,r=o;for(d(null,!0),e=r.nud();t<o.lbp;)r=o,d(),e=r.led(e);return e},g=function(t){h(t,0).nud=function(){return this}},v=function(e,r,n){var i=r||t[e],o=h(e,i);return o.led=n||function(t){return this.lhs=t,this.rhs=p(i),this.type="binary",this},o},y=function(t,e,r){var n=h(t,e);return n.led=r,n},m=function(t,e){var r=h(t);return r.nud=e||function(){return this.expression=p(70),this.type="unary",this},r};g("(end)"),g("(name)"),g("(literal)"),g("(regex)"),h(":"),h(";"),h(","),h(")"),h("]"),h("}"),h(".."),v("."),v("+"),v("-"),v("*"),v("/"),v("%"),v("="),v("<"),v(">"),v("!="),v("<="),v(">="),v("&"),v("and"),v("or"),v("in"),g("and"),g("or"),g("in"),m("-"),v("~>"),y("(error)",10,(function(t){return this.lhs=t,this.error=o.error,this.remaining=u(),this.type="error",this})),m("*",(function(){return this.type="wildcard",this})),m("**",(function(){return this.type="descendant",this})),m("%",(function(){return this.type="parent",this})),v("(",t["("],(function(t){if(this.procedure=t,this.type="function",this.arguments=[],")"!==o.id)for(;"operator"===o.type&&"?"===o.id?(this.type="partial",this.arguments.push(o),d("?")):this.arguments.push(p(0)),","===o.id;)d(",");if(d(")",!0),"name"===t.type&&("function"===t.value||"λ"===t.value)){if(this.arguments.forEach((function(t,e){if("variable"!==t.type)return f({code:"S0208",stack:(new Error).stack,position:t.position,token:t.value,value:e+1})})),this.type="lambda","<"===o.id){for(var e=o.position,r=1,i="<";r>0&&"{"!==o.id&&"(end)"!==o.id;){var a=d();">"===a.id?r--:"<"===a.id&&r++,i+=a.value}d(">");try{this.signature=n(i)}catch(t){return t.position=e+t.offset,f(t)}}d("{"),this.body=p(0),d("}")}return this})),m("(",(function(){for(var t=[];")"!==o.id&&(t.push(p(0)),";"===o.id);)d(";");return d(")",!0),this.type="block",this.expressions=t,this})),m("[",(function(){var t=[];if("]"!==o.id)for(;;){var e=p(0);if(".."===o.id){var r={type:"binary",value:"..",position:o.position,lhs:e};d(".."),r.rhs=p(0),e=r}if(t.push(e),","!==o.id)break;d(",")}return d("]",!0),this.expressions=t,this.type="unary",this})),v("[",t["["],(function(e){if("]"===o.id){for(var r=e;r&&"binary"===r.type&&"["===r.value;)r=r.lhs;return r.keepArray=!0,d("]"),e}return this.lhs=e,this.rhs=p(t["]"]),this.type="binary",d("]",!0),this})),v("^",t["^"],(function(t){d("(");for(var e=[];;){var r={descending:!1};if("<"===o.id?d("<"):">"===o.id&&(r.descending=!0,d(">")),r.expression=p(0),e.push(r),","!==o.id)break;d(",")}return d(")"),this.lhs=t,this.rhs=e,this.type="binary",this}));var b=function(t){var e=[];if("}"!==o.id)for(;;){var r=p(0);d(":");var n=p(0);if(e.push([r,n]),","!==o.id)break;d(",")}return d("}",!0),void 0===t?(this.lhs=e,this.type="unary"):(this.lhs=t,this.rhs=e,this.type="binary"),this};m("{",b),v("{",t["{"],b),y(":=",t[":="],(function(e){return"variable"!==e.type?f({code:"S0212",stack:(new Error).stack,position:e.position,token:e.value}):(this.lhs=e,this.rhs=p(t[":="]-1),this.type="binary",this)})),v("@",t["@"],(function(e){return this.lhs=e,this.rhs=p(t["@"]),"variable"!==this.rhs.type?f({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"@"}):(this.type="binary",this)})),v("#",t["#"],(function(e){return this.lhs=e,this.rhs=p(t["#"]),"variable"!==this.rhs.type?f({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"#"}):(this.type="binary",this)})),v("?",t["?"],(function(t){return this.type="condition",this.condition=t,this.then=p(0),":"===o.id&&(d(":"),this.else=p(0)),this})),m("|",(function(){return this.type="transform",this.pattern=p(0),d("|"),this.update=p(0),","===o.id&&(d(","),this.delete=p(0)),d("|"),this}));var x=function t(e){var r;if("function"!==e.type||e.predicate)if("condition"===e.type)e.then=t(e.then),void 0!==e.else&&(e.else=t(e.else)),r=e;else if("block"===e.type){var n=e.expressions.length;n>0&&(e.expressions[n-1]=t(e.expressions[n-1])),r=e}else r=e;else{var i={type:"lambda",thunk:!0,arguments:[],position:e.position};i.body=e,r=i}return r},w=0,A=0,_=[],k=function t(e,r){switch(e.type){case"name":case"wildcard":r.level--,0===r.level&&(void 0===e.ancestor||(_[r.index].slot.label=e.ancestor.label),e.ancestor=r,e.tuple=!0);break;case"parent":r.level++;break;case"block":e.expressions.length>0&&(e.tuple=!0,r=t(e.expressions[e.expressions.length-1],r));break;case"path":e.tuple=!0;var n=e.steps.length-1;for(r=t(e.steps[n--],r);r.level>0&&n>=0;)r=t(e.steps[n--],r);break;default:throw{code:"S0217",token:e.type,position:e.position}}return r},E=function(t,e){if(void 0!==e.seekingParent||"parent"===e.type){var r=void 0!==e.seekingParent?e.seekingParent:[];"parent"===e.type&&r.push(e.slot),void 0===t.seekingParent?t.seekingParent=r:Array.prototype.push.apply(t.seekingParent,r)}},S=function(t){var e=t.steps.length-1,r=t.steps[e],n=void 0!==r.seekingParent?r.seekingParent:[];"parent"===r.type&&n.push(r.slot);for(var i=0;i<n.length;i++){var o=n[i];for(e=t.steps.length-2;o.level>0;){if(e<0){void 0===t.seekingParent?t.seekingParent=[o]:t.seekingParent.push(o);break}for(var a=t.steps[e--];e>=0&&a.focus&&t.steps[e].focus;)a=t.steps[e--];o=k(a,o)}}},M=function t(e){var r;switch(e.type){case"binary":switch(e.value){case".":var n=t(e.lhs);r="path"===n.type?n:{type:"path",steps:[n]},"parent"===n.type&&(r.seekingParent=[n.slot]);var o=t(e.rhs);"function"===o.type&&"path"===o.procedure.type&&1===o.procedure.steps.length&&"name"===o.procedure.steps[0].type&&"function"===r.steps[r.steps.length-1].type&&(r.steps[r.steps.length-1].nextFunction=o.procedure.steps[0].value),"path"===o.type?Array.prototype.push.apply(r.steps,o.steps):(void 0!==o.predicate&&(o.stages=o.predicate,delete o.predicate),r.steps.push(o)),r.steps.filter((function(t){if("number"===t.type||"value"===t.type)throw{code:"S0213",stack:(new Error).stack,position:t.position,value:t.value};return"string"===t.type})).forEach((function(t){t.type="name"})),r.steps.filter((function(t){return!0===t.keepArray})).length>0&&(r.keepSingletonArray=!0);var a=r.steps[0];"unary"===a.type&&"["===a.value&&(a.consarray=!0);var s=r.steps[r.steps.length-1];"unary"===s.type&&"["===s.value&&(s.consarray=!0),S(r);break;case"[":var u=r=t(e.lhs),l="predicate";if("path"===r.type&&(u=r.steps[r.steps.length-1],l="stages"),void 0!==u.group)throw{code:"S0209",stack:(new Error).stack,position:e.position};void 0===u[l]&&(u[l]=[]);var h=t(e.rhs);void 0!==h.seekingParent&&(h.seekingParent.forEach((function(t){1===t.level?k(u,t):t.level--})),E(u,h)),u[l].push({type:"filter",expr:h,position:e.position});break;case"{":if(void 0!==(r=t(e.lhs)).group)throw{code:"S0210",stack:(new Error).stack,position:e.position};r.group={lhs:e.rhs.map((function(e){return[t(e[0]),t(e[1])]})),position:e.position};break;case"^":"path"!==(r=t(e.lhs)).type&&(r={type:"path",steps:[r]});var f={type:"sort",position:e.position};f.terms=e.rhs.map((function(e){var r=t(e.expression);return E(f,r),{descending:e.descending,expression:r}})),r.steps.push(f),S(r);break;case":=":(r={type:"bind",value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs),E(r,r.rhs);break;case"@":if(r=t(e.lhs),u=r,"path"===r.type&&(u=r.steps[r.steps.length-1]),void 0!==u.stages||void 0!==u.predicate)throw{code:"S0215",stack:(new Error).stack,position:e.position};if("sort"===u.type)throw{code:"S0216",stack:(new Error).stack,position:e.position};e.keepArray&&(u.keepArray=!0),u.focus=e.rhs.value,u.tuple=!0;break;case"#":r=t(e.lhs),u=r,"path"===r.type?u=r.steps[r.steps.length-1]:(r={type:"path",steps:[r]},void 0!==u.predicate&&(u.stages=u.predicate,delete u.predicate)),void 0===u.stages?u.index=e.rhs.value:u.stages.push({type:"index",value:e.rhs.value,position:e.position}),u.tuple=!0;break;case"~>":(r={type:"apply",value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs);break;default:(r={type:e.type,value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs),E(r,r.lhs),E(r,r.rhs)}break;case"unary":r={type:e.type,value:e.value,position:e.position},"["===e.value?r.expressions=e.expressions.map((function(e){var n=t(e);return E(r,n),n})):"{"===e.value?r.lhs=e.lhs.map((function(e){var n=t(e[0]);E(r,n);var i=t(e[1]);return E(r,i),[n,i]})):(r.expression=t(e.expression),"-"===e.value&&"number"===r.expression.type?(r=r.expression).value=-r.value:E(r,r.expression));break;case"function":case"partial":(r={type:e.type,name:e.name,value:e.value,position:e.position}).arguments=e.arguments.map((function(e){var n=t(e);return E(r,n),n})),r.procedure=t(e.procedure);break;case"lambda":r={type:e.type,arguments:e.arguments,signature:e.signature,position:e.position};var d=t(e.body);r.body=x(d);break;case"condition":(r={type:e.type,position:e.position}).condition=t(e.condition),E(r,r.condition),r.then=t(e.then),E(r,r.then),void 0!==e.else&&(r.else=t(e.else),E(r,r.else));break;case"transform":(r={type:e.type,position:e.position}).pattern=t(e.pattern),r.update=t(e.update),void 0!==e.delete&&(r.delete=t(e.delete));break;case"block":(r={type:e.type,position:e.position}).expressions=e.expressions.map((function(e){var n=t(e);return E(r,n),(n.consarray||"path"===n.type&&n.steps[0].consarray)&&(r.consarray=!0),n}));break;case"name":r={type:"path",steps:[e]},e.keepArray&&(r.keepSingletonArray=!0);break;case"parent":r={type:"parent",slot:{label:"!"+w++,level:1,index:A++}},_.push(r);break;case"string":case"number":case"value":case"wildcard":case"descendant":case"variable":case"regex":r=e;break;case"operator":if("and"===e.value||"or"===e.value||"in"===e.value)e.type="name",r=t(e);else{if("?"!==e.value)throw{code:"S0201",stack:(new Error).stack,position:e.position,token:e.value};r=e}break;case"error":r=e,e.lhs&&(r=t(e.lhs));break;default:var p="S0206";"(end)"===e.id&&(p="S0207");var g={code:p,position:e.position,token:e.value};if(i)return c.push(g),{type:"error",error:g};throw g.stack=(new Error).stack,g}return e.keepArray&&(r.keepArray=!0),r};a=r(e),d();var T=p(0);if("(end)"!==o.id){var P={code:"S0201",position:o.position,token:o.value};f(P)}if("parent"===(T=M(T)).type||void 0!==T.seekingParent)throw{code:"S0217",token:T.type,position:T.position};return c.length>0&&(T.errors=c),T};return i}();e.exports=i},{"./signature":5}],5:[function(t,e,r){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var i=t("./utils"),o=function(){var t={a:"arrays",b:"booleans",f:"functions",n:"numbers",o:"objects",s:"strings"};function e(e){for(var r=1,o=[],a={},s=a;r<e.length;){var c=e.charAt(r);if(":"===c)break;var u=function(){o.push(a),s=a,a={}},l=function(t,e,r,n){for(var i=1,o=e;o<t.length;)if(o++,(c=t.charAt(o))===n){if(0==--i)break}else c===r&&i++;return o};switch(c){case"s":case"n":case"b":case"l":case"o":a.regex="["+c+"m]",a.type=c,u();break;case"a":a.regex="[asnblfom]",a.type=c,a.array=!0,u();break;case"f":a.regex="f",a.type=c,u();break;case"j":a.regex="[asnblom]",a.type=c,u();break;case"x":a.regex="[asnblfom]",a.type=c,u();break;case"-":s.context=!0,s.contextRegex=new RegExp(s.regex),s.regex+="?";break;case"?":case"+":s.regex+=c;break;case"(":var h=l(e,r,"(",")"),f=e.substring(r+1,h);if(-1!==f.indexOf("<"))throw{code:"S0402",stack:(new Error).stack,value:f,offset:r};a.regex="["+f+"m]",a.type="("+f+")",r=h,u();break;case"<":if("a"!==s.type&&"f"!==s.type)throw{code:"S0401",stack:(new Error).stack,value:s.type,offset:r};var d=l(e,r,"<",">");s.subtype=e.substring(r+1,d),r=d}r++}var p="^"+o.map((function(t){return"("+t.regex+")"})).join("")+"$",g=new RegExp(p),v=function(t){var e;if(i.isFunction(t))e="f";else switch(n(t)){case"string":e="s";break;case"number":e="n";break;case"boolean":e="b";break;case"object":e=null===t?"l":Array.isArray(t)?"a":"o";break;default:e="m"}return e},y=function(t,e){for(var r="^",n=0,i=0;i<o.length;i++){r+=o[i].regex;var a=e.match(r);if(null===a)throw{code:"T0410",stack:(new Error).stack,value:t[n],index:n+1};n=a[0].length}throw{code:"T0410",stack:(new Error).stack,value:t[n],index:n+1}};return{definition:e,validate:function(e,r){var n="";e.forEach((function(t){n+=v(t)}));var i=g.exec(n);if(i){var a=[],s=0;return o.forEach((function(n,o){var c=e[s],u=i[o+1];if(""===u)if(n.context&&n.contextRegex){var l=v(r);if(!n.contextRegex.test(l))throw{code:"T0411",stack:(new Error).stack,value:r,index:s+1};a.push(r)}else a.push(c),s++;else u.split("").forEach((function(r){if("a"===n.type){if("m"===r)c=void 0;else{c=e[s];var i=!0;if(void 0!==n.subtype)if("a"!==r&&u!==n.subtype)i=!1;else if("a"===r&&c.length>0){var o=v(c[0]);i=o===n.subtype.charAt(0)&&0===c.filter((function(t){return v(t)!==o})).length}if(!i)throw{code:"T0412",stack:(new Error).stack,value:c,index:s+1,type:t[n.subtype]};"a"!==r&&(c=[c])}a.push(c),s++}else a.push(c),s++}))})),a}y(e,n)}}}return e}();e.exports=o},{"./utils":6}],6:[function(t,e,r){function n(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=i(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,c=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return s=t.done,t},e:function(t){c=!0,a=t},f:function(){try{s||null==r.return||r.return()}finally{if(c)throw a}}}}function i(t,e){if(t){if("string"==typeof t)return o(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(t,e):void 0}}function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function a(t){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},a(t)}var s=function(){function t(t){var e=!1;if("number"==typeof t&&(e=!isNaN(t))&&!isFinite(t))throw{code:"D1001",value:t,stack:(new Error).stack};return e}function e(t){var e=!1;return Array.isArray(t)&&(e=0===t.filter((function(t){return"string"!=typeof t})).length),e}function r(e){var r=!1;return Array.isArray(e)&&(r=0===e.filter((function(e){return!t(e)})).length),r}function i(){var t=[];return t.sequence=!0,1===arguments.length&&t.push(arguments[0]),t}function o(t){return!0===t.sequence&&Array.isArray(t)}function s(t){return t&&(!0===t._jsonata_function||!0===t._jsonata_lambda)||"function"==typeof t}function c(t){return"number"==typeof t.arity?t.arity:"function"==typeof t.implementation?t.implementation.length:"number"==typeof t.length?t.length:t.arguments.length}function u(t){return t&&!0===t._jsonata_lambda}var l=("function"==typeof Symbol?Symbol:{}).iterator||"@@iterator";function h(t){return"object"===a(t)&&null!==t&&l in t&&"next"in t&&"function"==typeof t.next}function f(t,e){if(t===e)return!0;if("object"===a(t)&&"object"===a(e)&&null!==t&&null!==e){if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return!1;for(var r=0;r<t.length;r++)if(!f(t[r],e[r]))return!1;return!0}var n=Object.getOwnPropertyNames(t),i=Object.getOwnPropertyNames(e);if(n.length!==i.length)return!1;for(n=n.sort(),i=i.sort(),r=0;r<n.length;r++)if(n[r]!==i[r])return!1;for(r=0;r<n.length;r++){var o=n[r];if(!f(t[o],e[o]))return!1}return!0}return!1}function d(t){var e,r=[],i=n(t);try{for(i.s();!(e=i.n()).done;){var o=e.value;r.push(o)}}catch(t){i.e(t)}finally{i.f()}return r}return{isNumeric:t,isArrayOfStrings:e,isArrayOfNumbers:r,createSequence:i,isSequence:o,isFunction:s,isLambda:u,isIterable:h,getFunctionArity:c,isDeepEqual:f,stringToArray:d}}();e.exports=s},{}]},{},[3])(3)}(p9);var g9=p9.exports;const v9=function(t){return t};function y9(t){if(!t)return v9;try{var e=g9(t);return function(t){return e.evaluate(t)}}catch(t){return console.error(t),v9}}function m9(t){var e=P7(t);return null==e?"":String(e)}function b9(t){return Number(P7(t))}function x9(t){return t}function w9(t){return m9(t)}function A9(t){return b9(t)}function _9(t){if(this.param)return t=m9(t),this.param.hasOwnProperty(t)?this.param[t]:this.param.default}function k9(t){var{param:e}=this;if(e){for(let r in e){let[n,i]=r.split("~"),o=!!n,a=!!i;if(n=parseFloat(n),i=parseFloat(i),t=b9(t),o&&!a&&t>=n)return e[r];if(!o&&a&&t<n)return e[r];if(t>=n&&t<i)return e[r]}return e.default}}function E9(t){return b9(t)*Math.PI/180}function S9(){}function M9(t,e,r,n,i){switch(r){case"value":return"text"===i||"string"===i?w9.bind(t):"number"===i?A9.bind(t):x9.bind(e);case"map":return _9.bind(t);case"range":return k9.bind(t);case"radian":return E9.bind(t);case"eval":return function(t){try{return new Function("value","targets",t)}catch(t){return U7(t),S9}}(n).bind(e);default:return x9.bind(e)}}class T9{constructor(t,e){this.owner=e,this.model=t}dispose(){delete this._model,delete this.owner,delete this.evaluator,delete this.accessor,delete this.source}get model(){return this._model}set model(t){var{target:e,property:r,rule:n,param:i,accessor:o}=t;this._model=t,this.evaluator=M9(this,this.owner,n,i,function(t){switch(t){case"ref":case"fillStyle":case"strokeStyle":return"string";default:return}}(r)),this.accessor=y9(o);const a=e.match(/\[(.*?)\]/);if(a){var[s,c]=a[1].split(":");this.propAccessor=y9(s),this.partAccessor=y9(c)}}get target(){return this.model.target}get property(){return this.model.property}get source(){return this.model.source}get param(){return this.model.param}get ndnsp(){return!!this.model.ndnsp}get partial(){return!!this.model.partial}}function P9(t,e,r,n){n?t.forEach((t=>t[e]={...t[e],...r})):t.forEach((t=>t[e]=r))}function O9(t=!1){(t||void 0!==this.data)&&this.mappings&&this.mappings.forEach((t=>{try{var e,{source:r,target:n,property:i,accessor:o,propAccessor:a,partAccessor:s,ndnsp:c=!1,partial:u=!1}=t;r&&"(self)"!=r?(r.startsWith("#")&&(r=r.substring(1)),e=this.root.findById(r)?.data||{}):e=this.data;var l=o(e);if("(root)"==(n=n.trim())||"(key)"==n){if(null==l)return;let e=Object.keys(l||{}).map((t=>this.root.findOrCreate(t))).filter(Boolean).flat();e.length>0&&e.forEach((e=>{let r=t.evaluator(l[e.get("id")],[e]);!i||"(action)"===i||c&&!r&&0!==r&&!1!==r||(e[i]=u?{...e[i],...r}:r)}))}else if(n.startsWith("[")){if(null==l)return;if(l instanceof Array)l.forEach((e=>{let r=a(e);if(r){let n=this.root.findOrCreate(r);if(n){let r=t.evaluator(s(e),n);!i||"(action)"===i||c&&!r&&0!==r&&!1!==r||P9(n,i,r,u)}}}));else{if(!(l instanceof Object))throw String("mapping data should be an object to target property-id.("+l+")");{let e=a(l);if(e){let r=this.root.findOrCreate(e);if(r){let e=t.evaluator(s(l),r);!i||"(action)"===i||c&&!e&&0!==e&&!1!==e||P9(r,i,e,u)}}}}}else{let e=this.root.findAll(n,this);if(e.length>0){let r=t.evaluator(l,e);!i||"(action)"===i||c&&!r&&0!==r&&!1!==r||P9(e,i,r,u)}}}catch(e){U7(e,this,t)}}))}var I9;function C9(t,e,r,n,i){var{alpha:o=1}=n,a=i.fillStyle;if(t.globalAlpha*=o,a)if("string"==typeof a)t.fillStyle=a,t.fill();else if("object"==typeof a)if("gradient"==a.type){t.translate(r.x,r.y);let n,{width:i,height:o}=e;if("linear"==a.gradientType){let e=3.141592653589793,r=a.rotation;if(r>=.436332&&r<=1.13446||r>=2.00713&&r<=2.70526||r>=3.57792&&r<=4.27606||r>=5.14872&&r<=5.84685){let a=Math.sqrt(Math.pow((i-4)/2,2)+Math.pow((o-4)/2,2));a-=a-(i+o)/3,n=t.createLinearGradient(a*Math.cos(r+e),a*Math.sin(r+e),a*Math.cos(r),a*Math.sin(r))}else n=t.createLinearGradient((i-4)/2*Math.cos(r+e),(o-4)/2*Math.sin(r+e),(i-4)/2*Math.cos(r),(o-4)/2*Math.sin(r))}else if("radial"==a.gradientType){let e=.95*Math.sqrt(Math.pow((i-4)/2,2)+Math.pow((o-4)/2,2));switch(a.center){case"center":default:n=t.createRadialGradient(0,0,0,0,0,e);break;case"left-top":n=t.createRadialGradient(-i/2,-o/2,0,-i/2,-o/2,2*e);break;case"right-top":n=t.createRadialGradient(i/2,-o/2,0,i/2,-o/2,2*e);break;case"left-bottom":n=t.createRadialGradient(-i/2,o/2,0,-i/2,o/2,2*e);break;case"right-bottom":n=t.createRadialGradient(i/2,o/2,0,i/2,o/2,2*e)}}a.colorStops.forEach((t=>{if(t.position>=0&&t.position<=1)try{n.addColorStop(t.position,t.color)}catch(e){Y7("Invalid Color for colorstop : ",t.color),n.addColorStop(t.position,"#fff")}})),t.fillStyle=n,t.fill(),t.translate(-r.x,-r.y)}else if("pattern"==a.type&&a.image){i.prepareFillIf(!i._pattern_image_origin);var s=i._pattern_image;if(!s)return;let r=0,n=0,o=0,c=0,u=e.left,l=e.top;if(!a.fitPattern){r=a.offsetX,n=a.offsetY;const t=a.width?a.width:s.width,i=a.height?a.height:s.height;switch(a.align){case"center":o=e.width/2-t/2,c=e.height/2-i/2;break;case"left-top":o=0,c=0;break;case"left-bottom":o=0,c=e.height-i;break;case"right-top":o=e.width-t,c=0;break;case"right-bottom":o=e.width-t,c=e.height-i;break;case"left":o=0,c=e.height/2-i/2;break;case"right":o=e.width-t,c=e.height/2-i/2;break;case"top":o=e.width/2-t/2,c=0;break;case"bottom":o=e.width/2-t/2,c=e.height-i}u+=r+o,l+=n+c}t.translate(u,l),a.color&&(t.fillStyle=a.color,t.fill()),a.fitPattern?Math.abs((s.width-e.width)*(s.height-e.height))>1?(delete i._pattern_image,delete i._pattern_image_origin):t.fillStyle=t.createPattern(s,"no-repeat"):t.fillStyle=t.createPattern(s,a.noRepeat?"no-repeat":"repeat"),t.fill(),t.translate(-u,-l)}}function R9(t,e,r){var{strokeStyle:n,lineDash:i,lineWidth:o,lineCap:a,lineJoin:s,alpha:c}=e;if(n&&0!=o){if(a&&(t.lineCap=a),i){var u="round"==a;switch(i){case"solid":i=[0,0];break;case"round-dot":i=u?[0,2*o]:[o,o];break;case"square-dot":i=u?[o,2*o]:[2*o,o];break;case"dash":i=u?[3*o,2.5*o]:[4*o,1.5*o];break;case"dash-dot":i=u?[3*o,3*o,0,3*o]:[4*o,2*o,o,2*o];break;case"long-dash":i=u?[5*o,4*o]:[6*o,3*o];break;case"long-dash-dot":i=u?[5*o,3*o,0,3*o]:[6*o,2*o,o,2*o];break;case"long-dash-dot-dot":i=u?[5*o,2*o,0,2*o,0,2*o]:[6*o,o,o,o,o,o]}t.setLineDash(i)}t.globalAlpha*=c,t.strokeStyle=n,t.lineWidth=o,t.lineJoin=s,t.stroke()}}function j9(t,e,r,n,i,o=0,a=!1,s=!0){o="number"==typeof o?{tl:o,tr:o,br:o,bl:o}:{tl:0,tr:0,br:0,bl:0,...o},t.beginPath(),t.moveTo(e+o.tl,r),t.lineTo(e+n-o.tr,r),t.quadraticCurveTo(e+n,r,e+n,r+o.tr),t.lineTo(e+n,r+i-o.br),t.quadraticCurveTo(e+n,r+i,e+n-o.br,r+i),t.lineTo(e+o.bl,r+i),t.quadraticCurveTo(e,r+i,e,r+i-o.bl),t.lineTo(e,r+o.tl),t.quadraticCurveTo(e,r,e+o.tl,r),t.closePath(),a&&t.fill(),s&&t.stroke()}function L9(t){const e=/(\*\*|__)(.*?)\1|(\*|_)(.*?)\3|([^\*_]+)/g;let r,n=[];for(;null!==(r=e.exec(t));)r[1]?n.push({text:r[2],bold:!0,italic:!1}):r[3]?n.push({text:r[4],bold:!1,italic:!0}):r[5]&&n.push({text:r[5],bold:!1,italic:!1});return n}function D9(t,e,r){if(e.text.length<2)return e;for(var n=2;n<e.text.length;n++){var i=e.text.substring(0,n);if(!(t.measureText(i).width<r))break}return{...e,text:e.text.substring(0,n-1)}}function z9(t,e,r,n,i){var o=String(e).split("\n");return n?[].concat.apply([],o.map((e=>function(t,e,r){var n=[],i=[],o=0;return e.forEach((e=>{for(var a=e.text;a.length>0;){var s=r-o,c=t.measureText(a).width;if(c<=s)i.push({...e,text:a}),o+=c,a="";else{var u=D9(t,{...e,text:a},s);i.push(u),n.push(i),i=[],o=0,a=a.substring(u.text.length)}}})),i.length>0&&n.push(i),n}(t,i?L9(e):[{text:e,bold:!1,italic:!1}],r)))):o.map((t=>i?L9(t):[{text:t,bold:!1,italic:!1}]))}function N9(t,e,r,n,i,o){if(!n)return[];t.save(),t.font=r;var a=z9(t,n,e,!!i,o);return t.restore(),a}function F9(t){var{fontFamily:e=n9.FONT_FAMILY,bold:r=n9.BOLD,italic:n=n9.ITALIC,fontSize:i=n9.FONT_SIZE}=t,o=[];return r&&o.push("bold"),n&&o.push("italic"),o.push(i+"px"),o.push(e),o.join(" ")}function B9(t,e){let r=t.bold||e.bold,n=t.italic||e.italic,i=[];return r&&i.push("bold"),n&&i.push("italic"),i.push(t.fontSize+"px"),i.push(t.fontFamily),i.join(" ")}function U9(t,e,r,n){var{alpha:i,fontColor:o=n9.FONT_COLOR,textAlign:a=n9.TEXT_ALIGN,textBaseline:s=n9.TEXT_BASELINE,textBackgroundStyle:c,fontSize:u,lineHeight:l,textWrap:h,supportMarkdown:f=!0,textOverflow:d,bold:p=n9.BOLD,italic:g=n9.ITALIC}=n;i=void 0!==i?i:1,u||=n9.FONT_SIZE,l||=1.2*u,t.save(),t.beginPath();var{left:v,top:y,width:m,height:b}=e;if(t.font=F9(n),!h&&d){const e=function(t,e,r,n){const i="ellipsis"===t?"…":"",o=e.measureText(i).width;let a=[],s=0;for(let i of r){let r=[];for(let c of i){let i=e.measureText(c.text).width;if(!(s+i<=n-("ellipsis"===t?o:0))){let i=Y9(e,c,n-s-("ellipsis"===t?o:0),t);return r.push(i),a.push(r),a}r.push(c),s+=i}a.push(r),s=0}return a}(d,t,r,m);r=e}var x,w=r.length*l;switch(s){case"top":x=y,t.textBaseline="top";break;case"bottom":x=y+b-w+l,t.textBaseline="bottom";break;default:x=y+b/2-w/2+l/2,t.textBaseline="middle"}t.globalAlpha*=i,t.fillStyle=o,r.forEach(((e,i)=>{let s=x+i*l,h=function(t,e,r){return e.reduce(((e,n)=>(t.font=B9(r,n),e+t.measureText(n.text).width)),0)}(t,e,n),f=v;switch(a){case"left":case"justify":f=v;break;case"right":f=v+m-h;break;case"center":f=v+(m-h)/2}if(c&&(t.fillStyle=c,j9(t,f-4,s-u/2-4,h+8,u+8,4,!0,!1),t.fillStyle=o),"justify"===a&&i<r.length-1&&e.length>1){let r=m-h,i=e.length-1,o=r/i;e.forEach(((e,r)=>{t.font=B9(n,e),t.fillText(e.text,f,s),f+=t.measureText(e.text).width+(r<i?o:0)}))}else e.forEach((e=>{t.font=B9(n,e),t.fillText(e.text,f,s),f+=t.measureText(e.text).width}))})),t.restore()}function Y9(t,e,r,n){let i="";for(let n=0;n<e.text.length;n++){let o=i+e.text[n];if(t.measureText(o).width>r)break;i=o}return{...e,text:i+("ellipsis"===n?"…":"")}}function H9(t,e,r={x:0,y:0},n=0,i={x:1,y:1}){const o=Math.cos(-n),a=Math.sin(-n);return{x:((t-=r.x)*o-(e-=r.y)*a+r.x)/i.x,y:(t*a+e*o+r.y)/i.y}}function G9(t,e,r={x:0,y:0},n=0,i={x:1,y:1}){const o=Math.cos(n),a=Math.sin(n);return{x:((t-=r.x)*o-(e-=r.y)*a+r.x)*i.x,y:(t*a+e*o+r.y)*i.y}}function W9(t){var e=t.element,r=t.fillStyle,n=e.style;if(r)if("string"==typeof r)n.backgroundColor=r;else switch(r.type){case"pattern":if(n.backgroundImage="url("+r.image+")",n.backgroundColor="transparent",r.fitPattern?n.backgroundSize="100% 100%":r.width||r.height?n.backgroundSize=`${r.width?r.width+"px":"auto"} ${r.height?r.height+"px":"auto"}`:n.backgroundSize="contain",r.fitPattern)n.backgroundRepeat="no-repeat";else{const{offsetX:t,offsetY:e,noRepeat:i,align:o,color:a}=r;if(i&&(n.backgroundRepeat="no-repeat"),a&&(n.backgroundColor=a),o)switch(o){case"center":n.backgroundPosition="center center";break;case"left-top":n.backgroundPosition="left top";break;case"left-bottom":n.backgroundPosition="left bottom";break;case"right-top":n.backgroundPosition="right top";break;case"right-bottom":n.backgroundPosition="right bottom";break;case"left":n.backgroundPosition="left center";break;case"right":n.backgroundPosition="right center";break;case"top":n.backgroundPosition="center top";break;case"bottom":n.backgroundPosition="center bottom"}else t||e?n.backgroundPosition=`${Number(t)||0}px ${Number(e)||0}px`:delete n.backgroundPosition}break;case"gradient":n.background=function(t,e){var r=e.colorStops,n=e.gradientType;if(r instanceof Array&&r.length>0)switch(n){case"radial":return"radial-gradient(farthest-corner at "+function(t,e){var{width:r,height:n}=t.bounds;switch(e){case"center":return[r/2,n/2];case"left-top":return[0,0];case"right-top":return[r,0];case"left-bottom":return[0,n];default:return[r,n]}}(t,e.center||"center").map((t=>t+"px")).join(" ")+","+r.map((t=>`${t.color} ${100*t.position}%`)).join(",")+")";case"linear":return"linear-gradient("+(180*(e.rotation||0)/3.141592653589793+90+"deg")+", "+r.map((t=>`${t.color} ${100*t.position}%`)).join(",")+")"}return""}(t,r)}else n.background="transparent"}I9="undefined"==typeof document?function(t,e){return new Canvas(t,e)}:function(t,e){var r=document.createElement("canvas");return r.width=t,r.height=e,r};const $9={x:1,y:1},q9={x:0,y:0},X9={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"};function V9(t){var{id:e,scale:r=$9,translate:n=q9,bold:i,italic:o,fontFamily:a="",textAlign:s,textBaseline:c,textOverflow:u,paddingTop:l,paddingBottom:h,paddingLeft:f,paddingRight:d,fontSize:p=n9.FONT_SIZE,lineWidth:g=0,lineDash:v}=t.state;h||=0,l||=0,f||=0,d||=0;var y=t.state.class;t.text;var{strokeStyle:m,fillStyle:b,rotation:x=0,fontColor:w,hidden:A}=t,{left:_,top:k,width:E,height:S}=t.bounds,M=t.element;if(M.hidden=A,e&&(M.id=e),y&&(M.className=y),Object.assign(M.style,X9,{fontFamily:a,fontSize:p+"px",width:E+"px",height:S+"px",paddingTop:l+"px",paddingRight:d+"px",paddingBottom:h+"px",paddingLeft:f+"px",border:g+"px",borderColor:m,borderStyle:g>0?v||n9.LINE_DASH:"",color:w,fontWeight:i?"bold":"",fontStyle:o?"italic":"",textAlign:"end"==s?"right":"start"==s?"left":s,verticalAlign:c,whiteSpace:u?"nowrap":"",overflow:u?"hidden":"",textOverflow:u||""},t.isIn3DSpace()?{}:{left:_+"px",top:k+"px"}),W9(t),function(t){if(t.isShadowable()&&t.state.shadow){var e=t.element,{left:r=0,top:n=0,blurSize:i=0,color:o="transparent"}=t.state.shadow;e.style.boxShadow=`${r}px ${n}px ${i}px ${o}`}}(t),!t.isIn3DSpace()){var T=t.delta(),P=(r&&r.x||1)*T.sx,O=(r&&r.y||1)*T.sy,I=(x||0)+T.theta,C=T.tx||0,R=T.ty||0;M.style.transform=`rotate(${I}rad) translate(${C}px, ${R}px) scale(${P}, ${O}) perspective(1px)`}}var K9,Q9=[];function J9(){K9=null;var t=performance.now(),e=(Q9=Q9.filter((t=>Z9(t)))).reduce(((e,r)=>{let n=t-r.updatedAt;return n>=r.retention?e.kills.push(r):e.next=0==e.next?r.retention-n:Math.min(e.next,r.retention-n),e}),{next:0,kills:[]});e.kills.forEach((t=>{let e=Q9.indexOf(t);-1!=e?(Q9.splice(e,1),t.removeSelf(!0)):U7("Should not be here. Maybe reentrance problem.")})),e.next>0&&(K9=setTimeout(ttt,Math.max(e.next,500)))}function Z9(t){return!t.disposed&&t.retention>0&&!t.isTemplate()&&t.app&&t.app.isViewMode}var ttt=w7((function(){requestAnimationFrame(J9)}),500);var ett=new class{add(t){Z9(t)&&-1==Q9.indexOf(t)&&(Q9.push(t),t.touch()),this.touch()}remove(t){var e=Q9.indexOf(t);e>0&&Q9.splice(e,1),this.touch()}touch(){null!==K9&&(clearTimeout(K9),K9=null),ttt()}get length(){return Q9.length}};const rtt=function(t){return t};function ntt(t){var e=t.indexOf("||"),r="",n="";-1!=e&&(r=t,n=t.substring(e+2,t.length-1).trim(),t=t.replace(t.substring(e,t.length-1),"").trim());var i=t.substr(2,t.length-3).trim().replace(/\[(\w+)\]/g,".$1").replace(/^\./,"").split(".").filter((t=>!!t.trim())),o=i.slice(1);return{defaultValue:n,match:t,originText:r||t,target:i[0],accessor:o.length>0?function(t){return o.reduce(((t,e)=>t?t[e]:void 0),t)}:rtt}}function itt(t,e,r){if(t){var n=r||P7,i=String(t),o=(i.match(/#{[^}]*}/gi)||[]).map((t=>ntt(t))),a=(i.match(/\${[^}]*}/gi)||[]).map((t=>ntt(t)));if(0!=o.length||0!=a.length)return function(){var t=i;return o.forEach((r=>{let i=n(r.accessor(e.getState(r.target)));t=t.replace(r.originText,void 0===i?r.defaultValue||"":i)})),a.forEach((r=>{let i=e.root.findById(r.target),o=n(r.accessor(i&&i.data));t=t.replace(r.originText,void 0===o?r.defaultValue||"":o)})),t}}}const ott=210*Math.PI/180,att=150*Math.PI/180;var stt={"data-spread":function(t,e,r){if(t.app.isEditMode){var n=!1;return t.mappings&&t.mappings.forEach((r=>{let i=t.root.findAll(r.target,t);i&&(e.lineWidth=2,i.forEach((r=>{let i=t.center,o=r.center;i=t.transcoordS2C(i.x,i.y,t.rootModel),o=r.transcoordS2C(o.x,o.y,r.rootModel),e.beginPath();const a=e.createLinearGradient(i.x,i.y,o.x,o.y);["#FFA50033","#FFA500"].forEach(((t,e)=>a.addColorStop(e,t))),e.strokeStyle=a,e.fillStyle=a,function(t,e,r,n=10){var i=r.x-e.x,o=r.y-e.y,a=Math.atan2(o,i),s=r.x+n*Math.cos(a+ott),c=r.y+n*Math.sin(a+ott),u=r.x+n*Math.cos(a+att),l=r.y+n*Math.sin(a+att);t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(r.x,r.y),t.moveTo(r.x,r.y),t.lineTo(s,c),t.moveTo(r.x,r.y),t.lineTo(u,l),t.stroke()}(e,i,o),n=!0})))})),n}},"bouncing-arrow":function(t,e,r){let{left:n,top:i,width:o}=t.bounds,a=t.state.id,{x:s,y:c}=t.transcoordS2C(n+o/2,i,t.rootModel);const u=2*function(t){const e=100*(1-t)%10;return e<5?e:10-e}(r||0);if(s=Math.max(s,20),c=Math.max(c,20),e.beginPath(),e.moveTo(s-10,c-16+u),e.lineTo(s+10,c-16+u),e.lineTo(s+10,c-8+u),e.lineTo(s+16,c-8+u),e.lineTo(s,c+u),e.lineTo(s-16,c-8+u),e.lineTo(s-10,c-8+u),e.lineTo(s-10,c-16+u),e.lineTo(s-10,c-16+u),e.fillStyle="#FF0000",e.fill(),a){e.beginPath(),e.font="12px Arial";let t=e.measureText(a);e.fillStyle="#FF0000",e.roundRect(s-t.actualBoundingBoxLeft-3+20,c-t.actualBoundingBoxAscent-3-6+u,t.actualBoundingBoxLeft+t.actualBoundingBoxRight+6,t.actualBoundingBoxAscent+t.actualBoundingBoxDescent+6,3),e.fill(),e.fillStyle="white",e.fillText(a,s+20,c-6+u)}return!0},decotag:function(t,e,r){const n=t.decotag;if(n){let{left:r,top:i}=t.bounds,{x:o,y:a}=t.transcoordS2C(r,i,t.rootModel);o=Math.max(o+3,5),a=Math.max(a-8,15),e.font="12px Arial";let s=e.measureText(n);return e.beginPath(),e.fillStyle="#FF0000",e.roundRect(o-s.actualBoundingBoxLeft-3,a-s.actualBoundingBoxAscent-3,s.actualBoundingBoxLeft+s.actualBoundingBoxRight+6,s.actualBoundingBoxAscent+s.actualBoundingBoxDescent+6,3),e.fill(),e.beginPath(),e.fillStyle="white",e.fillText(n,o,a),!0}return!1},anchors:function(t,e,r){if(t.app.isEditMode){var n=!1;return t.anchors&&t.anchors.forEach((r=>{const{name:i,position:o}=r;var{x:a,y:s}=o||{};if(!i)return;var{x:a,y:s}=t.transcoordS2C(a,s,t.rootModel);a+=4,s+=4,e.font="12px Arial";let c=e.measureText(i);e.fillStyle="#FF0000",j9(e,a,s,c.width+6,16,3,!0,!1),e.fillStyle="white",e.fillText(i,a+3,s+13),n=!0})),n}},link:function(t,e,r){var n=!1;if(!t.isLine())return;const{fromEnd:i,toEnd:o}=t;return[i,o].filter(Boolean).forEach((t=>{const{component:r,anchor:i}=t;if(!i)return;const{name:o,position:a}=i||{};if(!o||!a)return;var{x:s,y:c}=a||{},{x:s,y:c}=r.transcoordS2C(s,c,r.rootModel);s+=8,c+=20,e.font="12px Arial";let u=e.measureText(o);e.fillStyle="#FF0000",j9(e,s-u.actualBoundingBoxLeft-4,c-u.actualBoundingBoxAscent-4,u.actualBoundingBoxLeft+u.actualBoundingBoxRight+8,u.actualBoundingBoxAscent+u.actualBoundingBoxDescent+8,4,!0,!1),e.fillStyle="white",e.fillText(o,s,c),n=!0})),n}};function ctt(t){return stt[t]}var utt={};const ltt={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},htt=[],ftt={theta:0,tx:0,ty:0,sx:1,sy:1,fade:0};var dtt=0,ptt={};const gtt=new FinalizationRegistry((t=>{!function(t){dtt--;var e=ptt[t];e||(e=ptt[t]={up:0,down:0}),e.down++}(t)}));class vtt{static get nature(){return ltt}static register(t,e){if(!e)return utt[t];utt[t]=e}static get residents(){return ptt}static get residentsCount(){return dtt}static registerDecorator(t,e){!function(t,e){stt[t]=e}(t,e)}constructor(t,e){this._app=e,this._model=t||{},this._state={},this._delta=c7(ftt),e&&this.animation?.config&&(1==this.animation.config.autoplay||(this.animation.config.autoplay??1))&&(this.animation.started=!0),this.clearCache(),ett.add(this),function(t){dtt++;var e=ptt[t];e||(e=ptt[t]={up:0,down:0}),e.up++}(t.type),gtt.register(this,t.type)}created(){}added(t){}removed(t){}async ready(){if(this.state.persistent){const{isViewMode:t,dataStorage:e}=this.app;t&&(this.data=await e.load(this))}}touch(){this.updatedAt=performance.now()}clearCache(...t){!function(t,...e){0==e.length?t.__cache__={}:e.forEach((e=>delete t.__cache__[e]))}(this,...t)}removeSelf(t){t?this.dispose():this.parent&&this.parent.removeComponent(this)}dispose(){this._animation&&(this._animation.dispose(),delete this._animation),this.disposeMappings(),this.parent&&this.parent.removeComponent(this),delete this._text_substitutor,delete this._value_substitutor,this._disposed=!0,this.retention&&ett.touch(),this.clearCache(),delete this._app}get nature(){return this.constructor.nature}get disposed(){return!!this._disposed}isLayer(){return!1}isGroup(){return!1}isContainer(){return!1}isLine(){return!1}isRoot(){return!1}isRootModel(){return!1}is3dish(){return!1}isIn3DSpace(){return!1}isTemplate(){return!!this.get("templatePrefix")}isHTMLElement(){return!1}isConnectable(){return!1}isIdentifiable(){return!0}replaceRefids(t){}get retention(){return Number(this.get("retention"))||0}get hasTextProperty(){return!0}get app(){return!this._app&&this.parent&&(this._app=this.parent.app),this._app}get model(){return this._model}get state(){return Object.assign({},this._model,this._state)}get hierarchy(){var t=c7(this._model);return this.volatile.forEach((e=>{delete t[e]})),t}get volatile(){return htt}get textHidden(){return!!this._textHidden}set textHidden(t){this._textHidden=!!t,this.invalidate()}get(t){return this._model[t]}set(t,e){if("string"==typeof t)return this.set({[t]:e});var r={},n={},i=!1,o=(t=c7(t),this);return Object.getOwnPropertyNames(t).forEach((function(e){let a=o._model[e],s=t[e];T6(a,s)||(n[e]=a,r[e]=s,o._model[e]=s,delete o._state[e],i=!0)})),i&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("retention")&&ett.add(this),r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("mappings")&&this.onchangeMappings(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}getState(t){return this._state.hasOwnProperty(t)?this._state[t]:this.get(t)}setState(t,e){if("string"==typeof t)return this.setState({[t]:e});var r={},n={},i=!1,o=(t=c7(t),this),a=this.getState("sensitive");return Object.getOwnPropertyNames(t).forEach((function(e){let s=o.getState(e),c=t[e];!a&&T6(s,c)||(n[e]=s,r[e]=c,o._state[e]=c,i=!0)})),i&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}get root(){return this.isRoot()?this:this.parent&&this.parent.root}get rootModel(){return this.isRootModel()?this:this.parent&&this.parent.rootModel}get parent(){return this._parent}set parent(t){this._parent=t}get anchors(){return this.nature.anchors||[]}findAnchor(t){return this.anchors.find((e=>e.name===t))}isDescendible(t){return!0}getContext(){return this._parent.getContext()}get center(){var t=this.bounds;return{x:t.left+t.width/2,y:t.top+t.height/2}}set center(t){if(t&&!isNaN(t.x)&&!isNaN(t.y)){var e=this.center;if(Math.round(100*t.x)/100!=Math.round(100*e.x)/100||Math.round(100*t.y)/100!=Math.round(100*e.y)/100){var r=t.x-e.x,n=t.y-e.y;this.path=this.path.map((t=>({x:t.x+r,y:t.y+n})))}}}get location(){const{x:t,y:e}=this.center;return{x:t,y:e,z:this.state.zPos}}set location(t){const{x:e,y:r,z:n}=t||{};this.center={x:e,y:r},isNaN(n)||this.setState("zPos",Number(n))}get rotate(){const{rotationX:t,rotationY:e,rotation:r}=this.state;return{x:t,y:e,z:-r}}set rotate(t){const{x:e,y:r,z:n}=t;this.setState({rotationX:e,rotationY:r,rotation:-n})}get dimension(){const{width:t,height:e}=this.bounds,{depth:r}=this.state;return{width:t,height:e,depth:r}}set dimension(t){const{width:e,height:r,depth:n}=t,{top:i,left:o}=this.bounds;this.bounds={top:i,left:o,width:e,height:r},this.setState("depth",n)}get bounds(){var t,e,r,n,i=this.path;t=e=i[0].x,r=n=i[0].y;for(let o=1;o<i.length;o++){let a=i[o];a.x<t?t=a.x:a.x>e&&(e=a.x),a.y<r?r=a.y:a.y>n&&(n=a.y)}return{left:t,top:r,width:e-t,height:n-r}}set bounds(t){var e=this.bounds;if(Math.round(100*t.width)/100!=Math.round(100*e.width)/100||Math.round(100*t.height)/100!=Math.round(100*e.height)/100||Math.round(100*t.left)/100!=Math.round(100*e.left)/100||Math.round(100*t.top)/100!=Math.round(100*e.top)/100){var r=0==e.width?1:t.width/e.width,n=0==e.height?1:t.height/e.height;this.path=this.path.map((i=>({x:t.left+(i.x-e.left)*r,y:t.top+(i.y-e.top)*n})))}}get path(){return U7("이 컴포넌트에 get path 가 구현되어있지 않음.",this),[]}set path(t){U7("이 컴포넌트에 get path 가 구현되어있지 않음.",this)}get drawPath(){return this.path}outline(t){return function(t,e){var r=t.path.slice();if(r&&r.length){var n=1,i=[];if(t.isLine()||r.push(r[0]),e<=0)return t.transcoordS2T(r[0].x,r[0].y);if(e>=1)return t.transcoordS2T(r[r.length-1].x,r[r.length-1].y);for(;r[n];){let t=r[n-1],e=r[n],o=e.x-t.x,a=e.y-t.y;i.push(Math.sqrt(o*o+a*a)),n++}var o=i.reduce((function(t,e){return t+e}),0);n=0;var a=0;do{a+=i[n++]}while(a/o<e);e=(e-(a-=i[--n])/o)*(o/i[n]);var s=r[n%r.length],c=r[(n+1)%r.length],u=s.x+Math.round((c.x-s.x)*e),l=s.y+Math.round((c.y-s.y)*e);return t.transcoordS2T(u,l)}U7("path should not be empty")}(this,t||0)}get strokeStyle(){return this.get("strokeStyle")}set strokeStyle(t){this.set("strokeStyle",t)}get fillStyle(){return this.getState("fillStyle")}set fillStyle(t){this.setState("fillStyle",t)}get fontColor(){return this.get("fontColor")}set fontColor(t){this.set("fontColor",String(P7(t)))}get rotation(){return this.getState("rotation")}set rotation(t){this.setState("rotation",Number(P7(t)))}contains(t,e){return!1}get mutable(){return this.nature.mutable}get resizable(){return this.nature.resizable&&!this.stuck}adjustResize(t,e,r){if(r){let e=this.bounds,r=e.height/e.width,n=t.width-e.width,i=t.height-e.height;n*r>i?i=n*r:n=i/r;let o=t.left-e.left,a=t.top-e.top;return 0!=o&&0!=a?(a=-i,o=-n):0!=o?o=-n:0!=a&&(a=-i),{left:e.left+o,top:e.top+a,width:e.width+n,height:e.height+i}}return t}get rotatable(){return this.nature.rotatable&&!this.stuck}adjustRotation(t,e){if(e||this.app.rotateStepForced){let e=this.app.rotateStep;return Math.floor((t+e/2)/e)*e}return t}get capturable(){return!1!==this.get("capturable")&&(this.app.isEditMode||!this.hidden)}get stuck(){return!!(this.parent&&this.parent.layout.isStuck(this)||this.get("locked"))}findFirst(t,...e){if(t(this,...e))return this}findAll(t,...e){return"string"==typeof t?f9(t,this,e[0]||this):"function"==typeof t&&t(this,...e)?[this]:void 0}capture(t,e,r){if(!this.capturable||r?.(this))return!1;var n=this.transcoordP2S(t,e);return this.contains(n.x,n.y)?this:void 0}prepare(t,e){t(this)}prepareIf(t){t&&this.prepare&&this.prepare((t=>{this.invalidate()}),(t=>{U7(t)}))}get decotag(){const{id:t,tag:e}=this.state;return(t?`#${t}`:"")+(e?`@${e}`:"")}get decorators(){return["decotag","data-spread"]}get reactionDecorators(){return["bouncing-arrow"]}get hidden(){return this.getState("hidden")||!this.data&&0!==this.data&&this.getState("ndns")||this.isTemplate()}set hidden(t){this.setState("hidden",t)}draw(t){t.save(),this.__proto__.hasOwnProperty("_pre_draw")?this._pre_draw(t):this.prerender(t),this.__proto__.hasOwnProperty("_draw")?this._draw(t):this.render(t),this.__proto__.hasOwnProperty("_post_draw")?this._post_draw(t):this.postrender(t),t.restore()}delta(t,e){if(void 0===e)return t?this._delta[t]:this._delta;this._delta[t]=e}prerender(t){var e=this.rotatePoint,{scale:r,rotation:n,shadow:i,alpha:o}=this.state,a=(r&&r.x||1)*this._delta.sx,s=(r&&r.y||1)*this._delta.sy,c=(n||0)+this._delta.theta,{tx:u=0,ty:l=0}=this._delta,h=(o||1)-this._delta.fade;(u||l)&&t.translate(u,l),(1!=a||1!=s||c)&&(t.translate(e.x,e.y),1==a&&1==s||t.scale(a,s),c&&t.rotate(c),t.translate(-e.x,-e.y)),h&&(t.globalAlpha=h),i&&o9(t,i,this),this.app.isEditMode&&this.hidden&&(t.globalAlpha*=.5)}render(t){}postrender(t){this.drawText(t)}drawText(t){!this.textHidden&&this.text&&this.hasTextProperty&&U9(t,this.textBounds,this.textLines(t),this.state)}drawStroke(t,e){R9(t,e?{...this.state,...e}:this.state)}drawFill(t,e){this.fillStyle&&"transparent"!=this.fillStyle&&(C9(t,this.bounds,this.center,e?{...this.state,...e}:this.state,this),function(t){t.shadowColor="transparent"}(t))}animate(t){return this._animate&&this._animate.stop(),this._animate=j8(t),this._animate}move({x:t,y:e}){var r=this.path,n=t,i=e;this.path=r.map((t=>({x:t.x+n,y:t.y+i})))}symmetryX(t){"number"!=typeof t&&(t=this.center.x);var{rotation:e}=this.state,r=this.fillStyle;if(this.set("rotation",2*Math.PI-e),r&&"gradient"===r.type&&"linear"===r.gradientType){var n=c7(r);n.rotation=(Math.PI-parseFloat(r.rotation||0))%(2*Math.PI),this.set("fillStyle",n)}this.path=this.path.map((e=>({x:2*t-e.x,y:e.y})))}symmetryY(t){this.symmetryX(),this.set("rotation",(Math.PI+this.model.rotation)%(2*Math.PI)),t&&this.move({x:0,y:2*(t-this.center.y)},!1)}get animation(){if(this.app.isViewMode&&!this.isTemplate()){if(!this._animation){var t=this.state.animation;t&&t.oncreate&&(this._animation=(e=this,r=t.oncreate,(n=R8[r.type])?new n(e,r):null))}var e,r,n;return this._animation}}effect(t,e){return function(t,e,r){var n=a9[r.type];n&&n(t,e,r)}(this,t,e)}set started(t){this.animation&&(this.animation.started=t)}invalidate(){this.parent&&this.parent.invalidate()}get font(){return F9(this.model)}get lineHeight(){var t=this.get("lineHeight");return t||1.2*this.fontSize}defaultTextSubstitutor(){var t=this.getState("text");return null==t?"":String(t)}get textSubstitutor(){return this._text_substitutor||(this._text_substitutor=itt(this.getState("text"),this)||this.defaultTextSubstitutor),this._text_substitutor}get text(){var t=this.get("textFormat");return t?function(t,e){if(!t||isNaN(+e))return e;var r,n,i,o,a,s,c,u,l,h=t.length,f=t.search(/[0-9\-\+#]/),d=f>0?t.substring(0,f):"",p=t.split("").reverse().join(""),g=p.search(/[0-9\-\+#]/),v=h-g,y=t.substring(v,v+1),m=v+("."===y||","===y?1:0),b=g>0?t.substring(m,h):"";if(r=(e="-"===(t=t.substring(f,m)).charAt(0)?-e:+e)<0?e=-e:0,i=(n=t.match(/[^\d\-\+#]/g))&&n[1]&&n[0]||",",t=t.split("."),e=+(e=e.toFixed(t[1]&&t[1].length))+"",a=t[1]&&t[1].lastIndexOf("0"),(!(c=e.split("."))[1]||c[1]&&c[1].length<=a)&&(e=(+e).toFixed(a+1)),u=t[0].split(i),t[0]=u.join(""),(o=t[0]&&t[0].indexOf("0"))>-1)for(;c[0].length<t[0].length-o;)c[0]="0"+c[0];else 0==+c[0]&&(c[0]="");if((e=e.split("."))[0]=c[0],s=u[1]&&u[u.length-1].length){for(p="",v=(l=e[0]).length%s,h=l.length,m=0;m<h;m++)p+=l.charAt(m),!((m-v+1)%s)&&m<h-s&&(p+=i);e[0]=p}return e[1]=t[1]&&e[1]?"."+e[1]:"","0"!==(n=e.join(""))&&""!==n||(r=!1),d+("+"==t[0].substring(0,1)?r?"-":"+":r?"-":"")+n+b}(t,this.textSubstitutor()):this.textSubstitutor()}set text(t){delete this._text_substitutor;var e=P7(t);this.setState("text",null==e?"":String(e))}textLines(t){const{textWrap:e,supportMarkdown:r}=this.state;return N9(t||this.getContext(),this.textBounds.width,this.font,this.text,e,r)}get textBounds(){var{paddingTop:t,paddingLeft:e,paddingRight:r,paddingBottom:n}=this.state;n||=0,t||=0,e||=0,r||=0;var{left:i,top:o,width:a,height:s}=this.bounds;return{left:i+e,top:o+t,width:Math.max(a-e-r,0),height:Math.max(s-t-n,0)}}get textRotation(){return 0}get rotatePoint(){return this.center}trim(){delete this._model[""],"chartjs"!==this._model.type&&delete this._model.chart}get value(){var t=this.nature["value-property"]||"text";return"value"==t?this.getState("value"):this[t]}set value(t){var e=this.nature["value-property"]||"text";"value"==e?this.setState("value",t):this[e]=t}get data(){return this.getState("data")}set data(t){this.setState("data",t),this.touch()}set tap(t){var e=this.model.event?.tap;if(e){const{cx:t,cy:r}=this.center;this.rootModel?._doEventAction(e,this,!0,new CustomEvent("click",{offsetX:t,offsetY:r}))}}get mappings(){return!this._mappings&&this.parent&&this.buildMappings(),this._mappings}serialize(...t){return JSON.stringify(this.hierarchy,...t)}get controls(){}closeScene(t){this.rootModel.closeScene(t)}}vtt.union=function(t){var e,r,n,i;return t.forEach((t=>{void 0===e?(e=t.left,r=t.top,n=t.left+t.width,i=t.top+t.height):(e=Math.min(t.left,e),r=Math.min(t.top,r),n=Math.max(t.left+t.width,n),i=Math.max(t.top+t.height,i))})),{left:e,top:r,width:n-e,height:i-r}},vtt.transcoordR=H9,vtt.transcoordRR=G9,vtt.createCanvas=I9,vtt.memoize=G7,vtt.mixin=B7,vtt.drawText=U9,vtt.font=F9,vtt.textLines=N9,vtt.drawStroke=R9,vtt.drawFill=C9,vtt.reposition=V9,vtt.RetentionManager=ett,vtt.template=function(t,e,r){var n=A8.imports._.templateSettings||A8;r&&H6(t,e,r)&&(e=void 0),t=b8(t),e=V6({},e,n,c8);var i,o,a=V6({},e.imports,n.imports,c8),s=n6(a),c=function(t,e){return o8(e,(function(e){return t[e]}))}(a,s),u=0,l=e.interpolate||T8,h="__p += '",f=RegExp((e.escape||T8).source+"|"+l.source+"|"+(l===h8?M8:T8).source+"|"+(e.evaluate||T8).source+"|$","g"),d=O8.call(e,"sourceURL")?"//# sourceURL="+(e.sourceURL+"").replace(/\s/g," ")+"\n":"";t.replace(f,(function(e,r,n,a,s,c){return n||(n=a),h+=t.slice(u,c).replace(P8,l8),r&&(i=!0,h+="' +\n__e("+r+") +\n'"),s&&(o=!0,h+="';\n"+s+";\n__p += '"),n&&(h+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),u=c+e.length,e})),h+="';\n";var p=O8.call(e,"variable")&&e.variable;if(p){if(S8.test(p))throw new Error("Invalid `variable` option passed into `_.template`")}else h="with (obj) {\n"+h+"\n}\n";h=(o?h.replace(_8,""):h).replace(k8,"$1").replace(E8,"$1;"),h="function("+(p||"obj")+") {\n"+(p?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(i?", __e = _.escape":"")+(o?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+h+"return __p\n}";var g=i8((function(){return Function(s,d+"return "+h).apply(void 0,c)}));if(g.source=h,r8(g))throw g;return g},vtt.buildSubstitutor=itt,Object.assign(vtt.prototype,{drawEffect:function(t){const{effects:e}=this.state;(e||[]).forEach((e=>{this.effect(t,e)}))},prepareFill:function(t,e){var r=this.fillStyle;if(r&&"pattern"==r.type&&r.image){if("string"!=typeof r.image)return this._pattern_image_origin=this._pattern_image=r.image,void t(this);this._pattern_image=null,this._pattern_image_origin=new Image;var n=this;this._pattern_image_origin.onload=function(){if(!r.fitPattern&&!r.width&&!r.height)return n._pattern_image=n._pattern_image_origin,void t(this);let e=r.width||this.width,i=r.height||this.height;r.fitPattern&&(e=n.bounds.width,i=n.bounds.height);let o=I9(e,i);o.getContext("2d").drawImage(this,0,0,this.width,this.height,0,0,e,i),n._pattern_image=o,t(this)},this._pattern_image_origin.onerror=function(t){e(t)};try{"data"!==String(r.image).substring(0,4)?this._pattern_image_origin.crossOrigin="use-credentials":this._pattern_image_origin.crossOrigin=null,this._pattern_image_origin.src=this.app.url(r.image)}catch(t){e(t)}}else t(this)},prepareFillIf:function(t){t&&this.prepareFill((t=>{this.invalidate()}),(t=>{U7(t)}))},onchangeFill:function(t,e){var r=this.fillStyle;r&&"pattern"!==r.type?this._pattern_image&&(this._pattern_image=null,this._pattern_image_origin=null):r?.image&&this.prepareFillIf(r.image)},drawImage:function(t,e,r,n,i,o){e.complete?t.drawImage(e,r,n,i,o):e.addEventListener("load",(()=>{this.invalidate()}))},mutateBounds:function(t,e){var r=this.bounds,n=this.rotatePoint,i=this.get("rotation"),o=this.get("scale");if(t){var a=t.call(e,r);a&&(r=a)}var{left:s,top:c,width:u,height:l}=r,h=[{x:s,y:c},{x:s+u,y:c+l}],f=(h=h.map((t=>G9(t.x,t.y,n,i,o))))[0],d=h[1];n={x:(f.x+d.x)/2,y:(f.y+d.y)/2},f=(h=h.map((t=>H9(t.x,t.y,n,i,o))))[0],d=h[1],this.bounds={left:f.x,top:f.y,width:d.x-f.x,height:d.y-f.y}},mutatePath:function(t,e,r){var n=this.path,i=this.rotatePoint;this.get("rotation"),this.get("scale"),t&&(n=t.call(r,n));var o=n.map((t=>this.transcoordS2P(t.x,t.y)));e&&(n=e.call(r,o))&&(o=n);var a,s,c,u,l={x:0,y:0};a=s=(n=o.map((t=>this.transcoordP2S(t.x,t.y,l))))[0].x,c=u=n[0].y;for(let t=1;t<n.length;t++){let e=n[t];e.x<a?a=e.x:e.x>s&&(s=e.x),e.y<c?c=e.y:e.y>u&&(u=e.y)}i={x:(a+s)/2,y:(c+u)/2},i=this.transcoordS2P(i.x,i.y,l),this.path=o.map((t=>this.transcoordP2S(t.x,t.y,i)))},access:function(t){if(t){var e=String(t),r=(e.match(/#{(\S*)}/)||[]).map((t=>ntt(t)))[0];if(r)return r.accessor(this.getState(r.target));var n=(e.match(/\${[^}]*}/)||[]).map((t=>ntt(t)))[0];if(n){let t=this.root.findById(n.target);return n.accessor(this.getState(t))}return t}},substitute:function(t,e){if(t){var r=String(t),n=e||P7,i=(r.match(/#{(\S*)}/gi)||[]).map((t=>ntt(t))),o=(r.match(/\${[^}]*}/gi)||[]).map((t=>ntt(t)));if(0==i.length&&0==o.length)return r;var a=r;return i.forEach((t=>{let e=n(t.accessor(this.getState(t.target)));a=a.replace(t.match,void 0===e?"":e)})),o.forEach((t=>{let e=this.root.findById(t.target),r=n(t.accessor(e&&e.data));a=a.replace(t.match,void 0===r?"":r)})),a}},onchangeMappings:function(t,e){this.disposeMappings(),O9.call(this)},onchangeData:function(t,e){this.state.persistent&&this.app?.isViewMode&&this.app?.dataStorage.save(this,t.data),O9.call(this,[!0])},buildMappings:function(){if(this._model.mappings)return!this._model.mappings instanceof Array?(U7("Mappings model is invalid (should be a Array) ..",this._model.mappings),void(this._mappings=[])):void(this._mappings=(this._model.mappings||[]).filter((t=>t.rule&&t.target)).map((t=>new T9(t,this))));this._mappings=[]},executeMappings:O9,disposeMappings:function(){this._mappings&&this._mappings.forEach((t=>t.dispose())),delete this._mappings},ondropfile:function(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void this.set("fillStyle",{type:"pattern",image:e[r],fitPattern:!0})},transcoordS2P:function(t,e,r){if(!this.parent)return{x:t,y:e};let{rotation:n=0,scale:i={x:1,y:1}}=this.state;if(this.isLayer()){const r=this.state.translate;let o=G9(t,e,void 0,n+this._delta.theta,i);return r&&(o.x+=r.x,o.y+=r.y),o}r=r||this.rotatePoint;const{theta:o=0,tx:a=0,ty:s=0,sx:c=1,sy:u=1}=this._delta||{};r={x:r.x+a,y:r.y+s},i={x:i.x*c,y:i.y*u};const l=G9(t+a,e+s,r,n+o,i);return{x:l.x-(r.x*i.x-r.x),y:l.y-(r.y*i.y-r.y)}},transcoordP2S:function(t,e,r){if(!this.parent)return{x:t,y:e};const{rotation:n=0,scale:i={x:1,y:1}}=this.state;if(this.isLayer()){const r=this.state.translate;let o=H9(t,e,r,n,i);return r&&(o.x-=r.x/i.x,o.y-=r.y/i.y),o}const o=H9(t,e,r=r||this.rotatePoint,n,i);return{x:o.x+(r.x-r.x/i.x),y:o.y+(r.y-r.y/i.y)}},transcoordS2T:function(t,e,r){r=r||this.rootModel;const n=[];for(let t=this.parent;t&&t!==r;t=t.parent)n.push(t);let i=this.transcoordS2P(t,e);return n.forEach((t=>{const{scale:e}=t.model,r=t.bounds;if(e){const n=t.rotatePoint;i.x+=(n.x-r.left)*e.x,i.y+=(n.y-r.top)*e.y}else i.x+=r.left,i.y+=r.top;i=t.transcoordS2P(i.x,i.y)})),i},transcoordT2P:function(t,e,r){r=r||this.rootModel;const n=[];for(let t=this.parent;t&&t!==r;t=t.parent)n.splice(0,0,t);let i={x:t,y:e};return n.forEach((t=>{const{scale:e}=t.model;i=t.transcoordP2S(i.x,i.y);const r=t.bounds;if(e){const n=t.rotatePoint;i.x-=(n.x-r.left)/e.x,i.y-=(n.y-r.top)/e.y}else i.x-=r.left,i.y-=r.top})),i},transcoordT2S:function(t,e,r){const n=this.transcoordT2P(t,e,r);return this.transcoordP2S(n.x,n.y)},transcoordS2TR:function(t,e,r){r=r||this.rootModel;const n=this.transcoordS2T(t,e,r);return G9(n.x,n.y,void 0,(r.get("rotation")||0)+r._delta.theta)},transcoordS2O:function(t,e,r){const n=this.rootModel,i=this.transcoordS2T(t,e,n);return r.transcoordT2S(i.x,i.y,n)},transcoordC2S:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;const{translate:n={x:0,y:0},scale:i={x:1,y:1},rotation:o=0}=r.model;let a=H9(t,e,n,o,i);return n&&(a.x-=n.x/i.x,a.y-=n.y/i.y),r===this?a:this.transcoordT2S(a.x,a.y,r)},transcoordS2C:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;let n;n=r!==this?this.transcoordS2T(t,e,r):{x:t,y:e};const{translate:i={x:0,y:0},rotation:o=0,scale:a={x:1,y:1}}=r.model;return n=G9(n.x,n.y,void 0,o+r._delta.theta,a),i&&(n.x+=i.x,n.y+=i.y),n},_pre_draw:vtt.prototype.prerender,_draw:vtt.prototype.render,_post_draw:vtt.prototype.postrender}),["rotatePoint","font","lineHeight","retention"].forEach((t=>vtt.memoize(vtt.prototype,t,!1))),["bounds","center","textBounds"].forEach((t=>vtt.memoize(vtt.prototype,t,!0))),vtt.mixin(vtt.prototype,L7.withEvent);class ytt extends vtt{set rotationX(t){this.setState("rotationX",t)}get rotationX(){return this.getState("rotationX")}set rotationY(t){this.setState("rotationY",t)}get rotationY(){return this.getState("rotationY")}set rotationZ(t){this.setState("rotation",t)}get rotationZ(){return this.getState("rotation")}set zPos(t){this.setState("zPos",t)}get zPos(){return this.getState("zPos")}set depth(t){this.setState("depth",t)}get depth(){return this.getState("depth")}postrender(t){this.drawFill(t),this.drawStroke(t),super.postrender(t)}render(t){var e=this.drawPath,{round:r=0}=this.state;if(!(e.length<=1)){t.beginPath();for(var n=0;n<e.length;n++){const c=e[(n-1+e.length)%e.length],u=e[(n+e.length)%e.length],l=e[(n+1)%e.length];if(c.x===u.x&&c.y===u.y)continue;var i=0!==(s=Math.sqrt((c.x-u.x)*(c.x-u.x)+(c.y-u.y)*(c.y-u.y)))?Math.atan2(c.x-u.x,c.y-u.y):0,o=Math.sin(i)*Math.min(r,s/2)+u.x,a=Math.cos(i)*Math.min(r,s/2)+u.y;const h=r>0||0!==s?{x:o,y:a}:u;var s;i=0!==(s=Math.sqrt((l.x-u.x)*(l.x-u.x)+(l.y-u.y)*(l.y-u.y)))?Math.atan2(l.x-u.x,l.y-u.y):0,o=Math.sin(i)*Math.min(r,s/2)+u.x,a=Math.cos(i)*Math.min(r,s/2)+u.y;const f=r>0||0!==s?{x:o,y:a}:u;0==n?t.moveTo(h.x,h.y):t.lineTo(h.x,h.y),r>0&&t.quadraticCurveTo(u.x,u.y,f.x,f.y)}t.closePath()}}}function mtt(t,e,r){return Math.max(0,Math.min(t,Math.min(r,e)/2))}var btt=t=>{var e=class extends t{contains(t,e){var{left:r,top:n,width:i,height:o,lineWidth:a=0}=this.state,s=a/2;return t<Math.max(r+i,r)+s&&t>Math.min(r+i,r)-s&&e<Math.max(n+o,n)+s&&e>Math.min(n+o,n)-s}set path(t){var e=t[0],r=t[2];this.set({left:e.x,top:e.y,width:r.x-e.x,height:r.y-e.y})}get path(){var{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return[{x:t,y:e},{x:t+r,y:e},{x:t+r,y:e+n},{x:t,y:e+n}]}get anchors(){return function(t){var{left:e,top:r,width:n,height:i}=t.bounds,o=e+n/2,a=r+i/2;return[{name:"TOP",position:{x:o,y:r}},{name:"RIGHT",position:{x:e+n,y:a}},{name:"BOTTOM",position:{x:o,y:r+i}},{name:"LEFT",position:{x:e,y:a}}]}(this)}get bounds(){const{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return{left:t,top:e,width:r,height:n}}set bounds(t){this.set({left:0,top:0,width:0,height:0,...t})}render(t){var{round:e=0}=this.model,{left:r,top:n,width:i,height:o}=this.bounds;t.translate(r,n),t.beginPath(),(e=mtt(e,i,o))>0?t.roundRect(0,0,i,o,e):t.rect(0,0,i,o),t.translate(-r,-n)}};return G7(e.prototype,"path",!1),e};const xtt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"textarea",label:"front-side-template",name:"frontSideTemplate",property:{language:"html"}},{type:"textarea",label:"back-side-template",name:"backSideTemplate",property:{language:"html"}},{type:"textarea",label:"style",name:"style",property:{language:"css"}}],help:"scene/component/info-window"};const wtt=20;function Att(t,e){var r=t.split(/\s+/),n=r.indexOf(e);return-1!=n?r.splice(n,1):r.splice(-1,0,e),r.join(" ")}class _tt extends(btt(ytt)){static get image(){return _tt._image||(_tt._image=new Image,_tt._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAY1BMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAbxiAAAAIHRSTlMA+gPshCwwWFzYCeLRm7QRG6rLeDZI9JOJJDtjb1HAf1sAT80AAAQQSURBVHhe7MCBAAAAAMKw/KkzOMG2BAAAAKeu3lUohIEggO7jQi5qHqpgwML5/6+0F0y02z31FlvMMLKt86QMQ1ined2Evih1hFFjLfRWjgzDOGZ6JSiM00B9EuHALtQxJLiQBmqSBCeSUEuEGzs1BDjSaHxWOKK5Eyz/4SoMV/hp4+vtcPkdwZD/udwevNg7t1xXYRiKmkB7C+ENlPLq8fxHeX+RGjWQ1D45ldcIulBIvCvYJGBEadyTzxAcfY57NBjpLScOO/bzugcTHe7IMwiSLMcdHZhocMcMgTLjjgZM7F1bCJZ2v27ARGzYDwIk2Z+JYGJ/iiwQLMv+JAEThjkmRG64Q0Q+gIiIiIiIiIiIyFy0KRFt0bOJZAWSUigmkQaJaXhENiRnYBEpkZySRSRGcmIWEaQnYhHRSI5mESmQnIJFZIqQmGhiEYEbEnPjGlEGjYTogW/WUkOXENENSqZfEXmDiIiIiIiIiIiIiIiIiIiImq5ETIpRpBpjJCMeKy6Ri0ZS9MQjkmkkJs1YRDokp2MRyZGclkUkQnIiEQltaX3Lzb6yiGTpl2y/avqSAxGgelCOKI+Kc2isL0TUSsZ4EREREREREREREREREREREfnIQzXrNWSRTeNxnlOwIgueIr6AAyE+CpiqMEUK71IDO4E+LluEKYKnKcMUifEsTZgiJZ5lDVNkwJPcqzBFoPF/HplfxL/w6b4EPGv1h18Weya1TL8iIiIeiIiIiIiIiEjkPefxV+5YA9PPHylB+u5aqgZ39H+jKOxrqtu+pkzvr9YbzoZ6w2OFkzcrA3yE4WZlSSyFk54VoA/wR43+FaD+r9w32QdWvgvjp2ty2xq8qHPHmtyPFxfrK3hw1ejERlAlfR/Ame2OTow05d4rOLLSlHtDVhI0uRO01JeZ405op6zgNNXT+bIRfpIgn+AkU4pOxBscohojdCHu4RRzjC5EYwVHqRONDkSnEvK/CB3QSU32IRW3ZPnj9iEVoGCNTLVrh8ia1x+6wq8xvB5mz8pxu7oPwIn9lcR0AiuX1+1KX+BXqdvXzWsAC0NsGjzZsS/2Bd6yRA5RgIHkXNhSD3whASZ8rrB9mItuEAizac0fDlHxDMEwpQfD1tW4y3Hjfy5s9nOHH3uwWA+EqEJBWCjoTL/S5toBB/7hu6zer74NgqSP39zJU+qQX3ix763mHTqvIVRUVprCljlElRkEjBqNYevH8veBJ2xhiyhE8YctmhDFH7ZoQhR/2KIJUfxhiyRE8YctmhDFH7ZoQhR/2OIJUfxhC9Ppf/t1jgJACERRsHGyYRZB0Ujvf0xD8w6kP7y6RZmgf/oTFTtbbzJVxZWo2Nlqw6TVy5GowNl6ssm7v50obamfSxQAAAAAAAsKLM15fb3vpQAAAABJRU5ErkJggg=="),_tt._image}static toggle(t,e,r,n){if(e){var i=t.root.findById(e);i?i._findInfoWindowByComponent(t)?_tt.hide(t,e):_tt.show(t,e,r,n):console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}static hide(t,e){if(e){var r=t.root.findById(e);r?r._removeInfoWindow(t):console.warn("InfoWindow Not Found.",e)}}static show(t,e,r,n){if(e){var i=t.root.findById(e);if(i){if(!i._findInfoWindowByComponent(t)){var{frontSideTemplate:o="",backSideTemplate:a=""}=i.model,s=[o,a].filter((t=>String(t).trim()));if(s=s.map((t=>vtt.template(function(t,e,r){return(e||r?['<div class="info-window-btns">',e?'<button class="closable">&#88</button>':"",r?'<button class="flipable">&#8652</button>':"","</div>"]:[]).concat(['<div class="info-window-content">',t,"</div>"]).join("")}(t,!r,2==s.length)))),0!=s.length){var c='\n.flip {\n backface-visibility: hidden;\n border-radius: 7px;\n height: auto;\n font: normal 14px helvetica, arial, san serif;\n position: absolute;\n opacity: 0.9;\n transform-origin: 50% 50% 0px;\n transition: all 2s;\n min-width: 100px;\n min-height: 50px;\n background-color: #3e424e;\n box-shadow: 2px 3px 2px 0px rgba(0,0,0,0.15);\n}\n\n#side-1 {\n transform: rotateY(0deg);\n}\n\n.flip:after {\n content: "";\n display: block;\n position: absolute;\n opacity: 0.9;\n width: 0;\n height: 0;\n}\n\n.flip.arrow-top:after {\n left: 45%;\n top: -17px;\n border-left: 10px solid transparent;\n border-bottom: 18px solid #323b44;\n border-right: 10px solid transparent;\n}\n\n.flip.arrow-right:after {\n left: 100%;\n top: 48%;\n border-top: 10px solid transparent;\n border-left: 18px solid #323b44;\n border-bottom: 10px solid transparent;\n}\n\n.flip.arrow-bottom:after {\n left: 45%;\n top: 100%;\n border-left: 10px solid transparent;\n border-top: 18px solid #323b44;\n border-right: 10px solid transparent;\n}\n\n.flip.arrow-left:after {\n right: 100%;\n top: 48%;\n border-top: 10px solid transparent;\n border-right: 18px solid #323b44;\n border-bottom: 10px solid transparent;\n}\n\n#side-2 {\n transform: rotateY(180deg);\n}\n\n.flip-side-1 {\n transform: rotateY(0deg) !important;\n}\n\n.flip-side-2 {\n transform: rotateY(180deg) !important;\n}\n\n.info-window-btns {\n position: absolute;\n top: -18px;\n right: 5px;\n overflow: hidden;\n}\n\n.info-window-content {\n padding: 10px;\n color: #efefef;\n font-size: 13px;\n line-height: 1.4;\n}\n\n.info-window-btns button {\n width: 40px;\n height: 40px;\n float: right;\n border: 0;\n border-radius: 50%;\n background-color: #2a7da1;\n margin-right: 3px;\n text-align: center;\n cursor: pointer;\n font-size: 35px;\n color: #fff;\n line-height: 0;\n}\n\n.info-window-btns button:hover {\n background-color: #60bb23;\n}\n'+i.get("style"),{left:u,top:l}=t.bounds,{x:h,y:f}=n?t.rootModel.transcoordC2S(n.x,n.y):t.transcoordS2T(u,l);u=h,l=f;var d=document.createElement("span");d.style.position="absolute";var p=document.createElement("style");if(p.type="text/css",p.appendChild(document.createTextNode(c)),d.appendChild(p),s[0]){var g=document.createElement("div");g.id="side-1",g.className="flip",g.style.display="inline-block",g.innerHTML=s[0](t)}if(s[1]){var v=document.createElement("div");v.id="side-2",v.className="flip",v.style.display="inline-block",v.innerHTML=s[1](t)}e9.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))})),r9.forEach((function(t){d.addEventListener(t,(function(t){t.stopPropagation()}))}));var y=t.root.model_layer.overlay;if(g&&d.appendChild(g),v&&d.appendChild(v),y.appendChild(d),i._addInfoWindow(t,d,p),g){let r=g.querySelector(".info-window-btns > .flipable");r&&r.addEventListener("click",(function(t){t.preventDefault(),v.className=Att(v.className,"flip-side-1"),g.className=Att(g.className,"flip-side-2")}),!1);let n=g.querySelector(".info-window-btns > .closable");n&&n.addEventListener("click",(function(r){r.preventDefault(),_tt.hide(t,e)}),!1)}if(v){let r=v.querySelector(".info-window-btns > .flipable");r&&r.addEventListener("click",(function(t){t.preventDefault(),v.className=Att(v.className,"flip-side-1"),g.className=Att(g.className,"flip-side-2")}),!1);let n=v.querySelector(".info-window-btns > .closable");n&&n.addEventListener("click",(function(r){r.preventDefault(),_tt.hide(t,e)}),!1)}var m=g.offsetWidth,b=g.offsetHeight;window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var x=t.rootModel.target.getBoundingClientRect(),w=[];g&&w.push(g),v&&w.push(v);var A={x:u,y:l},_=t.transcoordS2C(A.x,A.y);if(_.x+m/2+x.left<x.right&&_.x-m/2>x.left){if(b+wtt<_.y)return d.style.marginLeft=A.x-m/2+"px",d.style.marginTop=A.y-b-wtt+"px",void w.forEach((t=>t.className+=" arrow-bottom"));if(_=t.transcoordS2C(A.x,A.y+b+wtt),x.bottom>_.y+x.top)return d.style.marginLeft=A.x-m/2+"px",d.style.marginTop=A.y+wtt+"px",void w.forEach((t=>t.className+=" arrow-top"))}if((_=t.transcoordS2C(A.x,A.y)).x-(m+wtt)>x.left)return d.style.marginLeft=A.x-m-wtt+"px",d.style.marginTop=A.y-b/2+"px",void w.forEach((t=>t.className+=" arrow-right"));d.style.marginLeft=A.x+wtt+"px",d.style.marginTop=A.y-b/2+"px",w.forEach((t=>t.className+=" arrow-left"))}}}else console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}dispose(){this.infoWindows.map((t=>t.component)).forEach((t=>this._removeInfoWindow(t))),super.dispose()}get infoWindows(){return this._windows||(this._windows=[]),this._windows}_findInfoWindowByComponent(t){return this.infoWindows.find((e=>e.component===t))}_addInfoWindow(t,e,r){this._findInfoWindowByComponent(t)||this._windows.push({component:t,window:e,styleElement:r})}_removeInfoWindow(t){var e=this._findInfoWindowByComponent(t);if(!e)return;let r=e.window;r&&r.parentNode.removeChild(r);var n=this.infoWindows.lastIndexOf(e);this.infoWindows.splice(n,1)}render(t){var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),this.drawImage(t,_tt.image,e,r,n,i)}get hasTextProperty(){return!1}get nature(){return xtt}}vtt.register("info-window",_tt);var ktt={};var Ett={list:function(){return{...ktt}},register:function(t,e){ktt[t]=e},unregister:function(t){delete ktt[t]},get:function(t){if(t){var e=ktt[t];return e||U7("Layout Not Found - ",t),e}}},Stt={reflow:function(t,e){this.drawables(t).filter((t=>t.isHTMLElement())).forEach((t=>t.reposition()))},capturables:function(t){return t.components},drawables:function(t){return t.app&&!t.app.isViewMode?t.components:t.components.filter((t=>!t.hidden))},isStuck:function(t){return!1},ABSOLUTE:!0};Ett.register("html-absolute",Stt);const Mtt=["run","goto","goto-playlist","link-open","link-move","route-page","start-scenario","run-scenario","export-data","import-data"],Ttt="auto";const Ptt=new WeakMap;function Ott(t){const e=t.root,r=Ptt.get(e);if(!r)return;if(e===t)return r.forEach((t=>Ott(t[0]))),void Ptt.delete(e);const n=r.findIndex((e=>e[0]===t));if(-1===n)return;const i=r[n][1];i.div.parentNode?.removeChild(i.div),i.scene.target=null,i.scene.release?.(),r.splice(n,1)}class Itt{static hideAll(t){(Ptt.get(t)||[]).forEach((([t])=>Ott(t)))}static hide(t){const e=t.root,r=Ptt.get(e);if(!r)return;const n=r.findIndex((e=>e[0]===t));if(-1===n)return;const i=r[n][1];i.div.style.backgroundColor="transparent",function(t,e){t.style.opacity=1,t.style.transform="scale(1)";let r=+new Date;const n=()=>{const i=Math.min((new Date-r)/200,1);t.style.opacity=1-i,t.style.transform=`scale(${1-i})`,i<1?requestAnimationFrame(n):(t.style.display="none",e&&e())};n()}(i.div,(()=>{Ott(t)}))}static show(t,e,r={}){const{data:n,modal:i=!1,closable:o=!0,minimizable:a=!1,draggable:s=!1,output:c=!0,title:u=""}=r,l=t.app.refProvider;l?.get(e,!0).then((e=>{const l=document.createElement("div"),h=l.style;if(l.setAttribute("popup",""),i){const{width:e,height:r}=t.rootModel.bounds;Object.assign(h,{position:"fixed",zIndex:1,left:0,top:0,width:`${e}px`,height:`${r}px`,overflow:"hidden",backgroundColor:"transparent"})}else Object.assign(h,{position:"absolute",display:"inline-block",overflow:"hidden"});l.innerHTML=u?'\n<div class="popup-wrap">\n <div class="popup-title-bar">\n <div class="popup-title"></div>\n <button class="draggable-1945">&#x2630;</button>\n <button class="minimizable-1945">&#8211;</button>\n <button class="closable-1945">&#88</button>\n </div>\n <div class="popup-content"></div>\n</div>\n':'\n<div class="popup-content">\n <button class="draggable-1945">&#x2630;</button>\n <button class="minimizable-1945">&#8211;</button>\n <button class="closable-1945">&#88</button>\n</div>\n';const f=l.querySelector(".popup-content"),{width:d,height:p}=e.root.model;Object.assign(f.style,{width:`${d}px`,height:`${p}px`});const g=document.createElement("style");g.type="text/css",g.appendChild(document.createTextNode("\n.popup-title-bar {\n display: flex;\n align-items: center;\n top: 0;\n left: 0;\n width: 100%;\n height: 30px;\n background-color: var(--md-sys-color-primary, #f1f1f1);\n color: var(--md-sys-color-on-primary, black);\n padding: 5px;\n box-sizing: border-box;\n border-bottom: 1px solid #ccc;\n}\n\n.popup-title {\n flex: 1;\n text-align: center;\n}\n\nbutton.closable-1945, button.minimizable-1945, button.draggable-1945 {\n position: absolute;\n display: none;\n color: white; \n background-color: black; \n opacity: .3;\n width: 20px;\n height: 20px;\n top: 5px; \n z-index: 1;\n padding: 0;\n margin: 0;\n border: 0px;\n text-align: center;\n cursor: pointer;\n font-size: 12px;\n border-radius: 4px;\n}\n\nbutton.draggable-1945 {\n left: 5px;\n cursor: move;\n}\n\nbutton.minimizable-1945 {\n right: 30px;\n}\n\nbutton.closable-1945 {\n right: 5px;\n}\n\nbutton.closable-1945:hover, button.minimizable-1945:hover, button.draggable-1945:hover {\n opacity: .6; \n}\n")),l.appendChild(g),Mtt.forEach((r=>{e.on(r,((...e)=>{t.trigger(r,...e)}))}));const v=l.querySelector(".popup-content"),y=l.querySelector(".draggable-1945");[...e9,...r9].forEach((t=>{v.addEventListener(t,(e=>{(!y?.isDragging||"mousemove"!==t&&"mouseup"!==t)&&e.stopPropagation()}))})),[...e9,...r9].forEach((t=>{l.addEventListener(t,(e=>{(!y?.isDragging||"mousemove"!==t&&"mouseup"!==t)&&e.stopPropagation()}))})),i&&o&&l.addEventListener("click",(e=>{e.target===l&&Itt.hide(t)}));if(t.root.model_layer.overlay.appendChild(l),function(t,e,r){const n=t.root;if(n===t)return;Ott(t);let i=Ptt.get(n)||[];i=[...i,[t,{div:e,scene:r}]],Ptt.set(n,i)}(t,l,e),u){l.querySelector(".popup-title-bar .popup-title").textContent=u}if(s&&(!function(t,e,r){let n,i,o,a;function s(s){if(!e.isDragging)return;s.preventDefault(),s.stopPropagation();const c=s.clientX-n,u=s.clientY-i,l=r.rootModel.overlay.style.transform.match(/scale\(([^,]+),\s*([^)]+)\)/),h=l?parseFloat(l[1]):1,f=l?parseFloat(l[2]):h;t.style.left=`${o+c/h}px`,t.style.top=`${a+u/f}px`}function c(t){t.preventDefault(),t.stopPropagation(),e.isDragging=!1,document.removeEventListener("mousemove",s),document.removeEventListener("mouseup",c)}e.isDragging=!1,e.addEventListener("mousedown",(r=>{r.preventDefault(),r.stopPropagation(),e.isDragging=!0,n=r.clientX,i=r.clientY,o=parseInt(t.style.left,10)||0,a=parseInt(t.style.top,10)||0,document.addEventListener("mousemove",s),document.addEventListener("mouseup",c)}))}(i?l.querySelector(".popup-wrap"):l,y,t),u?y&&(y.style.display="block"):(v.addEventListener("mouseenter",(()=>{y&&(y.style.display="block")})),v.addEventListener("mouseleave",(()=>{y&&(y.style.display="none")})))),a){const t=l.querySelector(".minimizable-1945");let e=!1;t.addEventListener("click",(t=>{t.preventDefault(),e=!e;const r=l.querySelector(".popup-wrap");!function(t,e){const r=t.querySelector(".minimizable-1945");e?(r.innerHTML="&#x25A1;",t.style.height="30px",t.style.overflow="hidden"):(r.innerHTML="&#8211;",t.style.height="",t.style.overflow="visible")}(i?r:l,e)})),u?t&&(t.style.display="block"):(v.addEventListener("mouseenter",(()=>{t&&(t.style.display="block")})),v.addEventListener("mouseleave",(()=>{t&&(t.style.display="none")})))}if(o){const t=l.querySelector(".closable-1945");u?t&&(t.style.display="block"):(v.addEventListener("mouseenter",(()=>{t&&(t.style.display="block")})),v.addEventListener("mouseleave",(()=>{t&&(t.style.display="none")})))}l.querySelector(".closable-1945")?.addEventListener("click",(e=>{e.preventDefault(),Itt.hide(t)})),l.addEventListener("close-scene",(e=>{e.preventDefault(),e.stopPropagation(),Itt.hide(t),c&&(t.data=e.detail)})),e.target=f,e.data=n||t.data,e.fit("both");const{x:m,y:b}=t.center,x=t.transcoordS2T(m,b,t.rootModel),w=function(t,e,r,n){const{location:i=Ttt,title:o=""}=n||{},a=t.bounds;let s=e.bounds;o&&(s.height+=30);const c=Math.max(a.width/4-s.width/2,20),u=Math.min(3*a.width/4+s.width/2,a.width-20)-s.width,l=Math.max(a.height/4-s.height/2,20)+(o?30:0),h=Math.min(3*a.height/4+s.height/2,a.height-20)-s.height+(o?30:0);switch(i){case Ttt:return{x:r.x<a.width/2?Math.min(u,r.x+20):Math.max(c,r.x-(s.width+20)),y:r.y<a.height/2?Math.min(h,r.y+20+(o?30:0)):Math.max(l,r.y-(s.height+20+(o?30:0)))};case"left-top":return{x:c,y:l};case"right-top":return{x:u,y:l};case"left-bottom":return{x:c,y:h};case"right-bottom":return{x:u,y:h};default:return{x:(a.width-s.width)/2,y:(a.height-s.height+(o?30:0))/2}}}(t.rootModel,e.root,x,r);if(i)if(u){const t=l.querySelector(".popup-wrap");Object.assign(t.style,{position:"absolute",left:`${w.x}px`,top:`${w.y}px`,width:`${d}px`,height:`${p}px`})}else Object.assign(f.style,{left:`${w.x}px`,top:`${w.y}px`,width:`${d}px`,height:`${p}px`});else Object.assign(l.style,{left:`${w.x}px`,top:`${w.y}px`,width:`${d}px`,height:`${u?p+30:p}px`});!function(t,e){t.style.opacity=0,t.style.transform="scale(0)",t.style.display="block";let r=+new Date;const n=()=>{const i=Math.min((new Date-r)/200,1);t.style.opacity=i,t.style.transform=`scale(${i})`,i<1?requestAnimationFrame(n):e&&e()};n()}(l,(()=>{i&&(l.style.backgroundColor="rgba(0,0,0,0.3)")}))}),(t=>{console.error("cannot fetch board: "+e,t)}))}}var Ctt={reflow:function(t,e){},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!1},ABSOLUTE:!0};function Rtt(t){var e=t.components.filter((t=>!t.hidden)),r=t.getState("layoutConfig")||{},n=e[r&&r.activeIndex||0];return n&&[n]||[]}Ett.register("absolute",Ctt);var jtt={reflow:function(t){var e=t.bounds,r=t.getState("layoutConfig")||{},n={left:0,top:0,width:e.width,height:e.height};t.forEach(((t,e)=>{let i=e!=(r.activeIndex||0);t.bounds=n,t.setState("rotation",0),t.element&&(t.element.style.visibility=i?"hidden":"visible")}))},capturables:function(t){return Rtt(t)},drawables:function(t){return Rtt(t)},isStuck:function(t){return!0}};function Ltt(t){var e=t.getState("layoutConfig");return e&&e.weight||1}Ett.register("card",jtt);var Dtt={reflow:function(t){var e=this.drawables(t),r=t.get("padding")||{},n=e.reduce(((t,e)=>t+Ltt(e)),0),i=t.bounds,o=n>0?(i.width-((r.left||0)+(r.right||0)))/n:i.width,a=i.height-((r.top||0)+(r.bottom||0)),s=0;e.forEach((t=>{let e=Ltt(t),n=t.get("margin")||{};t.bounds={left:o*s+(r.left||0)+(n.left||0),top:0+(r.top||0)+(n.top||0),width:e*o-((n.left||0)+(n.right||0)),height:a-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!0}};function ztt(t){var e=t.getState("layoutConfig");return e&&e.weight||1}Ett.register("linear-horizontal",Dtt);var Ntt={reflow:function(t){var e=this.drawables(t),r=t.getState("padding")||{},n=e.reduce(((t,e)=>t+ztt(e)),0),i=t.bounds,o=n>0?(i.height-((r.top||0)+(r.bottom||0)))/n:i.height,a=i.width-((r.left||0)+(r.right||0)),s=0;e.forEach((t=>{let e=ztt(t),n=t.getState("margin")||{};t.bounds={left:0+(r.left||0)+(n.left||0),top:o*s+(r.top||0)+(n.top||0),width:a-((n.left||0)+(n.right||0)),height:e*o-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!0}};Ett.register("linear-vertical",Ntt);var Ftt={reflow:function(t){var e=t.getState("layoutConfig"),r=e&&e.columns||t.getState("columns"),n=e&&e.rows||t.getState("rows"),i=e&&e.widths||t.getState("widths"),o=e&&e.heights||t.getState("heights"),a=i?i.filter(((t,e)=>e<r)).reduce(((t,e)=>t+e),0):r,s=o?o.filter(((t,e)=>e<n)).reduce(((t,e)=>t+e),0):n,c=t.textBounds,u=t.getState("paddingLeft")||0,l=t.getState("paddingTop")||0,h=c.width/a,f=c.height/s,d=0,p=0;t.components.forEach(((t,e)=>{let n=i?i[e%r]:1,a=o?o[Math.floor(e/r)]:1,s=t.colspan||1,c=0;for(;--s>0;)c+=i?i[(e+s)%r]:1;let g=t.rowspan||1,v=0;for(;--g>0;)v+=o?o[Math.floor(e/r)+g]:1;t.bounds={left:u+d,top:l+p,width:h*(n+c),height:f*(a+v)},t.setState("rotation",0),e%r==r-1?(d=0,p+=a*f):d+=n*h}))},capturables:function(t){return t.components.filter((t=>!t.merged))},drawables:function(t){return t.components.filter((t=>!t.merged&&!t.hidden))},isStuck:function(t){return!0},keyNavigate:function(t,e,r){var n=t.getState("layoutConfig"),i=n&&n.columns||t.getState("columns"),o=n&&n.rows||t.getState("rows"),{row:a,column:s}=t.getRowColumn(e);switch(r.code){case"ArrowUp":if(a>0)return t.getAt((a-1)*i+s);break;case"ArrowDown":if(a<o-1)return t.getAt((a+1)*i+s);break;case"ArrowRight":if(s<i-1)return t.getAt(a*i+s+1);break;case"ArrowLeft":if(s>0)return t.getAt(a*i+s-1);break;default:return e}},joinType:!0};Ett.register("table",Ftt);const Btt=new Image;Btt.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAclBMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0BbqFAAAAJXRSTlMAgAP3VSI6/g9fBk5FavJsMrariSjzPnO1enRRL5SMhmOOWB9keFTE0wAAANxJREFUOMutk9kWgyAMRLFuiLjUtdp9yf//YglVsQXz1HniMPcEMgHGvpX2O0Ypi+EgCL+IAShC+wB7QfubRDT7AFcnUPoLMLiP4PyJbsb55i05AgnR5iaQDsICgtH0cotBWoAP1c7kC6kFxEseCfZfB6gEgbNeBrira2QmH1uVYCXlA3is8UmgUCPIyQJKEmu8QtQJN0e9DPXVpzG2G216c1CqRmcBOdxXk07sWUSPv07zo0amCNQycv+NzmR6cRcwmfbuI7p2nZ/z4be0P83Foz6vIkhfZXr82XgDlZsspIq4peUAAAAASUVORK5CYII=";var Utt=t=>class extends t{postrender(t){super.postrender(t),this.app.isEditMode&&this._focused&&this.showMoveHandle&&this._draw_move_handle(t)}_draw_move_handle(t){var{left:e,top:r,width:n}=this.bounds;t.save(),t.beginPath(),t.globalAlpha=1,t.rect(e+n,r,25,25);t.fillStyle="rgba(235, 235, 235, 1)",t.fill(),t.drawImage(Btt,e+n+3.75,r+3.75,17.5,17.5),t.closePath(),t.restore()}contains(t,e){var r=super.contains(t,e);if(this.app.isViewMode)return r;if(!r){var{left:n,top:i,width:o,height:a}=this.bounds,s=n+o;this.showMoveHandle&&(r=t<Math.max(s+25,s)&&t>Math.min(s+25,s)&&e<Math.max(i+25,i)&&e>Math.min(i+25,i))}return this._focustd!==r&&(this._focused=r,this.invalidate()),r}};const Ytt=[];class Htt extends(Utt(btt(vtt))){constructor(t,e){super(t,e),this._components=[]}replaceRefids(t){this.components.forEach((e=>e.replaceRefids(t)))}get showMoveHandle(){return!0}get showOverflow(){return!1}dispose(){this.components.slice().forEach((t=>t.dispose())),super.dispose()}isContainer(){return!0}containable(t){return t.isDescendible(this)}get hasTextProperty(){return!1}get components(){return this._components}get focusible(){return!0}get layout(){return Ett.get(this.get("layout"))||Ctt}reflow(){this.layout.reflow(this),this.components&&this.components.forEach((t=>{t.isContainer()&&t.reflow()}))}get hierarchy(){var t=super.hierarchy;return this.components&&(t.components=this.components.map((t=>t.hierarchy))),t}addComponent(t,e=!1){var r=t.parent;if(r){if(this===r)return;r.removeComponent(t,e)}var n=this._components.push(t)-1;t.parent=this,t.added(this),e||this.trigger("add",this,t,n),t.delegate_on(this),e||t.trigger("added",this,t,n),this.root&&this.root.isReady&&t.ready()}removeComponent(t,e=!1){var r=this._components.indexOf(t);-1!=r&&(this._components.splice(r,1),t.parent=null,t.removed(this),e||(this.trigger("remove",this,t),t.trigger("removed",this,t)),t.delegate_off(this))}insertComponentAt(t,e,r=!1){var n=t.parent;n&&n.removeComponent(t,r);var i=this._components.splice(0,e);this._components=i.concat(t,this._components),e=this._components.indexOf(t),t.parent=this,t.added(this),r||this.trigger("add",this,t,e),t.delegate_on(this),r||t.trigger("added",this,t,e)}add(t,e=!1){return t instanceof Array?(t.forEach((t=>{-1==this._components.indexOf(t)&&this.addComponent(t,e)})),this):this.add.call(this,[t],e)}remove(t,e=!1){return t instanceof Array?this._components?(t.forEach((t=>{this.removeComponent(t,e)})),this):this:this.remove.call(this,[t],e)}getAt(t){if(this._components)return this._components[t]}forEach(t,e){this._components&&this._components.forEach(t,e)}traverse(t,e){t.call(e,this),this._components&&this._components.forEach((r=>{r.isContainer()?r.traverse(t,e):t.call(e,r)}))}indexOf(t){return(this._components||Ytt).indexOf(t)}size(){return(this._components||Ytt).length}moveChildAt(t,e){var r=this.indexOf(e);if(-1!=r){var n=this._components.splice(0,r),i=this._components.splice(1);this._components=n.concat(i),t=Math.max(0,t),t=Math.min(t,this._components.length),n=this._components.splice(0,t),this._components=n.concat(e,this._components)}}moveChildForward(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this._components[e]=this._components[e+1],this._components[e+1]=t)}moveChildBackward(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this._components[e]=this._components[e-1],this._components[e-1]=t)}moveChildToFront(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this._components.splice(0,e),n=this._components.splice(1);this._components=r.concat(n,this._components)}}moveChildToBack(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this._components.splice(0,e),n=this._components.splice(0);this._components=this._components.concat(r,n)}}symmetryX(t){super.symmetryX(t),this.components.map((t=>{t.symmetryX(0)}))}findAll(t,...e){if("string"==typeof t)return f9(t,this,e[0]||this);if("function"==typeof t){var r=[];for(let n=this.components.length-1;n>=0;n--){let i=this.components[n].findAll(t,...e);i&&(r=r.concat(i))}return t(this,...e)&&r.push(this),r}}findFirst(t,...e){if("string"==typeof t)return f9(t,this,e[0])[0];if("function"==typeof t){for(let n=this.components.length-1;n>=0;n--){var r=this.components[n].findFirst(t,...e);if(null!=r)return r}return t(this,...e)?this:null}}findById(t){return this.root.findById(t)}findByRefid(t){return this.root.findByRefid(t)}contains(t,e){var r=super.contains(t,e);if(!r){var{left:n,top:i,width:o,height:a}=this.state;r=t<Math.max(n+o,n)&&t>Math.min(n+o,n)&&e<Math.max(i+a,i)&&e>Math.min(i+a,i)}return r}capture(t,e,r){var n=this.transcoordP2S(t,e);if(!this.contains(n.x,n.y))return!1;var i=this.bounds;n.x-=i.left,n.y-=i.top;var o=this.layout.capturables(this);for(let t=o.length-1;t>=0;t--){var a=o[t].capture(n.x,n.y,r);if(a)return a}return this.capturable&&!r?.(this)&&this}capturePath(t,e){if(e){if(e.indexOf(this)>-1)return!1;for(let t=0;t<e.length;t++)if(!this.containable(e[t]))return!1}var r=[],{left:n,top:i,width:o,height:a}=this.bounds;for(let e=0;e<t.length;e++){let s=this.transcoordP2S(t[e].x,t[e].y);if(s.x<n||s.x>n+o||s.y<i||s.y>i+a)return!1;s.x-=n,s.y-=i,r.push(s)}let s=this.layout.capturables(this);for(let t=s.length-1;t>=0;t--){let n=s[t];if(!n.isContainer())continue;let i=n.capturePath(r,e);if(i)return i}return this.focusible&&this}render(t){var{left:e=0,top:r=0,width:n,height:i}=this.bounds;t.beginPath(),t.rect(e,r,n,i),t.closePath(),this.drawFill(t),this.drawStroke(t)}postrender(t){const e=this.layout.drawables(this);if(e.length>0){var{left:r=0,top:n=0,width:i,height:o}=this.bounds;t.save(),this.showOverflow||(t.beginPath(),t.rect(r,n,i,o),t.clip(),t.closePath());var{top:n,left:r}=this.state;t.translate(r,n),e.forEach((e=>{e.draw(t)})),t.translate(-r,-n),t.restore()}super.postrender(t)}trim(){this.components.forEach((t=>{t.trim()})),super.trim()}}["layout"].forEach((t=>vtt.memoize(Htt.prototype,t,!1)));class Gtt extends Htt{constructor(t,e){super(t,e),t.translate=t.translate||{x:0,y:0},this._draw_reserved=!1,this.__draw__=()=>{this._draw_reserved=!1,this.trigger("redraw"),this.reflow(),this.draw()},this.throttle_render=()=>{this._draw_reserved||requestAnimationFrame(this.__draw__),this._draw_reserved=!0}}fitSize(t,e,r,n){if(this.target){if(e){let t=getComputedStyle(this.target);r=r||(t?parseFloat(t.getPropertyValue("width")):this.target.clientWidth),n=n||(t?parseFloat(t.getPropertyValue("height")):this.target.clientHeight)}else r=this.model.width,n=this.model.height;"CANVAS"==t.tagName&&(t.setAttribute("width",r*t9),t.setAttribute("height",n*t9)),t.style.width=r+"px",t.style.height=n+"px"}}resize(){this.fitSize(this.element,!0)}isLayer(){return!0}get showOverflow(){return this.app.isEditMode}get anchors(){}createElement(){var t=vtt.createCanvas(1,1);return t.style.position="absolute",t}get target(){return this._target}set target(t){this._target&&this.element&&this._target.removeChild(this.element),this._target=t,t&&(this.element||(this.element=this.createElement()),this.resize(),t.appendChild(this.element))}get canvas(){return this.element}dispose(){super.dispose(),this.target=null,this.element=null}get selected(){return this.root.selected}set selected(t){this.root.selected=t}get hasSameParentForAllSelected(){return this.root.hasSameParentForAllSelected}get focused(){return this.root.focused}set focused(t){this.root.focused=t}getContext(){return this._context2D||(this._context2D=this.canvas&&this.canvas.getContext("2d")),this._context2D}draw(t){this.canvas&&(t=t||this.getContext())&&super.draw(t)}prerender(t){var{translate:e,scale:r={x:1,y:1},rotation:n}=this.model;t.clearRect(0,0,t.canvas.width,t.canvas.height),e&&t.translate(e.x*t9,e.y*t9),t.scale(r.x*t9,r.y*t9),n&&t.rotate(n)}get rotatePoint(){return{x:0,y:0}}contains(t,e){return!1}invalidate(){this.throttle_render()}move(t){var e=this.get("translate")||{x:0,y:0};this.set({translate:{x:e.x+t.x,y:e.y+t.y}})}centerTo(t,e){const r=t.rootModel.transcoordC2S(this.canvas.clientWidth/2,this.canvas.clientHeight/2),{x:n,y:i}=t.center,{x:o,y:a}=t.transcoordP2S(n,i),{x:s,y:c}=t.transcoordS2T(o,a),{x:u,y:l}=t.rootModel.get("translate"),{x:h,y:f}=t.rootModel.get("scale");e?j8({step:function(e){t.rootModel.set({translate:{x:u+(r.x-s)*h*e,y:l+(r.y-c)*f*e}})},duration:1e3,delta:"circ",ease:"in"}).start():t.rootModel.set({translate:{x:u+(r.x-s)*h,y:l+(r.y-c)*f}})}}const Wtt={x:1,y:1},$tt={x:0,y:0};class qtt extends Gtt{constructor(t,e){super(t,e)}dispose(){super.dispose(),delete this._canvas,delete this._overlay}contains(t,e){return!0}isRootModel(){return!0}get stuck(){return!0}get layout(){return Stt}get overlay(){if(!this._overlay){var t=document.createElement("div");t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="initial",t.style["user-select"]="none",t.style["transform-origin"]="top left",this.element&&this.element.appendChild(t),this._overlay=t,this._repositionOverlay()}return this._overlay}createElement(){var t=document.createElement("div");return t.style.position="absolute",t.style["user-select"]="none",t.style.overflow="hidden",this._canvas=vtt.createCanvas(1,1),this._canvas.style.position="absolute",t.appendChild(this._canvas),this._overlay&&t.appendChild(this._overlay),t}resize(){if(this.target){var{width:t,height:e,fitMode:r}=this.model;this.root.fitMode?r=this.root.fitMode:r||(r="ratio");try{var n=getComputedStyle(this.target)}catch(t){return void console.error(t,this.target)}var i=n?parseFloat(n.getPropertyValue("width")):this.target.clientWidth,o=n?parseFloat(n.getPropertyValue("height")):this.target.clientHeight;switch(r){case"both":case"ratio":break;case"width":o=e*i/t;break;case"height":i=t*o/e;break;default:i=Math.max(t,i),o=Math.max(e,o)}switch(this.fitSize(this.canvas,!0,i,o),r){case"ratio":case"both":break;case"width":this.element.style.overflowX="hidden",this.element.style.overflowY="auto";break;case"height":this.element.style.overflowX="auto",this.element.style.overflowY="hidden";break;default:this.element.style.overflowX=i>t?"hidden":"auto",this.element.style.overflowY=o>e?"hidden":"auto"}this.fitSize(this.element,!0)}}get canvas(){return this._canvas}get MPP(){var{scale:t={x:1,y:1},unit:e}=this.model;switch(e){case"mm":case"cm":return 1/this.app.PPM/t.x;case"in":return 1/this.app.PPI/t.x;default:return 1/t.x}}capturePath(t,e){var r=this.layout.capturables(this);for(let n=r.length-1;n>=0;n--){let i=r[n];if(!i.isContainer())continue;let o=i.capturePath(t,e);if(o)return o}return!1}get eventMap(){return{"(self)":{"(all)":{change:this._onchanged_all,mouseenter:this._onmouseenter_all,mouseleave:this._onmouseleave_all,click:this._onclick,mousedown:this._onmousedownup,mouseup:this._onmousedownup,touchstart:this._onmousedownup,touchend:this._onmousedownup}}}}closeScene(t){requestAnimationFrame((()=>this.overlay.dispatchEvent(new CustomEvent("close-scene",{bubbles:!0,composed:!0,detail:t}))))}_repositionOverlay(){var t=this._overlay;if(t){var{translate:e=$tt,scale:r=Wtt,rotation:n=0}=this.model,{left:i,top:o,width:a,height:s}=this.bounds;t.style.left=i+"px",t.style.top=o+"px",t.style.transform=`rotate(${n}rad) scale(${r.x}, ${r.y}) perspective(1px)`,t.style.marginLeft=`${e.x}px`,t.style.marginTop=`${e.y}px`}}onchange(t){var e=this._model;delete e.id,delete e.text,delete e.class,this._repositionOverlay()}_onchanged_all(t,e,r){this.invalidate()}_onmouseenter_all(t,e){if(t.stopPropagation(),this.app&&!this.app.isEditMode&&e){var r=e.origin;if(!(r instanceof qtt)&&r.model.event&&r.model.event.hover&&!r.hidden){var n=r.model.event.hover;n&&this._doEventAction(n,r,!0,t)}}}_onmouseleave_all(t,e){if(t.stopPropagation(),e){var r=e.origin;if(this.app&&!this.app.isEditMode){var n=r.model.event&&r.model.event.hover;n&&this._doEventAction(n,r,!1,t)}}}_onclick(t,e){if(t.stopPropagation(),!this.app.isEditMode&&e){var r=e.origin,n=r.model.event?.tap;n&&this._doEventAction(n,r,!0,t)}}_onmousedownup(t,e){if(t.stopPropagation(),!this.app.isEditMode&&e){var r=e.origin,n=r.model.event?.tap;n&&n.pressed&&this._doMouseDownUpEventAction(n,r,"mousedown"==t.type||"touchstart"==t.type,t)}}_doMouseDownUpEventAction(t,e,r,n){var{pressed:i=!1}=t;i&&(r?function(t){if(!t.hasOwnProperty("_backupShadow")){var e=t.get("shadow");t._backupShadow=e;var{left:r=0,top:n=0}=e||{};t.delta("tx",r),t.delta("ty",n),t.set("shadow",{})}}(e):function(t){t.hasOwnProperty("_backupShadow")&&(t.delta("tx",0),t.delta("ty",0),t.set("shadow",t._backupShadow),delete t._backupShadow)}(e))}_doEventAction(t,e,r,n){var{action:i,target:o,value:a,emphasize:s=!1,restore:c=!1,pressed:u=!1,options:l}=t;if(o&&(o=e.access(o)),a&&(a=e.access(a)),s&&(r?function(t){t.hasOwnProperty("_backupStrokeStyle")||(t._backupStrokeStyle=t.model.strokeStyle,t.set("strokeStyle","#f26522"),t.hasOwnProperty("_backupLineWidth")||(t._backupLineWidth=t.model.lineWidth,t.set("lineWidth",t.model.lineWidth+5)))}(e):c&&function(t){t.hasOwnProperty("_backupStrokeStyle")&&(t.set("strokeStyle",t._backupStrokeStyle),delete t._backupStrokeStyle,t.hasOwnProperty("_backupLineWidth")&&(t.set("lineWidth",t._backupLineWidth),delete t._backupLineWidth))}(e)),i)switch(i){case"data-toggle":if(!o)return;(r||c)&&this.root.findAll(o,e).forEach((t=>{t.data=!t.data}));break;case"data-tristate":if(!o)return;(r||c)&&this.root.findAll(o,e).forEach((t=>{let e=Math.round(Math.max(Number(t.data)||0,0));t.data=(e+(r?1:2))%3}));break;case"data-spreading":if(!o)return;if(r){var h=e.access(a);this.root.findAll(o,e).forEach((t=>{t.executeMappings(!0)}))}break;case"data-set":if(!o)return;if(r){h=e.access(a);this.root.findAll(o,e).forEach((t=>{t.data=h}))}break;case"partial-data-set":if(!o)return;if(r){h=e.access(a);this.root.findAll(o,e).forEach((t=>{t.data={...t.data,...h}}))}break;case"value-set":if(!o)return;if(r){h=e.access(a);this.root.findAll(o,e).forEach((t=>{t.value=h}))}break;case"partial-value-set":if(!o)return;if(r){h=e.access(a);this.root.findAll(o,e).forEach((t=>{t.value={...t.value,...h}}))}break;case"infoWindow":case"info-window":if(!o)return;"click"==n.type||r?_tt.show(e,o,c,{x:n.offsetX,y:n.offsetY}):c&&_tt.hide(e,o);break;case"toggle-info-window":if(!o)return;_tt.toggle(e,o,!1,{x:n.offsetX,y:n.offsetY});break;case"popup":case"modal-popup":if(!o)return;let t=l&&"input"in l?l.input:"(self)",s=!l||(!("output"in l)||l.output);Itt.show(e,o,{data:t&&this.root.findFirst(t,e)?.data,output:s,modal:"modal-popup"===i});break;case"close-scene":this.closeScene(e.data);break;case"goto":case"goto-playlist":this.trigger(i,o,l,e);break;case"mouse-cursor":r?this.target.style.cursor=o||"auto":c&&(this.target.style.cursor="auto");break;default:this.trigger(i,o,a,e)}}}function Xtt(t,e){const r=t.state.refid;return t.root.findAll((t=>t.isLine()&&t.from.component===r&&(!e||t.from.anchor===e)))}function Vtt(t,e){const r=t.state.refid;return t.root.findAll((t=>t.isLine()&&t.to.component===r&&(!e||t.to.anchor===e)))}qtt.Popup=Itt,vtt.register("model-layer",qtt);var Ktt=t=>class extends t{isConnectable(){return!0}postrender(t){super.postrender(t),this._draw_anchors(t)}_draw_anchors(t){var e=this.anchors||[];t.save(),e.forEach((e=>{var{position:{x:r,y:n},draw:i}=e;if(i){t.beginPath();try{i.call(e,t,this)}catch(t){console.error(t)}t.closePath()}})),t.restore()}contains(t,e){if(n=super.contains(t,e))return n;var r=this.anchors||[];for(let i of r){const r=i.bounds;if(!r)continue;const{left:o,top:a,width:s,height:c}=r;var n;if(n=t<Math.max(o+s,o)&&t>Math.min(o+s,o)&&e<Math.max(a+c,a)&&e>Math.min(a+c,a))return n}return!1}findInOutLines(t){return function(t,e){const r=t.state.refid;return t.root.findAll((t=>!(!t.isLine()||(t.from.component!==r||e&&t.from.anchor!==e)&&(t.to.component!==r||e&&t.to.anchor!==e))))}(this,t)}findOutletLines(t){return Xtt(this,t)}findOutletEnds(t){return function(t,e){return Xtt(t,e).map((t=>t.toEnd?.component)).filter(Boolean)}(this,t)}findInletLines(t){return Vtt(this,t)}findInletEnds(t){return function(t,e){return Vtt(t,e).map((t=>t.fromEnd?.component)).filter(Boolean)}(this,t)}};const Qtt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0}}],help:"scene/component/rect"};var Jtt={ondragmove:function(t,e,r){var{left:n,top:i,width:o,height:a}=r.model,s=(r.transcoordP2S(t.x,t.y).x-n)/(o/2)*100;s=mtt(s,o,a),r.set({round:s})}};class Ztt extends(Ktt(btt(ytt))){is3dish(){return!0}get controls(){var{left:t,top:e,width:r,round:n,height:i}=this.state;return[{x:t+r/2*((n=null==n?0:mtt(n,r,i))/100),y:e,handler:Jtt}]}get nature(){return Qtt}}vtt.register("rect",Ztt);const tet=[1,2,10,20,50,50,50,50,50,50];class eet extends(btt(ytt)){render(t){const{lineWidth:e=1,fillStyle:r="lightgray",font:n="15px Arial",left:i,top:o,rotation:a,origin:s,margin:c,width:u,height:l,side:h="bottom",strokeStyle:f="#000000",scale:d=1}=this.state;t.translate(i,o),t.beginPath();const p=Math.round(e/2);t.rect(-p,-p,u+2*p,l+2*p),t.clip(),t.beginPath(),t.rect(0,0,u,l),r&&(t.fillStyle=r,t.fill()),t.lineWidth=e,t.strokeStyle=f,t.stroke(),t.beginPath(),t.font=n;var g="bottom"!==h,v=g?0:l,y=4*l/5,m=2*l/3,b=1*l/2,x=3*l/5;g&&(y=l-y,m=l-m,b=l-b,x=l-1.5*l/5);var w=d*this.app.PPM/this.root.unitScale,A=Math.ceil(s/w),_=this.app.PPM/w,k=_<=1.1?1:tet[Math.round(_)]||100;1!=k&&(A+=(k-A%k)%k);var E=Math.ceil(A*w),S=s+u;for(t.fillStyle=f;E<S;){if(A%10==0){t.moveTo(E-s,b),t.lineTo(E-s,v);let e=(A/10).toString(),r=t.measureText(e);t.fillText(e,E-s-r.width-6,x)}else A%5==0?(t.moveTo(E-s,m),t.lineTo(E-s,v)):(t.moveTo(E-s,y),t.lineTo(E-s,v));A+=k,E=Math.ceil(A*w)}}}vtt.register("ruler",eet);const ret=20,net=20,iet=90*Math.PI/180,oet="9px Verdana",aet=20,set="#f4f4f4",cet="#999";function uet(t,e,r){return{left:-t.x,top:-t.y,width:ret,height:aet}}function het(t,e,r,n){return{left:ret-t.x,top:0-t.y,origin:20-t.x,width:e-ret,height:aet}}function fet(t,e,r,n){var i={x:0-t.x+10,y:-t.y+net+(r-net)/2},o=vtt.transcoordRR(0-t.x,-t.y+net,i,iet);return{left:o.x-(r-net),top:o.y,origin:20-t.y,width:r-net,height:aet}}function det(t){var e=t.get("translate");return{left:-e.x,top:-e.y,width:t.canvas.width/t9,height:t.canvas.height/t9}}vtt.register("guide-layer",class extends Gtt{constructor(t,e){super(t,e),this.appScale={x:1,y:1},"disabled"!==t.ruler&&(this.hruler=new eet({left:ret,top:0,origin:20,margin:0,height:aet,unit:"m",rotation:0,font:oet,fillStyle:set,strokeStyle:cet,capturable:!1}),this.vruler=new eet({left:0,top:0,origin:20,margin:0,height:aet,unit:"m",rotation:iet,font:oet,side:"top",fillStyle:set,strokeStyle:cet,capturable:!1}),this.origin_rect=new Ztt({left:-20,top:-20,width:20,height:20,fillStyle:set,strokeStyle:cet,lineWidth:1}),this.addComponent(this.hruler),this.addComponent(this.vruler),this.addComponent(this.origin_rect)),this.invalidate()}get capturable(){return!1}ready(){if(super.ready(),this.hruler){var t=this.rootModel,e=Object.assign({},t.get("translate"));e.x<ret&&(e.x+=ret),e.y<net&&(e.y+=net);var r=t.get("scale")||{x:1,y:1};this.appScale=r,this.hruler.set("scale",r.x),this.vruler.set("scale",r.y),t.set("translate",e),this.set("translate",e),this.screen_coord=det(this);var{width:n,height:i}=this.screen_coord;this.hruler.set(het(e,n,0,this.hruler)),this.vruler.set(fet(e,0,i,this.vruler)),this.origin_rect.set(uet(e))}else this.screen_coord=det(this)}resize(){super.resize(),this.screen_coord=det(this);var{width:t,height:e}=this.screen_coord;this.hruler&&(this.hruler.set(het(this.model.translate,t,0,this.hruler)),this.vruler.set(fet(this.model.translate,0,e,this.vruler)),this.origin_rect.set(uet(this.model.translate)))}render(t){if(this.guide){t.save();var{x:e,y:r}=this.guide,{top:n,left:i,width:o,height:a}=this.screen_coord;t.beginPath(),t.moveTo(e,n),t.lineTo(e,n+a),t.moveTo(i,r),t.lineTo(i+o,r),t.lineWidth=1,t.strokeStyle="tomato",t.setLineDash([2,3]),t.font="10px tahoma",t.fillStyle="#333";var s=this.transcoordS2C(e,r,this.rootModel);t.textBaseline=s.y>200?"bottom":"top",t.textAlign=s.x>200?"right":"left";var c=s.y>200?-5:5,u=s.x>200?-5:5,l=Math.round(e/this.appScale.x),h=Math.round(r/this.appScale.y);t.fillText(` ${l}, ${h} `,e+u,r+c),t.stroke(),t.restore()}}get guide(){return this._guide}set guide(t){this._guide=t,this.invalidate()}contains(t,e){return!0}get eventMap(){return{"(root)":{"(descendant)":{mousemove:this.onmousemove_child,mouseout:this.onmouseout_child,dragmove:this.onmousemove_child},"model-layer":{change:this.onchange_root_model}},"(self)":{"(descendant)":{mousedown:this.onmousedown_origin}}}}onmousedown_origin(t,e){this.rootModel.set("translate",{x:20,y:20})}onchange_root_model(t,e,r){if(t.scale&&(this.appScale=t.scale,this.hruler&&(this.hruler.set("scale",t.scale.x),this.vruler.set("scale",t.scale.y))),t.translate&&this.set({translate:{x:t.translate.x,y:t.translate.y}}),t.scale||t.translate){if(this.screen_coord=det(this),this.hruler){var{translate:n}=this.model,{width:i,height:o}=this.screen_coord;this.hruler.set(het(n,i,0,this.hruler)),this.vruler.set(fet(n,0,o,this.vruler)),this.origin_rect.set(uet(n))}this._guide=null}this.invalidate()}onmouseout_child(t){this._guide=null,this.invalidate()}onmousemove_child(t,e){t.target&&"CANVAS"!==t.target.tagName?this.guide=null:this.guide=this.transcoordC2S(t.offsetX,t.offsetY)}});vtt.register("shift-layer",class extends Gtt{ready(){super.ready();var t=this.rootModel.get("translate");this.set("translate",t)}render(t){}contains(t,e){return!(2!=this.app.mode)}get eventMap(){return{"(root)":{"(self)":{keydown:this.onkeydown,keyup:this.onkeyup}}}}onkeydown(t){"Space"===t.code&&void 0===this.before_mode&&(this.before_mode=this.app.mode,this.app.mode=2)}onkeyup(t){"Space"===t.code&&(void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode)}ondragstart(t){this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}ondragmove(t){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.rootModel.move({x:e-this.last_position.x,y:r-this.last_position.y},!1),this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}});class pet{constructor(t){this.params=Object.assign({},t)}excute(){}}class get extends pet{execute(){this.params.changes.forEach((t=>t.component.set(t.after)))}static before(t){return t.map((t=>({component:t})))}static after(t,e){e.execute(null,!1)}static around(t,e,r){e.call(r),t.execute(null,!1)}}const vet="left",yet="right",met="center",bet="bottom",xet="middle",wet=[vet,yet,met,"top",xet,bet];function Aet(t){if(this.hasSameParentForAllSelected&&-1!=wet.indexOf(t)){var e=this.selected.filter((t=>!t.stuck));if(!(e.length<=1)){var r=this.app.commander;get.around(r,(function(){!function(t,e){var r=JSON.parse(JSON.stringify(e[0].bounds)),n=r.left+r.width,i=r.top+r.height;for(let t=0;t<e.length;t++){let o=e[t].bounds;r.left=o.left>r.left?r.left:o.left,r.top=o.top>r.top?r.top:o.top,n=o.left+o.width>n?o.left+o.width:n,i=o.top+o.height>i?o.top+o.height:i}switch(r.width=n-r.left,r.height=i-r.top,t){case vet:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:r.left,top:n.top,width:n.width,height:n.height}}break;case met:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:r.left+r.width/2-n.width/2,top:n.top,width:n.width,height:n.height}}break;case yet:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={left:n-r.width,top:r.top,width:r.width,height:r.height}}break;case"top":for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:n.left,top:r.top,width:n.width,height:n.height}}break;case xet:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:n.left,top:r.top+r.height/2-n.height/2,width:n.width,height:n.height}}break;case bet:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={left:r.left,top:i-r.height,width:r.width,height:r.height}}break;default:;}}(t,e)}))}}}const _et="VERTICAL",ket=[_et,"HORIZONTAL"];function Eet(t){if(this.hasSameParentForAllSelected&&-1!=ket.indexOf(t)){var e=this.selected;if(!(e.length<=1)){var r=this.app.commander;get.around(r,(function(){!function(t,e){var r=e.filter((t=>!t.stuck)).slice(0);r.sort((function(e,r){let n=e.center,i=r.center;return t===_et?n.y-i.y:n.x-i.x}));var n=r.reduce(((e,r)=>e+(t===_et?r.bounds.height:r.bounds.width)),0),i=r[0].bounds,o=r[r.length-1].bounds,a=((t===_et?o.top+o.height-i.top:o.left+o.width-i.left)-n)/(r.length-1),s=t===_et?i.top+i.height:i.left+i.width;for(let e=1;e<r.length-1;e++){let n=r[e],i=n.bounds;s+=a,t===_et?(i.top=s,s+=i.height):(i.left=s,s+=i.width),n.bounds=i}}(t,e)}))}}}function Met(t){for(var e=0;t&&!t.isRootModel();)e+=t.get("rotation")||0,t=t.parent;return e%(2*Math.PI)}class Tet extends pet{execute(){this.params.changes.forEach((t=>{let{component:e,to_container:r,to_index:n,to_left:i,to_top:o,hint:a}=t,s=function(t){if(t.isRootModel())return t.bounds;var{bounds:e,rotatePoint:r}=t,n=r;return{left:(n=t.transcoordS2T(n.x,n.y)).x-(r.x-e.left),top:n.y-(r.y-e.top),width:e.width,height:e.height}}(e),c=Met(e);if(e.removeSelf(!r),e.bounds=s,e.set("rotation",c),r){e.set("rotation",function(t,e){return((t.get("rotation")||0)-Met(e))%(2*Math.PI)}(e,r));let a=function(t,e){if(e.isRootModel())return t.bounds;var{bounds:r,rotatePoint:n}=t,i=e.transcoordT2S(n.x,n.y),o=e.bounds;return{left:i.x-(n.x-r.left)-o.left,top:i.y-(n.y-r.top)-o.top,width:r.width,height:r.height}}(e,r);t.to_left=void 0!==i?i:a.left,t.to_top=void 0!==o?o:a.top,e.bounds={left:t.to_left,top:t.to_top,width:a.width,height:a.height},void 0===n?r.addComponent(e):r.insertComponentAt(e,n)}}))}}function Pet(t,e,r){this.app.commander.execute(new Tet({changes:[{component:t,to_container:e,to_index:r}]}))}function Oet(t){var e=this.selected.filter((t=>!t.stuck));if(!(0==e.length||e[0].isRootModel()||e.length>1&&("forward"==t||"backward"==t))){var r,n=e[0].parent;if("forward"==t){let t=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:t,to_index:t+1}]}else if("backward"==t){let t=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:t,to_index:t-1}]}else r=e.filter((t=>t.parent===n)).sort(((e,r)=>{let i=n.indexOf(e)<n.indexOf(r);return"front"==t?i:!i})).map(((e,r)=>(n.indexOf(e),{component:e,to_container:n,to_index:"front"==t?n.components.length-r-1:r})));var i=new Tet({changes:r});this.app.commander.execute(i)}}function Iet(t,e,r,n){var i=vtt.register(t.type);if(!i)return Y7("Class not found",t.type),null;r&&(t.refid=r(t.refid)),t.id&&n&&n(t.id)&&delete t.id;var o=new i(t,e);return t.components&&o.isContainer()&&(t.components.forEach((t=>{var i=Iet(t,e,r,n);i&&o.addComponent(i)})),delete t.components),o.created(),o}function Cet(t,e){var r=c7(t.hierarchy);return delete r.id,Iet(r,t.app,e)}var Ret=Object.freeze({__proto__:null,compile:Iet,duplicate:Cet,select:f9,match:u9});function jet(t,e,r){t instanceof Array||(t=[t]),r||(r=this.model_layer);var n=[],i=new Map;this.selected=t.map((t=>{try{return Iet(t,r.app,(t=>{const e=this.getNewRefid();return void 0!==t&&i.set(t,e),e}),(t=>(this.indexMap[t]||[])[0]))}catch(t){return console.warn(t),!1}})).filter(Boolean).map((t=>{let{left:o,top:a,width:s,height:c,x:u,y:l,cx:h,cy:f}=e;return t.replaceRefids(i),isNaN(o)||isNaN(a)||isNaN(s)||isNaN(c)||(t.bounds={left:o,top:a,width:s,height:c}),isNaN(u)||isNaN(l)||t.move({x:u,y:l},!1),isNaN(h)||isNaN(f)||(t.center={x:h,y:f}),n.push({component:t,to_container:r}),t})),this.app.commander.execute(new Tet({changes:n}))}function Let(){var t=[],e=new Map;if(this.selected=this.selected.filter((t=>!t.isRootModel())).map((r=>{let n=Cet(r,(t=>{const r=this.getNewRefid();return void 0!==t&&e.set(t,r),r}));return n.move({x:20,y:20},!1),t.push({component:n,to_container:r.parent}),n})).map((t=>(t.replaceRefids(e),t))),0!=t.length){var r=new Tet({changes:t});this.app.commander.execute(r)}}function Det(){var t=this.selected;this.selected=[];for(var e=null,r=t.filter((t=>!t.isRootModel()&&(t.parent.focusible||t.parent.isGroup()))).map((t=>(e||(e=t.parent),{component:t,to_container:null})));e&&e.isGroup();){let t=[];if(e.components.filter((t=>!r.find((e=>e.component===t)))).forEach((e=>t.push(e))),t.length>1)break;let n=e.parent;t.forEach((t=>r.push({component:t,to_container:n}))),r.push({component:e,to_container:null}),e=n}r.length>0&&this.app.commander.execute(new Tet({changes:r})),e&&e.calculateBounds&&e.calculateBounds()}function zet(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.on(t,e,r);break;case"mode":this.app?.on(t,e,r);break;default:this.on(t,e,r)}}function Net(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.once(t,e,r);break;case"mode":this.app.once(t,e,r);break;default:this.once(t,e,r)}}function Fet(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.off(t,e,r);break;case"mode":this.app?.off(t,e,r);break;default:this.off(t,e,r)}}function Bet(t){var e=this.target_element,r=t||this.fitMode,n=this;function i(t){n.fit(r),document.fullscreen||document.mozFullScreen||document.webkitIsFullScreen||document.msFullscreenElement||["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((t=>document.removeEventListener(t,i)))}["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((t=>document.addEventListener(t,i))),e.requestFullScreen?e.requestFullScreen():e.webkitRequestFullScreen?e.webkitRequestFullScreen():e.mozRequestFullScreen?e.mozRequestFullScreen():e.msRequestFullscreen&&e.msRequestFullscreen()}var Uet=0;function Yet(){var t=this.selected.filter((t=>!t.isRootModel())).map((t=>t.hierarchy));if(0!=t.length)return Uet=0,JSON.stringify(t,null,2)}function Het(){Uet=0;var t=Yet.call(this);return Det.call(this),t}function Get(t){if(t)try{Uet++,jet.call(this,JSON.parse(t),{x:15*Uet,y:15*Uet})}catch(e){U7(e,t)}}var Wet=function(){return{escape:function(t){return t.replace(/([.*+?^${}()|\[\]\/\\])/g,"\\$1")},parseExtension:t,mimeType:function(e){var r=t(e).toLowerCase();return(n="application/font-woff",i="image/jpeg",{woff:n,woff2:n,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:i,jpeg:i,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"})[r]||"";var n,i},dataAsUrl:function(t,e){return"data:"+e+";base64,"+t},isDataUrl:function(t){return-1!==t.search(/^(data:)/)},canvasToBlob:function(t){return t.toBlob?new Promise((function(e){t.toBlob(e)})):function(t){return new Promise((function(e){for(var r=window.atob(t.toDataURL().split(",")[1]),n=r.length,i=new Uint8Array(n),o=0;o<n;o++)i[o]=r.charCodeAt(o);e(new Blob([i],{type:"image/png"}))}))}(t)},resolveUrl:function(t,e){var r=document.implementation.createHTMLDocument(),n=r.createElement("base");r.head.appendChild(n);var i=r.createElement("a");return r.body.appendChild(i),n.href=e,i.href=t,i.href},getAndEncode:function(t){var e=3e4;trt.impl.options.cacheBust&&(t+=(/\?/.test(t)?"&":"?")+(new Date).getTime());return new Promise((function(r){var n,i=new XMLHttpRequest;if(i.onreadystatechange=a,i.ontimeout=s,i.responseType="blob",i.timeout=e,i.open("GET",t,!0),i.send(),trt.impl.options.imagePlaceholder){var o=trt.impl.options.imagePlaceholder.split(/,/);o&&o[1]&&(n=o[1])}function a(){if(4===i.readyState)if(200===i.status){var e=new FileReader;e.onloadend=function(){var t=e.result.split(/,/)[1];r(t)},e.readAsDataURL(i.response)}else n?r(n):c("cannot fetch resource: "+t+", status: "+i.status)}function s(){n?r(n):c("timeout of "+e+"ms occured while fetching resource: "+t)}function c(t){console.error(t),r("")}}))},uid:function(){var t=0;return function(){return"u"+e()+t++;function e(){return("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4)}}}(),delay:function(t){return function(e){return new Promise((function(r){setTimeout((function(){r(e)}),t)}))}},asArray:function(t){for(var e=[],r=t.length,n=0;n<r;n++)e.push(t[n]);return e},escapeXhtml:function(t){return t.replace(/#/g,"%23").replace(/\n/g,"%0A")},makeImage:function(t){return new Promise((function(e,r){var n=new Image;n.onload=function(){e(n)},n.onerror=r,n.src=t}))},width:function(t){var r=e(t,"border-left-width"),n=e(t,"border-right-width");return t.scrollWidth+r+n},height:function(t){var r=e(t,"border-top-width"),n=e(t,"border-bottom-width");return t.scrollHeight+r+n}};function t(t){var e=/\.([^\.\/]*?)$/g.exec(t);return e?e[1]:""}function e(t,e){var r=window.getComputedStyle(t).getPropertyValue(e);return parseFloat(r.replace("px",""))}}(),$et=function(){var t=/url\(['"]?([^'"]+?)['"]?\)/g;return{inlineAll:function(t,i,o){return a()?Promise.resolve(t):Promise.resolve(t).then(r).then((function(e){var r=Promise.resolve(t);return e.forEach((function(t){r=r.then((function(e){return n(e,t,i,o)}))})),r}));function a(){return!e(t)}},shouldProcess:e,impl:{readUrls:r,inline:n}};function e(e){return-1!==e.search(t)}function r(e){for(var r,n=[];null!==(r=t.exec(e));)n.push(r[1]);return n.filter((function(t){return!Wet.isDataUrl(t)}))}function n(t,e,r,n){return Promise.resolve(e).then((function(t){return r?Wet.resolveUrl(t,r):t})).then(n||Wet.getAndEncode).then((function(t){return Wet.dataAsUrl(t,Wet.mimeType(e))})).then((function(r){return t.replace(function(t){return new RegExp("(url\\(['\"]?)("+Wet.escape(t)+")(['\"]?\\))","g")}(e),"$1"+r+"$3")}))}}(),qet=function(){return{resolveAll:function(){return t().then((function(t){return Promise.all(t.map((function(t){return t.resolve()})))})).then((function(t){return t.join("\n")}))},impl:{readAll:t}};function t(){return Promise.resolve(Wet.asArray(document.styleSheets)).then((function(t){var e=[];return t.forEach((function(t){try{Wet.asArray(t.cssRules||[]).forEach(e.push.bind(e))}catch(e){console.log("Error while reading CSS rules from "+t.href,e.toString())}})),e})).then((function(t){return t.filter((function(t){return t.type===CSSRule.FONT_FACE_RULE})).filter((function(t){return $et.shouldProcess(t.style.getPropertyValue("src"))}))})).then((function(e){return e.map(t)}));function t(t){return{resolve:function(){var e=(t.parentStyleSheet||{}).href;return $et.inlineAll(t.cssText,e)},src:function(){return t.style.getPropertyValue("src")}}}}}(),Xet=function(){return{inlineAll:function e(r){return r instanceof Element?n(r).then((function(){return r instanceof HTMLImageElement?t(r).inline():Promise.all(Wet.asArray(r.childNodes).map((function(t){return e(t)})))})):Promise.resolve(r);function n(t){var e=t.style.getPropertyValue("background");return e?$et.inlineAll(e).then((function(e){t.style.setProperty("background",e,t.style.getPropertyPriority("background"))})).then((function(){return t})):Promise.resolve(t)}},impl:{newImage:t}};function t(t){return{inline:function(e){return Wet.isDataUrl(t.src)?Promise.resolve():Promise.resolve(t.src).then(e||Wet.getAndEncode).then((function(e){return Wet.dataAsUrl(e,Wet.mimeType(t.src))})).then((function(e){return new Promise((function(r,n){t.onload=r,t.onerror=n,t.src=e}))}))}}}}(),Vet={imagePlaceholder:void 0,cacheBust:!1};function Ket(t,e){return function(t){void 0===t.imagePlaceholder?trt.impl.options.imagePlaceholder=Vet.imagePlaceholder:trt.impl.options.imagePlaceholder=t.imagePlaceholder;void 0===t.cacheBust?trt.impl.options.cacheBust=Vet.cacheBust:trt.impl.options.cacheBust=t.cacheBust}(e=e||{}),Promise.resolve(t).then((function(t){return Jet(t,e.filter,!0)})).then(Zet).then((function(t){var{bgcolor:r,width:n,height:i,style:o,sx:a=1,sy:s=1}=e,c=t.style;r&&(c.backgroundColor=r);n&&(c.width=n+"px");i&&(c.height=i+"px");c["margin-left"]="0px",c["margin-top"]="0px",c.transform=`rotate(0rad) translate(0px, 0px) scale(${a}, ${s}) perspective(1px)`,o&&Object.keys(o).forEach((function(t){c[t]=o[t]}));return t})).then((function(r){return function(t,e,r){return Promise.resolve(t).then((function(t){return t.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),(new XMLSerializer).serializeToString(t)})).then(Wet.escapeXhtml).then((function(t){return'<foreignObject x="0" y="0" width="100%" height="100%">'+t+"</foreignObject>"})).then((function(t){return'<svg xmlns="http://www.w3.org/2000/svg" width="'+e+'" height="'+r+'">'+t+"</svg>"})).then((function(t){return"data:image/svg+xml;charset=utf-8,"+t}))}(r,e.width||Wet.width(t),e.height||Wet.height(t))}))}function Qet(t,e){return Ket(t,e).then(Wet.makeImage).then(Wet.delay(100)).then((function(r){var n=function(t){var r=document.createElement("canvas");if(r.width=e.width||Wet.width(t),r.height=e.height||Wet.height(t),e.bgcolor){var n=r.getContext("2d");n.fillStyle=e.bgcolor,n.fillRect(0,0,r.width,r.height)}return r}(t);return n.getContext("2d").drawImage(r,0,0),n}))}function Jet(t,e,r){return r||!e||e(t)?Promise.resolve(t).then((function(t){if(t instanceof HTMLCanvasElement)try{return Wet.makeImage(t.toDataURL())}catch(t){Y7(t)}return t.cloneNode(!1)})).then((function(r){return function(t,e,r){var n=t.childNodes;return 0===n.length?Promise.resolve(e):i(e,Wet.asArray(n),r).then((function(){return e}));function i(t,e,r){var n=Promise.resolve();return e.forEach((function(e){n=n.then((function(){return Jet(e,r)})).then((function(e){e&&t.appendChild(e)}))})),n}}(t,r,e)})).then((function(e){return function(t,e){return e instanceof Element?Promise.resolve().then(r).then(n).then(i).then(o).then((function(){return e})):e;function r(){function r(t,e){function r(t,e){Wet.asArray(t).forEach((function(r){e.setProperty(r,t.getPropertyValue(r),t.getPropertyPriority(r))}))}t.cssText?e.cssText=t.cssText:r(t,e)}r(window.getComputedStyle(t),e.style)}function n(){function r(r){var n=window.getComputedStyle(t,r),i=n.getPropertyValue("content");if(""!==i&&"none"!==i){var o=Wet.uid();e.className=e.className+" "+o;var a=document.createElement("style");a.appendChild(s(o,r,n)),e.appendChild(a)}function s(t,e,r){var n="."+t+":"+e,i=r.cssText?o(r):a(r);return document.createTextNode(n+"{"+i+"}");function o(t){var e=t.getPropertyValue("content");return t.cssText+" content: "+e+";"}function a(t){return Wet.asArray(t).map(e).join("; ")+";";function e(e){return e+": "+t.getPropertyValue(e)+(t.getPropertyPriority(e)?" !important":"")}}}}[":before",":after"].forEach((function(t){r(t)}))}function i(){t instanceof HTMLTextAreaElement&&(e.innerHTML=t.value),t instanceof HTMLInputElement&&e.setAttribute("value",t.value)}function o(){e instanceof SVGElement&&(e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e instanceof SVGRectElement&&["width","height"].forEach((function(t){var r=e.getAttribute(t);r&&e.style.setProperty(t,r)})))}}(t,e)})):Promise.resolve()}function Zet(t){return Xet.inlineAll(t).then((function(){return t}))}var trt={toSvg:Ket,toPng:function(t,e){return Qet(t,e||{}).then((function(t){return t.toDataURL()}))},toJpeg:function(t,e){return Qet(t,e=e||{}).then((function(t){return t.toDataURL("image/jpeg",e.quality||1)}))},toBlob:function(t,e){return Qet(t,e||{}).then(Wet.canvasToBlob)},toPixelData:function(t,e){return Qet(t,e||{}).then((function(e){return e.getContext("2d").getImageData(0,0,Wet.width(t),Wet.height(t)).data}))},impl:{fontFaces:qet,images:Xet,util:Wet,inliner:$et,options:{}}};function ert(t,e,r,n){var i=this.model_layer,o=i._overlay;return new Promise((function(a,s){if(i){var c=i.get("width"),u=i.get("height");r=r||c,n=n||u;var l=i.get("translate"),h=i.get("scale"),f=Math.min(r/c,n/u);r=c*f,n=u*f,i.set("translate",{x:0,y:0}),i.set("scale",{x:f/t9,y:f/t9});var d=vtt.createCanvas(r,n),p=d.getContext("2d");if(i.draw(p),i.set("translate",l),i.set("scale",h),!o)return a(d.toDataURL(t,e)),void(d=null);trt.toPng(o,{sx:f,sy:f,width:r,height:n}).then((function(i){var o=new Image;o.onload=function(){p.drawImage(o,0,0,r,n),a(d.toDataURL(t,e)),d=null},o.src=i}),(function(r){U7(r),a(d.toDataURL(t,e)),d=null}))}else s("No target model")}))}function rrt(){if(this.hasSameParentForAllSelected){var t=this.selected.filter((t=>!!t.parent&&!t.stuck));if(!(t.length<2)){var e=t[0].parent,r=[],n=t.sort(((t,r)=>e.components.indexOf(t)-e.components.indexOf(r)));n.forEach((t=>{r.push(t.bounds)}));var i=vtt.union(r),o=t[0].transcoordP2S(i.left,i.top);o=t[0].transcoordS2T(o.x,o.y);var a=new Map,s=Iet({type:"group",left:o.x,top:o.y,width:i.width,height:i.height},e.app,(t=>{const e=this.getNewRefid();return void 0!==t&&a.set(t,e),e}));s.replaceRefids(a);var c=[{component:s,to_container:e}];n.forEach((t=>{c.push({component:t,to_container:s})})),this.app.commander.execute(new Tet({changes:c})),this.selected=[s]}}}function nrt(){if(0!==this.selected.length){var t=[],e=[];this.selected.forEach((r=>{if(r.isGroup()){var n=r.parent;r.components.forEach((r=>{t.push(r),e.push({component:r,to_container:n})})),e.push({component:r,to_container:null})}})),this.app.commander.execute(new Tet({changes:e})),this.selected=t}}function irt(){var t=this.selected;if(0!=t.length){var e=t.map((t=>t.bounds)),r=vtt.union(e),n=r.left+r.width/2;t.map((t=>{t.symmetryX(n)}))}}function ort(){var t=this.selected;if(0!=t.length){var e=t.map((t=>t.bounds)),r=vtt.union(e),n=r.top+r.height/2;t.map((t=>{t.symmetryY(n)}))}}function art(){get.around(this.app.commander,irt,this)}function srt(){get.around(this.app.commander,ort,this)}function crt(t,e,r){var n=this.findAll(t,r);return n.forEach((t=>{t.set(e)})),n}function urt(t){get.around(this.app.commander,t)}function lrt(){return Object.values(this.indexMap).map((t=>t.map((t=>{let{id:e,data:r}=t.model;return{key:e,value:r}})))).flat().sort(((t,e)=>t.key>e.key?1:-1))}const hrt="left",frt="right",drt="center",prt="bottom",grt="middle",vrt=[hrt,frt,drt,"top",grt,prt];function yrt(t){if(this.hasSameParentForAllSelected&&-1!=vrt.indexOf(t)){var e=this.selected.filter((t=>!t.stuck)),r=this.app.commander;get.around(r,(function(){!function(t,e){const r=e[0].parent,{width:n,height:i}=r.bounds;switch(t){case hrt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:0}}break;case drt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:n/2-r.width/2}}break;case frt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:n-r.width}}break;case"top":for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:0}}break;case grt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:i/2-r.height/2}}break;case prt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:i-r.height}}break;default:;}}(t,e)}))}}function mrt(t){t instanceof Array||(t=[t]),this.trigger("addstart",t)}function brt(){this.trigger("stylepastestart")}function xrt(){this.trigger("stylepastestop")}function wrt(){this.trigger("databindpastestart")}function Art(){this.trigger("databindpastestop")}function _rt(t,e,r,n){var i=t.selected,o=n?i.slice(0):[];n&&o.length>0?e=o[0].parent:e.isContainer()||(e=e.parent);var a=e.layout.capturables(e),s=!!e.layout.joinType;if(n&&r.selected.forEach((t=>{o.splice(o.indexOf(t),1)})),r.selected=[],a.forEach((t=>{t.capturable&&function(t,e,r){var n,i,o,a,{sx:s,sy:c,ex:u,ey:l}=e;if(s>u?(n=u,i=s):(n=s,i=u),c>l?(o=l,a=c):(o=c,a=l),r){var h=t.bounds,f=t.transcoordS2TR(h.left,h.top),d=t.transcoordS2TR(h.left+h.width,h.top+h.height),p=f.x,g=d.x,v=f.y,y=d.y,m=Math.min(n,p,i,g),b=Math.max(n,p,i,g),x=Math.min(o,v,a,y),w=Math.max(o,v,a,y);return!(b-m>Math.abs(i-n)+Math.abs(g-p)||w-x>Math.abs(a-o)+Math.abs(y-v))}var A=t.path;if(!A)return error("컴포넌트에 get path가 잘못 구현되어있음.",t),!1;for(let e=0;e<A.length;e++){let r=t.transcoordS2TR(A[e].x,A[e].y);if(n>r.x||i<r.x||o>r.y||a<r.y)return!1}return!0}(t,r,s)&&-1==o.indexOf(t)&&r.selected.push(t)})),o=o.concat(r.selected),i.length!==o.length)t.selected=o;else for(let e=0;e<o.length;e++)if(i[e]!=o[e]){t.selected=o;break}}function krt(t,e,r,n,i){i||_rt(t,e,r,n)}function Ert(t,e){var r=t.components||[];for(let t of r){Ert(t,e);let r=e.indexOf(t);-1!=r&&e.splice(r,1)}}vtt.register("add-layer",class extends Gtt{ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}render(t){var e=this.addbox;if(e){let{sx:r,sy:n,ex:i,ey:o}=e,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,i-r,o-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}contains(t,e){return!(3!=this.app.mode)}get eventMap(){return{"(root)":{"(self)":{addstart:this.onaddstart,addstop:this.onaddstop,keydown:this.onkeydown,dragstart:this.ondragstart,dragmove:this.ondragmove,dragend:this.ondragend,mousedown:this.onmousedown,mouseup:this.onmouseup}},"model-layer":{"(self)":{change:this.onchange_root_model}}}}onchange_root_model(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}onaddstart(t,e){void 0===this.before_mode&&(this.before_mode=this.app.mode,this.models=t,this.app.mode=3)}onaddstop(){void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode,delete this.addbox,this.invalidate()}onkeydown(t){3!==this.app.mode||"Esc"!=t.code&&"Escape"!=t.code||this.root.trigger("addstop")}ondragstart(t){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.addbox={sx:e,sy:r}}ondragmove(t){if(3===this.app.mode){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.addbox&&(this.addbox.ex=e,this.addbox.ey=r,this.invalidate())}}ondragend(t,e){if(3!==this.app.mode)return;const{sx:r,sy:n,ex:i,ey:o}=this.addbox;jet.call(this.root,this.models,{left:Math.min(r,i),top:Math.min(n,o),width:Math.abs(i-r),height:Math.abs(o-n)}),this.root.trigger("addstop")}onmousedown(t,e){3===this.app.mode&&(this.downpoint={x:t.offsetX,y:t.offsetY})}onmouseup(t,e){if(this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var{x:r,y:n}=this.transcoordC2S(t.offsetX,t.offsetY);jet.call(this.root,this.models,{cx:r,cy:n}),this.root.trigger("addstop")}}});vtt.register("selection-layer",class extends Gtt{ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}contains(t,e){return!1}render(t){var e=this.selbox;if(e){let{sx:r,sy:n,ex:i,ey:o}=e,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,i-r,o-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}get eventMap(){return{"(root)":{"(self)":{keydown:this.onkeydown}},"model-layer":{"(self)":{change:this.onchange_root_model},"(all)":{dragstart:this.ondragstart_selbox,dragmove:this.ondragmove_selbox,dragend:this.ondragend_selbox,mousedown:this.onmousedown_comp,mouseup:this.onmouseup_comp}}}}onkeydown(t,e){var{origin:r,deliverer:n}=e,i=n.selected;if(1!==i.length)return!1;var o=i[0],a=o.parent;if(!a||a===n)return!1;if("Tab"===t.code){var s=a.layout.capturables(a),c=s.indexOf(o);if(-1==c){if(!a.indexOf(o))return Y7("Container not contains [",o,"] as a component"),!1;c=0}var u=s.length;t.shiftKey?c--:c++,o=s[(c+u)%u]}else{if(!a.layout.keyNavigate)return!1;o=a.layout.keyNavigate(a,o,t)||o}n.selected=[o],t.preventDefault()}onchange_root_model(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}_pendingDecision(t){this.downpoint={x:t.offsetX,y:t.offsetY}}_selectGroupItem(t,e){var r=this.selected.indexOf(t);let n=t.parent;for(;n.parent.isGroup();)n=n.parent;let i=[],o=!1,a=!1;if(this.selected.forEach((t=>{let e=t.parent;if(t!==n){for(;e.parent&&e.parent.isGroup();)e=e.parent;e===n&&(i.push(t),o=!0)}else a=!0})),o)if(e.shiftKey){if(-1!=r)return void this._pendingDecision(e);i.push(t)}else{if(-1!=r)return void this._pendingDecision(e);i=[t]}else{if(a)return void this._pendingDecision(e);if(e.shiftKey)if(this.selected.length>0){if(-1!=this.selected.indexOf(n))return;i=[...this.selected,n]}else i=[n];else i=[n]}this.selected=i}onmousedown_comp(t,e){var{origin:r}=e;if(this.downpoint=null,t.shiftKey){if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return void this._pendingDecision(t);{let t=this.selected.filter((t=>!t.isRootModel()&&!!t.parent)),e=t.length>0&&t[0].parent;e&&e!==r.parent&&(!function(t,e){for(var r=t.parent;r;){let t=e.indexOf(r);-1!=t&&e.splice(t,1),r=r.parent}}(r,t),Ert(r,t)),t.push(r),this.selected=t}}else{if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return;this.selected=[r],this.sameParent=!0}}onmouseup_comp(t,e){if(!this.downpoint)return;if(this.downpoint.x!==t.offsetX||this.downpoint.y!==t.offsetY)return;var{origin:r}=e;let n=this.selected.indexOf(r);if(-1==n&&r.parent.isGroup()&&(n=this.selected.indexOf(r.parent)),-1!==n&&t.shiftKey){let t=this.selected.slice();return n>-1&&t.splice(n,1),void(this.selected=t)}r.parent.isGroup()&&(this.selected=[r])}ondragstart_selbox(t,e){var{origin:r}=e;if(r.stuck){var{x:n,y:i}=this.transcoordC2S(t.offsetX,t.offsetY);this.selbox={sx:n,sy:i,selected:[]}}}ondragmove_selbox(t,e){var{origin:r}=e;if(r.stuck){var{x:n,y:i}=this.transcoordC2S(t.offsetX,t.offsetY);this.selbox&&(this.selbox.ex=n,this.selbox.ey=i,krt(this,r,this.selbox,t.shiftKey),this.invalidate())}}ondragend_selbox(t,e){var{origin:r}=e;r.stuck&&(this.last_pos=null,this.selbox=null,krt(this,null,null,!1,!0),this.invalidate())}});class Srt{constructor(t){this.layer=t}draw(t,e,r){var{left:n,top:i,width:o,height:a}=e.bounds;0!=o&&0!=a&&(t.beginPath(),t.rect(n,i,o,a),t.clip(),t.beginPath(),t.strokeStyle="#f26522",t.lineWidth=4,t.shadowBlur=10,t.shadowColor="black",t.shadowOffsetX=0,t.shadowOffsetY=0,t.rect(n,i,o,a),t.stroke(),t.closePath())}}class Mrt{constructor(t){this.layer=t}draw(t,e,r){var n=e.bounds;t.beginPath(),t.rect(n.left-4/r.x,n.top-4/r.y,n.width+8/r.x,n.height+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),t.closePath()}}class Trt{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){let i=r.controls;return!!i&&(i.every(((i,o)=>(Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:o,handler:i.handler}),!this.active))),!!this.active)}draw(t,e,r){var n=e.controls;n&&n.forEach(((e,n)=>{t.beginPath(),t.lineWidth=1/r.x,t.ellipse(e.x,e.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.fillStyle="#ff5d72",t.fill(),t.strokeStyle="#fff",t.stroke()}))}onevent(t,e){var{handler:r,component:n,index:i}=this.active,o=n.transcoordC2S(e.offsetX,e.offsetY);o=n.transcoordS2P(o.x,o.y),r&&"function"==typeof r[t]&&r[t](o,i,n)}onmousedown(t){this.onevent("onmousedown",t)}ondragstart(t){var e=this.active;e.changes=get.before([e.component]),this.onevent("ondragstart",t)}ondragmove(t){this.onevent("ondragmove",t)}ondragend(t){this.onevent("ondragend",t);var{component:e,changes:r}=this.active;get.after(r,e.app.commander),e.parent&&e.parent.calculateBounds&&e.parent.calculateBounds()}}function Prt(t,e){return Math.atan2(e.y-t.y,e.x-t.x)}const Ort=15*Math.PI/180;class Irt{constructor(t){this.layer=t}reset(){this.active=null,this.created=null}get selected(){return this.layer.selected}contains(t,e,r,n){return!!r.mutable&&(r.path.every(((i,o)=>(Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:o}),!this.active))),!!this.active)}startLinkProcess(t,e,r){try{var n=Iet(e,t.app);return t.rootModel.addComponent(n),this.layer.selected=[n],this.active={component:n,index:1},this.ondragstart(r),n}catch(t){console.warn(r)}}draw(t,e,r){if(e.mutable&&!e.stuck){var n=e.path,i=this.active;n.forEach(((n,o)=>{t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.fillStyle="#fff",i&&i.component===e&&i.index===o&&(t.strokeStyle="#fa7703",i.toFill&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke()}))}}ondblclick(t){var e=this.active.component;if(e.pathExtendable){var r=e.path.slice();r.length<3||(r.splice(this.active.index,1),e.path=r)}}onmousedown(t){this.active.toFill=!0}ondragstart(t){var{index:e,component:r}=this.active;this.created||(this.active.changes=get.before([r])),0!==e&&e!==r.path.length-1||(this.layer.counterEnd=0===e?r.toEnd||{fromto:"to"}:r.fromEnd||{fromto:"from"})}ondragmove(t){var{component:e,index:r}=this.active||{};const{offsetX:n,offsetY:i}=t;var o,a,s=e.transcoordC2S(n,i);if(s=e.transcoordS2P(s.x,s.y),t.shiftKey){var c=e.path.length,u=e.isLine()&&0==r?e.path[1]:e.path[(r-1+c)%c];u=e.transcoordS2P(u.x,u.y);var l,h=0;if(c>2)e.isLine()?0==r?l=e.path[2]:1!=r&&(l=e.path[r-2]):l=e.path[(r-2+c)%c],l&&(h=Prt(l=e.transcoordS2P(l.x,l.y),u));var f=Math.round((Prt(u,s)-h)/Ort)*Ort+h;s=function(t,e,r){return{x:Math.cos(e)*r+t.x,y:Math.sin(e)*r+t.y}}(u,f,(o=u,a=s,Math.sqrt((a.x-o.x)*(a.x-o.x)+(a.y-o.y)*(a.y-o.y))))}if(0===r||r===e.path.length-1){const t=this.layer.anchorTarget=e.rootModel.capture(n,i,(t=>!t.isConnectable()));if(t){const{x:o,y:a}=t.transcoordC2S(n,i),c=this.layer.get("scale")||{x:1,y:1},u=this.layer.counterEnd,l=(t.anchors||[]).find((r=>{const{name:n,inout:i,multiplicity:s=1/0,position:l,filter:h}=r;if(u){const{anchor:t,fromto:e}=u;if(t&&("out"===t.inout&&"out"===i||"in"===t.inout&&"in"===i))return!1;if("from"===e&&"out"===i||"to"===e&&"in"===i)return!1}else console.error("should not be here.");if(Math.abs(o-l.x)>8/c.x||Math.abs(a-l.y)>8/c.y)return!1;const f=t.findInOutLines(n);return!!f.includes(e)||!(s!==1/0&&f.length>=s)&&(!u||!h||!!h.call(r,u))}));l?0==r?e.from={component:t.get("refid"),anchor:l.name,position:s}:e.to={component:t.get("refid"),anchor:l.name,position:s}:0==r?e.from={position:s}:e.to={position:s}}}e.mutatePath(null,(function(t){t[r]=s}))}ondragend(t){var{component:e,index:r,changes:n}=this.active;if(0===r||r===e.path.length-1){const{offsetX:n,offsetY:i}=t,o=e.rootModel.capture(n,i,(t=>t===e||t.isLine())),{x:a,y:s}=o.transcoordC2S(n,i),c=this.layer.get("scale")||{x:1,y:1},u=(o.anchors||[]).find((t=>t&&Math.abs(a-t.position.x)<=8/c.x&&Math.abs(s-t.position.y)<=8/c.y));u&&(0==r?e.from={component:o.get("refid"),anchor:u.name}:e.to={component:o.get("refid"),anchor:u.name}),this.layer.endLinkProcess()}if(this.created){let t=new Tet({changes:[{component:this.created,to_container:this.created.parent}]});created.app.commander.execute(t)}else get.after(n,e.app.commander);e.parent&&e.parent.calculateBounds&&e.parent.calculateBounds()}}class Crt{constructor(t){this.layer=t}get active(){return this._active?.component.disposed&&(this._active=null),this._active}set active(t){this._active=t}reset(){this.active=null}contains(t,e,r,n){const i=this.active?.component===r&&this.active?.anchor;this.active=null;const o=this.layer.counterEnd;return(r.isConnectable()&&!r.disposed&&r.anchors||[]).filter((t=>{const{name:e,inout:n,multiplicity:i=1/0,filter:a}=t;if(o){const{anchor:t,fromto:e}=o;if(t&&("out"===t.inout&&"out"===n||"in"===t.inout&&"in"===n))return!1;if("from"===e&&"out"===n||"to"===e&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&r.findInOutLines(e).length>=i)&&(!a||!o||!!a.call(t,o))})).every((o=>{const a=i===o.name?2:1;return o&&o.position&&Math.abs(t-o.position.x)<=4*a/n.x&&Math.abs(e-o.position.y)<=4*a/n.y&&(this.active={component:r,anchor:o.name,template:o.template}),!this.active})),!!this.active}draw(t,e,r){if(!e.get("refid")||e.isLine())return;var n=this.active;const i=this.active?.component===e&&this.active?.anchor,o=this.layer.counterEnd;(e.isConnectable()&&!e.disposed&&e.anchors||[]).filter((t=>{const{name:r,inout:n,multiplicity:i=1/0,filter:a}=t;if(o){const{anchor:t,fromto:e}=o;if(t&&("out"===t.inout&&"out"===n||"in"===t.inout&&"in"===n))return!1;if("from"===e&&"out"===n||"to"===e&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&e.findInOutLines(r).length>=i)&&(!o||!a||!!a.call(t,o))})).forEach((o=>{const{name:a,position:s}=o,c=i===a?2:1;s&&(t.beginPath(),t.ellipse(s.x,s.y,4*c/r.x,4*c/r.y,0,0,2*Math.PI),t.setLineDash([0,0]),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",n&&n.component===e&&n.anchor===a&&(t.strokeStyle="#fa7703",n.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}onmousedown(t){this.active.focus=!0}ondragstart(t){const{component:e,anchor:r,template:n}=this.active,i=this.layer.transcoordC2S(t.offsetX,t.offsetY);this.layer.startLinkProcess(e,{type:"ortholine",lineWidth:1,strokeStyle:"black",begin:"oval",beginSize:"size9",end:"arrow",endSize:"size9",lineDash:"solid",lineCap:"butt",round:10,...n,from:{component:e.get("refid"),anchor:r,position:i},to:{position:i}},t)}ondragmove(t){}ondragend(t){}}function Rrt(t,e,r){var n,i,{left:o,top:a,width:s,height:c}=t.bounds;switch(e){case 0:n=o,i=a;break;case 1:n=o+s/2,i=a;break;case 2:n=o+s,i=a;break;case 3:n=o+s,i=a+c/2;break;case 4:n=o+s,i=a+c;break;case 5:n=o+s/2,i=a+c;break;case 6:n=o,i=a+c;break;case 7:n=o,i=a+c/2}var u=n,l=i,h=t.transcoordT2S(r.x,r.y);return{dx:h.x-u,dy:h.y-l}}function jrt(t,e,r,n,i,o){var{left:a,top:s,width:c,height:u}=t.bounds,l={left:a,top:s,width:c,height:u};switch(e){case 0:a+=n,s+=i,c-=n,u-=i;break;case 1:s+=i,u-=i;break;case 2:s+=i,c+=n,u-=i;break;case 3:c+=n;break;case 4:c+=n,u+=i;break;case 5:u+=i;break;case 6:a+=n,c-=n,u+=i;break;case 7:a+=n,c-=n}if(t.mutateBounds((function(e){return Math.abs(c)<=.001&&(c=.001),Math.abs(u)<=.001&&(u=.001),t.adjustResize({left:a,top:s,width:c,height:u},l,r)}),this),t.isContainer()&&t.layout.ABSOLUTE&&!t.isGroup()){var h=l.left-a,f=l.top-s;o?t.components.forEach((t=>{t.delta("tx",0),t.delta("ty",0),t.move({x:h,y:f},!1)})):t.components.forEach((t=>{t.delta("tx",h),t.delta("ty",f)}))}else{var d=o&&t.parent;d&&d.isGroup()&&d.calculateBounds()}}function Lrt(t,e){var{left:r,top:n,width:i,height:o}=t,a=r+i/2,s=n+o/2,c=r+i,u=n+o;const l=i*e.x>50,h=o*e.y>50;return[{x:r,y:n},l?{x:a,y:n}:null,{x:c,y:n},h?{x:c,y:s}:null,{x:c,y:u},l?{x:a,y:u}:null,{x:r,y:u},h?{x:r,y:s}:null]}class Drt{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){return!!r.resizable&&(Lrt(r.bounds,n).every(((i,o)=>(i&&Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:o}),!this.active))),!!this.active)}draw(t,e,r){if(!e.isLine()){var{left:n,top:i,width:o,height:a}=e.bounds;if(t.beginPath(),t.rect(n-4/r.x,i-4/r.y,o+8/r.x,a+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),e.resizable){var s=this.active;Lrt(e.bounds,r).forEach(((n,i)=>{n&&(t.beginPath(),t.rect(n.x-4/r.x,n.y-4/r.y,8/r.x,8/r.y),t.setLineDash([0,0]),t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",s&&s.component===e&&s.index===i&&(t.strokeStyle="#fa7703",s.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}}onmousedown(t){this.active.focus=!0}ondragstart(t){var{component:e}=this.active;this.active.bounds=e.bounds,this.active.boundsList=this.layer.selected.filter((t=>t.resizable)).map((t=>t.bounds))}ondragmove(t){var{component:e,index:r,boundsList:n,bounds:i}=this.active,o=this.layer.transcoordC2S(t.offsetX,t.offsetY);e.bounds=i;var a=Rrt(e,r,o);this.layer.selected.filter((t=>t.resizable)).forEach(((e,i)=>{e.bounds=n[i],jrt(e,r,t.shiftKey,a.dx,a.dy,!1)}))}ondragend(t){var{component:e,index:r,boundsList:n,bounds:i}=this.active,o=this.layer.transcoordC2S(t.offsetX,t.offsetY);e.bounds=i;var a=Rrt(e,r,o);this.layer.selected.filter((t=>t.resizable)).forEach(((e,i)=>{e.bounds=n[i],jrt(e,r,t.shiftKey,a.dx,a.dy,!0)})),this.active.component.app.commander.execute(null,!1)}}const zrt=2*Math.PI,Nrt=Math.PI/2;function Frt(t,e){var r=t.bounds;return{x:r.left+r.width/2,y:r.top-20/e.y}}class Brt{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){if(!r.rotatable)return!1;var i=Frt(r,n);return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r},!0)}draw(t,e,r){if(e.rotatable){t.beginPath();var n=Frt(e,r);t.lineWidth=1.5/r.x,t.moveTo(n.x,n.y+20/r.y),t.lineTo(n.x,n.y),t.strokeStyle="#656565",t.stroke(),t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,zrt,!0),t.stroke(),t.fillStyle="#fff",t.fill();var i=this.active;i&&i.component===e&&(t.strokeStyle="#fa7703",t.stroke(),i.toFill&&(t.fillStyle="#ffb80c",t.fill()))}}onmousedown(t){this.active.toFill=!0}ondragstart(t){var e=this.active;e.component,e.start_rotation=e.component.get("rotation"),e.rotations=this.layer.selected.filter((t=>t.rotatable)).map((t=>t.get("rotation")))}ondragmove(t){var{component:e}=this.active,r=e.transcoordC2S(t.offsetX,t.offsetY);r=e.transcoordS2P(r.x,r.y);var n=e.rotatePoint,i=e.get("rotation")||0,o=Math.atan((n.y-r.y)/(n.x-r.x)),a=(o=n.x>=r.x?o-Nrt:Nrt+o)-i;this.layer.selected.filter((t=>t.rotatable)).forEach(((e,r)=>{let n=((e.get("rotation")||0)+a)%zrt;e.set("rotation",e.adjustRotation(n,t.shiftKey))}))}ondragend(t){var{component:e,rotations:r}=this.active;e.app.commander.execute(null,!1)}}vtt.register("modeling-layer",class extends Gtt{constructor(t,e){super(t,e),this.pathHandler=new Irt(this);var r=this.pathHandler,n=new Trt(this),i=new Drt(this),o=new Brt(this);this._modelers=[r,n,i,o],this._control_mode_modelers=[n,r,i,o],this.focusOutline=new Srt(this),this.groupOutline=new Mrt(this),this.anchorHandler=new Crt(this),this._reversed_modelers=this._modelers.slice().reverse(),this._control_mode_reverse_modelers=this._control_mode_modelers.slice().reverse(),this.hovered=null,this.hoveredDest=null}get modelers(){return this._control_mode?this._control_mode_modelers:this._modelers}get reversedModelers(){return this._control_mode?this._control_mode_reverse_modelers:this._reversed_modelers}ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}contains(t,e){var r=this.selected.filter((t=>!!t.parent)),n=this.get("scale")||{x:1,y:1};if(this._state_dragging){if(this._counter_end){let r=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(r.x,r.y,this.anchorTarget,n))return!0}return!0}this.modelers.forEach((t=>t.reset()));r=this.selected.filter((t=>!!t.parent));for(let i=0;i<r.length;i++){let o=r[i],a=o.transcoordT2S(t,e);for(let t=0;t<this.modelers.length;t++){let e=this.modelers[t];if(e.contains(a.x,a.y,o,n))return this.currentModeler=e,!0}}if(this.anchorTarget){let r=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(r.x,r.y,this.anchorTarget,n))return this.currentModeler=this.anchorHandler,!0}else this.anchorHandler.reset();return this.currentModeler=null,!1}_componentDrawer(t,e,r,n){let i=[],o=e.parent;if(e.isRootModel())return t.save(),n(t,e,r),void t.restore();for(;o&&!o.isRootModel();)i.push(o),o=o.parent;t.save(),i.reverse().forEach((function(e){let r=e.rotatePoint;t.translate(r.x,r.y);let n=e.get("scale");n&&t.scale(n.x,n.y),t.rotate(e.get("rotation")),t.translate(-r.x,-r.y);let i=e.bounds;t.translate(i.left,i.top)}));let a=e.rotatePoint;t.translate(a.x,a.y);let s=e.get("scale");s&&t.scale(s.x,s.y),t.rotate(e.get("rotation")),t.translate(-a.x,-a.y),n(t,e,r),t.restore()}prerender(t){var{translate:e,scale:r={x:1,y:1},rotation:n}=this.model;t.save(),t.beginPath(),t.clearRect(0,0,t.canvas.width,t.canvas.height),t.rect(0,0,t.canvas.width,t.canvas.height),t.fillStyle="black",t.globalAlpha=.5,t.fill(),t.restore(),e&&t.translate(e.x*t9,e.y*t9),t.scale(r.x*t9,r.y*t9),n&&t.rotate(n),t.clearRect(0,0,this.rootModel.get("width"),this.rootModel.get("height"))}render(t){t.beginPath();var e=this.get("scale")||{x:1,y:1},r=this.selected.filter((t=>!!t.parent));if(this.focused&&this._componentDrawer(t,this.focused,e,((t,e,r)=>{this.focusOutline.draw(t,e,r)})),r.length>0&&r[0].parent.isGroup()){let n=r[0].parent;for(;n.parent.isGroup();)n=n.parent;this._componentDrawer(t,n,e,((t,e,r)=>{this.groupOutline.draw(t,e,r)}))}r.forEach((r=>{this._componentDrawer(t,r,e,((t,e,r)=>{this.reversedModelers.forEach((n=>n.draw(t,e,r)))}))})),this.anchorTarget&&this._componentDrawer(t,this.anchorTarget,e,((t,e,r)=>{this.anchorHandler.draw(t,e,r)}))}get anchorTarget(){return this.currentModeler===this.anchorHandler||this.currentModeler===this.pathHandler||this.hovered?.isLine()||(this._anchorTarget=this.hovered),this._anchorTarget}set anchorTarget(t){this._anchorTarget=t}get hovered(){return this._hovered}set hovered(t){this._hovered=t,this.invalidate()}startLinkProcess(t,e,r){this.currentModeler=this.pathHandler,this.processingLink=this.pathHandler.startLinkProcess(t,e,r),this.counterEnd=this.processingLink.fromEnd,this.processingLink.trigger("tag")}set counterEnd(t){this.currentModeler=this.pathHandler,this._counter_end=t}get counterEnd(){return this._counter_end}endLinkProcess(){this.processingLink?.trigger("tagreset"),this.processingLink=null,this._counter_end=null}get eventMap(){return{"model-layer":{"(all)":{change:this.onchange_model,wheel:this.onwheel_scale,drop:this.ondrop},"(descendant)":{mouseenter:this.onmouseenter,mouseleave:this.onmouseleave},"(self)":{dblclick:this.ondblclick_model}},"(root)":{"(self)":{selected:this.onselected,keydown:this.onkeydown,keyup:this.onkeyup}}}}onmouseenter(t,e){this.hovered=e?.origin}onmouseleave(t,e){this.hovered=null}onkeydown(t){"Alt"==t.key&&(this._control_mode=!0,this.invalidate())}onkeyup(t){"Alt"==t.key&&(this._control_mode=!1,this.invalidate())}onselected(t,e){this.invalidate()}onchange_model(t,e,r){var{origin:n,deliverer:i}=r;n===i&&(t.translate&&this.set("translate",t.translate),void 0!==t.rotation&&this.set("rotation",t.rotation),t.scale&&this.set("scale",t.scale)),this.invalidate()}ondblclick_model(t,e){const r=e.origin;r?.root.fit()}ondblclick(t){"function"==typeof this.currentModeler.ondblclick&&this.currentModeler.ondblclick(t),this.invalidate()}onmousedown(t){this.currentModeler.onmousedown(t),this.invalidate()}onmouseup(t){"function"==typeof this.currentModeler.onmouseup&&this.currentModeler.onmouseup(t),this.invalidate()}ondragstart(t){this.currentModeler.ondragstart(t),this._state_dragging=!0}ondragmove(t){this.currentModeler.ondragmove(t),this.invalidate()}ondragend(t){this._state_dragging=!1,this.currentModeler.ondragend(t),this.invalidate()}ondrop(t,e){var{origin:r}=e,n=t.dataTransfer.files;if(n.length<1)return;let i=this.rootModel.transcoordC2S(t.offsetX,t.offsetY),o=this.rootModel;Promise.all(Array.from(n).map((t=>new Promise(((e,r)=>{let n=new FileReader;n.addEventListener("loadend",(t=>{e(n.result)})),["error","abort"].forEach((t=>n.addEventListener(t,(t=>{r(t)})))),n.readAsDataURL(t)}))))).then((e=>{if(t.altKey)return get.around(this.app.commander,(()=>{r.ondropfile(n,e)})),void(this.selected=[r]);let a=[],s=e.map(((t,e)=>{let r,s=n[e].type,c=n[e].name;return s.startsWith("image/")?(r=Iet({type:s.startsWith("image/gif")?"gif-view":"image-view",top:0,left:0,width:200,height:200,src:t},o.app),a.push(new Promise(((e,n)=>{let i=new Image;i.src=t,i.onload=()=>{r.set({width:i.width,height:i.height}),e()},i.onerror=t=>{n(t)}})))):s.startsWith("audio/")?r=Iet({type:"audio",top:0,left:0,width:100,height:100,src:t},o.app):s.startsWith("vnd.ms-excel/")||/\.xlsx?$/.test(c)?r=Iet({type:"excel",top:0,left:0,width:100,height:100,src:t},o.app):console.log("droped file",n[e]),r&&(r.center=i,i.x+=50,i.y+=50),r})).filter(Boolean).map((t=>({component:t,to_container:o})));s.length>0&&Promise.all(a).then((()=>{this.app.commander.execute(new Tet({changes:s})),this.selected=s.map((t=>t.component))}),(t=>{console.error(t)}))}),(t=>{console.error(t)}))}onwheel_scale(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer;if(t.shiftKey){if(-1!=navigator.userAgent.indexOf("Win"))var n=t.deltaY<0?1:-1;else n=t.deltaX<0?1:-1;get.around(this.app.commander,(()=>{r.selected.forEach((t=>{let e=t.get("fontSize")||n9.FONT_SIZE;e<1&&(e=1),e+=n,t.set("fontSize",e)}))}))}else{n=t.deltaY<0?1:-1;let e=r.get("scale")||{x:1,y:1},i=r.get("translate"),o=t.offsetX,a=t.offsetY,s=r.transcoordC2S(o,a),c=.1*n,u={x:e.x+c,y:e.y+c};if(n<0&&e.x<.2||n>0&&e.x>10)return;r.set("scale",u);let l=r.transcoordC2S(o,a);r.set("translate",{x:i.x+(l.x-s.x)*u.x,y:i.y+(l.y-s.y)*u.y})}}}});class Urt extends Gtt{constructor(t,e){super(t,e),this._anim_alpha=1}animOnTargetChange(t){t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:t=>{this._anim_alpha=1-t,this.invalidate()},duration:5e3,delta:"circ",ease:"in"}).start())}decorate(t,e,r){const n=t.decorators;var i=!1;return n.map((t=>"string"==typeof t?ctt(t):t)).filter((t=>t&&"function"==typeof t)).map((n=>{const o=n(t,e,1-r);i||=o})),i}render(t){var e=this.decoTargets&&this.decoTargets.filter((t=>t.rootModel));if(!e||0==e.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var r=!1;e.forEach((e=>{this.decorate(e,t,1-this._anim_alpha)&&(r=!0)})),r&&this.animOnTargetChange(this.decoTargets)}get decoTargets(){return this._decoTargets}set decoTargets(t){this._decoTargets=t&&t.filter((t=>!t.isLayer())),this.invalidate()}get eventMap(){return{"model-layer":{"(descendant)":{tag:this.ondecotag,tagreset:this.ondecotagreset,mouseenter:this.onmouseenter,mouseleave:this.onmouseleave}}}}onmouseenter(t,e){this._decotagreset(),this._ondecotag(e.origin)}onmouseleave(t,e){this._decotagreset()}ondecotagreset(t){this._decotagreset()}ondecotag(t){this._ondecotag(t.origin)}offdecotag(t,e){this._offdecotag(e.origin)}_ondecotag(t){this.decoTargets&&-1!==this.decoTargets.lastIndexOf(t)||(this.decoTargets=(this.decoTargets||[]).concat(t))}_offdecotag(t){if(this.decoTargets){var e=this.decoTargets.slice();e.splice(this.decoTargets.lastIndexOf(t),1),this.decoTargets=e}}_decotagreset(){this.decoTargets=[]}}vtt.register("decotag-layer",Urt),vtt.register("tag-layer",Urt);vtt.register("reaction-layer",class extends Gtt{constructor(t,e){super(t,e),this._anim_alpha=1}animOnTargetChange(t){t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:t=>{this._anim_alpha=1-t,this.invalidate()},duration:1e4,delta:"circ",ease:"inout"}).start())}decorate(t,e,r){const n=t.reactionDecorators;var i=!1;return n.map((t=>"string"==typeof t?ctt(t):t)).filter((t=>t&&"function"==typeof t)).map((n=>{const o=n(t,e,1-r);i||=o})),i}render(t){var e=this.targets&&this.targets.filter((t=>t.rootModel));if(!e||0==e.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var r=!1;e.forEach((e=>{this.decorate(e,t,1-this._anim_alpha)&&(r=!0)})),r&&this.animOnTargetChange(this.targets)}get targets(){return this._targets}set targets(t){this._targets=t&&t.filter((t=>!t.isLayer())),this.invalidate()}get eventMap(){return{"model-layer":{"(descendant)":{reaction:this.onreaction,reactionreset:this.onreactionreset}}}}onreactionreset(t){this._reactionreset()}onreaction(t){this._onreaction(t.origin)}offreaction(t,e){this._offreaction(e.origin)}_onreaction(t){this.targets&&-1!==this.targets.lastIndexOf(t)||(this.targets=(this.targets||[]).concat(t))}_offreaction(t){if(this.targets){var e=this.targets.slice();e.splice(this.targets.lastIndexOf(t),1),this.targets=e}}_reactionreset(){this.targets=[]}});function Yrt(){var t=arguments,e=t[t.length-1],r=this.event_pump;r.listeners.forEach((n=>{!function(t,e,r,n,i){for(let o in r){let a=r[o];if(u9(o,n.origin,0,t))for(let t in a){let r=a[t];t==n.name&&(n.listener=e,r.apply(e,i))}}}(r.deliverer,n.listener,n.cloned_handlers,e,t)}))}vtt.register("scroll-layer",class extends Gtt{get capturable(){return!0}render(t){const{scrolling:e}=this.state;if(t.save(),t.beginPath(),t.fillStyle="#777",this.vscroller){const{left:r,top:n,width:i,height:o}=this.vscroller;t.globalAlpha="v"==e?1:.3,t.fillRect(r,n,i,o)}if(this.hscroller){const{left:r,top:n,width:i,height:o}=this.hscroller;t.globalAlpha="h"==e?1:.3,t.fillRect(r,n,i,o)}t.stroke(),t.restore()}resize(){super.resize(),this.calcScrollerBounds()}contains(t,e){const r=this.vscroller,n=this.hscroller;return this.setState("scrolling",r&&t>=r.left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height?"v":n&&t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?"h":null),!!this.getState("scrolling")}get eventMap(){return{"(root)":{"model-layer":{change:this.onchangeModelLayer}}}}onchange(t){"scrolling"in t&&this.invalidate()}ondragstart(t,e){this.lastPosition={x:t.offsetX,y:t.offsetY}}ondragmove(t,e){const r=this.root,{clientWidth:n,clientHeight:i}=this.canvas,{width:o,height:a}=this.rootModel.model,{x:s,y:c}={x:t.offsetX,y:t.offsetY},{x:u,y:l}=this._scale,{scrolling:h}=this.state,f=o/n,d=a/i;h&&r.rootModel.move({x:"h"==h?(-s+this.lastPosition.x)*u*f:0,y:"v"==h?(-c+this.lastPosition.y)*l*d:0},!1),this.lastPosition={x:t.offsetX,y:t.offsetY}}ondragend(){delete this.lastPosition,this.setState({scrolling:null})}calcScrollerBounds(){var{clientWidth:t,clientHeight:e}=this.canvas;const{width:r,height:n}=this.rootModel.model,{x:i=1,y:o=1}=this._scale||{},{x:a=0,y:s=0}=this._translate||{},c=r/t,u=n/e;var l={left:-a/i/c,top:e-10,width:t/i/c,height:10};this.hscroller=l.left>1||l.width+l.left<t-1?l:null,l={left:t-10,top:-s/o/u,width:10,height:e/o/u},this.vscroller=l.top>1||l.height+l.top<e-1?l:null,this.invalidate()}onchangeModelLayer(t,e,r){if(t.scale){const{x:e=1,y:r=1}=t?.scale||{};this._scale={x:e,y:r},this.calcScrollerBounds()}if(t.translate){const{x:e=0,y:r=0}=t.translate||{};this._translate={x:e,y:r},this.calcScrollerBounds()}}});class Hrt{constructor(t){if(void 0===t.on)throw new Error("Deliverer should be a event handlable object.");this.deliverer=t,this.listeners=[]}start(){this.deliverer.on("(all)",Yrt,{event_pump:this})}stop(){this.deliverer.off("(all)",Yrt)}on(t,e){var r=Object.assign({},e);Object.keys(r).forEach((e=>{if(0==e.indexOf("?")){let n=r[e],i=e.substr(1),o=t.get(i);delete r[e],o?r[o]=n:Y7("EventPump#on","variable #{selector} is not evaluated on listener")}})),this.listeners.push({listener:t,handlers:e,cloned_handlers:r})}off(t,e){for(let r=0;r<this.listeners.length;r++){let n=this.listeners[r];n.listener!==t||e&&n.handlers!==e||this.listeners.splice(r,1)}}clear(){this.listeners=[]}dispose(){this.stop(),this.clear()}}class Grt{constructor(t){this.eventMaps=[],this.root=t,t.eventMap&&this.add(t,t.eventMap)}set root(t){this._root=t}get root(){return this._root}stop(){this.eventMaps.forEach((t=>t.eventPump.stop()))}add(t,e){if(this.root)for(let r in e){let n=e[r];if("(self)"===r&&void 0===t.on)throw new Error("(self) selector not available when deliverer is not a event handlable object.");f9(r,this.root,t).forEach((r=>{var i=new Hrt(r);i.on(t,n),i.start(),this.eventMaps.push({eventPump:i,listener:t,handlerMap:e,deliverer:r})}))}}remove(t,e){var r=this.eventMaps.slice(0);for(let n=0;n<r.length;n++){let i=r[n];i.listener!==t||e&&i.handlerMap!==e||(this.eventMaps.splice(n,1),i.eventPump.dispose())}}clear(){this.eventMaps.slice(0).forEach((t=>t.eventPump.dispose())),this.eventMaps=[]}dispose(){this.stop(),this.clear()}}const Wrt=0,$rt=1,qrt=2,Xrt=0,Vrt=1,Krt=2;var Qrt={},Jrt=0;class Zrt{constructor(t,e){this._type=e||t.type,this._ctrlKey=t.ctrlKey,this._altKey=t.altKey,this._shiftKey=t.shiftKey,this._metaKey=t.metaKey;var r=function(t){if(t.touches){let e=t.touches[0];if(!e)return Qrt;let r=e.target.getBoundingClientRect();return Qrt={x:t.offsetX||e.clientX-(r.x||r.left),y:t.offsetY||e.clientY-(r.y||r.top)}}return{x:t.offsetX,y:t.offsetY}}(t);if(this._offsetX=r.x,this._offsetY=r.y,"wheel"==t.type)this.deltaX=t.deltaX,this.deltaY=t.deltaY,this.deltaZ=t.deltaZ;else if("drop"==t.type)this.dataTransfer=t.dataTransfer;else if(t.type.match(/^touch/)&&(this._scale=t.scale,this._touches=t.touches,this._changedTouches=t.changedTouches,null==this._scale)){var n=function(t){var e,r,n=0,i=0,o=0;if(1===t.touches.length)return o;Array.from(t.touches).forEach((t=>{e=null!=e?Math.min(t.screenX,e):t.screenX,n=Math.max(t.screenX,n),r=null!=r?Math.min(t.screenY,r):t.screenY,i=Math.max(t.screenY,i)}));var a=n-e||0,s=i-r||0;return Math.sqrt(Math.pow(a,2)+Math.pow(s,2))||0}(t);Jrt>0&&(this._scale=n/Jrt),Jrt=n}}get type(){return this._type}set type(t){this._type=t}get offsetX(){return this._offsetX}get offsetY(){return this._offsetY}get altKey(){return this._altKey}get ctrlKey(){return this._ctrlKey}get shiftKey(){return this._shiftKey}get metaKey(){return this._metaKey}get touches(){return this._touches}get changedTouches(){return this._changedTouches}get scale(){return this._scale}stopPropagation(){this._stop_=!0,this.originalEvent&&"function"==typeof this.originalEvent.stopPropagation&&this.originalEvent.stopPropagation()}isPropagationStopped(){return this._stop_}preventDefault(){this._prevented=!0}isDefaultPrevented(){return this._prevented}}function tnt(t,e){return t.capture(e.offsetX,e.offsetY)}function ent(t,e,r){if(t&&t.app&&(!t.app.isViewMode||!t.hidden)){r instanceof Zrt&&e===r.type||(r=new Zrt(r,e));var n="on"+e;t[n]&&t[n](r),r.isPropagationStopped()||t.trigger(e,r)}}class rnt{constructor(t,e){this.container=t,this.html_element=e,this.status=Wrt,this.last_target=null,this.gesture_handlers=e9.map((t=>this.gestureHandlerBuilder(t))),this.keyevent_handlers=r9.map((t=>this.keyeventHandlerBuilder(t))),e9.forEach(((t,r)=>e.addEventListener(t,this.gesture_handlers[r])),{passive:!1}),r9.forEach(((t,r)=>e.addEventListener(t,this.keyevent_handlers[r]))),e.ondragover=this.gestureHandlerBuilder("dragover"),e.ondrop=this.gestureHandlerBuilder("drop"),e.tabIndex=1}dispose(){this.last_enter_target&&ent(this.last_enter_target,"mouseleave",new CustomEvent("mouseleave")),e9.forEach(((t,e)=>this.html_element.removeEventListener(t,this.gesture_handlers[e]))),r9.forEach(((t,e)=>this.html_element.removeEventListener(t,this.keyevent_handlers[e]))),delete this.gesture_handlers,delete this.keyevent_handlers,delete this.last_target}gestureHandlerBuilder(t){var e=this[`on${t}`].bind(this);return t=>{const r=new Zrt(t);return e(r),r.isDefaultPrevented()&&t.preventDefault(),!1}}keyeventHandlerBuilder(t){return this[`on${t}`].bind(this)}ondragover(t){return ent(tnt(this.container,t),t.type,t),!1}ondrop(t){return ent(tnt(this.container,t),t.type,t),!1}ondblclick(t){return ent(tnt(this.container,t),t.type,t),this.last_target=null,!1}onkeydown(t){return this.container.trigger(t.type,t),!1}onkeyup(t){return this.container.trigger(t.type,t),!1}onmousemove(t){switch(this.status){case $rt:let r=t.offsetX-this.__dragstart_e.offsetX,n=t.offsetY-this.__dragstart_e.offsetY;if(r*r+n*n<16)break;this.status=qrt,ent(this.last_target,"dragstart",this.__dragstart_e),this.__dragmove_e=t,ent(this.last_target,"dragmove",t);break;case qrt:this.__dragmove_e=t,ent(this.last_target,"dragmove",t);break;default:var e=tnt(this.container,t);this.last_enter_target!==e&&(this.last_enter_target&&ent(this.last_enter_target,"mouseleave",t),e&&ent(e,"mouseenter",t),this.last_enter_target=e),ent(e,t.type,t),this.last_target=e}return!1}onmousedown(t){if(this.status===qrt)ent(this.last_target,"dragend",t),this.last_target=null,this.status=Wrt;else{var e=tnt(this.container,t);this.last_target=e,this.status=$rt,this.__dragstart_e=t,ent(e,t.type,t)}return!1}onmouseup(t){if(this.status===qrt)ent(this.last_target,"dragend",t);else{var e=tnt(this.container,t);ent(e,t.type,t),this.last_target===e&&ent(e,"click",t)}return this.last_target=null,this.status=Wrt,!1}onmouseout(t){var e=tnt(this.container,t);if(this.status===qrt)ent(this.last_target,"dragend",t);else{if(this.last_target&&this.last_target===e)return;this.last_enter_target&&(ent(this.last_enter_target,"mouseleave",t),delete this.last_enter_target)}return this.last_target=null,this.status=Wrt,!1}ontouchstart(t){var e=tnt(this.container,t);return this.last_target=e,this.status=Vrt,this.touchPoints||(this.touchPoints=[]),this.touchPoints.push(t.changedTouches[0]),this.holdTimer=setTimeout((()=>{this.status=Xrt,ent(this.last_target,"hold",t),delete this.holdTimer}),500),ent(e,t.type,t),!1}ontouchmove(t){if(!t.touches||!t.changedTouches)return ent(this.last_target,"dragstart",t),ent(this.last_target,"dragmove",t),!1;var e=tnt(this.container,t);switch(this.status){case Vrt:Array.from(t.changedTouches).forEach((t=>{var e=this.touchPoints.find((e=>e.identifier===t.identifier));if(e){var r=e.clientX-t.clientX,n=e.clientY-t.clientY;return Math.sqrt(Math.pow(r,2)+Math.pow(n,2))>=16?(this.status=Krt,void(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer))):void 0}}));break;case Krt:if(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer),2===t.changedTouches.length&&null!=t.scale&&1!==t.scale&&(t.scale<.9||t.scale>1.1))return ent(this.last_target,"pinch",t),!1;ent(this.last_target,"pan",t),e=this.last_target;break;default:this.last_enter_target!==e&&(this.last_enter_target&&ent(this.last_enter_target,"mouseleave",t),e&&ent(e,"mouseenter",t),this.last_enter_target=e),this.last_target=e}return ent(e,"touchmove",t),!1}ontouchend(t){var e=tnt(this.container,t);switch(this.status){case Krt:e=this.last_target;break;case Vrt:var r=performance.now(),n=r-this.touchedAt;this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer,ent(e,n<500?"doubletap":"tap",t),this.touchedAt=r)}ent(e,"touchend",t);var i=this.touchPoints.findIndex((e=>e.identifier===t.changedTouches[0].identifier));return this.touchPoints.splice(i,1),this.last_target=null,this.status=Xrt,!1}onwheel(t){return ent(tnt(this.container,t),t.type,t),!1}}function nnt(t,e,r){if(e.length<2)return e;for(var n=2;n<e.length;n++){var i=e.substring(0,n);if(!(t.measureText(i).width<r))break}return e.substring(0,n-1)}function int(t,e,r,n){var i=String(e).split("\n");return n?[].concat.apply([],i.map((e=>function(t,e,r){var n,i,o=e.split(" "),a=[],s=[];for(n=0,i=1;i<=o.length;i++)if(s=o.slice(n,i),t.measureText(s.join(" ")).width>r){if(i-n==1){let e=nnt(t,s[0],r);a.push([e]),o.splice(n,1,e,s[0].substring(e.length))}else{for(;""==o[i-1];)i++;a.push(o.slice(n,--i))}n=i}return i-n>1&&a.push(s),0==a.length&&a.push([""]),a}(t,e,r)))):i.map((t=>t.split(" ")))}var ont={};var ant={register:function(t,e){ont[t]=e},unregister:function(t){delete ont[t]},get:function(t){return ont[t]}};function snt(t){if(!t.hasTextProperty||t.textHidden)return;var{text:e="",bold:r=n9.BOLD,italic:n=n9.ITALIC,textWrap:i=n9.TEXT_WRAP,fontFamily:o=n9.FONT_FAMILY,fontColor:a=n9.FONT_COLOR,textAlign:s=n9.TEXT_ALIGN,textBaseline:c=n9.TEXT_BASELINE,fontSize:u=n9.FONT_SIZE,lineHeight:l=1.2*u}=t.model,{left:h,top:f,width:d,height:p}=t.textBounds;u||=n9.FONT_SIZE,l||=1.2*u,t.textHidden=!0;var g=document.createElement("textarea");e9.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}),!0)}));const v=t.transcoordS2C(h,f),{rotation:y,scale:m}=function(t){for(var e=0,r=1,n=t;n;){e+=n.get("rotation")||0;let{x:t,y:i}=n.get("scale")||{x:1,y:1};r*=Math.max(t,i)||1,n=n.parent}return{rotation:e,scale:r}}(t);switch(g.style.position="absolute",g.style.width=d+"px",g.style.height=p+"px",g.style.padding="0",g.value=e,g.style.fontFamily=o,g.style.fontSize=u+"px",g.style.lineHeight=l+"px",g.style.overflow="hidden",g.style.resize="none",g.style.outline="none",g.style.border=0,g.style.backgroundColor="transparent",g.style.display="inline-block",g.style.color=a,r&&(g.style.fontWeight="bold"),n&&(g.style.fontStyle="italic"),s){case"right":case"end":g.style.textAlign="right";break;case"justify":g.style.textAlign="justify";break;case"left":case"start":g.style.textAlign="left";break;default:g.style.textAlign="center"}var b=[r,n,u+"px",o].filter(Boolean).join(" ");function x(e){var r={left:0,top:0},n=l*function(t,e,r,n){var i,o=t.getContext();return o.save(),o.font=r,i=int(o,e,n,t.get("textWrap")).length,o.restore(),i}(t,e,b,d);switch(g.style.height=n+"px",c){case"top":case"hanging":break;case"bottom":case"alphabetic":r.top=p-n;break;default:r.top=p/2-n/2}if(!i){var o=function(t,e,r,n){var i=e.split("\n"),o=n;let a=t.getContext();return a.save(),a.font=r,i.forEach((t=>{let e=a.measureText(t).width;e>o&&(o=e)})),a.restore(),o}(t,e,b,d);switch(g.style.width=o+"px",s){case"right":case"end":r.left=d-o;break;case"left":case"start":break;default:r.left=(d-o)/2}}g.style.marginLeft=r.left+"px",g.style.marginTop=r.top+"px",g.style.transform=`translate(${v.x}px, ${v.y}px) scale(${m}) rotate(${y}rad)`,g.style.transformOrigin=`${-r.left}px ${-r.top}px`}x(e);var w=t.root.target_element;w.appendChild(g),g.select();var A,_=!1;g.addEventListener("keydown",(function(t){t.stopPropagation(),"Escape"!=t.code&&(t.shiftKey||"Enter"!=t.code&&"NumpadEnter"!=t.code)?setTimeout((()=>{x(g.value)})):(_=A.skipUpdate="Escape"==t.code,document.createEvent?g.dispatchEvent(A):g.fireEvent(A.eventType,A))})),document.createEvent?(A=document.createEvent("HTMLEvents")).initEvent("blur",!0,!1):(A=document.createEventObject()).eventType="blur";var k=t.root.selected,E=function(r){t.root.selected=k,t.textHidden=!1,g.removeEventListener("blur",E,!1),g.parentElement&&g.parentElement.removeChild(g),w.focus(),r.skipUpdate||_||t.app.commander.execute(new get({changes:[{component:t,before:{text:e},after:{text:g.value}}]}))};g.addEventListener("blur",E,!1)}ant.register("text-editor",{"(root)":{"(self)":{keydown:function(t,e){var{origin:r,deliverer:n}=e,i=n.selected;return!(1!==i.length||!i[0].hasTextProperty)&&(("Enter"==t.code||"NumpadEnter"==t.code)&&(snt(i[0]),t.preventDefault(),!0))}}},"model-layer":{"(descendant)":{dblclick:function(t,e){snt(e.origin)}}}});var cnt,unt,lnt,hnt=x7((function(t,e,r){if(t.hasSameParentForAllSelected&&!r){var n=[];e[0].parent.isGroup()?t.focused=e[0].parent:(e.forEach((t=>{t.path.forEach((e=>{n.push(t.transcoordS2T(e.x,e.y))}))})),t.focused=t.capturePath(n,e))}else t.focused=null}),300);ant.register("move-handler",{"model-layer":{"(descendant)":{dragstart:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected,o=n.selected.filter((t=>!t.stuck));if(i.length!==o.length&&(i=n.selected=o),0!=i.length){var a=i[0].transcoordC2S(t.offsetX,t.offsetY);if(a=i[0].transcoordS2P(a.x,a.y),this.last_pos=a,this.direction=0,n.focused=i[0].parent,t.altKey){var s=[],c=new Map;n.selected=n.selected.filter((t=>!t.isRootModel())).map((t=>{let e=Cet(t,(t=>{const e=n.root.getNewRefid();return void 0!==t&&c.set(t,e),e}));return s.push({component:e,to_container:t.parent}),e})).map((t=>(t.replaceRefids(c),t))),s.forEach((({component:t,to_container:e})=>{e.addComponent(t)})),this.duplicates=n.selected.map((t=>({component:t})))}else this.changes=get.before(i)}}},dragmove:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected;if(0!=i.length){var{x:o,y:a}=i[0].transcoordC2S(t.offsetX,t.offsetY),s=i[0].transcoordS2P(o,a);t.shiftKey?2==this.direction&&(this.direction=0):this.direction=2;var c=s.x-this.last_pos.x,u=s.y-this.last_pos.y;if(0==this.direction){if(c*c+u*u<25)return;Math.abs(c)>Math.abs(u)?this.direction=3:this.direction=4}3==this.direction?u=0:4==this.direction&&(c=0),i.forEach((t=>{t.move({x:c,y:u},1===i.length)})),this.last_pos=s,hnt(n,i)}}},dragend:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected;if(0!=i.length){var o=i[0].parent,a=n.focused||e.deliverer;if(this.changes&&!a.isGroup())if(n.hasSameParentForAllSelected&&a&&a!==o){var s=this.changes.map((t=>{let{component:e,before:r}=t;return{component:e,to_container:a}}));n.app.commander.execute(new Tet({changes:s}))}else get.after(this.changes,n.app.commander);else if(this.duplicates){this.duplicates=this.duplicates.map((t=>(t.to_container=a,t)));let t=new Tet({changes:this.duplicates});n.app.commander.execute(t)}i.forEach((t=>{t.parent&&t.parent.calculateBounds&&t.parent.calculateBounds()})),this.last_pos=null,this.changes=null,this.duplicates=null,hnt(n,i,!0)}}}}},"(root)":{"(self)":{keydown:function(t,e){var{origin:r,deliverer:n}=e,i={},o=t.shiftKey?r.rootModel.MPP:1;switch(t.which){case 37:i.x=-o,i.y=0;break;case 38:i.x=0,i.y=-o;break;case 39:i.x=o,i.y=0;break;case 40:i.x=0,i.y=o;break;default:return}var a=n.selected;get.around(n.app.commander,(function(){a.forEach((t=>{!t.stuck&&t.move(i,!1)}))}))}}}});const fnt=w7((()=>{const{x:t,y:e}=lnt,r=unt.deref();r&&(r.rootModel.move({x:t-cnt.x,y:e-cnt.y},!1),cnt={x:t,y:e})}),60,{leading:!0,trailing:!0});ant.register("shift-handler",{"model-layer":{"(all)":{dragstart:function(t,e){cnt={x:t.offsetX,y:t.offsetY}},dragmove:function(t,e){unt=new WeakRef(e.deliverer),lnt={x:t.offsetX,y:t.offsetY},fnt()}}}}),ant.register("zoom-handler",{"model-layer":{"(all)":{wheel:function(t,e){if(0==t.deltaY&&0==t.deltaX)return;var r=e.deliverer,n=t.deltaY<0?1:-1;let i=r.get("scale")||{x:1,y:1},o=r.get("translate"),a=t.offsetX,s=t.offsetY,c=r.transcoordC2S(a,s),u=.1*n,l={x:i.x+u,y:i.y+u};if(n<0&&i.x<.2||n>0&&i.x>10)return;r.set("scale",l);let h=r.transcoordC2S(a,s);r.set("translate",{x:o.x+(h.x-c.x)*l.x,y:o.y+(h.y-c.y)*l.y})}},"(self)":{dblclick:function(t,e){const r=e.origin;r?.root.fit()}}}});var dnt={},pnt={};function gnt(t){const e={};for(const r in t)t.hasOwnProperty(r)&&void 0!==t[r]&&(e[r]=t[r]);return e}ant.register("paste-handler",{"(root)":{"(self)":{stylepastestart:function(t){const{deliverer:e}=t,r=e.app;var n=e.selected;if(n&&n[0]&&n!==e.rootModel){const t=n[0],{fillStyle:e,strokeStyle:i,alpha:o,lineWidth:a,lineDash:s,lineCap:c,lineJoin:u,fontColor:l,fontSize:h,fontFamily:f,bold:d,italic:p,textAlign:g,textBaseline:v,textOverflow:y,paddingTop:m,paddingBottom:b,paddingLeft:x,paddingRight:w}=t.state;dnt=c7({fillStyle:e,strokeStyle:i,alpha:o,lineWidth:a,lineDash:s,lineCap:c,lineJoin:u,fontColor:l,fontSize:h,fontFamily:f,bold:d,italic:p,textAlign:g,textBaseline:v,textOverflow:y,paddingTop:m,paddingBottom:b,paddingLeft:x,paddingRight:w}),r.mode=4}},stylepastestop:function(t){const{deliverer:e}=t,r=e.app;dnt={},4==r.mode&&(r.mode=1)},databindpastestart:function(t){const{deliverer:e}=t,r=e.app;var n=e.selected;if(n&&n[0]&&n!==e.rootModel){const t=n[0],{mappings:e}=t.state;pnt=c7({mappings:e}),r.mode=5}},databindpastestop:function(t){const{deliverer:e}=t,r=e.app;pnt={},5==r.mode&&(r.mode=1)},keydown:function(t,e){const{deliverer:r}=e;"Esc"!=t.code&&"Escape"!=t.code||(4==r.app.mode?r.trigger("stylepastestop"):5==r.app.mode&&r.trigger("databindpastestop"))}}},"model-layer":{"(all)":{click:function(t,e){const{deliverer:r}=e,n=r.app;if(4!=n.mode&&5!=n.mode)return;const i=e.origin;4==n.mode?i===r?r.root.trigger("stylepastestop"):i&&get.around(n.commander,(()=>{const t=gnt({...i.model,...dnt});i?.set(t)})):i===r?r.root.trigger("databindpastestop"):i&&get.around(n.commander,(()=>{const t=gnt({...i.model,...pnt});i?.set(t)}))}}}});var vnt=[],ynt=x7((function(){vnt.forEach((t=>{t.resize()}))}),100);"undefined"!=typeof window&&window.addEventListener("resize",ynt);class mnt extends Htt{constructor(t,e){super(Object.assign({type:"root",scale:{x:1,y:1}},t||{}),e),this._maxRefid=e.isViewMode?1e6:0,t=t||{},this.fitMode=t.model&&t.model.fitMode,this._app=e,this.style=t.style,this.target_element=t.target_element,this.rebuildContentModel(this.model.model),vnt.push(this)}dispose(){Itt.hideAll(this),this._app&&this._app.dispose(),super.dispose(),this._disposeAllResources(),this.target_element=null,delete this._refresh_mapping_debouncer;var t=vnt.indexOf(this);t>=0&&vnt.splice(t,1),this.refidIndexMap.clear(),this._maxRefid=0}isRoot(){return!0}get app(){return this._app}get target_element(){return this._target_element}set target_element(t){this._ua_event_handler&&(this._ua_event_handler.dispose(),delete this._ua_event_handler),t&&(t.style.position="absolute",t.style.cursor="default",t.style.overflow="hidden",this._ua_event_handler=new rnt(this,t)),this.forEach((e=>e.target=t)),this._target_element=t}get unitScale(){switch(this.model_layer&&this.model_layer.get("unit")){case"mm":case"cm":case"in":return this.app.PPM/10;default:return 1}}addTemplate(t,e){var r=this.templateMap[t];r&&U7("Template replaced (duplicated)",t,e,r),this.templateMap[t]=e,delete this.templatePrefixes}removeTemplate(t,e){var r=this.templateMap[t];r!==e?Y7("Removing template failed (different)",t,e,r):delete this.templateMap[t],delete this.templatePrefixes}findTemplateFor(t){this.templatePrefixes||(this.templatePrefixes=Object.keys(this.templateMap).sort().reverse());var e=this.templatePrefixes.find((e=>t.startsWith(e)));if(e)return this.templateMap[e]}addIndex(t,e){var r=this.indexMap[t]||[];this.indexMap[t]=[...r,e]}removeIndex(t,e){const r=this.indexMap[t]||[],n=r.indexOf(e);-1==n?Y7("Removing index failed (not found)",t,e):(r.splice(n,1),0==r.length&&delete this.indexMap[t])}addRefidIndex(t,e){null==t&&(t=this.getNewRefid(),e.set("refid",t)),this._maxRefid=Math.max(t,this._maxRefid);var r=this.refidIndexMap.get(t);r&&U7("Refid Index replaced (has not to be)",t,e,r),this.refidIndexMap.set(t,e)}removeRefidIndex(t,e){if(null!=t){var r=this.refidIndexMap.get(t);r!==e?U7("Refid Removing index failed (has not to be)",t,e,r):this.refidIndexMap.delete(t)}}getNewRefid(){return this._maxRefid=(this._maxRefid||0)+1,this._maxRefid}async subscribe(t,e){this._app.isViewMode&&t&&this._app&&(e._subscription=await this._app.subscribe(t,e))}async unsubscribe(t,e){e._subscription&&(await e._subscription.unsubscribe(),delete e._subscription)}findById(t){return(this.indexMap[t.replace(/^#/,"")]||[])[0]}findAllById(t){return this.indexMap[t.replace(/^#/,"")]||[]}findByRefid(t){return this.refidIndexMap.get(t)}findOrCreate(t){var e=this.findAllById(t);if(!e&&this.app&&!this.app.isEditMode){let e=this.findTemplateFor(t);if(e){let r=Object.assign(c7(e.hierarchy),{id:t,templatePrefix:""});return component=Iet(r,this.app),this.model_layer.addComponent(component),[component]}}return e}resize(){this.components.forEach((t=>{t.resize&&t.resize()})),this.invalidate()}_disposeAllResources(){this.selected=[],this._focused=null,this._ready=!1,this.eventEngine&&(this.assist_handlers&&this.assist_handlers.forEach((t=>{this.eventEngine.remove(t)})),this.eventEngine.dispose(),delete this.eventEngine),this.assist_layers&&this.assist_layers.forEach((t=>{t.dispose(),this.removeComponent(t)})),delete this.assist_layers,this.model_layer&&this.model_layer.dispose(),this.model_layer&&this.removeComponent(this.model_layer),delete this.model_layer,this.indexMap={},this.refidIndexMap=new Map,this.templateMap={}}rebuildContentModel(t){this._disposeAllResources(),this.eventEngine=new Grt(this),(t=t||{}).type="model-layer",this.model_layer=Iet(t,this.app),this.addComponent(this.model_layer),this.model_layer.target=this.target_element,this.assist_layers=(this.model.layers||[]).map((t=>{var e=Iet(t,this.app);return this.addComponent(e),e.target=this.target_element,e})),this.assist_handlers=(this.model.handlers||[]).map((t=>{var e={};return this.eventEngine.add(e,ant.get(t)),e})),this._ready=!0,this.traverse((t=>t.ready()))}get root(){return this}get anchors(){}get isReady(){return this._ready}get rootModel(){return this.model_layer}get stuck(){return!0}get data(){return Object.values(this.indexMap).reduce(((t,[e])=>(t[e.model.id]=e.data,t)),{})}set data(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((r=>r.data=t[e]))}}get dataByRefid(){var t={};for(let[e,r]of this.refidIndexMap.entries())t[e]=r.data;return t}set dataByRefid(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.data=t[e])}}get values(){return Object.values(this.indexMap).reduce(((t,[e])=>(t[e.model.id]=e.value,t)),{})}set values(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((r=>r.value=t[e]))}}get valuesByRefid(){var t={};for(let[e,r]of this.refidIndexMap.entries())t[e]=r.value;return t}set valuesByRefid(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.value=t[e])}}get selected(){return(this._selected||[]).filter((t=>t.parent))}set selected(t){var e=this._selected;if(this._selected=t,!t||t.length<=1)this.hasSameParentForAllSelected=!0;else{let e=t[0].parent;this.hasSameParentForAllSelected=!t.find((t=>t.parent!=e))}this.trigger("selected",t,e)}get focused(){return this._focused}set focused(t){this._focused!==t&&(this._focused=t,this.invalidate())}get style(){return this._style}set style(t){this._style=t,this._compiled_style=t}get hasTextProperty(){return!1}render(){this.components.forEach((t=>t.draw()))}contains(t,e){return!0}capturePath(t,e){return this.model_layer.capturePath(t,e)}invalidate(){this.components.forEach((t=>t.invalidate()))}get eventMap(){return{"(root)":{"(descendant)":{added:this.onadded,removed:this.onremoved,change:this.onchanged}}}}refreshMappings(){if(!this._refresh_mapping_debouncer){if(this.disposed)return;this._refresh_mapping_debouncer=x7((function t(e){e.executeMappings(),e.components&&e.components.forEach((e=>t(e)))}),1e3)}this._refresh_mapping_debouncer(this.model_layer)}_addTraverse(t){t.components&&t.components.forEach((t=>this._addTraverse(t)));var{id:e,refid:r,tag:n,templatePrefix:i}=t.model;this.addRefidIndex(r,t),e&&this.addIndex(e,t),n&&this.subscribe(n,t),i&&this.addTemplate(i,t);var o=T7({},t.eventMap,t.model.eventMap);this.eventEngine.add(t,o)}_removeTraverse(t){t.components&&t.components.forEach((t=>this._removeTraverse(t)));var{id:e,refid:r,tag:n,templatePrefix:i}=t.model;this.removeRefidIndex(r,t),e&&this.removeIndex(e,t),n&&this.unsubscribe(n,t),i&&this.removeTemplate(i,t),this.eventEngine.remove(t)}onadded(t,e){this._addTraverse(e),this.refreshMappings(),this.invalidate()}onremoved(t,e){this._removeTraverse(e),this.invalidate()}onchanged(t,e,r){e.templatePrefix&&this.removeTemplate(e.templatePrefix,r.origin),t.templatePrefix&&this.addTemplate(t.templatePrefix,r.origin),e.id&&this.removeIndex(e.id,r.origin),t.id&&this.addIndex(t.id,r.origin),e.tag&&this.unsubscribe(e.tag,r.origin),t.tag&&this.subscribe(t.tag,r.origin),e.id==t.id&&e.class==t.class||this.refreshMappings()}}Object.assign(mnt.prototype,{fit:function(t){var{width:e,height:r,fitMode:n}=this.model_layer.model,i=this.target_element,o=this.model_layer;if(this.fitMode=t||this.fitMode||n||"ratio",e&&r&&i&&i.clientWidth&&i.clientHeight){switch(this.fitMode){case"center":!function(t,e,r){var n=t.unitScale,{width:i,height:o}=e.model;e.set("scale",{x:n,y:n}),e.set("translate",{x:Math.max((r.clientWidth-i*n)/2,0),y:Math.max((r.clientHeight-o*n)/2,0)})}(this,o,i);break;case"both":!function(t,e,r){var{width:n,height:i}=e.model,o=r.clientWidth,a=r.clientHeight;e.set("scale",{x:o/n,y:a/i}),e.set("translate",{x:0,y:0})}(0,o,i);break;case"width":!function(t,e,r){var n=r.clientWidth/e.get("width");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,o,i);break;case"height":!function(t,e,r){var n=r.clientHeight/e.get("height");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,o,i);break;case"ratio":!function(t,e,r){var{width:n,height:i}=e.model,o=r.clientWidth,a=r.clientHeight,s=o/n,c=a/i,u=Math.min(s,c);e.set("scale",{x:u,y:u}),e.set("translate",{x:(o-n*u)/2,y:(a-i*u)/2})}(0,o,i);break;default:!function(t,e){var r=t.unitScale;e.set("scale",{x:r,y:r}),e.set("translate",{x:0,y:0})}(this,o)}this.resize()}}}),vtt.memoize(mnt.prototype,"unitScale",!1);var bnt=13.3,xnt=function(t){return void 0!==t&&(bnt=t),bnt};const wnt="$base_url";const Ant=Math.PI/12;class _nt{constructor(t,e){this._mode=t,this.screen=xnt(),this._baseUrl="undefined"!=typeof window?window.location.origin:null,this._refProvider=e,this.isEditMode&&(this._rotateStep=Ant,this._rotateStepForced=!1)}dispose(){this._dataSubscriptionProvider&&this._dataSubscriptionProvider.dispose(),delete this._dataStorage}_calcScreen(){var t={width:screen.width,height:screen.height};this._PPI=function(t,e,r,n){t>0||(t=1),e>0||(e=1),n||(n="d");var i=("d"==n?Math.sqrt(t*t+e*e):"w"==n?t:e)/r;return i>0?Math.round(i):0}(t.width,t.height,this.screen),this._PPM=this._PPI/25.4}subscribe(t,e){return this._dataSubscriptionProvider?.subscribe(t,e)}get refProvider(){return this._refProvider}set dataSubscriptionProvider(t){this._dataSubscriptionProvider=t}get dataSubscriptionProvider(){return this._dataSubscriptionProvider}set commander(t){this._commander=t}get commander(){return this._commander}get screen(){return this._screen}set screen(t){this._screen=t,this._calcScreen()}get DPPX(){return t9}get PPI(){return this._PPI}get PPM(){return this._PPM}get mode(){return this._mode}set mode(t){var e=this._mode;e!==t&&(this._mode=t,this.trigger("mode",t,e))}get isViewMode(){return 0==this._mode}get isEditMode(){return 1==this._mode}get baseUrl(){return this._baseUrl}set baseUrl(t){t&&this._baseUrl!=t&&(this._baseUrl=t)}url(t){try{return(t.includes(wnt)?new URL(t.replace(wnt,this.baseUrl),this.baseUrl):new URL(t,location.origin)).href}catch(e){Y7(e,t)}}get rotateStep(){return this._rotateStep}set rotateStep(t){this._rotateStep=Number(t)||Ant}get rotateStepForced(){return this._rotateStepForced}set rotateStepForced(t){this._rotateStepForced=!!t}get dataStorage(){return this._dataStorage}set dataStorage(t){this._dataStorage=t}}B7(_nt.prototype,L7.withEvent);class knt{constructor(t,e){!(t=Number(t))||t<=0?(U7("TimeCapsule maxsize should be greater than 0.",t),this.maxsize=10):this.maxsize=t,this.reset(),e&&(this.snapshot(e),this.preserve())}preserve(){this.checkPoint=this.pos}hasUnpreservedChanges(){return this.checkPoint!=this.pos}dispose(){this.reset()}snapshot(t){if(this.q.splice(this.pos+1,this.q.length-(this.pos+1),t),this.q.length>this.maxsize){const t=this.q.splice(0,this.q.length-this.maxsize);this.checkPoint=Math.max(-1,this.checkPoint-t.length)}this.pos=this.q.length-1}forward(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.forwardable)return this.q[++this.pos];Y7("Not forwardable.")}backward(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.backwardable)return this.q[--this.pos];Y7("Not backwardable.")}get current(){if(-1!==this.pos)return this.q[this.pos];Y7("Non state has been recorded.")}get length(){return this.q.length}get forwardable(){return this.pos<this.q.length-1}get backwardable(){return this.pos>0}get snapshot_taker(){return this._snapshot_taker}set snapshot_taker(t){this._snapshot_taker=t}reset(){this.q=[],this.pos=-1,this.checkPoint=-1}}var Ent=x7((t=>{t.brake||t.take()}),1e3,{leading:!0,trailing:!1});function Snt(t){!t.brake&&t.dirty&&Ent(t)}class Mnt{constructor(t,e){this.brake=!1,this.dirty=!1,this.state_holder=t,this.timecapsule=e,this.timecapsule.snapshot_taker=this}dispose(){delete this.state_holder,delete this.timecapsule}touch(){this.dirty=!0,Snt(this)}take(t){(this.dirty||t)&&(this.timecapsule.snapshot(this.state_holder.state),this.dirty=!1)}get brake(){return this._brake}set brake(t){this._brake=!!t,Snt(this)}}function Tnt(t,e){var r=e.model_layer.get("scale"),n=e.model_layer.get("translate");if(t){let i=JSON.parse(t);i.scale=r,i.translate=n,e.rebuildContentModel(i)}}class Pnt{constructor(t){this.container=t,this.timecapsule=new knt(20);var e=this;this.snapshot_taker=new Mnt({get state(){let t=e.container.model_layer.hierarchy;return JSON.stringify(t)}},this.timecapsule),this.snapshot_taker.take(!0),this.timecapsule.preserve()}dispose(){this.reset(),this.timecapsule&&this.timecapsule.dispose(),this.snapshot_taker&&this.snapshot_taker.dispose(),delete this.container,delete this.timecapsule,delete this.snapshot_taker}preserve(){this.timecapsule.preserve()}hasUnpreservedChanges(){return this.timecapsule.hasUnpreservedChanges()}execute(t,e){!1!==e&&t&&t.execute(),this.snapshot_taker.touch(),this.trigger("execute",t,!0,!1)}undo(){this.timecapsule.backwardable&&(Tnt(this.timecapsule.backward(),this.container),this.trigger("undo",this.undoable(),this.redoable()))}redo(){this.timecapsule.forwardable&&(Tnt(this.timecapsule.forward(),this.container),this.trigger("redo",this.undoable(),this.redoable()))}undoable(){return this.timecapsule.backwardable}redoable(){return this.timecapsule.forwardable}reset(){this.timecapsule&&this.timecapsule.reset(),this.trigger("command-reset")}}B7(Pnt.prototype,L7.withEvent);var Ont=0;const Int=new FinalizationRegistry((t=>{Ont--}));class Cnt{static get residents(){return Ont}static get residentsCount(){return Ont}constructor(t){this._container=t,this.app=t.app,this._commander=new Pnt(this._container),this.app.commander=this._commander,Ont++,Int.register(this,Ont)}add(){return jet.apply(this._container,arguments)}duplicate(){return Let.apply(this._container,arguments)}remove(){return Det.apply(this._container,arguments)}animate(){return j8.apply(this,arguments)}fullscreen(){return Bet.apply(this._container,arguments)}get target(){return this._container.target_element}set target(t){var e;if("string"==typeof t){if(!(e=document.getElementById(t)))throw`target element '${t}' is not exist`;if(e.firstChild)throw`target element '${t}' already has children`}else e=t;e&&e.style&&(e.style.cursor="default"),this._container.target_element=e,this._container.invalidate()}get scale(){return this.root.get("scale")}set scale(t){this.root.set("scale",t)}get translate(){return this.root.get("translate")}set translate(t){this.root.set("translate",t)}get unit(){return this.root.get("unit")||"px"}get PPM(){return this.app.PPM}get PPI(){return this.app.PPI}get DPPX(){return this.app.DPPX}static get DPPX(){return t9}get unitScale(){return this._container.unitScale}get screen(){return this.app.screen}set screen(t){this.app.screen=t,this._container.resize()}resize(){this._container.resize()}release(){this.dispose()}dispose(){this._commander&&this._commander.dispose(),this._container&&this._container.dispose()}get selected(){return this._container.selected.slice()}set selected(t){this._container.selected=t}select(t,...e){return this._container.selected=this.root?.findAll(t,...e),this.selected}get commander(){return this._commander}undo(){this.commander.undo()}undoable(){return this.commander.undoable()}redo(){this.commander.redo()}redoable(){return this.commander.redoable()}preserve(){this.commander.preserve()}hasUnpreservedChanges(){return this.commander.hasUnpreservedChanges()}cut(){return Het.apply(this._container,arguments)}copy(){return Yet.apply(this._container,arguments)}paste(){return Get.apply(this._container,arguments)}undoableChange(){return urt.apply(this._container,arguments)}change(){return crt.apply(this.root,arguments)}get model(){return this.root.hierarchy}set model(t){this._container.rebuildContentModel(t)}get rootContainer(){return this._container}get root(){return this._container?.model_layer}findAll(){return this.root.findAll.apply(this.root,arguments)}findFirst(){return this.root.findFirst.apply(this.root,arguments)}findById(){return this._container.findById.apply(this._container,arguments)}serialize(){return this.root.trim(),this.root.serialize.apply(this.root,arguments)}align(){return Aet.apply(this._container,arguments)}place(){return yrt.apply(this._container,arguments)}distribute(){return Eet.apply(this._container,arguments)}move(){return Pet.apply(this._container,arguments)}zorder(){return Oet.apply(this._container,arguments)}symmetryX(){return art.apply(this._container,arguments)}symmetryY(){return srt.apply(this._container,arguments)}on(){return zet.apply(this._container,arguments)}once(){return Net.apply(this._container,arguments)}off(){return this._container&&Fet.apply(this._container,arguments)}centerTo(t,e){return this.root.centerTo(t,e)}get mode(){return this.app.mode}set mode(t){void 0!==t&&(this.app.mode=t)}toDataURL(){return ert.apply(this._container,arguments)}group(){return rrt.apply(this._container,arguments)}ungroup(){return nrt.apply(this._container,arguments)}fit(t){this._container.once("redraw",(()=>this._container.fit(t))),this._container.invalidate()}get fitMode(){return this._container.fitMode}get ids(){return lrt.apply(this._container)}get data(){return this._container.data}set data(t){this._container.data=t}get dataByRefid(){return this._container.dataByRefid}set dataByRefid(t){this._container.dataByRefid=t}get values(){return this._container.values}set values(t){this._container.values=t}get valuesByRefid(){return this._container.valuesByRefid}set valuesByRefid(t){this._container.valuesByRefid=t}get baseUrl(){return this.app.baseUrl}set baseUrl(t){this.app.baseUrl=t}startAddMode(){return mrt.apply(this._container,arguments)}startStylePasteMode(){return brt.apply(this._container,arguments)}stopStylePasteMode(){return xrt.apply(this._container,arguments)}startDatabindPasteMode(){return wrt.apply(this._container,arguments)}stopDatabindPasteMode(){return Art.apply(this._container,arguments)}}const Rnt=new class{load(t){}save(t,e){}clear(t){}};function jnt({target:t,model:e,style:r,layers:n=[],handlers:i=[],mode:o=0,refProvider:a,dataSubscriptionProvider:s,dataStorage:c=Rnt,baseUrl:u,fitMode:l}){var h=null;if("string"==typeof t){if(!(h=document.getElementById(t)))throw`target element '${t}' is not exist`;if(h.firstChild)throw`target element '${t}' is not empty`}else h=t;h&&h.style&&(h.style.position="absolute",h.style.cursor="default",h.style.overflow="hidden");var f=new _nt(o,a);return f.baseUrl=u,f.dataSubscriptionProvider=s,f.dataStorage=c,new Cnt(new mnt({target_element:h,model:e,style:r,layers:n,handlers:i,fitMode:l},f))}function Lnt(t,e,r,n,i,o,a){try{var s=t[o](a),c=s.value}catch(t){return void r(t)}s.done?e(c):Promise.resolve(c).then(n,i)}
6
+ i=function(){return e};var t,e={},r=Object.prototype,a=r.hasOwnProperty,s=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},l=o.iterator||"@@iterator",h=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function d(t,e,r,n){var i=e&&e.prototype instanceof b?e:b,a=Object.create(i.prototype),o=new R(n||[]);return s(a,"_invoke",{value:T(t,r,o)}),a}function p(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=d;var f="suspendedStart",g="suspendedYield",v="executing",m="completed",y={};function b(){}function w(){}function x(){}var A={};u(A,l,(function(){return this}));var _=Object.getPrototypeOf,k=_&&_(_(O([])));k&&k!==r&&a.call(k,l)&&(A=k);var S=x.prototype=b.prototype=Object.create(A);function E(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function M(t,e){function r(i,s,o,l){var h=p(t[i],t,s);if("throw"!==h.type){var c=h.arg,u=c.value;return u&&"object"==n(u)&&a.call(u,"__await")?e.resolve(u.__await).then((function(t){r("next",t,o,l)}),(function(t){r("throw",t,o,l)})):e.resolve(u).then((function(t){c.value=t,o(c)}),(function(t){return r("throw",t,o,l)}))}l(h.arg)}var i;s(this,"_invoke",{value:function(t,n){function a(){return new e((function(e,i){r(t,n,e,i)}))}return i=i?i.then(a,a):a()}})}function T(e,r,n){var i=f;return function(a,s){if(i===v)throw new Error("Generator is already running");if(i===m){if("throw"===a)throw s;return{value:t,done:!0}}for(n.method=a,n.arg=s;;){var o=n.delegate;if(o){var l=C(o,n);if(l){if(l===y)continue;return l}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===f)throw i=m,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=v;var h=p(e,r,n);if("normal"===h.type){if(i=n.done?m:g,h.arg===y)continue;return{value:h.arg,done:n.done}}"throw"===h.type&&(i=m,n.method="throw",n.arg=h.arg)}}}function C(e,r){var n=r.method,i=e.iterator[n];if(i===t)return r.delegate=null,"throw"===n&&e.iterator.return&&(r.method="return",r.arg=t,C(e,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),y;var a=p(i,e.iterator,r.arg);if("throw"===a.type)return r.method="throw",r.arg=a.arg,r.delegate=null,y;var s=a.arg;return s?s.done?(r[e.resultName]=s.value,r.next=e.nextLoc,"return"!==r.method&&(r.method="next",r.arg=t),r.delegate=null,y):s:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,y)}function P(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function I(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function R(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function O(e){if(e||""===e){var r=e[l];if(r)return r.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var i=-1,s=function r(){for(;++i<e.length;)if(a.call(e,i))return r.value=e[i],r.done=!1,r;return r.value=t,r.done=!0,r};return s.next=s}}throw new TypeError(n(e)+" is not iterable")}return w.prototype=x,s(S,"constructor",{value:x,configurable:!0}),s(x,"constructor",{value:w,configurable:!0}),w.displayName=u(x,c,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,x):(t.__proto__=x,u(t,c,"GeneratorFunction")),t.prototype=Object.create(S),t},e.awrap=function(t){return{__await:t}},E(M.prototype),u(M.prototype,h,(function(){return this})),e.AsyncIterator=M,e.async=function(t,r,n,i,a){void 0===a&&(a=Promise);var s=new M(d(t,r,n,i),a);return e.isGeneratorFunction(r)?s:s.next().then((function(t){return t.done?t.value:s.next()}))},E(S),u(S,c,"Generator"),u(S,l,(function(){return this})),u(S,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=O,R.prototype={constructor:R,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(I),!e)for(var r in this)"t"===r.charAt(0)&&a.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var r=this;function n(n,i){return o.type="throw",o.arg=e,r.next=n,i&&(r.method="next",r.arg=t),!!i}for(var i=this.tryEntries.length-1;i>=0;--i){var s=this.tryEntries[i],o=s.completion;if("root"===s.tryLoc)return n("end");if(s.tryLoc<=this.prev){var l=a.call(s,"catchLoc"),h=a.call(s,"finallyLoc");if(l&&h){if(this.prev<s.catchLoc)return n(s.catchLoc,!0);if(this.prev<s.finallyLoc)return n(s.finallyLoc)}else if(l){if(this.prev<s.catchLoc)return n(s.catchLoc,!0)}else{if(!h)throw new Error("try statement without catch or finally");if(this.prev<s.finallyLoc)return n(s.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&a.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var s=i?i.completion:{};return s.type=t,s.arg=e,i?(this.method="next",this.next=i.finallyLoc,y):this.complete(s)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),y},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),I(r),y}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var i=n.arg;I(r)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,r,n){return this.delegate={iterator:O(e),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=t),y}},e}var a=t("./datetime"),s=t("./functions"),o=t("./utils"),l=t("./parser"),h=t("./signature"),c=function(){var t=i().mark(z),e=i().mark(W),r=i().mark(H),c=i().mark(G),u=i().mark(Y),d=i().mark(V),p=i().mark(q),f=i().mark(X),g=i().mark(at),v=i().mark(lt),m=i().mark(ut),y=i().mark(dt),b=i().mark(pt),w=i().mark(vt),x=i().mark(bt),A=i().mark(wt),_=i().mark(xt),k=i().mark(At),S=i().mark(kt),E=i().mark(Et),M=i().mark(Ct),T=i().mark(Rt),C=o.isNumeric,P=o.isArrayOfStrings,I=o.isArrayOfNumbers,R=o.createSequence,O=o.isSequence,L=o.isFunction,D=o.isLambda,F=o.isIterable,N=o.getFunctionArity,j=o.isDeepEqual,B=Lt(null);function z(e,r,n){var a,s,o,l;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:(s=n.lookup("__evaluate_entry"))&&s(e,r,n),t.t0=e.type,t.next="path"===t.t0?5:"binary"===t.t0?8:"unary"===t.t0?11:"name"===t.t0?14:"string"===t.t0||"number"===t.t0||"value"===t.t0?16:"wildcard"===t.t0?18:"descendant"===t.t0?20:"parent"===t.t0?22:"condition"===t.t0?24:"block"===t.t0?27:"bind"===t.t0?30:"regex"===t.t0?33:"function"===t.t0?35:"variable"===t.t0?38:"lambda"===t.t0?40:"partial"===t.t0?42:"apply"===t.t0?45:"transform"===t.t0?48:50;break;case 5:return t.delegateYield(W(e,r,n),"t1",6);case 6:return a=t.t1,t.abrupt("break",50);case 8:return t.delegateYield(q(e,r,n),"t2",9);case 9:return a=t.t2,t.abrupt("break",50);case 11:return t.delegateYield(X(e,r,n),"t3",12);case 12:return a=t.t3,t.abrupt("break",50);case 14:return a=$(e,r),t.abrupt("break",50);case 16:return a=K(e),t.abrupt("break",50);case 18:return a=Q(e,r),t.abrupt("break",50);case 20:return a=Z(e,r),t.abrupt("break",50);case 22:return a=n.lookup(e.slot.label),t.abrupt("break",50);case 24:return t.delegateYield(dt(e,r,n),"t4",25);case 25:return a=t.t4,t.abrupt("break",50);case 27:return t.delegateYield(pt(e,r,n),"t5",28);case 28:return a=t.t5,t.abrupt("break",50);case 30:return t.delegateYield(ut(e,r,n),"t6",31);case 31:return a=t.t6,t.abrupt("break",50);case 33:return a=ft(e),t.abrupt("break",50);case 35:return t.delegateYield(wt(e,r,n),"t7",36);case 36:return a=t.t7,t.abrupt("break",50);case 38:return a=gt(e,r,n),t.abrupt("break",50);case 40:return a=_t(e,r,n),t.abrupt("break",50);case 42:return t.delegateYield(kt(e,r,n),"t8",43);case 43:return a=t.t8,t.abrupt("break",50);case 45:return t.delegateYield(bt(e,r,n),"t9",46);case 46:return a=t.t9,t.abrupt("break",50);case 48:return a=mt(e,r,n),t.abrupt("break",50);case 50:if(!n.async||null!=a&&"function"==typeof a.then||(a=Promise.resolve(a)),!n.async||"function"!=typeof a.then||!e.nextFunction||"function"!=typeof a[e.nextFunction]){t.next=54;break}t.next=57;break;case 54:return t.next=56,a;case 56:a=t.sent;case 57:if(!Object.prototype.hasOwnProperty.call(e,"predicate")){t.next=65;break}o=0;case 59:if(!(o<e.predicate.length)){t.next=65;break}return t.delegateYield(V(e.predicate[o].expr,a,n),"t10",61);case 61:a=t.t10;case 62:o++,t.next=59;break;case 65:if("path"===e.type||!Object.prototype.hasOwnProperty.call(e,"group")){t.next=68;break}return t.delegateYield(lt(e.group,a,n),"t11",67);case 67:a=t.t11;case 68:return(l=n.lookup("__evaluate_exit"))&&l(e,r,n,a),a&&O(a)&&!a.tupleStream&&(e.keepArray&&(a.keepSingleton=!0),0===a.length?a=void 0:1===a.length&&(a=a.keepSingleton?a:a[0])),t.abrupt("return",a);case 72:case"end":return t.stop()}}),t)}function W(t,r,n){var a,s,o,l,h,c;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:a=Array.isArray(r)&&"variable"!==t.steps[0].type?r:R(r),o=!1,l=void 0,h=0;case 4:if(!(h<t.steps.length)){e.next=25;break}if((c=t.steps[h]).tuple&&(o=!0),0!==h||!c.consarray){e.next=12;break}return e.delegateYield(z(c,a,n),"t0",9);case 9:s=e.t0,e.next=19;break;case 12:if(!o){e.next=17;break}return e.delegateYield(Y(c,a,l,n),"t1",14);case 14:l=e.t1,e.next=19;break;case 17:return e.delegateYield(H(c,a,n,h===t.steps.length-1),"t2",18);case 18:s=e.t2;case 19:if(o||void 0!==s&&0!==s.length){e.next=21;break}return e.abrupt("break",25);case 21:void 0===c.focus&&(a=s);case 22:h++,e.next=4;break;case 25:if(o)if(t.tuple)s=l;else for(s=R(),h=0;h<l.length;h++)s.push(l[h]["@"]);if(t.keepSingletonArray&&(Array.isArray(s)&&s.cons&&!s.sequence&&(s=R(s)),s.keepSingleton=!0),!t.hasOwnProperty("group")){e.next=30;break}return e.delegateYield(lt(t.group,o?l:s,n),"t3",29);case 29:s=e.t3;case 30:return e.abrupt("return",s);case 31:case"end":return e.stop()}}),e)}function U(t,e){var r=Lt(t);for(var n in e)r.bind(n,e[n]);return r}function H(t,e,n,a){var s,o,l,h,c;return i().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if("sort"!==t.type){r.next=7;break}return r.delegateYield(vt(t,e,n),"t0",2);case 2:if(s=r.t0,!t.stages){r.next=6;break}return r.delegateYield(G(t.stages,s,n),"t1",5);case 5:s=r.t1;case 6:return r.abrupt("return",s);case 7:s=R(),o=0;case 9:if(!(o<e.length)){r.next=24;break}return r.delegateYield(z(t,e[o],n),"t2",11);case 11:if(l=r.t2,!t.stages){r.next=20;break}h=0;case 14:if(!(h<t.stages.length)){r.next=20;break}return r.delegateYield(V(t.stages[h].expr,l,n),"t3",16);case 16:l=r.t3;case 17:h++,r.next=14;break;case 20:void 0!==l&&s.push(l);case 21:o++,r.next=9;break;case 24:return c=R(),a&&1===s.length&&Array.isArray(s[0])&&!O(s[0])?c=s[0]:s.forEach((function(t){!Array.isArray(t)||t.cons?c.push(t):t.forEach((function(t){return c.push(t)}))})),r.abrupt("return",c);case 27:case"end":return r.stop()}}),r)}function G(t,e,r){var n,a,s,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:n=e,a=0;case 2:if(!(a<t.length)){i.next=15;break}s=t[a],i.t0=s.type,i.next="filter"===i.t0?7:"index"===i.t0?10:12;break;case 7:return i.delegateYield(V(s.expr,n,r),"t1",8);case 8:return n=i.t1,i.abrupt("break",12);case 10:for(o=0;o<n.length;o++)n[o][s.value]=o;return i.abrupt("break",12);case 12:a++,i.next=2;break;case 15:return i.abrupt("return",n);case 16:case"end":return i.stop()}}),c)}function Y(t,e,r,n){var a,s,o,l,h,c,d,p;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if("sort"!==t.type){i.next=15;break}if(!r){i.next=6;break}return i.delegateYield(vt(t,r,n),"t0",3);case 3:a=i.t0,i.next=11;break;case 6:return i.delegateYield(vt(t,e,n),"t1",7);case 7:for(s=i.t1,(a=R()).tupleStream=!0,o=0;o<s.length;o++)(l={"@":s[o]})[t.index]=o,a.push(l);case 11:if(!t.stages){i.next=14;break}return i.delegateYield(G(t.stages,a,n),"t2",13);case 13:a=i.t2;case 14:return i.abrupt("return",a);case 15:(a=R()).tupleStream=!0,h=n,void 0===r&&(r=e.map((function(t){return{"@":t}}))),c=0;case 20:if(!(c<r.length)){i.next=28;break}return h=U(n,r[c]),i.delegateYield(z(t,r[c]["@"],h),"t3",23);case 23:if(void 0!==(d=i.t3))for(Array.isArray(d)||(d=[d]),p=0;p<d.length;p++)l={},Object.assign(l,r[c]),d.tupleStream?Object.assign(l,d[p]):(t.focus?(l[t.focus]=d[p],l["@"]=r[c]["@"]):l["@"]=d[p],t.index&&(l[t.index]=p),t.ancestor&&(l[t.ancestor.label]=r[c]["@"])),a.push(l);case 25:c++,i.next=20;break;case 28:if(!t.stages){i.next=31;break}return i.delegateYield(G(t.stages,a,n),"t4",30);case 30:a=i.t4;case 31:return i.abrupt("return",a);case 32:case"end":return i.stop()}}),u)}function V(t,e,r){var n,a,o,l,h,c;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(n=R(),e&&e.tupleStream&&(n.tupleStream=!0),Array.isArray(e)||(e=R(e)),"number"!==t.type){i.next=10;break}(a=Math.floor(t.value))<0&&(a=e.length+a),void 0!==(o=e[a])&&(Array.isArray(o)?n=o:n.push(o)),i.next=23;break;case 10:a=0;case 11:if(!(a<e.length)){i.next=23;break}return o=e[a],l=o,h=r,e.tupleStream&&(l=o["@"],h=U(r,o)),i.delegateYield(z(t,l,h),"t0",17);case 17:c=i.t0,C(c)&&(c=[c]),I(c)?c.forEach((function(t){var r=Math.floor(t);r<0&&(r=e.length+r),r===a&&n.push(o)})):s.boolean(c)&&n.push(o);case 20:a++,i.next=11;break;case 23:return i.abrupt("return",n);case 24:case"end":return i.stop()}}),d)}function q(t,e,r){var n,a,s,o,l;return i().wrap((function(h){for(;;)switch(h.prev=h.next){case 0:return h.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(a=h.t0,s=t.value,o=i().mark((function n(){return i().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n.abrupt("return",n.t0);case 2:case"end":return n.stop()}}),n)})),"and"!==s&&"or"!==s){h.next=15;break}return h.prev=5,h.delegateYield(at(a,o,s),"t1",7);case 7:return h.abrupt("return",h.t1);case 10:throw h.prev=10,h.t2=h.catch(5),h.t2.position=t.position,h.t2.token=s,h.t2;case 15:return h.delegateYield(o(),"t3",16);case 16:l=h.t3,h.prev=17,h.t4=s,h.next="+"===h.t4||"-"===h.t4||"*"===h.t4||"/"===h.t4||"%"===h.t4?21:"="===h.t4||"!="===h.t4?23:"<"===h.t4||"<="===h.t4||">"===h.t4||">="===h.t4?25:"&"===h.t4?27:".."===h.t4?29:"in"===h.t4?31:33;break;case 21:return n=et(a,l,s),h.abrupt("break",33);case 23:return n=rt(a,l,s),h.abrupt("break",33);case 25:return n=nt(a,l,s),h.abrupt("break",33);case 27:return n=ot(a,l),h.abrupt("break",33);case 29:return n=ct(a,l),h.abrupt("break",33);case 31:return n=it(a,l),h.abrupt("break",33);case 33:h.next=40;break;case 35:throw h.prev=35,h.t5=h.catch(17),h.t5.position=t.position,h.t5.token=s,h.t5;case 40:return h.abrupt("return",n);case 41:case"end":return h.stop()}}),p,null,[[5,10],[17,35]])}function X(t,e,r){var n,a,o,l;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:i.t0=t.value,i.next="-"===i.t0?3:"["===i.t0?15:"{"===i.t0?27:30;break;case 3:return i.delegateYield(z(t.expression,e,r),"t1",4);case 4:if(void 0!==(n=i.t1)){i.next=9;break}n=void 0,i.next=14;break;case 9:if(!C(n)){i.next=13;break}n=-n,i.next=14;break;case 13:throw{code:"D1002",stack:(new Error).stack,position:t.position,token:t.value,value:n};case 14:return i.abrupt("break",30);case 15:n=[],a=0;case 17:if(!(a<t.expressions.length)){i.next=25;break}return o=t.expressions[a],i.delegateYield(z(o,e,r),"t2",20);case 20:void 0!==(l=i.t2)&&("["===o.value?n.push(l):n=s.append(n,l));case 22:a++,i.next=17;break;case 25:return t.consarray&&Object.defineProperty(n,"cons",{enumerable:!1,configurable:!1,value:!0}),i.abrupt("break",30);case 27:return i.delegateYield(lt(t,e,r),"t3",28);case 28:return n=i.t3,i.abrupt("break",30);case 30:return i.abrupt("return",n);case 31:case"end":return i.stop()}}),f)}function $(t,e,r){return s.lookup(e,t.value)}function K(t){return t.value}function Q(t,e){var r=R();return Array.isArray(e)&&e.outerWrapper&&e.length>0&&(e=e[0]),null!==e&&"object"===n(e)&&Object.keys(e).forEach((function(t){var n=e[t];Array.isArray(n)?(n=J(n),r=s.append(r,n)):r.push(n)})),r}function J(t,e){return void 0===e&&(e=[]),Array.isArray(t)?t.forEach((function(t){J(t,e)})):e.push(t),e}function Z(t,e){var r,n=R();return void 0!==e&&(tt(e,n),r=1===n.length?n[0]:n),r}function tt(t,e){Array.isArray(t)||e.push(t),Array.isArray(t)?t.forEach((function(t){tt(t,e)})):null!==t&&"object"===n(t)&&Object.keys(t).forEach((function(r){tt(t[r],e)}))}function et(t,e,r){var n;if(void 0!==t&&!C(t))throw{code:"T2001",stack:(new Error).stack,value:t};if(void 0!==e&&!C(e))throw{code:"T2002",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return n;switch(r){case"+":n=t+e;break;case"-":n=t-e;break;case"*":n=t*e;break;case"/":n=t/e;break;case"%":n=t%e}return n}function rt(t,e,r){var i,a=n(t),s=n(e);if("undefined"===a||"undefined"===s)return!1;switch(r){case"=":i=j(t,e);break;case"!=":i=!j(t,e)}return i}function nt(t,e,r){var i,a=n(t),s=n(e);if("undefined"!==a&&"string"!==a&&"number"!==a||"undefined"!==s&&"string"!==s&&"number"!==s)throw{code:"T2010",stack:(new Error).stack,value:"string"!==a&&"number"!==a?t:e};if("undefined"!==a&&"undefined"!==s){if(a!==s)throw{code:"T2009",stack:(new Error).stack,value:t,value2:e};switch(r){case"<":i=t<e;break;case"<=":i=t<=e;break;case">":i=t>e;break;case">=":i=t>=e}return i}}function it(t,e){var r=!1;if(void 0===t||void 0===e)return!1;Array.isArray(e)||(e=[e]);for(var n=0;n<e.length;n++)if(e[n]===t){r=!0;break}return r}function at(t,e,r){var n,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:a=st(t),i.t0=r,i.next="and"===i.t0?4:"or"===i.t0?12:20;break;case 4:if(i.t1=a,!i.t1){i.next=10;break}return i.t2=st,i.delegateYield(e(),"t3",8);case 8:i.t4=i.t3,i.t1=(0,i.t2)(i.t4);case 10:return n=i.t1,i.abrupt("break",20);case 12:if(i.t5=a,i.t5){i.next=18;break}return i.t6=st,i.delegateYield(e(),"t7",16);case 16:i.t8=i.t7,i.t5=(0,i.t6)(i.t8);case 18:return n=i.t5,i.abrupt("break",20);case 20:return i.abrupt("return",n);case 21:case"end":return i.stop()}}),g)}function st(t){var e=s.boolean(t);return void 0!==e&&e}function ot(t,e){var r="",n="";return void 0!==t&&(r=s.string(t)),void 0!==e&&(n=s.string(e)),r.concat(n)}function lt(t,e,r){var n,a,o,l,h,c,u,d,p,f,g,m,y;return i().wrap((function(v){for(;;)switch(v.prev=v.next){case 0:n={},a={},o=!(!e||!e.tupleStream),Array.isArray(e)||(e=R(e)),0===e.length&&e.push(void 0),l=0;case 6:if(!(l<e.length)){v.next=31;break}h=e[l],c=o?U(r,h):r,u=0;case 10:if(!(u<t.lhs.length)){v.next=28;break}return d=t.lhs[u],v.delegateYield(z(d[0],o?h["@"]:h,c),"t0",13);case 13:if("string"==typeof(p=v.t0)||void 0===p){v.next=16;break}throw{code:"T1003",stack:(new Error).stack,position:t.position,value:p};case 16:if(void 0===p){v.next=25;break}if(f={data:h,exprIndex:u},!a.hasOwnProperty(p)){v.next=24;break}if(a[p].exprIndex===u){v.next=21;break}throw{code:"D1009",stack:(new Error).stack,position:t.position,value:p};case 21:a[p].data=s.append(a[p].data,h),v.next=25;break;case 24:a[p]=f;case 25:u++,v.next=10;break;case 28:l++,v.next=6;break;case 31:v.t1=i().keys(a);case 32:if((v.t2=v.t1()).done){v.next=43;break}return p=v.t2.value,f=a[p],g=f.data,c=r,o&&(m=ht(f.data),g=m["@"],delete m["@"],c=U(r,m)),v.delegateYield(z(t.lhs[f.exprIndex][1],g,c),"t3",39);case 39:void 0!==(y=v.t3)&&(n[p]=y),v.next=32;break;case 43:return v.abrupt("return",n);case 44:case"end":return v.stop()}}),v)}function ht(t){if(!Array.isArray(t))return t;var e={};Object.assign(e,t[0]);for(var r=1;r<t.length;r++)for(var n in t[r])e[n]=s.append(e[n],t[r][n]);return e}function ct(t,e){var r;if(void 0!==t&&!Number.isInteger(t))throw{code:"T2003",stack:(new Error).stack,value:t};if(void 0!==e&&!Number.isInteger(e))throw{code:"T2004",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return r;if(t>e)return r;var n=e-t+1;if(n>1e7)throw{code:"D2014",stack:(new Error).stack,value:n};r=new Array(n);for(var i=t,a=0;i<=e;i++,a++)r[a]=i;return r.sequence=!0,r}function ut(t,e,r){var n;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n=i.t0,r.bind(t.lhs.value,n),i.abrupt("return",n);case 4:case"end":return i.stop()}}),m)}function dt(t,e,r){var n,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(z(t.condition,e,r),"t0",1);case 1:if(a=i.t0,!s.boolean(a)){i.next=7;break}return i.delegateYield(z(t.then,e,r),"t1",4);case 4:n=i.t1,i.next=10;break;case 7:if(void 0===t.else){i.next=10;break}return i.delegateYield(z(t.else,e,r),"t2",9);case 9:n=i.t2;case 10:return i.abrupt("return",n);case 11:case"end":return i.stop()}}),y)}function pt(t,e,r){var n,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:a=Lt(r),s=0;case 2:if(!(s<t.expressions.length)){i.next=8;break}return i.delegateYield(z(t.expressions[s],e,a),"t0",4);case 4:n=i.t0;case 5:s++,i.next=2;break;case 8:return i.abrupt("return",n);case 9:case"end":return i.stop()}}),b)}function ft(t){var e=new Nt.RegexEngine(t.value),r=function r(n,i){var a;e.lastIndex=i||0;var s=e.exec(n);if(null!==s){if(a={match:s[0],start:s.index,end:s.index+s[0].length,groups:[]},s.length>1)for(var o=1;o<s.length;o++)a.groups.push(s[o]);a.next=function(){if(!(e.lastIndex>=n.length)){var i=r(n,e.lastIndex);if(i&&""===i.match)throw{code:"D1004",stack:(new Error).stack,position:t.position,value:t.value.source};return i}}}return a};return r}function gt(t,e,r){return""===t.value?e&&e.outerWrapper?e[0]:e:r.lookup(t.value)}function vt(t,e,r){var a,o,l,h,c;return i().wrap((function(u){for(;;)switch(u.prev=u.next){case 0:return o=e,l=!!e.tupleStream,h=i().mark((function e(a,s){var o,h,c,u,d,p,f,g,v;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:o=0,h=0;case 2:if(!(0===o&&h<t.terms.length)){e.next=35;break}return c=t.terms[h],u=a,d=r,l&&(u=a["@"],d=U(r,a)),e.delegateYield(z(c.expression,u,d),"t0",8);case 8:return p=e.t0,u=s,d=r,l&&(u=s["@"],d=U(r,s)),e.delegateYield(z(c.expression,u,d),"t1",13);case 13:if(f=e.t1,g=n(p),v=n(f),"undefined"!==g){e.next=19;break}return o="undefined"===v?0:1,e.abrupt("continue",32);case 19:if("undefined"!==v){e.next=22;break}return o=-1,e.abrupt("continue",32);case 22:if(!("string"!==g&&"number"!==g||"string"!==v&&"number"!==v)){e.next=24;break}throw{code:"T2008",stack:(new Error).stack,position:t.position,value:"string"!==g&&"number"!==g?p:f};case 24:if(g===v){e.next=26;break}throw{code:"T2007",stack:(new Error).stack,position:t.position,value:p,value2:f};case 26:if(p!==f){e.next=30;break}return e.abrupt("continue",32);case 30:o=p<f?-1:1;case 31:!0===c.descending&&(o=-o);case 32:h++,e.next=2;break;case 35:return e.abrupt("return",1===o);case 36:case"end":return e.stop()}}),e)})),c={environment:r,input:e},u.delegateYield(s.sort.apply(c,[o,h]),"t0",5);case 5:return a=u.t0,u.abrupt("return",a);case 7:case"end":return u.stop()}}),w)}function mt(t,e,r){var a=i().mark((function e(a){var s,o,l,h,c,u,d,p,f,g,v;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==a){e.next=2;break}return e.abrupt("return",void 0);case 2:if(s=r.lookup("clone"),L(s)){e.next=5;break}throw{code:"T2013",stack:(new Error).stack,position:t.position};case 5:return e.delegateYield(xt(s,[a],null,r),"t0",6);case 6:return o=e.t0,e.delegateYield(z(t.pattern,o,r),"t1",8);case 8:if(void 0===(l=e.t1)){e.next=35;break}Array.isArray(l)||(l=[l]),h=0;case 12:if(!(h<l.length)){e.next=35;break}if(!(c=l[h])||!(c.isPrototypeOf(o)||c instanceof Object.constructor)){e.next=16;break}throw{code:"D1010",stack:(new Error).stack,position:t.position};case 16:return e.delegateYield(z(t.update,c,r),"t2",17);case 17:if(u=e.t2,"undefined"===(d=n(u))){e.next=23;break}if("object"===d&&null!==u&&!Array.isArray(u)){e.next=22;break}throw{code:"T2011",stack:(new Error).stack,position:t.update.position,value:u};case 22:for(p in u)c[p]=u[p];case 23:if(void 0===t.delete){e.next=32;break}return e.delegateYield(z(t.delete,c,r),"t3",25);case 25:if(void 0===(f=e.t3)){e.next=32;break}if(g=f,Array.isArray(f)||(f=[f]),P(f)){e.next=31;break}throw{code:"T2012",stack:(new Error).stack,position:t.delete.position,value:g};case 31:for(v=0;v<f.length;v++)"object"===n(c)&&null!==c&&delete c[f[v]];case 32:h++,e.next=12;break;case 35:return e.abrupt("return",o);case 36:case"end":return e.stop()}}),e)}));return It(a,"<(oa):o>")}var yt=l("function($f, $g) { function($x){ $g($f($x)) } }");function bt(t,e,r){var n,a,s,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(a=i.t0,"function"!==t.rhs.type){i.next=7;break}return i.delegateYield(wt(t.rhs,e,r,{context:a}),"t1",4);case 4:n=i.t1,i.next=20;break;case 7:return i.delegateYield(z(t.rhs,e,r),"t2",8);case 8:if(s=i.t2,L(s)){i.next=11;break}throw{code:"T2006",stack:(new Error).stack,position:t.position,value:s};case 11:if(!L(a)){i.next=18;break}return i.delegateYield(z(yt,null,r),"t3",13);case 13:return o=i.t3,i.delegateYield(xt(o,[a,s],null,r),"t4",15);case 15:n=i.t4,i.next=20;break;case 18:return i.delegateYield(xt(s,[a],null,r),"t5",19);case 19:n=i.t5;case 20:return i.abrupt("return",n);case 21:case"end":return i.stop()}}),x)}function wt(t,e,r,a){var s,o,l,h,c,u;return i().wrap((function(d){for(;;)switch(d.prev=d.next){case 0:return d.delegateYield(z(t.procedure,e,r),"t0",1);case 1:if(void 0!==(o=d.t0)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){d.next=4;break}throw{code:"T1005",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 4:l=[],void 0!==a&&l.push(a.context),h=i().mark((function n(){var a,s;return i().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.arguments[c],e,r),"t0",1);case 1:a=n.t0,L(a)?(s=i().mark((function t(){var e,n,s,o=arguments;return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(e=o.length,n=new Array(e),s=0;s<e;s++)n[s]=o[s];return t.delegateYield(xt(a,n,null,r),"t0",2);case 2:return t.abrupt("return",t.t0);case 3:case"end":return t.stop()}}),t)})),s.arity=N(a),l.push(s)):l.push(a);case 3:case"end":return n.stop()}}),n)})),c=0;case 8:if(!(c<t.arguments.length)){d.next=13;break}return d.delegateYield(h(),"t1",10);case 10:c++,d.next=8;break;case 13:return u="path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value,d.prev=14,"object"===n(o)&&(o.token=u,o.position=t.position),d.delegateYield(xt(o,l,e,r),"t2",17);case 17:s=d.t2,d.next=25;break;case 20:throw d.prev=20,d.t3=d.catch(14),d.t3.position||(d.t3.position=t.position),d.t3.token||(d.t3.token=u),d.t3;case 25:return d.abrupt("return",s);case 26:case"end":return d.stop()}}),A,null,[[14,20]])}function xt(t,e,r,n){var a,s,o,l;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.delegateYield(At(t,e,r,n),"t0",1);case 1:a=i.t0;case 2:if(!D(a)||!0!==a.thunk){i.next=21;break}return i.delegateYield(z(a.body.procedure,a.input,a.environment),"t1",4);case 4:s=i.t1,"variable"===a.body.procedure.type&&(s.token=a.body.procedure.value),s.position=a.body.procedure.position,o=[],l=0;case 9:if(!(l<a.body.arguments.length)){i.next=17;break}return i.t2=o,i.delegateYield(z(a.body.arguments[l],a.input,a.environment),"t3",12);case 12:i.t4=i.t3,i.t2.push.call(i.t2,i.t4);case 14:l++,i.next=9;break;case 17:return i.delegateYield(At(s,o,r,n),"t5",18);case 18:a=i.t5,i.next=2;break;case 21:return i.abrupt("return",a);case 22:case"end":return i.stop()}}),_)}function At(t,e,r,n){var a,s,o;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(i.prev=0,s=e,t&&(s=St(t.signature,e,r)),!D(t)){i.next=8;break}return i.delegateYield(Et(t,s),"t0",5);case 5:a=i.t0,i.next=24;break;case 8:if(!t||!0!==t._jsonata_function){i.next=16;break}if(o={environment:n,input:r},a=t.implementation.apply(o,s),!F(a)){i.next=14;break}return i.delegateYield(a,"t1",13);case 13:a=i.t1;case 14:i.next=24;break;case 16:if("function"!=typeof t){i.next=23;break}if(a=t.apply(r,s),!F(a)){i.next=21;break}return i.delegateYield(a,"t2",20);case 20:a=i.t2;case 21:i.next=24;break;case 23:throw{code:"T1006",stack:(new Error).stack};case 24:i.next=30;break;case 26:throw i.prev=26,i.t3=i.catch(0),t&&(void 0===i.t3.token&&void 0!==t.token&&(i.t3.token=t.token),i.t3.position=t.position||i.t3.position),i.t3;case 30:return i.abrupt("return",a);case 31:case"end":return i.stop()}}),k,null,[[0,26]])}function _t(t,e,r){var n={_jsonata_lambda:!0,input:e,environment:r,arguments:t.arguments,signature:t.signature,body:t.body};return!0===t.thunk&&(n.thunk=!0),n.apply=i().mark((function t(r,a){return i().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.delegateYield(xt(n,a,e,r.environment),"t0",1);case 1:return t.abrupt("return",t.t0);case 2:case"end":return t.stop()}}),t)})),n}function kt(t,e,r){var n,a,s,o,l;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:a=[],s=0;case 2:if(!(s<t.arguments.length)){i.next=15;break}if("operator"!==(o=t.arguments[s]).type||"?"!==o.value){i.next=8;break}a.push(o),i.next=12;break;case 8:return i.t0=a,i.delegateYield(z(o,e,r),"t1",10);case 10:i.t2=i.t1,i.t0.push.call(i.t0,i.t2);case 12:s++,i.next=2;break;case 15:return i.delegateYield(z(t.procedure,e,r),"t3",16);case 16:if(void 0!==(l=i.t3)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){i.next=19;break}throw{code:"T1007",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 19:if(!D(l)){i.next=23;break}n=Mt(l,a),i.next=32;break;case 23:if(!l||!0!==l._jsonata_function){i.next=27;break}n=Tt(l.implementation,a),i.next=32;break;case 27:if("function"!=typeof l){i.next=31;break}n=Tt(l,a),i.next=32;break;case 31:throw{code:"T1008",stack:(new Error).stack,position:t.position,token:"path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value};case 32:return i.abrupt("return",n);case 33:case"end":return i.stop()}}),S)}function St(t,e,r){return void 0===t?e:t.validate(e,r)}function Et(t,e){var r,n;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(n=Lt(t.environment),t.arguments.forEach((function(t,r){n.bind(t.value,e[r])})),"function"!=typeof t.body){i.next=7;break}return i.delegateYield(Ct(t.body,n),"t0",4);case 4:r=i.t0,i.next=9;break;case 7:return i.delegateYield(z(t.body,t.input,n),"t1",8);case 8:r=i.t1;case 9:return i.abrupt("return",r);case 10:case"end":return i.stop()}}),E)}function Mt(t,e){var r=Lt(t.environment),n=[];return t.arguments.forEach((function(t,i){var a=e[i];a&&"operator"===a.type&&"?"===a.value?n.push(t):r.bind(t.value,a)})),{_jsonata_lambda:!0,input:t.input,environment:r,arguments:n,body:t.body}}function Tt(t,e){var r=Pt(t),n="function("+(r=r.map((function(t){return"$"+t.trim()}))).join(", ")+"){ _ }",i=l(n);return i.body=t,Mt(i,e)}function Ct(t,e){var r,n,a,s;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(r=Pt(t),n=r.map((function(t){return e.lookup(t.trim())})),a={environment:e},s=t.apply(a,n),!F(s)){i.next=7;break}return i.delegateYield(s,"t0",6);case 6:s=i.t0;case 7:return i.abrupt("return",s);case 8:case"end":return i.stop()}}),M)}function Pt(t){var e=t.toString();return/\(([^)]*)\)/.exec(e)[1].split(",")}function It(t,e){var r={_jsonata_function:!0,implementation:t};return void 0!==e&&(r.signature=h(e)),r}function Rt(t,e){var r,n,a;return i().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=this.input,void 0!==e&&(r=e,Array.isArray(r)&&!O(r)&&((r=R(r)).outerWrapper=!0)),i.prev=4,n=l(t,!1),i.next=12;break;case 8:throw i.prev=8,i.t0=i.catch(4),Ft(i.t0),{stack:(new Error).stack,code:"D3120",value:i.t0.message,error:i.t0};case 12:return i.prev=12,i.delegateYield(z(n,r,this.environment),"t1",14);case 14:a=i.t1,i.next=21;break;case 17:throw i.prev=17,i.t2=i.catch(12),Ft(i.t2),{stack:(new Error).stack,code:"D3121",value:i.t2.message,error:i.t2};case 21:return i.abrupt("return",a);case 22:case"end":return i.stop()}}),T,this,[[4,8],[12,17]])}function Ot(t){if(void 0!==t)return JSON.parse(s.string(t))}function Lt(t){var e={};return{bind:function(t,r){e[t]=r},lookup:function(r){var n;return e.hasOwnProperty(r)?n=e[r]:t&&(n=t.lookup(r)),n},timestamp:t?t.timestamp:null,async:!!t&&t.async,global:t?t.global:{ancestry:[null]}}}B.bind("sum",It(s.sum,"<a<n>:n>")),B.bind("count",It(s.count,"<a:n>")),B.bind("max",It(s.max,"<a<n>:n>")),B.bind("min",It(s.min,"<a<n>:n>")),B.bind("average",It(s.average,"<a<n>:n>")),B.bind("string",It(s.string,"<x-b?:s>")),B.bind("substring",It(s.substring,"<s-nn?:s>")),B.bind("substringBefore",It(s.substringBefore,"<s-s:s>")),B.bind("substringAfter",It(s.substringAfter,"<s-s:s>")),B.bind("lowercase",It(s.lowercase,"<s-:s>")),B.bind("uppercase",It(s.uppercase,"<s-:s>")),B.bind("length",It(s.length,"<s-:n>")),B.bind("trim",It(s.trim,"<s-:s>")),B.bind("pad",It(s.pad,"<s-ns?:s>")),B.bind("match",It(s.match,"<s-f<s:o>n?:a<o>>")),B.bind("contains",It(s.contains,"<s-(sf):b>")),B.bind("replace",It(s.replace,"<s-(sf)(sf)n?:s>")),B.bind("split",It(s.split,"<s-(sf)n?:a<s>>")),B.bind("join",It(s.join,"<a<s>s?:s>")),B.bind("formatNumber",It(s.formatNumber,"<n-so?:s>")),B.bind("formatBase",It(s.formatBase,"<n-n?:s>")),B.bind("formatInteger",It(a.formatInteger,"<n-s:s>")),B.bind("parseInteger",It(a.parseInteger,"<s-s:n>")),B.bind("number",It(s.number,"<(nsb)-:n>")),B.bind("floor",It(s.floor,"<n-:n>")),B.bind("ceil",It(s.ceil,"<n-:n>")),B.bind("round",It(s.round,"<n-n?:n>")),B.bind("abs",It(s.abs,"<n-:n>")),B.bind("sqrt",It(s.sqrt,"<n-:n>")),B.bind("power",It(s.power,"<n-n:n>")),B.bind("random",It(s.random,"<:n>")),B.bind("boolean",It(s.boolean,"<x-:b>")),B.bind("not",It(s.not,"<x-:b>")),B.bind("map",It(s.map,"<af>")),B.bind("zip",It(s.zip,"<a+>")),B.bind("filter",It(s.filter,"<af>")),B.bind("single",It(s.single,"<af?>")),B.bind("reduce",It(s.foldLeft,"<afj?:j>")),B.bind("sift",It(s.sift,"<o-f?:o>")),B.bind("keys",It(s.keys,"<x-:a<s>>")),B.bind("lookup",It(s.lookup,"<x-s:x>")),B.bind("append",It(s.append,"<xx:a>")),B.bind("exists",It(s.exists,"<x:b>")),B.bind("spread",It(s.spread,"<x-:a<o>>")),B.bind("merge",It(s.merge,"<a<o>:o>")),B.bind("reverse",It(s.reverse,"<a:a>")),B.bind("each",It(s.each,"<o-f:a>")),B.bind("error",It(s.error,"<s?:x>")),B.bind("assert",It(s.assert,"<bs?:x>")),B.bind("type",It(s.type,"<x:s>")),B.bind("sort",It(s.sort,"<af?:a>")),B.bind("shuffle",It(s.shuffle,"<a:a>")),B.bind("distinct",It(s.distinct,"<x:x>")),B.bind("base64encode",It(s.base64encode,"<s-:s>")),B.bind("base64decode",It(s.base64decode,"<s-:s>")),B.bind("encodeUrlComponent",It(s.encodeUrlComponent,"<s-:s>")),B.bind("encodeUrl",It(s.encodeUrl,"<s-:s>")),B.bind("decodeUrlComponent",It(s.decodeUrlComponent,"<s-:s>")),B.bind("decodeUrl",It(s.decodeUrl,"<s-:s>")),B.bind("eval",It(Rt,"<sx?:x>")),B.bind("toMillis",It(a.toMillis,"<s-s?:n>")),B.bind("fromMillis",It(a.fromMillis,"<n-s?s?:s>")),B.bind("clone",It(Ot,"<(oa)-:o>"));var Dt={S0101:"String literal must be terminated by a matching quote",S0102:"Number out of range: {{token}}",S0103:"Unsupported escape sequence: \\{{token}}",S0104:"The escape sequence \\u must be followed by 4 hex digits",S0105:"Quoted property name must be terminated with a backquote (`)",S0106:"Comment has no closing tag",S0201:"Syntax error: {{token}}",S0202:"Expected {{value}}, got {{token}}",S0203:"Expected {{value}} before end of expression",S0204:"Unknown operator: {{token}}",S0205:"Unexpected token: {{token}}",S0206:"Unknown expression type: {{token}}",S0207:"Unexpected end of expression",S0208:"Parameter {{value}} of function definition must be a variable name (start with $)",S0209:"A predicate cannot follow a grouping expression in a step",S0210:"Each step can only have one grouping expression",S0211:"The symbol {{token}} cannot be used as a unary operator",S0212:"The left side of := must be a variable name (start with $)",S0213:"The literal value {{value}} cannot be used as a step within a path expression",S0214:"The right side of {{token}} must be a variable name (start with $)",S0215:"A context variable binding must precede any predicates on a step",S0216:"A context variable binding must precede the 'order-by' clause on a step",S0217:"The object representing the 'parent' cannot be derived from this expression",S0301:"Empty regular expressions are not allowed",S0302:"No terminating / in regular expression",S0402:"Choice groups containing parameterized types are not supported",S0401:"Type parameters can only be applied to functions and arrays",S0500:"Attempted to evaluate an expression containing syntax error(s)",T0410:"Argument {{index}} of function {{token}} does not match function signature",T0411:"Context value is not a compatible type with argument {{index}} of function {{token}}",T0412:"Argument {{index}} of function {{token}} must be an array of {{type}}",D1001:"Number out of range: {{value}}",D1002:"Cannot negate a non-numeric value: {{value}}",T1003:"Key in object structure must evaluate to a string; got: {{value}}",D1004:"Regular expression matches zero length string",T1005:"Attempted to invoke a non-function. Did you mean ${{{token}}}?",T1006:"Attempted to invoke a non-function",T1007:"Attempted to partially apply a non-function. Did you mean ${{{token}}}?",T1008:"Attempted to partially apply a non-function",D1009:"Multiple key definitions evaluate to same key: {{value}}",D1010:"Attempted to access the Javascript object prototype",T1010:"The matcher function argument passed to function {{token}} does not return the correct object structure",T2001:"The left side of the {{token}} operator must evaluate to a number",T2002:"The right side of the {{token}} operator must evaluate to a number",T2003:"The left side of the range operator (..) must evaluate to an integer",T2004:"The right side of the range operator (..) must evaluate to an integer",D2005:"The left side of := must be a variable name (start with $)",T2006:"The right side of the function application operator ~> must be a function",T2007:"Type mismatch when comparing values {{value}} and {{value2}} in order-by clause",T2008:"The expressions within an order-by clause must evaluate to numeric or string values",T2009:"The values {{value}} and {{value2}} either side of operator {{token}} must be of the same data type",T2010:"The expressions either side of operator {{token}} must evaluate to numeric or string values",T2011:"The insert/update clause of the transform expression must evaluate to an object: {{value}}",T2012:"The delete clause of the transform expression must evaluate to a string or array of strings: {{value}}",T2013:"The transform expression clones the input object using the $clone() function. This has been overridden in the current scope by a non-function.",D2014:"The size of the sequence allocated by the range operator (..) must not exceed 1e6. Attempted to allocate {{value}}.",D3001:"Attempting to invoke string function on Infinity or NaN",D3010:"Second argument of replace function cannot be an empty string",D3011:"Fourth argument of replace function must evaluate to a positive number",D3012:"Attempted to replace a matched string with a non-string value",D3020:"Third argument of split function must evaluate to a positive number",D3030:"Unable to cast value to a number: {{value}}",D3040:"Third argument of match function must evaluate to a positive number",D3050:"The second argument of reduce function must be a function with at least two arguments",D3060:"The sqrt function cannot be applied to a negative number: {{value}}",D3061:"The power function has resulted in a value that cannot be represented as a JSON number: base={{value}}, exponent={{exp}}",D3070:"The single argument form of the sort function can only be applied to an array of strings or an array of numbers. Use the second argument to specify a comparison function",D3080:"The picture string must only contain a maximum of two sub-pictures",D3081:"The sub-picture must not contain more than one instance of the 'decimal-separator' character",D3082:"The sub-picture must not contain more than one instance of the 'percent' character",D3083:"The sub-picture must not contain more than one instance of the 'per-mille' character",D3084:"The sub-picture must not contain both a 'percent' and a 'per-mille' character",D3085:"The mantissa part of a sub-picture must contain at least one character that is either an 'optional digit character' or a member of the 'decimal digit family'",D3086:"The sub-picture must not contain a passive character that is preceded by an active character and that is followed by another active character",D3087:"The sub-picture must not contain a 'grouping-separator' character that appears adjacent to a 'decimal-separator' character",D3088:"The sub-picture must not contain a 'grouping-separator' at the end of the integer part",D3089:"The sub-picture must not contain two adjacent instances of the 'grouping-separator' character",D3090:"The integer part of the sub-picture must not contain a member of the 'decimal digit family' that is followed by an instance of the 'optional digit character'",D3091:"The fractional part of the sub-picture must not contain an instance of the 'optional digit character' that is followed by a member of the 'decimal digit family'",D3092:"A sub-picture that contains a 'percent' or 'per-mille' character must not contain a character treated as an 'exponent-separator'",D3093:"The exponent part of the sub-picture must comprise only of one or more characters that are members of the 'decimal digit family'",D3100:"The radix of the formatBase function must be between 2 and 36. It was given {{value}}",D3110:"The argument of the toMillis function must be an ISO 8601 formatted timestamp. Given {{value}}",D3120:"Syntax error in expression passed to function eval: {{value}}",D3121:"Dynamic error evaluating the expression passed to function eval: {{value}}",D3130:"Formatting or parsing an integer as a sequence starting with {{value}} is not supported by this implementation",D3131:"In a decimal digit pattern, all digits must be from the same decimal group",D3132:"Unknown component specifier {{value}} in date/time picture string",D3133:"The 'name' modifier can only be applied to months and days in the date/time picture string, not {{value}}",D3134:"The timezone integer format specifier cannot have more than four digits",D3135:"No matching closing bracket ']' in date/time picture string",D3136:"The date/time picture string is missing specifiers required to parse the timestamp",D3137:"{{{message}}}",D3138:"The $single() function expected exactly 1 matching result. Instead it matched more.",D3139:"The $single() function expected exactly 1 matching result. Instead it matched 0.",D3140:"Malformed URL passed to ${{{functionName}}}(): {{value}}",D3141:"{{{message}}}"};function Ft(t){var e=Dt[t.code];if(void 0!==e){var r=e.replace(/\{\{\{([^}]+)}}}/g,(function(){return t[arguments[1]]}));r=r.replace(/\{\{([^}]+)}}/g,(function(){return JSON.stringify(t[arguments[1]])})),t.message=r}}function Nt(t,e){var r,n;try{r=l(t,e&&e.recover),n=r.errors,delete r.errors}catch(t){throw Ft(t),t}var i=Lt(B),s=new Date;return i.bind("now",It((function(t,e){return a.fromMillis(s.getTime(),t,e)}),"<s?s?:s>")),i.bind("millis",It((function(){return s.getTime()}),"<:n>")),e&&e.RegexEngine?Nt.RegexEngine=e.RegexEngine:Nt.RegexEngine=RegExp,{evaluate:function(t,e,a){if(void 0!==n){var o={code:"S0500",position:0};throw Ft(o),o}var l,h,c;if(void 0!==e)for(var u in l=Lt(i),e)l.bind(u,e[u]);else l=i;if(l.bind("$",t),s=new Date,l.timestamp=s,Array.isArray(t)&&!O(t)&&((t=R(t)).outerWrapper=!0),"function"==typeof a){l.async=!0;var d=function(t){Ft(t),a(t,null)},p=function t(e){(h=c.next(e)).done?a(null,h.value):h.value.then(t).catch(d)};c=z(r,t,l),(h=c.next()).value.then(p).catch(d)}else try{for(c=z(r,t,l),h=c.next();!h.done;)h=c.next(h.value);return h.value}catch(o){throw Ft(o),o}},assign:function(t,e){i.bind(t,e)},registerFunction:function(t,e,r){var n=It(e,r);i.bind(t,n)},ast:function(){return r},errors:function(){return n}}}return Nt.parser=l,Nt}();e.exports=c},{"./datetime":1,"./functions":2,"./parser":4,"./signature":5,"./utils":6}],4:[function(t,e,r){var n=t("./signature"),i=function(){var t={".":75,"[":80,"]":0,"{":70,"}":0,"(":80,")":0,",":0,"@":80,"#":80,";":80,":":80,"?":20,"+":50,"-":50,"*":60,"/":60,"%":60,"|":20,"=":40,"<":40,">":40,"^":40,"**":60,"..":20,":=":10,"!=":40,"<=":40,">=":40,"~>":40,and:30,or:25,in:40,"&":50,"!":0,"~":0},e={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"},r=function(r){var n=0,i=r.length,a=function(t,e){return{type:t,value:e,position:n}},s=function(){for(var t,e,a=n,s=0;n<i;){var o=r.charAt(n);if("/"===o&&"\\"!==r.charAt(n-1)&&0===s){if(""===(t=r.substring(a,n)))throw{code:"S0301",stack:(new Error).stack,position:n};for(n++,o=r.charAt(n),a=n;"i"===o||"m"===o;)n++,o=r.charAt(n);return e=r.substring(a,n)+"g",new RegExp(t,e)}"("!==o&&"["!==o&&"{"!==o||"\\"===r.charAt(n-1)||s++,")"!==o&&"]"!==o&&"}"!==o||"\\"===r.charAt(n-1)||s--,n++}throw{code:"S0302",stack:(new Error).stack,position:n}},o=function o(l){if(n>=i)return null;for(var h=r.charAt(n);n<i&&" \t\n\r\v".indexOf(h)>-1;)n++,h=r.charAt(n);if("/"===h&&"*"===r.charAt(n+1)){var c=n;for(n+=2,h=r.charAt(n);"*"!==h||"/"!==r.charAt(n+1);)if(h=r.charAt(++n),n>=i)throw{code:"S0106",stack:(new Error).stack,position:c};return n+=2,h=r.charAt(n),o(l)}if(!0!==l&&"/"===h)return n++,a("regex",s());if("."===h&&"."===r.charAt(n+1))return n+=2,a("operator","..");if(":"===h&&"="===r.charAt(n+1))return n+=2,a("operator",":=");if("!"===h&&"="===r.charAt(n+1))return n+=2,a("operator","!=");if(">"===h&&"="===r.charAt(n+1))return n+=2,a("operator",">=");if("<"===h&&"="===r.charAt(n+1))return n+=2,a("operator","<=");if("*"===h&&"*"===r.charAt(n+1))return n+=2,a("operator","**");if("~"===h&&">"===r.charAt(n+1))return n+=2,a("operator","~>");if(Object.prototype.hasOwnProperty.call(t,h))return n++,a("operator",h);if('"'===h||"'"===h){var u=h;n++;for(var d="";n<i;){if("\\"===(h=r.charAt(n)))if(n++,h=r.charAt(n),Object.prototype.hasOwnProperty.call(e,h))d+=e[h];else{if("u"!==h)throw{code:"S0103",stack:(new Error).stack,position:n,token:h};var p=r.substr(n+1,4);if(!/^[0-9a-fA-F]+$/.test(p))throw{code:"S0104",stack:(new Error).stack,position:n};var f=parseInt(p,16);d+=String.fromCharCode(f),n+=4}else{if(h===u)return n++,a("string",d);d+=h}n++}throw{code:"S0101",stack:(new Error).stack,position:n}}var g,v=/^-?(0|([1-9][0-9]*))(\.[0-9]+)?([Ee][-+]?[0-9]+)?/.exec(r.substring(n));if(null!==v){var m=parseFloat(v[0]);if(!isNaN(m)&&isFinite(m))return n+=v[0].length,a("number",m);throw{code:"S0102",stack:(new Error).stack,position:n,token:v[0]}}if("`"===h){n++;var y=r.indexOf("`",n);if(-1!==y)return g=r.substring(n,y),n=y+1,a("name",g);throw n=i,{code:"S0105",stack:(new Error).stack,position:n}}for(var b,w=n;;)if(b=r.charAt(w),w===i||" \t\n\r\v".indexOf(b)>-1||Object.prototype.hasOwnProperty.call(t,b)){if("$"===r.charAt(n))return g=r.substring(n+1,w),n=w,a("variable",g);switch(g=r.substring(n,w),n=w,g){case"or":case"in":case"and":return a("operator",g);case"true":return a("value",!0);case"false":return a("value",!1);case"null":return a("value",null);default:return n===i&&""===g?null:a("name",g)}}else w++};return o},i=function(e,i){var a,s,o={},l=[],h=function(){var t=[];"(end)"!==a.id&&t.push({type:a.type,value:a.value,position:a.position});for(var e=s();null!==e;)t.push(e),e=s();return t},c={nud:function(){var t={code:"S0211",token:this.value,position:this.position};if(i)return t.remaining=h(),t.type="error",l.push(t),t;throw t.stack=(new Error).stack,t}},u=function(t,e){var r=o[t];return e=e||0,r?e>=r.lbp&&(r.lbp=e):((r=Object.create(c)).id=r.value=t,r.lbp=e,o[t]=r),r},d=function(t){if(i){t.remaining=h(),l.push(t);var e=o["(error)"];return(a=Object.create(e)).error=t,a.type="(error)",a}throw t.stack=(new Error).stack,t},p=function(t,r){if(t&&a.id!==t){var n={code:"(end)"===a.id?"S0203":"S0202",position:a.position,token:a.value,value:t};return d(n)}var i=s(r);if(null===i)return(a=o["(end)"]).position=e.length,a;var l,h=i.value,c=i.type;switch(c){case"name":case"variable":l=o["(name)"];break;case"operator":if(!(l=o[h]))return d({code:"S0204",stack:(new Error).stack,position:i.position,token:h});break;case"string":case"number":case"value":l=o["(literal)"];break;case"regex":c="regex",l=o["(regex)"];break;default:return d({code:"S0205",stack:(new Error).stack,position:i.position,token:h})}return(a=Object.create(l)).value=h,a.type=c,a.position=i.position,a},f=function(t){var e,r=a;for(p(null,!0),e=r.nud();t<a.lbp;)r=a,p(),e=r.led(e);return e},g=function(t){u(t,0).nud=function(){return this}},v=function(e,r,n){var i=r||t[e],a=u(e,i);return a.led=n||function(t){return this.lhs=t,this.rhs=f(i),this.type="binary",this},a},m=function(t,e,r){var n=u(t,e);return n.led=r,n},y=function(t,e){var r=u(t);return r.nud=e||function(){return this.expression=f(70),this.type="unary",this},r};g("(end)"),g("(name)"),g("(literal)"),g("(regex)"),u(":"),u(";"),u(","),u(")"),u("]"),u("}"),u(".."),v("."),v("+"),v("-"),v("*"),v("/"),v("%"),v("="),v("<"),v(">"),v("!="),v("<="),v(">="),v("&"),v("and"),v("or"),v("in"),g("and"),g("or"),g("in"),y("-"),v("~>"),m("(error)",10,(function(t){return this.lhs=t,this.error=a.error,this.remaining=h(),this.type="error",this})),y("*",(function(){return this.type="wildcard",this})),y("**",(function(){return this.type="descendant",this})),y("%",(function(){return this.type="parent",this})),v("(",t["("],(function(t){if(this.procedure=t,this.type="function",this.arguments=[],")"!==a.id)for(;"operator"===a.type&&"?"===a.id?(this.type="partial",this.arguments.push(a),p("?")):this.arguments.push(f(0)),","===a.id;)p(",");if(p(")",!0),"name"===t.type&&("function"===t.value||"λ"===t.value)){if(this.arguments.forEach((function(t,e){if("variable"!==t.type)return d({code:"S0208",stack:(new Error).stack,position:t.position,token:t.value,value:e+1})})),this.type="lambda","<"===a.id){for(var e=a.position,r=1,i="<";r>0&&"{"!==a.id&&"(end)"!==a.id;){var s=p();">"===s.id?r--:"<"===s.id&&r++,i+=s.value}p(">");try{this.signature=n(i)}catch(t){return t.position=e+t.offset,d(t)}}p("{"),this.body=f(0),p("}")}return this})),y("(",(function(){for(var t=[];")"!==a.id&&(t.push(f(0)),";"===a.id);)p(";");return p(")",!0),this.type="block",this.expressions=t,this})),y("[",(function(){var t=[];if("]"!==a.id)for(;;){var e=f(0);if(".."===a.id){var r={type:"binary",value:"..",position:a.position,lhs:e};p(".."),r.rhs=f(0),e=r}if(t.push(e),","!==a.id)break;p(",")}return p("]",!0),this.expressions=t,this.type="unary",this})),v("[",t["["],(function(e){if("]"===a.id){for(var r=e;r&&"binary"===r.type&&"["===r.value;)r=r.lhs;return r.keepArray=!0,p("]"),e}return this.lhs=e,this.rhs=f(t["]"]),this.type="binary",p("]",!0),this})),v("^",t["^"],(function(t){p("(");for(var e=[];;){var r={descending:!1};if("<"===a.id?p("<"):">"===a.id&&(r.descending=!0,p(">")),r.expression=f(0),e.push(r),","!==a.id)break;p(",")}return p(")"),this.lhs=t,this.rhs=e,this.type="binary",this}));var b=function(t){var e=[];if("}"!==a.id)for(;;){var r=f(0);p(":");var n=f(0);if(e.push([r,n]),","!==a.id)break;p(",")}return p("}",!0),void 0===t?(this.lhs=e,this.type="unary"):(this.lhs=t,this.rhs=e,this.type="binary"),this};y("{",b),v("{",t["{"],b),m(":=",t[":="],(function(e){return"variable"!==e.type?d({code:"S0212",stack:(new Error).stack,position:e.position,token:e.value}):(this.lhs=e,this.rhs=f(t[":="]-1),this.type="binary",this)})),v("@",t["@"],(function(e){return this.lhs=e,this.rhs=f(t["@"]),"variable"!==this.rhs.type?d({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"@"}):(this.type="binary",this)})),v("#",t["#"],(function(e){return this.lhs=e,this.rhs=f(t["#"]),"variable"!==this.rhs.type?d({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"#"}):(this.type="binary",this)})),v("?",t["?"],(function(t){return this.type="condition",this.condition=t,this.then=f(0),":"===a.id&&(p(":"),this.else=f(0)),this})),y("|",(function(){return this.type="transform",this.pattern=f(0),p("|"),this.update=f(0),","===a.id&&(p(","),this.delete=f(0)),p("|"),this}));var w=function t(e){var r;if("function"!==e.type||e.predicate)if("condition"===e.type)e.then=t(e.then),void 0!==e.else&&(e.else=t(e.else)),r=e;else if("block"===e.type){var n=e.expressions.length;n>0&&(e.expressions[n-1]=t(e.expressions[n-1])),r=e}else r=e;else{var i={type:"lambda",thunk:!0,arguments:[],position:e.position};i.body=e,r=i}return r},x=0,A=0,_=[],k=function t(e,r){switch(e.type){case"name":case"wildcard":r.level--,0===r.level&&(void 0===e.ancestor||(_[r.index].slot.label=e.ancestor.label),e.ancestor=r,e.tuple=!0);break;case"parent":r.level++;break;case"block":e.expressions.length>0&&(e.tuple=!0,r=t(e.expressions[e.expressions.length-1],r));break;case"path":e.tuple=!0;var n=e.steps.length-1;for(r=t(e.steps[n--],r);r.level>0&&n>=0;)r=t(e.steps[n--],r);break;default:throw{code:"S0217",token:e.type,position:e.position}}return r},S=function(t,e){if(void 0!==e.seekingParent||"parent"===e.type){var r=void 0!==e.seekingParent?e.seekingParent:[];"parent"===e.type&&r.push(e.slot),void 0===t.seekingParent?t.seekingParent=r:Array.prototype.push.apply(t.seekingParent,r)}},E=function(t){var e=t.steps.length-1,r=t.steps[e],n=void 0!==r.seekingParent?r.seekingParent:[];"parent"===r.type&&n.push(r.slot);for(var i=0;i<n.length;i++){var a=n[i];for(e=t.steps.length-2;a.level>0;){if(e<0){void 0===t.seekingParent?t.seekingParent=[a]:t.seekingParent.push(a);break}for(var s=t.steps[e--];e>=0&&s.focus&&t.steps[e].focus;)s=t.steps[e--];a=k(s,a)}}},M=function t(e){var r;switch(e.type){case"binary":switch(e.value){case".":var n=t(e.lhs);r="path"===n.type?n:{type:"path",steps:[n]},"parent"===n.type&&(r.seekingParent=[n.slot]);var a=t(e.rhs);"function"===a.type&&"path"===a.procedure.type&&1===a.procedure.steps.length&&"name"===a.procedure.steps[0].type&&"function"===r.steps[r.steps.length-1].type&&(r.steps[r.steps.length-1].nextFunction=a.procedure.steps[0].value),"path"===a.type?Array.prototype.push.apply(r.steps,a.steps):(void 0!==a.predicate&&(a.stages=a.predicate,delete a.predicate),r.steps.push(a)),r.steps.filter((function(t){if("number"===t.type||"value"===t.type)throw{code:"S0213",stack:(new Error).stack,position:t.position,value:t.value};return"string"===t.type})).forEach((function(t){t.type="name"})),r.steps.filter((function(t){return!0===t.keepArray})).length>0&&(r.keepSingletonArray=!0);var s=r.steps[0];"unary"===s.type&&"["===s.value&&(s.consarray=!0);var o=r.steps[r.steps.length-1];"unary"===o.type&&"["===o.value&&(o.consarray=!0),E(r);break;case"[":var h=r=t(e.lhs),c="predicate";if("path"===r.type&&(h=r.steps[r.steps.length-1],c="stages"),void 0!==h.group)throw{code:"S0209",stack:(new Error).stack,position:e.position};void 0===h[c]&&(h[c]=[]);var u=t(e.rhs);void 0!==u.seekingParent&&(u.seekingParent.forEach((function(t){1===t.level?k(h,t):t.level--})),S(h,u)),h[c].push({type:"filter",expr:u,position:e.position});break;case"{":if(void 0!==(r=t(e.lhs)).group)throw{code:"S0210",stack:(new Error).stack,position:e.position};r.group={lhs:e.rhs.map((function(e){return[t(e[0]),t(e[1])]})),position:e.position};break;case"^":"path"!==(r=t(e.lhs)).type&&(r={type:"path",steps:[r]});var d={type:"sort",position:e.position};d.terms=e.rhs.map((function(e){var r=t(e.expression);return S(d,r),{descending:e.descending,expression:r}})),r.steps.push(d),E(r);break;case":=":(r={type:"bind",value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs),S(r,r.rhs);break;case"@":if(r=t(e.lhs),h=r,"path"===r.type&&(h=r.steps[r.steps.length-1]),void 0!==h.stages||void 0!==h.predicate)throw{code:"S0215",stack:(new Error).stack,position:e.position};if("sort"===h.type)throw{code:"S0216",stack:(new Error).stack,position:e.position};e.keepArray&&(h.keepArray=!0),h.focus=e.rhs.value,h.tuple=!0;break;case"#":r=t(e.lhs),h=r,"path"===r.type?h=r.steps[r.steps.length-1]:(r={type:"path",steps:[r]},void 0!==h.predicate&&(h.stages=h.predicate,delete h.predicate)),void 0===h.stages?h.index=e.rhs.value:h.stages.push({type:"index",value:e.rhs.value,position:e.position}),h.tuple=!0;break;case"~>":(r={type:"apply",value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs);break;default:(r={type:e.type,value:e.value,position:e.position}).lhs=t(e.lhs),r.rhs=t(e.rhs),S(r,r.lhs),S(r,r.rhs)}break;case"unary":r={type:e.type,value:e.value,position:e.position},"["===e.value?r.expressions=e.expressions.map((function(e){var n=t(e);return S(r,n),n})):"{"===e.value?r.lhs=e.lhs.map((function(e){var n=t(e[0]);S(r,n);var i=t(e[1]);return S(r,i),[n,i]})):(r.expression=t(e.expression),"-"===e.value&&"number"===r.expression.type?(r=r.expression).value=-r.value:S(r,r.expression));break;case"function":case"partial":(r={type:e.type,name:e.name,value:e.value,position:e.position}).arguments=e.arguments.map((function(e){var n=t(e);return S(r,n),n})),r.procedure=t(e.procedure);break;case"lambda":r={type:e.type,arguments:e.arguments,signature:e.signature,position:e.position};var p=t(e.body);r.body=w(p);break;case"condition":(r={type:e.type,position:e.position}).condition=t(e.condition),S(r,r.condition),r.then=t(e.then),S(r,r.then),void 0!==e.else&&(r.else=t(e.else),S(r,r.else));break;case"transform":(r={type:e.type,position:e.position}).pattern=t(e.pattern),r.update=t(e.update),void 0!==e.delete&&(r.delete=t(e.delete));break;case"block":(r={type:e.type,position:e.position}).expressions=e.expressions.map((function(e){var n=t(e);return S(r,n),(n.consarray||"path"===n.type&&n.steps[0].consarray)&&(r.consarray=!0),n}));break;case"name":r={type:"path",steps:[e]},e.keepArray&&(r.keepSingletonArray=!0);break;case"parent":r={type:"parent",slot:{label:"!"+x++,level:1,index:A++}},_.push(r);break;case"string":case"number":case"value":case"wildcard":case"descendant":case"variable":case"regex":r=e;break;case"operator":if("and"===e.value||"or"===e.value||"in"===e.value)e.type="name",r=t(e);else{if("?"!==e.value)throw{code:"S0201",stack:(new Error).stack,position:e.position,token:e.value};r=e}break;case"error":r=e,e.lhs&&(r=t(e.lhs));break;default:var f="S0206";"(end)"===e.id&&(f="S0207");var g={code:f,position:e.position,token:e.value};if(i)return l.push(g),{type:"error",error:g};throw g.stack=(new Error).stack,g}return e.keepArray&&(r.keepArray=!0),r};s=r(e),p();var T=f(0);if("(end)"!==a.id){var C={code:"S0201",position:a.position,token:a.value};d(C)}if("parent"===(T=M(T)).type||void 0!==T.seekingParent)throw{code:"S0217",token:T.type,position:T.position};return l.length>0&&(T.errors=l),T};return i}();e.exports=i},{"./signature":5}],5:[function(t,e,r){function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var i=t("./utils"),a=function(){var t={a:"arrays",b:"booleans",f:"functions",n:"numbers",o:"objects",s:"strings"};function e(e){for(var r=1,a=[],s={},o=s;r<e.length;){var l=e.charAt(r);if(":"===l)break;var h=function(){a.push(s),o=s,s={}},c=function(t,e,r,n){for(var i=1,a=e;a<t.length;)if(a++,(l=t.charAt(a))===n){if(0==--i)break}else l===r&&i++;return a};switch(l){case"s":case"n":case"b":case"l":case"o":s.regex="["+l+"m]",s.type=l,h();break;case"a":s.regex="[asnblfom]",s.type=l,s.array=!0,h();break;case"f":s.regex="f",s.type=l,h();break;case"j":s.regex="[asnblom]",s.type=l,h();break;case"x":s.regex="[asnblfom]",s.type=l,h();break;case"-":o.context=!0,o.contextRegex=new RegExp(o.regex),o.regex+="?";break;case"?":case"+":o.regex+=l;break;case"(":var u=c(e,r,"(",")"),d=e.substring(r+1,u);if(-1!==d.indexOf("<"))throw{code:"S0402",stack:(new Error).stack,value:d,offset:r};s.regex="["+d+"m]",s.type="("+d+")",r=u,h();break;case"<":if("a"!==o.type&&"f"!==o.type)throw{code:"S0401",stack:(new Error).stack,value:o.type,offset:r};var p=c(e,r,"<",">");o.subtype=e.substring(r+1,p),r=p}r++}var f="^"+a.map((function(t){return"("+t.regex+")"})).join("")+"$",g=new RegExp(f),v=function(t){var e;if(i.isFunction(t))e="f";else switch(n(t)){case"string":e="s";break;case"number":e="n";break;case"boolean":e="b";break;case"object":e=null===t?"l":Array.isArray(t)?"a":"o";break;default:e="m"}return e},m=function(t,e){for(var r="^",n=0,i=0;i<a.length;i++){r+=a[i].regex;var s=e.match(r);if(null===s)throw{code:"T0410",stack:(new Error).stack,value:t[n],index:n+1};n=s[0].length}throw{code:"T0410",stack:(new Error).stack,value:t[n],index:n+1}};return{definition:e,validate:function(e,r){var n="";e.forEach((function(t){n+=v(t)}));var i=g.exec(n);if(i){var s=[],o=0;return a.forEach((function(n,a){var l=e[o],h=i[a+1];if(""===h)if(n.context&&n.contextRegex){var c=v(r);if(!n.contextRegex.test(c))throw{code:"T0411",stack:(new Error).stack,value:r,index:o+1};s.push(r)}else s.push(l),o++;else h.split("").forEach((function(r){if("a"===n.type){if("m"===r)l=void 0;else{l=e[o];var i=!0;if(void 0!==n.subtype)if("a"!==r&&h!==n.subtype)i=!1;else if("a"===r&&l.length>0){var a=v(l[0]);i=a===n.subtype.charAt(0)&&0===l.filter((function(t){return v(t)!==a})).length}if(!i)throw{code:"T0412",stack:(new Error).stack,value:l,index:o+1,type:t[n.subtype]};"a"!==r&&(l=[l])}s.push(l),o++}else s.push(l),o++}))})),s}m(e,n)}}}return e}();e.exports=a},{"./utils":6}],6:[function(t,e,r){function n(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=i(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,a=function(){};return{s:a,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var s,o=!0,l=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return o=t.done,t},e:function(t){l=!0,s=t},f:function(){try{o||null==r.return||r.return()}finally{if(l)throw s}}}}function i(t,e){if(t){if("string"==typeof t)return a(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(t,e):void 0}}function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function s(t){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},s(t)}var o=function(){function t(t){var e=!1;if("number"==typeof t&&(e=!isNaN(t))&&!isFinite(t))throw{code:"D1001",value:t,stack:(new Error).stack};return e}function e(t){var e=!1;return Array.isArray(t)&&(e=0===t.filter((function(t){return"string"!=typeof t})).length),e}function r(e){var r=!1;return Array.isArray(e)&&(r=0===e.filter((function(e){return!t(e)})).length),r}function i(){var t=[];return t.sequence=!0,1===arguments.length&&t.push(arguments[0]),t}function a(t){return!0===t.sequence&&Array.isArray(t)}function o(t){return t&&(!0===t._jsonata_function||!0===t._jsonata_lambda)||"function"==typeof t}function l(t){return"number"==typeof t.arity?t.arity:"function"==typeof t.implementation?t.implementation.length:"number"==typeof t.length?t.length:t.arguments.length}function h(t){return t&&!0===t._jsonata_lambda}var c=("function"==typeof Symbol?Symbol:{}).iterator||"@@iterator";function u(t){return"object"===s(t)&&null!==t&&c in t&&"next"in t&&"function"==typeof t.next}function d(t,e){if(t===e)return!0;if("object"===s(t)&&"object"===s(e)&&null!==t&&null!==e){if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return!1;for(var r=0;r<t.length;r++)if(!d(t[r],e[r]))return!1;return!0}var n=Object.getOwnPropertyNames(t),i=Object.getOwnPropertyNames(e);if(n.length!==i.length)return!1;for(n=n.sort(),i=i.sort(),r=0;r<n.length;r++)if(n[r]!==i[r])return!1;for(r=0;r<n.length;r++){var a=n[r];if(!d(t[a],e[a]))return!1}return!0}return!1}function p(t){var e,r=[],i=n(t);try{for(i.s();!(e=i.n()).done;){var a=e.value;r.push(a)}}catch(t){i.e(t)}finally{i.f()}return r}return{isNumeric:t,isArrayOfStrings:e,isArrayOfNumbers:r,createSequence:i,isSequence:a,isFunction:o,isLambda:h,isIterable:u,getFunctionArity:l,isDeepEqual:d,stringToArray:p}}();e.exports=o},{}]},{},[3])(3)}(g9);var v9=g9.exports;const m9=function(t){return t};function y9(t){if(!t)return m9;try{var e=v9(t);return function(t){return e.evaluate(t)}}catch(t){return console.error(t),m9}}function b9(t){var e=P7(t);return null==e?"":String(e)}function w9(t){return Number(P7(t))}function x9(t){return t}function A9(t){return b9(t)}function _9(t){return w9(t)}function k9(t){if(this.param)return t=b9(t),this.param.hasOwnProperty(t)?this.param[t]:this.param.default}function S9(t){var{param:e}=this;if(e){for(let r in e){let[n,i]=r.split("~"),a=!!n,s=!!i;if(n=parseFloat(n),i=parseFloat(i),t=w9(t),a&&!s&&t>=n)return e[r];if(!a&&s&&t<n)return e[r];if(t>=n&&t<i)return e[r]}return e.default}}function E9(t){return w9(t)*Math.PI/180}function M9(){}function T9(t,e,r,n,i){switch(r){case"value":return"text"===i||"string"===i?A9.bind(t):"number"===i?_9.bind(t):x9.bind(e);case"map":return k9.bind(t);case"range":return S9.bind(t);case"radian":return E9.bind(t);case"eval":return function(t){try{return new Function("value","targets",t)}catch(t){return U7(t),M9}}(n).bind(e);default:return x9.bind(e)}}class C9{constructor(t,e){this.owner=e,this.model=t}dispose(){delete this._model,delete this.owner,delete this.evaluator,delete this.accessor,delete this.source}get model(){return this._model}set model(t){var{target:e,property:r,rule:n,param:i,accessor:a}=t;this._model=t,this.evaluator=T9(this,this.owner,n,i,function(t){switch(t){case"ref":case"fillStyle":case"strokeStyle":return"string";default:return}}(r)),this.accessor=y9(a);const s=e.match(/\[(.*?)\]/);if(s){var[o,l]=s[1].split(":");this.propAccessor=y9(o),this.partAccessor=y9(l)}}get target(){return this.model.target}get property(){return this.model.property}get source(){return this.model.source}get param(){return this.model.param}get ndnsp(){return!!this.model.ndnsp}get partial(){return!!this.model.partial}}function P9(t,e,r,n){n?t.forEach((t=>t[e]={...t[e],...r})):t.forEach((t=>t[e]=r))}function I9(t=!1){(t||void 0!==this.data)&&this.mappings&&this.mappings.forEach((t=>{try{var e,{source:r,target:n,property:i,accessor:a,propAccessor:s,partAccessor:o,ndnsp:l=!1,partial:h=!1}=t;r&&"(self)"!=r?(r.startsWith("#")&&(r=r.substring(1)),e=this.root.findById(r)?.data||{}):e=this.data;var c=a(e);if("(root)"==(n=n.trim())||"(key)"==n){if(null==c)return;let e=Object.keys(c||{}).map((t=>this.root.findOrCreate(t))).filter(Boolean).flat();e.length>0&&e.forEach((e=>{let r=t.evaluator(c[e.get("id")],[e]);!i||"(action)"===i||l&&!r&&0!==r&&!1!==r||(e[i]=h?{...e[i],...r}:r)}))}else if(n.startsWith("[")){if(null==c)return;if(c instanceof Array)c.forEach((e=>{let r=s(e);if(r){let n=this.root.findOrCreate(r);if(n){let r=t.evaluator(o(e),n);!i||"(action)"===i||l&&!r&&0!==r&&!1!==r||P9(n,i,r,h)}}}));else{if(!(c instanceof Object))throw String("mapping data should be an object to target property-id.("+c+")");{let e=s(c);if(e){let r=this.root.findOrCreate(e);if(r){let e=t.evaluator(o(c),r);!i||"(action)"===i||l&&!e&&0!==e&&!1!==e||P9(r,i,e,h)}}}}}else{let e=this.root.findAll(n,this);if(e.length>0){let r=t.evaluator(c,e);!i||"(action)"===i||l&&!r&&0!==r&&!1!==r||P9(e,i,r,h)}}}catch(e){U7(e,this,t)}}))}var R9;function O9(t,e,r,n,i){var{alpha:a=1}=n,s=i.fillStyle;if(t.globalAlpha*=a,s)if("string"==typeof s)t.fillStyle=s,t.fill();else if("object"==typeof s)if("gradient"==s.type){t.translate(r.x,r.y);let n,{width:i,height:a}=e;if("linear"==s.gradientType){let e=3.141592653589793,r=s.rotation;if(r>=.436332&&r<=1.13446||r>=2.00713&&r<=2.70526||r>=3.57792&&r<=4.27606||r>=5.14872&&r<=5.84685){let s=Math.sqrt(Math.pow((i-4)/2,2)+Math.pow((a-4)/2,2));s-=s-(i+a)/3,n=t.createLinearGradient(s*Math.cos(r+e),s*Math.sin(r+e),s*Math.cos(r),s*Math.sin(r))}else n=t.createLinearGradient((i-4)/2*Math.cos(r+e),(a-4)/2*Math.sin(r+e),(i-4)/2*Math.cos(r),(a-4)/2*Math.sin(r))}else if("radial"==s.gradientType){let e=.95*Math.sqrt(Math.pow((i-4)/2,2)+Math.pow((a-4)/2,2));switch(s.center){case"center":default:n=t.createRadialGradient(0,0,0,0,0,e);break;case"left-top":n=t.createRadialGradient(-i/2,-a/2,0,-i/2,-a/2,2*e);break;case"right-top":n=t.createRadialGradient(i/2,-a/2,0,i/2,-a/2,2*e);break;case"left-bottom":n=t.createRadialGradient(-i/2,a/2,0,-i/2,a/2,2*e);break;case"right-bottom":n=t.createRadialGradient(i/2,a/2,0,i/2,a/2,2*e)}}s.colorStops.forEach((t=>{if(t.position>=0&&t.position<=1)try{n.addColorStop(t.position,t.color)}catch(e){H7("Invalid Color for colorstop : ",t.color),n.addColorStop(t.position,"#fff")}})),t.fillStyle=n,t.fill(),t.translate(-r.x,-r.y)}else if("pattern"==s.type&&s.image){i.prepareFillIf(!i._pattern_image_origin);var o=i._pattern_image;if(!o)return;let r=0,n=0,a=0,l=0,h=e.left,c=e.top;if(!s.fitPattern){r=s.offsetX,n=s.offsetY;const t=s.width?s.width:o.width,i=s.height?s.height:o.height;switch(s.align){case"center":a=e.width/2-t/2,l=e.height/2-i/2;break;case"left-top":a=0,l=0;break;case"left-bottom":a=0,l=e.height-i;break;case"right-top":a=e.width-t,l=0;break;case"right-bottom":a=e.width-t,l=e.height-i;break;case"left":a=0,l=e.height/2-i/2;break;case"right":a=e.width-t,l=e.height/2-i/2;break;case"top":a=e.width/2-t/2,l=0;break;case"bottom":a=e.width/2-t/2,l=e.height-i}h+=r+a,c+=n+l}t.translate(h,c),s.color&&(t.fillStyle=s.color,t.fill()),s.fitPattern?Math.abs((o.width-e.width)*(o.height-e.height))>1?(delete i._pattern_image,delete i._pattern_image_origin):t.fillStyle=t.createPattern(o,"no-repeat"):t.fillStyle=t.createPattern(o,s.noRepeat?"no-repeat":"repeat"),t.fill(),t.translate(-h,-c)}}function L9(t,e,r){var{strokeStyle:n,lineDash:i,lineWidth:a,lineCap:s,lineJoin:o,alpha:l}=e;if(n&&0!=a){if(s&&(t.lineCap=s),i){var h="round"==s;switch(i){case"solid":i=[0,0];break;case"round-dot":i=h?[0,2*a]:[a,a];break;case"square-dot":i=h?[a,2*a]:[2*a,a];break;case"dash":i=h?[3*a,2.5*a]:[4*a,1.5*a];break;case"dash-dot":i=h?[3*a,3*a,0,3*a]:[4*a,2*a,a,2*a];break;case"long-dash":i=h?[5*a,4*a]:[6*a,3*a];break;case"long-dash-dot":i=h?[5*a,3*a,0,3*a]:[6*a,2*a,a,2*a];break;case"long-dash-dot-dot":i=h?[5*a,2*a,0,2*a,0,2*a]:[6*a,a,a,a,a,a]}t.setLineDash(i)}t.globalAlpha*=l,t.strokeStyle=n,t.lineWidth=a,t.lineJoin=o,t.stroke()}}function D9(t,e,r,n,i,a=0,s=!1,o=!0){a="number"==typeof a?{tl:a,tr:a,br:a,bl:a}:{tl:0,tr:0,br:0,bl:0,...a},t.beginPath(),t.moveTo(e+a.tl,r),t.lineTo(e+n-a.tr,r),t.quadraticCurveTo(e+n,r,e+n,r+a.tr),t.lineTo(e+n,r+i-a.br),t.quadraticCurveTo(e+n,r+i,e+n-a.br,r+i),t.lineTo(e+a.bl,r+i),t.quadraticCurveTo(e,r+i,e,r+i-a.bl),t.lineTo(e,r+a.tl),t.quadraticCurveTo(e,r,e+a.tl,r),t.closePath(),s&&t.fill(),o&&t.stroke()}function F9(t){const e=/(\*\*|__)(.*?)\1|(\*|_)(.*?)\3|([^\*_]+)/g;let r,n=[];for(;null!==(r=e.exec(t));)r[1]?n.push({text:r[2],bold:!0,italic:!1}):r[3]?n.push({text:r[4],bold:!1,italic:!0}):r[5]&&n.push({text:r[5],bold:!1,italic:!1});return n}function N9(t,e,r,n=0){if(e.text.length<2)return e;let i=2;for(;i<e.text.length;i++){const a=e.text.substring(0,i);if(!(t.measureText(a).width+(i-1)*n<r))break}return{...e,text:e.text.substring(0,i-1)}}function j9(t,e,r,n,i,a=0){const s=String(e).split("\n");return n?[].concat.apply([],s.map((e=>function(t,e,r,n=0){const i=[];let a=[],s=0;return e.forEach((e=>{let o=e.text;for(;o.length>0;){const l=r-s,h=t.measureText(o).width+(o.length-1)*n;if(h<=l)a.push({...e,text:o}),s+=h,o="";else{const r=N9(t,{...e,text:o},l,n);a.push(r),i.push(a),a=[],s=0,o=o.substring(r.text.length)}}})),a.length>0&&i.push(a),i}(t,i?F9(e):[{text:e,bold:!1,italic:!1}],r,a)))):s.map((t=>i?F9(t):[{text:t,bold:!1,italic:!1}]))}function B9(t,e,r,n,i,a,s=0){if(!n)return[];t.save(),t.font=r;var o=j9(t,n,e,!!i,a,s);return t.restore(),o}function z9(t){var{fontFamily:e=i9.FONT_FAMILY,bold:r=i9.BOLD,italic:n=i9.ITALIC,fontSize:i=i9.FONT_SIZE}=t,a=[];return r&&a.push("bold"),n&&a.push("italic"),a.push(i+"px"),a.push(e),a.join(" ")}function W9(t,e){let r=t.bold||e.bold,n=t.italic||e.italic,i=[];return r&&i.push("bold"),n&&i.push("italic"),i.push(t.fontSize+"px"),i.push(t.fontFamily),i.join(" ")}function U9(t,e,r,n){var{alpha:i,fontColor:a=i9.FONT_COLOR,textAlign:s=i9.TEXT_ALIGN,textBaseline:o=i9.TEXT_BASELINE,textBackgroundStyle:l,fontSize:h,lineHeight:c,textWrap:u,textOverflow:d,letterSpacing:p=0}=n;i=void 0!==i?i:1,h||=i9.FONT_SIZE,c||=1.2*h,t.save(),t.beginPath();var{left:f,top:g,width:v,height:m}=e;if(t.font=z9(n),!u&&d){const e=function(t,e,r,n){const i="ellipsis"===t?"…":"",a=e.measureText(i).width;let s=[],o=0;for(let i of r){let r=[];for(let l of i){let i=e.measureText(l.text).width;if(!(o+i<=n-("ellipsis"===t?a:0))){let i=H9(e,l,n-o-("ellipsis"===t?a:0),t);return r.push(i),s.push(r),s}r.push(l),o+=i}s.push(r),o=0}return s}(d,t,r,v);r=e}var y,b=r.length*c;switch(o){case"top":y=g,t.textBaseline="top";break;case"bottom":y=g+m-b+c,t.textBaseline="bottom";break;default:y=g+m/2-b/2+c/2,t.textBaseline="middle"}t.globalAlpha*=i,t.fillStyle=a,r.forEach(((e,i)=>{let o=y+i*c,u=function(t,e,r,n=0){return e.reduce(((e,i)=>(t.font=W9(r,i),e+t.measureText(i.text).width+n*(i.text.length-1))),0)}(t,e,n,p),d=f;switch(s){case"left":case"justify":d=f;break;case"right":d=f+v-u;break;case"center":d=f+(v-u)/2}if(l&&(t.fillStyle=l,D9(t,d-4,o-h/2-4,u+8,h+8,4,!0,!1),t.fillStyle=a),"justify"===s&&i<r.length-1&&e.length>1){let r=v-u,i=e.length-1,a=r/i;e.forEach(((e,r)=>{t.font=W9(n,e),t.fillText(e.text,d,o),d+=t.measureText(e.text).width+(r<i?a:0)}))}else e.forEach((e=>{t.font=W9(n,e),[...e.text].forEach((e=>{t.fillText(e,d,o),d+=t.measureText(e).width+p}))}))})),t.restore()}function H9(t,e,r,n){let i="";for(let n=0;n<e.text.length;n++){let a=i+e.text[n];if(t.measureText(a).width>r)break;i=a}return{...e,text:i+("ellipsis"===n?"…":"")}}function G9(t,e,r={x:0,y:0},n=0,i={x:1,y:1}){const a=Math.cos(-n),s=Math.sin(-n);return{x:((t-=r.x)*a-(e-=r.y)*s+r.x)/i.x,y:(t*s+e*a+r.y)/i.y}}function Y9(t,e,r={x:0,y:0},n=0,i={x:1,y:1}){const a=Math.cos(n),s=Math.sin(n);return{x:((t-=r.x)*a-(e-=r.y)*s+r.x)*i.x,y:(t*s+e*a+r.y)*i.y}}function V9(t){var e=t.element,r=t.fillStyle,n=e.style;if(r)if("string"==typeof r)n.backgroundColor=r;else switch(r.type){case"pattern":if(n.backgroundImage="url("+r.image+")",n.backgroundColor="transparent",r.fitPattern?n.backgroundSize="100% 100%":r.width||r.height?n.backgroundSize=`${r.width?r.width+"px":"auto"} ${r.height?r.height+"px":"auto"}`:n.backgroundSize="contain",r.fitPattern)n.backgroundRepeat="no-repeat";else{const{offsetX:t,offsetY:e,noRepeat:i,align:a,color:s}=r;if(i&&(n.backgroundRepeat="no-repeat"),s&&(n.backgroundColor=s),a)switch(a){case"center":n.backgroundPosition="center center";break;case"left-top":n.backgroundPosition="left top";break;case"left-bottom":n.backgroundPosition="left bottom";break;case"right-top":n.backgroundPosition="right top";break;case"right-bottom":n.backgroundPosition="right bottom";break;case"left":n.backgroundPosition="left center";break;case"right":n.backgroundPosition="right center";break;case"top":n.backgroundPosition="center top";break;case"bottom":n.backgroundPosition="center bottom"}else t||e?n.backgroundPosition=`${Number(t)||0}px ${Number(e)||0}px`:delete n.backgroundPosition}break;case"gradient":n.background=function(t,e){var r=e.colorStops,n=e.gradientType;if(r instanceof Array&&r.length>0)switch(n){case"radial":return"radial-gradient(farthest-corner at "+function(t,e){var{width:r,height:n}=t.bounds;switch(e){case"center":return[r/2,n/2];case"left-top":return[0,0];case"right-top":return[r,0];case"left-bottom":return[0,n];default:return[r,n]}}(t,e.center||"center").map((t=>t+"px")).join(" ")+","+r.map((t=>`${t.color} ${100*t.position}%`)).join(",")+")";case"linear":return"linear-gradient("+(180*(e.rotation||0)/3.141592653589793+90+"deg")+", "+r.map((t=>`${t.color} ${100*t.position}%`)).join(",")+")"}return""}(t,r)}else n.background="transparent"}R9="undefined"==typeof document?function(t,e){return new Canvas(t,e)}:function(t,e){var r=document.createElement("canvas");return r.width=t,r.height=e,r};const q9={x:1,y:1},X9={x:0,y:0},$9={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"};function K9(t){var{id:e,scale:r=q9,translate:n=X9,bold:i,italic:a,fontFamily:s="",textAlign:o,textBaseline:l,textOverflow:h,paddingTop:c,paddingBottom:u,paddingLeft:d,paddingRight:p,fontSize:f=i9.FONT_SIZE,lineWidth:g=0,lineHeight:v,lineDash:m}=t.state;u||=0,c||=0,d||=0,p||=0;var y=t.state.class;t.text;var{strokeStyle:b,fillStyle:w,rotation:x=0,fontColor:A,hidden:_}=t,{left:k,top:S,width:E,height:M}=t.bounds,T=t.element;if(T.hidden=_,e&&(T.id=e),y&&(T.className=y),Object.assign(T.style,$9,{fontFamily:s,fontSize:f+"px",width:E+"px",height:M+"px",paddingTop:c+"px",paddingRight:p+"px",paddingBottom:u+"px",paddingLeft:d+"px",border:g+"px",borderColor:b,borderStyle:g>0?m||i9.LINE_DASH:"",color:A,fontWeight:i?"bold":"",fontStyle:a?"italic":"",textAlign:"end"==o?"right":"start"==o?"left":o,verticalAlign:l,lineHeight:void 0===v?"":v+"px",whiteSpace:h?"nowrap":"",overflow:h?"hidden":"",textOverflow:h||""},t.isIn3DSpace()?{}:{left:k+"px",top:S+"px"}),V9(t),function(t){if(t.isShadowable()&&t.state.shadow){var e=t.element,{left:r=0,top:n=0,blurSize:i=0,color:a="transparent"}=t.state.shadow;e.style.boxShadow=`${r}px ${n}px ${i}px ${a}`}}(t),!t.isIn3DSpace()){var C=t.delta(),P=(r&&r.x||1)*C.sx,I=(r&&r.y||1)*C.sy,R=(x||0)+C.theta,O=C.tx||0,L=C.ty||0;T.style.transform=`rotate(${R}rad) translate(${O}px, ${L}px) scale(${P}, ${I}) perspective(1px)`}}var Q9,J9=[];function Z9(){Q9=null;var t=performance.now(),e=(J9=J9.filter((t=>ttt(t)))).reduce(((e,r)=>{let n=t-r.updatedAt;return n>=r.retention?e.kills.push(r):e.next=0==e.next?r.retention-n:Math.min(e.next,r.retention-n),e}),{next:0,kills:[]});e.kills.forEach((t=>{let e=J9.indexOf(t);-1!=e?(J9.splice(e,1),t.removeSelf(!0)):U7("Should not be here. Maybe reentrance problem.")})),e.next>0&&(Q9=setTimeout(ett,Math.max(e.next,500)))}function ttt(t){return!t.disposed&&t.retention>0&&!t.isTemplate()&&t.app&&t.app.isViewMode}var ett=A7((function(){requestAnimationFrame(Z9)}),500);var rtt=new class{add(t){ttt(t)&&-1==J9.indexOf(t)&&(J9.push(t),t.touch()),this.touch()}remove(t){var e=J9.indexOf(t);e>0&&J9.splice(e,1),this.touch()}touch(){null!==Q9&&(clearTimeout(Q9),Q9=null),ett()}get length(){return J9.length}};const ntt=function(t){return t};function itt(t){var e=t.indexOf("||"),r="",n="";-1!=e&&(r=t,n=t.substring(e+2,t.length-1).trim(),t=t.replace(t.substring(e,t.length-1),"").trim());var i=t.substr(2,t.length-3).trim().replace(/\[(\w+)\]/g,".$1").replace(/^\./,"").split(".").filter((t=>!!t.trim())),a=i.slice(1);return{defaultValue:n,match:t,originText:r||t,target:i[0],accessor:a.length>0?function(t){return a.reduce(((t,e)=>t?t[e]:void 0),t)}:ntt}}function att(t,e,r){if(t){var n=r||P7,i=String(t),a=(i.match(/#{[^}]*}/gi)||[]).map((t=>itt(t))),s=(i.match(/\${[^}]*}/gi)||[]).map((t=>itt(t)));if(0!=a.length||0!=s.length)return function(){var t=i;return a.forEach((r=>{let i=n(r.accessor(e.getState(r.target)));t=t.replace(r.originText,void 0===i?r.defaultValue||"":i)})),s.forEach((r=>{let i=e.root.findById(r.target),a=n(r.accessor(i&&i.data));t=t.replace(r.originText,void 0===a?r.defaultValue||"":a)})),t}}}const stt=210*Math.PI/180,ott=150*Math.PI/180;var ltt={"data-spread":function(t,e,r){if(t.app.isEditMode){var n=!1;return t.mappings&&t.mappings.forEach((r=>{let i=t.root.findAll(r.target,t);i&&(e.lineWidth=2,i.forEach((r=>{let i=t.center,a=r.center;i=t.transcoordS2C(i.x,i.y,t.rootModel),a=r.transcoordS2C(a.x,a.y,r.rootModel),e.beginPath();const s=e.createLinearGradient(i.x,i.y,a.x,a.y);["#FFA50033","#FFA500"].forEach(((t,e)=>s.addColorStop(e,t))),e.strokeStyle=s,e.fillStyle=s,function(t,e,r,n=10){var i=r.x-e.x,a=r.y-e.y,s=Math.atan2(a,i),o=r.x+n*Math.cos(s+stt),l=r.y+n*Math.sin(s+stt),h=r.x+n*Math.cos(s+ott),c=r.y+n*Math.sin(s+ott);t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(r.x,r.y),t.moveTo(r.x,r.y),t.lineTo(o,l),t.moveTo(r.x,r.y),t.lineTo(h,c),t.stroke()}(e,i,a),n=!0})))})),n}},"bouncing-arrow":function(t,e,r){let{left:n,top:i,width:a}=t.bounds,s=t.state.id,{x:o,y:l}=t.transcoordS2C(n+a/2,i,t.rootModel);const h=2*function(t){const e=100*(1-t)%10;return e<5?e:10-e}(r||0);if(o=Math.max(o,20),l=Math.max(l,20),e.beginPath(),e.moveTo(o-10,l-16+h),e.lineTo(o+10,l-16+h),e.lineTo(o+10,l-8+h),e.lineTo(o+16,l-8+h),e.lineTo(o,l+h),e.lineTo(o-16,l-8+h),e.lineTo(o-10,l-8+h),e.lineTo(o-10,l-16+h),e.lineTo(o-10,l-16+h),e.fillStyle="#FF0000",e.fill(),s){e.beginPath(),e.font="12px Arial";let t=e.measureText(s);e.fillStyle="#FF0000",e.roundRect(o-t.actualBoundingBoxLeft-3+20,l-t.actualBoundingBoxAscent-3-6+h,t.actualBoundingBoxLeft+t.actualBoundingBoxRight+6,t.actualBoundingBoxAscent+t.actualBoundingBoxDescent+6,3),e.fill(),e.fillStyle="white",e.fillText(s,o+20,l-6+h)}return!0},decotag:function(t,e,r){const n=t.decotag;if(n){let{left:r,top:i}=t.bounds,{x:a,y:s}=t.transcoordS2C(r,i,t.rootModel);a=Math.max(a+3,5),s=Math.max(s-8,15),e.font="12px Arial";let o=e.measureText(n);return e.beginPath(),e.fillStyle="#FF0000",e.roundRect(a-o.actualBoundingBoxLeft-3,s-o.actualBoundingBoxAscent-3,o.actualBoundingBoxLeft+o.actualBoundingBoxRight+6,o.actualBoundingBoxAscent+o.actualBoundingBoxDescent+6,3),e.fill(),e.beginPath(),e.fillStyle="white",e.fillText(n,a,s),!0}return!1},anchors:function(t,e,r){if(t.app.isEditMode){var n=!1;return t.anchors&&t.anchors.forEach((r=>{const{name:i,position:a}=r;var{x:s,y:o}=a||{};if(!i)return;var{x:s,y:o}=t.transcoordS2C(s,o,t.rootModel);s+=4,o+=4,e.font="12px Arial";let l=e.measureText(i);e.fillStyle="#FF0000",D9(e,s,o,l.width+6,16,3,!0,!1),e.fillStyle="white",e.fillText(i,s+3,o+13),n=!0})),n}},link:function(t,e,r){var n=!1;if(!t.isLine())return;const{fromEnd:i,toEnd:a}=t;return[i,a].filter(Boolean).forEach((t=>{const{component:r,anchor:i}=t;if(!i)return;const{name:a,position:s}=i||{};if(!a||!s)return;var{x:o,y:l}=s||{},{x:o,y:l}=r.transcoordS2C(o,l,r.rootModel);o+=8,l+=20,e.font="12px Arial";let h=e.measureText(a);e.fillStyle="#FF0000",D9(e,o-h.actualBoundingBoxLeft-4,l-h.actualBoundingBoxAscent-4,h.actualBoundingBoxLeft+h.actualBoundingBoxRight+8,h.actualBoundingBoxAscent+h.actualBoundingBoxDescent+8,4,!0,!1),e.fillStyle="white",e.fillText(a,o,l),n=!0})),n}};function htt(t){return ltt[t]}var ctt={};const utt={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},dtt=[],ptt={theta:0,tx:0,ty:0,sx:1,sy:1,fade:0};var ftt=0,gtt={};const vtt=new FinalizationRegistry((t=>{!function(t){ftt--;var e=gtt[t];e||(e=gtt[t]={up:0,down:0}),e.down++}(t)}));class mtt{static get nature(){return utt}static register(t,e){if(!e)return ctt[t];ctt[t]=e}static get residents(){return gtt}static get residentsCount(){return ftt}static registerDecorator(t,e){!function(t,e){ltt[t]=e}(t,e)}constructor(t,e){this._app=e,this._model=t||{},this._state={},this._delta=h7(ptt),e&&this.animation?.config&&(1==this.animation.config.autoplay||(this.animation.config.autoplay??1))&&(this.animation.started=!0),this.clearCache(),rtt.add(this),function(t){ftt++;var e=gtt[t];e||(e=gtt[t]={up:0,down:0}),e.up++}(t.type),vtt.register(this,t.type)}created(){}added(t){}removed(t){}async ready(){if(this.state.persistent){const{isViewMode:t,dataStorage:e}=this.app;t&&(this.data=await e.load(this))}}touch(){this.updatedAt=performance.now()}clearCache(...t){!function(t,...e){0==e.length?t.__cache__={}:e.forEach((e=>delete t.__cache__[e]))}(this,...t)}removeSelf(t){t?this.dispose():this.parent&&this.parent.removeComponent(this)}resetAnimation(){this._animation&&(this._animation.dispose(),this._animation=null,this._delta=h7(ptt))}dispose(){this.resetAnimation(),this.disposeMappings(),this.parent&&this.parent.removeComponent(this),delete this._text_substitutor,delete this._value_substitutor,this._disposed=!0,this.retention&&rtt.touch(),this.clearCache(),delete this._app}get nature(){return this.constructor.nature}get disposed(){return!!this._disposed}isLayer(){return!1}isGroup(){return!1}isContainer(){return!1}isLine(){return!1}isRoot(){return!1}isRootModel(){return!1}is3dish(){return!1}isIn3DSpace(){return!1}isTemplate(){return!!this.get("templatePrefix")}isHTMLElement(){return!1}isConnectable(){return!1}isIdentifiable(){return!0}replaceRefids(t){}get retention(){return Number(this.get("retention"))||0}get hasTextProperty(){return!0}get app(){return!this._app&&this.parent&&(this._app=this.parent.app),this._app}get model(){return this._model}get state(){return Object.assign({},this._model,this._state)}get hierarchy(){var t=h7(this._model);return this.volatile.forEach((e=>{delete t[e]})),t}get volatile(){return dtt}get textHidden(){return!!this._textHidden}set textHidden(t){this._textHidden=!!t,this.invalidate()}get(t){return this._model[t]}set(t,e){if("string"==typeof t)return this.set({[t]:e});var r={},n={},i=!1,a=(t=h7(t),this);return Object.getOwnPropertyNames(t).forEach((function(e){let s=a._model[e],o=t[e];T6(s,o)||(n[e]=s,r[e]=o,a._model[e]=o,delete a._state[e],i=!0)})),i&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("retention")&&rtt.add(this),r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("mappings")&&this.onchangeMappings(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}getState(t){return this._state.hasOwnProperty(t)?this._state[t]:this.get(t)}setState(t,e){if("string"==typeof t)return this.setState({[t]:e});var r={},n={},i=!1,a=(t=h7(t),this),s=this.getState("sensitive");return Object.getOwnPropertyNames(t).forEach((function(e){let o=a.getState(e),l=t[e];!s&&T6(o,l)||(n[e]=o,r[e]=l,a._state[e]=l,i=!0)})),i&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}get root(){return this.isRoot()?this:this.parent&&this.parent.root}get rootModel(){return this.isRootModel()?this:this.parent&&this.parent.rootModel}get parent(){return this._parent}set parent(t){this._parent=t}get anchors(){return this.nature.anchors||[]}findAnchor(t){return this.anchors.find((e=>e.name===t))}isDescendible(t){return!0}getContext(){return this._parent.getContext()}get center(){var t=this.bounds;return{x:t.left+t.width/2,y:t.top+t.height/2}}set center(t){if(t&&!isNaN(t.x)&&!isNaN(t.y)){var e=this.center;if(Math.round(100*t.x)/100!=Math.round(100*e.x)/100||Math.round(100*t.y)/100!=Math.round(100*e.y)/100){var r=t.x-e.x,n=t.y-e.y;this.path=this.path.map((t=>({x:t.x+r,y:t.y+n})))}}}get location(){const{x:t,y:e}=this.center;return{x:t,y:e,z:this.state.zPos}}set location(t){const{x:e,y:r,z:n}=t||{};this.center={x:e,y:r},isNaN(n)||this.setState("zPos",Number(n))}get rotate(){const{rotationX:t,rotationY:e,rotation:r}=this.state;return{x:t,y:e,z:-r}}set rotate(t){const{x:e,y:r,z:n}=t;this.setState({rotationX:e,rotationY:r,rotation:-n})}get dimension(){const{width:t,height:e}=this.bounds,{depth:r}=this.state;return{width:t,height:e,depth:r}}set dimension(t){const{width:e,height:r,depth:n}=t,{top:i,left:a}=this.bounds;this.bounds={top:i,left:a,width:e,height:r},this.setState("depth",n)}get bounds(){var t,e,r,n,i=this.path;t=e=i[0].x,r=n=i[0].y;for(let a=1;a<i.length;a++){let s=i[a];s.x<t?t=s.x:s.x>e&&(e=s.x),s.y<r?r=s.y:s.y>n&&(n=s.y)}return{left:t,top:r,width:e-t,height:n-r}}set bounds(t){var e=this.bounds;if(Math.round(100*t.width)/100!=Math.round(100*e.width)/100||Math.round(100*t.height)/100!=Math.round(100*e.height)/100||Math.round(100*t.left)/100!=Math.round(100*e.left)/100||Math.round(100*t.top)/100!=Math.round(100*e.top)/100){var r=0==e.width?1:t.width/e.width,n=0==e.height?1:t.height/e.height;this.path=this.path.map((i=>({x:t.left+(i.x-e.left)*r,y:t.top+(i.y-e.top)*n})))}}get path(){return U7("이 컴포넌트에 get path 가 구현되어있지 않음.",this),[]}set path(t){U7("이 컴포넌트에 get path 가 구현되어있지 않음.",this)}get drawPath(){return this.path}outline(t){return function(t,e){var r=t.path.slice();if(r&&r.length){var n=1,i=[];if(t.isLine()||r.push(r[0]),e<=0)return t.transcoordS2T(r[0].x,r[0].y);if(e>=1)return t.transcoordS2T(r[r.length-1].x,r[r.length-1].y);for(;r[n];){let t=r[n-1],e=r[n],a=e.x-t.x,s=e.y-t.y;i.push(Math.sqrt(a*a+s*s)),n++}var a=i.reduce((function(t,e){return t+e}),0);n=0;var s=0;do{s+=i[n++]}while(s/a<e);e=(e-(s-=i[--n])/a)*(a/i[n]);var o=r[n%r.length],l=r[(n+1)%r.length],h=o.x+Math.round((l.x-o.x)*e),c=o.y+Math.round((l.y-o.y)*e);return t.transcoordS2T(h,c)}U7("path should not be empty")}(this,t||0)}get strokeStyle(){return this.get("strokeStyle")}set strokeStyle(t){this.set("strokeStyle",t)}get fillStyle(){return this.getState("fillStyle")}set fillStyle(t){this.setState("fillStyle",t)}get fontColor(){return this.get("fontColor")}set fontColor(t){this.set("fontColor",String(P7(t)))}get rotation(){return this.getState("rotation")}set rotation(t){this.setState("rotation",Number(P7(t)))}contains(t,e){return!1}get mutable(){return this.nature.mutable}get resizable(){return this.nature.resizable&&!this.stuck}adjustResize(t,e,r){if(r){let e=this.bounds,r=e.height/e.width,n=t.width-e.width,i=t.height-e.height;n*r>i?i=n*r:n=i/r;let a=t.left-e.left,s=t.top-e.top;return 0!=a&&0!=s?(s=-i,a=-n):0!=a?a=-n:0!=s&&(s=-i),{left:e.left+a,top:e.top+s,width:e.width+n,height:e.height+i}}return t}get rotatable(){return this.nature.rotatable&&!this.stuck}adjustRotation(t,e){if(e||this.app.rotateStepForced){let e=this.app.rotateStep;return Math.floor((t+e/2)/e)*e}return t}get capturable(){return!1!==this.get("capturable")&&(this.app.isEditMode||!this.hidden)}get stuck(){return!!(this.parent&&this.parent.layout.isStuck(this)||this.get("locked"))}findFirst(t,...e){if(t(this,...e))return this}findAll(t,...e){return"string"==typeof t?p9(t,this,e[0]||this):"function"==typeof t&&t(this,...e)?[this]:void 0}capture(t,e,r){if(!this.capturable||r?.(this))return!1;var n=this.transcoordP2S(t,e);return this.contains(n.x,n.y)?this:void 0}prepare(t,e){t(this)}prepareIf(t){t&&this.prepare&&this.prepare((t=>{this.invalidate()}),(t=>{U7(t)}))}get decotag(){const{id:t,tag:e}=this.state;return(t?`#${t}`:"")+(e?`@${e}`:"")}get decorators(){return["decotag","data-spread"]}get reactionDecorators(){return["bouncing-arrow"]}get hidden(){return this.getState("hidden")||!this.data&&0!==this.data&&this.getState("ndns")||this.isTemplate()}set hidden(t){this.setState("hidden",t)}draw(t){t.save(),this.prerender(t),this.render(t),this.postrender(t),t.restore()}delta(t,e){if(void 0===e)return t?this._delta[t]:this._delta;this._delta[t]=e}prerender(t){var e=this.rotatePoint,{scale:r,rotation:n,shadow:i,alpha:a}=this.state,s=(r&&r.x||1)*this._delta.sx,o=(r&&r.y||1)*this._delta.sy,l=(n||0)+this._delta.theta,{tx:h=0,ty:c=0}=this._delta,u=(a||1)-this._delta.fade;(h||c)&&t.translate(h,c),(1!=s||1!=o||l)&&(t.translate(e.x,e.y),1==s&&1==o||t.scale(s,o),l&&t.rotate(l),t.translate(-e.x,-e.y)),u&&(t.globalAlpha=u),i&&s9(t,i,this),this.app.isEditMode&&this.hidden&&(t.globalAlpha*=.5)}render(t){}postrender(t){this.drawText(t)}drawText(t){!this.textHidden&&this.text&&this.hasTextProperty&&U9(t,this.textBounds,this.textLines(t),this.state)}drawStroke(t,e){L9(t,e?{...this.state,...e}:this.state)}drawFill(t,e){this.fillStyle&&"transparent"!=this.fillStyle&&(O9(t,this.bounds,this.center,e?{...this.state,...e}:this.state,this),function(t){t.shadowColor="transparent"}(t))}animate(t){return this._animate&&this._animate.stop(),this._animate=D8(t),this._animate}move({x:t,y:e}){var r=this.path,n=t,i=e;this.path=r.map((t=>({x:t.x+n,y:t.y+i})))}symmetryX(t){"number"!=typeof t&&(t=this.center.x);var{rotation:e}=this.state,r=this.fillStyle;if(this.set("rotation",2*Math.PI-e),r&&"gradient"===r.type&&"linear"===r.gradientType){var n=h7(r);n.rotation=(Math.PI-parseFloat(r.rotation||0))%(2*Math.PI),this.set("fillStyle",n)}this.path=this.path.map((e=>({x:2*t-e.x,y:e.y})))}symmetryY(t){this.symmetryX(),this.set("rotation",(Math.PI+this.model.rotation)%(2*Math.PI)),t&&this.move({x:0,y:2*(t-this.center.y)},!1)}get animation(){if(this.app.isViewMode&&!this.isTemplate()){if(!this._animation){var t=this.state.animation;t&&t.oncreate&&(this._animation=L8(this,t.oncreate))}return this._animation}}effect(t,e){return function(t,e,r){var n=o9[r.type];n&&n(t,e,r)}(this,t,e)}get started(){return!!this.animation?.started}set started(t){this.animation&&(this.animation.started=t)}invalidate(){this.parent&&this.parent.invalidate()}get font(){return z9(this.model)}get lineHeight(){var t=this.get("lineHeight");return t||1.2*this.fontSize}defaultTextSubstitutor(){var t=this.getState("text");return null==t?"":String(t)}get textSubstitutor(){return this._text_substitutor||(this._text_substitutor=att(this.getState("text"),this)||this.defaultTextSubstitutor),this._text_substitutor}get text(){var t=this.get("textFormat");return t?function(t,e){if(!t||isNaN(+e))return e;var r,n,i,a,s,o,l,h,c,u=t.length,d=t.search(/[0-9\-\+#]/),p=d>0?t.substring(0,d):"",f=t.split("").reverse().join(""),g=f.search(/[0-9\-\+#]/),v=u-g,m=t.substring(v,v+1),y=v+("."===m||","===m?1:0),b=g>0?t.substring(y,u):"";if(r=(e="-"===(t=t.substring(d,y)).charAt(0)?-e:+e)<0?e=-e:0,i=(n=t.match(/[^\d\-\+#]/g))&&n[1]&&n[0]||",",t=t.split("."),e=+(e=e.toFixed(t[1]&&t[1].length))+"",s=t[1]&&t[1].lastIndexOf("0"),(!(l=e.split("."))[1]||l[1]&&l[1].length<=s)&&(e=(+e).toFixed(s+1)),h=t[0].split(i),t[0]=h.join(""),(a=t[0]&&t[0].indexOf("0"))>-1)for(;l[0].length<t[0].length-a;)l[0]="0"+l[0];else 0==+l[0]&&(l[0]="");if((e=e.split("."))[0]=l[0],o=h[1]&&h[h.length-1].length){for(f="",v=(c=e[0]).length%o,u=c.length,y=0;y<u;y++)f+=c.charAt(y),!((y-v+1)%o)&&y<u-o&&(f+=i);e[0]=f}return e[1]=t[1]&&e[1]?"."+e[1]:"","0"!==(n=e.join(""))&&""!==n||(r=!1),p+("+"==t[0].substring(0,1)?r?"-":"+":r?"-":"")+n+b}(t,this.textSubstitutor()):this.textSubstitutor()}set text(t){delete this._text_substitutor;var e=P7(t);this.setState("text",null==e?"":String(e))}textLines(t){const{textWrap:e,supportMarkdown:r}=this.state;return B9(t||this.getContext(),this.textBounds.width,this.font,this.text,e,r)}get textBounds(){var{paddingTop:t,paddingLeft:e,paddingRight:r,paddingBottom:n}=this.state;n||=0,t||=0,e||=0,r||=0;var{left:i,top:a,width:s,height:o}=this.bounds;return{left:i+e,top:a+t,width:Math.max(s-e-r,0),height:Math.max(o-t-n,0)}}get textRotation(){return 0}get rotatePoint(){return this.center}trim(){delete this._model[""],"chartjs"!==this._model.type&&delete this._model.chart}get value(){var t=this.nature["value-property"]||"text";return"value"==t?this.getState("value"):this[t]}set value(t){var e=this.nature["value-property"]||"text";"value"==e?this.setState("value",t):this[e]=t}get data(){return this.getState("data")}set data(t){this.setState("data",t),this.touch()}set tap(t){var e=this.model.event?.tap;if(e){const{cx:t,cy:r}=this.center;this.rootModel?._doEventAction(e,this,!0,new CustomEvent("click",{offsetX:t,offsetY:r}))}}get mappings(){return!this._mappings&&this.parent&&this.buildMappings(),this._mappings}serialize(...t){return JSON.stringify(this.hierarchy,...t)}get controls(){}closeScene(t){this.rootModel.closeScene(t)}}mtt.union=function(t){var e,r,n,i;return t.forEach((t=>{void 0===e?(e=t.left,r=t.top,n=t.left+t.width,i=t.top+t.height):(e=Math.min(t.left,e),r=Math.min(t.top,r),n=Math.max(t.left+t.width,n),i=Math.max(t.top+t.height,i))})),{left:e,top:r,width:n-e,height:i-r}},mtt.transcoordR=G9,mtt.transcoordRR=Y9,mtt.createCanvas=R9,mtt.memoize=Y7,mtt.mixin=W7,mtt.drawText=U9,mtt.font=z9,mtt.textLines=B9,mtt.drawStroke=L9,mtt.drawFill=O9,mtt.reposition=K9,mtt.RetentionManager=rtt,mtt.template=function(t,e,r){var n=A8.imports._.templateSettings||A8;r&&H6(t,e,r)&&(e=void 0),t=b8(t),e=$6({},e,n,l8);var i,a,s=$6({},e.imports,n.imports,l8),o=n6(s),l=function(t,e){return a8(e,(function(e){return t[e]}))}(s,o),h=0,c=e.interpolate||T8,u="__p += '",d=RegExp((e.escape||T8).source+"|"+c.source+"|"+(c===u8?M8:T8).source+"|"+(e.evaluate||T8).source+"|$","g"),p=P8.call(e,"sourceURL")?"//# sourceURL="+(e.sourceURL+"").replace(/\s/g," ")+"\n":"";t.replace(d,(function(e,r,n,s,o,l){return n||(n=s),u+=t.slice(h,l).replace(C8,c8),r&&(i=!0,u+="' +\n__e("+r+") +\n'"),o&&(a=!0,u+="';\n"+o+";\n__p += '"),n&&(u+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),h=l+e.length,e})),u+="';\n";var f=P8.call(e,"variable")&&e.variable;if(f){if(E8.test(f))throw new Error("Invalid `variable` option passed into `_.template`")}else u="with (obj) {\n"+u+"\n}\n";u=(a?u.replace(_8,""):u).replace(k8,"$1").replace(S8,"$1;"),u="function("+(f||"obj")+") {\n"+(f?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(i?", __e = _.escape":"")+(a?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+u+"return __p\n}";var g=i8((function(){return Function(o,p+"return "+u).apply(void 0,l)}));if(g.source=u,r8(g))throw g;return g},mtt.buildSubstitutor=att,Object.assign(mtt.prototype,{drawEffect:function(t){const{effects:e}=this.state;(e||[]).forEach((e=>{this.effect(t,e)}))},prepareFill:function(t,e){var r=this.fillStyle;if(r&&"pattern"==r.type&&r.image){if("string"!=typeof r.image)return this._pattern_image_origin=this._pattern_image=r.image,void t(this);this._pattern_image=null,this._pattern_image_origin=new Image;var n=this;this._pattern_image_origin.onload=function(){if(!r.fitPattern&&!r.width&&!r.height)return n._pattern_image=n._pattern_image_origin,void t(this);let e=r.width||this.width,i=r.height||this.height;r.fitPattern&&(e=n.bounds.width,i=n.bounds.height);let a=R9(e,i);a.getContext("2d").drawImage(this,0,0,this.width,this.height,0,0,e,i),n._pattern_image=a,t(this)},this._pattern_image_origin.onerror=function(t){e(t)};try{"data"!==String(r.image).substring(0,4)?this._pattern_image_origin.crossOrigin="use-credentials":this._pattern_image_origin.crossOrigin=null,this._pattern_image_origin.src=this.app.url(r.image)}catch(t){e(t)}}else t(this)},prepareFillIf:function(t){t&&this.prepareFill((t=>{this.invalidate()}),(t=>{U7(t)}))},onchangeFill:function(t,e){var r=this.fillStyle;r&&"pattern"!==r.type?this._pattern_image&&(this._pattern_image=null,this._pattern_image_origin=null):r?.image&&this.prepareFillIf(r.image)},drawImage:function(t,e,r,n,i,a){e.complete?t.drawImage(e,r,n,i,a):e.addEventListener("load",(()=>{this.invalidate()}))},mutateBounds:function(t,e){var r=this.bounds,n=this.rotatePoint,i=this.get("rotation"),a=this.get("scale");if(t){var s=t.call(e,r);s&&(r=s)}var{left:o,top:l,width:h,height:c}=r,u=[{x:o,y:l},{x:o+h,y:l+c}],d=(u=u.map((t=>Y9(t.x,t.y,n,i,a))))[0],p=u[1];n={x:(d.x+p.x)/2,y:(d.y+p.y)/2},d=(u=u.map((t=>G9(t.x,t.y,n,i,a))))[0],p=u[1],this.bounds={left:d.x,top:d.y,width:p.x-d.x,height:p.y-d.y}},mutatePath:function(t,e,r){var n=this.path,i=this.rotatePoint;this.get("rotation"),this.get("scale"),t&&(n=t.call(r,n));var a=n.map((t=>this.transcoordS2P(t.x,t.y)));e&&(n=e.call(r,a))&&(a=n);var s,o,l,h,c={x:0,y:0};s=o=(n=a.map((t=>this.transcoordP2S(t.x,t.y,c))))[0].x,l=h=n[0].y;for(let t=1;t<n.length;t++){let e=n[t];e.x<s?s=e.x:e.x>o&&(o=e.x),e.y<l?l=e.y:e.y>h&&(h=e.y)}i={x:(s+o)/2,y:(l+h)/2},i=this.transcoordS2P(i.x,i.y,c),this.path=a.map((t=>this.transcoordP2S(t.x,t.y,i)))},access:function(t){if(t){var e=String(t),r=(e.match(/#{(\S*)}/)||[]).map((t=>itt(t)))[0];if(r)return r.accessor(this.getState(r.target));var n=(e.match(/\${[^}]*}/)||[]).map((t=>itt(t)))[0];if(n){let t=this.root.findById(n.target);return n.accessor(this.getState(t))}return t}},substitute:function(t,e){if(t){var r=String(t),n=e||P7,i=(r.match(/#{(\S*)}/gi)||[]).map((t=>itt(t))),a=(r.match(/\${[^}]*}/gi)||[]).map((t=>itt(t)));if(0==i.length&&0==a.length)return r;var s=r;return i.forEach((t=>{let e=n(t.accessor(this.getState(t.target)));s=s.replace(t.match,void 0===e?"":e)})),a.forEach((t=>{let e=this.root.findById(t.target),r=n(t.accessor(e&&e.data));s=s.replace(t.match,void 0===r?"":r)})),s}},onchangeMappings:function(t,e){this.disposeMappings(),I9.call(this)},onchangeData:function(t,e){this.state.persistent&&this.app?.isViewMode&&this.app?.dataStorage.save(this,t.data),I9.call(this,[!0])},buildMappings:function(){if(this._model.mappings)return!this._model.mappings instanceof Array?(U7("Mappings model is invalid (should be a Array) ..",this._model.mappings),void(this._mappings=[])):void(this._mappings=(this._model.mappings||[]).filter((t=>t.rule&&t.target)).map((t=>new C9(t,this))));this._mappings=[]},executeMappings:I9,disposeMappings:function(){this._mappings&&this._mappings.forEach((t=>t.dispose())),delete this._mappings},ondropfile:function(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void this.set("fillStyle",{type:"pattern",image:e[r],fitPattern:!0})},transcoordS2P:function(t,e,r){if(!this.parent)return{x:t,y:e};let{rotation:n=0,scale:i={x:1,y:1}}=this.state;if(this.isLayer()){const r=this.state.translate;let a=Y9(t,e,void 0,n+this._delta.theta,i);return r&&(a.x+=r.x,a.y+=r.y),a}r=r||this.rotatePoint;const{theta:a=0,tx:s=0,ty:o=0,sx:l=1,sy:h=1}=this._delta||{};r={x:r.x+s,y:r.y+o},i={x:i.x*l,y:i.y*h};const c=Y9(t+s,e+o,r,n+a,i);return{x:c.x-(r.x*i.x-r.x),y:c.y-(r.y*i.y-r.y)}},transcoordP2S:function(t,e,r){if(!this.parent)return{x:t,y:e};const{rotation:n=0,scale:i={x:1,y:1}}=this.state;if(this.isLayer()){const r=this.state.translate;let a=G9(t,e,r,n,i);return r&&(a.x-=r.x/i.x,a.y-=r.y/i.y),a}const a=G9(t,e,r=r||this.rotatePoint,n,i);return{x:a.x+(r.x-r.x/i.x),y:a.y+(r.y-r.y/i.y)}},transcoordS2T:function(t,e,r){r=r||this.rootModel;const n=[];for(let t=this.parent;t&&t!==r;t=t.parent)n.push(t);let i=this.transcoordS2P(t,e);return n.forEach((t=>{const{scale:e}=t.model,r=t.bounds;if(e){const n=t.rotatePoint;i.x+=(n.x-r.left)*e.x,i.y+=(n.y-r.top)*e.y}else i.x+=r.left,i.y+=r.top;i=t.transcoordS2P(i.x,i.y)})),i},transcoordT2P:function(t,e,r){r=r||this.rootModel;const n=[];for(let t=this.parent;t&&t!==r;t=t.parent)n.splice(0,0,t);let i={x:t,y:e};return n.forEach((t=>{const{scale:e}=t.model;i=t.transcoordP2S(i.x,i.y);const r=t.bounds;if(e){const n=t.rotatePoint;i.x-=(n.x-r.left)/e.x,i.y-=(n.y-r.top)/e.y}else i.x-=r.left,i.y-=r.top})),i},transcoordT2S:function(t,e,r){const n=this.transcoordT2P(t,e,r);return this.transcoordP2S(n.x,n.y)},transcoordS2TR:function(t,e,r){r=r||this.rootModel;const n=this.transcoordS2T(t,e,r);return Y9(n.x,n.y,void 0,(r.get("rotation")||0)+r._delta.theta)},transcoordS2O:function(t,e,r){const n=this.rootModel,i=this.transcoordS2T(t,e,n);return r.transcoordT2S(i.x,i.y,n)},transcoordC2S:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;const{translate:n={x:0,y:0},scale:i={x:1,y:1},rotation:a=0}=r.model;let s=G9(t,e,n,a,i);return n&&(s.x-=n.x/i.x,s.y-=n.y/i.y),r===this?s:this.transcoordT2S(s.x,s.y,r)},transcoordS2C:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;let n;n=r!==this?this.transcoordS2T(t,e,r):{x:t,y:e};const{translate:i={x:0,y:0},rotation:a=0,scale:s={x:1,y:1}}=r.model;return n=Y9(n.x,n.y,void 0,a+r._delta.theta,s),i&&(n.x+=i.x,n.y+=i.y),n}}),["rotatePoint","font","lineHeight","retention"].forEach((t=>mtt.memoize(mtt.prototype,t,!1))),["bounds","center","textBounds"].forEach((t=>mtt.memoize(mtt.prototype,t,!0))),mtt.mixin(mtt.prototype,F7.withEvent);class ytt extends mtt{set rotationX(t){this.setState("rotationX",t)}get rotationX(){return this.getState("rotationX")}set rotationY(t){this.setState("rotationY",t)}get rotationY(){return this.getState("rotationY")}set rotationZ(t){this.setState("rotation",t)}get rotationZ(){return this.getState("rotation")}set zPos(t){this.setState("zPos",t)}get zPos(){return this.getState("zPos")}set depth(t){this.setState("depth",t)}get depth(){return this.getState("depth")}postrender(t){this.drawFill(t),this.drawStroke(t),super.postrender(t)}render(t){var e=this.drawPath,{round:r=0}=this.state;if(!(e.length<=1)){t.beginPath();for(var n=0;n<e.length;n++){const l=e[(n-1+e.length)%e.length],h=e[(n+e.length)%e.length],c=e[(n+1)%e.length];if(l.x===h.x&&l.y===h.y)continue;var i=0!==(o=Math.sqrt((l.x-h.x)*(l.x-h.x)+(l.y-h.y)*(l.y-h.y)))?Math.atan2(l.x-h.x,l.y-h.y):0,a=Math.sin(i)*Math.min(r,o/2)+h.x,s=Math.cos(i)*Math.min(r,o/2)+h.y;const u=r>0||0!==o?{x:a,y:s}:h;var o;i=0!==(o=Math.sqrt((c.x-h.x)*(c.x-h.x)+(c.y-h.y)*(c.y-h.y)))?Math.atan2(c.x-h.x,c.y-h.y):0,a=Math.sin(i)*Math.min(r,o/2)+h.x,s=Math.cos(i)*Math.min(r,o/2)+h.y;const d=r>0||0!==o?{x:a,y:s}:h;0==n?t.moveTo(u.x,u.y):t.lineTo(u.x,u.y),r>0&&t.quadraticCurveTo(h.x,h.y,d.x,d.y)}t.closePath()}}}function btt(t,e,r){return Math.max(0,Math.min(t,Math.min(r,e)/2))}var wtt=t=>{var e=class extends t{contains(t,e){var{left:r,top:n,width:i,height:a,lineWidth:s=0}=this.state,o=s/2;return t<Math.max(r+i,r)+o&&t>Math.min(r+i,r)-o&&e<Math.max(n+a,n)+o&&e>Math.min(n+a,n)-o}set path(t){var e=t[0],r=t[2];this.set({left:e.x,top:e.y,width:r.x-e.x,height:r.y-e.y})}get path(){var{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return[{x:t,y:e},{x:t+r,y:e},{x:t+r,y:e+n},{x:t,y:e+n}]}get anchors(){return function(t){var{left:e,top:r,width:n,height:i}=t.bounds,a=e+n/2,s=r+i/2;return[{name:"TOP",position:{x:a,y:r}},{name:"RIGHT",position:{x:e+n,y:s}},{name:"BOTTOM",position:{x:a,y:r+i}},{name:"LEFT",position:{x:e,y:s}}]}(this)}get bounds(){const{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return{left:t,top:e,width:r,height:n}}set bounds(t){this.set({left:0,top:0,width:0,height:0,...t})}render(t){var{round:e=0}=this.model,{left:r,top:n,width:i,height:a}=this.bounds;t.translate(r,n),t.beginPath(),(e=btt(e,i,a))>0?t.roundRect(0,0,i,a,e):t.rect(0,0,i,a),t.translate(-r,-n)}};return Y7(e.prototype,"path",!1),e};const xtt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"textarea",label:"front-side-template",name:"frontSideTemplate",property:{language:"html"}},{type:"textarea",label:"back-side-template",name:"backSideTemplate",property:{language:"html"}},{type:"textarea",label:"style",name:"style",property:{language:"css"}}],help:"scene/component/info-window"};const Att=20;function _tt(t,e){var r=t.split(/\s+/),n=r.indexOf(e);return-1!=n?r.splice(n,1):r.splice(-1,0,e),r.join(" ")}class ktt extends(wtt(ytt)){static get image(){return ktt._image||(ktt._image=new Image,ktt._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAY1BMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAbxiAAAAIHRSTlMA+gPshCwwWFzYCeLRm7QRG6rLeDZI9JOJJDtjb1HAf1sAT80AAAQQSURBVHhe7MCBAAAAAMKw/KkzOMG2BAAAAKeu3lUohIEggO7jQi5qHqpgwML5/6+0F0y02z31FlvMMLKt86QMQ1ined2Evih1hFFjLfRWjgzDOGZ6JSiM00B9EuHALtQxJLiQBmqSBCeSUEuEGzs1BDjSaHxWOKK5Eyz/4SoMV/hp4+vtcPkdwZD/udwevNg7t1xXYRiKmkB7C+ENlPLq8fxHeX+RGjWQ1D45ldcIulBIvCvYJGBEadyTzxAcfY57NBjpLScOO/bzugcTHe7IMwiSLMcdHZhocMcMgTLjjgZM7F1bCJZ2v27ARGzYDwIk2Z+JYGJ/iiwQLMv+JAEThjkmRG64Q0Q+gIiIiIiIiIiIyFy0KRFt0bOJZAWSUigmkQaJaXhENiRnYBEpkZySRSRGcmIWEaQnYhHRSI5mESmQnIJFZIqQmGhiEYEbEnPjGlEGjYTogW/WUkOXENENSqZfEXmDiIiIiIiIiIiIiIiIiIiImq5ETIpRpBpjJCMeKy6Ri0ZS9MQjkmkkJs1YRDokp2MRyZGclkUkQnIiEQltaX3Lzb6yiGTpl2y/avqSAxGgelCOKI+Kc2isL0TUSsZ4EREREREREREREREREREREfnIQzXrNWSRTeNxnlOwIgueIr6AAyE+CpiqMEUK71IDO4E+LluEKYKnKcMUifEsTZgiJZ5lDVNkwJPcqzBFoPF/HplfxL/w6b4EPGv1h18Weya1TL8iIiIeiIiIiIiIiEjkPefxV+5YA9PPHylB+u5aqgZ39H+jKOxrqtu+pkzvr9YbzoZ6w2OFkzcrA3yE4WZlSSyFk54VoA/wR43+FaD+r9w32QdWvgvjp2ty2xq8qHPHmtyPFxfrK3hw1ejERlAlfR/Ame2OTow05d4rOLLSlHtDVhI0uRO01JeZ405op6zgNNXT+bIRfpIgn+AkU4pOxBscohojdCHu4RRzjC5EYwVHqRONDkSnEvK/CB3QSU32IRW3ZPnj9iEVoGCNTLVrh8ia1x+6wq8xvB5mz8pxu7oPwIn9lcR0AiuX1+1KX+BXqdvXzWsAC0NsGjzZsS/2Bd6yRA5RgIHkXNhSD3whASZ8rrB9mItuEAizac0fDlHxDMEwpQfD1tW4y3Hjfy5s9nOHH3uwWA+EqEJBWCjoTL/S5toBB/7hu6zer74NgqSP39zJU+qQX3ix763mHTqvIVRUVprCljlElRkEjBqNYevH8veBJ2xhiyhE8YctmhDFH7ZoQhR/2KIJUfxhiyRE8YctmhDFH7ZoQhR/2OIJUfxhC9Ppf/t1jgJACERRsHGyYRZB0Ujvf0xD8w6kP7y6RZmgf/oTFTtbbzJVxZWo2Nlqw6TVy5GowNl6ssm7v50obamfSxQAAAAAAAsKLM15fb3vpQAAAABJRU5ErkJggg=="),ktt._image}static toggle(t,e,r,n){if(e){var i=t.root.findById(e);i?i._findInfoWindowByComponent(t)?ktt.hide(t,e):ktt.show(t,e,r,n):console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}static hide(t,e){if(e){var r=t.root.findById(e);r?r._removeInfoWindow(t):console.warn("InfoWindow Not Found.",e)}}static show(t,e,r,n){if(e){var i=t.root.findById(e);if(i){if(!i._findInfoWindowByComponent(t)){var{frontSideTemplate:a="",backSideTemplate:s=""}=i.model,o=[a,s].filter((t=>String(t).trim()));if(o=o.map((t=>mtt.template(function(t,e,r){return(e||r?['<div class="info-window-btns">',e?'<button class="closable">&#88</button>':"",r?'<button class="flipable">&#8652</button>':"","</div>"]:[]).concat(['<div class="info-window-content">',t,"</div>"]).join("")}(t,!r,2==o.length)))),0!=o.length){var l='\n.flip {\n backface-visibility: hidden;\n border-radius: 7px;\n height: auto;\n font: normal 14px helvetica, arial, san serif;\n position: absolute;\n opacity: 0.9;\n transform-origin: 50% 50% 0px;\n transition: all 2s;\n min-width: 100px;\n min-height: 50px;\n background-color: #3e424e;\n box-shadow: 2px 3px 2px 0px rgba(0,0,0,0.15);\n}\n\n#side-1 {\n transform: rotateY(0deg);\n}\n\n.flip:after {\n content: "";\n display: block;\n position: absolute;\n opacity: 0.9;\n width: 0;\n height: 0;\n}\n\n.flip.arrow-top:after {\n left: 45%;\n top: -17px;\n border-left: 10px solid transparent;\n border-bottom: 18px solid #323b44;\n border-right: 10px solid transparent;\n}\n\n.flip.arrow-right:after {\n left: 100%;\n top: 48%;\n border-top: 10px solid transparent;\n border-left: 18px solid #323b44;\n border-bottom: 10px solid transparent;\n}\n\n.flip.arrow-bottom:after {\n left: 45%;\n top: 100%;\n border-left: 10px solid transparent;\n border-top: 18px solid #323b44;\n border-right: 10px solid transparent;\n}\n\n.flip.arrow-left:after {\n right: 100%;\n top: 48%;\n border-top: 10px solid transparent;\n border-right: 18px solid #323b44;\n border-bottom: 10px solid transparent;\n}\n\n#side-2 {\n transform: rotateY(180deg);\n}\n\n.flip-side-1 {\n transform: rotateY(0deg) !important;\n}\n\n.flip-side-2 {\n transform: rotateY(180deg) !important;\n}\n\n.info-window-btns {\n position: absolute;\n top: -18px;\n right: 5px;\n overflow: hidden;\n}\n\n.info-window-content {\n padding: 10px;\n color: #efefef;\n font-size: 13px;\n line-height: 1.4;\n}\n\n.info-window-btns button {\n width: 40px;\n height: 40px;\n float: right;\n border: 0;\n border-radius: 50%;\n background-color: #2a7da1;\n margin-right: 3px;\n text-align: center;\n cursor: pointer;\n font-size: 35px;\n color: #fff;\n line-height: 0;\n}\n\n.info-window-btns button:hover {\n background-color: #60bb23;\n}\n'+i.get("style"),{left:h,top:c}=t.bounds,{x:u,y:d}=n?t.rootModel.transcoordC2S(n.x,n.y):t.transcoordS2T(h,c);h=u,c=d;var p=document.createElement("span");p.style.position="absolute";var f=document.createElement("style");if(f.type="text/css",f.appendChild(document.createTextNode(l)),p.appendChild(f),o[0]){var g=document.createElement("div");g.id="side-1",g.className="flip",g.style.display="inline-block",g.innerHTML=o[0](t)}if(o[1]){var v=document.createElement("div");v.id="side-2",v.className="flip",v.style.display="inline-block",v.innerHTML=o[1](t)}r9.forEach((function(t){p.addEventListener(t,(function(t){t.stopPropagation()}))})),n9.forEach((function(t){p.addEventListener(t,(function(t){t.stopPropagation()}))}));var m=t.root.model_layer.overlay;if(g&&p.appendChild(g),v&&p.appendChild(v),m.appendChild(p),i._addInfoWindow(t,p,f),g){let r=g.querySelector(".info-window-btns > .flipable");r&&r.addEventListener("click",(function(t){t.preventDefault(),v.className=_tt(v.className,"flip-side-1"),g.className=_tt(g.className,"flip-side-2")}),!1);let n=g.querySelector(".info-window-btns > .closable");n&&n.addEventListener("click",(function(r){r.preventDefault(),ktt.hide(t,e)}),!1)}if(v){let r=v.querySelector(".info-window-btns > .flipable");r&&r.addEventListener("click",(function(t){t.preventDefault(),v.className=_tt(v.className,"flip-side-1"),g.className=_tt(g.className,"flip-side-2")}),!1);let n=v.querySelector(".info-window-btns > .closable");n&&n.addEventListener("click",(function(r){r.preventDefault(),ktt.hide(t,e)}),!1)}var y=g.offsetWidth,b=g.offsetHeight;window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var w=t.rootModel.target.getBoundingClientRect(),x=[];g&&x.push(g),v&&x.push(v);var A={x:h,y:c},_=t.transcoordS2C(A.x,A.y);if(_.x+y/2+w.left<w.right&&_.x-y/2>w.left){if(b+Att<_.y)return p.style.marginLeft=A.x-y/2+"px",p.style.marginTop=A.y-b-Att+"px",void x.forEach((t=>t.className+=" arrow-bottom"));if(_=t.transcoordS2C(A.x,A.y+b+Att),w.bottom>_.y+w.top)return p.style.marginLeft=A.x-y/2+"px",p.style.marginTop=A.y+Att+"px",void x.forEach((t=>t.className+=" arrow-top"))}if((_=t.transcoordS2C(A.x,A.y)).x-(y+Att)>w.left)return p.style.marginLeft=A.x-y-Att+"px",p.style.marginTop=A.y-b/2+"px",void x.forEach((t=>t.className+=" arrow-right"));p.style.marginLeft=A.x+Att+"px",p.style.marginTop=A.y-b/2+"px",x.forEach((t=>t.className+=" arrow-left"))}}}else console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}dispose(){this.infoWindows.map((t=>t.component)).forEach((t=>this._removeInfoWindow(t))),super.dispose()}get infoWindows(){return this._windows||(this._windows=[]),this._windows}_findInfoWindowByComponent(t){return this.infoWindows.find((e=>e.component===t))}_addInfoWindow(t,e,r){this._findInfoWindowByComponent(t)||this._windows.push({component:t,window:e,styleElement:r})}_removeInfoWindow(t){var e=this._findInfoWindowByComponent(t);if(!e)return;let r=e.window;r&&r.parentNode.removeChild(r);var n=this.infoWindows.lastIndexOf(e);this.infoWindows.splice(n,1)}render(t){var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),this.drawImage(t,ktt.image,e,r,n,i)}get hasTextProperty(){return!1}get nature(){return xtt}}mtt.register("info-window",ktt);var Stt={};var Ett={list:function(){return{...Stt}},register:function(t,e){Stt[t]=e},unregister:function(t){delete Stt[t]},get:function(t){if(t){var e=Stt[t];return e||U7("Layout Not Found - ",t),e}}},Mtt={reflow:function(t,e){this.drawables(t).filter((t=>t.isHTMLElement())).forEach((t=>t.reposition()))},capturables:function(t){return t.components},drawables:function(t){return t.app&&!t.app.isViewMode?t.components:t.components.filter((t=>!t.hidden))},isStuck:function(t){return!1},ABSOLUTE:!0};Ett.register("html-absolute",Mtt);const Ttt=["run","goto","goto-playlist","link-open","link-move","route-page","start-scenario","run-scenario","export-data","import-data"],Ctt="auto";const Ptt=new WeakMap;function Itt(t){const e=t.root,r=Ptt.get(e);if(!r)return;if(e===t)return r.forEach((t=>Itt(t[0]))),void Ptt.delete(e);const n=r.findIndex((e=>e[0]===t));if(-1===n)return;const i=r[n][1];i.div.parentNode?.removeChild(i.div),i.scene.target=null,i.scene.release?.(),r.splice(n,1)}class Rtt{static hideAll(t){(Ptt.get(t)||[]).forEach((([t])=>Itt(t)))}static hide(t){const e=t.root,r=Ptt.get(e);if(!r)return;const n=r.findIndex((e=>e[0]===t));if(-1===n)return;const i=r[n][1];i.div.style.backgroundColor="transparent",function(t,e){t.style.opacity=1,t.style.transform="scale(1)";let r=+new Date;const n=()=>{const i=Math.min((new Date-r)/200,1);t.style.opacity=1-i,t.style.transform=`scale(${1-i})`,i<1?requestAnimationFrame(n):(t.style.display="none",e&&e())};n()}(i.div,(()=>{Itt(t)}))}static show(t,e,r={}){const{data:n,modal:i=!1,closable:a=!0,minimizable:s=!1,draggable:o=!1,output:l=!0,title:h=""}=r,c=t.app.refProvider;c?.get(e,!0).then((e=>{const c=document.createElement("div"),u=c.style;if(c.setAttribute("popup",""),i){const{width:e,height:r}=t.rootModel.bounds;Object.assign(u,{position:"fixed",zIndex:1,left:0,top:0,width:`${e}px`,height:`${r}px`,overflow:"hidden",backgroundColor:"transparent"})}else Object.assign(u,{position:"absolute",display:"inline-block",overflow:"hidden"});c.innerHTML=h?'\n<div class="popup-wrap">\n <div class="popup-title-bar">\n <div class="popup-title"></div>\n <button class="draggable-1945">&#x2630;</button>\n <button class="minimizable-1945">&#8211;</button>\n <button class="closable-1945">&#88</button>\n </div>\n <div class="popup-content"></div>\n</div>\n':'\n<div class="popup-content">\n <button class="draggable-1945">&#x2630;</button>\n <button class="minimizable-1945">&#8211;</button>\n <button class="closable-1945">&#88</button>\n</div>\n';const d=c.querySelector(".popup-content"),{width:p,height:f}=e.root.model;Object.assign(d.style,{width:`${p}px`,height:`${f}px`});const g=document.createElement("style");g.type="text/css",g.appendChild(document.createTextNode("\n.popup-title-bar {\n display: flex;\n align-items: center;\n top: 0;\n left: 0;\n width: 100%;\n height: 30px;\n background-color: var(--md-sys-color-primary, #f1f1f1);\n color: var(--md-sys-color-on-primary, black);\n padding: 5px;\n box-sizing: border-box;\n border-bottom: 1px solid #ccc;\n}\n\n.popup-title {\n flex: 1;\n text-align: center;\n}\n\nbutton.closable-1945, button.minimizable-1945, button.draggable-1945 {\n position: absolute;\n display: none;\n color: white; \n background-color: black; \n opacity: .3;\n width: 20px;\n height: 20px;\n top: 5px; \n z-index: 1;\n padding: 0;\n margin: 0;\n border: 0px;\n text-align: center;\n cursor: pointer;\n font-size: 12px;\n border-radius: 4px;\n}\n\nbutton.draggable-1945 {\n left: 5px;\n cursor: move;\n}\n\nbutton.minimizable-1945 {\n right: 30px;\n}\n\nbutton.closable-1945 {\n right: 5px;\n}\n\nbutton.closable-1945:hover, button.minimizable-1945:hover, button.draggable-1945:hover {\n opacity: .6; \n}\n")),c.appendChild(g),Ttt.forEach((r=>{e.on(r,((...e)=>{t.trigger(r,...e)}))}));const v=c.querySelector(".popup-content"),m=c.querySelector(".draggable-1945");[...r9,...n9].forEach((t=>{v.addEventListener(t,(e=>{(!m?.isDragging||"mousemove"!==t&&"mouseup"!==t)&&e.stopPropagation()}))})),[...r9,...n9].forEach((t=>{c.addEventListener(t,(e=>{(!m?.isDragging||"mousemove"!==t&&"mouseup"!==t)&&e.stopPropagation()}))})),i&&a&&c.addEventListener("click",(e=>{e.target===c&&Rtt.hide(t)}));if(t.root.model_layer.overlay.appendChild(c),function(t,e,r){const n=t.root;if(n===t)return;Itt(t);let i=Ptt.get(n)||[];i=[...i,[t,{div:e,scene:r}]],Ptt.set(n,i)}(t,c,e),h){c.querySelector(".popup-title-bar .popup-title").textContent=h}if(o&&(!function(t,e,r){let n,i,a,s;function o(o){if(!e.isDragging)return;o.preventDefault(),o.stopPropagation();const l=o.clientX-n,h=o.clientY-i,c=r.rootModel.overlay.style.transform.match(/scale\(([^,]+),\s*([^)]+)\)/),u=c?parseFloat(c[1]):1,d=c?parseFloat(c[2]):u;t.style.left=`${a+l/u}px`,t.style.top=`${s+h/d}px`}function l(t){t.preventDefault(),t.stopPropagation(),e.isDragging=!1,document.removeEventListener("mousemove",o),document.removeEventListener("mouseup",l)}e.isDragging=!1,e.addEventListener("mousedown",(r=>{r.preventDefault(),r.stopPropagation(),e.isDragging=!0,n=r.clientX,i=r.clientY,a=parseInt(t.style.left,10)||0,s=parseInt(t.style.top,10)||0,document.addEventListener("mousemove",o),document.addEventListener("mouseup",l)}))}(i?c.querySelector(".popup-wrap"):c,m,t),h?m&&(m.style.display="block"):(v.addEventListener("mouseenter",(()=>{m&&(m.style.display="block")})),v.addEventListener("mouseleave",(()=>{m&&(m.style.display="none")})))),s){const t=c.querySelector(".minimizable-1945");let e=!1;t.addEventListener("click",(t=>{t.preventDefault(),e=!e;const r=c.querySelector(".popup-wrap");!function(t,e){const r=t.querySelector(".minimizable-1945");e?(r.innerHTML="&#x25A1;",t.style.height="30px",t.style.overflow="hidden"):(r.innerHTML="&#8211;",t.style.height="",t.style.overflow="visible")}(i?r:c,e)})),h?t&&(t.style.display="block"):(v.addEventListener("mouseenter",(()=>{t&&(t.style.display="block")})),v.addEventListener("mouseleave",(()=>{t&&(t.style.display="none")})))}if(a){const t=c.querySelector(".closable-1945");h?t&&(t.style.display="block"):(v.addEventListener("mouseenter",(()=>{t&&(t.style.display="block")})),v.addEventListener("mouseleave",(()=>{t&&(t.style.display="none")})))}c.querySelector(".closable-1945")?.addEventListener("click",(e=>{e.preventDefault(),Rtt.hide(t)})),c.addEventListener("close-scene",(e=>{e.preventDefault(),e.stopPropagation(),Rtt.hide(t),l&&(t.data=e.detail)})),e.target=d,e.data=n||t.data,e.fit("both");const{x:y,y:b}=t.center,w=t.transcoordS2T(y,b,t.rootModel),x=function(t,e,r,n){const{location:i=Ctt,title:a=""}=n||{},s=t.bounds;let o=e.bounds;a&&(o.height+=30);const l=Math.max(s.width/4-o.width/2,20),h=Math.min(3*s.width/4+o.width/2,s.width-20)-o.width,c=Math.max(s.height/4-o.height/2,20)+(a?30:0),u=Math.min(3*s.height/4+o.height/2,s.height-20)-o.height+(a?30:0);switch(i){case Ctt:return{x:r.x<s.width/2?Math.min(h,r.x+20):Math.max(l,r.x-(o.width+20)),y:r.y<s.height/2?Math.min(u,r.y+20+(a?30:0)):Math.max(c,r.y-(o.height+20+(a?30:0)))};case"left-top":return{x:l,y:c};case"right-top":return{x:h,y:c};case"left-bottom":return{x:l,y:u};case"right-bottom":return{x:h,y:u};default:return{x:(s.width-o.width)/2,y:(s.height-o.height+(a?30:0))/2}}}(t.rootModel,e.root,w,r);if(i)if(h){const t=c.querySelector(".popup-wrap");Object.assign(t.style,{position:"absolute",left:`${x.x}px`,top:`${x.y}px`,width:`${p}px`,height:`${f}px`})}else Object.assign(d.style,{left:`${x.x}px`,top:`${x.y}px`,width:`${p}px`,height:`${f}px`});else Object.assign(c.style,{left:`${x.x}px`,top:`${x.y}px`,width:`${p}px`,height:`${h?f+30:f}px`});!function(t,e){t.style.opacity=0,t.style.transform="scale(0)",t.style.display="block";let r=+new Date;const n=()=>{const i=Math.min((new Date-r)/200,1);t.style.opacity=i,t.style.transform=`scale(${i})`,i<1?requestAnimationFrame(n):e&&e()};n()}(c,(()=>{i&&(c.style.backgroundColor="rgba(0,0,0,0.3)")}))}),(t=>{console.error("cannot fetch board: "+e,t)}))}}var Ott={reflow:function(t,e){},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!1},ABSOLUTE:!0};function Ltt(t){var e=t.components.filter((t=>!t.hidden)),r=t.getState("layoutConfig")||{},n=e[r&&r.activeIndex||0];return n&&[n]||[]}Ett.register("absolute",Ott);var Dtt={reflow:function(t){var e=t.bounds,r=t.getState("layoutConfig")||{},n={left:0,top:0,width:e.width,height:e.height};t.forEach(((t,e)=>{let i=e!=(r.activeIndex||0);t.bounds=n,t.setState("rotation",0),t.element&&(t.element.style.visibility=i?"hidden":"visible")}))},capturables:function(t){return Ltt(t)},drawables:function(t){return Ltt(t)},isStuck:function(t){return!0}};function Ftt(t){var e=t.getState("layoutConfig");return e&&e.weight||1}Ett.register("card",Dtt);var Ntt={reflow:function(t){var e=this.drawables(t),r=t.get("padding")||{},n=e.reduce(((t,e)=>t+Ftt(e)),0),i=t.bounds,a=n>0?(i.width-((r.left||0)+(r.right||0)))/n:i.width,s=i.height-((r.top||0)+(r.bottom||0)),o=0;e.forEach((t=>{let e=Ftt(t),n=t.get("margin")||{};t.bounds={left:a*o+(r.left||0)+(n.left||0),top:0+(r.top||0)+(n.top||0),width:e*a-((n.left||0)+(n.right||0)),height:s-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),o+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!0}};function jtt(t){var e=t.getState("layoutConfig");return e&&e.weight||1}Ett.register("linear-horizontal",Ntt);var Btt={reflow:function(t){var e=this.drawables(t),r=t.getState("padding")||{},n=e.reduce(((t,e)=>t+jtt(e)),0),i=t.bounds,a=n>0?(i.height-((r.top||0)+(r.bottom||0)))/n:i.height,s=i.width-((r.left||0)+(r.right||0)),o=0;e.forEach((t=>{let e=jtt(t),n=t.getState("margin")||{};t.bounds={left:0+(r.left||0)+(n.left||0),top:a*o+(r.top||0)+(n.top||0),width:s-((n.left||0)+(n.right||0)),height:e*a-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),o+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((t=>!t.hidden)):t.components},isStuck:function(t){return!0}};Ett.register("linear-vertical",Btt);var ztt={reflow:function(t){var e=t.getState("layoutConfig"),r=e&&e.columns||t.getState("columns"),n=e&&e.rows||t.getState("rows"),i=e&&e.widths||t.getState("widths"),a=e&&e.heights||t.getState("heights"),s=i?i.filter(((t,e)=>e<r)).reduce(((t,e)=>t+e),0):r,o=a?a.filter(((t,e)=>e<n)).reduce(((t,e)=>t+e),0):n,l=t.textBounds,h=t.getState("paddingLeft")||0,c=t.getState("paddingTop")||0,u=l.width/s,d=l.height/o,p=0,f=0;t.components.forEach(((t,e)=>{let n=i?i[e%r]:1,s=a?a[Math.floor(e/r)]:1,o=t.colspan||1,l=0;for(;--o>0;)l+=i?i[(e+o)%r]:1;let g=t.rowspan||1,v=0;for(;--g>0;)v+=a?a[Math.floor(e/r)+g]:1;t.bounds={left:h+p,top:c+f,width:u*(n+l),height:d*(s+v)},t.setState("rotation",0),e%r==r-1?(p=0,f+=s*d):p+=n*u}))},capturables:function(t){return t.components.filter((t=>!t.merged))},drawables:function(t){return t.components.filter((t=>!t.merged&&!t.hidden))},isStuck:function(t){return!0},keyNavigate:function(t,e,r){var n=t.getState("layoutConfig"),i=n&&n.columns||t.getState("columns"),a=n&&n.rows||t.getState("rows"),{row:s,column:o}=t.getRowColumn(e);switch(r.code){case"ArrowUp":if(s>0)return t.getAt((s-1)*i+o);break;case"ArrowDown":if(s<a-1)return t.getAt((s+1)*i+o);break;case"ArrowRight":if(o<i-1)return t.getAt(s*i+o+1);break;case"ArrowLeft":if(o>0)return t.getAt(s*i+o-1);break;default:return e}},joinType:!0};Ett.register("table",ztt);const Wtt=new Image;Wtt.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAclBMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0BbqFAAAAJXRSTlMAgAP3VSI6/g9fBk5FavJsMrariSjzPnO1enRRL5SMhmOOWB9keFTE0wAAANxJREFUOMutk9kWgyAMRLFuiLjUtdp9yf//YglVsQXz1HniMPcEMgHGvpX2O0Ypi+EgCL+IAShC+wB7QfubRDT7AFcnUPoLMLiP4PyJbsb55i05AgnR5iaQDsICgtH0cotBWoAP1c7kC6kFxEseCfZfB6gEgbNeBrira2QmH1uVYCXlA3is8UmgUCPIyQJKEmu8QtQJN0e9DPXVpzG2G216c1CqRmcBOdxXk07sWUSPv07zo0amCNQycv+NzmR6cRcwmfbuI7p2nZ/z4be0P83Foz6vIkhfZXr82XgDlZsspIq4peUAAAAASUVORK5CYII=";var Utt=t=>class extends t{postrender(t){super.postrender(t),this.app.isEditMode&&this._focused&&this.showMoveHandle&&this._draw_move_handle(t)}_draw_move_handle(t){var{left:e,top:r,width:n}=this.bounds;t.save(),t.beginPath(),t.globalAlpha=1,t.rect(e+n,r,25,25);t.fillStyle="rgba(235, 235, 235, 1)",t.fill(),t.drawImage(Wtt,e+n+3.75,r+3.75,17.5,17.5),t.closePath(),t.restore()}contains(t,e){var r=super.contains(t,e);if(this.app.isViewMode)return r;if(!r){var{left:n,top:i,width:a,height:s}=this.bounds,o=n+a;this.showMoveHandle&&(r=t<Math.max(o+25,o)&&t>Math.min(o+25,o)&&e<Math.max(i+25,i)&&e>Math.min(i+25,i))}return this._focustd!==r&&(this._focused=r,this.invalidate()),r}};const Htt=[];class Gtt extends(Utt(wtt(mtt))){constructor(t,e){super(t,e),this._components=[]}replaceRefids(t){this.components.forEach((e=>e.replaceRefids(t)))}get showMoveHandle(){return!0}get showOverflow(){return!1}dispose(){this.components.slice().forEach((t=>t.dispose())),super.dispose()}isContainer(){return!0}containable(t){return t.isDescendible(this)}get hasTextProperty(){return!1}get components(){return this._components}get focusible(){return!0}get layout(){return Ett.get(this.get("layout"))||Ott}reflow(){this.layout.reflow(this),this.components&&this.components.forEach((t=>{t.isContainer()&&t.reflow()}))}get hierarchy(){var t=super.hierarchy;return this.components&&(t.components=this.components.map((t=>t.hierarchy))),t}addComponent(t,e=!1){var r=t.parent;if(r){if(this===r)return;r.removeComponent(t,e)}var n=this._components.push(t)-1;t.parent=this,t.added(this),e||this.trigger("add",this,t,n),t.delegate_on(this),e||t.trigger("added",this,t,n),this.root&&this.root.isReady&&t.ready()}removeComponent(t,e=!1){var r=this._components.indexOf(t);-1!=r&&(this._components.splice(r,1),t.parent=null,t.removed(this),e||(this.trigger("remove",this,t),t.trigger("removed",this,t)),t.delegate_off(this))}insertComponentAt(t,e,r=!1){var n=t.parent;n&&n.removeComponent(t,r);var i=this._components.splice(0,e);this._components=i.concat(t,this._components),e=this._components.indexOf(t),t.parent=this,t.added(this),r||this.trigger("add",this,t,e),t.delegate_on(this),r||t.trigger("added",this,t,e)}add(t,e=!1){return t instanceof Array?(t.forEach((t=>{-1==this._components.indexOf(t)&&this.addComponent(t,e)})),this):this.add.call(this,[t],e)}remove(t,e=!1){return t instanceof Array?this._components?(t.forEach((t=>{this.removeComponent(t,e)})),this):this:this.remove.call(this,[t],e)}getAt(t){if(this._components)return this._components[t]}forEach(t,e){this._components&&this._components.forEach(t,e)}traverse(t,e){t.call(e,this),this._components&&this._components.forEach((r=>{r.isContainer()?r.traverse(t,e):t.call(e,r)}))}indexOf(t){return(this._components||Htt).indexOf(t)}size(){return(this._components||Htt).length}moveChildAt(t,e){var r=this.indexOf(e);if(-1!=r){var n=this._components.splice(0,r),i=this._components.splice(1);this._components=n.concat(i),t=Math.max(0,t),t=Math.min(t,this._components.length),n=this._components.splice(0,t),this._components=n.concat(e,this._components)}}moveChildForward(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this._components[e]=this._components[e+1],this._components[e+1]=t)}moveChildBackward(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this._components[e]=this._components[e-1],this._components[e-1]=t)}moveChildToFront(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this._components.splice(0,e),n=this._components.splice(1);this._components=r.concat(n,this._components)}}moveChildToBack(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this._components.splice(0,e),n=this._components.splice(0);this._components=this._components.concat(r,n)}}symmetryX(t){super.symmetryX(t),this.components.map((t=>{t.symmetryX(0)}))}findAll(t,...e){if("string"==typeof t)return p9(t,this,e[0]||this);if("function"==typeof t){var r=[];for(let n=this.components.length-1;n>=0;n--){let i=this.components[n].findAll(t,...e);i&&(r=r.concat(i))}return t(this,...e)&&r.push(this),r}}findFirst(t,...e){if("string"==typeof t)return p9(t,this,e[0])[0];if("function"==typeof t){for(let n=this.components.length-1;n>=0;n--){var r=this.components[n].findFirst(t,...e);if(null!=r)return r}return t(this,...e)?this:null}}findById(t){return this.root.findById(t)}findByRefid(t){return this.root.findByRefid(t)}contains(t,e){var r=super.contains(t,e);if(!r){var{left:n,top:i,width:a,height:s}=this.state;r=t<Math.max(n+a,n)&&t>Math.min(n+a,n)&&e<Math.max(i+s,i)&&e>Math.min(i+s,i)}return r}capture(t,e,r){var n=this.transcoordP2S(t,e);if(!this.contains(n.x,n.y))return!1;var i=this.bounds;n.x-=i.left,n.y-=i.top;var a=this.layout.capturables(this);for(let t=a.length-1;t>=0;t--){var s=a[t].capture(n.x,n.y,r);if(s)return s}return this.capturable&&!r?.(this)&&this}capturePath(t,e){if(e){if(e.indexOf(this)>-1)return!1;for(let t=0;t<e.length;t++)if(!this.containable(e[t]))return!1}var r=[],{left:n,top:i,width:a,height:s}=this.bounds;for(let e=0;e<t.length;e++){let o=this.transcoordP2S(t[e].x,t[e].y);if(o.x<n||o.x>n+a||o.y<i||o.y>i+s)return!1;o.x-=n,o.y-=i,r.push(o)}let o=this.layout.capturables(this);for(let t=o.length-1;t>=0;t--){let n=o[t];if(!n.isContainer())continue;let i=n.capturePath(r,e);if(i)return i}return this.focusible&&this}render(t){var{left:e=0,top:r=0,width:n,height:i}=this.bounds;t.beginPath(),t.rect(e,r,n,i),t.closePath(),this.drawFill(t),this.drawStroke(t)}postrender(t){const e=this.layout.drawables(this);if(e.length>0){var{left:r=0,top:n=0,width:i,height:a}=this.bounds;t.save(),this.showOverflow||(t.beginPath(),t.rect(r,n,i,a),t.clip(),t.closePath());var{top:n,left:r}=this.state;t.translate(r,n),e.forEach((e=>{e.draw(t)})),t.translate(-r,-n),t.restore()}super.postrender(t)}trim(){this.components.forEach((t=>{t.trim()})),super.trim()}}["layout"].forEach((t=>mtt.memoize(Gtt.prototype,t,!1)));class Ytt extends Gtt{constructor(t,e){super(t,e),t.translate=t.translate||{x:0,y:0},this._draw_reserved=!1,this.__draw__=()=>{this._draw_reserved=!1,this.trigger("redraw"),this.reflow(),this.draw()},this.throttle_render=()=>{this._draw_reserved||requestAnimationFrame(this.__draw__),this._draw_reserved=!0}}fitSize(t,e,r,n){if(this.target){if(e){let t=getComputedStyle(this.target);r=r||(t?parseFloat(t.getPropertyValue("width")):this.target.clientWidth),n=n||(t?parseFloat(t.getPropertyValue("height")):this.target.clientHeight)}else r=this.model.width,n=this.model.height;"CANVAS"==t.tagName&&(t.setAttribute("width",r*e9),t.setAttribute("height",n*e9)),t.style.width=r+"px",t.style.height=n+"px"}}resize(){this.fitSize(this.element,!0)}isLayer(){return!0}get showOverflow(){return this.app.isEditMode}get anchors(){}createElement(){var t=mtt.createCanvas(1,1);return t.setAttribute("scene",this.state.type),t.style.position="absolute",t}get target(){return this._target}set target(t){this._target&&this.element&&this._target.removeChild(this.element),this._target=t,t&&(this.element||(this.element=this.createElement()),this.resize(),t.appendChild(this.element))}get canvas(){return this.element}dispose(){super.dispose(),this.target=null,this.element=null}get selected(){return this.root.selected}set selected(t){this.root.selected=t}get hasSameParentForAllSelected(){return this.root.hasSameParentForAllSelected}get focused(){return this.root.focused}set focused(t){this.root.focused=t}getContext(){return this._context2D||(this._context2D=this.canvas&&this.canvas.getContext("2d")),this._context2D}draw(t){this.canvas&&(t=t||this.getContext())&&super.draw(t)}prerender(t){var{translate:e,scale:r={x:1,y:1},rotation:n}=this.model;t.clearRect(0,0,t.canvas.width,t.canvas.height),e&&t.translate(e.x*e9,e.y*e9),t.scale(r.x*e9,r.y*e9),n&&t.rotate(n)}get rotatePoint(){return{x:0,y:0}}contains(t,e){return!1}invalidate(){this.throttle_render()}move(t){var e=this.get("translate")||{x:0,y:0};this.set({translate:{x:e.x+t.x,y:e.y+t.y}})}centerTo(t,e){const r=t.rootModel.transcoordC2S(this.canvas.clientWidth/2,this.canvas.clientHeight/2),{x:n,y:i}=t.center,{x:a,y:s}=t.transcoordP2S(n,i),{x:o,y:l}=t.transcoordS2T(a,s),{x:h,y:c}=t.rootModel.get("translate"),{x:u,y:d}=t.rootModel.get("scale");e?D8({step:function(e){t.rootModel.set({translate:{x:h+(r.x-o)*u*e,y:c+(r.y-l)*d*e}})},duration:1e3,delta:"circ",ease:"in"}).start():t.rootModel.set({translate:{x:h+(r.x-o)*u,y:c+(r.y-l)*d}})}}const Vtt={x:1,y:1},qtt={x:0,y:0};class Xtt extends Ytt{dispose(){super.dispose(),delete this._canvas,delete this._overlay}contains(t,e){return!0}isRootModel(){return!0}get stuck(){return!0}get layout(){return Mtt}get overlay(){if(!this._overlay){var t=document.createElement("div");t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="initial",t.style["user-select"]="none",t.style["transform-origin"]="top left",this.element&&this.element.appendChild(t),this._overlay=t,this._repositionOverlay()}return this._overlay}createElement(){var t=document.createElement("div");return t.style.position="absolute",t.setAttribute("scene",this.state.type),t.style["user-select"]="none",t.style.overflow="hidden",this._canvas=mtt.createCanvas(1,1),this._canvas.style.position="absolute",t.appendChild(this._canvas),this._overlay&&t.appendChild(this._overlay),t}resize(){if(this.target){var{width:t,height:e,fitMode:r}=this.model;this.root.fitMode?r=this.root.fitMode:r||(r="ratio");try{var n=getComputedStyle(this.target)}catch(t){return void console.error(t,this.target)}var i=n?parseFloat(n.getPropertyValue("width")):this.target.clientWidth,a=n?parseFloat(n.getPropertyValue("height")):this.target.clientHeight;switch(r){case"both":case"ratio":break;case"width":a=e*i/t;break;case"height":i=t*a/e;break;default:i=Math.max(t,i),a=Math.max(e,a)}switch(this.fitSize(this.canvas,!0,i,a),r){case"ratio":case"both":break;case"width":this.element.style.overflowX="hidden",this.element.style.overflowY="auto";break;case"height":this.element.style.overflowX="auto",this.element.style.overflowY="hidden";break;default:this.element.style.overflowX=i>t?"hidden":"auto",this.element.style.overflowY=a>e?"hidden":"auto"}this.fitSize(this.element,!0)}}get canvas(){return this._canvas}get MPP(){var{scale:t={x:1,y:1},unit:e}=this.model;switch(e){case"mm":case"cm":return 1/this.app.PPM/t.x;case"in":return 1/this.app.PPI/t.x;default:return 1/t.x}}capturePath(t,e){var r=this.layout.capturables(this);for(let n=r.length-1;n>=0;n--){let i=r[n];if(!i.isContainer())continue;let a=i.capturePath(t,e);if(a)return a}return!1}get eventMap(){return{"(self)":{"(all)":{change:this._onchanged_all,mouseenter:this._onmouseenter_all,mouseleave:this._onmouseleave_all,click:this._onclick,mousedown:this._onmousedownup,mouseup:this._onmousedownup,touchstart:this._onmousedownup,touchend:this._onmousedownup}}}}closeScene(t){requestAnimationFrame((()=>this.overlay.dispatchEvent(new CustomEvent("close-scene",{bubbles:!0,composed:!0,detail:t}))))}_repositionOverlay(){var t=this._overlay;if(t){var{translate:e=qtt,scale:r=Vtt,rotation:n=0}=this.model,{left:i,top:a,width:s,height:o}=this.bounds;t.style.left=i+"px",t.style.top=a+"px",t.style.transform=`rotate(${n}rad) scale(${r.x}, ${r.y}) perspective(1px)`,t.style.marginLeft=`${e.x}px`,t.style.marginTop=`${e.y}px`}}onchange(t){var e=this._model;delete e.id,delete e.text,delete e.class,this._repositionOverlay()}_onchanged_all(t,e,r){this.invalidate()}_onmouseenter_all(t,e){if(t.stopPropagation(),this.app&&!this.app.isEditMode&&e){var r=e.origin;if(!(r instanceof Xtt)&&r.model.event&&r.model.event.hover&&!r.hidden){var n=r.model.event.hover;n&&this._doEventAction(n,r,!0,t)}}}_onmouseleave_all(t,e){if(t.stopPropagation(),e){var r=e.origin;if(this.app&&!this.app.isEditMode){var n=r.model.event&&r.model.event.hover;n&&this._doEventAction(n,r,!1,t)}}}_onclick(t,e){if(t.stopPropagation(),!this.app.isEditMode&&e){var r=e.origin,n=r.model.event?.tap;n&&this._doEventAction(n,r,!0,t)}}_onmousedownup(t,e){if(t.stopPropagation(),!this.app.isEditMode&&e){var r=e.origin,n=r.model.event?.tap;n&&n.pressed&&this._doMouseDownUpEventAction(n,r,"mousedown"==t.type||"touchstart"==t.type,t)}}_doMouseDownUpEventAction(t,e,r,n){var{pressed:i=!1}=t;i&&(r?function(t){if(!t.hasOwnProperty("_backupShadow")){var e=t.get("shadow");t._backupShadow=e;var{left:r=0,top:n=0}=e||{};t.delta("tx",r),t.delta("ty",n),t.set("shadow",{})}}(e):function(t){t.hasOwnProperty("_backupShadow")&&(t.delta("tx",0),t.delta("ty",0),t.set("shadow",t._backupShadow),delete t._backupShadow)}(e))}_doEventAction(t,e,r,n){var{action:i,target:a,value:s,emphasize:o=!1,restore:l=!1,pressed:h=!1,options:c}=t;if(a&&(a=e.access(a)),s&&(s=e.access(s)),o&&(r?function(t){const{hover:e}=t.state.event||{},{emphasize:r}=e||{};if(t.hasOwnProperty("_backupStrokeStyle"))return;if("__backup_emphasize"in t)return;const{strokeStyle:n,lineWidth:i,fillStyle:a}=t.state;t.__backup_emphasize={strokeStyle:n,lineWidth:i,fillStyle:a},t.setState(r)}(e):l&&function(t){"__backup_emphasize"in t&&(t.setState(t.__backup_emphasize),delete t.__backup_emphasize)}(e)),i)switch(i){case"data-toggle":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((t=>{t.data=!t.data}));break;case"data-tristate":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((t=>{let e=Math.round(Math.max(Number(t.data)||0,0));t.data=(e+(r?1:2))%3}));break;case"data-spreading":if(!a)return;if(r){var u=e.access(s);this.root.findAll(a,e).forEach((t=>{t.executeMappings(!0)}))}break;case"data-set":if(!a)return;if(r){u=e.access(s);this.root.findAll(a,e).forEach((t=>{t.data=u}))}break;case"partial-data-set":if(!a)return;if(r){u=e.access(s);this.root.findAll(a,e).forEach((t=>{t.data={...t.data,...u}}))}break;case"value-set":if(!a)return;if(r){u=e.access(s);this.root.findAll(a,e).forEach((t=>{t.value=u}))}break;case"partial-value-set":if(!a)return;if(r){u=e.access(s);this.root.findAll(a,e).forEach((t=>{t.value={...t.value,...u}}))}break;case"infoWindow":case"info-window":if(!a)return;"click"==n.type||r?ktt.show(e,a,l,{x:n.offsetX,y:n.offsetY}):l&&ktt.hide(e,a);break;case"toggle-info-window":if(!a)return;ktt.toggle(e,a,!1,{x:n.offsetX,y:n.offsetY});break;case"popup":case"modal-popup":if(!a)return;let t=c&&"input"in c?c.input:"(self)",o=!c||(!("output"in c)||c.output);Rtt.show(e,a,{data:t&&this.root.findFirst(t,e)?.data,output:o,modal:"modal-popup"===i});break;case"close-scene":this.closeScene(e.data);break;case"goto":case"goto-playlist":this.trigger(i,a,c,e);break;case"mouse-cursor":r?this.target.style.cursor=a||"auto":l&&(this.target.style.cursor="auto");break;default:this.trigger(i,a,s,e)}}}function $tt(t,e){const r=t.state.refid;return t.root.findAll((t=>t.isLine()&&t.from.component===r&&(!e||t.from.anchor===e)))}function Ktt(t,e){const r=t.state.refid;return t.root.findAll((t=>t.isLine()&&t.to.component===r&&(!e||t.to.anchor===e)))}Xtt.Popup=Rtt,mtt.register("model-layer",Xtt);var Qtt=t=>class extends t{isConnectable(){return!0}postrender(t){super.postrender(t),this._draw_anchors(t)}_draw_anchors(t){var e=this.anchors||[];t.save(),e.forEach((e=>{var{position:{x:r,y:n},draw:i}=e;if(i){t.beginPath();try{i.call(e,t,this)}catch(t){console.error(t)}t.closePath()}})),t.restore()}contains(t,e){if(n=super.contains(t,e))return n;var r=this.anchors||[];for(let i of r){const r=i.bounds;if(!r)continue;const{left:a,top:s,width:o,height:l}=r;var n;if(n=t<Math.max(a+o,a)&&t>Math.min(a+o,a)&&e<Math.max(s+l,s)&&e>Math.min(s+l,s))return n}return!1}findInOutLines(t){return function(t,e){const r=t.state.refid;return t.root.findAll((t=>!(!t.isLine()||(t.from.component!==r||e&&t.from.anchor!==e)&&(t.to.component!==r||e&&t.to.anchor!==e))))}(this,t)}findOutletLines(t){return $tt(this,t)}findOutletEnds(t){return function(t,e){return $tt(t,e).map((t=>t.toEnd?.component)).filter(Boolean)}(this,t)}findInletLines(t){return Ktt(this,t)}findInletEnds(t){return function(t,e){return Ktt(t,e).map((t=>t.fromEnd?.component)).filter(Boolean)}(this,t)}};const Jtt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0}}],help:"scene/component/rect"};var Ztt={ondragmove:function(t,e,r){var{left:n,top:i,width:a,height:s}=r.model,o=(r.transcoordP2S(t.x,t.y).x-n)/(a/2)*100;o=btt(o,a,s),r.set({round:o})}};class tet extends(Qtt(wtt(ytt))){is3dish(){return!0}get controls(){var{left:t,top:e,width:r,round:n,height:i}=this.state;return[{x:t+r/2*((n=null==n?0:btt(n,r,i))/100),y:e,handler:Ztt}]}get nature(){return Jtt}}mtt.register("rect",tet);const eet=[1,2,10,20,50,50,50,50,50,50];class ret extends(wtt(ytt)){render(t){const{lineWidth:e=1,fillStyle:r="lightgray",font:n="15px Arial",left:i,top:a,rotation:s,origin:o,margin:l,width:h,height:c,side:u="bottom",strokeStyle:d="#000000",scale:p=1}=this.state;t.translate(i,a),t.beginPath();const f=Math.round(e/2);t.rect(-f,-f,h+2*f,c+2*f),t.clip(),t.beginPath(),t.rect(0,0,h,c),r&&(t.fillStyle=r,t.fill()),t.lineWidth=e,t.strokeStyle=d,t.stroke(),t.beginPath(),t.font=n;var g="bottom"!==u,v=g?0:c,m=4*c/5,y=2*c/3,b=1*c/2,w=3*c/5;g&&(m=c-m,y=c-y,b=c-b,w=c-1.5*c/5);var x=p*this.app.PPM/this.root.unitScale,A=Math.ceil(o/x),_=this.app.PPM/x,k=_<=1.1?1:eet[Math.round(_)]||100;1!=k&&(A+=(k-A%k)%k);var S=Math.ceil(A*x),E=o+h;for(t.fillStyle=d;S<E;){if(A%10==0){t.moveTo(S-o,b),t.lineTo(S-o,v);let e=(A/10).toString(),r=t.measureText(e);t.fillText(e,S-o-r.width-6,w)}else A%5==0?(t.moveTo(S-o,y),t.lineTo(S-o,v)):(t.moveTo(S-o,m),t.lineTo(S-o,v));A+=k,S=Math.ceil(A*x)}}}mtt.register("ruler",ret);const net=20,iet=20,aet=90*Math.PI/180,set="9px Verdana",oet=20,het="#f4f4f4",cet="#999";function uet(t,e,r){return{left:-t.x,top:-t.y,width:net,height:oet}}function det(t,e,r,n){return{left:net-t.x,top:0-t.y,origin:20-t.x,width:e-net,height:oet}}function pet(t,e,r,n){var i={x:0-t.x+10,y:-t.y+iet+(r-iet)/2},a=mtt.transcoordRR(0-t.x,-t.y+iet,i,aet);return{left:a.x-(r-iet),top:a.y,origin:20-t.y,width:r-iet,height:oet}}function fet(t){var e=t.get("translate");return{left:-e.x,top:-e.y,width:t.canvas.width/e9,height:t.canvas.height/e9}}mtt.register("guide-layer",class extends Ytt{constructor(t,e){super(t,e),this.appScale={x:1,y:1},"disabled"!==t.ruler&&(this.hruler=new ret({left:net,top:0,origin:20,margin:0,height:oet,unit:"m",rotation:0,font:set,fillStyle:het,strokeStyle:cet,capturable:!1}),this.vruler=new ret({left:0,top:0,origin:20,margin:0,height:oet,unit:"m",rotation:aet,font:set,side:"top",fillStyle:het,strokeStyle:cet,capturable:!1}),this.origin_rect=new tet({left:-20,top:-20,width:20,height:20,fillStyle:het,strokeStyle:cet,lineWidth:1}),this.addComponent(this.hruler),this.addComponent(this.vruler),this.addComponent(this.origin_rect)),this.invalidate()}get capturable(){return!1}ready(){if(super.ready(),this.hruler){var t=this.rootModel,e=Object.assign({},t.get("translate"));e.x<net&&(e.x+=net),e.y<iet&&(e.y+=iet);var r=t.get("scale")||{x:1,y:1};this.appScale=r,this.hruler.set("scale",r.x),this.vruler.set("scale",r.y),t.set("translate",e),this.set("translate",e),this.screen_coord=fet(this);var{width:n,height:i}=this.screen_coord;this.hruler.set(det(e,n,0,this.hruler)),this.vruler.set(pet(e,0,i,this.vruler)),this.origin_rect.set(uet(e))}else this.screen_coord=fet(this)}resize(){super.resize(),this.screen_coord=fet(this);var{width:t,height:e}=this.screen_coord;this.hruler&&(this.hruler.set(det(this.model.translate,t,0,this.hruler)),this.vruler.set(pet(this.model.translate,0,e,this.vruler)),this.origin_rect.set(uet(this.model.translate)))}render(t){if(this.guide){t.save();var{x:e,y:r}=this.guide,{top:n,left:i,width:a,height:s}=this.screen_coord;t.beginPath(),t.moveTo(e,n),t.lineTo(e,n+s),t.moveTo(i,r),t.lineTo(i+a,r),t.lineWidth=1,t.strokeStyle="tomato",t.setLineDash([2,3]),t.font="10px tahoma",t.fillStyle="#333";var o=this.transcoordS2C(e,r,this.rootModel);t.textBaseline=o.y>200?"bottom":"top",t.textAlign=o.x>200?"right":"left";var l=o.y>200?-5:5,h=o.x>200?-5:5,c=Math.round(e/this.appScale.x),u=Math.round(r/this.appScale.y);t.fillText(` ${c}, ${u} `,e+h,r+l),t.stroke(),t.restore()}}get guide(){return this._guide}set guide(t){this._guide=t,this.invalidate()}contains(t,e){return!0}get eventMap(){return{"(root)":{"(descendant)":{mousemove:this.onmousemove_child,mouseout:this.onmouseout_child,dragmove:this.onmousemove_child},"model-layer":{change:this.onchange_root_model}},"(self)":{"(descendant)":{mousedown:this.onmousedown_origin}}}}onmousedown_origin(t,e){this.rootModel.set("translate",{x:20,y:20})}onchange_root_model(t,e,r){if(t.scale&&(this.appScale=t.scale,this.hruler&&(this.hruler.set("scale",t.scale.x),this.vruler.set("scale",t.scale.y))),t.translate&&this.set({translate:{x:t.translate.x,y:t.translate.y}}),t.scale||t.translate){if(this.screen_coord=fet(this),this.hruler){var{translate:n}=this.model,{width:i,height:a}=this.screen_coord;this.hruler.set(det(n,i,0,this.hruler)),this.vruler.set(pet(n,0,a,this.vruler)),this.origin_rect.set(uet(n))}this._guide=null}this.invalidate()}onmouseout_child(t){this._guide=null,this.invalidate()}onmousemove_child(t,e){t.target&&"CANVAS"!==t.target.tagName?this.guide=null:this.guide=this.transcoordC2S(t.offsetX,t.offsetY)}});mtt.register("shift-layer",class extends Ytt{ready(){super.ready();var t=this.rootModel.get("translate");this.set("translate",t)}render(t){}contains(t,e){return!(2!=this.app.mode)}get eventMap(){return{"(root)":{"(self)":{keydown:this.onkeydown,keyup:this.onkeyup}}}}onkeydown(t){"Space"===t.code&&void 0===this.before_mode&&(this.before_mode=this.app.mode,this.app.mode=2)}onkeyup(t){"Space"===t.code&&(void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode)}ondragstart(t){this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}ondragmove(t){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.rootModel.move({x:e-this.last_position.x,y:r-this.last_position.y},!1),this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}});class get{constructor(t){this.params=Object.assign({},t)}excute(){}}class vet extends get{execute(){this.params.changes.forEach((t=>t.component.set(t.after)))}static before(t){return t.map((t=>({component:t})))}static after(t,e){e.execute(null,!1)}static around(t,e,r){e.call(r),t.execute(null,!1)}}const met="left",yet="right",bet="center",wet="bottom",xet="middle",Aet=[met,yet,bet,"top",xet,wet];function _et(t){if(this.hasSameParentForAllSelected&&-1!=Aet.indexOf(t)){var e=this.selected.filter((t=>!t.stuck));if(!(e.length<=1)){var r=this.app.commander;vet.around(r,(function(){!function(t,e){var r=JSON.parse(JSON.stringify(e[0].bounds)),n=r.left+r.width,i=r.top+r.height;for(let t=0;t<e.length;t++){let a=e[t].bounds;r.left=a.left>r.left?r.left:a.left,r.top=a.top>r.top?r.top:a.top,n=a.left+a.width>n?a.left+a.width:n,i=a.top+a.height>i?a.top+a.height:i}switch(r.width=n-r.left,r.height=i-r.top,t){case met:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:r.left,top:n.top,width:n.width,height:n.height}}break;case bet:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:r.left+r.width/2-n.width/2,top:n.top,width:n.width,height:n.height}}break;case yet:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={left:n-r.width,top:r.top,width:r.width,height:r.height}}break;case"top":for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:n.left,top:r.top,width:n.width,height:n.height}}break;case xet:for(let t=0;t<e.length;t++){let n=e[t].bounds;e[t].bounds={left:n.left,top:r.top+r.height/2-n.height/2,width:n.width,height:n.height}}break;case wet:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={left:r.left,top:i-r.height,width:r.width,height:r.height}}break;default:;}}(t,e)}))}}}const ket="VERTICAL",Eet=[ket,"HORIZONTAL"];function Met(t){if(this.hasSameParentForAllSelected&&-1!=Eet.indexOf(t)){var e=this.selected;if(!(e.length<=1)){var r=this.app.commander;vet.around(r,(function(){!function(t,e){var r=e.filter((t=>!t.stuck)).slice(0);r.sort((function(e,r){let n=e.center,i=r.center;return t===ket?n.y-i.y:n.x-i.x}));var n=r.reduce(((e,r)=>e+(t===ket?r.bounds.height:r.bounds.width)),0),i=r[0].bounds,a=r[r.length-1].bounds,s=((t===ket?a.top+a.height-i.top:a.left+a.width-i.left)-n)/(r.length-1),o=t===ket?i.top+i.height:i.left+i.width;for(let e=1;e<r.length-1;e++){let n=r[e],i=n.bounds;o+=s,t===ket?(i.top=o,o+=i.height):(i.left=o,o+=i.width),n.bounds=i}}(t,e)}))}}}function Tet(t){for(var e=0;t&&!t.isRootModel();)e+=t.get("rotation")||0,t=t.parent;return e%(2*Math.PI)}class Cet extends get{execute(){this.params.changes.forEach((t=>{let{component:e,to_container:r,to_index:n,to_left:i,to_top:a,hint:s}=t,o=function(t){if(t.isRootModel())return t.bounds;var{bounds:e,rotatePoint:r}=t,n=r;return{left:(n=t.transcoordS2T(n.x,n.y)).x-(r.x-e.left),top:n.y-(r.y-e.top),width:e.width,height:e.height}}(e),l=Tet(e);if(e.removeSelf(!r),e.bounds=o,e.set("rotation",l),r){e.set("rotation",function(t,e){return((t.get("rotation")||0)-Tet(e))%(2*Math.PI)}(e,r));let s=function(t,e){if(e.isRootModel())return t.bounds;var{bounds:r,rotatePoint:n}=t,i=e.transcoordT2S(n.x,n.y),a=e.bounds;return{left:i.x-(n.x-r.left)-a.left,top:i.y-(n.y-r.top)-a.top,width:r.width,height:r.height}}(e,r);t.to_left=void 0!==i?i:s.left,t.to_top=void 0!==a?a:s.top,e.bounds={left:t.to_left,top:t.to_top,width:s.width,height:s.height},void 0===n?r.addComponent(e):r.insertComponentAt(e,n)}}))}}function Pet(t,e,r){this.app.commander.execute(new Cet({changes:[{component:t,to_container:e,to_index:r}]}))}function Iet(t){var e=this.selected.filter((t=>!t.stuck));if(!(0==e.length||e[0].isRootModel()||e.length>1&&("forward"==t||"backward"==t))){var r,n=e[0].parent;if("forward"==t){let t=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:t,to_index:t+1}]}else if("backward"==t){let t=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:t,to_index:t-1}]}else r=e.filter((t=>t.parent===n)).sort(((e,r)=>{let i=n.indexOf(e)<n.indexOf(r);return"front"==t?i:!i})).map(((e,r)=>(n.indexOf(e),{component:e,to_container:n,to_index:"front"==t?n.components.length-r-1:r})));var i=new Cet({changes:r});this.app.commander.execute(i)}}function Ret(t,e,r,n){var i=mtt.register(t.type);if(!i)return H7("Class not found",t.type),null;r&&(t.refid=r(t.refid)),t.id&&n&&n(t.id)&&delete t.id;var a=new i(t,e);return t.components&&a.isContainer()&&(t.components.forEach((t=>{var i=Ret(t,e,r,n);i&&a.addComponent(i)})),delete t.components),a.created(),a}function Oet(t,e){var r=h7(t.hierarchy);return delete r.id,Ret(r,t.app,e)}var Let=Object.freeze({__proto__:null,compile:Ret,duplicate:Oet,select:p9,match:c9});function Det(t,e,r){t instanceof Array||(t=[t]),r||(r=this.model_layer);var n=[],i=new Map;this.selected=t.map((t=>{try{return Ret(t,r.app,(t=>{const e=this.getNewRefid();return void 0!==t&&i.set(t,e),e}),(t=>(this.indexMap[t]||[])[0]))}catch(t){return console.warn(t),!1}})).filter(Boolean).map((t=>{let{left:a,top:s,width:o,height:l,x:h,y:c,cx:u,cy:d}=e;return t.replaceRefids(i),isNaN(a)||isNaN(s)||isNaN(o)||isNaN(l)||(t.bounds={left:a,top:s,width:o,height:l}),isNaN(h)||isNaN(c)||t.move({x:h,y:c},!1),isNaN(u)||isNaN(d)||(t.center={x:u,y:d}),n.push({component:t,to_container:r}),t})),this.app.commander.execute(new Cet({changes:n}))}function Fet(){var t=[],e=new Map;if(this.selected=this.selected.filter((t=>!t.isRootModel())).map((r=>{let n=Oet(r,(t=>{const r=this.getNewRefid();return void 0!==t&&e.set(t,r),r}));return n.move({x:20,y:20},!1),t.push({component:n,to_container:r.parent}),n})).map((t=>(t.replaceRefids(e),t))),0!=t.length){var r=new Cet({changes:t});this.app.commander.execute(r)}}function Net(){var t=this.selected;this.selected=[];for(var e=null,r=t.filter((t=>!t.isRootModel()&&(t.parent.focusible||t.parent.isGroup()))).map((t=>(e||(e=t.parent),{component:t,to_container:null})));e&&e.isGroup();){let t=[];if(e.components.filter((t=>!r.find((e=>e.component===t)))).forEach((e=>t.push(e))),t.length>1)break;let n=e.parent;t.forEach((t=>r.push({component:t,to_container:n}))),r.push({component:e,to_container:null}),e=n}r.length>0&&this.app.commander.execute(new Cet({changes:r})),e&&e.calculateBounds&&e.calculateBounds()}function jet(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.on(t,e,r);break;case"mode":this.app?.on(t,e,r);break;default:this.on(t,e,r)}}function Bet(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.once(t,e,r);break;case"mode":this.app.once(t,e,r);break;default:this.once(t,e,r)}}function zet(t,e,r){switch(t){case"execute":case"redo":case"undo":case"command-reset":this.app?.commander.off(t,e,r);break;case"mode":this.app?.off(t,e,r);break;default:this.off(t,e,r)}}function Wet(t){var e=this.target_element,r=t||this.fitMode,n=this;function i(t){n.fit(r),document.fullscreen||document.mozFullScreen||document.webkitIsFullScreen||document.msFullscreenElement||["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((t=>document.removeEventListener(t,i)))}["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((t=>document.addEventListener(t,i))),e.requestFullScreen?e.requestFullScreen():e.webkitRequestFullScreen?e.webkitRequestFullScreen():e.mozRequestFullScreen?e.mozRequestFullScreen():e.msRequestFullscreen&&e.msRequestFullscreen()}var Uet=0;function Het(){var t=this.selected.filter((t=>!t.isRootModel())).map((t=>t.hierarchy));if(0!=t.length)return Uet=0,JSON.stringify(t,null,2)}function Get(){Uet=0;var t=Het.call(this);return Net.call(this),t}function Yet(t){if(t)try{Uet++,Det.call(this,JSON.parse(t),{x:15*Uet,y:15*Uet})}catch(e){U7(e,t)}}var Vet=function(){return{escape:function(t){return t.replace(/([.*+?^${}()|\[\]\/\\])/g,"\\$1")},parseExtension:t,mimeType:function(e){var r=t(e).toLowerCase();return(n="application/font-woff",i="image/jpeg",{woff:n,woff2:n,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:i,jpeg:i,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"})[r]||"";var n,i},dataAsUrl:function(t,e){return"data:"+e+";base64,"+t},isDataUrl:function(t){return-1!==t.search(/^(data:)/)},canvasToBlob:function(t){return t.toBlob?new Promise((function(e){t.toBlob(e)})):function(t){return new Promise((function(e){for(var r=window.atob(t.toDataURL().split(",")[1]),n=r.length,i=new Uint8Array(n),a=0;a<n;a++)i[a]=r.charCodeAt(a);e(new Blob([i],{type:"image/png"}))}))}(t)},resolveUrl:function(t,e){var r=document.implementation.createHTMLDocument(),n=r.createElement("base");r.head.appendChild(n);var i=r.createElement("a");return r.body.appendChild(i),n.href=e,i.href=t,i.href},getAndEncode:function(t){var e=3e4;ert.impl.options.cacheBust&&(t+=(/\?/.test(t)?"&":"?")+(new Date).getTime());return new Promise((function(r){var n,i=new XMLHttpRequest;if(i.onreadystatechange=s,i.ontimeout=o,i.responseType="blob",i.timeout=e,i.open("GET",t,!0),i.send(),ert.impl.options.imagePlaceholder){var a=ert.impl.options.imagePlaceholder.split(/,/);a&&a[1]&&(n=a[1])}function s(){if(4===i.readyState)if(200===i.status){var e=new FileReader;e.onloadend=function(){var t=e.result.split(/,/)[1];r(t)},e.readAsDataURL(i.response)}else n?r(n):l("cannot fetch resource: "+t+", status: "+i.status)}function o(){n?r(n):l("timeout of "+e+"ms occured while fetching resource: "+t)}function l(t){console.error(t),r("")}}))},uid:function(){var t=0;return function(){return"u"+e()+t++;function e(){return("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4)}}}(),delay:function(t){return function(e){return new Promise((function(r){setTimeout((function(){r(e)}),t)}))}},asArray:function(t){for(var e=[],r=t.length,n=0;n<r;n++)e.push(t[n]);return e},escapeXhtml:function(t){return t.replace(/#/g,"%23").replace(/\n/g,"%0A")},makeImage:function(t){return new Promise((function(e,r){var n=new Image;n.onload=function(){e(n)},n.onerror=r,n.src=t}))},width:function(t){var r=e(t,"border-left-width"),n=e(t,"border-right-width");return t.scrollWidth+r+n},height:function(t){var r=e(t,"border-top-width"),n=e(t,"border-bottom-width");return t.scrollHeight+r+n}};function t(t){var e=/\.([^\.\/]*?)$/g.exec(t);return e?e[1]:""}function e(t,e){var r=window.getComputedStyle(t).getPropertyValue(e);return parseFloat(r.replace("px",""))}}(),qet=function(){var t=/url\(['"]?([^'"]+?)['"]?\)/g;return{inlineAll:function(t,i,a){return s()?Promise.resolve(t):Promise.resolve(t).then(r).then((function(e){var r=Promise.resolve(t);return e.forEach((function(t){r=r.then((function(e){return n(e,t,i,a)}))})),r}));function s(){return!e(t)}},shouldProcess:e,impl:{readUrls:r,inline:n}};function e(e){return-1!==e.search(t)}function r(e){for(var r,n=[];null!==(r=t.exec(e));)n.push(r[1]);return n.filter((function(t){return!Vet.isDataUrl(t)}))}function n(t,e,r,n){return Promise.resolve(e).then((function(t){return r?Vet.resolveUrl(t,r):t})).then(n||Vet.getAndEncode).then((function(t){return Vet.dataAsUrl(t,Vet.mimeType(e))})).then((function(r){return t.replace(function(t){return new RegExp("(url\\(['\"]?)("+Vet.escape(t)+")(['\"]?\\))","g")}(e),"$1"+r+"$3")}))}}(),Xet=function(){return{resolveAll:function(){return t().then((function(t){return Promise.all(t.map((function(t){return t.resolve()})))})).then((function(t){return t.join("\n")}))},impl:{readAll:t}};function t(){return Promise.resolve(Vet.asArray(document.styleSheets)).then((function(t){var e=[];return t.forEach((function(t){try{Vet.asArray(t.cssRules||[]).forEach(e.push.bind(e))}catch(e){console.log("Error while reading CSS rules from "+t.href,e.toString())}})),e})).then((function(t){return t.filter((function(t){return t.type===CSSRule.FONT_FACE_RULE})).filter((function(t){return qet.shouldProcess(t.style.getPropertyValue("src"))}))})).then((function(e){return e.map(t)}));function t(t){return{resolve:function(){var e=(t.parentStyleSheet||{}).href;return qet.inlineAll(t.cssText,e)},src:function(){return t.style.getPropertyValue("src")}}}}}(),$et=function(){return{inlineAll:function e(r){return r instanceof Element?n(r).then((function(){return r instanceof HTMLImageElement?t(r).inline():Promise.all(Vet.asArray(r.childNodes).map((function(t){return e(t)})))})):Promise.resolve(r);function n(t){var e=t.style.getPropertyValue("background");return e?qet.inlineAll(e).then((function(e){t.style.setProperty("background",e,t.style.getPropertyPriority("background"))})).then((function(){return t})):Promise.resolve(t)}},impl:{newImage:t}};function t(t){return{inline:function(e){return Vet.isDataUrl(t.src)?Promise.resolve():Promise.resolve(t.src).then(e||Vet.getAndEncode).then((function(e){return Vet.dataAsUrl(e,Vet.mimeType(t.src))})).then((function(e){return new Promise((function(r,n){t.onload=r,t.onerror=n,t.src=e}))}))}}}}(),Ket={imagePlaceholder:void 0,cacheBust:!1};function Qet(t,e){return function(t){void 0===t.imagePlaceholder?ert.impl.options.imagePlaceholder=Ket.imagePlaceholder:ert.impl.options.imagePlaceholder=t.imagePlaceholder;void 0===t.cacheBust?ert.impl.options.cacheBust=Ket.cacheBust:ert.impl.options.cacheBust=t.cacheBust}(e=e||{}),Promise.resolve(t).then((function(t){return Zet(t,e.filter,!0)})).then(trt).then((function(t){var{bgcolor:r,width:n,height:i,style:a,sx:s=1,sy:o=1}=e,l=t.style;r&&(l.backgroundColor=r);n&&(l.width=n+"px");i&&(l.height=i+"px");l["margin-left"]="0px",l["margin-top"]="0px",l.transform=`rotate(0rad) translate(0px, 0px) scale(${s}, ${o}) perspective(1px)`,a&&Object.keys(a).forEach((function(t){l[t]=a[t]}));return t})).then((function(r){return function(t,e,r){return Promise.resolve(t).then((function(t){return t.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),(new XMLSerializer).serializeToString(t)})).then(Vet.escapeXhtml).then((function(t){return'<foreignObject x="0" y="0" width="100%" height="100%">'+t+"</foreignObject>"})).then((function(t){return'<svg xmlns="http://www.w3.org/2000/svg" width="'+e+'" height="'+r+'">'+t+"</svg>"})).then((function(t){return"data:image/svg+xml;charset=utf-8,"+t}))}(r,e.width||Vet.width(t),e.height||Vet.height(t))}))}function Jet(t,e){return Qet(t,e).then(Vet.makeImage).then(Vet.delay(100)).then((function(r){var n=function(t){var r=document.createElement("canvas");if(r.width=e.width||Vet.width(t),r.height=e.height||Vet.height(t),e.bgcolor){var n=r.getContext("2d");n.fillStyle=e.bgcolor,n.fillRect(0,0,r.width,r.height)}return r}(t);return n.getContext("2d").drawImage(r,0,0),n}))}function Zet(t,e,r){return r||!e||e(t)?Promise.resolve(t).then((function(t){if(t instanceof HTMLCanvasElement)try{return Vet.makeImage(t.toDataURL())}catch(t){H7(t)}return t.cloneNode(!1)})).then((function(r){return function(t,e,r){var n=t.childNodes;return 0===n.length?Promise.resolve(e):i(e,Vet.asArray(n),r).then((function(){return e}));function i(t,e,r){var n=Promise.resolve();return e.forEach((function(e){n=n.then((function(){return Zet(e,r)})).then((function(e){e&&t.appendChild(e)}))})),n}}(t,r,e)})).then((function(e){return function(t,e){return e instanceof Element?Promise.resolve().then(r).then(n).then(i).then(a).then((function(){return e})):e;function r(){function r(t,e){function r(t,e){Vet.asArray(t).forEach((function(r){e.setProperty(r,t.getPropertyValue(r),t.getPropertyPriority(r))}))}t.cssText?e.cssText=t.cssText:r(t,e)}r(window.getComputedStyle(t),e.style)}function n(){function r(r){var n=window.getComputedStyle(t,r),i=n.getPropertyValue("content");if(""!==i&&"none"!==i){var a=Vet.uid();e.className=e.className+" "+a;var s=document.createElement("style");s.appendChild(o(a,r,n)),e.appendChild(s)}function o(t,e,r){var n="."+t+":"+e,i=r.cssText?a(r):s(r);return document.createTextNode(n+"{"+i+"}");function a(t){var e=t.getPropertyValue("content");return t.cssText+" content: "+e+";"}function s(t){return Vet.asArray(t).map(e).join("; ")+";";function e(e){return e+": "+t.getPropertyValue(e)+(t.getPropertyPriority(e)?" !important":"")}}}}[":before",":after"].forEach((function(t){r(t)}))}function i(){t instanceof HTMLTextAreaElement&&(e.innerHTML=t.value),t instanceof HTMLInputElement&&e.setAttribute("value",t.value)}function a(){e instanceof SVGElement&&(e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e instanceof SVGRectElement&&["width","height"].forEach((function(t){var r=e.getAttribute(t);r&&e.style.setProperty(t,r)})))}}(t,e)})):Promise.resolve()}function trt(t){return $et.inlineAll(t).then((function(){return t}))}var ert={toSvg:Qet,toPng:function(t,e){return Jet(t,e||{}).then((function(t){return t.toDataURL()}))},toJpeg:function(t,e){return Jet(t,e=e||{}).then((function(t){return t.toDataURL("image/jpeg",e.quality||1)}))},toBlob:function(t,e){return Jet(t,e||{}).then(Vet.canvasToBlob)},toPixelData:function(t,e){return Jet(t,e||{}).then((function(e){return e.getContext("2d").getImageData(0,0,Vet.width(t),Vet.height(t)).data}))},impl:{fontFaces:Xet,images:$et,util:Vet,inliner:qet,options:{}}};function rrt(t,e,r,n){var i=this.model_layer,a=i._overlay;return new Promise((function(s,o){if(i){var l=i.get("width"),h=i.get("height");r=r||l,n=n||h;var c=i.get("translate"),u=i.get("scale"),d=Math.min(r/l,n/h);r=l*d,n=h*d,i.set("translate",{x:0,y:0}),i.set("scale",{x:d/e9,y:d/e9});var p=mtt.createCanvas(r,n),f=p.getContext("2d");if(i.draw(f),i.set("translate",c),i.set("scale",u),!a)return s(p.toDataURL(t,e)),void(p=null);ert.toPng(a,{sx:d,sy:d,width:r,height:n}).then((function(i){var a=new Image;a.onload=function(){f.drawImage(a,0,0,r,n),s(p.toDataURL(t,e)),p=null},a.src=i}),(function(r){U7(r),s(p.toDataURL(t,e)),p=null}))}else o("No target model")}))}function nrt(){if(this.hasSameParentForAllSelected){var t=this.selected.filter((t=>!!t.parent&&!t.stuck));if(!(t.length<2)){var e=t[0].parent,r=[],n=t.sort(((t,r)=>e.components.indexOf(t)-e.components.indexOf(r)));n.forEach((t=>{r.push(t.bounds)}));var i=mtt.union(r),a=t[0].transcoordP2S(i.left,i.top);a=t[0].transcoordS2T(a.x,a.y);var s=new Map,o=Ret({type:"group",left:a.x,top:a.y,width:i.width,height:i.height},e.app,(t=>{const e=this.getNewRefid();return void 0!==t&&s.set(t,e),e}));o.replaceRefids(s);var l=[{component:o,to_container:e}];n.forEach((t=>{l.push({component:t,to_container:o})})),this.app.commander.execute(new Cet({changes:l})),this.selected=[o]}}}function irt(){if(0!==this.selected.length){var t=[],e=[];this.selected.forEach((r=>{if(r.isGroup()){var n=r.parent;r.components.forEach((r=>{t.push(r),e.push({component:r,to_container:n})})),e.push({component:r,to_container:null})}})),this.app.commander.execute(new Cet({changes:e})),this.selected=t}}function art(){var t=this.selected;if(0!=t.length){var e=t.map((t=>t.bounds)),r=mtt.union(e),n=r.left+r.width/2;t.map((t=>{t.symmetryX(n)}))}}function srt(){var t=this.selected;if(0!=t.length){var e=t.map((t=>t.bounds)),r=mtt.union(e),n=r.top+r.height/2;t.map((t=>{t.symmetryY(n)}))}}function ort(){vet.around(this.app.commander,art,this)}function lrt(){vet.around(this.app.commander,srt,this)}function hrt(t,e,r){var n=this.findAll(t,r);return n.forEach((t=>{t.set(e)})),n}function crt(t){vet.around(this.app.commander,t)}function urt(){return Object.values(this.indexMap).map((t=>t.map((t=>{let{id:e,data:r}=t.model;return{key:e,value:r}})))).flat().sort(((t,e)=>t.key>e.key?1:-1))}const drt="left",prt="right",frt="center",grt="bottom",vrt="middle",mrt=[drt,prt,frt,"top",vrt,grt];function yrt(t){if(this.hasSameParentForAllSelected&&-1!=mrt.indexOf(t)){var e=this.selected.filter((t=>!t.stuck)),r=this.app.commander;vet.around(r,(function(){!function(t,e){const r=e[0].parent,{width:n,height:i}=r.bounds;switch(t){case drt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:0}}break;case frt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:n/2-r.width/2}}break;case prt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,left:n-r.width}}break;case"top":for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:0}}break;case vrt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:i/2-r.height/2}}break;case grt:for(let t=0;t<e.length;t++){let r=e[t].bounds;e[t].bounds={...r,top:i-r.height}}break;default:;}}(t,e)}))}}function brt(t){t instanceof Array||(t=[t]),this.trigger("addstart",t)}function wrt(){this.trigger("stylepastestart")}function xrt(){this.trigger("stylepastestop")}function Art(){this.trigger("databindpastestart")}function _rt(){this.trigger("databindpastestop")}function krt(t,e,r,n){var i=t.selected,a=n?i.slice(0):[];n&&a.length>0?e=a[0].parent:e.isContainer()||(e=e.parent);var s=e.layout.capturables(e),o=!!e.layout.joinType;if(n&&r.selected.forEach((t=>{a.splice(a.indexOf(t),1)})),r.selected=[],s.forEach((t=>{t.capturable&&function(t,e,r){var n,i,a,s,{sx:o,sy:l,ex:h,ey:c}=e;if(o>h?(n=h,i=o):(n=o,i=h),l>c?(a=c,s=l):(a=l,s=c),r){var u=t.bounds,d=t.transcoordS2TR(u.left,u.top),p=t.transcoordS2TR(u.left+u.width,u.top+u.height),f=d.x,g=p.x,v=d.y,m=p.y,y=Math.min(n,f,i,g),b=Math.max(n,f,i,g),w=Math.min(a,v,s,m),x=Math.max(a,v,s,m);return!(b-y>Math.abs(i-n)+Math.abs(g-f)||x-w>Math.abs(s-a)+Math.abs(m-v))}var A=t.path;if(!A)return error("컴포넌트에 get path가 잘못 구현되어있음.",t),!1;for(let e=0;e<A.length;e++){let r=t.transcoordS2TR(A[e].x,A[e].y);if(n>r.x||i<r.x||a>r.y||s<r.y)return!1}return!0}(t,r,o)&&-1==a.indexOf(t)&&r.selected.push(t)})),a=a.concat(r.selected),i.length!==a.length)t.selected=a;else for(let e=0;e<a.length;e++)if(i[e]!=a[e]){t.selected=a;break}}function Srt(t,e,r,n,i){i||krt(t,e,r,n)}function Ert(t,e){var r=t.components||[];for(let t of r){Ert(t,e);let r=e.indexOf(t);-1!=r&&e.splice(r,1)}}mtt.register("add-layer",class extends Ytt{ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}render(t){var e=this.addbox;if(e){let{sx:r,sy:n,ex:i,ey:a}=e,s=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,i-r,a-n),t.setLineDash([2/s.x,4/s.y]),t.lineWidth=1/s.x,t.strokeStyle="black",t.stroke()}}contains(t,e){return!(3!=this.app.mode)}get eventMap(){return{"(root)":{"(self)":{addstart:this.onaddstart,addstop:this.onaddstop,keydown:this.onkeydown,dragstart:this.ondragstart,dragmove:this.ondragmove,dragend:this.ondragend,mousedown:this.onmousedown,mouseup:this.onmouseup}},"model-layer":{"(self)":{change:this.onchange_root_model}}}}onchange_root_model(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}onaddstart(t,e){void 0===this.before_mode&&(this.before_mode=this.app.mode,this.models=t,this.app.mode=3)}onaddstop(){void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode,delete this.addbox,this.invalidate()}onkeydown(t){3!==this.app.mode||"Esc"!=t.code&&"Escape"!=t.code||this.root.trigger("addstop")}ondragstart(t){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.addbox={sx:e,sy:r}}ondragmove(t){if(3===this.app.mode){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);this.addbox&&(this.addbox.ex=e,this.addbox.ey=r,this.invalidate())}}ondragend(t,e){if(3!==this.app.mode)return;const{sx:r,sy:n,ex:i,ey:a}=this.addbox;Det.call(this.root,this.models,{left:Math.min(r,i),top:Math.min(n,a),width:Math.abs(i-r),height:Math.abs(a-n)}),this.root.trigger("addstop")}onmousedown(t,e){3===this.app.mode&&(this.downpoint={x:t.offsetX,y:t.offsetY})}onmouseup(t,e){if(this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var{x:r,y:n}=this.transcoordC2S(t.offsetX,t.offsetY);Det.call(this.root,this.models,{cx:r,cy:n}),this.root.trigger("addstop")}}});mtt.register("selection-layer",class extends Ytt{ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}contains(t,e){return!1}render(t){var e=this.selbox;if(e){let{sx:r,sy:n,ex:i,ey:a}=e,s=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,i-r,a-n),t.setLineDash([2/s.x,4/s.y]),t.lineWidth=1/s.x,t.strokeStyle="black",t.stroke()}}get eventMap(){return{"(root)":{"(self)":{keydown:this.onkeydown}},"model-layer":{"(self)":{change:this.onchange_root_model},"(all)":{dragstart:this.ondragstart_selbox,dragmove:this.ondragmove_selbox,dragend:this.ondragend_selbox,mousedown:this.onmousedown_comp,mouseup:this.onmouseup_comp}}}}onkeydown(t,e){var{origin:r,deliverer:n}=e,i=n.selected;if(1!==i.length)return!1;var a=i[0],s=a.parent;if(!s||s===n)return!1;if("Tab"===t.code){var o=s.layout.capturables(s),l=o.indexOf(a);if(-1==l){if(!s.indexOf(a))return H7("Container not contains [",a,"] as a component"),!1;l=0}var h=o.length;t.shiftKey?l--:l++,a=o[(l+h)%h]}else{if(!s.layout.keyNavigate)return!1;a=s.layout.keyNavigate(s,a,t)||a}n.selected=[a],t.preventDefault()}onchange_root_model(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}_pendingDecision(t){this.downpoint={x:t.offsetX,y:t.offsetY}}_selectGroupItem(t,e){var r=this.selected.indexOf(t);let n=t.parent;for(;n.parent.isGroup();)n=n.parent;let i=[],a=!1,s=!1;if(this.selected.forEach((t=>{let e=t.parent;if(t!==n){for(;e.parent&&e.parent.isGroup();)e=e.parent;e===n&&(i.push(t),a=!0)}else s=!0})),a)if(e.shiftKey){if(-1!=r)return void this._pendingDecision(e);i.push(t)}else{if(-1!=r)return void this._pendingDecision(e);i=[t]}else{if(s)return void this._pendingDecision(e);if(e.shiftKey)if(this.selected.length>0){if(-1!=this.selected.indexOf(n))return;i=[...this.selected,n]}else i=[n];else i=[n]}this.selected=i}onmousedown_comp(t,e){var{origin:r}=e;if(this.downpoint=null,t.shiftKey){if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return void this._pendingDecision(t);{let t=this.selected.filter((t=>!t.isRootModel()&&!!t.parent)),e=t.length>0&&t[0].parent;e&&e!==r.parent&&(!function(t,e){for(var r=t.parent;r;){let t=e.indexOf(r);-1!=t&&e.splice(t,1),r=r.parent}}(r,t),Ert(r,t)),t.push(r),this.selected=t}}else{if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return;this.selected=[r],this.sameParent=!0}}onmouseup_comp(t,e){if(!this.downpoint)return;if(this.downpoint.x!==t.offsetX||this.downpoint.y!==t.offsetY)return;var{origin:r}=e;let n=this.selected.indexOf(r);if(-1==n&&r.parent.isGroup()&&(n=this.selected.indexOf(r.parent)),-1!==n&&t.shiftKey){let t=this.selected.slice();return n>-1&&t.splice(n,1),void(this.selected=t)}r.parent.isGroup()&&(this.selected=[r])}ondragstart_selbox(t,e){var{origin:r}=e;if(r.stuck){var{x:n,y:i}=this.transcoordC2S(t.offsetX,t.offsetY);this.selbox={sx:n,sy:i,selected:[]}}}ondragmove_selbox(t,e){var{origin:r}=e;if(r.stuck){var{x:n,y:i}=this.transcoordC2S(t.offsetX,t.offsetY);this.selbox&&(this.selbox.ex=n,this.selbox.ey=i,Srt(this,r,this.selbox,t.shiftKey),this.invalidate())}}ondragend_selbox(t,e){var{origin:r}=e;r.stuck&&(this.last_pos=null,this.selbox=null,Srt(this,null,null,!1,!0),this.invalidate())}});class Mrt{constructor(t){this.layer=t}draw(t,e,r){var{left:n,top:i,width:a,height:s}=e.bounds;0!=a&&0!=s&&(t.beginPath(),t.rect(n,i,a,s),t.clip(),t.beginPath(),t.strokeStyle="#f26522",t.lineWidth=4,t.shadowBlur=10,t.shadowColor="black",t.shadowOffsetX=0,t.shadowOffsetY=0,t.rect(n,i,a,s),t.stroke(),t.closePath())}}class Trt{constructor(t){this.layer=t}draw(t,e,r){var n=e.bounds;t.beginPath(),t.rect(n.left-4/r.x,n.top-4/r.y,n.width+8/r.x,n.height+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),t.closePath()}}class Crt{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){let i=r.controls;return!!i&&(i.every(((i,a)=>(Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:a,handler:i.handler}),!this.active))),!!this.active)}draw(t,e,r){var n=e.controls;n&&n.forEach(((e,n)=>{t.beginPath(),t.lineWidth=1/r.x,t.ellipse(e.x,e.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.fillStyle="#ff5d72",t.fill(),t.strokeStyle="#fff",t.stroke()}))}onevent(t,e){var{handler:r,component:n,index:i}=this.active,a=n.transcoordC2S(e.offsetX,e.offsetY);a=n.transcoordS2P(a.x,a.y),r&&"function"==typeof r[t]&&r[t](a,i,n)}onmousedown(t){this.onevent("onmousedown",t)}ondragstart(t){var e=this.active;e.changes=vet.before([e.component]),this.onevent("ondragstart",t)}ondragmove(t){this.onevent("ondragmove",t)}ondragend(t){this.onevent("ondragend",t);var{component:e,changes:r}=this.active;vet.after(r,e.app.commander),e.parent&&e.parent.calculateBounds&&e.parent.calculateBounds()}}function Prt(t,e){return Math.atan2(e.y-t.y,e.x-t.x)}const Irt=15*Math.PI/180;class Rrt{constructor(t){this.layer=t}reset(){this.active=null,this.created=null}get selected(){return this.layer.selected}contains(t,e,r,n){return!!r.mutable&&(r.path.every(((i,a)=>(Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:a}),!this.active))),!!this.active)}startLinkProcess(t,e,r){try{var n=Ret(e,t.app);return t.rootModel.addComponent(n),this.layer.selected=[n],this.active={component:n,index:1},this.ondragstart(r),n}catch(t){console.warn(r)}}draw(t,e,r){if(e.mutable&&!e.stuck){var n=e.path,i=this.active;n.forEach(((n,a)=>{t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.fillStyle="#fff",i&&i.component===e&&i.index===a&&(t.strokeStyle="#fa7703",i.toFill&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke()}))}}ondblclick(t){var e=this.active.component;if(e.pathExtendable){var r=e.path.slice();r.length<3||(r.splice(this.active.index,1),e.path=r)}}onmousedown(t){this.active.toFill=!0}ondragstart(t){var{index:e,component:r}=this.active;this.created||(this.active.changes=vet.before([r])),0!==e&&e!==r.path.length-1||(this.layer.counterEnd=0===e?r.toEnd||{fromto:"to"}:r.fromEnd||{fromto:"from"})}ondragmove(t){var{component:e,index:r}=this.active||{};const{offsetX:n,offsetY:i}=t;var a,s,o=e.transcoordC2S(n,i);if(o=e.transcoordS2P(o.x,o.y),t.shiftKey){var l=e.path.length,h=e.isLine()&&0==r?e.path[1]:e.path[(r-1+l)%l];h=e.transcoordS2P(h.x,h.y);var c,u=0;if(l>2)e.isLine()?0==r?c=e.path[2]:1!=r&&(c=e.path[r-2]):c=e.path[(r-2+l)%l],c&&(u=Prt(c=e.transcoordS2P(c.x,c.y),h));var d=Math.round((Prt(h,o)-u)/Irt)*Irt+u;o=function(t,e,r){return{x:Math.cos(e)*r+t.x,y:Math.sin(e)*r+t.y}}(h,d,(a=h,s=o,Math.sqrt((s.x-a.x)*(s.x-a.x)+(s.y-a.y)*(s.y-a.y))))}if(0===r||r===e.path.length-1){const t=this.layer.anchorTarget=e.rootModel.capture(n,i,(t=>!t.isConnectable()));if(t){const{x:a,y:s}=t.transcoordC2S(n,i),l=this.layer.get("scale")||{x:1,y:1},h=this.layer.counterEnd,c=(t.anchors||[]).find((r=>{const{name:n,inout:i,multiplicity:o=1/0,position:c,filter:u}=r;if(h){const{anchor:t,fromto:e}=h;if(t&&("out"===t.inout&&"out"===i||"in"===t.inout&&"in"===i))return!1;if("from"===e&&"out"===i||"to"===e&&"in"===i)return!1}else console.error("should not be here.");if(Math.abs(a-c.x)>8/l.x||Math.abs(s-c.y)>8/l.y)return!1;const d=t.findInOutLines(n);return!!d.includes(e)||!(o!==1/0&&d.length>=o)&&(!h||!u||!!u.call(r,h))}));c?0==r?e.from={component:t.get("refid"),anchor:c.name,position:o}:e.to={component:t.get("refid"),anchor:c.name,position:o}:0==r?e.from={position:o}:e.to={position:o}}}e.mutatePath(null,(function(t){t[r]=o}))}ondragend(t){var{component:e,index:r,changes:n}=this.active;if(0===r||r===e.path.length-1){const{offsetX:n,offsetY:i}=t,a=e.rootModel.capture(n,i,(t=>t===e||t.isLine())),{x:s,y:o}=a.transcoordC2S(n,i),l=this.layer.get("scale")||{x:1,y:1},h=(a.anchors||[]).find((t=>t&&Math.abs(s-t.position.x)<=8/l.x&&Math.abs(o-t.position.y)<=8/l.y));h&&(0==r?e.from={component:a.get("refid"),anchor:h.name}:e.to={component:a.get("refid"),anchor:h.name}),this.layer.endLinkProcess()}if(this.created){let t=new Cet({changes:[{component:this.created,to_container:this.created.parent}]});created.app.commander.execute(t)}else vet.after(n,e.app.commander);e.parent&&e.parent.calculateBounds&&e.parent.calculateBounds()}}class Ort{constructor(t){this.layer=t}get active(){return this._active?.component.disposed&&(this._active=null),this._active}set active(t){this._active=t}reset(){this.active=null}contains(t,e,r,n){const i=this.active?.component===r&&this.active?.anchor;this.active=null;const a=this.layer.counterEnd;return(r.isConnectable()&&!r.disposed&&r.anchors||[]).filter((t=>{const{name:e,inout:n,multiplicity:i=1/0,filter:s}=t;if(a){const{anchor:t,fromto:e}=a;if(t&&("out"===t.inout&&"out"===n||"in"===t.inout&&"in"===n))return!1;if("from"===e&&"out"===n||"to"===e&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&r.findInOutLines(e).length>=i)&&(!s||!a||!!s.call(t,a))})).every((a=>{const s=i===a.name?2:1;return a&&a.position&&Math.abs(t-a.position.x)<=4*s/n.x&&Math.abs(e-a.position.y)<=4*s/n.y&&(this.active={component:r,anchor:a.name,template:a.template}),!this.active})),!!this.active}draw(t,e,r){if(!e.get("refid")||e.isLine())return;var n=this.active;const i=this.active?.component===e&&this.active?.anchor,a=this.layer.counterEnd;(e.isConnectable()&&!e.disposed&&e.anchors||[]).filter((t=>{const{name:r,inout:n,multiplicity:i=1/0,filter:s}=t;if(a){const{anchor:t,fromto:e}=a;if(t&&("out"===t.inout&&"out"===n||"in"===t.inout&&"in"===n))return!1;if("from"===e&&"out"===n||"to"===e&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&e.findInOutLines(r).length>=i)&&(!a||!s||!!s.call(t,a))})).forEach((a=>{const{name:s,position:o}=a,l=i===s?2:1;o&&(t.beginPath(),t.ellipse(o.x,o.y,4*l/r.x,4*l/r.y,0,0,2*Math.PI),t.setLineDash([0,0]),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",n&&n.component===e&&n.anchor===s&&(t.strokeStyle="#fa7703",n.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}onmousedown(t){this.active.focus=!0}ondragstart(t){const{component:e,anchor:r,template:n}=this.active,i=this.layer.transcoordC2S(t.offsetX,t.offsetY);this.layer.startLinkProcess(e,{type:"ortholine",lineWidth:1,strokeStyle:"black",begin:"oval",beginSize:"size9",end:"arrow",endSize:"size9",lineDash:"solid",lineCap:"butt",round:10,...n,from:{component:e.get("refid"),anchor:r,position:i},to:{position:i}},t)}ondragmove(t){}ondragend(t){}}function Lrt(t,e,r){var n,i,{left:a,top:s,width:o,height:l}=t.bounds;switch(e){case 0:n=a,i=s;break;case 1:n=a+o/2,i=s;break;case 2:n=a+o,i=s;break;case 3:n=a+o,i=s+l/2;break;case 4:n=a+o,i=s+l;break;case 5:n=a+o/2,i=s+l;break;case 6:n=a,i=s+l;break;case 7:n=a,i=s+l/2}var h=n,c=i,u=t.transcoordT2S(r.x,r.y);return{dx:u.x-h,dy:u.y-c}}function Drt(t,e,r,n,i,a){var{left:s,top:o,width:l,height:h}=t.bounds,c={left:s,top:o,width:l,height:h};switch(e){case 0:s+=n,o+=i,l-=n,h-=i;break;case 1:o+=i,h-=i;break;case 2:o+=i,l+=n,h-=i;break;case 3:l+=n;break;case 4:l+=n,h+=i;break;case 5:h+=i;break;case 6:s+=n,l-=n,h+=i;break;case 7:s+=n,l-=n}if(t.mutateBounds((function(e){return Math.abs(l)<=.001&&(l=.001),Math.abs(h)<=.001&&(h=.001),t.adjustResize({left:s,top:o,width:l,height:h},c,r)}),this),t.isContainer()&&t.layout.ABSOLUTE&&!t.isGroup()){var u=c.left-s,d=c.top-o;a?t.components.forEach((t=>{t.delta("tx",0),t.delta("ty",0),t.move({x:u,y:d},!1)})):t.components.forEach((t=>{t.delta("tx",u),t.delta("ty",d)}))}else{var p=a&&t.parent;p&&p.isGroup()&&p.calculateBounds()}}function Frt(t,e){var{left:r,top:n,width:i,height:a}=t,s=r+i/2,o=n+a/2,l=r+i,h=n+a;const c=i*e.x>50,u=a*e.y>50;return[{x:r,y:n},c?{x:s,y:n}:null,{x:l,y:n},u?{x:l,y:o}:null,{x:l,y:h},c?{x:s,y:h}:null,{x:r,y:h},u?{x:r,y:o}:null]}class Nrt{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){return!!r.resizable&&(Frt(r.bounds,n).every(((i,a)=>(i&&Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r,index:a}),!this.active))),!!this.active)}draw(t,e,r){if(!e.isLine()){var{left:n,top:i,width:a,height:s}=e.bounds;if(t.beginPath(),t.rect(n-4/r.x,i-4/r.y,a+8/r.x,s+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),e.resizable){var o=this.active;Frt(e.bounds,r).forEach(((n,i)=>{n&&(t.beginPath(),t.rect(n.x-4/r.x,n.y-4/r.y,8/r.x,8/r.y),t.setLineDash([0,0]),t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",o&&o.component===e&&o.index===i&&(t.strokeStyle="#fa7703",o.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}}onmousedown(t){this.active.focus=!0}ondragstart(t){var{component:e}=this.active;this.active.bounds=e.bounds,this.active.boundsList=this.layer.selected.filter((t=>t.resizable)).map((t=>t.bounds))}ondragmove(t){var{component:e,index:r,boundsList:n,bounds:i}=this.active,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);e.bounds=i;var s=Lrt(e,r,a);this.layer.selected.filter((t=>t.resizable)).forEach(((e,i)=>{e.bounds=n[i],Drt(e,r,t.shiftKey,s.dx,s.dy,!1)}))}ondragend(t){var{component:e,index:r,boundsList:n,bounds:i}=this.active,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);e.bounds=i;var s=Lrt(e,r,a);this.layer.selected.filter((t=>t.resizable)).forEach(((e,i)=>{e.bounds=n[i],Drt(e,r,t.shiftKey,s.dx,s.dy,!0)})),this.active.component.app.commander.execute(null,!1)}}const jrt=2*Math.PI,Brt=Math.PI/2;function zrt(t,e){var r=t.bounds;return{x:r.left+r.width/2,y:r.top-20/e.y}}class Wrt{constructor(t){this.layer=t}reset(){this.active=null}get selected(){return this.layer.selected}contains(t,e,r,n){if(!r.rotatable)return!1;var i=zrt(r,n);return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(this.active={component:r},!0)}draw(t,e,r){if(e.rotatable){t.beginPath();var n=zrt(e,r);t.lineWidth=1.5/r.x,t.moveTo(n.x,n.y+20/r.y),t.lineTo(n.x,n.y),t.strokeStyle="#656565",t.stroke(),t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,jrt,!0),t.stroke(),t.fillStyle="#fff",t.fill();var i=this.active;i&&i.component===e&&(t.strokeStyle="#fa7703",t.stroke(),i.toFill&&(t.fillStyle="#ffb80c",t.fill()))}}onmousedown(t){this.active.toFill=!0}ondragstart(t){var e=this.active;e.component,e.start_rotation=e.component.get("rotation"),e.rotations=this.layer.selected.filter((t=>t.rotatable)).map((t=>t.get("rotation")))}ondragmove(t){var{component:e}=this.active,r=e.transcoordC2S(t.offsetX,t.offsetY);r=e.transcoordS2P(r.x,r.y);var n=e.rotatePoint,i=e.get("rotation")||0,a=Math.atan((n.y-r.y)/(n.x-r.x)),s=(a=n.x>=r.x?a-Brt:Brt+a)-i;this.layer.selected.filter((t=>t.rotatable)).forEach(((e,r)=>{let n=((e.get("rotation")||0)+s)%jrt;e.set("rotation",e.adjustRotation(n,t.shiftKey))}))}ondragend(t){var{component:e,rotations:r}=this.active;e.app.commander.execute(null,!1)}}mtt.register("modeling-layer",class extends Ytt{constructor(t,e){super(t,e),this.pathHandler=new Rrt(this);var r=this.pathHandler,n=new Crt(this),i=new Nrt(this),a=new Wrt(this);this._modelers=[r,n,i,a],this._control_mode_modelers=[n,r,i,a],this.focusOutline=new Mrt(this),this.groupOutline=new Trt(this),this.anchorHandler=new Ort(this),this._reversed_modelers=this._modelers.slice().reverse(),this._control_mode_reverse_modelers=this._control_mode_modelers.slice().reverse(),this.hovered=null,this.hoveredDest=null}get modelers(){return this._control_mode?this._control_mode_modelers:this._modelers}get reversedModelers(){return this._control_mode?this._control_mode_reverse_modelers:this._reversed_modelers}ready(){super.ready();var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}contains(t,e){var r=this.selected.filter((t=>!!t.parent)),n=this.get("scale")||{x:1,y:1};if(this._state_dragging){if(this._counter_end){let r=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(r.x,r.y,this.anchorTarget,n))return!0}return!0}this.modelers.forEach((t=>t.reset()));r=this.selected.filter((t=>!!t.parent));for(let i=0;i<r.length;i++){let a=r[i],s=a.transcoordT2S(t,e);for(let t=0;t<this.modelers.length;t++){let e=this.modelers[t];if(e.contains(s.x,s.y,a,n))return this.currentModeler=e,!0}}if(this.anchorTarget){let r=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(r.x,r.y,this.anchorTarget,n))return this.currentModeler=this.anchorHandler,!0}else this.anchorHandler.reset();return this.currentModeler=null,!1}_componentDrawer(t,e,r,n){let i=[],a=e.parent;if(e.isRootModel())return t.save(),n(t,e,r),void t.restore();for(;a&&!a.isRootModel();)i.push(a),a=a.parent;t.save(),i.reverse().forEach((function(e){let r=e.rotatePoint;t.translate(r.x,r.y);let n=e.get("scale");n&&t.scale(n.x,n.y),t.rotate(e.get("rotation")),t.translate(-r.x,-r.y);let i=e.bounds;t.translate(i.left,i.top)}));let s=e.rotatePoint;t.translate(s.x,s.y);let o=e.get("scale");o&&t.scale(o.x,o.y),t.rotate(e.get("rotation")),t.translate(-s.x,-s.y),n(t,e,r),t.restore()}prerender(t){var{translate:e,scale:r={x:1,y:1},rotation:n}=this.model;t.save(),t.beginPath(),t.clearRect(0,0,t.canvas.width,t.canvas.height),t.rect(0,0,t.canvas.width,t.canvas.height),t.fillStyle="black",t.globalAlpha=.5,t.fill(),t.restore(),e&&t.translate(e.x*e9,e.y*e9),t.scale(r.x*e9,r.y*e9),n&&t.rotate(n),t.clearRect(0,0,this.rootModel.get("width"),this.rootModel.get("height"))}render(t){t.beginPath();var e=this.get("scale")||{x:1,y:1},r=this.selected.filter((t=>!!t.parent));if(this.focused&&this._componentDrawer(t,this.focused,e,((t,e,r)=>{this.focusOutline.draw(t,e,r)})),r.length>0&&r[0].parent.isGroup()){let n=r[0].parent;for(;n.parent.isGroup();)n=n.parent;this._componentDrawer(t,n,e,((t,e,r)=>{this.groupOutline.draw(t,e,r)}))}r.forEach((r=>{this._componentDrawer(t,r,e,((t,e,r)=>{this.reversedModelers.forEach((n=>n.draw(t,e,r)))}))})),this.anchorTarget&&this._componentDrawer(t,this.anchorTarget,e,((t,e,r)=>{this.anchorHandler.draw(t,e,r)}))}get anchorTarget(){return this.currentModeler===this.anchorHandler||this.currentModeler===this.pathHandler||this.hovered?.isLine()||(this._anchorTarget=this.hovered),this._anchorTarget}set anchorTarget(t){this._anchorTarget=t}get hovered(){return this._hovered}set hovered(t){this._hovered=t,this.invalidate()}startLinkProcess(t,e,r){this.currentModeler=this.pathHandler,this.processingLink=this.pathHandler.startLinkProcess(t,e,r),this.counterEnd=this.processingLink.fromEnd,this.processingLink.trigger("tag")}set counterEnd(t){this.currentModeler=this.pathHandler,this._counter_end=t}get counterEnd(){return this._counter_end}endLinkProcess(){this.processingLink?.trigger("tagreset"),this.processingLink=null,this._counter_end=null}get eventMap(){return{"model-layer":{"(all)":{change:this.onchange_model,wheel:this.onwheel_scale,drop:this.ondrop},"(descendant)":{mouseenter:this.onmouseenter,mouseleave:this.onmouseleave},"(self)":{dblclick:this.ondblclick_model}},"(root)":{"(self)":{selected:this.onselected,keydown:this.onkeydown,keyup:this.onkeyup}}}}onmouseenter(t,e){this.hovered=e?.origin}onmouseleave(t,e){this.hovered=null}onkeydown(t){"Alt"==t.key&&(this._control_mode=!0,this.invalidate())}onkeyup(t){"Alt"==t.key&&(this._control_mode=!1,this.invalidate())}onselected(t,e){this.invalidate()}onchange_model(t,e,r){var{origin:n,deliverer:i}=r;n===i&&(t.translate&&this.set("translate",t.translate),void 0!==t.rotation&&this.set("rotation",t.rotation),t.scale&&this.set("scale",t.scale)),this.invalidate()}ondblclick_model(t,e){const r=e.origin;r?.root.fit()}ondblclick(t){"function"==typeof this.currentModeler.ondblclick&&this.currentModeler.ondblclick(t),this.invalidate()}onmousedown(t){this.currentModeler.onmousedown(t),this.invalidate()}onmouseup(t){"function"==typeof this.currentModeler.onmouseup&&this.currentModeler.onmouseup(t),this.invalidate()}ondragstart(t){this.currentModeler.ondragstart(t),this._state_dragging=!0}ondragmove(t){this.currentModeler.ondragmove(t),this.invalidate()}ondragend(t){this._state_dragging=!1,this.currentModeler.ondragend(t),this.invalidate()}ondrop(t,e){var{origin:r}=e,n=t.dataTransfer.files;if(n.length<1)return;let i=this.rootModel.transcoordC2S(t.offsetX,t.offsetY),a=this.rootModel;Promise.all(Array.from(n).map((t=>new Promise(((e,r)=>{let n=new FileReader;n.addEventListener("loadend",(t=>{e(n.result)})),["error","abort"].forEach((t=>n.addEventListener(t,(t=>{r(t)})))),n.readAsDataURL(t)}))))).then((e=>{if(t.altKey)return vet.around(this.app.commander,(()=>{r.ondropfile(n,e)})),void(this.selected=[r]);let s=[],o=e.map(((t,e)=>{let r,o=n[e].type,l=n[e].name;return o.startsWith("image/")?(r=Ret({type:o.startsWith("image/gif")?"gif-view":"image-view",top:0,left:0,width:200,height:200,src:t},a.app),s.push(new Promise(((e,n)=>{let i=new Image;i.src=t,i.onload=()=>{r.set({width:i.width,height:i.height}),e()},i.onerror=t=>{n(t)}})))):o.startsWith("audio/")?r=Ret({type:"audio",top:0,left:0,width:100,height:100,src:t},a.app):o.startsWith("vnd.ms-excel/")||/\.xlsx?$/.test(l)?r=Ret({type:"excel",top:0,left:0,width:100,height:100,src:t},a.app):console.log("droped file",n[e]),r&&(r.center=i,i.x+=50,i.y+=50),r})).filter(Boolean).map((t=>({component:t,to_container:a})));o.length>0&&Promise.all(s).then((()=>{this.app.commander.execute(new Cet({changes:o})),this.selected=o.map((t=>t.component))}),(t=>{console.error(t)}))}),(t=>{console.error(t)}))}onwheel_scale(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer;if(t.shiftKey){if(-1!=navigator.userAgent.indexOf("Win"))var n=t.deltaY<0?1:-1;else n=t.deltaX<0?1:-1;t.altKey?vet.around(this.app.commander,(()=>{r.selected.forEach((t=>{let e=t.get("letterSpacing")||i9.LETTER_SPACING;e+=n,t.set("letterSpacing",e)}))})):vet.around(this.app.commander,(()=>{r.selected.forEach((t=>{let e=t.get("fontSize")||i9.FONT_SIZE;e<1&&(e=1),e+=n,t.set("fontSize",e)}))}))}else{n=t.deltaY<0?1:-1;let e=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,s=t.offsetY,o=r.transcoordC2S(a,s),l=.1*n,h={x:e.x+l,y:e.y+l};if(n<0&&e.x<.2||n>0&&e.x>10)return;r.set("scale",h);let c=r.transcoordC2S(a,s);r.set("translate",{x:i.x+(c.x-o.x)*h.x,y:i.y+(c.y-o.y)*h.y})}}}});class Urt extends Ytt{constructor(t,e){super(t,e),this._anim_alpha=1}animOnTargetChange(t){t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:t=>{this._anim_alpha=1-t,this.invalidate()},duration:5e3,delta:"circ",ease:"in"}).start())}decorate(t,e,r){const n=t.decorators;var i=!1;return n.map((t=>"string"==typeof t?htt(t):t)).filter((t=>t&&"function"==typeof t)).map((n=>{const a=n(t,e,1-r);i||=a})),i}render(t){var e=this.decoTargets&&this.decoTargets.filter((t=>t.rootModel));if(!e||0==e.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var r=!1;e.forEach((e=>{this.decorate(e,t,1-this._anim_alpha)&&(r=!0)})),r&&this.animOnTargetChange(this.decoTargets)}get decoTargets(){return this._decoTargets}set decoTargets(t){this._decoTargets=t&&t.filter((t=>!t.isLayer())),this.invalidate()}get eventMap(){return{"model-layer":{"(descendant)":{tag:this.ondecotag,tagreset:this.ondecotagreset,mouseenter:this.onmouseenter,mouseleave:this.onmouseleave}}}}onmouseenter(t,e){this._decotagreset(),this._ondecotag(e.origin)}onmouseleave(t,e){this._decotagreset()}ondecotagreset(t){this._decotagreset()}ondecotag(t){this._ondecotag(t.origin)}offdecotag(t,e){this._offdecotag(e.origin)}_ondecotag(t){this.decoTargets&&-1!==this.decoTargets.lastIndexOf(t)||(this.decoTargets=(this.decoTargets||[]).concat(t))}_offdecotag(t){if(this.decoTargets){var e=this.decoTargets.slice();e.splice(this.decoTargets.lastIndexOf(t),1),this.decoTargets=e}}_decotagreset(){this.decoTargets=[]}}mtt.register("decotag-layer",Urt),mtt.register("tag-layer",Urt);mtt.register("reaction-layer",class extends Ytt{constructor(t,e){super(t,e),this._anim_alpha=1}animOnTargetChange(t){t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:t=>{this._anim_alpha=1-t,this.invalidate()},duration:1e4,delta:"circ",ease:"inout"}).start())}decorate(t,e,r){const n=t.reactionDecorators;var i=!1;return n.map((t=>"string"==typeof t?htt(t):t)).filter((t=>t&&"function"==typeof t)).map((n=>{const a=n(t,e,1-r);i||=a})),i}render(t){var e=this.targets&&this.targets.filter((t=>t.rootModel));if(!e||0==e.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var r=!1;e.forEach((e=>{this.decorate(e,t,1-this._anim_alpha)&&(r=!0)})),r&&this.animOnTargetChange(this.targets)}get targets(){return this._targets}set targets(t){this._targets=t&&t.filter((t=>!t.isLayer())),this.invalidate()}get eventMap(){return{"model-layer":{"(descendant)":{reaction:this.onreaction,reactionreset:this.onreactionreset}}}}onreactionreset(t){this._reactionreset()}onreaction(t){this._onreaction(t.origin)}offreaction(t,e){this._offreaction(e.origin)}_onreaction(t){this.targets&&-1!==this.targets.lastIndexOf(t)||(this.targets=(this.targets||[]).concat(t))}_offreaction(t){if(this.targets){var e=this.targets.slice();e.splice(this.targets.lastIndexOf(t),1),this.targets=e}}_reactionreset(){this.targets=[]}});function Hrt(){var t=arguments,e=t[t.length-1],r=this.event_pump;r.listeners.forEach((n=>{!function(t,e,r,n,i){for(let a in r){let s=r[a];if(c9(a,n.origin,0,t))for(let t in s){let r=s[t];t==n.name&&(n.listener=e,r.apply(e,i))}}}(r.deliverer,n.listener,n.cloned_handlers,e,t)}))}mtt.register("scroll-layer",class extends Ytt{get capturable(){return!0}render(t){const{scrolling:e}=this.state;if(t.save(),t.beginPath(),t.fillStyle="#777",this.vscroller){const{left:r,top:n,width:i,height:a}=this.vscroller;t.globalAlpha="v"==e?1:.3,t.fillRect(r,n,i,a)}if(this.hscroller){const{left:r,top:n,width:i,height:a}=this.hscroller;t.globalAlpha="h"==e?1:.3,t.fillRect(r,n,i,a)}t.stroke(),t.restore()}resize(){super.resize(),this.calcScrollerBounds()}contains(t,e){const r=this.vscroller,n=this.hscroller;return this.setState("scrolling",r&&t>=r.left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height?"v":n&&t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?"h":null),!!this.getState("scrolling")}get eventMap(){return{"(root)":{"model-layer":{change:this.onchangeModelLayer}}}}onchange(t){"scrolling"in t&&this.invalidate()}ondragstart(t,e){this.lastPosition={x:t.offsetX,y:t.offsetY}}ondragmove(t,e){const r=this.root,{clientWidth:n,clientHeight:i}=this.canvas,{width:a,height:s}=this.rootModel.model,{x:o,y:l}={x:t.offsetX,y:t.offsetY},{x:h,y:c}=this._scale,{scrolling:u}=this.state,d=a/n,p=s/i;u&&r.rootModel.move({x:"h"==u?(-o+this.lastPosition.x)*h*d:0,y:"v"==u?(-l+this.lastPosition.y)*c*p:0},!1),this.lastPosition={x:t.offsetX,y:t.offsetY}}ondragend(){delete this.lastPosition,this.setState({scrolling:null})}calcScrollerBounds(){var{clientWidth:t,clientHeight:e}=this.canvas;const{width:r,height:n}=this.rootModel.model,{x:i=1,y:a=1}=this._scale||{},{x:s=0,y:o=0}=this._translate||{},l=r/t,h=n/e;var c={left:-s/i/l,top:e-10,width:t/i/l,height:10};this.hscroller=c.left>1||c.width+c.left<t-1?c:null,c={left:t-10,top:-o/a/h,width:10,height:e/a/h},this.vscroller=c.top>1||c.height+c.top<e-1?c:null,this.invalidate()}onchangeModelLayer(t,e,r){if(t.scale){const{x:e=1,y:r=1}=t?.scale||{};this._scale={x:e,y:r},this.calcScrollerBounds()}if(t.translate){const{x:e=0,y:r=0}=t.translate||{};this._translate={x:e,y:r},this.calcScrollerBounds()}}});class Grt{constructor(t){if(void 0===t.on)throw new Error("Deliverer should be a event handlable object.");this.deliverer=t,this.listeners=[]}start(){this.deliverer.on("(all)",Hrt,{event_pump:this})}stop(){this.deliverer.off("(all)",Hrt)}on(t,e){var r=Object.assign({},e);Object.keys(r).forEach((e=>{if(0==e.indexOf("?")){let n=r[e],i=e.substr(1),a=t.get(i);delete r[e],a?r[a]=n:H7("EventPump#on","variable #{selector} is not evaluated on listener")}})),this.listeners.push({listener:t,handlers:e,cloned_handlers:r})}off(t,e){for(let r=0;r<this.listeners.length;r++){let n=this.listeners[r];n.listener!==t||e&&n.handlers!==e||this.listeners.splice(r,1)}}clear(){this.listeners=[]}dispose(){this.stop(),this.clear()}}class Yrt{constructor(t){this.eventMaps=[],this.root=t,t.eventMap&&this.add(t,t.eventMap)}set root(t){this._root=t}get root(){return this._root}stop(){this.eventMaps.forEach((t=>t.eventPump.stop()))}add(t,e){if(this.root)for(let r in e){let n=e[r];if("(self)"===r&&void 0===t.on)throw new Error("(self) selector not available when deliverer is not a event handlable object.");p9(r,this.root,t).forEach((r=>{var i=new Grt(r);i.on(t,n),i.start(),this.eventMaps.push({eventPump:i,listener:t,handlerMap:e,deliverer:r})}))}}remove(t,e){var r=this.eventMaps.slice(0);for(let n=0;n<r.length;n++){let i=r[n];i.listener!==t||e&&i.handlerMap!==e||(this.eventMaps.splice(n,1),i.eventPump.dispose())}}clear(){this.eventMaps.slice(0).forEach((t=>t.eventPump.dispose())),this.eventMaps=[]}dispose(){this.stop(),this.clear()}}const Vrt=0,qrt=1,Xrt=2,$rt=0,Krt=1,Qrt=2;var Jrt={},Zrt=0;class tnt{constructor(t,e){this._type=e||t.type,this._ctrlKey=t.ctrlKey,this._altKey=t.altKey,this._shiftKey=t.shiftKey,this._metaKey=t.metaKey;var r=function(t){if(t.touches){let e=t.touches[0];if(!e)return Jrt;let r=e.target.getBoundingClientRect();return Jrt={x:t.offsetX||e.clientX-(r.x||r.left),y:t.offsetY||e.clientY-(r.y||r.top)}}return{x:t.offsetX,y:t.offsetY}}(t);if(this._offsetX=r.x,this._offsetY=r.y,"wheel"==t.type)this.deltaX=t.deltaX,this.deltaY=t.deltaY,this.deltaZ=t.deltaZ;else if("drop"==t.type)this.dataTransfer=t.dataTransfer;else if(t.type.match(/^touch/)&&(this._scale=t.scale,this._touches=t.touches,this._changedTouches=t.changedTouches,null==this._scale)){var n=function(t){var e,r,n=0,i=0,a=0;if(1===t.touches.length)return a;Array.from(t.touches).forEach((t=>{e=null!=e?Math.min(t.screenX,e):t.screenX,n=Math.max(t.screenX,n),r=null!=r?Math.min(t.screenY,r):t.screenY,i=Math.max(t.screenY,i)}));var s=n-e||0,o=i-r||0;return Math.sqrt(Math.pow(s,2)+Math.pow(o,2))||0}(t);Zrt>0&&(this._scale=n/Zrt),Zrt=n}}get type(){return this._type}set type(t){this._type=t}get offsetX(){return this._offsetX}get offsetY(){return this._offsetY}get altKey(){return this._altKey}get ctrlKey(){return this._ctrlKey}get shiftKey(){return this._shiftKey}get metaKey(){return this._metaKey}get touches(){return this._touches}get changedTouches(){return this._changedTouches}get scale(){return this._scale}stopPropagation(){this._stop_=!0,this.originalEvent&&"function"==typeof this.originalEvent.stopPropagation&&this.originalEvent.stopPropagation()}isPropagationStopped(){return this._stop_}preventDefault(){this._prevented=!0}isDefaultPrevented(){return this._prevented}}function ent(t,e){return t.capture(e.offsetX,e.offsetY)}function rnt(t,e,r){if(t&&t.app&&(!t.app.isViewMode||!t.hidden)){r instanceof tnt&&e===r.type||(r=new tnt(r,e));var n="on"+e;t[n]&&t[n](r),r.isPropagationStopped()||t.trigger(e,r)}}class nnt{constructor(t,e){this.container=t,this.html_element=e,this.status=Vrt,this.last_target=null,this.gesture_handlers=r9.map((t=>this.gestureHandlerBuilder(t))),this.keyevent_handlers=n9.map((t=>this.keyeventHandlerBuilder(t))),r9.forEach(((t,r)=>e.addEventListener(t,this.gesture_handlers[r])),{passive:!1}),n9.forEach(((t,r)=>e.addEventListener(t,this.keyevent_handlers[r]))),e.ondragover=this.gestureHandlerBuilder("dragover"),e.ondrop=this.gestureHandlerBuilder("drop"),e.tabIndex=1}dispose(){this.last_enter_target&&rnt(this.last_enter_target,"mouseleave",new CustomEvent("mouseleave")),r9.forEach(((t,e)=>this.html_element.removeEventListener(t,this.gesture_handlers[e]))),n9.forEach(((t,e)=>this.html_element.removeEventListener(t,this.keyevent_handlers[e]))),delete this.gesture_handlers,delete this.keyevent_handlers,delete this.last_target}gestureHandlerBuilder(t){var e=this[`on${t}`].bind(this);return t=>{const r=new tnt(t);return e(r),r.isDefaultPrevented()&&t.preventDefault(),!1}}keyeventHandlerBuilder(t){return this[`on${t}`].bind(this)}ondragover(t){return rnt(ent(this.container,t),t.type,t),!1}ondrop(t){return rnt(ent(this.container,t),t.type,t),!1}ondblclick(t){return rnt(ent(this.container,t),t.type,t),this.last_target=null,!1}onkeydown(t){return this.container.trigger(t.type,t),!1}onkeyup(t){return this.container.trigger(t.type,t),!1}onmousemove(t){switch(this.status){case qrt:let r=t.offsetX-this.__dragstart_e.offsetX,n=t.offsetY-this.__dragstart_e.offsetY;if(r*r+n*n<16)break;this.status=Xrt,rnt(this.last_target,"dragstart",this.__dragstart_e),this.__dragmove_e=t,rnt(this.last_target,"dragmove",t);break;case Xrt:this.__dragmove_e=t,rnt(this.last_target,"dragmove",t);break;default:var e=ent(this.container,t);this.last_enter_target!==e&&(this.last_enter_target&&rnt(this.last_enter_target,"mouseleave",t),e&&rnt(e,"mouseenter",t),this.last_enter_target=e),rnt(e,t.type,t),this.last_target=e}return!1}onmousedown(t){if(this.status===Xrt)rnt(this.last_target,"dragend",t),this.last_target=null,this.status=Vrt;else{var e=ent(this.container,t);this.last_target=e,this.status=qrt,this.__dragstart_e=t,rnt(e,t.type,t)}return!1}onmouseup(t){if(this.status===Xrt)rnt(this.last_target,"dragend",t);else{var e=ent(this.container,t);rnt(e,t.type,t),this.last_target===e&&rnt(e,"click",t)}return this.last_target=null,this.status=Vrt,!1}onmouseout(t){var e=ent(this.container,t);if(this.status===Xrt)rnt(this.last_target,"dragend",t);else{if(this.last_target&&this.last_target===e)return;this.last_enter_target&&(rnt(this.last_enter_target,"mouseleave",t),delete this.last_enter_target)}return this.last_target=null,this.status=Vrt,!1}ontouchstart(t){var e=ent(this.container,t);return this.last_target=e,this.status=Krt,this.touchPoints||(this.touchPoints=[]),this.touchPoints.push(t.changedTouches[0]),this.holdTimer=setTimeout((()=>{this.status=$rt,rnt(this.last_target,"hold",t),delete this.holdTimer}),500),rnt(e,t.type,t),!1}ontouchmove(t){if(!t.touches||!t.changedTouches)return rnt(this.last_target,"dragstart",t),rnt(this.last_target,"dragmove",t),!1;var e=ent(this.container,t);switch(this.status){case Krt:Array.from(t.changedTouches).forEach((t=>{var e=this.touchPoints.find((e=>e.identifier===t.identifier));if(e){var r=e.clientX-t.clientX,n=e.clientY-t.clientY;return Math.sqrt(Math.pow(r,2)+Math.pow(n,2))>=16?(this.status=Qrt,void(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer))):void 0}}));break;case Qrt:if(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer),2===t.changedTouches.length&&null!=t.scale&&1!==t.scale&&(t.scale<.9||t.scale>1.1))return rnt(this.last_target,"pinch",t),!1;rnt(this.last_target,"pan",t),e=this.last_target;break;default:this.last_enter_target!==e&&(this.last_enter_target&&rnt(this.last_enter_target,"mouseleave",t),e&&rnt(e,"mouseenter",t),this.last_enter_target=e),this.last_target=e}return rnt(e,"touchmove",t),!1}ontouchend(t){var e=ent(this.container,t);switch(this.status){case Qrt:e=this.last_target;break;case Krt:var r=performance.now(),n=r-this.touchedAt;this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer,rnt(e,n<500?"doubletap":"tap",t),this.touchedAt=r)}rnt(e,"touchend",t);var i=this.touchPoints.findIndex((e=>e.identifier===t.changedTouches[0].identifier));return this.touchPoints.splice(i,1),this.last_target=null,this.status=$rt,!1}onwheel(t){return rnt(ent(this.container,t),t.type,t),!1}}function int(t,e,r,n=0){if(e.length<2)return e;let i=2;for(;i<e.length;i++){const a=e.substring(0,i);if(!(t.measureText(a).width+(a.length-1)*n<r))break}return e.substring(0,i-1)}function ant(t,e,r,n,i=0){const a=String(e).split("\n");return n?[].concat.apply([],a.map((e=>function(t,e,r,n=0){const i=e.split(" "),a=[];let s,o,l=[];for(s=0,o=1;o<=i.length;o++)if(l=i.slice(s,o),t.measureText(l.join(" ")).width+(l.join("").length-1)*n>r){if(o-s==1){const e=int(t,l[0],r,n);a.push([e]),i.splice(s,1,e,l[0].substring(e.length))}else{for(;""==i[o-1];)o++;a.push(i.slice(s,--o))}s=o}return o-s>1&&a.push(l),0==a.length&&a.push([""]),a}(t,e,r,i)))):a.map((t=>t.split(" ")))}var snt={},ont={};const lnt=()=>{};var hnt={register:function(t,e,r){snt[t]=e,r&&(ont[t]=r)},unregister:function(t){delete snt[t],delete ont[t]},get:function(t){return snt[t]},getDisposer:function(t){return ont[t]||lnt}};function cnt(t){if(!t.hasTextProperty||t.textHidden)return;var{text:e="",bold:r=i9.BOLD,italic:n=i9.ITALIC,textWrap:i=i9.TEXT_WRAP,letterSpacing:a=0,fontFamily:s=i9.FONT_FAMILY,fontColor:o=i9.FONT_COLOR,textAlign:l=i9.TEXT_ALIGN,textBaseline:h=i9.TEXT_BASELINE,fontSize:c=i9.FONT_SIZE,lineHeight:u=1.2*c}=t.model,{left:d,top:p,width:f,height:g}=t.textBounds;c||=i9.FONT_SIZE,u||=1.2*c,t.textHidden=!0;var v=document.createElement("textarea");r9.forEach((function(t){v.addEventListener(t,(function(t){t.stopPropagation()}),!0)}));const m=t.transcoordS2C(d,p),{rotation:y,scale:b}=function(t){for(var e=0,r=1,n=t;n;){e+=n.get("rotation")||0;let{x:t,y:i}=n.get("scale")||{x:1,y:1};r*=Math.max(t,i)||1,n=n.parent}return{rotation:e,scale:r}}(t);switch(v.style.position="absolute",v.style.width=f+"px",v.style.height=g+"px",v.style.padding="0",v.value=e,v.style.fontFamily=s,v.style.fontSize=c+"px",v.style.lineHeight=u+"px",v.style.overflow="hidden",v.style.resize="none",v.style.outline="none",v.style.border=0,v.style.backgroundColor="transparent",v.style.display="inline-block",v.style.color=o,r&&(v.style.fontWeight="bold"),n&&(v.style.fontStyle="italic"),l){case"right":case"end":v.style.textAlign="right";break;case"justify":v.style.textAlign="justify";break;case"left":case"start":v.style.textAlign="left";break;default:v.style.textAlign="center"}var w=[r,n,c+"px",s].filter(Boolean).join(" ");function x(e){var r={left:0,top:0},n=u*function(t,e,r,n,i=0){var a,s=t.getContext();return s.save(),s.font=r,a=ant(s,e,n,t.get("textWrap"),i).length,s.restore(),a}(t,e,w,f,a);switch(v.style.height=n+"px",h){case"top":case"hanging":break;case"bottom":case"alphabetic":r.top=g-n;break;default:r.top=g/2-n/2}if(!i){var s=function(t,e,r,n){var i=e.split("\n"),a=n;let s=t.getContext();return s.save(),s.font=r,i.forEach((t=>{let e=s.measureText(t).width;e>a&&(a=e)})),s.restore(),a}(t,e,w,f);switch(v.style.width=s+"px",l){case"right":case"end":r.left=f-s;break;case"left":case"start":break;default:r.left=(f-s)/2}}v.style.marginLeft=r.left+"px",v.style.marginTop=r.top+"px",v.style.transform=`translate(${m.x}px, ${m.y}px) scale(${b}) rotate(${y}rad)`,v.style.transformOrigin=`${-r.left}px ${-r.top}px`}x(e);var A=t.root.target_element;A.appendChild(v),v.select();var _,k=!1;v.addEventListener("keydown",(function(t){t.stopPropagation(),"Escape"!=t.code&&(t.shiftKey||"Enter"!=t.code&&"NumpadEnter"!=t.code)?setTimeout((()=>{x(v.value)})):(k=_.skipUpdate="Escape"==t.code,document.createEvent?v.dispatchEvent(_):v.fireEvent(_.eventType,_))})),document.createEvent?(_=document.createEvent("HTMLEvents")).initEvent("blur",!0,!1):(_=document.createEventObject()).eventType="blur";var S=t.root.selected,E=function(r){t.root.selected=S,t.textHidden=!1,v.removeEventListener("blur",E,!1),v.parentElement&&v.parentElement.removeChild(v),A.focus(),r.skipUpdate||k||t.app.commander.execute(new vet({changes:[{component:t,before:{text:e},after:{text:v.value}}]}))};v.addEventListener("blur",E,!1)}hnt.register("text-editor",{"(root)":{"(self)":{keydown:function(t,e){var{origin:r,deliverer:n}=e,i=n.selected;return!(1!==i.length||!i[0].hasTextProperty)&&(("Enter"==t.code||"NumpadEnter"==t.code)&&(cnt(i[0]),t.preventDefault(),!0))}}},"model-layer":{"(descendant)":{dblclick:function(t,e){cnt(e.origin)}}}});var unt,dnt,pnt,fnt=x7((function(t,e,r){if(t.hasSameParentForAllSelected&&!r){var n=[];e[0].parent.isGroup()?t.focused=e[0].parent:(e.forEach((t=>{t.path.forEach((e=>{n.push(t.transcoordS2T(e.x,e.y))}))})),t.focused=t.capturePath(n,e))}else t.focused=null}),300);hnt.register("move-handler",{"model-layer":{"(descendant)":{dragstart:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected,a=n.selected.filter((t=>!t.stuck));if(i.length!==a.length&&(i=n.selected=a),0!=i.length){var s=i[0].transcoordC2S(t.offsetX,t.offsetY);if(s=i[0].transcoordS2P(s.x,s.y),this.last_pos=s,this.direction=0,n.focused=i[0].parent,t.altKey){var o=[],l=new Map;n.selected=n.selected.filter((t=>!t.isRootModel())).map((t=>{let e=Oet(t,(t=>{const e=n.root.getNewRefid();return void 0!==t&&l.set(t,e),e}));return o.push({component:e,to_container:t.parent}),e})).map((t=>(t.replaceRefids(l),t))),o.forEach((({component:t,to_container:e})=>{e.addComponent(t)})),this.duplicates=n.selected.map((t=>({component:t})))}else this.changes=vet.before(i)}}},dragmove:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected;if(0!=i.length){var{x:a,y:s}=i[0].transcoordC2S(t.offsetX,t.offsetY),o=i[0].transcoordS2P(a,s);t.shiftKey?2==this.direction&&(this.direction=0):this.direction=2;var l=o.x-this.last_pos.x,h=o.y-this.last_pos.y;if(0==this.direction){if(l*l+h*h<25)return;Math.abs(l)>Math.abs(h)?this.direction=3:this.direction=4}3==this.direction?h=0:4==this.direction&&(l=0),i.forEach((t=>{t.move({x:l,y:h},1===i.length)})),this.last_pos=o,fnt(n,i)}}},dragend:function(t,e){var{origin:r,deliverer:n}=e;if(!r.stuck){var i=n.selected;if(0!=i.length){var a=i[0].parent,s=n.focused||e.deliverer;if(this.changes&&!s.isGroup())if(n.hasSameParentForAllSelected&&s&&s!==a){var o=this.changes.map((t=>{let{component:e,before:r}=t;return{component:e,to_container:s}}));n.app.commander.execute(new Cet({changes:o}))}else vet.after(this.changes,n.app.commander);else if(this.duplicates){this.duplicates=this.duplicates.map((t=>(t.to_container=s,t)));let t=new Cet({changes:this.duplicates});n.app.commander.execute(t)}i.forEach((t=>{t.parent&&t.parent.calculateBounds&&t.parent.calculateBounds()})),this.last_pos=null,this.changes=null,this.duplicates=null,fnt(n,i,!0)}}}}},"(root)":{"(self)":{keydown:function(t,e){var{origin:r,deliverer:n}=e,i={},a=t.shiftKey?r.rootModel.MPP:1;switch(t.which){case 37:i.x=-a,i.y=0;break;case 38:i.x=0,i.y=-a;break;case 39:i.x=a,i.y=0;break;case 40:i.x=0,i.y=a;break;default:return}var s=n.selected;vet.around(n.app.commander,(function(){s.forEach((t=>{!t.stuck&&t.move(i,!1)}))}))}}}});const gnt=A7((()=>{const{x:t,y:e}=pnt,r=dnt.deref();r&&(r.rootModel.move({x:t-unt.x,y:e-unt.y},!1),unt={x:t,y:e})}),60,{leading:!0,trailing:!0});hnt.register("shift-handler",{"model-layer":{"(all)":{dragstart:function(t,e){unt={x:t.offsetX,y:t.offsetY}},dragmove:function(t,e){dnt=new WeakRef(e.deliverer),pnt={x:t.offsetX,y:t.offsetY},gnt()}}}}),hnt.register("zoom-handler",{"model-layer":{"(all)":{wheel:function(t,e){if(0==t.deltaY&&0==t.deltaX)return;var r=e.deliverer,n=t.deltaY<0?1:-1;let i=r.get("scale")||{x:1,y:1},a=r.get("translate"),s=t.offsetX,o=t.offsetY,l=r.transcoordC2S(s,o),h=.1*n,c={x:i.x+h,y:i.y+h};if(n<0&&i.x<.2||n>0&&i.x>10)return;r.set("scale",c);let u=r.transcoordC2S(s,o);r.set("translate",{x:a.x+(u.x-l.x)*c.x,y:a.y+(u.y-l.y)*c.y})}},"(self)":{dblclick:function(t,e){const r=e.origin;r?.root.fit()}}}});var vnt={},mnt={};function ynt(t){const e={};for(const r in t)t.hasOwnProperty(r)&&void 0!==t[r]&&(e[r]=t[r]);return e}function bnt(t,e,r){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:r;throw new TypeError("Private element is not present on this object")}function wnt(t,e,r,n,i,a,s){try{var o=t[a](s),l=o.value}catch(t){return void r(t)}o.done?e(l):Promise.resolve(l).then(n,i)}function xnt(t){return function(){var e=this,r=arguments;return new Promise((function(n,i){var a=t.apply(e,r);function s(t){wnt(a,n,i,s,o,"next",t)}function o(t){wnt(a,n,i,s,o,"throw",t)}s(void 0)}))}}function Ant(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function _nt(t,e){return t.get(bnt(t,e))}function knt(t,e,r){Ant(t,e),e.set(t,r)}function Snt(t,e,r){return t.set(bnt(t,e),r),r}function Ent(t,e,r){return r(bnt(t,e))}function Mnt(t,e){Ant(t,e),e.add(t)}function Tnt(t,e,r){return(e=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,e||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:e+""}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Cnt(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Pnt(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Cnt(Object(r),!0).forEach((function(e){Tnt(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Cnt(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Int(t,e,r){e||(e=[]);var n=e.length++;return Object.defineProperty({},"_",{set:function(i){e[n]=i,t.apply(r,e)}})}hnt.register("paste-handler",{"(root)":{"(self)":{stylepastestart:function(t){const{deliverer:e}=t,r=e.app;var n=e.selected;if(n&&n[0]&&n!==e.rootModel){const t=n[0],{fillStyle:e,strokeStyle:i,alpha:a,lineWidth:s,lineDash:o,lineCap:l,lineJoin:h,fontColor:c,fontSize:u,fontFamily:d,bold:p,italic:f,textAlign:g,textBaseline:v,textOverflow:m,paddingTop:y,paddingBottom:b,paddingLeft:w,paddingRight:x}=t.state;vnt=h7({fillStyle:e,strokeStyle:i,alpha:a,lineWidth:s,lineDash:o,lineCap:l,lineJoin:h,fontColor:c,fontSize:u,fontFamily:d,bold:p,italic:f,textAlign:g,textBaseline:v,textOverflow:m,paddingTop:y,paddingBottom:b,paddingLeft:w,paddingRight:x}),r.mode=4}},stylepastestop:function(t){const{deliverer:e}=t,r=e.app;vnt={},4==r.mode&&(r.mode=1)},databindpastestart:function(t){const{deliverer:e}=t,r=e.app;var n=e.selected;if(n&&n[0]&&n!==e.rootModel){const t=n[0],{mappings:e}=t.state;mnt=h7({mappings:e}),r.mode=5}},databindpastestop:function(t){const{deliverer:e}=t,r=e.app;mnt={},5==r.mode&&(r.mode=1)},keydown:function(t,e){const{deliverer:r}=e;"Esc"!=t.code&&"Escape"!=t.code||(4==r.app.mode?r.trigger("stylepastestop"):5==r.app.mode&&r.trigger("databindpastestop"))}}},"model-layer":{"(all)":{click:function(t,e){const{deliverer:r}=e,n=r.app;if(4!=n.mode&&5!=n.mode)return;const i=e.origin;4==n.mode?i===r?r.root.trigger("stylepastestop"):i&&vet.around(n.commander,(()=>{const t=ynt({...i.model,...vnt});i?.set(t)})):i===r?r.root.trigger("databindpastestop"):i&&vet.around(n.commander,(()=>{const t=ynt({...i.model,...mnt});i?.set(t)}))}}}});class Rnt{constructor(t,e,r){Tnt(this,"_delta",{theta:0,tx:0,ty:0,sx:1,sy:1,fade:0}),Tnt(this,"_location",null);const{animations:n,...i}=r;this.overlay=t,this.target=e,this.decorator=i||{},this.animations=[],Array.isArray(n)?this.animations=n.map((t=>("theta"in t&&(t={...t,theta:t.theta*(Math.PI/180)}),L8(this,t)))):n&&("theta"in n&&(n={...n,theta:n.theta*(Math.PI/180)}),this.animations=[L8(this,n)])}delta(t,e){if(void 0===e)return t?this._delta[t]:this._delta;this._delta[t]=e;const{tx:r,ty:n,sx:i,sy:a,theta:s,fade:o}=this._delta;Object.assign(this.element.style,{opacity:1-o,transform:`rotate(${s}rad) translate(${r}px, ${n}px) scale(${i}, ${a}) perspective(1px)`})}get location(){if(this._location)return this._location;const{location:t,size:e}=this.decorator,{left:r,top:n,width:i,height:a}=this.target.bounds;let s;switch(t){case"top-left":s={x:r,y:n-e};break;case"top":s={x:r+(i-e)/2,y:n-e};break;case"top-right":s={x:r+i-e,y:n-e};break;case"bottom-left":s={x:r,y:n+a};break;case"bottom":s={x:r+(i-e)/2,y:n+a};break;case"bottom-right":s={x:r+i-e,y:n+a};break;case"left":s={x:r-e,y:n+(a-e)/2};break;case"right":s={x:r+i,y:n+(a-e)/2};break;default:s={x:r+i/2-e/2,y:n+a/2-e/2}}return this._location=this.target.transcoordS2T(s.x,s.y),this._location}get element(){if(!this._element){const{icon:t,size:e,color:r}=this.decorator,{x:n,y:i}=this.location,a=document.createElement("div");a.setAttribute("scene","animated-icon"),Object.assign(a.style,{position:"absolute",fontVariationSettings:"'FILL' 1",fontFamily:"Material Symbols Outlined",fontSize:e+"px",width:e+"px",height:e+"px",lineHeight:e+"px",padding:0,margin:0,color:r,textAlign:"center",verticalAlign:"middle",left:n+"px",top:i+"px",pointerEvents:"none"}),a.textContent=t,this._element=a}return this._element}touch(){}invalidate(){}start(){this.overlay.appendChild(this.element),this.animations.forEach((t=>t.start()))}stop(){this.overlay.removeChild(this.element),this.animations.forEach((t=>t.stop())),this._location=null}get root(){return this.target.root}get center(){const{size:t}=this.decorator,{x:e,y:r}=this.location;return{x:e+t/2,y:r+t/2}}transcoordS2T(t,e){const{tx:r,ty:n}=this._delta;return{x:t+r,y:e+n}}}class Ont{static getTargetId(t){if(!Ont._targetIdMap.has(t)){const e=`target-${Math.random().toString(36).substring(2,9)}`;Ont._targetIdMap.set(t,e)}return Ont._targetIdMap.get(t)}static getSvgContainer(t){if(!Ont._svgMap.has(t)){const e=document.createElementNS("http://www.w3.org/2000/svg","svg");e.setAttribute("class","border-highlighting-container"),e.setAttribute("pointer-events","none"),e.style.overflow="visible",e.style.position="absolute",e.style.top="0",e.style.left="0";const r=document.createElementNS("http://www.w3.org/2000/svg","defs");e.appendChild(r);const n=document.createElementNS("http://www.w3.org/2000/svg","g");n.setAttribute("class","border-highlighting-group"),e.appendChild(n),t.appendChild(e),Ont._svgMap.set(t,e)}return Ont._svgMap.get(t)}constructor(t,e,r){this.overlayRef=new WeakRef(t),this.target=e,this.decorator=r}get element(){const t=this.overlayRef.deref();if(!t)return null;const{distance:e=10,lineWidth:r=2,color:n="red",animation:i=!1,fillStyle:a}=this.decorator||{},{round:s=0,fillStyle:o}=this.target.state,l=this.target.path.map((t=>this.target.transcoordS2T(t.x,t.y))),h=this.createOffsetPath(l,e),c=this.pointsToPathData(h,s),u=Ont.getSvgContainer(t),d=Ont.getTargetId(this.target),p=u.querySelector(".border-highlighting-group"),f=p.querySelector(`[data-target-id="${d}"]`);f&&f.remove();const g=document.createElementNS("http://www.w3.org/2000/svg","path");g.setAttribute("d",c),g.setAttribute("fill","none"),g.setAttribute("stroke-width",r),g.setAttribute("stroke-linejoin","round"),g.setAttribute("pointer-events","none"),g.setAttribute("data-target-id",d);const v=a||o||"rgba(0, 0, 0, 0.5)",m=u.querySelector("defs"),y=this.createFilter(d,v);if(m.appendChild(y),g.setAttribute("filter",`url(#${d}-filter)`),i){const t=u.querySelector("defs"),e=this.createGradient(d,n);t.appendChild(e),g.setAttribute("stroke",`url(#${d})`)}else g.setAttribute("stroke",n);return p.appendChild(g),g}createOffsetPath(t,e){const r=[],n=t.length;for(let i=0;i<n;i++){const a=t[(i-1+n)%n],s=t[i],o=t[(i+1)%n],l=s.x-a.x,h=s.y-a.y,c=o.x-s.x,u=o.y-s.y,d=this.normalize({x:h,y:-l}),p=this.normalize({x:u,y:-c}),f=this.normalize({x:(d.x+p.x)/2,y:(d.y+p.y)/2}),g={x:s.x+f.x*e,y:s.y+f.y*e};r.push(g)}return r}normalize(t){const e=Math.sqrt(t.x*t.x+t.y*t.y);return{x:t.x/e,y:t.y/e}}pointsToPathData(t,e=0){if(t.length<2)return"";let r="";const n=t.length,i=(t,e,r)=>{const n=e.x-t.x,i=e.y-t.y,a=Math.sqrt(n*n+i*i);return{x:t.x+n/a*r,y:t.y+i/a*r}};for(let a=0;a<n;a++){const s=t[a],o=t[(a+1)%n],l=t[(a-1+n)%n],h=Math.sqrt((s.x-l.x)**2+(s.y-l.y)**2),c=Math.sqrt((s.x-o.x)**2+(s.y-o.y)**2),u=Math.min(e,h/2,c/2),d=i(s,l,u),p=i(s,o,u);r+=0===a?`M${d.x},${d.y}`:` L${d.x},${d.y}`,r+=` Q${s.x},${s.y} ${p.x},${p.y}`}return r+=" Z",r}createFilter(t,e){const r=document.createElementNS("http://www.w3.org/2000/svg","filter");r.setAttribute("id",`${t}-filter`);const n=document.createElementNS("http://www.w3.org/2000/svg","feFlood");n.setAttribute("flood-color",e),n.setAttribute("result","flood");const i=document.createElementNS("http://www.w3.org/2000/svg","feComposite");i.setAttribute("in","flood"),i.setAttribute("in2","SourceAlpha"),i.setAttribute("operator","in"),i.setAttribute("result","mask");const a=document.createElementNS("http://www.w3.org/2000/svg","feMerge"),s=document.createElementNS("http://www.w3.org/2000/svg","feMergeNode");s.setAttribute("in","mask");const o=document.createElementNS("http://www.w3.org/2000/svg","feMergeNode");return o.setAttribute("in","SourceGraphic"),a.appendChild(s),a.appendChild(o),r.appendChild(n),r.appendChild(i),r.appendChild(a),r}createGradient(t,e){const r=document.createElementNS("http://www.w3.org/2000/svg","linearGradient");r.setAttribute("id",t),r.setAttribute("x1","0%"),r.setAttribute("y1","0%"),r.setAttribute("x2","100%"),r.setAttribute("y2","0%");const n=this.alterColor(e,120),i=this.alterColor(e,240);return r.innerHTML=`\n <stop offset="0%" stop-color="${e}">\n <animate attributeName="stop-color" values="${e};${n};${i};${e}" dur="5s" repeatCount="indefinite" />\n </stop>\n <stop offset="100%" stop-color="${i}">\n <animate attributeName="stop-color" values="${i};${e};${n};${i}" dur="5s" repeatCount="indefinite" />\n </stop>\n `,r}alterColor(t,e){const r=this.convertToHex(t);let n=parseInt(r.substring(1,3),16),i=parseInt(r.substring(3,5),16),a=parseInt(r.substring(5,7),16);const s=this.rgbToHsl(n,i,a);s[0]=(s[0]+e/360)%1;const o=this.hslToRgb(s[0],s[1],s[2]);return`#${o[0].toString(16).padStart(2,"0")}${o[1].toString(16).padStart(2,"0")}${o[2].toString(16).padStart(2,"0")}`}rgbToHsl(t,e,r){t/=255,e/=255,r/=255;let n,i,a=Math.max(t,e,r),s=Math.min(t,e,r),o=(a+s)/2;if(a===s)n=i=0;else{let l=a-s;switch(i=o>.5?l/(2-a-s):l/(a+s),a){case t:n=(e-r)/l+(e<r?6:0);break;case e:n=(r-t)/l+2;break;case r:n=(t-e)/l+4}n/=6}return[n,i,o]}hslToRgb(t,e,r){let n,i,a;if(0===e)n=i=a=r;else{const s=(t,e,r)=>(r<0&&(r+=1),r>1&&(r-=1),r<1/6?t+6*(e-t)*r:r<.5?e:r<2/3?t+(e-t)*(2/3-r)*6:t);let o=r<.5?r*(1+e):r+e-r*e,l=2*r-o;n=s(l,o,t+1/3),i=s(l,o,t),a=s(l,o,t-1/3)}return[Math.round(255*n),Math.round(255*i),Math.round(255*a)]}convertToHex(t){if(/^#([0-9A-F]{6})$/i.test(t))return t;const e=document.createElement("div");e.style.color=t,document.body.appendChild(e);const r=window.getComputedStyle(e).color;document.body.removeChild(e);const n=r.match(/\d+/g);return!n||n.length<3?(console.warn(`Invalid color: ${t}. Defaulting to #FF0000.`),"#FF0000"):`#${n.slice(0,3).map((t=>parseInt(t,10).toString(16).padStart(2,"0"))).join("")}`}start(){const t=this.overlayRef.deref();if(!t)return;const e=Ont.getSvgContainer(t);t.contains(e)||t.appendChild(e);const r=this.element;if(r&&this.decorator.animation){const t=r.getAttribute("data-target-id");if(!t)return;const n=e.querySelector("defs");if(!n)return;const i=n.querySelector(`#${t}`);if(!i)return;requestAnimationFrame((()=>{i.querySelectorAll("animate").forEach((t=>{t.beginElement()}))}))}}stop(){if(!this.element)return;const t=this.overlayRef.deref();if(!t)return;const e=Ont._svgMap.get(t);if(!e)return;const r=e.querySelector(".border-highlighting-group");if(!r)return;const n=e.querySelector("defs");if(!n)return;const i=Ont.getTargetId(this.target),a=r.querySelector(`[data-target-id="${i}"]`);if(a){r.removeChild(a),a.remove();const t=n.querySelector(`#${i}`);t&&(n.removeChild(t),t.remove())}Ont._targetIdMap.delete(this.target),0===r.children.length&&(e.remove(),Ont._svgMap.delete(t))}}Tnt(Ont,"_svgMap",new WeakMap),Tnt(Ont,"_targetIdMap",new WeakMap);class Lnt{static getArrowId(t){if(!Lnt._arrowIdMap.has(t)){const e=`${Math.random().toString(36).substring(2,9)}`;Lnt._arrowIdMap.set(t,e)}return Lnt._arrowIdMap.get(t)}static getSvgContainer(t){if(!Lnt._svgMap.has(t)){const e=document.createElementNS("http://www.w3.org/2000/svg","svg");e.setAttribute("class","bouncing-arrow-container"),e.setAttribute("pointer-events","none"),e.style.overflow="visible",e.style.position="absolute",e.style.top="0",e.style.left="0";const r=document.createElementNS("http://www.w3.org/2000/svg","g");r.setAttribute("class","bouncing-arrow-group"),e.appendChild(r),t.appendChild(e),Lnt._svgMap.set(t,e)}return Lnt._svgMap.get(t)}constructor(t,e,r){this.overlayRef=new WeakRef(t),this.target=e,this.decorator=r}get element(){const t=this.overlayRef.deref();if(!t)return null;const e=Lnt.getSvgContainer(t).querySelector(".bouncing-arrow-group"),r=Lnt.getArrowId(this.target),n=e.querySelector(`[data-arrow-id="${r}"]`);n&&n.remove();let{left:i,top:a,width:s}=this.target.bounds,{x:o,y:l}=this.target.transcoordS2T(i+s/2,a);o=Math.max(o,20),l=Math.max(l,20);const{color:h="red",duration:c=5e3,repeat:u=!0}=this.decorator||{},d=document.createElementNS("http://www.w3.org/2000/svg","path");d.setAttribute("d",this.createArrowPath(o,l)),d.setAttribute("fill",h),d.setAttribute("data-arrow-id",r),d.appendChild(this.createBounceAnimation(r,c,u)),e.appendChild(d);const p=this.createArrowLabel(o,l,h,this.target.state.id,r);return p&&(p.appendChild(this.createBounceAnimation(r,c,u)),e.appendChild(p)),d}createArrowPath(t,e){return`\n M${t-10},${e-16} \n L${t+10},${e-16} \n L${t+10},${e-8} \n L${t+16},${e-8} \n L${t},${e} \n L${t-16},${e-8} \n L${t-10},${e-8} \n Z\n `}createBounceAnimation(t,e,r){const n=document.createElementNS("http://www.w3.org/2000/svg","animateTransform");n.setAttribute("id",t),n.setAttribute("attributeName","transform"),n.setAttribute("type","translate");const i=e||5e3;let a=["0,-10"],s=[0];for(let t=1;t<=20;t++){const e=t/20;let r=Math.pow(e,.5);if(r=Math.min(r,.99).toFixed(3),parseFloat(s[s.length-1])>=parseFloat(r)&&(r=(parseFloat(s[s.length-1])+.01).toFixed(3)),a.push("0,0"),a.push("0,-10"),r>=1){s.push(1),s.push((parseFloat(1)+.01).toFixed(3));break}s.push(r),s.push((parseFloat(r)+.01).toFixed(3))}return s[s.length-1]="1.000",n.setAttribute("values",a.join(";")),n.setAttribute("keyTimes",s.join(";")),n.setAttribute("dur",`${i}ms`),r?n.setAttribute("repeatCount","indefinite"):(n.setAttribute("repeatCount","1"),n.addEventListener("endEvent",(()=>this.stop()))),n}createArrowLabel(t,e,r,n,i){if(!n)return null;const a=document.createElementNS("http://www.w3.org/2000/svg","g");a.setAttribute("data-arrow-label",i);const s=document.createElementNS("http://www.w3.org/2000/svg","rect");s.setAttribute("x",t+20),s.setAttribute("y",e-20),s.setAttribute("width","40"),s.setAttribute("height","20"),s.setAttribute("rx","3"),s.setAttribute("fill",r);const o=document.createElementNS("http://www.w3.org/2000/svg","text");return o.setAttribute("x",t+40),o.setAttribute("y",e-6),o.setAttribute("fill","white"),o.setAttribute("font-size","12px"),o.setAttribute("text-anchor","middle"),o.textContent=n,a.appendChild(s),a.appendChild(o),a}start(){const t=this.overlayRef.deref();if(!t)return;const e=Lnt.getSvgContainer(t),r=this.element;if(!r)return;const n=r.querySelector("animateTransform");n&&n.beginElement();const i=e.querySelector(`[data-arrow-label="${Lnt.getArrowId(this.target)}"]`);if(i){const t=i.querySelector("animateTransform");t&&t.beginElement()}}stop(){const t=this.overlayRef.deref();if(!t)return;const e=Lnt._svgMap.get(t);if(!e)return;const r=e.querySelector(".bouncing-arrow-group");if(!r)return;const n=Lnt.getArrowId(this.target),i=r.querySelector(`[data-arrow-id="${n}"]`),a=r.querySelector(`[data-arrow-label="${n}"]`);i&&(r.removeChild(i),i.remove()),a&&(r.removeChild(a),a.remove()),0===r.children.length&&(e.remove(),Lnt._svgMap.delete(t))}}Tnt(Lnt,"_svgMap",new WeakMap),Tnt(Lnt,"_arrowIdMap",new WeakMap);class Dnt{icon(t,e){if(this.targets&&-1!==this.targets.lastIndexOf(t))return;const r=new Rnt(t.root.model_layer.overlay,t,e);this.targets=(this.targets||[]).concat(t),this.animators=(this.animators||[]).concat(r),r.start()}border(t,e){if(this.targets&&-1!==this.targets.lastIndexOf(t))return;const r=new Ont(t.root.model_layer.overlay,t,e);this.targets=(this.targets||[]).concat(t),this.animators=(this.animators||[]).concat(r),r.start()}bouncing(t,e){if(this.targets&&-1!==this.targets.lastIndexOf(t))return;const r=new Lnt(t.root.model_layer.overlay,t,e);this.targets=(this.targets||[]).concat(t),this.animators=(this.animators||[]).concat(r),r.start()}off(t){if(!this.targets)return;let e=this.targets.slice(),r=this.animators.slice(),n=this.targets.lastIndexOf(t);if(-1==n)return;e.splice(n,1);const i=r.splice(n,1);i[0]?.stop(),this.targets=e,this.animators=r}reset(t){this.animators?.forEach((t=>t.stop())),this.targets=[],this.animators=[]}}hnt.register("animator-handler",{"model-layer":{"(descendant)":{icon:function(t,e){const{origin:r}=e,n=r.root;let{animatorHandler:i}=n;i||(i=new Dnt,n.animatorHandler=i),i.icon(r,t)},border:function(t,e){const{origin:r}=e,n=r.root;let{animatorHandler:i}=n;i||(i=new Dnt,n.animatorHandler=i),i.border(r,t)},bouncing:function(t,e){const{origin:r}=e,n=r.root;let{animatorHandler:i}=n;i||(i=new Dnt,n.animatorHandler=i),i.bouncing(r,t)},animatoroff:function(t){const{origin:e}=t,r=e.root,{animatorHandler:n}=r;n?n.off(e):console.warn("animator-handler not found")},animatorreset:function(t){const{origin:e}=t,r=e.root,{animatorHandler:n}=r;n?.reset()}}}},(function(t){const{animatorHandler:e}=t;e?.reset(),delete t.animatorHandler}));var Fnt=[],Nnt=x7((function(){Fnt.forEach((t=>{t.resize()}))}),100);"undefined"!=typeof window&&window.addEventListener("resize",Nnt);class jnt extends Gtt{constructor(t,e){super(Object.assign({type:"root",scale:{x:1,y:1}},t||{}),e),this._maxRefid=e.isViewMode?1e6:0,t=t||{},this.fitMode=t.model&&t.model.fitMode,this._app=e,this.style=t.style,this.target_element=t.target_element,this.rebuildContentModel(this.model.model),Fnt.push(this)}dispose(){Rtt.hideAll(this),this._app&&this._app.dispose(),super.dispose(),this._disposeAllResources(),this.target_element=null,delete this._refresh_mapping_debouncer;var t=Fnt.indexOf(this);t>=0&&Fnt.splice(t,1),this.refidIndexMap.clear(),this._maxRefid=0}isRoot(){return!0}get app(){return this._app}get target_element(){return this._target_element}set target_element(t){this._ua_event_handler&&(this._ua_event_handler.dispose(),delete this._ua_event_handler),t&&(t.setAttribute("root-element",""),t.style.position="absolute",t.style.cursor="default",t.style.overflow="hidden",this._ua_event_handler=new nnt(this,t)),this.forEach((e=>e.target=t)),this._target_element=t}get unitScale(){switch(this.model_layer&&this.model_layer.get("unit")){case"mm":case"cm":case"in":return this.app.PPM/10;default:return 1}}addTemplate(t,e){var r=this.templateMap[t];r&&U7("Template replaced (duplicated)",t,e,r),this.templateMap[t]=e,delete this.templatePrefixes}removeTemplate(t,e){var r=this.templateMap[t];r!==e?H7("Removing template failed (different)",t,e,r):delete this.templateMap[t],delete this.templatePrefixes}findTemplateFor(t){this.templatePrefixes||(this.templatePrefixes=Object.keys(this.templateMap).sort().reverse());var e=this.templatePrefixes.find((e=>t.startsWith(e)));if(e)return this.templateMap[e]}addIndex(t,e){var r=this.indexMap[t]||[];this.indexMap[t]=[...r,e]}removeIndex(t,e){const r=this.indexMap[t]||[],n=r.indexOf(e);-1==n?H7("Removing index failed (not found)",t,e):(r.splice(n,1),0==r.length&&delete this.indexMap[t])}addRefidIndex(t,e){null==t&&(t=this.getNewRefid(),e.set("refid",t)),this._maxRefid=Math.max(t,this._maxRefid);var r=this.refidIndexMap.get(t);r&&U7("Refid Index replaced (has not to be)",t,e,r),this.refidIndexMap.set(t,e)}removeRefidIndex(t,e){if(null!=t){var r=this.refidIndexMap.get(t);r!==e?U7("Refid Removing index failed (has not to be)",t,e,r):this.refidIndexMap.delete(t)}}getNewRefid(){return this._maxRefid=(this._maxRefid||0)+1,this._maxRefid}async subscribe(t,e){this._app.isViewMode&&t&&this._app&&(e._subscription=await this._app.subscribe(t,e))}async unsubscribe(t,e){e._subscription&&(await e._subscription.unsubscribe(),delete e._subscription)}findById(t){return(this.indexMap[t.replace(/^#/,"")]||[])[0]}findAllById(t){return this.indexMap[t.replace(/^#/,"")]||[]}findByRefid(t){return this.refidIndexMap.get(t)}findOrCreate(t){var e=this.findAllById(t);if(!e&&this.app&&!this.app.isEditMode){let e=this.findTemplateFor(t);if(e){let r=Object.assign(h7(e.hierarchy),{id:t,templatePrefix:""});return component=Ret(r,this.app),this.model_layer.addComponent(component),[component]}}return e}resize(){this.components.forEach((t=>{t.resize&&t.resize()})),this.invalidate()}_disposeAllResources(){this.selected=[],this._focused=null,this._ready=!1,this.eventEngine&&(this.assist_handlers&&this.assist_handlers.forEach((t=>{this.eventEngine.remove(t)})),this.eventEngine.dispose(),delete this.eventEngine),(this.model.handlers||[]).map((t=>{hnt.getDisposer(t).call(null,this)})),this.assist_layers&&this.assist_layers.forEach((t=>{t.dispose(),this.removeComponent(t)})),delete this.assist_layers,this.model_layer&&this.model_layer.dispose(),this.model_layer&&this.removeComponent(this.model_layer),delete this.model_layer,this.indexMap={},this.refidIndexMap=new Map,this.templateMap={}}rebuildContentModel(t){this._disposeAllResources(),this.eventEngine=new Yrt(this),(t=t||{}).type="model-layer",this.model_layer=Ret(t,this.app),this.addComponent(this.model_layer),this.model_layer.target=this.target_element,this.assist_layers=(this.model.layers||[]).map((t=>{var e=Ret(t,this.app);return this.addComponent(e),e.target=this.target_element,e})),this.assist_handlers=(this.model.handlers||[]).map((t=>{var e={};return this.eventEngine.add(e,hnt.get(t)),e})),this._ready=!0,this.traverse((t=>t.ready()))}get root(){return this}get anchors(){}get isReady(){return this._ready}get rootModel(){return this.model_layer}get stuck(){return!0}get data(){return Object.values(this.indexMap).reduce(((t,[e])=>(t[e.model.id]=e.data,t)),{})}set data(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((r=>r.data=t[e]))}}get dataByRefid(){var t={};for(let[e,r]of this.refidIndexMap.entries())t[e]=r.data;return t}set dataByRefid(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.data=t[e])}}get values(){return Object.values(this.indexMap).reduce(((t,[e])=>(t[e.model.id]=e.value,t)),{})}set values(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((r=>r.value=t[e]))}}get valuesByRefid(){var t={};for(let[e,r]of this.refidIndexMap.entries())t[e]=r.value;return t}set valuesByRefid(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.value=t[e])}}get selected(){return(this._selected||[]).filter((t=>t.parent))}set selected(t){var e=this._selected;if(this._selected=t,!t||t.length<=1)this.hasSameParentForAllSelected=!0;else{let e=t[0].parent;this.hasSameParentForAllSelected=!t.find((t=>t.parent!=e))}this.trigger("selected",t,e)}get focused(){return this._focused}set focused(t){this._focused!==t&&(this._focused=t,this.invalidate())}get style(){return this._style}set style(t){this._style=t,this._compiled_style=t}get hasTextProperty(){return!1}render(){this.components.forEach((t=>t.draw()))}contains(t,e){return!0}capturePath(t,e){return this.model_layer.capturePath(t,e)}invalidate(){this.components.forEach((t=>t.invalidate()))}get eventMap(){return{"(root)":{"(descendant)":{added:this.onadded,removed:this.onremoved,change:this.onchanged}}}}refreshMappings(){if(!this._refresh_mapping_debouncer){if(this.disposed)return;this._refresh_mapping_debouncer=x7((function t(e){e.executeMappings(),e.components&&e.components.forEach((e=>t(e)))}),1e3)}this._refresh_mapping_debouncer(this.model_layer)}_addTraverse(t){t.components&&t.components.forEach((t=>this._addTraverse(t)));var{id:e,refid:r,tag:n,templatePrefix:i}=t.model;this.addRefidIndex(r,t),e&&this.addIndex(e,t),n&&this.subscribe(n,t),i&&this.addTemplate(i,t);var a=C7({},t.eventMap,t.model.eventMap);this.eventEngine.add(t,a)}_removeTraverse(t){t.components&&t.components.forEach((t=>this._removeTraverse(t)));var{id:e,refid:r,tag:n,templatePrefix:i}=t.model;this.removeRefidIndex(r,t),e&&this.removeIndex(e,t),n&&this.unsubscribe(n,t),i&&this.removeTemplate(i,t),this.eventEngine.remove(t)}onadded(t,e){this._addTraverse(e),this.refreshMappings(),this.invalidate()}onremoved(t,e){this._removeTraverse(e),this.invalidate()}onchanged(t,e,r){e.templatePrefix&&this.removeTemplate(e.templatePrefix,r.origin),t.templatePrefix&&this.addTemplate(t.templatePrefix,r.origin),e.id&&this.removeIndex(e.id,r.origin),t.id&&this.addIndex(t.id,r.origin),e.tag&&this.unsubscribe(e.tag,r.origin),t.tag&&this.subscribe(t.tag,r.origin),e.id==t.id&&e.class==t.class||this.refreshMappings()}}Object.assign(jnt.prototype,{fit:function(t){var{width:e,height:r,fitMode:n}=this.model_layer.model,i=this.target_element,a=this.model_layer;if(this.fitMode=t||this.fitMode||n||"ratio",e&&r&&i&&i.clientWidth&&i.clientHeight){switch(this.fitMode){case"center":!function(t,e,r){var n=t.unitScale,{width:i,height:a}=e.model;e.set("scale",{x:n,y:n}),e.set("translate",{x:Math.max((r.clientWidth-i*n)/2,0),y:Math.max((r.clientHeight-a*n)/2,0)})}(this,a,i);break;case"both":!function(t,e,r){var{width:n,height:i}=e.model,a=r.clientWidth,s=r.clientHeight;e.set("scale",{x:a/n,y:s/i}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"width":!function(t,e,r){var n=r.clientWidth/e.get("width");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"height":!function(t,e,r){var n=r.clientHeight/e.get("height");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"ratio":!function(t,e,r){var{width:n,height:i}=e.model,a=r.clientWidth,s=r.clientHeight,o=a/n,l=s/i,h=Math.min(o,l);e.set("scale",{x:h,y:h}),e.set("translate",{x:(a-n*h)/2,y:(s-i*h)/2})}(0,a,i);break;default:!function(t,e){var r=t.unitScale;e.set("scale",{x:r,y:r}),e.set("translate",{x:0,y:0})}(this,a)}this.resize()}}}),mtt.memoize(jnt.prototype,"unitScale",!1);var Bnt=13.3,znt=function(t){return void 0!==t&&(Bnt=t),Bnt};const Wnt="$base_url";const Unt=Math.PI/12;class Hnt{constructor(t,e){this._mode=t,this.screen=znt(),this._baseUrl="undefined"!=typeof window?window.location.origin:null,this._refProvider=e,this.isEditMode&&(this._rotateStep=Unt,this._rotateStepForced=!1)}dispose(){this._dataSubscriptionProvider&&this._dataSubscriptionProvider.dispose(),delete this._dataStorage}_calcScreen(){var t={width:screen.width,height:screen.height};this._PPI=function(t,e,r,n){t>0||(t=1),e>0||(e=1),n||(n="d");var i=("d"==n?Math.sqrt(t*t+e*e):"w"==n?t:e)/r;return i>0?Math.round(i):0}(t.width,t.height,this.screen),this._PPM=this._PPI/25.4}subscribe(t,e){return this._dataSubscriptionProvider?.subscribe(t,e)}get refProvider(){return this._refProvider}set dataSubscriptionProvider(t){this._dataSubscriptionProvider=t}get dataSubscriptionProvider(){return this._dataSubscriptionProvider}set commander(t){this._commander=t}get commander(){return this._commander}get screen(){return this._screen}set screen(t){this._screen=t,this._calcScreen()}get DPPX(){return e9}get PPI(){return this._PPI}get PPM(){return this._PPM}get mode(){return this._mode}set mode(t){var e=this._mode;e!==t&&(this._mode=t,this.trigger("mode",t,e))}get isViewMode(){return 0==this._mode}get isEditMode(){return 1==this._mode}get baseUrl(){return this._baseUrl}set baseUrl(t){t&&this._baseUrl!=t&&(this._baseUrl=t)}url(t){try{return(t.includes(Wnt)?new URL(t.replace(Wnt,this.baseUrl),this.baseUrl):new URL(t,location.origin)).href}catch(e){H7(e,t)}}get rotateStep(){return this._rotateStep}set rotateStep(t){this._rotateStep=Number(t)||Unt}get rotateStepForced(){return this._rotateStepForced}set rotateStepForced(t){this._rotateStepForced=!!t}get dataStorage(){return this._dataStorage}set dataStorage(t){this._dataStorage=t}}W7(Hnt.prototype,F7.withEvent);class Gnt{constructor(t,e){!(t=Number(t))||t<=0?(U7("TimeCapsule maxsize should be greater than 0.",t),this.maxsize=10):this.maxsize=t,this.reset(),e&&(this.snapshot(e),this.preserve())}preserve(){this.checkPoint=this.pos}hasUnpreservedChanges(){return this.checkPoint!=this.pos}dispose(){this.reset()}snapshot(t){if(this.q.splice(this.pos+1,this.q.length-(this.pos+1),t),this.q.length>this.maxsize){const t=this.q.splice(0,this.q.length-this.maxsize);this.checkPoint=Math.max(-1,this.checkPoint-t.length)}this.pos=this.q.length-1}forward(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.forwardable)return this.q[++this.pos];H7("Not forwardable.")}backward(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.backwardable)return this.q[--this.pos];H7("Not backwardable.")}get current(){if(-1!==this.pos)return this.q[this.pos];H7("Non state has been recorded.")}get length(){return this.q.length}get forwardable(){return this.pos<this.q.length-1}get backwardable(){return this.pos>0}get snapshot_taker(){return this._snapshot_taker}set snapshot_taker(t){this._snapshot_taker=t}reset(){this.q=[],this.pos=-1,this.checkPoint=-1}}var Ynt=x7((t=>{t.brake||t.take()}),1e3,{leading:!0,trailing:!1});function Vnt(t){!t.brake&&t.dirty&&Ynt(t)}class qnt{constructor(t,e){this.brake=!1,this.dirty=!1,this.state_holder=t,this.timecapsule=e,this.timecapsule.snapshot_taker=this}dispose(){delete this.state_holder,delete this.timecapsule}touch(){this.dirty=!0,Vnt(this)}take(t){(this.dirty||t)&&(this.timecapsule.snapshot(this.state_holder.state),this.dirty=!1)}get brake(){return this._brake}set brake(t){this._brake=!!t,Vnt(this)}}function Xnt(t,e){var r=e.model_layer.get("scale"),n=e.model_layer.get("translate");if(t){let i=JSON.parse(t);i.scale=r,i.translate=n,e.rebuildContentModel(i)}}class $nt{constructor(t){this.container=t,this.timecapsule=new Gnt(20);var e=this;this.snapshot_taker=new qnt({get state(){let t=e.container.model_layer.hierarchy;return JSON.stringify(t)}},this.timecapsule),this.snapshot_taker.take(!0),this.timecapsule.preserve()}dispose(){this.reset(),this.timecapsule&&this.timecapsule.dispose(),this.snapshot_taker&&this.snapshot_taker.dispose(),delete this.container,delete this.timecapsule,delete this.snapshot_taker}preserve(){this.timecapsule.preserve()}hasUnpreservedChanges(){return this.timecapsule.hasUnpreservedChanges()}execute(t,e){!1!==e&&t&&t.execute(),this.snapshot_taker.touch(),this.trigger("execute",t,!0,!1)}undo(){this.timecapsule.backwardable&&(Xnt(this.timecapsule.backward(),this.container),this.trigger("undo",this.undoable(),this.redoable()))}redo(){this.timecapsule.forwardable&&(Xnt(this.timecapsule.forward(),this.container),this.trigger("redo",this.undoable(),this.redoable()))}undoable(){return this.timecapsule.backwardable}redoable(){return this.timecapsule.forwardable}reset(){this.timecapsule&&this.timecapsule.reset(),this.trigger("command-reset")}}W7($nt.prototype,F7.withEvent);var Knt=0;const Qnt=new FinalizationRegistry((t=>{Knt--}));class Jnt{static get residents(){return Knt}static get residentsCount(){return Knt}constructor(t){this._container=t,this.app=t.app,this._commander=new $nt(this._container),this.app.commander=this._commander,Knt++,Qnt.register(this,Knt)}add(){return Det.apply(this._container,arguments)}duplicate(){return Fet.apply(this._container,arguments)}remove(){return Net.apply(this._container,arguments)}animate(){return D8.apply(this,arguments)}fullscreen(){return Wet.apply(this._container,arguments)}get target(){return this._container.target_element}set target(t){var e;if("string"==typeof t){if(!(e=document.getElementById(t)))throw`target element '${t}' is not exist`;if(e.firstChild)throw`target element '${t}' already has children`}else e=t;e&&e.style&&(e.style.cursor="default"),this._container.target_element=e,this._container.invalidate()}get scale(){return this.root.get("scale")}set scale(t){this.root.set("scale",t)}get translate(){return this.root.get("translate")}set translate(t){this.root.set("translate",t)}get unit(){return this.root.get("unit")||"px"}get PPM(){return this.app.PPM}get PPI(){return this.app.PPI}get DPPX(){return this.app.DPPX}static get DPPX(){return e9}get unitScale(){return this._container.unitScale}get screen(){return this.app.screen}set screen(t){this.app.screen=t,this._container.resize()}resize(){this._container.resize()}release(){this.dispose()}dispose(){this._commander&&this._commander.dispose(),this._container&&this._container.dispose()}get selected(){return this._container.selected.slice()}set selected(t){this._container.selected=t}select(t,...e){return this._container.selected=this.root?.findAll(t,...e),this.selected}get commander(){return this._commander}undo(){this.commander.undo()}undoable(){return this.commander.undoable()}redo(){this.commander.redo()}redoable(){return this.commander.redoable()}preserve(){this.commander.preserve()}hasUnpreservedChanges(){return this.commander.hasUnpreservedChanges()}cut(){return Get.apply(this._container,arguments)}copy(){return Het.apply(this._container,arguments)}paste(){return Yet.apply(this._container,arguments)}undoableChange(){return crt.apply(this._container,arguments)}change(){return hrt.apply(this.root,arguments)}get model(){return this.root.hierarchy}set model(t){this._container.rebuildContentModel(t)}get rootContainer(){return this._container}get root(){return this._container?.model_layer}findAll(){return this.root.findAll.apply(this.root,arguments)}findFirst(){return this.root.findFirst.apply(this.root,arguments)}findById(){return this._container.findById.apply(this._container,arguments)}findAllById(){return this._container.findAllById.apply(this._container,arguments)}serialize(){return this.root.trim(),this.root.serialize.apply(this.root,arguments)}align(){return _et.apply(this._container,arguments)}place(){return yrt.apply(this._container,arguments)}distribute(){return Met.apply(this._container,arguments)}move(){return Pet.apply(this._container,arguments)}zorder(){return Iet.apply(this._container,arguments)}symmetryX(){return ort.apply(this._container,arguments)}symmetryY(){return lrt.apply(this._container,arguments)}on(){return jet.apply(this._container,arguments)}once(){return Bet.apply(this._container,arguments)}off(){return this._container&&zet.apply(this._container,arguments)}centerTo(t,e){return this.root.centerTo(t,e)}get mode(){return this.app.mode}set mode(t){void 0!==t&&(this.app.mode=t)}toDataURL(){return rrt.apply(this._container,arguments)}group(){return nrt.apply(this._container,arguments)}ungroup(){return irt.apply(this._container,arguments)}fit(t){this._container.once("redraw",(()=>this._container.fit(t))),this._container.invalidate()}get fitMode(){return this._container.fitMode}get ids(){return urt.apply(this._container)}get data(){return this._container.data}set data(t){this._container.data=t}get dataByRefid(){return this._container.dataByRefid}set dataByRefid(t){this._container.dataByRefid=t}get values(){return this._container.values}set values(t){this._container.values=t}get valuesByRefid(){return this._container.valuesByRefid}set valuesByRefid(t){this._container.valuesByRefid=t}get baseUrl(){return this.app.baseUrl}set baseUrl(t){this.app.baseUrl=t}startAddMode(){return brt.apply(this._container,arguments)}startStylePasteMode(){return wrt.apply(this._container,arguments)}stopStylePasteMode(){return xrt.apply(this._container,arguments)}startDatabindPasteMode(){return Art.apply(this._container,arguments)}stopDatabindPasteMode(){return _rt.apply(this._container,arguments)}}const Znt=new class{load(t){}save(t,e){}clear(t){}};function tit({target:t,model:e,style:r,layers:n=[],handlers:i=[],mode:a=0,refProvider:s,dataSubscriptionProvider:o,dataStorage:l=Znt,baseUrl:h,fitMode:c}){var u=null;if("string"==typeof t){if(!(u=document.getElementById(t)))throw`target element '${t}' is not exist`;if(u.firstChild)throw`target element '${t}' is not empty`}else u=t;u&&u.style&&(u.style.position="absolute",u.style.cursor="default",u.style.overflow="hidden");var d=new Hnt(a,s);return d.baseUrl=h,d.dataSubscriptionProvider=o,d.dataStorage=l,new Jnt(new jnt({target_element:u,model:e,style:r,layers:n,handlers:i,fitMode:c},d))}
7
7
  /**
8
8
  * @license
9
9
  * Copyright 2019 Google LLC
10
10
  * SPDX-License-Identifier: BSD-3-Clause
11
- */
12
- var Dnt=globalThis,znt=Dnt.ShadowRoot&&(void 0===Dnt.ShadyCSS||Dnt.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,Nnt=Symbol(),Fnt=new WeakMap;class Bnt{constructor(t,e,r){if(this._$cssResult$=!0,r!==Nnt)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){var t=this.o,e=this.t;if(znt&&void 0===t){var r=void 0!==e&&1===e.length;r&&(t=Fnt.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),r&&Fnt.set(e,t))}return t}toString(){return this.cssText}}var Unt,Ynt,Hnt,Gnt,Wnt=znt?t=>t:t=>t instanceof CSSStyleSheet?(t=>{var e="";for(var r of t.cssRules)e+=r.cssText;return(t=>new Bnt("string"==typeof t?t:t+"",void 0,Nnt))(e)})(t):t,{is:$nt,defineProperty:qnt,getOwnPropertyDescriptor:Xnt,getOwnPropertyNames:Vnt,getOwnPropertySymbols:Knt,getPrototypeOf:Qnt}=Object,Jnt=globalThis,Znt=Jnt.trustedTypes,tit=Znt?Znt.emptyScript:"",eit=Jnt.reactiveElementPolyfillSupport,rit=(t,e)=>t,nit={toAttribute(t,e){switch(e){case Boolean:t=t?tit:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){var r=t;switch(e){case Boolean:r=null!==t;break;case Number:r=null===t?null:Number(t);break;case Object:case Array:try{r=JSON.parse(t)}catch(t){r=null}}return r}},iit=(t,e)=>!$nt(t,e),oit={attribute:!0,type:String,converter:nit,reflect:!1,hasChanged:iit};null!==(Unt=Symbol.metadata)&&void 0!==Unt||(Symbol.metadata=Symbol("metadata")),null!==(Ynt=Jnt.litPropertyMetadata)&&void 0!==Ynt||(Jnt.litPropertyMetadata=new WeakMap);class ait extends HTMLElement{static addInitializer(t){var e;this._$Ei(),(null!==(e=this.l)&&void 0!==e?e:this.l=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:oit;if(e.state&&(e.attribute=!1),this._$Ei(),this.elementProperties.set(t,e),!e.noAccessor){var r=Symbol(),n=this.getPropertyDescriptor(t,r,e);void 0!==n&&qnt(this.prototype,t,n)}}static getPropertyDescriptor(t,e,r){var n,{get:i,set:o}=null!==(n=Xnt(this.prototype,t))&&void 0!==n?n:{get(){return this[e]},set(t){this[e]=t}};return{get(){return null==i?void 0:i.call(this)},set(e){var n=null==i?void 0:i.call(this);o.call(this,e),this.requestUpdate(t,n,r)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){var e;return null!==(e=this.elementProperties.get(t))&&void 0!==e?e:oit}static _$Ei(){if(!this.hasOwnProperty(rit("elementProperties"))){var t=Qnt(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}}static finalize(){if(!this.hasOwnProperty(rit("finalized"))){if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(rit("properties"))){var t=this.properties,e=[...Vnt(t),...Knt(t)];for(var r of e)this.createProperty(r,t[r])}var n=this[Symbol.metadata];if(null!==n){var i=litPropertyMetadata.get(n);if(void 0!==i)for(var[o,a]of i)this.elementProperties.set(o,a)}for(var[s,c]of(this._$Eh=new Map,this.elementProperties)){var u=this._$Eu(s,c);void 0!==u&&this._$Eh.set(u,s)}this.elementStyles=this.finalizeStyles(this.styles)}}static finalizeStyles(t){var e=[];if(Array.isArray(t)){var r=new Set(t.flat(1/0).reverse());for(var n of r)e.unshift(Wnt(n))}else void 0!==t&&e.push(Wnt(t));return e}static _$Eu(t,e){var r=e.attribute;return!1===r?void 0:"string"==typeof r?r:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){var t;this._$ES=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$E_(),this.requestUpdate(),null===(t=this.constructor.l)||void 0===t||t.forEach((t=>t(this)))}addController(t){var e,r;(null!==(e=this._$EO)&&void 0!==e?e:this._$EO=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&(null===(r=t.hostConnected)||void 0===r||r.call(t))}removeController(t){var e;null===(e=this._$EO)||void 0===e||e.delete(t)}_$E_(){var t=new Map,e=this.constructor.elementProperties;for(var r of e.keys())this.hasOwnProperty(r)&&(t.set(r,this[r]),delete this[r]);t.size>0&&(this._$Ep=t)}createRenderRoot(){var t,e=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return((t,e)=>{if(znt)t.adoptedStyleSheets=e.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(var r of e){var n=document.createElement("style"),i=Dnt.litNonce;void 0!==i&&n.setAttribute("nonce",i),n.textContent=r.cssText,t.appendChild(n)}})(e,this.constructor.elementStyles),e}connectedCallback(){var t,e;null!==(t=this.renderRoot)&&void 0!==t||(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),null===(e=this._$EO)||void 0===e||e.forEach((t=>{var e;return null===(e=t.hostConnected)||void 0===e?void 0:e.call(t)}))}enableUpdating(t){}disconnectedCallback(){var t;null===(t=this._$EO)||void 0===t||t.forEach((t=>{var e;return null===(e=t.hostDisconnected)||void 0===e?void 0:e.call(t)}))}attributeChangedCallback(t,e,r){this._$AK(t,r)}_$EC(t,e){var r=this.constructor.elementProperties.get(t),n=this.constructor._$Eu(t,r);if(void 0!==n&&!0===r.reflect){var i,o=(void 0!==(null===(i=r.converter)||void 0===i?void 0:i.toAttribute)?r.converter:nit).toAttribute(e,r.type);this._$Em=t,null==o?this.removeAttribute(n):this.setAttribute(n,o),this._$Em=null}}_$AK(t,e){var r=this.constructor,n=r._$Eh.get(t);if(void 0!==n&&this._$Em!==n){var i,o=r.getPropertyOptions(n),a="function"==typeof o.converter?{fromAttribute:o.converter}:void 0!==(null===(i=o.converter)||void 0===i?void 0:i.fromAttribute)?o.converter:nit;this._$Em=n,this[n]=a.fromAttribute(e,o.type),this._$Em=null}}requestUpdate(t,e,r){if(void 0!==t){var n;if(null!=r||(r=this.constructor.getPropertyOptions(t)),!(null!==(n=r.hasChanged)&&void 0!==n?n:iit)(this[t],e))return;this.P(t,e,r)}!1===this.isUpdatePending&&(this._$ES=this._$ET())}P(t,e,r){var n;this._$AL.has(t)||this._$AL.set(t,e),!0===r.reflect&&this._$Em!==t&&(null!==(n=this._$Ej)&&void 0!==n?n:this._$Ej=new Set).add(t)}_$ET(){var t=this;return function(t){return function(){var e=this,r=arguments;return new Promise((function(n,i){var o=t.apply(e,r);function a(t){Lnt(o,n,i,a,s,"next",t)}function s(t){Lnt(o,n,i,a,s,"throw",t)}a(void 0)}))}}((function*(){t.isUpdatePending=!0;try{yield t._$ES}catch(e){Promise.reject(e)}var e=t.scheduleUpdate();return null!=e&&(yield e),!t.isUpdatePending}))()}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(this.isUpdatePending){if(!this.hasUpdated){var t;if(null!==(t=this.renderRoot)&&void 0!==t||(this.renderRoot=this.createRenderRoot()),this._$Ep){for(var[e,r]of this._$Ep)this[e]=r;this._$Ep=void 0}var n=this.constructor.elementProperties;if(n.size>0)for(var[i,o]of n)!0!==o.wrapped||this._$AL.has(i)||void 0===this[i]||this.P(i,this[i],o)}var a=!1,s=this._$AL;try{var c;(a=this.shouldUpdate(s))?(this.willUpdate(s),null!==(c=this._$EO)&&void 0!==c&&c.forEach((t=>{var e;return null===(e=t.hostUpdate)||void 0===e?void 0:e.call(t)})),this.update(s)):this._$EU()}catch(s){throw a=!1,this._$EU(),s}a&&this._$AE(s)}}willUpdate(t){}_$AE(t){var e;null!==(e=this._$EO)&&void 0!==e&&e.forEach((t=>{var e;return null===(e=t.hostUpdated)||void 0===e?void 0:e.call(t)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EU(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Ej&&(this._$Ej=this._$Ej.forEach((t=>this._$EC(t,this[t])))),this._$EU()}updated(t){}firstUpdated(t){}}ait.elementStyles=[],ait.shadowRootOptions={mode:"open"},ait[rit("elementProperties")]=new Map,ait[rit("finalized")]=new Map,null!=eit&&eit({ReactiveElement:ait}),(null!==(Hnt=Jnt.reactiveElementVersions)&&void 0!==Hnt?Hnt:Jnt.reactiveElementVersions=[]).push("2.0.4");
11
+ */var eit=globalThis,rit=eit.ShadowRoot&&(void 0===eit.ShadyCSS||eit.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,nit=Symbol(),iit=new WeakMap;class ait{constructor(t,e,r){if(this._$cssResult$=!0,r!==nit)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){var t=this.o,e=this.t;if(rit&&void 0===t){var r=void 0!==e&&1===e.length;r&&(t=iit.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),r&&iit.set(e,t))}return t}toString(){return this.cssText}}var sit,oit,lit,hit,cit=rit?t=>t:t=>t instanceof CSSStyleSheet?(t=>{var e="";for(var r of t.cssRules)e+=r.cssText;return(t=>new ait("string"==typeof t?t:t+"",void 0,nit))(e)})(t):t,{is:uit,defineProperty:dit,getOwnPropertyDescriptor:pit,getOwnPropertyNames:fit,getOwnPropertySymbols:git,getPrototypeOf:vit}=Object,mit=globalThis,yit=mit.trustedTypes,bit=yit?yit.emptyScript:"",wit=mit.reactiveElementPolyfillSupport,xit=(t,e)=>t,Ait={toAttribute(t,e){switch(e){case Boolean:t=t?bit:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){var r=t;switch(e){case Boolean:r=null!==t;break;case Number:r=null===t?null:Number(t);break;case Object:case Array:try{r=JSON.parse(t)}catch(t){r=null}}return r}},_it=(t,e)=>!uit(t,e),kit={attribute:!0,type:String,converter:Ait,reflect:!1,hasChanged:_it};null!==(sit=Symbol.metadata)&&void 0!==sit||(Symbol.metadata=Symbol("metadata")),null!==(oit=mit.litPropertyMetadata)&&void 0!==oit||(mit.litPropertyMetadata=new WeakMap);class Sit extends HTMLElement{static addInitializer(t){var e;this._$Ei(),(null!==(e=this.l)&&void 0!==e?e:this.l=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:kit;if(e.state&&(e.attribute=!1),this._$Ei(),this.elementProperties.set(t,e),!e.noAccessor){var r=Symbol(),n=this.getPropertyDescriptor(t,r,e);void 0!==n&&dit(this.prototype,t,n)}}static getPropertyDescriptor(t,e,r){var n,{get:i,set:a}=null!==(n=pit(this.prototype,t))&&void 0!==n?n:{get(){return this[e]},set(t){this[e]=t}};return{get(){return null==i?void 0:i.call(this)},set(e){var n=null==i?void 0:i.call(this);a.call(this,e),this.requestUpdate(t,n,r)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){var e;return null!==(e=this.elementProperties.get(t))&&void 0!==e?e:kit}static _$Ei(){if(!this.hasOwnProperty(xit("elementProperties"))){var t=vit(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}}static finalize(){if(!this.hasOwnProperty(xit("finalized"))){if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(xit("properties"))){var t=this.properties,e=[...fit(t),...git(t)];for(var r of e)this.createProperty(r,t[r])}var n=this[Symbol.metadata];if(null!==n){var i=litPropertyMetadata.get(n);if(void 0!==i)for(var[a,s]of i)this.elementProperties.set(a,s)}for(var[o,l]of(this._$Eh=new Map,this.elementProperties)){var h=this._$Eu(o,l);void 0!==h&&this._$Eh.set(h,o)}this.elementStyles=this.finalizeStyles(this.styles)}}static finalizeStyles(t){var e=[];if(Array.isArray(t)){var r=new Set(t.flat(1/0).reverse());for(var n of r)e.unshift(cit(n))}else void 0!==t&&e.push(cit(t));return e}static _$Eu(t,e){var r=e.attribute;return!1===r?void 0:"string"==typeof r?r:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){var t;this._$ES=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$E_(),this.requestUpdate(),null===(t=this.constructor.l)||void 0===t||t.forEach((t=>t(this)))}addController(t){var e,r;(null!==(e=this._$EO)&&void 0!==e?e:this._$EO=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&(null===(r=t.hostConnected)||void 0===r||r.call(t))}removeController(t){var e;null===(e=this._$EO)||void 0===e||e.delete(t)}_$E_(){var t=new Map,e=this.constructor.elementProperties;for(var r of e.keys())this.hasOwnProperty(r)&&(t.set(r,this[r]),delete this[r]);t.size>0&&(this._$Ep=t)}createRenderRoot(){var t,e=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return((t,e)=>{if(rit)t.adoptedStyleSheets=e.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(var r of e){var n=document.createElement("style"),i=eit.litNonce;void 0!==i&&n.setAttribute("nonce",i),n.textContent=r.cssText,t.appendChild(n)}})(e,this.constructor.elementStyles),e}connectedCallback(){var t,e;null!==(t=this.renderRoot)&&void 0!==t||(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),null===(e=this._$EO)||void 0===e||e.forEach((t=>{var e;return null===(e=t.hostConnected)||void 0===e?void 0:e.call(t)}))}enableUpdating(t){}disconnectedCallback(){var t;null===(t=this._$EO)||void 0===t||t.forEach((t=>{var e;return null===(e=t.hostDisconnected)||void 0===e?void 0:e.call(t)}))}attributeChangedCallback(t,e,r){this._$AK(t,r)}_$EC(t,e){var r=this.constructor.elementProperties.get(t),n=this.constructor._$Eu(t,r);if(void 0!==n&&!0===r.reflect){var i,a=(void 0!==(null===(i=r.converter)||void 0===i?void 0:i.toAttribute)?r.converter:Ait).toAttribute(e,r.type);this._$Em=t,null==a?this.removeAttribute(n):this.setAttribute(n,a),this._$Em=null}}_$AK(t,e){var r=this.constructor,n=r._$Eh.get(t);if(void 0!==n&&this._$Em!==n){var i,a=r.getPropertyOptions(n),s="function"==typeof a.converter?{fromAttribute:a.converter}:void 0!==(null===(i=a.converter)||void 0===i?void 0:i.fromAttribute)?a.converter:Ait;this._$Em=n,this[n]=s.fromAttribute(e,a.type),this._$Em=null}}requestUpdate(t,e,r){if(void 0!==t){var n;if(null!=r||(r=this.constructor.getPropertyOptions(t)),!(null!==(n=r.hasChanged)&&void 0!==n?n:_it)(this[t],e))return;this.P(t,e,r)}!1===this.isUpdatePending&&(this._$ES=this._$ET())}P(t,e,r){var n;this._$AL.has(t)||this._$AL.set(t,e),!0===r.reflect&&this._$Em!==t&&(null!==(n=this._$Ej)&&void 0!==n?n:this._$Ej=new Set).add(t)}_$ET(){var t=this;return xnt((function*(){t.isUpdatePending=!0;try{yield t._$ES}catch(e){Promise.reject(e)}var e=t.scheduleUpdate();return null!=e&&(yield e),!t.isUpdatePending}))()}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(this.isUpdatePending){if(!this.hasUpdated){var t;if(null!==(t=this.renderRoot)&&void 0!==t||(this.renderRoot=this.createRenderRoot()),this._$Ep){for(var[e,r]of this._$Ep)this[e]=r;this._$Ep=void 0}var n=this.constructor.elementProperties;if(n.size>0)for(var[i,a]of n)!0!==a.wrapped||this._$AL.has(i)||void 0===this[i]||this.P(i,this[i],a)}var s=!1,o=this._$AL;try{var l;(s=this.shouldUpdate(o))?(this.willUpdate(o),null!==(l=this._$EO)&&void 0!==l&&l.forEach((t=>{var e;return null===(e=t.hostUpdate)||void 0===e?void 0:e.call(t)})),this.update(o)):this._$EU()}catch(o){throw s=!1,this._$EU(),o}s&&this._$AE(o)}}willUpdate(t){}_$AE(t){var e;null!==(e=this._$EO)&&void 0!==e&&e.forEach((t=>{var e;return null===(e=t.hostUpdated)||void 0===e?void 0:e.call(t)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EU(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Ej&&(this._$Ej=this._$Ej.forEach((t=>this._$EC(t,this[t])))),this._$EU()}updated(t){}firstUpdated(t){}}Sit.elementStyles=[],Sit.shadowRootOptions={mode:"open"},Sit[xit("elementProperties")]=new Map,Sit[xit("finalized")]=new Map,null!=wit&&wit({ReactiveElement:Sit}),(null!==(lit=mit.reactiveElementVersions)&&void 0!==lit?lit:mit.reactiveElementVersions=[]).push("2.0.4");
13
12
  /**
14
13
  * @license
15
14
  * Copyright 2017 Google LLC
16
15
  * SPDX-License-Identifier: BSD-3-Clause
17
16
  */
18
- var sit=globalThis,cit=sit.trustedTypes,uit=cit?cit.createPolicy("lit-html",{createHTML:t=>t}):void 0,lit="$lit$",hit="lit$".concat(Math.random().toFixed(9).slice(2),"$"),fit="?"+hit,dit="<".concat(fit,">"),pit=document,git=()=>pit.createComment(""),vit=t=>null===t||"object"!=typeof t&&"function"!=typeof t,yit=Array.isArray,mit="[ \t\n\f\r]",bit=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,xit=/-->/g,wit=/>/g,Ait=RegExp(">|".concat(mit,"(?:([^\\s\"'>=/]+)(").concat(mit,"*=").concat(mit,"*(?:[^ \t\n\f\r\"'`<>=]|(\"|')|))|$)"),"g"),_it=/'/g,kit=/"/g,Eit=/^(?:script|style|textarea|title)$/i,Sit=(t=>function(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];return{_$litType$:t,strings:e,values:n}})(1),Mit=Symbol.for("lit-noChange"),Tit=Symbol.for("lit-nothing"),Pit=new WeakMap,Oit=pit.createTreeWalker(pit,129);function Iit(t,e){if(!yit(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==uit?uit.createHTML(e):e}var Cit=(t,e)=>{for(var r,n=t.length-1,i=[],o=2===e?"<svg>":3===e?"<math>":"",a=bit,s=0;s<n;s++){for(var c=t[s],u=void 0,l=void 0,h=-1,f=0;f<c.length&&(a.lastIndex=f,null!==(l=a.exec(c)));)f=a.lastIndex,a===bit?"!--"===l[1]?a=xit:void 0!==l[1]?a=wit:void 0!==l[2]?(Eit.test(l[2])&&(r=RegExp("</"+l[2],"g")),a=Ait):void 0!==l[3]&&(a=Ait):a===Ait?">"===l[0]?(a=null!=r?r:bit,h=-1):void 0===l[1]?h=-2:(h=a.lastIndex-l[2].length,u=l[1],a=void 0===l[3]?Ait:'"'===l[3]?kit:_it):a===kit||a===_it?a=Ait:a===xit||a===wit?a=bit:(a=Ait,r=void 0);var d=a===Ait&&t[s+1].startsWith("/>")?" ":"";o+=a===bit?c+dit:h>=0?(i.push(u),c.slice(0,h)+lit+c.slice(h)+hit+d):c+hit+(-2===h?s:d)}return[Iit(t,o+(t[n]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),i]};class Rit{constructor(t,e){var r,{strings:n,_$litType$:i}=t;this.parts=[];var o=0,a=0,s=n.length-1,c=this.parts,[u,l]=Cit(n,i);if(this.el=Rit.createElement(u,e),Oit.currentNode=this.el.content,2===i||3===i){var h=this.el.content.firstChild;h.replaceWith(...h.childNodes)}for(;null!==(r=Oit.nextNode())&&c.length<s;){if(1===r.nodeType){if(r.hasAttributes())for(var f of r.getAttributeNames())if(f.endsWith(lit)){var d=l[a++],p=r.getAttribute(f).split(hit),g=/([.?@])?(.*)/.exec(d);c.push({type:1,index:o,name:g[2],strings:p,ctor:"."===g[1]?Nit:"?"===g[1]?Fit:"@"===g[1]?Bit:zit}),r.removeAttribute(f)}else f.startsWith(hit)&&(c.push({type:6,index:o}),r.removeAttribute(f));if(Eit.test(r.tagName)){var v=r.textContent.split(hit),y=v.length-1;if(y>0){r.textContent=cit?cit.emptyScript:"";for(var m=0;m<y;m++)r.append(v[m],git()),Oit.nextNode(),c.push({type:2,index:++o});r.append(v[y],git())}}}else if(8===r.nodeType)if(r.data===fit)c.push({type:2,index:o});else for(var b=-1;-1!==(b=r.data.indexOf(hit,b+1));)c.push({type:7,index:o}),b+=hit.length-1;o++}}static createElement(t,e){var r=pit.createElement("template");return r.innerHTML=t,r}}function jit(t,e){var r,n,i,o,a,s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t,c=arguments.length>3?arguments[3]:void 0;if(e===Mit)return e;var u=void 0!==c?null===(r=s._$Co)||void 0===r?void 0:r[c]:s._$Cl,l=vit(e)?void 0:e._$litDirective$;return(null===(n=u)||void 0===n?void 0:n.constructor)!==l&&(null!==(i=u)&&void 0!==i&&null!==(o=i._$AO)&&void 0!==o&&o.call(i,!1),void 0===l?u=void 0:(u=new l(t))._$AT(t,s,c),void 0!==c?(null!==(a=s._$Co)&&void 0!==a?a:s._$Co=[])[c]=u:s._$Cl=u),void 0!==u&&(e=jit(t,u._$AS(t,e.values),u,c)),e}class Lit{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var e,{el:{content:r},parts:n}=this._$AD,i=(null!==(e=null==t?void 0:t.creationScope)&&void 0!==e?e:pit).importNode(r,!0);Oit.currentNode=i;for(var o=Oit.nextNode(),a=0,s=0,c=n[0];void 0!==c;){var u;if(a===c.index){var l=void 0;2===c.type?l=new Dit(o,o.nextSibling,this,t):1===c.type?l=new c.ctor(o,c.name,c.strings,this,t):6===c.type&&(l=new Uit(o,this,t)),this._$AV.push(l),c=n[++s]}a!==(null===(u=c)||void 0===u?void 0:u.index)&&(o=Oit.nextNode(),a++)}return Oit.currentNode=pit,i}p(t){var e=0;for(var r of this._$AV)void 0!==r&&(void 0!==r.strings?(r._$AI(t,r,e),e+=r.strings.length-2):r._$AI(t[e])),e++}}class Dit{get _$AU(){var t,e;return null!==(t=null===(e=this._$AM)||void 0===e?void 0:e._$AU)&&void 0!==t?t:this._$Cv}constructor(t,e,r,n){var i;this.type=2,this._$AH=Tit,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=r,this.options=n,this._$Cv=null===(i=null==n?void 0:n.isConnected)||void 0===i||i}get parentNode(){var t,e=this._$AA.parentNode,r=this._$AM;return void 0!==r&&11===(null===(t=e)||void 0===t?void 0:t.nodeType)&&(e=r.parentNode),e}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t){t=jit(this,t,arguments.length>1&&void 0!==arguments[1]?arguments[1]:this),vit(t)?t===Tit||null==t||""===t?(this._$AH!==Tit&&this._$AR(),this._$AH=Tit):t!==this._$AH&&t!==Mit&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):(t=>yit(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]))(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==Tit&&vit(this._$AH)?this._$AA.nextSibling.data=t:this.T(pit.createTextNode(t)),this._$AH=t}$(t){var e,{values:r,_$litType$:n}=t,i="number"==typeof n?this._$AC(t):(void 0===n.el&&(n.el=Rit.createElement(Iit(n.h,n.h[0]),this.options)),n);if((null===(e=this._$AH)||void 0===e?void 0:e._$AD)===i)this._$AH.p(r);else{var o=new Lit(i,this),a=o.u(this.options);o.p(r),this.T(a),this._$AH=o}}_$AC(t){var e=Pit.get(t.strings);return void 0===e&&Pit.set(t.strings,e=new Rit(t)),e}k(t){yit(this._$AH)||(this._$AH=[],this._$AR());var e,r=this._$AH,n=0;for(var i of t)n===r.length?r.push(e=new Dit(this.O(git()),this.O(git()),this,this.options)):e=r[n],e._$AI(i),n++;n<r.length&&(this._$AR(e&&e._$AB.nextSibling,n),r.length=n)}_$AR(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this._$AA.nextSibling,e=arguments.length>1?arguments[1]:void 0;for(null===(r=this._$AP)||void 0===r||r.call(this,!1,!0,e);t&&t!==this._$AB;){var r,n=t.nextSibling;t.remove(),t=n}}setConnected(t){var e;void 0===this._$AM&&(this._$Cv=t,null===(e=this._$AP)||void 0===e||e.call(this,t))}}class zit{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,r,n,i){this.type=1,this._$AH=Tit,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=i,r.length>2||""!==r[0]||""!==r[1]?(this._$AH=Array(r.length-1).fill(new String),this.strings=r):this._$AH=Tit}_$AI(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this,r=arguments.length>2?arguments[2]:void 0,n=arguments.length>3?arguments[3]:void 0,i=this.strings,o=!1;if(void 0===i)t=jit(this,t,e,0),(o=!vit(t)||t!==this._$AH&&t!==Mit)&&(this._$AH=t);else{var a,s,c=t;for(t=i[0],a=0;a<i.length-1;a++)(s=jit(this,c[r+a],e,a))===Mit&&(s=this._$AH[a]),o||(o=!vit(s)||s!==this._$AH[a]),s===Tit?t=Tit:t!==Tit&&(t+=(null!=s?s:"")+i[a+1]),this._$AH[a]=s}o&&!n&&this.j(t)}j(t){t===Tit?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class Nit extends zit{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===Tit?void 0:t}}class Fit extends zit{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==Tit)}}class Bit extends zit{constructor(t,e,r,n,i){super(t,e,r,n,i),this.type=5}_$AI(t){var e;if((t=null!==(e=jit(this,t,arguments.length>1&&void 0!==arguments[1]?arguments[1]:this,0))&&void 0!==e?e:Tit)!==Mit){var r=this._$AH,n=t===Tit&&r!==Tit||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,i=t!==Tit&&(r===Tit||n);n&&this.element.removeEventListener(this.name,this,r),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}}handleEvent(t){var e,r;"function"==typeof this._$AH?this._$AH.call(null!==(e=null===(r=this.options)||void 0===r?void 0:r.host)&&void 0!==e?e:this.element,t):this._$AH.handleEvent(t)}}class Uit{constructor(t,e,r){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=r}get _$AU(){return this._$AM._$AU}_$AI(t){jit(this,t)}}var Yit=sit.litHtmlPolyfillSupport;null!=Yit&&Yit(Rit,Dit),(null!==(Gnt=sit.litHtmlVersions)&&void 0!==Gnt?Gnt:sit.litHtmlVersions=[]).push("3.2.1");var Hit,Git,Wit=(t,e,r)=>{var n,i=null!==(n=null==r?void 0:r.renderBefore)&&void 0!==n?n:e,o=i._$litPart$;if(void 0===o){var a,s=null!==(a=null==r?void 0:r.renderBefore)&&void 0!==a?a:null;i._$litPart$=o=new Dit(e.insertBefore(git(),s),s,void 0,null!=r?r:{})}return o._$AI(t),o};
17
+ var Eit=globalThis,Mit=Eit.trustedTypes,Tit=Mit?Mit.createPolicy("lit-html",{createHTML:t=>t}):void 0,Cit="$lit$",Pit="lit$".concat(Math.random().toFixed(9).slice(2),"$"),Iit="?"+Pit,Rit="<".concat(Iit,">"),Oit=document,Lit=()=>Oit.createComment(""),Dit=t=>null===t||"object"!=typeof t&&"function"!=typeof t,Fit=Array.isArray,Nit="[ \t\n\f\r]",jit=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Bit=/-->/g,zit=/>/g,Wit=RegExp(">|".concat(Nit,"(?:([^\\s\"'>=/]+)(").concat(Nit,"*=").concat(Nit,"*(?:[^ \t\n\f\r\"'`<>=]|(\"|')|))|$)"),"g"),Uit=/'/g,Hit=/"/g,Git=/^(?:script|style|textarea|title)$/i,Yit=(t=>function(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];return{_$litType$:t,strings:e,values:n}})(1),Vit=Symbol.for("lit-noChange"),qit=Symbol.for("lit-nothing"),Xit=new WeakMap,$it=Oit.createTreeWalker(Oit,129);function Kit(t,e){if(!Fit(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==Tit?Tit.createHTML(e):e}var Qit=(t,e)=>{for(var r,n=t.length-1,i=[],a=2===e?"<svg>":3===e?"<math>":"",s=jit,o=0;o<n;o++){for(var l=t[o],h=void 0,c=void 0,u=-1,d=0;d<l.length&&(s.lastIndex=d,null!==(c=s.exec(l)));)d=s.lastIndex,s===jit?"!--"===c[1]?s=Bit:void 0!==c[1]?s=zit:void 0!==c[2]?(Git.test(c[2])&&(r=RegExp("</"+c[2],"g")),s=Wit):void 0!==c[3]&&(s=Wit):s===Wit?">"===c[0]?(s=null!=r?r:jit,u=-1):void 0===c[1]?u=-2:(u=s.lastIndex-c[2].length,h=c[1],s=void 0===c[3]?Wit:'"'===c[3]?Hit:Uit):s===Hit||s===Uit?s=Wit:s===Bit||s===zit?s=jit:(s=Wit,r=void 0);var p=s===Wit&&t[o+1].startsWith("/>")?" ":"";a+=s===jit?l+Rit:u>=0?(i.push(h),l.slice(0,u)+Cit+l.slice(u)+Pit+p):l+Pit+(-2===u?o:p)}return[Kit(t,a+(t[n]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),i]};class Jit{constructor(t,e){var r,{strings:n,_$litType$:i}=t;this.parts=[];var a=0,s=0,o=n.length-1,l=this.parts,[h,c]=Qit(n,i);if(this.el=Jit.createElement(h,e),$it.currentNode=this.el.content,2===i||3===i){var u=this.el.content.firstChild;u.replaceWith(...u.childNodes)}for(;null!==(r=$it.nextNode())&&l.length<o;){if(1===r.nodeType){if(r.hasAttributes())for(var d of r.getAttributeNames())if(d.endsWith(Cit)){var p=c[s++],f=r.getAttribute(d).split(Pit),g=/([.?@])?(.*)/.exec(p);l.push({type:1,index:a,name:g[2],strings:f,ctor:"."===g[1]?nat:"?"===g[1]?iat:"@"===g[1]?aat:rat}),r.removeAttribute(d)}else d.startsWith(Pit)&&(l.push({type:6,index:a}),r.removeAttribute(d));if(Git.test(r.tagName)){var v=r.textContent.split(Pit),m=v.length-1;if(m>0){r.textContent=Mit?Mit.emptyScript:"";for(var y=0;y<m;y++)r.append(v[y],Lit()),$it.nextNode(),l.push({type:2,index:++a});r.append(v[m],Lit())}}}else if(8===r.nodeType)if(r.data===Iit)l.push({type:2,index:a});else for(var b=-1;-1!==(b=r.data.indexOf(Pit,b+1));)l.push({type:7,index:a}),b+=Pit.length-1;a++}}static createElement(t,e){var r=Oit.createElement("template");return r.innerHTML=t,r}}function Zit(t,e){var r,n,i,a,s,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t,l=arguments.length>3?arguments[3]:void 0;if(e===Vit)return e;var h=void 0!==l?null===(r=o._$Co)||void 0===r?void 0:r[l]:o._$Cl,c=Dit(e)?void 0:e._$litDirective$;return(null===(n=h)||void 0===n?void 0:n.constructor)!==c&&(null!==(i=h)&&void 0!==i&&null!==(a=i._$AO)&&void 0!==a&&a.call(i,!1),void 0===c?h=void 0:(h=new c(t))._$AT(t,o,l),void 0!==l?(null!==(s=o._$Co)&&void 0!==s?s:o._$Co=[])[l]=h:o._$Cl=h),void 0!==h&&(e=Zit(t,h._$AS(t,e.values),h,l)),e}class tat{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var e,{el:{content:r},parts:n}=this._$AD,i=(null!==(e=null==t?void 0:t.creationScope)&&void 0!==e?e:Oit).importNode(r,!0);$it.currentNode=i;for(var a=$it.nextNode(),s=0,o=0,l=n[0];void 0!==l;){var h;if(s===l.index){var c=void 0;2===l.type?c=new eat(a,a.nextSibling,this,t):1===l.type?c=new l.ctor(a,l.name,l.strings,this,t):6===l.type&&(c=new sat(a,this,t)),this._$AV.push(c),l=n[++o]}s!==(null===(h=l)||void 0===h?void 0:h.index)&&(a=$it.nextNode(),s++)}return $it.currentNode=Oit,i}p(t){var e=0;for(var r of this._$AV)void 0!==r&&(void 0!==r.strings?(r._$AI(t,r,e),e+=r.strings.length-2):r._$AI(t[e])),e++}}class eat{get _$AU(){var t,e;return null!==(t=null===(e=this._$AM)||void 0===e?void 0:e._$AU)&&void 0!==t?t:this._$Cv}constructor(t,e,r,n){var i;this.type=2,this._$AH=qit,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=r,this.options=n,this._$Cv=null===(i=null==n?void 0:n.isConnected)||void 0===i||i}get parentNode(){var t,e=this._$AA.parentNode,r=this._$AM;return void 0!==r&&11===(null===(t=e)||void 0===t?void 0:t.nodeType)&&(e=r.parentNode),e}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t){t=Zit(this,t,arguments.length>1&&void 0!==arguments[1]?arguments[1]:this),Dit(t)?t===qit||null==t||""===t?(this._$AH!==qit&&this._$AR(),this._$AH=qit):t!==this._$AH&&t!==Vit&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):(t=>Fit(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]))(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==qit&&Dit(this._$AH)?this._$AA.nextSibling.data=t:this.T(Oit.createTextNode(t)),this._$AH=t}$(t){var e,{values:r,_$litType$:n}=t,i="number"==typeof n?this._$AC(t):(void 0===n.el&&(n.el=Jit.createElement(Kit(n.h,n.h[0]),this.options)),n);if((null===(e=this._$AH)||void 0===e?void 0:e._$AD)===i)this._$AH.p(r);else{var a=new tat(i,this),s=a.u(this.options);a.p(r),this.T(s),this._$AH=a}}_$AC(t){var e=Xit.get(t.strings);return void 0===e&&Xit.set(t.strings,e=new Jit(t)),e}k(t){Fit(this._$AH)||(this._$AH=[],this._$AR());var e,r=this._$AH,n=0;for(var i of t)n===r.length?r.push(e=new eat(this.O(Lit()),this.O(Lit()),this,this.options)):e=r[n],e._$AI(i),n++;n<r.length&&(this._$AR(e&&e._$AB.nextSibling,n),r.length=n)}_$AR(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this._$AA.nextSibling,e=arguments.length>1?arguments[1]:void 0;for(null===(r=this._$AP)||void 0===r||r.call(this,!1,!0,e);t&&t!==this._$AB;){var r,n=t.nextSibling;t.remove(),t=n}}setConnected(t){var e;void 0===this._$AM&&(this._$Cv=t,null===(e=this._$AP)||void 0===e||e.call(this,t))}}class rat{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,r,n,i){this.type=1,this._$AH=qit,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=i,r.length>2||""!==r[0]||""!==r[1]?(this._$AH=Array(r.length-1).fill(new String),this.strings=r):this._$AH=qit}_$AI(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this,r=arguments.length>2?arguments[2]:void 0,n=arguments.length>3?arguments[3]:void 0,i=this.strings,a=!1;if(void 0===i)t=Zit(this,t,e,0),(a=!Dit(t)||t!==this._$AH&&t!==Vit)&&(this._$AH=t);else{var s,o,l=t;for(t=i[0],s=0;s<i.length-1;s++)(o=Zit(this,l[r+s],e,s))===Vit&&(o=this._$AH[s]),a||(a=!Dit(o)||o!==this._$AH[s]),o===qit?t=qit:t!==qit&&(t+=(null!=o?o:"")+i[s+1]),this._$AH[s]=o}a&&!n&&this.j(t)}j(t){t===qit?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class nat extends rat{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===qit?void 0:t}}class iat extends rat{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==qit)}}class aat extends rat{constructor(t,e,r,n,i){super(t,e,r,n,i),this.type=5}_$AI(t){var e;if((t=null!==(e=Zit(this,t,arguments.length>1&&void 0!==arguments[1]?arguments[1]:this,0))&&void 0!==e?e:qit)!==Vit){var r=this._$AH,n=t===qit&&r!==qit||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,i=t!==qit&&(r===qit||n);n&&this.element.removeEventListener(this.name,this,r),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}}handleEvent(t){var e,r;"function"==typeof this._$AH?this._$AH.call(null!==(e=null===(r=this.options)||void 0===r?void 0:r.host)&&void 0!==e?e:this.element,t):this._$AH.handleEvent(t)}}class sat{constructor(t,e,r){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=r}get _$AU(){return this._$AM._$AU}_$AI(t){Zit(this,t)}}var oat=Eit.litHtmlPolyfillSupport;null!=oat&&oat(Jit,eat),(null!==(hit=Eit.litHtmlVersions)&&void 0!==hit?hit:Eit.litHtmlVersions=[]).push("3.2.1");var lat,hat,cat=(t,e,r)=>{var n,i=null!==(n=null==r?void 0:r.renderBefore)&&void 0!==n?n:e,a=i._$litPart$;if(void 0===a){var s,o=null!==(s=null==r?void 0:r.renderBefore)&&void 0!==s?s:null;i._$litPart$=a=new eat(e.insertBefore(Lit(),o),o,void 0,null!=r?r:{})}return a._$AI(t),a};
19
18
  /**
20
19
  * @license
21
20
  * Copyright 2017 Google LLC
22
21
  * SPDX-License-Identifier: BSD-3-Clause
23
22
  */
24
- class $it extends ait{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var t,e,r=super.createRenderRoot();return null!==(e=(t=this.renderOptions).renderBefore)&&void 0!==e||(t.renderBefore=r.firstChild),r}update(t){var e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=Wit(e,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!1)}render(){return Mit}}$it._$litElement$=!0,$it.finalized=!0,null===(Hit=globalThis.litElementHydrateSupport)||void 0===Hit||Hit.call(globalThis,{LitElement:$it});var qit=globalThis.litElementPolyfillSupport;null==qit||qit({LitElement:$it}),(null!==(Git=globalThis.litElementVersions)&&void 0!==Git?Git:globalThis.litElementVersions=[]).push("4.1.1");const Xit=["mousemove","mouseup","mousedown","mouseout","wheel","tap","click","touchstart","touchmove","touchend","mouseenter","mouseleave","dragstart","dragmove","dragend","dblclick"];var Vit=t=>class extends t{isHTMLElement(){return!0}isShadowable(){return!0}get element(){return this._element}set element(t){this._element=t}get tagName(){return this.get("type")}setElementProperties(t){throw new Error("Not Implemented Yet")}createElement(){this.element=document.createElement(this.tagName),this.element&&(this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),Xit.forEach((t=>{this.element.addEventListener(t,this.userInputEventHandler.bind(this))})),r9.forEach((t=>{this.element.addEventListener(t,this.userInputEventHandler.bind(this))})),this.oncreate_element&&this.oncreate_element(this.element))}userInputEventHandler(t){ent(this,t.type,t),t.stopPropagation()}reposition(){this.element&&V9(this)}disposeElement(){var t=this.element;t&&t.parentElement&&t.parentElement.removeChild(t),delete this.element}ready(){super.ready(),!this.element&&this.createElement(),this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),this.setElementProperties(this.element),this.reposition()}dispose(){this.disposeElement(this),super.dispose()}get hasTextProperty(){return!0}get textHidden(){return!0}get hidden(){return super.hidden}set hidden(t){super.hidden=t,this.element.style.display=t?"none":"block"}onchange(t,e){this.element&&this.setElementProperties(this.element),this.reposition()}isDescendible(t){return t.isHTMLElement()}};const Kit={x:1,y:1},Qit={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"},Jit={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"layout",label:"layout",name:"layoutOption"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"draggable",name:"draggable"},{type:"checkbox",label:"minimizable",name:"minimizable"},{type:"checkbox",label:"minimized",name:"minimized"}],help:"scene/component/container"};class Zit extends(Vit(Htt)){get tagName(){return"div"}get nature(){return Jit}setElementProperties(t){}get layout(){return Ett.get(this.get("layout"))||Stt}reposition(){if(this.element){var t=this,{id:e,class:r,scale:n=Kit}=t.state,{rotation:i=0,hidden:o}=t,{left:a,top:s,width:c,height:u}=t.bounds,l=c/2,h=u/2,f=t.element;f.hidden=o,e&&(f.id=e),r&&(f.className=r),Object.assign(f.style,Qit,{left:a+"px",top:s+"px",width:"0px",height:"0px",backgroundColor:"transparent"});var d=t.delta(),p=(n&&n.x||1)*d.sx,g=(n&&n.y||1)*d.sy,v=(i||0)+d.theta,y=d.tx||0,m=d.ty||0;f.style.transform=`translate(${y+l}px, ${m+h}px) rotate(${v}rad) translate(${-l}px, ${-h}px) scale(${p}, ${g}) perspective(1px)`}}set path(t){const{minimized:e}=this.state;var r=t[0],n=t[2];e?this.set({left:r.x,top:r.y,width:n.x-r.x}):this.set({left:r.x,top:r.y,width:n.x-r.x,height:n.y-r.y})}get path(){var{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return[{x:t,y:e},{x:t+r,y:e},{x:t+r,y:e+n},{x:t,y:e+n}]}get bounds(){const{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return{left:t,top:e,width:r,height:n}}set bounds(t){const{minimized:e}=this.state,{left:r=0,top:n=0,width:i=0,height:o=0}=t;e?this.set({left:r,top:n,width:i}):this.set({left:r,top:n,width:i,height:o})}onchange(t,e){super.onchange(t,e),("draggable"in t||"minimizable"in t||"closable"in t||"minimized"in t)&&this.onchangeButtons(),"minimized"in t&&this.onchangeMinimized()}createElement(){super.createElement(),this.onchangeButtons(),this.onchangeMinimized()}onchangeButtons(){const{draggable:t,minimizable:e,closable:r,minimized:n}=this.state;Wit(Sit`
23
+ class uat extends Sit{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var t,e,r=super.createRenderRoot();return null!==(e=(t=this.renderOptions).renderBefore)&&void 0!==e||(t.renderBefore=r.firstChild),r}update(t){var e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=cat(e,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!1)}render(){return Vit}}uat._$litElement$=!0,uat.finalized=!0,null===(lat=globalThis.litElementHydrateSupport)||void 0===lat||lat.call(globalThis,{LitElement:uat});var dat=globalThis.litElementPolyfillSupport;null==dat||dat({LitElement:uat}),(null!==(hat=globalThis.litElementVersions)&&void 0!==hat?hat:globalThis.litElementVersions=[]).push("4.1.1");const pat=["mousemove","mouseup","mousedown","mouseout","wheel","tap","click","touchstart","touchmove","touchend","mouseenter","mouseleave","dragstart","dragmove","dragend","dblclick"];var fat=t=>class extends t{isHTMLElement(){return!0}isShadowable(){return!0}get element(){return this._element}set element(t){this._element=t}get tagName(){return this.get("type")}setElementProperties(t){throw new Error("Not Implemented Yet")}createElement(){this.element=document.createElement(this.tagName),this.element&&(this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),pat.forEach((t=>{this.element.addEventListener(t,this.userInputEventHandler.bind(this))})),n9.forEach((t=>{this.element.addEventListener(t,this.userInputEventHandler.bind(this))})),this.oncreate_element&&this.oncreate_element(this.element))}userInputEventHandler(t){rnt(this,t.type,t),t.stopPropagation()}reposition(){this.element&&K9(this)}disposeElement(){var t=this.element;t&&t.parentElement&&t.parentElement.removeChild(t),delete this.element}ready(){super.ready(),!this.element&&this.createElement(),this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),this.setElementProperties(this.element),this.reposition()}dispose(){this.disposeElement(this),super.dispose()}get hasTextProperty(){return!0}get textHidden(){return!0}get hidden(){return super.hidden}set hidden(t){super.hidden=t,this.element.style.display=t?"none":"block"}onchange(t,e){this.element&&this.setElementProperties(this.element),this.reposition()}isDescendible(t){return t.isHTMLElement()}};const gat={x:1,y:1},vat={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"},mat={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"layout",label:"layout",name:"layoutOption"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"draggable",name:"draggable"},{type:"checkbox",label:"minimizable",name:"minimizable"},{type:"checkbox",label:"minimized",name:"minimized"}],help:"scene/component/container"};class yat extends(fat(Gtt)){get tagName(){return"div"}get nature(){return mat}setElementProperties(t){}get layout(){return Ett.get(this.get("layout"))||Mtt}reposition(){if(this.element){var t=this,{id:e,class:r,scale:n=gat}=t.state,{rotation:i=0,hidden:a}=t,{left:s,top:o,width:l,height:h}=t.bounds,c=l/2,u=h/2,d=t.element;d.hidden=a,e&&(d.id=e),r&&(d.className=r),Object.assign(d.style,vat,{left:s+"px",top:o+"px",width:"0px",height:"0px",backgroundColor:"transparent"});var p=t.delta(),f=(n&&n.x||1)*p.sx,g=(n&&n.y||1)*p.sy,v=(i||0)+p.theta,m=p.tx||0,y=p.ty||0;d.style.transform=`translate(${m+c}px, ${y+u}px) rotate(${v}rad) translate(${-c}px, ${-u}px) scale(${f}, ${g}) perspective(1px)`}}set path(t){const{minimized:e}=this.state;var r=t[0],n=t[2];e?this.set({left:r.x,top:r.y,width:n.x-r.x}):this.set({left:r.x,top:r.y,width:n.x-r.x,height:n.y-r.y})}get path(){var{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return[{x:t,y:e},{x:t+r,y:e},{x:t+r,y:e+n},{x:t,y:e+n}]}get bounds(){const{left:t=0,top:e=0,width:r=0,height:n=0}=this.state;return{left:t,top:e,width:r,height:n}}set bounds(t){const{minimized:e}=this.state,{left:r=0,top:n=0,width:i=0,height:a=0}=t;e?this.set({left:r,top:n,width:i}):this.set({left:r,top:n,width:i,height:a})}onchange(t,e){super.onchange(t,e),("draggable"in t||"minimizable"in t||"closable"in t||"minimized"in t)&&this.onchangeButtons(),"minimized"in t&&this.onchangeMinimized()}createElement(){super.createElement(),this.onchangeButtons(),this.onchangeMinimized()}onchangeButtons(){const{draggable:t,minimizable:e,closable:r,minimized:n}=this.state;cat(Yit`
25
24
  <style>
26
25
  .buttons {
27
26
  position: absolute;
@@ -36,10 +35,31 @@ class $it extends ait{constructor(){super(...arguments),this.renderOptions={host
36
35
  }
37
36
  </style>
38
37
  <div class="buttons">
39
- ${t?Sit`<button class="draggable" @mousedown=${this.startDragging.bind(this)}>&#x2630;</button>`:Tit}
40
- ${e?Sit`<button class="minimizable" @click=${this.toggleMinimizable.bind(this)}>
41
- ${n?Sit`&#x25A1;`:Sit`&#8211;`}
42
- </button>`:Tit}
43
- ${r?Sit`<button class="closable" @click=${this.closeContainer.bind(this)}>&#88;</button>`:Tit}
38
+ ${t?Yit`<button class="draggable" @mousedown=${this.startDragging.bind(this)}>&#x2630;</button>`:qit}
39
+ ${e?Yit`<button class="minimizable" @click=${this.toggleMinimizable.bind(this)}>
40
+ ${n?Yit`&#x25A1;`:Yit`&#8211;`}
41
+ </button>`:qit}
42
+ ${r?Yit`<button class="closable" @click=${this.closeContainer.bind(this)}>&#88;</button>`:qit}
44
43
  </div>
45
- `,this.element)}startDragging(t){t.preventDefault(),t.stopPropagation();let e=t.clientX,r=t.clientY;const{left:n,top:i}=this.bounds,o=this.rootModel.overlay.style.transform.match(/scale\(([^,]+),\s*([^)]+)\)/),a=o?parseFloat(o[1]):1,s=o?parseFloat(o[2]):a,c=t=>{t.preventDefault(),t.stopPropagation();const o=(t.clientX-e)/a,c=(t.clientY-r)/s;this.setState({left:n+o,top:i+c})},u=t=>{t.preventDefault(),t.stopPropagation(),this.element.removeEventListener("mousemove",c),this.element.removeEventListener("mouseup",u),document.removeEventListener("mousemove",c),document.removeEventListener("mouseup",u)};this.element.addEventListener("mousemove",c),this.element.addEventListener("mouseup",u),document.addEventListener("mousemove",c),document.addEventListener("mouseup",u)}toggleMinimizable(){const{minimized:t}=this.state;this.setState("minimized",!t)}onchangeMinimized(){const{minimized:t}=this.state;t?this.setState("height",20):this.setState("height",this.get("height"))}closeContainer(){this.setState("hidden",!0)}}vtt.register("container",Zit);const tot=Math.sqrt(3),eot=2;function rot(t,e,r,n,i){var o,a,s,c,u=5+i,l=r.x,h=r.y,f=n.x,d=n.y;if(Math.abs(l-f)>u&&Math.abs(h-d)>u){var p=(d-h)/(f-l),g=h-p*l;if(Math.abs(e-(p*t+g))>u)return!1}return l>f?(a=l,o=f):(a=f,o=l),h>d?(c=h,s=d):(c=d,s=h),!(a+5<t)&&(!(o-5>t)&&(!(c+5<e)&&!(s-5>e)))}function not(t,e,r,n=2){for(let i=0;i<r.length-1;i++)if(rot(t,e,r[i],r[i+1],n))return!0;return!1}function iot(t,e,r,n){if("arrow"!=t.slice(-5))return r;var i=Math.atan2(n.y-r.y,n.x-r.x),o=1.5*e;return{x:r.x+Math.cos(i)*o,y:r.y+Math.sin(i)*o}}function oot(t,e,r){var{lineWidth:n=eot,strokeStyle:i="#000000",lineCap:o=!1,alpha:a=1,begin:s="none",end:c="none",beginSize:u="size5",endSize:l="size5"}=r;if(("none"!=s||"none"!=c)&&(n=Number(n)||eot,t.lineCap=o,t.lineWidth=n,t.strokeStyle=i,t.fillStyle=i,t.globalAlpha*=a,"none"!=s&&aot(t,e[0],e[1],n,s,sot(u,n)),"none"!=c)){let r=e.length;aot(t,e[r-1],e[r-2],n,c,sot(l,n))}}function aot(t,e,r,n,i,o){var{x:a,y:s}=e,c=Math.atan2(r.y-s,r.x-a);switch(t.beginPath(),t.translate(a,s),t.rotate(c),i){case"oval":t.ellipse(0,0,o.X,o.Y,0,0,2*Math.PI),t.fill();break;case"diamond":t.moveTo(-o.X,0),t.lineTo(0,-o.Y),t.lineTo(o.X,0),t.lineTo(0,o.Y),t.fill();break;case"arrow":t.moveTo(0,0),t.lineTo(tot*o.X,-o.Y),t.lineTo(tot*o.X,o.Y),t.fill();break;case"sharp-arrow":t.moveTo(0,0),t.lineTo(tot*o.X,-o.Y),t.lineTo(-o.X/1.5+tot*o.X,0),t.lineTo(tot*o.X,o.Y),t.fill();break;case"open-arrow":t.moveTo(tot*o.X+n,-o.Y),t.lineTo(n,0),t.lineTo(tot*o.X+n,o.Y),t.stroke()}t.rotate(-c),t.translate(-a,-s),t.closePath()}function sot(t,e){let r={};switch(e*=1.2,t){case"size1":r.X=e,r.Y=e;break;case"size2":r.X=1.5*e,r.Y=e;break;case"size3":r.X=2*e,r.Y=e;break;case"size4":r.X=e,r.Y=1.5*e;break;case"size5":default:r.X=1.5*e,r.Y=1.5*e;break;case"size6":r.X=2*e,r.Y=1.5*e;break;case"size7":r.X=e,r.Y=2*e;break;case"size8":r.X=1.5*e,r.Y=2*e;break;case"size9":r.X=2*e,r.Y=2*e}return r}const cot="N",uot="S",lot="E",hot="W";class fot{constructor({component:t,anchor:e,position:r,self:n}){this.component=t,this._anchorName=e,this._position=r,this.self=n}get position(){const t=this.anchor;if(t){var{position:e}=t;const r=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(r.x,r.y)}return this._position}set position({x:t,y:e}){this._position={x:t,y:e}}get anchor(){return this.component?.findAnchor(this._anchorName)}get direction(){const t=this.component.bounds,e=this.anchor;if(!e)return lot;const r=e.position;return r.y<=t.top?cot:r.y>=t.top+t.height?uot:r.x<=t.left?hot:lot}get boundaryPosition(){const t=this.anchor;if(t){var{position:e}=t,r=0,n=0;switch(this.direction){case uot:n=20;break;case cot:n=-20;break;case hot:r=-20;break;default:r=20}e={x:e.x+r,y:e.y+n};const i=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(i.x,i.y)}}}class dot extends vtt{isLine(){return!0}replaceRefids(t){["from","to"].forEach((e=>{const r=this.get(e);if(r?.component){const n=t.get(r.component)||r.component;this.set(e,{...r,component:n})}}))}get fromEnd(){if(this.parent&&!this._fromEnd){const{component:t,anchor:e,position:r}=this.getState("from")||{};if(!t)return;const n=this.root?.findByRefid(t);if(!n)return;this._fromEnd=new fot({component:n,fromto:"from",anchor:e,position:r,self:this})}return this._fromEnd}get from(){return this.getState("from")}set from(t){delete this._fromEnd,this.set("from",t)}get toEnd(){if(this.parent&&!this._toEnd){const{component:t,anchor:e,position:r}=this.getState("to")||{};if(!t)return;const n=this.root?.findByRefid(t);if(!n)return;this._toEnd=new fot({component:n,fromto:"to",anchor:e,position:r,self:this})}return this._toEnd}get to(){return this.getState("to")}set to(t){delete this._toEnd,this.set("to",t)}move({x:t,y:e},r){r&&(this.from={position:this._fromEnd?.position||this.getState("from")?.position||{x:0,y:0}},this.to={position:this._toEnd?.position||this.getState("to")?.position||{x:0,y:0}}),super.move({x:t,y:e},r)}render(t){var{begin:e="none",end:r="none",lineWidth:n,round:i=0}=this.state,o=this.drawPath;oot(t,o,this.state),t.beginPath();var a=iot(e,n,o[0],o[1]),s=iot(r,n,o[o.length-1],o[o.length-2]);o=[a,...o.slice(1,-1),s];var c={x:a.x,y:a.y};t.moveTo(a.x,a.y);for(var u=1;u<o.length;u++){const e=c;c=o[u];const r=o[u+1];if(e.x===c.x&&e.y===c.y)continue;if(!r){t.lineTo(c.x,c.y);break}var l=0!==(d=Math.sqrt((e.x-c.x)*(e.x-c.x)+(e.y-c.y)*(e.y-c.y)))?Math.atan2(e.x-c.x,e.y-c.y):0,h=Math.sin(l)*Math.min(i,d/2)+c.x,f=Math.cos(l)*Math.min(i,d/2)+c.y;const n=i>0||0!==d?{x:h,y:f}:c;var d;l=0!==(d=Math.sqrt((r.x-c.x)*(r.x-c.x)+(r.y-c.y)*(r.y-c.y)))?Math.atan2(r.x-c.x,r.y-c.y):0,h=Math.sin(l)*Math.min(i,d/2)+c.x,f=Math.cos(l)*Math.min(i,d/2)+c.y;const a=i>0||0!==d?{x:h,y:f}:c;t.lineTo(n.x,n.y),i>0&&t.quadraticCurveTo(c.x,c.y,a.x,a.y)}this.drawStroke(t)}contains(t,e){var{lineWidth:r}=this.state;return not(t,e,this.drawPath,r)}get resizable(){return!1}get mutable(){return!0}get rotatable(){return!1}get path(){const{from:t,to:e}=this.state;var{x1:r,y1:n,x2:i,y2:o}=this.state;return[this.fromEnd?.position||t?.position||{x:r,y:n},this.toEnd?.position||e?.position||{x:i,y:o}]}set path(t){const[e,r]=t,{from:n,to:i}=this.state;delete this._fromEnd,delete this._toEnd,this.set({from:{...n,position:e},to:{...i,position:r}})}get textBounds(){var t,e,r=this.drawPath,n=0;for(let s=1;s<r.length;s++){var i=r[s-1],o=r[s],a=(i.x-o.x)*(i.x-o.x)+(i.y-o.y)*(i.y-o.y);a>n&&(n=Math.ceil(a),t=i,e=o)}var{paddingTop:s,paddingLeft:c,paddingRight:u,paddingBottom:l}=this.state;return l||=0,s||=0,c||=0,u||=0,{left:Math.min(t.x,e.x)+c,top:Math.min(t.y,e.y)+s,width:Math.max(Math.abs(t.x-e.x)-c-u,0),height:Math.max(Math.abs(t.y-e.y)-s-l,0)}}get decorators(){return["decotag"]}}dot.getTipNeckPos=iot,dot.containedInPath=not,dot.drawEndTips=oot,vtt.register("line",dot);const pot={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"};class got extends(Ktt(ytt)){is3dish(){return!0}render(t){var{cx:e,cy:r,rx:n,ry:i,startAngle:o,endAngle:a,anticlockwise:s}=this.state;t.beginPath(),t.ellipse(e,r,Math.abs(n),Math.abs(i),0,o||0,a||2*Math.PI,s)}get path(){var{cx:t,cy:e,rx:r,ry:n}=this.state;return[{x:t-r,y:e-n},{x:t+r,y:e-n},{x:t+r,y:e+n},{x:t-r,y:e+n}]}set path(t){var e=t[0],r=t[2];this.set({cx:e.x+(r.x-e.x)/2,cy:e.y+(r.y-e.y)/2,rx:(r.x-e.x)/2,ry:(r.y-e.y)/2})}contains(t,e){var{cx:r,cy:n,rx:i,ry:o}=this.state,a=(t-r)/(2*i-.5),s=(e-n)/(2*o-.5);return a*a+s*s<.25}outline(t){return function(t,e){var{cx:r,cy:n,rx:i,ry:o}=t.model,a=2*Math.PI*e,s=r+i*Math.cos(a),c=n+o*Math.sin(a);return t.transcoordS2T(s,c)}(this,t)}get anchors(){return function(t){var{left:e,top:r,width:n,height:i}=t.bounds,o=e+n/2,a=r+i/2;return[{name:"TOP",position:{x:o,y:r}},{name:"RIGHT",position:{x:e+n,y:a}},{name:"BOTTOM",position:{x:o,y:r+i}},{name:"LEFT",position:{x:e,y:a}}]}(this)}get nature(){return pot}}vtt.memoize(got.prototype,"path",!1),vtt.register("ellipse",got);var vot={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e+1,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e+1]=t}))},ondragend:function(t,e,r){}};const yot={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polygon"};class mot extends ytt{is3dish(){return!0}get mutable(){return!0}get pathExtendable(){return!0}get path(){return this.state.path}set path(t){this.set("path",t)}contains(t,e){var r=this.state.path,n=!1;return r.forEach(((i,o)=>{let a=(o+r.length+1)%r.length,s=i.x,c=i.y,u=r[a].x,l=r[a].y;c>e!=l>e&&t<(u-s)*(e-c)/(l-c)+s&&(n=!n)})),n}get controls(){var t=this.path;return t.map(((e,r)=>{let n=t[r+1>=t.length?0:r+1];return{x:(e.x+n.x)/2,y:(e.y+n.y)/2,handler:vot}}))}get nature(){return yot}}vtt.memoize(mot.prototype,"controls",!1),vtt.register("polygon",mot);var bot={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e]=t}))},ondragend:function(t,e,r){}};const xot={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polyline"};class wot extends dot{get pathExtendable(){return!0}get path(){const{from:t,to:e}=this.state,{path:r}=this.state;return[this.fromEnd?.position||t?.position||r[0],...r.slice(1,-1),this.toEnd?.position||e?.position||r[r.length-1]]}set path(t){const{from:e,to:r}=this.state;delete this._fromEnd,delete this._toEnd,this.set({from:{...e,position:t[0]},to:{...r,position:t[t.length-1]},path:t})}get controls(){var t=this.path,e=[];for(let r=0;r<t.length-1;r++){let n=t[r],i=t[r+1];0==r&&e.push({x:n.x,y:n.y,handler:bot}),e.push({x:(n.x+i.x)/2,y:(n.y+i.y)/2,handler:bot}),r==t.length-2&&e.push({x:i.x,y:i.y,handler:bot})}return e}get nature(){return xot}}vtt.register("polyline",wot);const Aot={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/ortholine"};class _ot extends dot{get pathExtendable(){return!1}get drawPath(){const t=this.path[0],e=this.path[1],{component:r,direction:n,boundaryPosition:i=t}=this.fromEnd||{},{component:o,direction:a,boundaryPosition:s=e}=this.toEnd||{};var c=[i,s],u=[];i&&u.push(i);var l=r?.bounds;if(l){var h=r.transcoordS2T(l.left,l.top);h=this.transcoordT2P(h.x,h.y),l={...l,left:h.x,top:h.y}}var f=l?{left:l.left-20,top:l.top-20,width:l.width+40,height:l.height+40}:{left:i.x,top:i.y,width:0,height:0};l=l||f;var d=o?.bounds;if(d){h=o.transcoordS2T(d.left,d.top);h=this.transcoordT2P(h.x,h.y),d={...d,left:h.x,top:h.y}}var p=d?{left:d.left-20,top:d.top-20,width:d.width+40,height:d.height+40}:{left:s.x,top:s.y,width:0,height:0};d=d||p;var g=[f,p];const v=f.left>p.left?p.left:f.left,y=f.top>p.top?p.top:f.top;var m,b,x,w,A,_,k,E,S,M,T={left:v,top:y,width:f.left+f.width>p.left+p.width?f.left+f.width-v:p.left+p.width-v,height:f.top+f.height>p.top+p.height?f.top+f.height-y:p.top+p.height-y},P=0,O=0;l.left+l.width<d.left?(w=0,A=1,S=n,M=a,m=(l.left+l.width+d.left)/2,P=d.left-m):d.left+d.width<l.left&&(w=1,A=0,S=a,M=n,m=(l.left+d.width+d.left)/2,P=l.left-m),l.top+l.height<d.top?(x=0,_=1,k=n,E=a,b=(l.top+l.height+d.top)/2,O=d.top-b):d.top+d.height<l.top&&(x=1,_=0,k=a,E=n,b=(l.top+d.height+d.top)/2,O=l.top-b);var I=[];if(m&&P>O){switch(M){case hot:switch(S){case lot:I.push({x:m,y:c[w].y}),I.push({x:m,y:c[A].y});break;case hot:var C=g[w].top+g[w].height/2>c[A].y?Math.min(g[w].top,c[A].y):Math.max(g[w].top+g[w].height,c[A].y);I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:c[A].y});break;case cot:case uot:C=S===uot?Math.max(c[w].y,c[A].y):Math.min(c[w].y,c[A].y);I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:c[A].y});break;default:return this.path}break;case lot:switch(S){case lot:var R=C=c[w].y<c[A].y?Math.min(g[A].top,c[w].y):Math.max(g[A].top+g[A].height,c[w].y);break;case hot:R=C=void 0!==b?b:c[w].y<c[A].y?T.top-.5*P:T.top+T.height+.5*P;break;case uot:R=C=void 0!==b?Math.max(b,c[w].y):T.top+T.height;break;case cot:R=C=b?Math.min(b,g[w].top):T.top;break;default:return this.path}I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:R}),I.push({x:c[A].x,y:R});break;case uot:switch(S){case lot:C=c[w].y,R=c[w].y>c[A].y?c[w].y:g[A].top+g[A].height;break;case hot:R=C=b?Math.max(b,g[A].top+g[A].height):T.top+T.height;break;case uot:R=C=T.top+T.height;break;case cot:C=b?Math.min(b,g[w].top):g[w].top,R=b?Math.max(b,g[A].top+g[A].height):g[A].top+g[A].height;break;default:return this.path}I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:R}),I.push({x:c[A].x,y:R});break;case cot:switch(S){case lot:C=c[w].y,R=c[w].y<c[A].y?c[w].y:g[A].top;break;case hot:R=C=b?Math.min(b,g[A].top):T.top;break;case uot:C=void 0!==b?Math.max(b,c[w].y):c[w].y,R=void 0!==b?Math.min(b,c[A].y):c[A].y;break;case cot:R=C=T.top;break;default:return this.path}I.push({x:c[w].x,y:C}),I.push({x:m,y:C}),I.push({x:m,y:R}),I.push({x:c[A].x,y:R});break;default:return this.path}u.push(...0===w?I:I.reverse())}else if(b){switch(E){case cot:switch(k){case uot:I.push({x:c[x].x,y:b}),I.push({x:c[_].x,y:b});break;case cot:var j=g[x].left+g[x].width/2>c[_].x?Math.min(g[x].left,c[_].x):Math.max(g[x].left+g[x].width,c[_].x);I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:c[_].x,y:b});break;case hot:j=Math.min(c[x].x,c[_].x);I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:c[_].x,y:b});break;case lot:j=Math.max(c[x].x,c[_].x);I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:c[_].x,y:b});break;default:return this.path}break;case uot:switch(k){case hot:var L=j=T.left;break;case lot:L=j=void 0!==m?Math.max(m,c[x].x):T.left+T.width;break;case cot:L=j=void 0!==m?m:c[x].x<c[_].x?T.left-.5*O:T.left+T.width+.5*O;break;case uot:j=c[x].x,L=c[x].x<c[_].x?Math.min(g[_].left,c[x].x):Math.max(g[_].left+g[_].width,c[x].x);break;default:return this.path}I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:L,y:b}),I.push({x:L,y:c[_].y});break;case lot:switch(k){case hot:j=void 0!==m?Math.min(m,c[x].x):c[x].x,L=void 0!==m?Math.max(m,c[_].x):c[_].x;break;case lot:L=j=T.left+T.width;break;case cot:L=j=void 0!==m?Math.max(m,c[_].x):T.left+T.width;break;case uot:j=c[x].x,L=Math.max(g[_].left+g[_].width,c[x].x);break;default:return this.path}I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:L,y:b}),I.push({x:L,y:c[_].y});break;case hot:switch(k){case hot:L=j=T.left;break;case lot:j=void 0!==m?Math.max(m,c[x].x):c[x].x,L=void 0!==m?Math.min(m,c[_].x):c[_].x;break;case cot:L=j=T.left;break;case uot:j=c[x].x<c[_].x?Math.min(g[_].left,c[x].x):c[x].x,L=Math.min(j,c[_].x);break;default:return this.path}I.push({x:j,y:c[x].y}),I.push({x:j,y:b}),I.push({x:L,y:b}),I.push({x:L,y:c[_].y});break;default:return this.path}u.push(...0===x?I:I.reverse())}else switch(n){case cot:switch(a){case cot:var D=T.top;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case uot:var z=T.left+T.width;u.push({x:z,y:c[0].y}),u.push({x:z,y:T.top+T.height}),u.push({x:c[1].x,y:T.top+T.height});break;case lot:z=c[1].y<c[0].y&&c[1].x<c[0].x?c[0].x:T.left+T.width;u.push({x:z,y:c[0].y}),u.push({x:z,y:c[1].y});break;case hot:z=T.left;u.push({x:z,y:c[0].y}),u.push({x:z,y:c[1].y});break;default:return this.path}break;case uot:switch(a){case cot:z=T.left+T.width;u.push({x:z,y:c[0].y}),u.push({x:z,y:T.top}),u.push({x:c[1].x,y:T.top});break;case uot:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case lot:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case hot:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;default:return this.path}break;case hot:switch(a){case cot:z=c[0].x>c[1].x&&c[0].y<c[1].y?c[1].x:T.left,D=c[0].x>c[1].x&&c[0].y<c[1].y?c[1].y:Math.min(T.top,c[0].y);u.push({x:z,y:c[0].y}),u.push({x:z,y:D}),u.push({x:c[1].x,y:D});break;case uot:z=T.left,D=Math.max(T.top+T.height,c[0].y);u.push({x:z,y:c[0].y}),u.push({x:z,y:D}),u.push({x:c[1].x,y:D});break;case lot:z=T.left+T.width;u.push({x:c[0].x,y:T.top}),u.push({x:z,y:T.top}),u.push({x:z,y:c[1].y});break;case hot:z=T.left;u.push({x:z,y:c[0].y}),u.push({x:z,y:c[1].y});break;default:return this.path}break;case lot:switch(a){case cot:D=c[0].y<c[1].y&&c[0].x<c[1].x?c[0].y:T.top;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case uot:D=c[0].y>c[1].y&&c[0].x<c[1].x?c[0].y:T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case lot:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;case hot:D=T.top+T.height;u.push({x:c[0].x,y:D}),u.push({x:c[1].x,y:D});break;default:return this.path}break;default:return this.path}return s&&u.push(s),[t,...u,e].filter(((t,e,r)=>{if(0===e)return!0;const n=r[e-1];return t.x!==n.x||t.y!==n.y})).filter(((t,e,r)=>{if(0===e||e>=r.length-1)return!0;const n=r[e-1],i=r[e+1];return!(t.x===n.x&&t.x===i.x||t.y===n.y&&t.y===i.y)}))}get nature(){return Aot}}vtt.register("ortholine",_ot);const kot={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"image-src",name:"src",property:{displayField:"id",displayFullUrl:!0,baseUrlAlias:"$base_url",defaultStorage:"scene-image",storageFilters:{type:Array,value:[{name:"category",value:"image"}]},useUpload:!0}},{type:"select",label:"cross-origin",name:"crossOrigin",property:{options:["","anonymous","use-credentials"]}}],"value-property":"src",help:"scene/component/image-view"};class Eot extends(btt(ytt)){static get noimage(){return Eot.NOIMAGE||(Eot.NOIMAGE=new Image,Eot.NOIMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABIBAMAAAD7Se1QAAAAIVBMVEUAAABHcEwBAQEREREBAQEEBAQGBgYLCwsDAwMDAwMICAi6HF9tAAAAC3RSTlNNAEAERiMYCS41Eac10lYAAAEgSURBVHhe7dY9asQwEAXgh7DNertNiJy48pIitY3SB7bYdk0ukL1BDDmA9gZecoH4pmFQ3MQayUMguPBrNPD4wD9TCMvJmt3M/AtYwXOlXiWgqADVCUBD46MAnGhMBaCiUQmAm8VA/Eh/eWl9Fn5WcxD+OLuRrUYJDKLluwH2InACUgkoACSdADxQc50Bytadb9RkM0CT13TcvlCT1HFg8UTHvasuUVACCa3El6u2UdD8LFTlKhUFFgA+d3dj10aABkUN72N3jAADCrJq7PIIsPidcxBoTHIIAjMFmyCwmGYIAA1P9gFgfCANAOsDSccCDW+uLDB+kLGg94OkZoAGkwsDDAe2DOg5oPxAg03rBR88OHpBz4N8UVeHFSwma74BTW6Ge4rIRa4AAAAASUVORK5CYII="),Eot.NOIMAGE}dispose(){super.dispose(),this._offcanvas=null,this._image=null}render(t){var{left:e,top:r,width:n,height:i,isGray:o=!1,alpha:a=1,src:s}=this.state;if(this.prepareIf(!this._image&&s),t.beginPath(),t.globalAlpha*=a,this._image&&this._image.complete)if(o&&this._offcanvas)t.drawImage(this._offcanvas,e,r,n,i);else try{t.drawImage(this._image,e,r,n,i)}catch(o){t.drawImage(Eot.noimage,e,r,n,i)}else!this.app.isViewMode&&t.drawImage(Eot.noimage,e,r,n,i)}get nature(){return kot}get hasTextProperty(){return!1}ready(){super.ready(),this.prepareIf(!this._image&&this.state.src)}prepare(t,e){var{src:r,crossOrigin:n}=this.state;if(r){this._image=new Image;try{n&&(this._image.crossOrigin=n),this._image.src=this.app.url(r)||""}catch(t){return void e(t)}this._image.onload=()=>{if(this.get("isGray")){let t=this._image.width,e=this._image.height;this._offcanvas=vtt.createCanvas(t,e);let r=this._offcanvas.getContext("2d");r.drawImage(this._image,0,0);let n=function(t,e,r){try{var n=t.getImageData(0,0,e,r)}catch(t){return U7("Get Image Data Error: "+t.message),null}var i=n.data;for(let t=0;t<e*r*4;t+=4){let e=i[t],r=i[t+1],o=i[t+2],a=parseInt((e+r+o)/3);n.data[t]=a,n.data[t+1]=a,n.data[t+2]=a}return n}(r,t,e);r.putImageData(n,0,0)}t(this)},this._image.onerror=t=>{this._image&&!this._image.currentSrc&&(this._image=null),e(t)}}else t(this)}get src(){return this.get("src")}set src(t){this.set("src",t)}onchange(t,e){(t.hasOwnProperty("src")||t.hasOwnProperty("isGray"))&&(this._offcanvas=null,this._image=null,this.prepareIf(t.src))}ondropfile(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void(this.src=e[r])}}vtt.register("image-view",Eot);class Sot extends(Vit(btt(vtt))){is3dish(){return!0}}var Mot={},Tot={},Pot={};Object.defineProperty(Pot,"__esModule",{value:!0});var Oot=function(){function t(){}return t.bitsToNum=function(t){return t.reduce((function(t,e){return 2*t+e}),0)},t.byteToBitArr=function(t){for(var e=[],r=7;r>=0;r--)e.push(!!(t&1<<r));return e},t.lzwDecode=function(t,e){for(var r,n,i=0,o=function(t){for(var r=0,n=0;n<t;n++)e.charCodeAt(i>>3)&1<<(7&i)&&(r|=1<<n),i++;return r},a=[],s=1<<t,c=s+1,u=t+1,l=[],h=function(){l=[],u=t+1;for(var e=0;e<s;e++)l[e]=[e];l[s]=[],l[c]=null};;)if(n=r,(r=o(u))!==s){if(r===c)break;if(r<l.length)n!==s&&l.push(l[n].concat(l[r][0]));else{if(r!==l.length)throw new Error("Invalid LZW code.");l.push(l[n].concat(l[n][0]))}a.push.apply(a,l[r]),l.length===1<<u&&u<12&&u++}else h();return a},t}();Pot.SuperGifUtils=Oot,Object.defineProperty(Tot,"__esModule",{value:!0});var Iot=Pot,Cot=function(){function t(t,e){this.stream=t,this.handler=e}return t.prototype.parseCT=function(t){for(var e=[],r=0;r<t;r++)e.push(this.stream.readBytes(3));return e},t.prototype.readSubBlocks=function(){var t,e;e="";do{t=this.stream.readByte(),e+=this.stream.read(t)}while(0!==t);return e},t.prototype.parseHeader=function(){var t={};if(t.sig=this.stream.read(3),t.ver=this.stream.read(3),"GIF"!==t.sig)throw new Error("Not a GIF file.");t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=Iot.SuperGifUtils.byteToBitArr(this.stream.readByte());t.gctFlag=e.shift(),t.colorRes=Iot.SuperGifUtils.bitsToNum(e.splice(0,3)),t.sorted=e.shift(),t.gctSize=Iot.SuperGifUtils.bitsToNum(e.splice(0,3)),t.bgColor=this.stream.readByte(),t.pixelAspectRatio=this.stream.readByte(),t.gctFlag&&(t.gct=this.parseCT(1<<t.gctSize+1)),this.handler.hdr&&this.handler.hdr(t)},t.prototype.parseExt=function(t){var e=this;switch(t.label=this.stream.readByte(),t.label){case 249:t.extType="gce",function(t){e.stream.readByte();var r=Iot.SuperGifUtils.byteToBitArr(e.stream.readByte());t.reserved=r.splice(0,3),t.disposalMethod=Iot.SuperGifUtils.bitsToNum(r.splice(0,3)),t.userInput=r.shift(),t.transparencyGiven=r.shift(),t.delayTime=e.stream.readUnsigned(),t.transparencyIndex=e.stream.readByte(),t.terminator=e.stream.readByte(),e.handler.gce&&e.handler.gce(t)}(t);break;case 254:t.extType="com",function(t){t.comment=e.readSubBlocks(),e.handler.com&&e.handler.com(t)}(t);break;case 1:t.extType="pte",function(t){e.stream.readByte(),t.ptHeader=e.stream.readBytes(12),t.ptData=e.readSubBlocks(),e.handler.pte&&e.handler.pte(t)}(t);break;case 255:t.extType="app",function(t){e.stream.readByte(),t.identifier=e.stream.read(8),t.authCode=e.stream.read(3),"NETSCAPE"===t.identifier?function(t){e.stream.readByte(),t.unknown=e.stream.readByte(),t.iterations=e.stream.readUnsigned(),t.terminator=e.stream.readByte(),e.handler.app&&e.handler.app.NETSCAPE&&e.handler.app.NETSCAPE(t)}(t):function(t){t.appData=e.readSubBlocks(),e.handler.app&&e.handler.app[t.identifier]&&e.handler.app[t.identifier](t)}(t)}(t);break;default:t.extType="unknown",function(t){t.data=e.readSubBlocks(),e.handler.unknown&&e.handler.unknown(t)}(t)}},t.prototype.parseImg=function(t){t.leftPos=this.stream.readUnsigned(),t.topPos=this.stream.readUnsigned(),t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=Iot.SuperGifUtils.byteToBitArr(this.stream.readByte());t.lctFlag=e.shift(),t.interlaced=e.shift(),t.sorted=e.shift(),t.reserved=e.splice(0,2),t.lctSize=Iot.SuperGifUtils.bitsToNum(e.splice(0,3)),t.lctFlag&&(t.lct=this.parseCT(1<<t.lctSize+1)),t.lzwMinCodeSize=this.stream.readByte();var r=this.readSubBlocks();t.pixels=Iot.SuperGifUtils.lzwDecode(t.lzwMinCodeSize,r),t.interlaced&&(t.pixels=function(t,e){for(var r=new Array(t.length),n=t.length/e,i=function(n,i){var o=t.slice(i*e,(i+1)*e);r.splice.apply(r,[n*e,e].concat(o))},o=[0,4,2,1],a=[8,8,4,2],s=0,c=0;c<4;c++)for(var u=o[c];u<n;u+=a[c])i(u,s),s++;return r}(t.pixels,t.width)),this.handler.img&&this.handler.img(t)},t.prototype.parseBlock=function(){var t={};switch(t.sentinel=this.stream.readByte(),String.fromCharCode(t.sentinel)){case"!":t.type="ext",this.parseExt(t);break;case",":t.type="img",this.parseImg(t);break;case";":t.type="eof",this.handler.eof&&this.handler.eof(t);break;default:throw new Error("Unknown block: 0x"+t.sentinel.toString(16))}"eof"!==t.type&&setTimeout(this.parseBlock.bind(this),0)},t.prototype.parse=function(){this.parseHeader(),setTimeout(this.parseBlock.bind(this),0)},t}();Tot.SuperGifParser=Cot;var Rot={};Object.defineProperty(Rot,"__esModule",{value:!0});var jot=function(){function t(t){this.data=t,this.position=0}return t.prototype.readByte=function(){if(this.position>=this.data.length)throw new Error("Attempted to read past end of stream.");return this.data instanceof Uint8Array?this.data[this.position++]:255&this.data.charCodeAt(this.position++)},t.prototype.readBytes=function(t){for(var e=[],r=0;r<t;r++)e.push(this.readByte());return e},t.prototype.read=function(t){for(var e="",r=0;r<t;r++)e+=String.fromCharCode(this.readByte());return e},t.prototype.readUnsigned=function(){var t=this.readBytes(2);return(t[1]<<8)+t[0]},t}();Rot.SuperGifStream=jot,Object.defineProperty(Mot,"__esModule",{value:!0});var Lot=Tot,Dot=Rot,zot=function(){function t(t,e){var r=this;for(var n in this.gifImgElement=t,this.options={autoPlay:!0},this.loading=!1,this.ready=!1,this.transparency=null,this.delay=null,this.disposalMethod=null,this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,this.playing=!0,this.forward=!0,this.ctxScaled=!1,this.frames=[],this.frameOffsets=[],this.initialized=!1,this.currentFrameIndex=-1,this.iterationCount=0,this.stepping=!1,this.handler={hdr:this.withProgress(this.doHdr.bind(this)),gce:this.withProgress(this.doGCE.bind(this)),com:this.withProgress(this.doNothing.bind(this)),app:{NETSCAPE:this.withProgress(this.doNothing.bind(this))},img:this.withProgress(this.doImg.bind(this)),eof:function(){r.pushFrame(),r.canvas.width=r.hdr.width*r.getCanvasScale(),r.canvas.height=r.hdr.height*r.getCanvasScale(),r.playerInit(),r.loading=!1,r.ready=!0,r.loadCallback&&r.loadCallback(r.gifImgElement)}},e)this.options[n]=e[n];this.onEndListener=e.onEnd,this.loopDelay=e.loopDelay||0,this.overrideLoopMode=null!=e.loopMode?e.loopMode:"auto",this.drawWhileLoading=null==e.drawWhileLoading||e.drawWhileLoading}return t.prototype.init=function(){var t=this.gifImgElement.parentNode,e=document.createElement("div");this.canvas=document.createElement("canvas"),this.canvasContext=this.canvas.getContext("2d"),this.tmpCanvas=document.createElement("canvas"),e.className=this.options.enclosingClass||"super-gif",e.appendChild(this.canvas),t&&(t.insertBefore(e,this.gifImgElement),t.removeChild(this.gifImgElement)),this.initialized=!0},t.prototype.loadSetup=function(t){return!this.loading&&(t&&(this.loadCallback=t),this.loading=!0,this.frames=[],this.clear(),this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,!0)},t.prototype.completeLoop=function(){this.onEndListener&&this.onEndListener(this.gifImgElement),this.iterationCount++,!1!==this.overrideLoopMode||this.iterationCount<0?this.doStep():(this.stepping=!1,this.playing=!1)},t.prototype.doStep=function(){if(this.stepping=this.playing,this.stepping){this.stepFrame(1);var t=10*this.frames[this.currentFrameIndex].delay;t||(t=100),0===this.getNextFrameNo()?(t+=this.loopDelay,setTimeout(this.completeLoop.bind(this),t)):setTimeout(this.doStep.bind(this),t)}},t.prototype.step=function(){this.stepping||setTimeout(this.doStep.bind(this),0)},t.prototype.putFrame=function(){var t;this.currentFrameIndex=parseInt(this.currentFrameIndex.toString(),10),this.currentFrameIndex>this.frames.length-1&&(this.currentFrameIndex=0),this.currentFrameIndex<0&&(this.currentFrameIndex=0),t=this.frameOffsets[this.currentFrameIndex],this.tmpCanvas.getContext("2d").putImageData(this.frames[this.currentFrameIndex].data,t.x,t.y),this.canvasContext.globalCompositeOperation="copy",this.canvasContext.drawImage(this.tmpCanvas,0,0)},t.prototype.playerInit=function(){this.loadErrorCause||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.options.autoPlay?this.step():(this.currentFrameIndex=0,this.putFrame()))},t.prototype.clear=function(){this.transparency=null,this.delay=null,this.lastDisposalMethod=this.disposalMethod,this.disposalMethod=null,this.frame=null},t.prototype.parseStream=function(t){try{new Lot.SuperGifParser(t,this.handler).parse()}catch(t){this.handleError("parse")}},t.prototype.setSizes=function(t,e){this.canvas.width=t*this.getCanvasScale(),this.canvas.height=e*this.getCanvasScale(),this.tmpCanvas.width=t,this.tmpCanvas.height=e,this.tmpCanvas.style.width=t+"px",this.tmpCanvas.style.height=e+"px",this.tmpCanvas.getContext("2d").setTransform(1,0,0,1,0,0)},t.prototype.drawError=function(){this.canvasContext.fillStyle="black",this.canvasContext.fillRect(0,0,this.hdr.width,this.hdr.height),this.canvasContext.strokeStyle="red",this.canvasContext.lineWidth=3,this.canvasContext.moveTo(0,0),this.canvasContext.lineTo(this.hdr.width,this.hdr.height),this.canvasContext.moveTo(0,this.hdr.height),this.canvasContext.lineTo(this.hdr.width,0),this.canvasContext.stroke()},t.prototype.handleError=function(t){this.loadErrorCause=t,this.hdr={width:this.gifImgElement.width,height:this.gifImgElement.height},this.frames=[],this.drawError()},t.prototype.doHdr=function(t){this.hdr=t,this.setSizes(this.hdr.width,this.hdr.height)},t.prototype.doGCE=function(t){this.pushFrame(),this.clear(),this.transparency=t.transparencyGiven?t.transparencyIndex:null,this.delay=t.delayTime,this.disposalMethod=t.disposalMethod},t.prototype.pushFrame=function(){this.frame&&(this.frames.push({data:this.frame.getImageData(0,0,this.hdr.width,this.hdr.height),delay:this.delay}),this.frameOffsets.push({x:0,y:0}))},t.prototype.doImg=function(t){var e=this;this.frame||(this.frame=this.tmpCanvas.getContext("2d"));var r=this.frames.length,n=t.lctFlag?t.lct:this.hdr.gct;r>0&&(3===this.lastDisposalMethod?null!==this.disposalRestoreFromIdx?this.frame.putImageData(frames[this.disposalRestoreFromIdx].data,0,0):this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height):this.disposalRestoreFromIdx=r-1,2===this.lastDisposalMethod&&this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height));var i=this.frame.getImageData(t.leftPos,t.topPos,t.width,t.height);t.pixels.forEach((function(t,r){t!==e.transparency&&(i.data[4*r+0]=n[t][0],i.data[4*r+1]=n[t][1],i.data[4*r+2]=n[t][2],i.data[4*r+3]=255)})),this.frame.putImageData(i,t.leftPos,t.topPos),this.ctxScaled||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.ctxScaled=!0),this.drawWhileLoading&&(this.canvasContext.drawImage(this.tmpCanvas,0,0),this.drawWhileLoading=this.options.autoPlay),this.lastImg=t},t.prototype.doNothing=function(){},t.prototype.withProgress=function(t){return function(e){t(e)}},t.prototype.getNextFrameNo=function(){var t=this.forward?1:-1;return(this.currentFrameIndex+t+this.frames.length)%this.frames.length},t.prototype.stepFrame=function(t){this.currentFrameIndex=this.currentFrameIndex+t,this.putFrame()},t.prototype.getCanvasScale=function(){return this.options.maxWidth&&this.hdr&&this.hdr.width>this.options.maxWidth?this.options.maxWidth/this.hdr.width:window.devicePixelRatio||1},t.prototype.play=function(){this.playing=!0,this.step()},t.prototype.pause=function(){this.playing=!1},t.prototype.isPlaying=function(){return this.playing},t.prototype.getCanvas=function(){return this.canvas},t.prototype.isLoading=function(){return this.loading},t.prototype.isReady=function(){return this.ready},t.prototype.isAutoPlay=function(){return this.options.autoPlay},t.prototype.getLength=function(){return this.frames.length},t.prototype.getCurrentFrame=function(){return this.currentFrameIndex},t.prototype.moveTo=function(t){this.currentFrameIndex=t,this.putFrame()},t.prototype.loadURL=function(t,e){var r=this;if(this.loadSetup(e)){var n=new XMLHttpRequest;n.open("GET",t,!0),"overrideMimeType"in n?n.overrideMimeType("text/plain; charset=x-user-defined"):"responseType"in n?n.responseType="arraybuffer":n.setRequestHeader("Accept-Charset","x-user-defined"),n.onloadstart=function(){r.initialized||r.init()},n.onload=function(){if(200===n.status){var t=n.response;t.toString().indexOf("ArrayBuffer")>0&&(t=new Uint8Array(t));var e=new Dot.SuperGifStream(t);setTimeout((function(){r.parseStream(e)}),0)}else r.handleError("xhr - response")},n.onerror=function(){r.handleError("xhr")},n.send()}},t.prototype.load=function(t){this.loadURL(this.gifImgElement.src,t)},t}(),Not=Mot.SuperGif=zot;const Fot={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"src",name:"src"},{type:"checkbox",label:"play",name:"play"}],"value-property":"src",help:"scene/component/gif-view"};class Bot extends Sot{async oncreate_element(t){var{src:e,play:r}=this.state;this.onchangesrc(e),this.onchangeplay(r)}buildImg(){var t=this.element;t.innerHTML="";var e=document.createElement("img");return e.style.width="100%",e.style.height="100%",t.appendChild(e),e}onchange(t,e){super.onchange(t,e),"src"in t&&this.onchangesrc(t.src),"play"in t&&this.onchangeplay(t.play)}setElementProperties(t){}onchangeplay(t){var e=this._superGif;e&&e.isReady()&&(t?e.play():e.pause())}onchangesrc(t){var e=this.buildImg();t||(t="data:image/gif;base64,R0lGODlhYABIAPcAAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKio+Pj5iYmKCgoKampqurq66urrCwsLGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrOzs7S0tLa2tre3t7m5ubu7u7+/v8DAwMHBwcPDw8XFxcfHx8vLy8/Pz9LS0tXV1dfX193d3eTk5Onp6fj4+Pz8/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////////////yH5BAkAAPUAIf47R2VuZXJhdGVkIGJ5IGpzZ2lmIChodHRwczovL2dpdGh1Yi5jb20vYW50aW1hdHRlcjE1L2pzZ2lmLykALAAAAABgAEgAAAj+AGcJHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDNq3Mixo8ePIEOKHEmypMmR9VKqXMmypcuXMGPKnJkSIs2bOHPqZGlzp8+fQOv1DEq0KMyhRpMmRaq0KVCmTqPmhCq1qkyqLrFRSyYwGTVsVo1iZXmNa8Fk18ISHasSm1mDycCq/ck2JTWF1ObSfTjz7cFken3WFbow8M7BDA3rHOwXruKpfGXeTZg3qDVrUge7RRg3KLZjx+Q2HVyvLNy0QaMJjBaVdD2tZr2K/mmNIObRkR+n9AsYt0Pddg1WXppb8bWDx1CLLW74GcJnSl3TtDY8Zu2Et4tKl7n52eyWnxXvhl7+26jqrspbnlfIWjtz2gWPZV95neH8veU9NxZYfbfD3kFt99J6Bnmn0mQO9XfYezrVxxlmx0GUXIAM4hSeffsxBN1TFd5E4Ef3QZbfTg6CNJ5gHXJ3TEntLThiTh+KFCJNAqZU4kgAitjQTheepOBMNcZI0oQ6JpbTjSZtiNN2PZ400IxHpdiSc07G911M0iFZZYtAStnWilUeBGVLrlEZpmM0elmPlmfO8iOZXl4DZpsGEYmll2bSWWCXLwJXVY1+urhjoGEBSuiSah6K36CKtpZoo4s9CimielZq6aWYZqrpppx26umnoIZ6UkAAOw=="),e.src=t,e.setAttribute("rel:animated_src",t),e.setAttribute("rel:auto_play",0),this._superGif=new Not(e,{autoPlay:!1}),this._superGif.init();for(const t of this.element.children)t.style.width="100%",t.style.height="100%";var r=this._superGif.getCanvas();r.style.width="100%",r.style.height="100%",this._superGif.load((()=>{setTimeout((()=>{this._superGif.moveTo(0),this.play&&this._superGif.play()}),100)}))}ondropfile(t,e){for(let r=0;r<t.length;r++)if(/\.gif$/.test(t[r].name))return void(this.src=e[r])}get src(){return this.getState("src")}set src(t){this.set("src",t)}get play(){return this.getState("play")}set play(t){this.setState("play",t)}get nature(){return Fot}get tagName(){return"div"}}vtt.register("gif-view",Bot);const Uot={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"attachment-selector",label:"src",name:"src",property:{category:"audio"}},{type:"checkbox",label:"started",name:"started"},{type:"checkbox",label:"loop",name:"loop"}],"value-property":"src",help:"scene/component/audio"};class Yot extends(btt(ytt)){static get image(){return Yot.IMAGE||(Yot.IMAGE=new Image,Yot.IMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAMAAAC3Ycb+AAAAP1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACzJYIvAAAAFHRSTlMA8BAwgNBgQKB/wCBwUJDg37CvXyUlBK8AABFYSURBVHja7NsBkqIwFIThTiAQgyBq3/+sm6p1tnamZkaTMhJJf1f4S/JeEIiIiIiIiIiIiIiIiEhD7Hg4BH84TpAKjJ4f3NFCtjVd+InXz2RTs+FXlxGylYHfcVfIJmb+YFWSLUyGVJKKBJJKUo+Rd6w63l/qzLuCkryO5fe0l2xk5mMWbe+v0fNBRqf7S3je6CipQ2ACr+dWcYEpzBFS1plpguatsnomMgdIQSOTuQ5SjmE6/UgK8szgdJIUM/FG41YlFmYJ2kkKsY5ZzAwBurHDk3WGeRY0bvYrGa1+rqNI22f7dS32ZnUK1GMr0eSK3mEc9dhKMxp+ZTo8kT2emOXS5LQ1kCxbJBocSd2k5PaIjMVzjWcdJPk9ooBnmzx1t5XbIxqBKpJ4NGTgzwKiGpK4do72gb+ZUMIYtCPm9WCPMsYTE5k2hq2ZvzujlCE1iRmwf3dvmRyKsT0T7b9I7HEPCpqCiqT2IIqaT1pI0noQZdlFC8l/PbYPAnRORT56VBEE6FXkb49agmByKhJ71BME6FsvEntUFQTdqekisUdlQWCXhovEHtUFAWbTapHYo8YgmFybO3vsUWcQYGmxSOxRbRAMprkisUfFQVKmrX18sxt7VB0ENjT1xir2qDxIwkFi3v89e+xRfxAMzfzzIfZ4hyAYDR9zwVuLPd4jCDrTwoLYGb5LEFi3/+E3rweR6urX20c/Fvls2Pvwm9mDSGIPhv8YPyGf3/eo9Ye7O8B2FIShAAooakEttex/rbODad5/yTHIAjqn505IQPv+Xz06dz+4VXORHEZcgAcB8updM8F6e25jBzwIkE07l+x8amMnPDp6nsNJ+BoZ7Q6F8egqAda9VEuRNlZjBzwYkMskdXR73okd8GBAJiKYjBcZKKqG9OiKDbgdfxJ5VhsBPDiQZhaouD3p4hfw4EAmwxisz3MSHwAPEmQ1TB1N+SmXWoAHC7JbZsWl/IxLLcCDBplNo3lrfMLsmwAPGmShAxX5/1vOEzjEz3iyfQ/hI36W4TctsUesOAifPdrQg8M++KYl95iCBkjI1r8634betBAPHZDTPFAmD3zLiHgogVTziMsahz0eIh5aIGHGRSJ2mFtHPR4iHhQIP2UvWGMf8wk74qEIEib7rLjPiBfxiAcCwp8V+Nae3uMdRhAPDIR/J5f/Q2DTcC+hIB7qIGEq3Ti9bx+sryMeAAgS70OK8G2kBD8L8QBAoLWU3g3vUVIc6D0txAMAsY+4jBWowXHO64gHBGKfYJ2T5qY1BxcL98BB+PQ+XiS9xxh9EQ8ChA6C5UXWIUoE9MBB8LVHQoS7ib8/dRn3sAcJ6bQRSdH96RDxIEH4QEX+AHF4LxHEAwUh12xyr1V8lwjiQYDYF8kuf1jluUQQDwrEvkhW8Wc6LhHUgwfhi4QPlHm7LRHawx4kpE191Dq8lgjhAYDQa1cftYrPEiE8OJDb40uqyzdQCA8WhAzL4G/PT4c3WrgHD2IfllGl53V37zsgHg5ApPNvVvq4Fn4spx4oiH1W3CwtEV+PDhEPJyBSkVX4aa7emkM83ICEKWpGM7wdvYCCeDgCEYpcwhLxczhEPFyBCEUWnRL5T6X59SBASBF+9l28TL5F7uEORCZyCUvEx+S7yT0cgoRVb9JaXLR1qUdfgksQ0fTbgmhFB20d8HAKEha14+F8f1sHPNyCiL6EqK+n20/rgIdjkFC0Ho1s6Gndvcc9ICkr/ey8/rHO6vp9KawL8DAFOV6l9Fyub7IbflsCag1qRfVsXWvxHjxIejU+BHZV6uvHD1XiEb++Bw8i+dNd+Wv0eCQmhcPhRPwUUt2DB5G1sfa1aeyzAuyJj9x2HjyIdKzIKw5SI14ieFtvo3kIQERj3lVhkUOnRD7AnjV5369QkAOJZeCH+Jh41xOLs73dQwAifY6dpxCCbjTDzLf1Bm1Y93tAIDOWXcLPvrHyr2hVoEAceEAgDQzB4jetk0/c2OXRHB48EJCpa4dgpYh2ETxtrshz7zx4ICCzfuTSDn8p/EOS9OTjwgMB+cABP3yWYuOPIofs33LigYCULlpZNXJppVU30Vf14kGAUCLijf1D71lN9FW9eFiA9KgZ8FPpPUsSnufGA+8hvAg2Kpz0nrX//qp+PIgpC3i6xJRITOye9fn1VT15ICCrVlQG5rywo0H8x965bVkNwmCYQ2kR6Gmb939WXV65dFnI/tPdjPBfO7XMN4EkTUJtqZp4sCJ1+8jwkhMu0KpMxFXFA8hlVfQSMxGH5mDK1VKV8QCyvTVtUiYyo7V358VStfGoAEFMhGYhEwloxZy9WKo2Hjwg5iSOvFDXeUYd33+PuVfHgwnEBWLocDJp+IIa2fyvperjwQRiXCKGosyXqoA+YfsIELuYu4HAt+msMknfDK4jfQJIzOZ2IPAQWJtFOhQKivR2IDZ6Awis7V0iLxqBI7uEZo19dakTogLSwKvf8yk8Jq6CGK0GKvWlatG7b7kkUU/Lo1gdXWn7/4E0j0qeJDpqN/ABqQcgJgdqURb4chjQktIugDS6wFFiz3JgaJj7AGJmholAe9YKhoZLJ0Ca6smjwJ4VwVN96gVIE5GM71kHaGKxGyAtRDaB2NBhLVmpHyANRKzDO28W7FS3HQFpaIWa8TrfCXQwegJSL5k+8M9UJ+pm9QTEnCIZrR0MDQeQ9ua0iCcYQaBTV0CqNXQW/yiyYG7W1heQanPaCkciBXuH1BkQJzHcDQxmpgGkPatl4WkbCXO/bW9AqlNg4H0PPMi6A1IxkQmOZ8D0ousNSMVEEuyreTAQ6Q7IRJeCX2YZQHhv6SrBOmpkM+YUzN0BqSRQCupmTeCP9wdkhiOREwtEzgGEsWcF9BhK9R8fQDiN7A8DiR0CKXQlj/q9IM8OgXjIzcKBlAHkD6FulgNzJwPIHwpo8mQAkX3LiPq9dKUMAQk9AqmcqmjuBAJCPQIpA4guIAsKJA0gnwNy3A4kDyBIHCEPxAwgf8gPILqA5AFEF5CxZX0lIHYc6rqADLf380BmFMgxgIzUyf8MJKLTRelKHgKy9wgkjfS7LiA0gKgC8vQn3HUA4RQ5LKPIAQciWbqIEg0YkLNDIHYUyqkCsmKN5vg3+W0AYTRATaPY+uu1IwS6UMGAlO6AFPjSCQMStaNh53cdcPG7Hx1Uupo+rx+Bltn1BuTAj5BptEV/bHAAwbnJMICwRmtUDOSEA8s4Rmtw3nITGD6TwUNoG0Ca7xi2YKSPj2eKXQFxQWKA2QbGMWEMMGseOb7C7T47uJS1JyAzVbTjqZdU3zbHzMXWS+qp4Fgn8Ahy/QCRGqQcwU1vGnN7fylboWn8Bzg//hyjxltvdcl45bwFfYKzFyBy11UU9BnjuoqfWizVlQXulpzBTNbaB5Aid+VRrkBFB630AMS9BC8FK2ggE7u/FGy1kvfcB9TKQufX5uUXNWl3EjvWCi4k/u9A3Ddq1CpTIQGe6VN1qd8ArcvDQNw3S41Kn6qQmOq5e7pRr+8fAYLiIJtFrrvYRMYL0q06vj8EZLXUriJzRY8H1xEagOCK7gkghRg6RQYO0I6aWPwIEAru80AiMWSdzAeuDXUKyr+WqpAID8hMHC1Ct8F4mUsQ6W8pJMICki0JHCBczAFdBl38G3VE6ErQhhWlih4LWrCSLpaqjggHiGe9mVjRY0YPoelyqcqIcIDEe97rqJFFH7FcLlUZEQ6Qg5plvZiBFNhtri1VFREGEC/Eg4nZoU5vqi1VFREGkIXDQ8xAIhzoT/WlKiLCAFIYPOQMxOPdjfWlKiLCADJRm3YGj+pDE2xktmmpaogwgMz8d8GrumZ4xzpbvinqISJ+hiTWm7wEqoJdI9JEV9JChAEkS3xCZzKecLcgN6YwlRBhAGmweTsblg6qKMM7Vmh321UQ4QAp1VfwhqVJIh+Wm03W0qV0EOEAybXtivkCmWrKeH2EZ/xBaSBCV2L9Re+LYSqJJIxDu1ew07U0EGEBcTtmHty4JuPtQhvLh1BAhK7Uvvq0GK484QZST0GvvFDqeSJ1IA0r2mfDljvqBoJ//rVsq7yZCA6kXgVkJ2f4ijIGMjOfMVsCBBORB2Jy+sM6ijNvaBUqmw/cStZ8EiKciHwp6Rp++88qmxXQeTUxDiJWJ9wSISvBicgXW+dypn1PqWTznlwgwdZdfiLHr5OELEAEASKvJFRE5JCPKbh8OxHdQKJU0crEzRXrJ/IEkFms6tGyrUw9kQeALFRXvK2iSzsRAAi6BLxM+60xdsqJAEBuXMAMxDLVp+gmAgC57/UT4qvVj3TVRCAgSAYL91aXtyNLzUQAIFhAiP8m0/NHOp+ILiBtPFKrs6bgSOcT0QTEB8nO3QR1yKslggKRf+m11UB0HOl8IlqAeCvauXuo8HnfIqIDyCw6G8XMcGiplMingMzCnbuHFp/3LSLPA4nUpqm5YkWNzwsQeQxIDsKjH5wVSU5qJPIJIIt4jjpqNBAekQeBfJOeHWS81FQoo4/I7UDcS3wUh0liTzLqiEgDqddx4ZHDrNZAACIAEMw88HPYWb0GAhABgEDmgf9Vb5oNBCByOxD3uqWYbCHVBgIQuRlIsbfwMEG5gQBE7gSyHMDsOayrxJvHBRC5B0hOxJH1nK4SlUE6QOR+IG6ju3iYQEqDdIDIzUDyZu/jMRHpS/OiRG4FkiPRfTw8kbrvIAJEACAIDpyHC1/GQHhEbgKSXwTyqIeEur6kixEBgABHOTr7YSX1MSFAhA0E307wUU76Y0KACAsI/tvCRzkF+iIuL0AEAYLbR2QOfvhKJ/obRESBxNt5rPSFXN4f7dyNdqMgEIbhAXWwJErT/e7/Wreb5HTT07QVgWSAeW5g7b4n8qOSUCRPEId4HP93SXp5dDNGRJFcQTxihSH+NW1Bb1cXKpIryJAwnG/zhl8ZcSP6jiKZghwRaaWLnP/AkcSKKJIniEcUs8QfjFLdEmRvkSxB4lfn0QN6DY+lshQpHiT96Dlr6r5hxRUpHST9ZEY71X7DOmOZQVZLsd5Q8wzrPxYYJDiKNqOBG1ZCkZKzrNXu6lHvkjChSFqQsdTPg45ApXtYaUXKr9TNuPcvqO2pVMkitFXAL2a79/qr3HQvVSTXUtofCl79RDXh5CDpw3pwu6+9kRlvtiI5VtPhmHLltT4EKVQkfb8pcOHrXqk6nBAksUjgpKtuYsskaxGKYT0+84uYgziE4YQgMdx0m8PRfis2MbL33PMXoVjD6PEunI4HSjDjStiJP08vQk9hZzQ7oH/geoLYCUBDW4rf4FqCDFt7THUO6B+4jiDn2XNTW7zf4hqCMND4BOsGyw+yAmh0x+QeFh7EeqD5Ce8nLDrI8NpbDyIWHIQNruo4GyAPlhrEzuixBxHLDDJMnfYgYolBricHNfjIdgMWF+Qyu+pkgX4HCwuymL57ELGkIHZG7z2IWE6Q5VV7vGMhQewbtMcZiwhyHj26ne9+xs8PcvDQHnFFqCD7Au0RW4TK+fOKqw4eoOcqYqgU53HR3/5uShFPCfKey9hFDyJO/vAi7RDZnp7X5igyUH72xSDW1E2Pn4tMRCQgR8vLwbgii4gcmLvqQcSPGtIPX3M08wn6I4qYQ94cM/Yw9Xxhmw+X/59wHrtMlX1AmIkzdyaaAnLg1Nnw8WGYSk40X/BOh4+El6LMSBnN2Cd0tPq4w/LJXGrMbCX06PZ2dcM65yzlNertShSHf3SzRAyPM332IcSAHUKPi8EHmXU0l8Uglmni0yipDoi16s+jJKejhywLooz68yiMEcHr2qM4h81CJ++VPJfTu5UwBpv4Pp9DJSi6MJx0bvUwiw4ewgT8zNR0LHUL+OccOpY/3ElzyGKD5pBlMJpDlsOkMythRoNbXh95PJsdA67MrMtAEYbjeDqNo+7oKqWUUkoppZRSSimllFJKFfMXp4vmSjB8n6sAAAAASUVORK5CYII="),Yot.IMAGE}dispose(){super.dispose(),this.started=!1,delete this._audio}ready(){super.ready(),this._audio=new Audio,this._audio.addEventListener("canplay",(()=>{this.started&&this._audio.play()}));var{src:t="",loop:e=!1,started:r=!1}=this.state;this.onchangeSrc(t),this.onchangeLoop(e),this.onchangeStarted(r)}render(t){var{left:e,top:r,width:n,height:i,src:o}=this.state;t.beginPath(),this.drawImage(t,Yot.image,e,r,n,i)}get nature(){return Uot}get hasTextProperty(){return!1}get src(){return this.get("src")}set src(t){this.set("src",t)}get started(){return!!this.get("started")}set started(t){this.set("started",t)}start(){this._audio&&(this._audio.classList.add("active"),this._audio.play())}pause(){this._audio&&(this._audio.classList.remove("active"),this._audio.pause())}onchangeSrc(t){try{"data"!==String(t).substring(0,4)?this._audio.crossOrigin="use-credentials":this._audio.crossOrigin=null,this._audio.src="string"==typeof t?this.app.url(t):t}catch(t){return void console.error(t)}}onchangeStarted(t){const e=this._audio;t?4==e.readyState&&e.play():e.pause()}onchangeLoop(t){this._audio.loop=t}onchange(t,e){"src"in t&&this.onchangeSrc(t.src),"started"in t&&this.onchangeStarted(t.started),"loop"in t&&this.onchangeLoop(t.loop)}ondblclick(t){this.started=!this.started}ondropfile(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("audio/"))return void(this.src=e[r])}}vtt.register("audio",Yot);class Hot extends(btt(vtt)){is3dish(){return!0}}vtt.register("text",Hot);const Got=["refid","left","top","width","height","rotation","animation"];class Wot extends Zit{isGroup(){return!0}get(t){return this._model[t]}set(t,e){if("string"==typeof t)return this.set({[t]:e});var r=Got.reduce(((e,r)=>(t.hasOwnProperty(r)&&(e[r]=t[r]),e)),{});return super.set(r)}capture(t,e,r){var n=super.capture(t,e,r);if(n!==this)return n}set bounds(t){if(this.__MUTATING__)super.bounds=t;else{var e=this.bounds,r=t.width/e.width,n=t.height/e.height;this.path=this.path.map((i=>({x:t.left+(i.x-e.left)*r,y:t.top+(i.y-e.top)*n}))),this.components&&this.components.forEach((t=>{if(t.mutable)t.mutatePath(null,(function(t){return t.map((function(t){return{x:t.x*r,y:t.y*n}}))}));else{let e=t.bounds,i=t.center,o={x:i.x*(1-r),y:i.y*(1-n)},a=e.width*(1-r),s=e.height*(1-n),c=-(o.x-a/2),u=-(o.y-s/2);t.bounds={left:e.left+c,top:e.top+u,width:e.width*r,height:e.height*n}}}))}}get focusible(){return!1}get bounds(){return super.bounds}get hasTextProperty(){return!1}isIdentifiable(){return!1}calculateBounds(){this.clearCache(),this.__MUTATING__=!0,this.mutateBounds((function(t){var e=vtt.union(this.components.map((t=>t.bounds)));return this.components.forEach((t=>{let r=t.bounds;t.bounds={left:r.left-e.left,top:r.top-e.top,width:r.width,height:r.height}})),{left:t.left+e.left,top:t.top+e.top,width:e.width,height:e.height}}),this),this.__MUTATING__=!1,this.parent.isGroup()&&this.parent.calculateBounds()}render(t){}postrender(t){var{top:e,left:r,scale:n}=this.state;t.translate(r,e),this.layout.drawables(this).forEach((e=>{e.draw(t)})),t.translate(-r,-e)}}vtt.register("group",Wot);const $ot={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"id-input",label:"ref",name:"ref"},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio"]}}],"value-property":"ref",help:"scene/component/local-ref"};class qot extends(btt(ytt)){get ref(){var t=this.getState("ref");return t&&"string"==typeof t?this.root.findById(t):null}set ref(t){this.setState("ref",t)}get refScale(){let t=this.ref.bounds,e=this.bounds,r=e.width/t.width,n=e.height/t.height;return"both"===this.model.fit?{x:r,y:n}:{x:Math.min(r,n),y:Math.min(r,n)}}draw(t){this._drawing||(this._drawing=!0,super.draw(t),this._drawing=!1)}prerender(t){if(super.prerender(t),this.ref){let e=this.ref.center,r=this.center,n=this.refScale;t.translate(r.x,r.y),t.scale(n.x,n.y),t.translate(-e.x,-e.y)}}postrender(t){if(this.ref)return this.ref.postrender(t);super.postrender(t)}render(t){if(this.ref)return this.ref.render(t);this.state;var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),t.rect(e,r,n,i)}get nature(){return $ot}get hasTextProperty(){return!1}}vtt.memoize(qot.prototype,"ref",!1),vtt.memoize(qot.prototype,"refScale",!1),vtt.register("local-ref",qot);class Xot extends(Vit(Htt)){render(t){}is3dish(){return!0}get layout(){return Ett.get(this.get("layout"))||Stt}}const Vot={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"scene-number",name:"ref",placeholder:"SCENE-1"},{type:"number",label:"round",name:"round",property:{min:0}},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio","width","height","none"]}},{type:"select",label:"mode",name:"mode",property:{options:["view","interaction"]}}],"value-property":"ref",help:"scene/component/global-ref"};class Kot extends Xot{dispose(){this._releaseRef(),super.dispose()}get nature(){return Vot}get hasTextProperty(){return!1}get tagName(){return"div"}setElementProperties(t){var{mode:e="view",round:r=0}=this.state;t.style.pointerEvents="view"==e?"none":"inherit",t.style.borderRadius=r+"px"}ready(){super.ready(),this.fetchRef()}reposition(){if(!this.element)return;super.reposition();let t=this._element_bounds,{offsetWidth:e,offsetHeight:r}=this.element;if(this._element_bounds={offsetWidth:e,offsetHeight:r},(!t||t.offsetWidth!=e||t.offsetHeight!=r)&&this.ref&&this.root.target_element){let{fit:t="ratio"}=this.state;this.ref.fit(t)}}async fetchRef(){this._releaseRef();var{ref:t,fit:e="ratio"}=this.state;if(t){var r=this.app.refProvider;if(r&&t)try{this.__ref=await r.get(t,!0),this.__ref.target=this.element,this.__ref.fit(e),this.__ref.data=this.data}catch(t){U7(t)}}}get ref(){return this.__ref}set ref(t){this.setState("ref",t)}_releaseRef(){this.__ref&&this.__ref.release&&this.__ref.release(),delete this.__ref}onchange(t,e,r){super.onchange(t,e,r),"ref"in t&&this.fetchRef(),"fit"in t&&this.ref&&requestAnimationFrame((()=>{let{fit:t}=this.state;this.ref.fit(t)})),"data"in t&&this.ref&&requestAnimationFrame((()=>{this.ref.data=t.data}))}}vtt.register("global-ref",Kot);const Qot={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"board",name:"board"},{type:"checkbox",label:"modal",name:"modal"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"draggable",name:"draggable"},{type:"checkbox",label:"minimizable",name:"minimizable"},{type:"checkbox",label:"show",name:"show"},{type:"select",label:"location",name:"location",property:{options:["center","left-top","right-top","left-bottom","right-bottom","auto"]}},{type:"string",label:"title",name:"text"},{type:"data",label:"value",name:"value"}],help:"scene/component/popup"};class Jot extends(btt(ytt)){static get image(){return Jot._image||(Jot._image=new Image,Jot._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAMAAABG8BK2AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuZGFiYWNiYiwgMjAyMS8wNC8xNC0wMDozOTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM4QzQxNUMzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM4QzQxNUQzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpENjlENTQ3RjMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpENjlENTQ4MDMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsiUYSQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA51BMVEVHcEwzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOguTm2AAAATHRSTlMARhB73r9B7YLrsqdE+0cq9Avzeg31eQx4aQ+Ks6aUd5DsYKixEX1w8vyT2VjoZ3YezY/cCEDvl+QTvRwJ0ifwK/5T/aw6+IuFuCImAcS6MQAAAeJJREFUWMPt2FlX2zAQhuHJYmOSFhIggbC0QNn3rS1dKXSH9///Hi58CJLxKIpEWi6YO8c5z4lG/nxGEXmu/1OVLGnhrFaSVQYg1SZetTTvUibqeFZ9QlfmvRWoV1VmCaCRzroXPpsuAjTV7gLUfPahBqD1OQMW/fazAWTKvQRI/ZgUSJR7U8CM/dHZ+/2VcatWdvdEZAaYUhiAwkerJXt0rnzXwdRKmHfDM0fHD5kxjTFyVLzVfvvirn7+cDJWjhy7c7XlYuwc6Urvu2tRhRypyhwAf1sKY+TIxfQA+H39q5wxc+RgVrcBduTmZTlj5khnDgH4IzKpMGaOVCbvyyvRGTNHGtPrKypjXirM5jb910I4k69oQeKY+77EMAcALEsck/+W6f71tyCma/ZFROTrJVwMy7wmf3bv6/MX+Dgkkysblvxps/dhOKZb6IvrTakzXXuPApnpYneDGOeKvJlaSXcDmA7AicQyW84VeTOnY+NdiWcG1uiZksFEHdyAlsJEjEkmkwGNsKHNZCJGSKtVTYC1tO022mnjwUBrMdXg8dreuOBhv7D/62/8lGZ1wLxXyZKOm+iUHIQintyny0TkaATHjYgcjeAoFpEje9R/nGPqIx2aw3NU9odCQI6e6x/VLY32cKQXVBnkAAAAAElFTkSuQmCC"),Jot._image}ready(){super.ready(),this.show&&this.onchangeShow(!0)}render(t){var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),this.drawImage(t,Jot.image,e,r,n,i)}onchange(t,e){"value"in t?this.show?this.onchangeShow(!0):this.show=!0:"show"in t&&this.onchangeShow(this.show)}onchangeShow(t){!this.app.isEditMode&&this.getState("board")&&(t?Itt.show(this,this.getState("board"),{location:this.getState("location"),modal:this.getState("modal"),closable:this.getState("closable")||!1,draggable:this.getState("draggable")||!1,minimizable:this.getState("minimizable")||!1,title:this.text,data:this.value}):Itt.hide(this))}get board(){return this.getState("board")}set board(t){this.set("board",t)}get show(){return this.getState("show")}set show(t){this.setState("show",t)}get started(){return this.getState("show")}set started(t){this.setState("show",t)}get value(){return this.getState("value")}set value(t){this.setState("value",t)}get hasTextProperty(){return!1}get nature(){return Qot}}vtt.register("popup",Jot);class Zot extends vtt{render(t){var{path:e=[]}=this.state;if(!(e.length<=1)){t.beginPath(),t.moveTo(e[0].x,e[0].y);for(let r=1;r<e.length;r++)t.lineTo(e[r].x,e[r].y);t.closePath(),this.drawStroke(t)}}get path(){return this.model.path}set path(t){this.set("path",t)}contains(t,e){var r=this.state.path,n=!1;return r.forEach(((i,o)=>{let a=(o+r.length+1)%r.length,s=i.x,c=i.y,u=r[a].x,l=r[a].y;c>e!=l>e&&t<(u-s)*(e-c)/(l-c)+s&&(n=!n)})),n}}vtt.register("path",Zot);const tat={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/triangle"};class eat extends ytt{contains(t,e){var{x1:r,y1:n,x2:i,y2:o,x3:a,y3:s}=this.state,c=[r,n,i,o,a,s],u=!1;for(let r=0;r<c.length;r+=2){let n=(r+2)%c.length,i=c[r],o=c[r+1],a=c[n+1];o>e!=a>e&&t<(c[n]-i)*(e-o)/(a-o)+i&&(u=!u)}return u}get mutable(){return!0}get path(){var{x1:t,y1:e,x2:r,y2:n,x3:i,y3:o}=this.state;return[{x:t,y:e},{x:r,y:n},{x:i,y:o}]}set path(t){this.set({x1:t[0].x,y1:t[0].y,x2:t[1].x,y2:t[1].y,x3:t[2].x,y3:t[2].y})}get nature(){return tat}}vtt.memoize(eat.prototype,"path",!1),vtt.register("triangle",eat);const rat={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"}],help:"scene/component/donut"};var nat={ondragmove:function(t,e,r){r.controls;var{cx:n,rx:i}=r.model;i=Math.abs(i);var o=(r.transcoordP2S(t.x,t.y).x-n)/i*100;o=o>=100||o<=-100?100:Math.abs(o),r.set({ratio:o})}};class iat extends got{is3dish(){return!1}render(t){var{ratio:e=50,cx:r,cy:n,rx:i,ry:o,startAngle:a,endAngle:s,anticlockwise:c}=this.state;i=Math.abs(i),o=Math.abs(o),t.beginPath(),t.ellipse(r,n,i,o,0,a||0,s||2*Math.PI,c),t.moveTo(r+i/100*e,n),t.ellipse(r,n,i/100*e,o/100*e,0,a||0,s||2*Math.PI,!0)}contains(t,e){var{cx:r,cy:n,rx:i,ry:o,ratio:a}=this.state,s=(t-r)/(2*(i=Math.abs(i))-.5),c=(e-n)/(2*(o=Math.abs(o))-.5),u=(t-r)/(i/100*a*2-.5),l=(e-n)/(o/100*a*2-.5),h=!1;return s*s+c*c<.25&&u*u+l*l>.25&&(h=!h),h}get controls(){var{cx:t,cy:e,rx:r,ratio:n}=this.state;return[{x:t+(r=Math.abs(r))/100*n,y:e,handler:nat}]}get nature(){return rat}}vtt.memoize(iat.prototype,"controls",!1),vtt.register("donut",iat);const oat={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"},{type:"number",label:"wing",name:"wing",property:"wing"}],help:"scene/component/star"};var aat={ondragmove:function(t,e,r){r.controls;var{cy:n,ry:i}=r.model,o=(r.transcoordP2S(t.x,t.y).y-n)/i*100+100;o>=100?o=100:o<=0&&(o=0),r.set({ratio:o})}};class sat extends got{is3dish(){return!1}render(t){var{ratio:e=30,wing:r=5,cx:n,cy:i,rx:o,ry:a,startAngle:s,endAngle:c,anticlockwise:u}=this.state;if(r<3)return;const l=1.5707963267948966;var h=2*Math.PI/r,f=o-e/100*o,d=a-e/100*a;t.save(),t.beginPath(),t.translate(n,i),t.moveTo(o*Math.cos(-l),a*Math.sin(-l)),t.lineTo((o-f)*(Math.cos(h-l)+Math.cos(0-l))/2,(a-d)*(Math.sin(h-l)+Math.sin(0-l))/2);for(var p=1;p<r;p++)t.lineTo(o*Math.cos(h*p-l),a*Math.sin(h*p-l)),t.lineTo((o-f)*(Math.cos(h*(p+1)-l)+Math.cos(h*p-l))/2,(a-d)*(Math.sin(h*(p+1)-l)+Math.sin(h*p-l))/2);t.closePath(),t.restore()}get controls(){var{cx:t,cy:e,ry:r,ratio:n}=this.state;return[{x:t,y:e-r+r*(n/100),handler:aat}]}get nature(){return oat}}vtt.memoize(sat.prototype,"controls",!1),vtt.register("star",sat);var cat=t=>class extends t{animOnValueChange(t,e=!1,r){if(t!=this._lastValue){if(e)var n=t-(Number(r)||0);else n=t-(this._lastValue||0);this._lastValue=t,this._anim_alpha=-n,this.animate({step:t=>{this._anim_alpha=n*(t-1),this.invalidate()},duration:1e3,delta:"circ",options:{x:1},ease:"out"}).start()}}dispose(){super.dispose(),delete this._value_substitutor}onchange(t,e){t.hasOwnProperty("value")&&delete this._value_substitutor}get animAlpha(){return this._anim_alpha||0}get animValue(){return(this._lastValue||0)+(this._anim_alpha||0)}defaultValueSubstitutor(){return this.getState("value")}get valueSubstitutor(){return this._value_substitutor||(this._value_substitutor=itt(this.getState("value"),this)||this.defaultValueSubstitutor),this._value_substitutor}get value(){return Number(this.valueSubstitutor())||0}set value(t){delete this._value_substitutor,this.setState("value",Number(P7(t)))}},uat=t=>class extends t{_convertDataFormat(t,e){var r;if("json"===e)r=JSON.parse(t);else r=t;return r}isDataSource(){return!0}},lat=0;const hat=new FinalizationRegistry((()=>{lat--}));class fat{static get residents(){return lat}static get residentsCount(){return lat}constructor(t,e){this.counters={},this.references={},this.creator=t,this.disposer=e,lat++,hat.register(this,lat)}dispose(){if(this.disposer)for(let t in this.references)this.disposer.call(null,t,this.references[t]);delete this.references,delete this.counters}get ids(){return Object.keys(this.references)}create(t){var e=this;return new Promise((function(r,n){e.creator?e.creator.call(null,t,(function(e){!function(e){e.release=function(){this.disposer&&this.disposer.call(null,t,e),delete e.release,H7("RELEASED",t)},r(e)}(e)}),(function(t){n(t)})):n(Error("Reference id("+t+") could not be created. Reference creator should be defined."))}))}add(t,e){var r=this,n=new Promise((function(n,i){var o=r.references[t];if(o)o===e?i(Error("Reference ID and target duplicate")):e?i(Error("Reference ID duplicate")):n(o);else{function a(e){e.release=function(){r.release(this)},r.references[t]=e,r.counters[t]=1,n(e)}if(e)a(e);else{if(!r.creator)return void i(Error("Reference id("+t+") is not allowed. Reference creator should be defined."));r.creator.call(null,t,(function(t){a(t)}),(function(t){i(t)}))}}}));return this.references[t]||(this.references[t]=n),n}async get(t,e){var r=this.references[t];if(r){if(!(r instanceof Promise)){if(!(t in this.counters))throw new Error("No Reference Count");return this.counters[t]++,r}if(e)return r=await r,this.counters[t]++,r}if(e)return await this.add(t);throw new Error("No References for "+t)}_id(t){for(let e in this.references){if(this.references[e]===t)return e}return-1}release(t){var e=this._id(t),r=this.references[e];r?(this.counters[e]--,0==this.counters[e]&&(this.disposer&&this.disposer.call(null,e,r),delete this.references[e],delete this.counters[e],delete t.release,H7("RELEASED",e))):U7("No Referenced ID")}}var dat={},pat={},gat=[];function vat(t){var e="SCRIPT"==t.target.tagName?dat:pat,r=t.target.src||t.target.href;e[r]=!0,gat.forEach(((t,n)=>{let{resolve:i,scripts:o,styles:a}=t;if(e==dat){let t=o.indexOf(r);t>-1&&t<o.length-1&&mat(o[t+1])}for(let t=0;t<o.length;t++)if(!dat[o[t]])return;if(a)for(let t=0;t<a.length;t++)if(!pat[a[t]])return;i(),gat[n]=null})),gat=gat.filter(Boolean)}function yat(t){var e=t.target.src,r="SCRIPT"==t.target.tagName?dat:pat;gat.forEach(((n,i)=>{let{reject:o,scripts:a,styles:s}=n,c=!1;if(r===dat){for(let t=0;t<a.length;t++)if(a[t]==e){c=!0;break}}else if(s)for(let t=0;t<s.length;t++)if(s[t]==e){c=!0;break}c&&(o(t),gat[i]=null)})),gat=gat.filter(Boolean),delete r[e],document.head.removeChild(t.target)}function mat(t){dat[t]=!1;var e=document.createElement("script");e.onload=vat,e.onerror=yat,e.type="text/javascript",e.src=t,document.head.appendChild(e)}class bat{static load(t,e){return"string"==typeof t&&(t=[t]),"string"==typeof e&&(e=[e]),new Promise((function(r,n){if((!t||t instanceof Array)&&(!e||e instanceof Array)){var i,o=!0;if(e&&e.forEach((t=>{pat.hasOwnProperty(t)||function(t){pat[t]=!1;var e=document.createElement("link");e.onload=vat,e.onerror=yat,e.type="text/css",e.rel="stylesheet",e.media="screen,print",e.href=t,document.head.appendChild(e)}(t),pat[t]||(o=!1)})),t&&t.length>0&&t.forEach((t=>{dat.hasOwnProperty(t)?dat[t]||(o=!1):i=i||t})),i)mat(i);else if(o)return void r();gat.push({resolve:r,reject:n,scripts:t,styles:e})}else n("invalid sources for load")}))}}const xat="0.0.0";var wat=0,Aat=performance.now(),_at=0;function kat(){return wat}requestAnimationFrame((function t(){requestAnimationFrame(t),_at++;var e=performance.now(),r=e-Aat;r<1e3||(wat=Math.round(1e3*_at/r),Aat=e,_at=0)}));var Eat=Ret;function Sat(){}export{Ctt as AbsoluteLayout,Yot as AudioPlayer,jtt as CardLayout,vtt as Component,Ktt as Connectable,Zit as Container,Htt as ContainerAbstract,n9 as DEFAULT,t9 as DPPX,uat as DataSource,iat as Donut,got as Ellipse,ant as EventMap,kat as FPS,e9 as GESTURES,Bot as GifView,Kot as GlobalRef,Wot as Group,Stt as HTMLAbsoluteLayout,Xot as HTMLOverlayContainer,Sot as HTMLOverlayElement,Eot as ImageView,_tt as InfoWindow,r9 as KEYEVENTS,Gtt as Layer,Ett as Layout,dot as Line,Dtt as LinearHorizontalLayout,Ntt as LinearVerticalLayout,qot as LocalRef,Z7 as MAX_UNDO_SIZE,V7 as MODE_ADD,q7 as MODE_EDIT,Q7 as MODE_PASTE_DATABIND,K7 as MODE_PASTE_STYLE,X7 as MODE_SHIFT,$7 as MODE_VIEW,Eat as Model,Utt as MoveHandle,W7 as NOTHING,_ot as OrthoLine,Zot as Path,mot as Polygon,wot as Polyline,Jot as Popup,Ztt as Rect,btt as RectPath,fat as ReferenceMap,mnt as RootContainer,eet as Ruler,J7 as SCENE_MODE,Cnt as Scene,Itt as ScenePopup,bat as ScriptLoader,ytt as Shape,sat as Star,Ftt as TableLayout,Hot as Text,eat as Triangle,cat as ValueHolder,jnt as create,H7 as debug,U7 as error,Sat as license,k4 as polyfill,xat as version,Y7 as warn};console.log("@hatiolab/things-scene@9.0.0-beta.2 is loaded");
44
+ `,this.element)}startDragging(t){t.preventDefault(),t.stopPropagation();let e=t.clientX,r=t.clientY;const{left:n,top:i}=this.bounds,a=this.rootModel.overlay.style.transform.match(/scale\(([^,]+),\s*([^)]+)\)/),s=a?parseFloat(a[1]):1,o=a?parseFloat(a[2]):s,l=t=>{t.preventDefault(),t.stopPropagation();const a=(t.clientX-e)/s,l=(t.clientY-r)/o;this.setState({left:n+a,top:i+l})},h=t=>{t.preventDefault(),t.stopPropagation(),this.element.removeEventListener("mousemove",l),this.element.removeEventListener("mouseup",h),document.removeEventListener("mousemove",l),document.removeEventListener("mouseup",h)};this.element.addEventListener("mousemove",l),this.element.addEventListener("mouseup",h),document.addEventListener("mousemove",l),document.addEventListener("mouseup",h)}toggleMinimizable(){const{minimized:t}=this.state;this.setState("minimized",!t)}onchangeMinimized(){const{minimized:t}=this.state;t?this.setState("height",20):this.setState("height",this.get("height"))}closeContainer(){this.setState("hidden",!0)}}mtt.register("container",yat);const bat=Math.sqrt(3),wat=2;function xat(t,e,r,n,i){var a,s,o,l,h=5+i,c=r.x,u=r.y,d=n.x,p=n.y;if(Math.abs(c-d)>h&&Math.abs(u-p)>h){var f=(p-u)/(d-c),g=u-f*c;if(Math.abs(e-(f*t+g))>h)return!1}return c>d?(s=c,a=d):(s=d,a=c),u>p?(l=u,o=p):(l=p,o=u),!(s+5<t)&&(!(a-5>t)&&(!(l+5<e)&&!(o-5>e)))}function Aat(t,e,r,n=2){for(let i=0;i<r.length-1;i++)if(xat(t,e,r[i],r[i+1],n))return!0;return!1}function _at(t,e,r,n){if("arrow"!=t.slice(-5))return r;var i=Math.atan2(n.y-r.y,n.x-r.x),a=1.5*e;return{x:r.x+Math.cos(i)*a,y:r.y+Math.sin(i)*a}}function kat(t,e,r){var{lineWidth:n=wat,strokeStyle:i="#000000",lineCap:a=!1,alpha:s=1,begin:o="none",end:l="none",beginSize:h="size5",endSize:c="size5"}=r;if(("none"!=o||"none"!=l)&&(n=Number(n)||wat,t.lineCap=a,t.lineWidth=n,t.strokeStyle=i,t.fillStyle=i,t.globalAlpha*=s,"none"!=o&&Sat(t,e[0],e[1],n,o,Eat(h,n)),"none"!=l)){let r=e.length;Sat(t,e[r-1],e[r-2],n,l,Eat(c,n))}}function Sat(t,e,r,n,i,a){var{x:s,y:o}=e,l=Math.atan2(r.y-o,r.x-s);switch(t.beginPath(),t.translate(s,o),t.rotate(l),i){case"oval":t.ellipse(0,0,a.X,a.Y,0,0,2*Math.PI),t.fill();break;case"diamond":t.moveTo(-a.X,0),t.lineTo(0,-a.Y),t.lineTo(a.X,0),t.lineTo(0,a.Y),t.fill();break;case"arrow":t.moveTo(0,0),t.lineTo(bat*a.X,-a.Y),t.lineTo(bat*a.X,a.Y),t.fill();break;case"sharp-arrow":t.moveTo(0,0),t.lineTo(bat*a.X,-a.Y),t.lineTo(-a.X/1.5+bat*a.X,0),t.lineTo(bat*a.X,a.Y),t.fill();break;case"open-arrow":t.moveTo(bat*a.X+n,-a.Y),t.lineTo(n,0),t.lineTo(bat*a.X+n,a.Y),t.stroke()}t.rotate(-l),t.translate(-s,-o),t.closePath()}function Eat(t,e){let r={};switch(e*=1.2,t){case"size1":r.X=e,r.Y=e;break;case"size2":r.X=1.5*e,r.Y=e;break;case"size3":r.X=2*e,r.Y=e;break;case"size4":r.X=e,r.Y=1.5*e;break;case"size5":default:r.X=1.5*e,r.Y=1.5*e;break;case"size6":r.X=2*e,r.Y=1.5*e;break;case"size7":r.X=e,r.Y=2*e;break;case"size8":r.X=1.5*e,r.Y=2*e;break;case"size9":r.X=2*e,r.Y=2*e}return r}const Mat="N",Tat="S",Cat="E",Pat="W";class Iat{constructor({component:t,anchor:e,position:r,self:n}){this.component=t,this._anchorName=e,this._position=r,this.self=n}get position(){const t=this.anchor;if(t){var{position:e}=t;const r=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(r.x,r.y)}return this._position}set position({x:t,y:e}){this._position={x:t,y:e}}get anchor(){return this.component?.findAnchor(this._anchorName)}get direction(){const t=this.component.bounds,e=this.anchor;if(!e)return Cat;const r=e.position;return r.y<=t.top?Mat:r.y>=t.top+t.height?Tat:r.x<=t.left?Pat:Cat}get boundaryPosition(){const t=this.anchor;if(t){var{position:e}=t,r=0,n=0;switch(this.direction){case Tat:n=20;break;case Mat:n=-20;break;case Pat:r=-20;break;default:r=20}e={x:e.x+r,y:e.y+n};const i=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(i.x,i.y)}}}class Rat extends mtt{isLine(){return!0}replaceRefids(t){["from","to"].forEach((e=>{const r=this.get(e);if(r?.component){const n=t.get(r.component)||r.component;this.set(e,{...r,component:n})}}))}get fromEnd(){if(this.parent&&!this._fromEnd){const{component:t,anchor:e,position:r}=this.getState("from")||{};if(!t)return;const n=this.root?.findByRefid(t);if(!n)return;this._fromEnd=new Iat({component:n,fromto:"from",anchor:e,position:r,self:this})}return this._fromEnd}get from(){return this.getState("from")}set from(t){delete this._fromEnd,this.set("from",t)}get toEnd(){if(this.parent&&!this._toEnd){const{component:t,anchor:e,position:r}=this.getState("to")||{};if(!t)return;const n=this.root?.findByRefid(t);if(!n)return;this._toEnd=new Iat({component:n,fromto:"to",anchor:e,position:r,self:this})}return this._toEnd}get to(){return this.getState("to")}set to(t){delete this._toEnd,this.set("to",t)}move({x:t,y:e},r){r&&(this.from={position:this._fromEnd?.position||this.getState("from")?.position||{x:0,y:0}},this.to={position:this._toEnd?.position||this.getState("to")?.position||{x:0,y:0}}),super.move({x:t,y:e},r)}render(t){var{begin:e="none",end:r="none",lineWidth:n,round:i=0}=this.state,a=this.drawPath;kat(t,a,this.state),t.beginPath();var s=_at(e,n,a[0],a[1]),o=_at(r,n,a[a.length-1],a[a.length-2]);a=[s,...a.slice(1,-1),o];var l={x:s.x,y:s.y};t.moveTo(s.x,s.y);for(var h=1;h<a.length;h++){const e=l;l=a[h];const r=a[h+1];if(e.x===l.x&&e.y===l.y)continue;if(!r){t.lineTo(l.x,l.y);break}var c=0!==(p=Math.sqrt((e.x-l.x)*(e.x-l.x)+(e.y-l.y)*(e.y-l.y)))?Math.atan2(e.x-l.x,e.y-l.y):0,u=Math.sin(c)*Math.min(i,p/2)+l.x,d=Math.cos(c)*Math.min(i,p/2)+l.y;const n=i>0||0!==p?{x:u,y:d}:l;var p;c=0!==(p=Math.sqrt((r.x-l.x)*(r.x-l.x)+(r.y-l.y)*(r.y-l.y)))?Math.atan2(r.x-l.x,r.y-l.y):0,u=Math.sin(c)*Math.min(i,p/2)+l.x,d=Math.cos(c)*Math.min(i,p/2)+l.y;const s=i>0||0!==p?{x:u,y:d}:l;t.lineTo(n.x,n.y),i>0&&t.quadraticCurveTo(l.x,l.y,s.x,s.y)}this.drawStroke(t)}contains(t,e){var{lineWidth:r}=this.state;return Aat(t,e,this.drawPath,r)}get resizable(){return!1}get mutable(){return!0}get rotatable(){return!1}get path(){const{from:t,to:e}=this.state;var{x1:r,y1:n,x2:i,y2:a}=this.state;return[this.fromEnd?.position||t?.position||{x:r,y:n},this.toEnd?.position||e?.position||{x:i,y:a}]}set path(t){const[e,r]=t,{from:n,to:i}=this.state;delete this._fromEnd,delete this._toEnd,this.set({from:{...n,position:e},to:{...i,position:r}})}get textBounds(){var t,e,r=this.drawPath,n=0;for(let o=1;o<r.length;o++){var i=r[o-1],a=r[o],s=(i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y);s>n&&(n=Math.ceil(s),t=i,e=a)}var{paddingTop:o,paddingLeft:l,paddingRight:h,paddingBottom:c}=this.state;return c||=0,o||=0,l||=0,h||=0,{left:Math.min(t.x,e.x)+l,top:Math.min(t.y,e.y)+o,width:Math.max(Math.abs(t.x-e.x)-l-h,0),height:Math.max(Math.abs(t.y-e.y)-o-c,0)}}get decorators(){return["decotag"]}}Rat.getTipNeckPos=_at,Rat.containedInPath=Aat,Rat.drawEndTips=kat,mtt.register("line",Rat);const Oat={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"angle",label:"start-angle",name:"startAngle",property:"startAngle"},{type:"angle",label:"end-angle",name:"endAngle",property:"endAngle"}],"value-property":"text"};class Lat extends(Qtt(ytt)){is3dish(){return!0}render(t){var{cx:e,cy:r,rx:n,ry:i,startAngle:a,endAngle:s,anticlockwise:o}=this.state;t.beginPath(),t.ellipse(e,r,Math.abs(n),Math.abs(i),0,a||0,s||2*Math.PI,o),void 0!==a&&void 0!==s&&(t.lineTo(e,r),t.closePath())}get path(){var{cx:t,cy:e,rx:r,ry:n}=this.state;return[{x:t-r,y:e-n},{x:t+r,y:e-n},{x:t+r,y:e+n},{x:t-r,y:e+n}]}set path(t){var e=t[0],r=t[2];this.set({cx:e.x+(r.x-e.x)/2,cy:e.y+(r.y-e.y)/2,rx:(r.x-e.x)/2,ry:(r.y-e.y)/2})}contains(t,e){var{cx:r,cy:n,rx:i,ry:a}=this.state,s=(t-r)/(2*i-.5),o=(e-n)/(2*a-.5);return s*s+o*o<.25}outline(t){return function(t,e){var{cx:r,cy:n,rx:i,ry:a}=t.model,s=2*Math.PI*e,o=r+i*Math.cos(s),l=n+a*Math.sin(s);return t.transcoordS2T(o,l)}(this,t)}get anchors(){return function(t){var{left:e,top:r,width:n,height:i}=t.bounds,a=e+n/2,s=r+i/2;return[{name:"TOP",position:{x:a,y:r}},{name:"RIGHT",position:{x:e+n,y:s}},{name:"BOTTOM",position:{x:a,y:r+i}},{name:"LEFT",position:{x:e,y:s}}]}(this)}get nature(){return Oat}}mtt.memoize(Lat.prototype,"path",!1),mtt.register("ellipse",Lat);var Dat={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e+1,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e+1]=t}))},ondragend:function(t,e,r){}};const Fat={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polygon"};class Nat extends ytt{is3dish(){return!0}get mutable(){return!0}get pathExtendable(){return!0}get path(){return this.state.path}set path(t){this.set("path",t)}contains(t,e){var r=this.state.path,n=!1;return r.forEach(((i,a)=>{let s=(a+r.length+1)%r.length,o=i.x,l=i.y,h=r[s].x,c=r[s].y;l>e!=c>e&&t<(h-o)*(e-l)/(c-l)+o&&(n=!n)})),n}get controls(){var t=this.path;return t.map(((e,r)=>{let n=t[r+1>=t.length?0:r+1];return{x:(e.x+n.x)/2,y:(e.y+n.y)/2,handler:Dat}}))}get nature(){return Fat}}mtt.memoize(Nat.prototype,"controls",!1),mtt.register("polygon",Nat);var jat={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e]=t}))},ondragend:function(t,e,r){}};const Bat={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polyline"};class zat extends Rat{get pathExtendable(){return!0}get path(){const{from:t,to:e}=this.state,{path:r}=this.state;return[this.fromEnd?.position||t?.position||r[0],...r.slice(1,-1),this.toEnd?.position||e?.position||r[r.length-1]]}set path(t){const{from:e,to:r}=this.state;delete this._fromEnd,delete this._toEnd,this.set({from:{...e,position:t[0]},to:{...r,position:t[t.length-1]},path:t})}get controls(){var t=this.path,e=[];for(let r=0;r<t.length-1;r++){let n=t[r],i=t[r+1];0==r&&e.push({x:n.x,y:n.y,handler:jat}),e.push({x:(n.x+i.x)/2,y:(n.y+i.y)/2,handler:jat}),r==t.length-2&&e.push({x:i.x,y:i.y,handler:jat})}return e}get nature(){return Bat}}mtt.register("polyline",zat);const Wat={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/ortholine"};class Uat extends Rat{get pathExtendable(){return!1}get drawPath(){const t=this.path[0],e=this.path[1],{component:r,direction:n,boundaryPosition:i=t}=this.fromEnd||{},{component:a,direction:s,boundaryPosition:o=e}=this.toEnd||{};var l=[i,o],h=[];i&&h.push(i);var c=r?.bounds;if(c){var u=r.transcoordS2T(c.left,c.top);u=this.transcoordT2P(u.x,u.y),c={...c,left:u.x,top:u.y}}var d=c?{left:c.left-20,top:c.top-20,width:c.width+40,height:c.height+40}:{left:i.x,top:i.y,width:0,height:0};c=c||d;var p=a?.bounds;if(p){u=a.transcoordS2T(p.left,p.top);u=this.transcoordT2P(u.x,u.y),p={...p,left:u.x,top:u.y}}var f=p?{left:p.left-20,top:p.top-20,width:p.width+40,height:p.height+40}:{left:o.x,top:o.y,width:0,height:0};p=p||f;var g=[d,f];const v=d.left>f.left?f.left:d.left,m=d.top>f.top?f.top:d.top;var y,b,w,x,A,_,k,S,E,M,T={left:v,top:m,width:d.left+d.width>f.left+f.width?d.left+d.width-v:f.left+f.width-v,height:d.top+d.height>f.top+f.height?d.top+d.height-m:f.top+f.height-m},C=0,P=0;c.left+c.width<p.left?(x=0,A=1,E=n,M=s,y=(c.left+c.width+p.left)/2,C=p.left-y):p.left+p.width<c.left&&(x=1,A=0,E=s,M=n,y=(c.left+p.width+p.left)/2,C=c.left-y),c.top+c.height<p.top?(w=0,_=1,k=n,S=s,b=(c.top+c.height+p.top)/2,P=p.top-b):p.top+p.height<c.top&&(w=1,_=0,k=s,S=n,b=(c.top+p.height+p.top)/2,P=c.top-b);var I=[];if(y&&C>P){switch(M){case Pat:switch(E){case Cat:I.push({x:y,y:l[x].y}),I.push({x:y,y:l[A].y});break;case Pat:var R=g[x].top+g[x].height/2>l[A].y?Math.min(g[x].top,l[A].y):Math.max(g[x].top+g[x].height,l[A].y);I.push({x:l[x].x,y:R}),I.push({x:y,y:R}),I.push({x:y,y:l[A].y});break;case Mat:case Tat:R=E===Tat?Math.max(l[x].y,l[A].y):Math.min(l[x].y,l[A].y);I.push({x:l[x].x,y:R}),I.push({x:y,y:R}),I.push({x:y,y:l[A].y});break;default:return this.path}break;case Cat:switch(E){case Cat:var O=R=l[x].y<l[A].y?Math.min(g[A].top,l[x].y):Math.max(g[A].top+g[A].height,l[x].y);break;case Pat:O=R=void 0!==b?b:l[x].y<l[A].y?T.top-.5*C:T.top+T.height+.5*C;break;case Tat:O=R=void 0!==b?Math.max(b,l[x].y):T.top+T.height;break;case Mat:O=R=b?Math.min(b,g[x].top):T.top;break;default:return this.path}I.push({x:l[x].x,y:R}),I.push({x:y,y:R}),I.push({x:y,y:O}),I.push({x:l[A].x,y:O});break;case Tat:switch(E){case Cat:R=l[x].y,O=l[x].y>l[A].y?l[x].y:g[A].top+g[A].height;break;case Pat:O=R=b?Math.max(b,g[A].top+g[A].height):T.top+T.height;break;case Tat:O=R=T.top+T.height;break;case Mat:R=b?Math.min(b,g[x].top):g[x].top,O=b?Math.max(b,g[A].top+g[A].height):g[A].top+g[A].height;break;default:return this.path}I.push({x:l[x].x,y:R}),I.push({x:y,y:R}),I.push({x:y,y:O}),I.push({x:l[A].x,y:O});break;case Mat:switch(E){case Cat:R=l[x].y,O=l[x].y<l[A].y?l[x].y:g[A].top;break;case Pat:O=R=b?Math.min(b,g[A].top):T.top;break;case Tat:R=void 0!==b?Math.max(b,l[x].y):l[x].y,O=void 0!==b?Math.min(b,l[A].y):l[A].y;break;case Mat:O=R=T.top;break;default:return this.path}I.push({x:l[x].x,y:R}),I.push({x:y,y:R}),I.push({x:y,y:O}),I.push({x:l[A].x,y:O});break;default:return this.path}h.push(...0===x?I:I.reverse())}else if(b){switch(S){case Mat:switch(k){case Tat:I.push({x:l[w].x,y:b}),I.push({x:l[_].x,y:b});break;case Mat:var L=g[w].left+g[w].width/2>l[_].x?Math.min(g[w].left,l[_].x):Math.max(g[w].left+g[w].width,l[_].x);I.push({x:L,y:l[w].y}),I.push({x:L,y:b}),I.push({x:l[_].x,y:b});break;case Pat:L=Math.min(l[w].x,l[_].x);I.push({x:L,y:l[w].y}),I.push({x:L,y:b}),I.push({x:l[_].x,y:b});break;case Cat:L=Math.max(l[w].x,l[_].x);I.push({x:L,y:l[w].y}),I.push({x:L,y:b}),I.push({x:l[_].x,y:b});break;default:return this.path}break;case Tat:switch(k){case Pat:var D=L=T.left;break;case Cat:D=L=void 0!==y?Math.max(y,l[w].x):T.left+T.width;break;case Mat:D=L=void 0!==y?y:l[w].x<l[_].x?T.left-.5*P:T.left+T.width+.5*P;break;case Tat:L=l[w].x,D=l[w].x<l[_].x?Math.min(g[_].left,l[w].x):Math.max(g[_].left+g[_].width,l[w].x);break;default:return this.path}I.push({x:L,y:l[w].y}),I.push({x:L,y:b}),I.push({x:D,y:b}),I.push({x:D,y:l[_].y});break;case Cat:switch(k){case Pat:L=void 0!==y?Math.min(y,l[w].x):l[w].x,D=void 0!==y?Math.max(y,l[_].x):l[_].x;break;case Cat:D=L=T.left+T.width;break;case Mat:D=L=void 0!==y?Math.max(y,l[_].x):T.left+T.width;break;case Tat:L=l[w].x,D=Math.max(g[_].left+g[_].width,l[w].x);break;default:return this.path}I.push({x:L,y:l[w].y}),I.push({x:L,y:b}),I.push({x:D,y:b}),I.push({x:D,y:l[_].y});break;case Pat:switch(k){case Pat:D=L=T.left;break;case Cat:L=void 0!==y?Math.max(y,l[w].x):l[w].x,D=void 0!==y?Math.min(y,l[_].x):l[_].x;break;case Mat:D=L=T.left;break;case Tat:L=l[w].x<l[_].x?Math.min(g[_].left,l[w].x):l[w].x,D=Math.min(L,l[_].x);break;default:return this.path}I.push({x:L,y:l[w].y}),I.push({x:L,y:b}),I.push({x:D,y:b}),I.push({x:D,y:l[_].y});break;default:return this.path}h.push(...0===w?I:I.reverse())}else switch(n){case Mat:switch(s){case Mat:var F=T.top;h.push({x:l[0].x,y:F}),h.push({x:l[1].x,y:F});break;case Tat:var N=T.left+T.width;h.push({x:N,y:l[0].y}),h.push({x:N,y:T.top+T.height}),h.push({x:l[1].x,y:T.top+T.height});break;case Cat:N=l[1].y<l[0].y&&l[1].x<l[0].x?l[0].x:T.left+T.width;h.push({x:N,y:l[0].y}),h.push({x:N,y:l[1].y});break;case Pat:N=T.left;h.push({x:N,y:l[0].y}),h.push({x:N,y:l[1].y});break;default:return this.path}break;case Tat:switch(s){case Mat:N=T.left+T.width;h.push({x:N,y:l[0].y}),h.push({x:N,y:T.top}),h.push({x:l[1].x,y:T.top});break;case Tat:F=T.top+T.height;h.push({x:l[0].x,y:F}),h.push({x:l[1].x,y:F});break;case Cat:F=T.top+T.height;h.push({x:l[0].x,y:F}),h.push({x:l[1].x,y:F});break;case Pat:F=T.top+T.height;h.push({x:l[0].x,y:F}),h.push({x:l[1].x,y:F});break;default:return this.path}break;case Pat:switch(s){case Mat:N=l[0].x>l[1].x&&l[0].y<l[1].y?l[1].x:T.left,F=l[0].x>l[1].x&&l[0].y<l[1].y?l[1].y:Math.min(T.top,l[0].y);h.push({x:N,y:l[0].y}),h.push({x:N,y:F}),h.push({x:l[1].x,y:F});break;case Tat:N=T.left,F=Math.max(T.top+T.height,l[0].y);h.push({x:N,y:l[0].y}),h.push({x:N,y:F}),h.push({x:l[1].x,y:F});break;case Cat:N=T.left+T.width;h.push({x:l[0].x,y:T.top}),h.push({x:N,y:T.top}),h.push({x:N,y:l[1].y});break;case Pat:N=T.left;h.push({x:N,y:l[0].y}),h.push({x:N,y:l[1].y});break;default:return this.path}break;case Cat:switch(s){case Mat:F=l[0].y<l[1].y&&l[0].x<l[1].x?l[0].y:T.top;h.push({x:l[0].x,y:F}),h.push({x:l[1].x,y:F});break;case Tat:F=l[0].y>l[1].y&&l[0].x<l[1].x?l[0].y:T.top+T.height;h.push({x:l[0].x,y:F}),h.push({x:l[1].x,y:F});break;case Cat:F=T.top+T.height;h.push({x:l[0].x,y:F}),h.push({x:l[1].x,y:F});break;case Pat:F=T.top+T.height;h.push({x:l[0].x,y:F}),h.push({x:l[1].x,y:F});break;default:return this.path}break;default:return this.path}return o&&h.push(o),[t,...h,e].filter(((t,e,r)=>{if(0===e)return!0;const n=r[e-1];return t.x!==n.x||t.y!==n.y})).filter(((t,e,r)=>{if(0===e||e>=r.length-1)return!0;const n=r[e-1],i=r[e+1];return!(t.x===n.x&&t.x===i.x||t.y===n.y&&t.y===i.y)}))}get nature(){return Wat}}mtt.register("ortholine",Uat);const Hat={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"image-src",name:"src",property:{displayField:"id",displayFullUrl:!0,baseUrlAlias:"$base_url",defaultStorage:"scene-image",storageFilters:{type:Array,value:[{name:"category",value:"image"}]},useUpload:!0}},{type:"select",label:"cross-origin",name:"crossOrigin",property:{options:["","anonymous","use-credentials"]}}],"value-property":"src",help:"scene/component/image-view"};class Gat extends(wtt(ytt)){static get noimage(){return Gat.NOIMAGE||(Gat.NOIMAGE=new Image,Gat.NOIMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABIBAMAAAD7Se1QAAAAIVBMVEUAAABHcEwBAQEREREBAQEEBAQGBgYLCwsDAwMDAwMICAi6HF9tAAAAC3RSTlNNAEAERiMYCS41Eac10lYAAAEgSURBVHhe7dY9asQwEAXgh7DNertNiJy48pIitY3SB7bYdk0ukL1BDDmA9gZecoH4pmFQ3MQayUMguPBrNPD4wD9TCMvJmt3M/AtYwXOlXiWgqADVCUBD46MAnGhMBaCiUQmAm8VA/Eh/eWl9Fn5WcxD+OLuRrUYJDKLluwH2InACUgkoACSdADxQc50Bytadb9RkM0CT13TcvlCT1HFg8UTHvasuUVACCa3El6u2UdD8LFTlKhUFFgA+d3dj10aABkUN72N3jAADCrJq7PIIsPidcxBoTHIIAjMFmyCwmGYIAA1P9gFgfCANAOsDSccCDW+uLDB+kLGg94OkZoAGkwsDDAe2DOg5oPxAg03rBR88OHpBz4N8UVeHFSwma74BTW6Ge4rIRa4AAAAASUVORK5CYII="),Gat.NOIMAGE}dispose(){super.dispose(),this._offcanvas=null,this._image=null}render(t){var{left:e,top:r,width:n,height:i,isGray:a=!1,alpha:s=1,src:o}=this.state;if(this.prepareIf(!this._image&&o),t.beginPath(),t.globalAlpha*=s,this._image&&this._image.complete)if(a&&this._offcanvas)t.drawImage(this._offcanvas,e,r,n,i);else try{t.drawImage(this._image,e,r,n,i)}catch(a){t.drawImage(Gat.noimage,e,r,n,i)}else!this.app.isViewMode&&t.drawImage(Gat.noimage,e,r,n,i)}get nature(){return Hat}get hasTextProperty(){return!1}ready(){super.ready(),this.prepareIf(!this._image&&this.state.src)}prepare(t,e){var{src:r,crossOrigin:n}=this.state;if(r){this._image=new Image;try{n&&(this._image.crossOrigin=n),this._image.src=this.app.url(r)||""}catch(t){return void e(t)}this._image.onload=()=>{if(this.get("isGray")){let t=this._image.width,e=this._image.height;this._offcanvas=mtt.createCanvas(t,e);let r=this._offcanvas.getContext("2d");r.drawImage(this._image,0,0);let n=function(t,e,r){try{var n=t.getImageData(0,0,e,r)}catch(t){return U7("Get Image Data Error: "+t.message),null}var i=n.data;for(let t=0;t<e*r*4;t+=4){let e=i[t],r=i[t+1],a=i[t+2],s=parseInt((e+r+a)/3);n.data[t]=s,n.data[t+1]=s,n.data[t+2]=s}return n}(r,t,e);r.putImageData(n,0,0)}t(this)},this._image.onerror=t=>{this._image&&!this._image.currentSrc&&(this._image=null),e(t)}}else t(this)}get src(){return this.get("src")}set src(t){this.set("src",t)}onchange(t,e){(t.hasOwnProperty("src")||t.hasOwnProperty("isGray"))&&(this._offcanvas=null,this._image=null,this.prepareIf(t.src))}ondropfile(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void(this.src=e[r])}}mtt.register("image-view",Gat);class Yat extends(fat(wtt(mtt))){is3dish(){return!0}prerender(){}}var Vat={},qat={},Xat={};Object.defineProperty(Xat,"__esModule",{value:!0});var $at=function(){function t(){}return t.bitsToNum=function(t){return t.reduce((function(t,e){return 2*t+e}),0)},t.byteToBitArr=function(t){for(var e=[],r=7;r>=0;r--)e.push(!!(t&1<<r));return e},t.lzwDecode=function(t,e){for(var r,n,i=0,a=function(t){for(var r=0,n=0;n<t;n++)e.charCodeAt(i>>3)&1<<(7&i)&&(r|=1<<n),i++;return r},s=[],o=1<<t,l=o+1,h=t+1,c=[],u=function(){c=[],h=t+1;for(var e=0;e<o;e++)c[e]=[e];c[o]=[],c[l]=null};;)if(n=r,(r=a(h))!==o){if(r===l)break;if(r<c.length)n!==o&&c.push(c[n].concat(c[r][0]));else{if(r!==c.length)throw new Error("Invalid LZW code.");c.push(c[n].concat(c[n][0]))}s.push.apply(s,c[r]),c.length===1<<h&&h<12&&h++}else u();return s},t}();Xat.SuperGifUtils=$at,Object.defineProperty(qat,"__esModule",{value:!0});var Kat=Xat,Qat=function(){function t(t,e){this.stream=t,this.handler=e}return t.prototype.parseCT=function(t){for(var e=[],r=0;r<t;r++)e.push(this.stream.readBytes(3));return e},t.prototype.readSubBlocks=function(){var t,e;e="";do{t=this.stream.readByte(),e+=this.stream.read(t)}while(0!==t);return e},t.prototype.parseHeader=function(){var t={};if(t.sig=this.stream.read(3),t.ver=this.stream.read(3),"GIF"!==t.sig)throw new Error("Not a GIF file.");t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=Kat.SuperGifUtils.byteToBitArr(this.stream.readByte());t.gctFlag=e.shift(),t.colorRes=Kat.SuperGifUtils.bitsToNum(e.splice(0,3)),t.sorted=e.shift(),t.gctSize=Kat.SuperGifUtils.bitsToNum(e.splice(0,3)),t.bgColor=this.stream.readByte(),t.pixelAspectRatio=this.stream.readByte(),t.gctFlag&&(t.gct=this.parseCT(1<<t.gctSize+1)),this.handler.hdr&&this.handler.hdr(t)},t.prototype.parseExt=function(t){var e=this;switch(t.label=this.stream.readByte(),t.label){case 249:t.extType="gce",function(t){e.stream.readByte();var r=Kat.SuperGifUtils.byteToBitArr(e.stream.readByte());t.reserved=r.splice(0,3),t.disposalMethod=Kat.SuperGifUtils.bitsToNum(r.splice(0,3)),t.userInput=r.shift(),t.transparencyGiven=r.shift(),t.delayTime=e.stream.readUnsigned(),t.transparencyIndex=e.stream.readByte(),t.terminator=e.stream.readByte(),e.handler.gce&&e.handler.gce(t)}(t);break;case 254:t.extType="com",function(t){t.comment=e.readSubBlocks(),e.handler.com&&e.handler.com(t)}(t);break;case 1:t.extType="pte",function(t){e.stream.readByte(),t.ptHeader=e.stream.readBytes(12),t.ptData=e.readSubBlocks(),e.handler.pte&&e.handler.pte(t)}(t);break;case 255:t.extType="app",function(t){e.stream.readByte(),t.identifier=e.stream.read(8),t.authCode=e.stream.read(3),"NETSCAPE"===t.identifier?function(t){e.stream.readByte(),t.unknown=e.stream.readByte(),t.iterations=e.stream.readUnsigned(),t.terminator=e.stream.readByte(),e.handler.app&&e.handler.app.NETSCAPE&&e.handler.app.NETSCAPE(t)}(t):function(t){t.appData=e.readSubBlocks(),e.handler.app&&e.handler.app[t.identifier]&&e.handler.app[t.identifier](t)}(t)}(t);break;default:t.extType="unknown",function(t){t.data=e.readSubBlocks(),e.handler.unknown&&e.handler.unknown(t)}(t)}},t.prototype.parseImg=function(t){t.leftPos=this.stream.readUnsigned(),t.topPos=this.stream.readUnsigned(),t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=Kat.SuperGifUtils.byteToBitArr(this.stream.readByte());t.lctFlag=e.shift(),t.interlaced=e.shift(),t.sorted=e.shift(),t.reserved=e.splice(0,2),t.lctSize=Kat.SuperGifUtils.bitsToNum(e.splice(0,3)),t.lctFlag&&(t.lct=this.parseCT(1<<t.lctSize+1)),t.lzwMinCodeSize=this.stream.readByte();var r=this.readSubBlocks();t.pixels=Kat.SuperGifUtils.lzwDecode(t.lzwMinCodeSize,r),t.interlaced&&(t.pixels=function(t,e){for(var r=new Array(t.length),n=t.length/e,i=function(n,i){var a=t.slice(i*e,(i+1)*e);r.splice.apply(r,[n*e,e].concat(a))},a=[0,4,2,1],s=[8,8,4,2],o=0,l=0;l<4;l++)for(var h=a[l];h<n;h+=s[l])i(h,o),o++;return r}(t.pixels,t.width)),this.handler.img&&this.handler.img(t)},t.prototype.parseBlock=function(){var t={};switch(t.sentinel=this.stream.readByte(),String.fromCharCode(t.sentinel)){case"!":t.type="ext",this.parseExt(t);break;case",":t.type="img",this.parseImg(t);break;case";":t.type="eof",this.handler.eof&&this.handler.eof(t);break;default:throw new Error("Unknown block: 0x"+t.sentinel.toString(16))}"eof"!==t.type&&setTimeout(this.parseBlock.bind(this),0)},t.prototype.parse=function(){this.parseHeader(),setTimeout(this.parseBlock.bind(this),0)},t}();qat.SuperGifParser=Qat;var Jat={};Object.defineProperty(Jat,"__esModule",{value:!0});var Zat=function(){function t(t){this.data=t,this.position=0}return t.prototype.readByte=function(){if(this.position>=this.data.length)throw new Error("Attempted to read past end of stream.");return this.data instanceof Uint8Array?this.data[this.position++]:255&this.data.charCodeAt(this.position++)},t.prototype.readBytes=function(t){for(var e=[],r=0;r<t;r++)e.push(this.readByte());return e},t.prototype.read=function(t){for(var e="",r=0;r<t;r++)e+=String.fromCharCode(this.readByte());return e},t.prototype.readUnsigned=function(){var t=this.readBytes(2);return(t[1]<<8)+t[0]},t}();Jat.SuperGifStream=Zat,Object.defineProperty(Vat,"__esModule",{value:!0});var tst=qat,est=Jat,rst=function(){function t(t,e){var r=this;for(var n in this.gifImgElement=t,this.options={autoPlay:!0},this.loading=!1,this.ready=!1,this.transparency=null,this.delay=null,this.disposalMethod=null,this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,this.playing=!0,this.forward=!0,this.ctxScaled=!1,this.frames=[],this.frameOffsets=[],this.initialized=!1,this.currentFrameIndex=-1,this.iterationCount=0,this.stepping=!1,this.handler={hdr:this.withProgress(this.doHdr.bind(this)),gce:this.withProgress(this.doGCE.bind(this)),com:this.withProgress(this.doNothing.bind(this)),app:{NETSCAPE:this.withProgress(this.doNothing.bind(this))},img:this.withProgress(this.doImg.bind(this)),eof:function(){r.pushFrame(),r.canvas.width=r.hdr.width*r.getCanvasScale(),r.canvas.height=r.hdr.height*r.getCanvasScale(),r.playerInit(),r.loading=!1,r.ready=!0,r.loadCallback&&r.loadCallback(r.gifImgElement)}},e)this.options[n]=e[n];this.onEndListener=e.onEnd,this.loopDelay=e.loopDelay||0,this.overrideLoopMode=null!=e.loopMode?e.loopMode:"auto",this.drawWhileLoading=null==e.drawWhileLoading||e.drawWhileLoading}return t.prototype.init=function(){var t=this.gifImgElement.parentNode,e=document.createElement("div");this.canvas=document.createElement("canvas"),this.canvasContext=this.canvas.getContext("2d"),this.tmpCanvas=document.createElement("canvas"),e.className=this.options.enclosingClass||"super-gif",e.appendChild(this.canvas),t&&(t.insertBefore(e,this.gifImgElement),t.removeChild(this.gifImgElement)),this.initialized=!0},t.prototype.loadSetup=function(t){return!this.loading&&(t&&(this.loadCallback=t),this.loading=!0,this.frames=[],this.clear(),this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,!0)},t.prototype.completeLoop=function(){this.onEndListener&&this.onEndListener(this.gifImgElement),this.iterationCount++,!1!==this.overrideLoopMode||this.iterationCount<0?this.doStep():(this.stepping=!1,this.playing=!1)},t.prototype.doStep=function(){if(this.stepping=this.playing,this.stepping){this.stepFrame(1);var t=10*this.frames[this.currentFrameIndex].delay;t||(t=100),0===this.getNextFrameNo()?(t+=this.loopDelay,setTimeout(this.completeLoop.bind(this),t)):setTimeout(this.doStep.bind(this),t)}},t.prototype.step=function(){this.stepping||setTimeout(this.doStep.bind(this),0)},t.prototype.putFrame=function(){var t;this.currentFrameIndex=parseInt(this.currentFrameIndex.toString(),10),this.currentFrameIndex>this.frames.length-1&&(this.currentFrameIndex=0),this.currentFrameIndex<0&&(this.currentFrameIndex=0),t=this.frameOffsets[this.currentFrameIndex],this.tmpCanvas.getContext("2d").putImageData(this.frames[this.currentFrameIndex].data,t.x,t.y),this.canvasContext.globalCompositeOperation="copy",this.canvasContext.drawImage(this.tmpCanvas,0,0)},t.prototype.playerInit=function(){this.loadErrorCause||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.options.autoPlay?this.step():(this.currentFrameIndex=0,this.putFrame()))},t.prototype.clear=function(){this.transparency=null,this.delay=null,this.lastDisposalMethod=this.disposalMethod,this.disposalMethod=null,this.frame=null},t.prototype.parseStream=function(t){try{new tst.SuperGifParser(t,this.handler).parse()}catch(t){this.handleError("parse")}},t.prototype.setSizes=function(t,e){this.canvas.width=t*this.getCanvasScale(),this.canvas.height=e*this.getCanvasScale(),this.tmpCanvas.width=t,this.tmpCanvas.height=e,this.tmpCanvas.style.width=t+"px",this.tmpCanvas.style.height=e+"px",this.tmpCanvas.getContext("2d").setTransform(1,0,0,1,0,0)},t.prototype.drawError=function(){this.canvasContext.fillStyle="black",this.canvasContext.fillRect(0,0,this.hdr.width,this.hdr.height),this.canvasContext.strokeStyle="red",this.canvasContext.lineWidth=3,this.canvasContext.moveTo(0,0),this.canvasContext.lineTo(this.hdr.width,this.hdr.height),this.canvasContext.moveTo(0,this.hdr.height),this.canvasContext.lineTo(this.hdr.width,0),this.canvasContext.stroke()},t.prototype.handleError=function(t){this.loadErrorCause=t,this.hdr={width:this.gifImgElement.width,height:this.gifImgElement.height},this.frames=[],this.drawError()},t.prototype.doHdr=function(t){this.hdr=t,this.setSizes(this.hdr.width,this.hdr.height)},t.prototype.doGCE=function(t){this.pushFrame(),this.clear(),this.transparency=t.transparencyGiven?t.transparencyIndex:null,this.delay=t.delayTime,this.disposalMethod=t.disposalMethod},t.prototype.pushFrame=function(){this.frame&&(this.frames.push({data:this.frame.getImageData(0,0,this.hdr.width,this.hdr.height),delay:this.delay}),this.frameOffsets.push({x:0,y:0}))},t.prototype.doImg=function(t){var e=this;this.frame||(this.frame=this.tmpCanvas.getContext("2d"));var r=this.frames.length,n=t.lctFlag?t.lct:this.hdr.gct;r>0&&(3===this.lastDisposalMethod?null!==this.disposalRestoreFromIdx?this.frame.putImageData(frames[this.disposalRestoreFromIdx].data,0,0):this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height):this.disposalRestoreFromIdx=r-1,2===this.lastDisposalMethod&&this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height));var i=this.frame.getImageData(t.leftPos,t.topPos,t.width,t.height);t.pixels.forEach((function(t,r){t!==e.transparency&&(i.data[4*r+0]=n[t][0],i.data[4*r+1]=n[t][1],i.data[4*r+2]=n[t][2],i.data[4*r+3]=255)})),this.frame.putImageData(i,t.leftPos,t.topPos),this.ctxScaled||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.ctxScaled=!0),this.drawWhileLoading&&(this.canvasContext.drawImage(this.tmpCanvas,0,0),this.drawWhileLoading=this.options.autoPlay),this.lastImg=t},t.prototype.doNothing=function(){},t.prototype.withProgress=function(t){return function(e){t(e)}},t.prototype.getNextFrameNo=function(){var t=this.forward?1:-1;return(this.currentFrameIndex+t+this.frames.length)%this.frames.length},t.prototype.stepFrame=function(t){this.currentFrameIndex=this.currentFrameIndex+t,this.putFrame()},t.prototype.getCanvasScale=function(){return this.options.maxWidth&&this.hdr&&this.hdr.width>this.options.maxWidth?this.options.maxWidth/this.hdr.width:window.devicePixelRatio||1},t.prototype.play=function(){this.playing=!0,this.step()},t.prototype.pause=function(){this.playing=!1},t.prototype.isPlaying=function(){return this.playing},t.prototype.getCanvas=function(){return this.canvas},t.prototype.isLoading=function(){return this.loading},t.prototype.isReady=function(){return this.ready},t.prototype.isAutoPlay=function(){return this.options.autoPlay},t.prototype.getLength=function(){return this.frames.length},t.prototype.getCurrentFrame=function(){return this.currentFrameIndex},t.prototype.moveTo=function(t){this.currentFrameIndex=t,this.putFrame()},t.prototype.loadURL=function(t,e){var r=this;if(this.loadSetup(e)){var n=new XMLHttpRequest;n.open("GET",t,!0),"overrideMimeType"in n?n.overrideMimeType("text/plain; charset=x-user-defined"):"responseType"in n?n.responseType="arraybuffer":n.setRequestHeader("Accept-Charset","x-user-defined"),n.onloadstart=function(){r.initialized||r.init()},n.onload=function(){if(200===n.status){var t=n.response;t.toString().indexOf("ArrayBuffer")>0&&(t=new Uint8Array(t));var e=new est.SuperGifStream(t);setTimeout((function(){r.parseStream(e)}),0)}else r.handleError("xhr - response")},n.onerror=function(){r.handleError("xhr")},n.send()}},t.prototype.load=function(t){this.loadURL(this.gifImgElement.src,t)},t}(),nst=Vat.SuperGif=rst;const ist={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"src",name:"src"},{type:"checkbox",label:"play",name:"play"}],"value-property":"src",help:"scene/component/gif-view"};class ast extends Yat{async oncreate_element(t){var{src:e,play:r}=this.state;this.onchangesrc(e),this.onchangeplay(r)}buildImg(){var t=this.element;t.innerHTML="";var e=document.createElement("img");return e.style.width="100%",e.style.height="100%",t.appendChild(e),e}onchange(t,e){super.onchange(t,e),"src"in t&&this.onchangesrc(t.src),"play"in t&&this.onchangeplay(t.play)}setElementProperties(t){}onchangeplay(t){var e=this._superGif;e&&e.isReady()&&(t?e.play():e.pause())}onchangesrc(t){var e=this.buildImg();t||(t="data:image/gif;base64,R0lGODlhYABIAPcAAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKio+Pj5iYmKCgoKampqurq66urrCwsLGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrOzs7S0tLa2tre3t7m5ubu7u7+/v8DAwMHBwcPDw8XFxcfHx8vLy8/Pz9LS0tXV1dfX193d3eTk5Onp6fj4+Pz8/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////////////yH5BAkAAPUAIf47R2VuZXJhdGVkIGJ5IGpzZ2lmIChodHRwczovL2dpdGh1Yi5jb20vYW50aW1hdHRlcjE1L2pzZ2lmLykALAAAAABgAEgAAAj+AGcJHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDNq3Mixo8ePIEOKHEmypMmR9VKqXMmypcuXMGPKnJkSIs2bOHPqZGlzp8+fQOv1DEq0KMyhRpMmRaq0KVCmTqPmhCq1qkyqLrFRSyYwGTVsVo1iZXmNa8Fk18ISHasSm1mDycCq/ck2JTWF1ObSfTjz7cFken3WFbow8M7BDA3rHOwXruKpfGXeTZg3qDVrUge7RRg3KLZjx+Q2HVyvLNy0QaMJjBaVdD2tZr2K/mmNIObRkR+n9AsYt0Pddg1WXppb8bWDx1CLLW74GcJnSl3TtDY8Zu2Et4tKl7n52eyWnxXvhl7+26jqrspbnlfIWjtz2gWPZV95neH8veU9NxZYfbfD3kFt99J6Bnmn0mQO9XfYezrVxxlmx0GUXIAM4hSeffsxBN1TFd5E4Ef3QZbfTg6CNJ5gHXJ3TEntLThiTh+KFCJNAqZU4kgAitjQTheepOBMNcZI0oQ6JpbTjSZtiNN2PZ400IxHpdiSc07G911M0iFZZYtAStnWilUeBGVLrlEZpmM0elmPlmfO8iOZXl4DZpsGEYmll2bSWWCXLwJXVY1+urhjoGEBSuiSah6K36CKtpZoo4s9CimielZq6aWYZqrpppx26umnoIZ6UkAAOw=="),e.src=t,e.setAttribute("rel:animated_src",t),e.setAttribute("rel:auto_play",0),this._superGif=new nst(e,{autoPlay:!1}),this._superGif.init();for(const t of this.element.children)t.style.width="100%",t.style.height="100%";var r=this._superGif.getCanvas();r.style.width="100%",r.style.height="100%",this._superGif.load((()=>{setTimeout((()=>{this._superGif.moveTo(0),this.play&&this._superGif.play()}),100)}))}ondropfile(t,e){for(let r=0;r<t.length;r++)if(/\.gif$/.test(t[r].name))return void(this.src=e[r])}get src(){return this.getState("src")}set src(t){this.set("src",t)}get play(){return this.getState("play")}set play(t){this.setState("play",t)}get nature(){return ist}get tagName(){return"div"}}mtt.register("gif-view",ast);const sst={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"attachment-selector",label:"src",name:"src",property:{category:"audio"}},{type:"checkbox",label:"started",name:"started"},{type:"checkbox",label:"loop",name:"loop"}],"value-property":"src",help:"scene/component/audio"};class ost extends(wtt(ytt)){static get image(){return ost.IMAGE||(ost.IMAGE=new Image,ost.IMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAMAAAC3Ycb+AAAAP1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACzJYIvAAAAFHRSTlMA8BAwgNBgQKB/wCBwUJDg37CvXyUlBK8AABFYSURBVHja7NsBkqIwFIThTiAQgyBq3/+sm6p1tnamZkaTMhJJf1f4S/JeEIiIiIiIiIiIiIiIiEhD7Hg4BH84TpAKjJ4f3NFCtjVd+InXz2RTs+FXlxGylYHfcVfIJmb+YFWSLUyGVJKKBJJKUo+Rd6w63l/qzLuCkryO5fe0l2xk5mMWbe+v0fNBRqf7S3je6CipQ2ACr+dWcYEpzBFS1plpguatsnomMgdIQSOTuQ5SjmE6/UgK8szgdJIUM/FG41YlFmYJ2kkKsY5ZzAwBurHDk3WGeRY0bvYrGa1+rqNI22f7dS32ZnUK1GMr0eSK3mEc9dhKMxp+ZTo8kT2emOXS5LQ1kCxbJBocSd2k5PaIjMVzjWcdJPk9ooBnmzx1t5XbIxqBKpJ4NGTgzwKiGpK4do72gb+ZUMIYtCPm9WCPMsYTE5k2hq2ZvzujlCE1iRmwf3dvmRyKsT0T7b9I7HEPCpqCiqT2IIqaT1pI0noQZdlFC8l/PbYPAnRORT56VBEE6FXkb49agmByKhJ71BME6FsvEntUFQTdqekisUdlQWCXhovEHtUFAWbTapHYo8YgmFybO3vsUWcQYGmxSOxRbRAMprkisUfFQVKmrX18sxt7VB0ENjT1xir2qDxIwkFi3v89e+xRfxAMzfzzIfZ4hyAYDR9zwVuLPd4jCDrTwoLYGb5LEFi3/+E3rweR6urX20c/Fvls2Pvwm9mDSGIPhv8YPyGf3/eo9Ye7O8B2FIShAAooakEttex/rbODad5/yTHIAjqn505IQPv+Xz06dz+4VXORHEZcgAcB8updM8F6e25jBzwIkE07l+x8amMnPDp6nsNJ+BoZ7Q6F8egqAda9VEuRNlZjBzwYkMskdXR73okd8GBAJiKYjBcZKKqG9OiKDbgdfxJ5VhsBPDiQZhaouD3p4hfw4EAmwxisz3MSHwAPEmQ1TB1N+SmXWoAHC7JbZsWl/IxLLcCDBplNo3lrfMLsmwAPGmShAxX5/1vOEzjEz3iyfQ/hI36W4TctsUesOAifPdrQg8M++KYl95iCBkjI1r8634betBAPHZDTPFAmD3zLiHgogVTziMsahz0eIh5aIGHGRSJ2mFtHPR4iHhQIP2UvWGMf8wk74qEIEib7rLjPiBfxiAcCwp8V+Nae3uMdRhAPDIR/J5f/Q2DTcC+hIB7qIGEq3Ti9bx+sryMeAAgS70OK8G2kBD8L8QBAoLWU3g3vUVIc6D0txAMAsY+4jBWowXHO64gHBGKfYJ2T5qY1BxcL98BB+PQ+XiS9xxh9EQ8ChA6C5UXWIUoE9MBB8LVHQoS7ib8/dRn3sAcJ6bQRSdH96RDxIEH4QEX+AHF4LxHEAwUh12xyr1V8lwjiQYDYF8kuf1jluUQQDwrEvkhW8Wc6LhHUgwfhi4QPlHm7LRHawx4kpE191Dq8lgjhAYDQa1cftYrPEiE8OJDb40uqyzdQCA8WhAzL4G/PT4c3WrgHD2IfllGl53V37zsgHg5ApPNvVvq4Fn4spx4oiH1W3CwtEV+PDhEPJyBSkVX4aa7emkM83ICEKWpGM7wdvYCCeDgCEYpcwhLxczhEPFyBCEUWnRL5T6X59SBASBF+9l28TL5F7uEORCZyCUvEx+S7yT0cgoRVb9JaXLR1qUdfgksQ0fTbgmhFB20d8HAKEha14+F8f1sHPNyCiL6EqK+n20/rgIdjkFC0Ho1s6Gndvcc9ICkr/ey8/rHO6vp9KawL8DAFOV6l9Fyub7IbflsCag1qRfVsXWvxHjxIejU+BHZV6uvHD1XiEb++Bw8i+dNd+Wv0eCQmhcPhRPwUUt2DB5G1sfa1aeyzAuyJj9x2HjyIdKzIKw5SI14ieFtvo3kIQERj3lVhkUOnRD7AnjV5369QkAOJZeCH+Jh41xOLs73dQwAifY6dpxCCbjTDzLf1Bm1Y93tAIDOWXcLPvrHyr2hVoEAceEAgDQzB4jetk0/c2OXRHB48EJCpa4dgpYh2ETxtrshz7zx4ICCzfuTSDn8p/EOS9OTjwgMB+cABP3yWYuOPIofs33LigYCULlpZNXJppVU30Vf14kGAUCLijf1D71lN9FW9eFiA9KgZ8FPpPUsSnufGA+8hvAg2Kpz0nrX//qp+PIgpC3i6xJRITOye9fn1VT15ICCrVlQG5rywo0H8x965bVkNwmCYQ2kR6Gmb939WXV65dFnI/tPdjPBfO7XMN4EkTUJtqZp4sCJ1+8jwkhMu0KpMxFXFA8hlVfQSMxGH5mDK1VKV8QCyvTVtUiYyo7V358VStfGoAEFMhGYhEwloxZy9WKo2Hjwg5iSOvFDXeUYd33+PuVfHgwnEBWLocDJp+IIa2fyvperjwQRiXCKGosyXqoA+YfsIELuYu4HAt+msMknfDK4jfQJIzOZ2IPAQWJtFOhQKivR2IDZ6Awis7V0iLxqBI7uEZo19dakTogLSwKvf8yk8Jq6CGK0GKvWlatG7b7kkUU/Lo1gdXWn7/4E0j0qeJDpqN/ABqQcgJgdqURb4chjQktIugDS6wFFiz3JgaJj7AGJmholAe9YKhoZLJ0Ca6smjwJ4VwVN96gVIE5GM71kHaGKxGyAtRDaB2NBhLVmpHyANRKzDO28W7FS3HQFpaIWa8TrfCXQwegJSL5k+8M9UJ+pm9QTEnCIZrR0MDQeQ9ua0iCcYQaBTV0CqNXQW/yiyYG7W1heQanPaCkciBXuH1BkQJzHcDQxmpgGkPatl4WkbCXO/bW9AqlNg4H0PPMi6A1IxkQmOZ8D0ousNSMVEEuyreTAQ6Q7IRJeCX2YZQHhv6SrBOmpkM+YUzN0BqSRQCupmTeCP9wdkhiOREwtEzgGEsWcF9BhK9R8fQDiN7A8DiR0CKXQlj/q9IM8OgXjIzcKBlAHkD6FulgNzJwPIHwpo8mQAkX3LiPq9dKUMAQk9AqmcqmjuBAJCPQIpA4guIAsKJA0gnwNy3A4kDyBIHCEPxAwgf8gPILqA5AFEF5CxZX0lIHYc6rqADLf380BmFMgxgIzUyf8MJKLTRelKHgKy9wgkjfS7LiA0gKgC8vQn3HUA4RQ5LKPIAQciWbqIEg0YkLNDIHYUyqkCsmKN5vg3+W0AYTRATaPY+uu1IwS6UMGAlO6AFPjSCQMStaNh53cdcPG7Hx1Uupo+rx+Bltn1BuTAj5BptEV/bHAAwbnJMICwRmtUDOSEA8s4Rmtw3nITGD6TwUNoG0Ca7xi2YKSPj2eKXQFxQWKA2QbGMWEMMGseOb7C7T47uJS1JyAzVbTjqZdU3zbHzMXWS+qp4Fgn8Ahy/QCRGqQcwU1vGnN7fylboWn8Bzg//hyjxltvdcl45bwFfYKzFyBy11UU9BnjuoqfWizVlQXulpzBTNbaB5Aid+VRrkBFB630AMS9BC8FK2ggE7u/FGy1kvfcB9TKQufX5uUXNWl3EjvWCi4k/u9A3Ddq1CpTIQGe6VN1qd8ArcvDQNw3S41Kn6qQmOq5e7pRr+8fAYLiIJtFrrvYRMYL0q06vj8EZLXUriJzRY8H1xEagOCK7gkghRg6RQYO0I6aWPwIEAru80AiMWSdzAeuDXUKyr+WqpAID8hMHC1Ct8F4mUsQ6W8pJMICki0JHCBczAFdBl38G3VE6ErQhhWlih4LWrCSLpaqjggHiGe9mVjRY0YPoelyqcqIcIDEe97rqJFFH7FcLlUZEQ6Qg5plvZiBFNhtri1VFREGEC/Eg4nZoU5vqi1VFREGkIXDQ8xAIhzoT/WlKiLCAFIYPOQMxOPdjfWlKiLCADJRm3YGj+pDE2xktmmpaogwgMz8d8GrumZ4xzpbvinqISJ+hiTWm7wEqoJdI9JEV9JChAEkS3xCZzKecLcgN6YwlRBhAGmweTsblg6qKMM7Vmh321UQ4QAp1VfwhqVJIh+Wm03W0qV0EOEAybXtivkCmWrKeH2EZ/xBaSBCV2L9Re+LYSqJJIxDu1ew07U0EGEBcTtmHty4JuPtQhvLh1BAhK7Uvvq0GK484QZST0GvvFDqeSJ1IA0r2mfDljvqBoJ//rVsq7yZCA6kXgVkJ2f4ijIGMjOfMVsCBBORB2Jy+sM6ijNvaBUqmw/cStZ8EiKciHwp6Rp++88qmxXQeTUxDiJWJ9wSISvBicgXW+dypn1PqWTznlwgwdZdfiLHr5OELEAEASKvJFRE5JCPKbh8OxHdQKJU0crEzRXrJ/IEkFms6tGyrUw9kQeALFRXvK2iSzsRAAi6BLxM+60xdsqJAEBuXMAMxDLVp+gmAgC57/UT4qvVj3TVRCAgSAYL91aXtyNLzUQAIFhAiP8m0/NHOp+ILiBtPFKrs6bgSOcT0QTEB8nO3QR1yKslggKRf+m11UB0HOl8IlqAeCvauXuo8HnfIqIDyCw6G8XMcGiplMingMzCnbuHFp/3LSLPA4nUpqm5YkWNzwsQeQxIDsKjH5wVSU5qJPIJIIt4jjpqNBAekQeBfJOeHWS81FQoo4/I7UDcS3wUh0liTzLqiEgDqddx4ZHDrNZAACIAEMw88HPYWb0GAhABgEDmgf9Vb5oNBCByOxD3uqWYbCHVBgIQuRlIsbfwMEG5gQBE7gSyHMDsOayrxJvHBRC5B0hOxJH1nK4SlUE6QOR+IG6ju3iYQEqDdIDIzUDyZu/jMRHpS/OiRG4FkiPRfTw8kbrvIAJEACAIDpyHC1/GQHhEbgKSXwTyqIeEur6kixEBgABHOTr7YSX1MSFAhA0E307wUU76Y0KACAsI/tvCRzkF+iIuL0AEAYLbR2QOfvhKJ/obRESBxNt5rPSFXN4f7dyNdqMgEIbhAXWwJErT/e7/Wreb5HTT07QVgWSAeW5g7b4n8qOSUCRPEId4HP93SXp5dDNGRJFcQTxihSH+NW1Bb1cXKpIryJAwnG/zhl8ZcSP6jiKZghwRaaWLnP/AkcSKKJIniEcUs8QfjFLdEmRvkSxB4lfn0QN6DY+lshQpHiT96Dlr6r5hxRUpHST9ZEY71X7DOmOZQVZLsd5Q8wzrPxYYJDiKNqOBG1ZCkZKzrNXu6lHvkjChSFqQsdTPg45ApXtYaUXKr9TNuPcvqO2pVMkitFXAL2a79/qr3HQvVSTXUtofCl79RDXh5CDpw3pwu6+9kRlvtiI5VtPhmHLltT4EKVQkfb8pcOHrXqk6nBAksUjgpKtuYsskaxGKYT0+84uYgziE4YQgMdx0m8PRfis2MbL33PMXoVjD6PEunI4HSjDjStiJP08vQk9hZzQ7oH/geoLYCUBDW4rf4FqCDFt7THUO6B+4jiDn2XNTW7zf4hqCMND4BOsGyw+yAmh0x+QeFh7EeqD5Ce8nLDrI8NpbDyIWHIQNruo4GyAPlhrEzuixBxHLDDJMnfYgYolBricHNfjIdgMWF+Qyu+pkgX4HCwuymL57ELGkIHZG7z2IWE6Q5VV7vGMhQewbtMcZiwhyHj26ne9+xs8PcvDQHnFFqCD7Au0RW4TK+fOKqw4eoOcqYqgU53HR3/5uShFPCfKey9hFDyJO/vAi7RDZnp7X5igyUH72xSDW1E2Pn4tMRCQgR8vLwbgii4gcmLvqQcSPGtIPX3M08wn6I4qYQ94cM/Yw9Xxhmw+X/59wHrtMlX1AmIkzdyaaAnLg1Nnw8WGYSk40X/BOh4+El6LMSBnN2Cd0tPq4w/LJXGrMbCX06PZ2dcM65yzlNertShSHf3SzRAyPM332IcSAHUKPi8EHmXU0l8Uglmni0yipDoi16s+jJKejhywLooz68yiMEcHr2qM4h81CJ++VPJfTu5UwBpv4Pp9DJSi6MJx0bvUwiw4ewgT8zNR0LHUL+OccOpY/3ElzyGKD5pBlMJpDlsOkMythRoNbXh95PJsdA67MrMtAEYbjeDqNo+7oKqWUUkoppZRSSimllFJKFfMXp4vmSjB8n6sAAAAASUVORK5CYII="),ost.IMAGE}dispose(){super.dispose(),this.started=!1,delete this._audio}ready(){super.ready(),this._audio=new Audio,this._audio.addEventListener("canplay",(()=>{this.started&&this._audio.play()}));var{src:t="",loop:e=!1,started:r=!1}=this.state;this.onchangeSrc(t),this.onchangeLoop(e),this.onchangeStarted(r)}render(t){var{left:e,top:r,width:n,height:i,src:a}=this.state;t.beginPath(),this.drawImage(t,ost.image,e,r,n,i)}get nature(){return sst}get hasTextProperty(){return!1}get src(){return this.get("src")}set src(t){this.set("src",t)}get started(){return!!this.get("started")}set started(t){this.set("started",t)}start(){this._audio&&(this._audio.classList.add("active"),this._audio.play())}pause(){this._audio&&(this._audio.classList.remove("active"),this._audio.pause())}onchangeSrc(t){try{"data"!==String(t).substring(0,4)?this._audio.crossOrigin="use-credentials":this._audio.crossOrigin=null,this._audio.src="string"==typeof t?this.app.url(t):t}catch(t){return void console.error(t)}}onchangeStarted(t){const e=this._audio;t?4==e.readyState&&e.play():e.pause()}onchangeLoop(t){this._audio.loop=t}onchange(t,e){"src"in t&&this.onchangeSrc(t.src),"started"in t&&this.onchangeStarted(t.started),"loop"in t&&this.onchangeLoop(t.loop)}ondblclick(t){this.started=!this.started}ondropfile(t,e){for(let r=0;r<t.length;r++)if(t[r].type.startsWith("audio/"))return void(this.src=e[r])}}mtt.register("audio",ost);class lst extends(wtt(mtt)){is3dish(){return!0}}mtt.register("text",lst);const hst=["refid","left","top","width","height","rotation","animation"];class cst extends yat{isGroup(){return!0}get(t){return this._model[t]}set(t,e){if("string"==typeof t)return this.set({[t]:e});var r=hst.reduce(((e,r)=>(t.hasOwnProperty(r)&&(e[r]=t[r]),e)),{});return super.set(r)}capture(t,e,r){var n=super.capture(t,e,r);if(n!==this)return n}set bounds(t){if(this.__MUTATING__)super.bounds=t;else{var e=this.bounds,r=t.width/e.width,n=t.height/e.height;this.path=this.path.map((i=>({x:t.left+(i.x-e.left)*r,y:t.top+(i.y-e.top)*n}))),this.components&&this.components.forEach((t=>{if(t.mutable)t.mutatePath(null,(function(t){return t.map((function(t){return{x:t.x*r,y:t.y*n}}))}));else{let e=t.bounds,i=t.center,a={x:i.x*(1-r),y:i.y*(1-n)},s=e.width*(1-r),o=e.height*(1-n),l=-(a.x-s/2),h=-(a.y-o/2);t.bounds={left:e.left+l,top:e.top+h,width:e.width*r,height:e.height*n}}}))}}get focusible(){return!1}get bounds(){return super.bounds}get hasTextProperty(){return!1}isIdentifiable(){return!1}calculateBounds(){this.clearCache(),this.__MUTATING__=!0,this.mutateBounds((function(t){var e=mtt.union(this.components.map((t=>t.bounds)));return this.components.forEach((t=>{let r=t.bounds;t.bounds={left:r.left-e.left,top:r.top-e.top,width:r.width,height:r.height}})),{left:t.left+e.left,top:t.top+e.top,width:e.width,height:e.height}}),this),this.__MUTATING__=!1,this.parent.isGroup()&&this.parent.calculateBounds()}render(t){}postrender(t){var{top:e,left:r,scale:n}=this.state;t.translate(r,e),this.layout.drawables(this).forEach((e=>{e.draw(t)})),t.translate(-r,-e)}}mtt.register("group",cst);const ust={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"id-input",label:"ref",name:"ref"},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio"]}}],"value-property":"ref",help:"scene/component/local-ref"};class dst extends(wtt(ytt)){get ref(){var t=this.getState("ref");return t&&"string"==typeof t?this.root.findById(t):null}set ref(t){this.setState("ref",t)}get refScale(){let t=this.ref.bounds,e=this.bounds,r=e.width/t.width,n=e.height/t.height;return"both"===this.model.fit?{x:r,y:n}:{x:Math.min(r,n),y:Math.min(r,n)}}draw(t){this._drawing||(this._drawing=!0,super.draw(t),this._drawing=!1)}prerender(t){if(super.prerender(t),this.ref){let e=this.ref.center,r=this.center,n=this.refScale;t.translate(r.x,r.y),t.scale(n.x,n.y),t.translate(-e.x,-e.y)}}postrender(t){if(this.ref)return this.ref.postrender(t);super.postrender(t)}render(t){if(this.ref)return this.ref.render(t);this.state;var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),t.rect(e,r,n,i)}get nature(){return ust}get hasTextProperty(){return!1}}mtt.memoize(dst.prototype,"ref",!1),mtt.memoize(dst.prototype,"refScale",!1),mtt.register("local-ref",dst);class pst extends(fat(Gtt)){render(t){}is3dish(){return!0}get layout(){return Ett.get(this.get("layout"))||Mtt}}const fst={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"scene-number",name:"ref",placeholder:"SCENE-1"},{type:"number",label:"round",name:"round",property:{min:0}},{type:"select",label:"fit",name:"fit",property:{options:["","both","ratio","width","height","none"]}},{type:"select",label:"mode",name:"mode",property:{options:["view","interaction"]}}],"value-property":"ref",help:"scene/component/global-ref"};class gst extends pst{dispose(){this._releaseRef(),super.dispose()}get nature(){return fst}get hasTextProperty(){return!1}get tagName(){return"div"}setElementProperties(t){var{mode:e="view",round:r=0}=this.state;t.style.pointerEvents="view"==e?"none":"inherit",t.style.borderRadius=r+"px"}ready(){super.ready(),this.fetchRef()}reposition(){if(!this.element)return;super.reposition();let t=this._element_bounds,{offsetWidth:e,offsetHeight:r}=this.element;if(this._element_bounds={offsetWidth:e,offsetHeight:r},(!t||t.offsetWidth!=e||t.offsetHeight!=r)&&this.ref&&this.root.target_element){let{fit:t="ratio"}=this.state;this.ref.fit(t)}}async fetchRef(){this._releaseRef();var{ref:t,fit:e="ratio"}=this.state;if(t){var r=this.app.refProvider;if(r&&t)try{this.__ref=await r.get(t,!0),this.__ref.target=this.element,this.__ref.fit(e),this.__ref.data=this.data}catch(t){U7(t)}}}get ref(){return this.__ref}set ref(t){this.setState("ref",t)}_releaseRef(){this.__ref&&this.__ref.release&&this.__ref.release(),delete this.__ref}onchange(t,e,r){super.onchange(t,e,r),"ref"in t&&this.fetchRef(),"fit"in t&&this.ref&&requestAnimationFrame((()=>{let{fit:t}=this.state;this.ref.fit(t)})),"data"in t&&this.ref&&requestAnimationFrame((()=>{this.ref.data=t.data}))}}mtt.register("global-ref",gst);const vst={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"board",name:"board"},{type:"checkbox",label:"modal",name:"modal"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"draggable",name:"draggable"},{type:"checkbox",label:"minimizable",name:"minimizable"},{type:"checkbox",label:"show",name:"show"},{type:"select",label:"location",name:"location",property:{options:["center","left-top","right-top","left-bottom","right-bottom","auto"]}},{type:"string",label:"title",name:"text"},{type:"data",label:"value",name:"value"}],help:"scene/component/popup"};class mst extends(wtt(ytt)){static get image(){return mst._image||(mst._image=new Image,mst._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAMAAABG8BK2AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuZGFiYWNiYiwgMjAyMS8wNC8xNC0wMDozOTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM4QzQxNUMzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM4QzQxNUQzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpENjlENTQ3RjMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpENjlENTQ4MDMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsiUYSQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA51BMVEVHcEwzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOguTm2AAAATHRSTlMARhB73r9B7YLrsqdE+0cq9Avzeg31eQx4aQ+Ks6aUd5DsYKixEX1w8vyT2VjoZ3YezY/cCEDvl+QTvRwJ0ifwK/5T/aw6+IuFuCImAcS6MQAAAeJJREFUWMPt2FlX2zAQhuHJYmOSFhIggbC0QNn3rS1dKXSH9///Hi58CJLxKIpEWi6YO8c5z4lG/nxGEXmu/1OVLGnhrFaSVQYg1SZetTTvUibqeFZ9QlfmvRWoV1VmCaCRzroXPpsuAjTV7gLUfPahBqD1OQMW/fazAWTKvQRI/ZgUSJR7U8CM/dHZ+/2VcatWdvdEZAaYUhiAwkerJXt0rnzXwdRKmHfDM0fHD5kxjTFyVLzVfvvirn7+cDJWjhy7c7XlYuwc6Urvu2tRhRypyhwAf1sKY+TIxfQA+H39q5wxc+RgVrcBduTmZTlj5khnDgH4IzKpMGaOVCbvyyvRGTNHGtPrKypjXirM5jb910I4k69oQeKY+77EMAcALEsck/+W6f71tyCma/ZFROTrJVwMy7wmf3bv6/MX+Dgkkysblvxps/dhOKZb6IvrTakzXXuPApnpYneDGOeKvJlaSXcDmA7AicQyW84VeTOnY+NdiWcG1uiZksFEHdyAlsJEjEkmkwGNsKHNZCJGSKtVTYC1tO022mnjwUBrMdXg8dreuOBhv7D/62/8lGZ1wLxXyZKOm+iUHIQintyny0TkaATHjYgcjeAoFpEje9R/nGPqIx2aw3NU9odCQI6e6x/VLY32cKQXVBnkAAAAAElFTkSuQmCC"),mst._image}ready(){super.ready(),this.show&&this.onchangeShow(!0)}render(t){var{left:e,top:r,width:n,height:i}=this.bounds;t.beginPath(),this.drawImage(t,mst.image,e,r,n,i)}onchange(t,e){"value"in t?this.show?this.onchangeShow(!0):this.show=!0:"show"in t&&this.onchangeShow(this.show)}onchangeShow(t){!this.app.isEditMode&&this.getState("board")&&(t?Rtt.show(this,this.getState("board"),{location:this.getState("location"),modal:this.getState("modal"),closable:this.getState("closable")||!1,draggable:this.getState("draggable")||!1,minimizable:this.getState("minimizable")||!1,title:this.text,data:this.value}):Rtt.hide(this))}get board(){return this.getState("board")}set board(t){this.set("board",t)}get show(){return this.getState("show")}set show(t){this.setState("show",t)}get started(){return this.getState("show")}set started(t){this.setState("show",t)}get value(){return this.getState("value")}set value(t){this.setState("value",t)}get hasTextProperty(){return!1}get nature(){return vst}}mtt.register("popup",mst);class yst extends mtt{render(t){var{path:e=[]}=this.state;if(!(e.length<=1)){t.beginPath(),t.moveTo(e[0].x,e[0].y);for(let r=1;r<e.length;r++)t.lineTo(e[r].x,e[r].y);t.closePath(),this.drawStroke(t)}}get path(){return this.model.path}set path(t){this.set("path",t)}contains(t,e){var r=this.state.path,n=!1;return r.forEach(((i,a)=>{let s=(a+r.length+1)%r.length,o=i.x,l=i.y,h=r[s].x,c=r[s].y;l>e!=c>e&&t<(h-o)*(e-l)/(c-l)+o&&(n=!n)})),n}}mtt.register("path",yst);const bst={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/triangle"};class wst extends ytt{contains(t,e){var{x1:r,y1:n,x2:i,y2:a,x3:s,y3:o}=this.state,l=[r,n,i,a,s,o],h=!1;for(let r=0;r<l.length;r+=2){let n=(r+2)%l.length,i=l[r],a=l[r+1],s=l[n+1];a>e!=s>e&&t<(l[n]-i)*(e-a)/(s-a)+i&&(h=!h)}return h}get mutable(){return!0}get path(){var{x1:t,y1:e,x2:r,y2:n,x3:i,y3:a}=this.state;return[{x:t,y:e},{x:r,y:n},{x:i,y:a}]}set path(t){this.set({x1:t[0].x,y1:t[0].y,x2:t[1].x,y2:t[1].y,x3:t[2].x,y3:t[2].y})}get nature(){return bst}}mtt.memoize(wst.prototype,"path",!1),mtt.register("triangle",wst);const xst={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"}],help:"scene/component/donut"};var Ast={ondragmove:function(t,e,r){r.controls;var{cx:n,rx:i}=r.model;i=Math.abs(i);var a=(r.transcoordP2S(t.x,t.y).x-n)/i*100;a=a>=100||a<=-100?100:Math.abs(a),r.set({ratio:a})}};class _st extends Lat{is3dish(){return!1}render(t){var{ratio:e=50,cx:r,cy:n,rx:i,ry:a,startAngle:s,endAngle:o,anticlockwise:l}=this.state;i=Math.abs(i),a=Math.abs(a),t.beginPath(),t.ellipse(r,n,i,a,0,s||0,o||2*Math.PI,l),t.moveTo(r+i/100*e,n),t.ellipse(r,n,i/100*e,a/100*e,0,s||0,o||2*Math.PI,!0)}contains(t,e){var{cx:r,cy:n,rx:i,ry:a,ratio:s}=this.state,o=(t-r)/(2*(i=Math.abs(i))-.5),l=(e-n)/(2*(a=Math.abs(a))-.5),h=(t-r)/(i/100*s*2-.5),c=(e-n)/(a/100*s*2-.5),u=!1;return o*o+l*l<.25&&h*h+c*c>.25&&(u=!u),u}get controls(){var{cx:t,cy:e,rx:r,ratio:n}=this.state;return[{x:t+(r=Math.abs(r))/100*n,y:e,handler:Ast}]}get nature(){return xst}}mtt.memoize(_st.prototype,"controls",!1),mtt.register("donut",_st);const kst={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"},{type:"number",label:"wing",name:"wing",property:"wing"}],help:"scene/component/star"};var Sst,Est,Mst,Tst,Cst,Pst,Ist,Rst,Ost,Lst,Dst,Fst,Nst,jst={ondragmove:function(t,e,r){r.controls;var{cy:n,ry:i}=r.model,a=(r.transcoordP2S(t.x,t.y).y-n)/i*100+100;a>=100?a=100:a<=0&&(a=0),r.set({ratio:a})}};class Bst extends Lat{is3dish(){return!1}render(t){var{ratio:e=30,wing:r=5,cx:n,cy:i,rx:a,ry:s,startAngle:o,endAngle:l,anticlockwise:h}=this.state;if(r<3)return;const c=1.5707963267948966;var u=2*Math.PI/r,d=a-e/100*a,p=s-e/100*s;t.save(),t.beginPath(),t.translate(n,i),t.moveTo(a*Math.cos(-c),s*Math.sin(-c)),t.lineTo((a-d)*(Math.cos(u-c)+Math.cos(0-c))/2,(s-p)*(Math.sin(u-c)+Math.sin(0-c))/2);for(var f=1;f<r;f++)t.lineTo(a*Math.cos(u*f-c),s*Math.sin(u*f-c)),t.lineTo((a-d)*(Math.cos(u*(f+1)-c)+Math.cos(u*f-c))/2,(s-p)*(Math.sin(u*(f+1)-c)+Math.sin(u*f-c))/2);t.closePath(),t.restore()}get controls(){var{cx:t,cy:e,ry:r,ratio:n}=this.state;return[{x:t,y:e-r+r*(n/100),handler:jst}]}get nature(){return kst}}mtt.memoize(Bst.prototype,"controls",!1),mtt.register("star",Bst);
45
+ /**
46
+ * @licstart The following is the entire license notice for the
47
+ * JavaScript code in this page
48
+ *
49
+ * Copyright 2024 Mozilla Foundation
50
+ *
51
+ * Licensed under the Apache License, Version 2.0 (the "License");
52
+ * you may not use this file except in compliance with the License.
53
+ * You may obtain a copy of the License at
54
+ *
55
+ * http://www.apache.org/licenses/LICENSE-2.0
56
+ *
57
+ * Unless required by applicable law or agreed to in writing, software
58
+ * distributed under the License is distributed on an "AS IS" BASIS,
59
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
60
+ * See the License for the specific language governing permissions and
61
+ * limitations under the License.
62
+ *
63
+ * @licend The above is the entire license notice for the
64
+ * JavaScript code in this page
65
+ */var zst={d:(t,e)=>{for(var r in e)zst.o(e,r)&&!zst.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e)},Wst=globalThis.pdfjsLib={};zst.d(Wst,{AbortException:()=>Zot,AnnotationEditorLayer:()=>qxt,AnnotationEditorParamsType:()=>rot,AnnotationEditorType:()=>eot,AnnotationEditorUIManager:()=>cct,AnnotationLayer:()=>Ymt,AnnotationMode:()=>tot,ColorPicker:()=>xbt,DOMSVGFactory:()=>pvt,DrawLayer:()=>aAt,FeatureTest:()=>nlt,GlobalWorkerOptions:()=>$pt,ImageKind:()=>cot,InvalidPDFException:()=>$ot,MissingPDFException:()=>Kot,OPS:()=>Dot,OutputScale:()=>Olt,PDFDataRangeTransport:()=>Sgt,PDFDateString:()=>Elt,PDFWorker:()=>Ngt,PasswordResponses:()=>Fot,PermissionFlag:()=>not,PixelsPerInch:()=>plt,RenderingCancelledException:()=>mlt,TextLayer:()=>rgt,TouchManager:()=>hut,UnexpectedResponseException:()=>Qot,Util:()=>alt,VerbosityLevel:()=>Lot,XfaLayer:()=>fvt,build:()=>lvt,createValidAbsoluteUrl:()=>Got,fetchData:()=>flt,getDocument:()=>xgt,getFilenameFromUrl:()=>wlt,getPdfFilenameFromUrl:()=>xlt,getXfaPageViewport:()=>Tlt,isDataScheme:()=>ylt,isPdfFile:()=>blt,noContextMenu:()=>klt,normalizeUnicode:()=>clt,setLayerDimensions:()=>Rlt,shadow:()=>Yot,stopEvent:()=>Slt,version:()=>ovt});var Ust=!("object"!=typeof process||process+""!="[object process]"||process.versions.nw||process.versions.electron&&process.type&&"browser"!==process.type),Hst=[1,0,0,1,0,0],Gst=[.001,0,0,.001,0,0],Yst=1.35,Vst=1,qst=2,Xst=4,$st=16,Kst=32,Qst=64,Jst=128,Zst=256,tot={DISABLE:0,ENABLE:1,ENABLE_FORMS:2,ENABLE_STORAGE:3},eot={DISABLE:-1,NONE:0,FREETEXT:3,HIGHLIGHT:9,STAMP:13,INK:15},rot={RESIZE:1,CREATE:2,FREETEXT_SIZE:11,FREETEXT_COLOR:12,FREETEXT_OPACITY:13,INK_COLOR:21,INK_THICKNESS:22,INK_OPACITY:23,HIGHLIGHT_COLOR:31,HIGHLIGHT_DEFAULT_COLOR:32,HIGHLIGHT_THICKNESS:33,HIGHLIGHT_FREE:34,HIGHLIGHT_SHOW_ALL:35,DRAW_STEP:41},not={PRINT:4,MODIFY_CONTENTS:8,COPY:16,MODIFY_ANNOTATIONS:32,FILL_INTERACTIVE_FORMS:256,COPY_FOR_ACCESSIBILITY:512,ASSEMBLE:1024,PRINT_HIGH_QUALITY:2048},iot=0,aot=1,sot=2,oot=3,lot=3,hot=4,cot={GRAYSCALE_1BPP:1,RGB_24BPP:2,RGBA_32BPP:3},uot=1,dot=2,pot=3,fot=4,got=5,vot=6,mot=7,yot=8,bot=9,wot=10,xot=11,Aot=12,_ot=13,kot=14,Sot=15,Eot=16,Mot=17,Tot=20,Cot=1,Pot=2,Iot=3,Rot=4,Oot=5,Lot={ERRORS:0,WARNINGS:1,INFOS:5},Dot={dependency:1,setLineWidth:2,setLineCap:3,setLineJoin:4,setMiterLimit:5,setDash:6,setRenderingIntent:7,setFlatness:8,setGState:9,save:10,restore:11,transform:12,moveTo:13,lineTo:14,curveTo:15,curveTo2:16,curveTo3:17,closePath:18,rectangle:19,stroke:20,closeStroke:21,fill:22,eoFill:23,fillStroke:24,eoFillStroke:25,closeFillStroke:26,closeEOFillStroke:27,endPath:28,clip:29,eoClip:30,beginText:31,endText:32,setCharSpacing:33,setWordSpacing:34,setHScale:35,setLeading:36,setFont:37,setTextRenderingMode:38,setTextRise:39,moveText:40,setLeadingMoveText:41,setTextMatrix:42,nextLine:43,showText:44,showSpacedText:45,nextLineShowText:46,nextLineSetSpacingShowText:47,setCharWidth:48,setCharWidthAndBounds:49,setStrokeColorSpace:50,setFillColorSpace:51,setStrokeColor:52,setStrokeColorN:53,setFillColor:54,setFillColorN:55,setStrokeGray:56,setFillGray:57,setStrokeRGBColor:58,setFillRGBColor:59,setStrokeCMYKColor:60,setFillCMYKColor:61,shadingFill:62,beginInlineImage:63,beginImageData:64,endInlineImage:65,paintXObject:66,markPoint:67,markPointProps:68,beginMarkedContent:69,beginMarkedContentProps:70,endMarkedContent:71,beginCompat:72,endCompat:73,paintFormXObjectBegin:74,paintFormXObjectEnd:75,beginGroup:76,endGroup:77,beginAnnotation:80,endAnnotation:81,paintImageMaskXObject:83,paintImageMaskXObjectGroup:84,paintImageXObject:85,paintInlineImageXObject:86,paintInlineImageXObjectGroup:87,paintImageXObjectRepeat:88,paintImageMaskXObjectRepeat:89,paintSolidColorImageMask:90,constructPath:91,setStrokeTransparent:92,setFillTransparent:93},Fot={NEED_PASSWORD:1,INCORRECT_PASSWORD:2},Not=Lot.WARNINGS;function jot(t){Number.isInteger(t)&&(Not=t)}function Bot(){return Not}function zot(t){Not>=Lot.INFOS&&console.log("Info: ".concat(t))}function Wot(t){Not>=Lot.WARNINGS&&console.log("Warning: ".concat(t))}function Uot(t){throw new Error(t)}function Hot(t,e){t||Uot(e)}function Got(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if(!t)return null;try{if(r&&"string"==typeof t){if(r.addDefaultProtocol&&t.startsWith("www.")){var n=t.match(/\./g);(null==n?void 0:n.length)>=2&&(t="http://".concat(t))}if(r.tryConvertEncoding)try{t=decodeURIComponent(escape(t))}catch(t){}}var i=e?new URL(t,e):new URL(t);if(function(t){switch(null==t?void 0:t.protocol){case"http:":case"https:":case"ftp:":case"mailto:":case"tel:":return!0;default:return!1}}(i))return i}catch(t){}return null}function Yot(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];return Object.defineProperty(t,e,{value:r,enumerable:!n,configurable:!0,writable:!1}),r}var Vot=function(){function t(t,e){this.message=t,this.name=e}return t.prototype=new Error,t.constructor=t,t}();class qot extends Vot{constructor(t,e){super(t,"PasswordException"),this.code=e}}class Xot extends Vot{constructor(t,e){super(t,"UnknownErrorException"),this.details=e}}class $ot extends Vot{constructor(t){super(t,"InvalidPDFException")}}class Kot extends Vot{constructor(t){super(t,"MissingPDFException")}}class Qot extends Vot{constructor(t,e){super(t,"UnexpectedResponseException"),this.status=e}}class Jot extends Vot{constructor(t){super(t,"FormatError")}}class Zot extends Vot{constructor(t){super(t,"AbortException")}}function tlt(t){"object"==typeof t&&void 0!==(null==t?void 0:t.length)||Uot("Invalid argument for bytesToString");var e=t.length,r=8192;if(e<r)return String.fromCharCode.apply(null,t);for(var n=[],i=0;i<e;i+=r){var a=Math.min(i+r,e),s=t.subarray(i,a);n.push(String.fromCharCode.apply(null,s))}return n.join("")}function elt(t){"string"!=typeof t&&Uot("Invalid argument for stringToBytes");for(var e=t.length,r=new Uint8Array(e),n=0;n<e;++n)r[n]=255&t.charCodeAt(n);return r}function rlt(t){var e=Object.create(null);for(var[r,n]of t)e[r]=n;return e}class nlt{static get isLittleEndian(){return Yot(this,"isLittleEndian",((t=new Uint8Array(4))[0]=1,1===new Uint32Array(t.buffer,0,1)[0]));var t}static get isEvalSupported(){return Yot(this,"isEvalSupported",function(){try{return new Function(""),!0}catch(t){return!1}}())}static get isOffscreenCanvasSupported(){return Yot(this,"isOffscreenCanvasSupported","undefined"!=typeof OffscreenCanvas)}static get isImageDecoderSupported(){return Yot(this,"isImageDecoderSupported","undefined"!=typeof ImageDecoder)}static get platform(){var t,e;return"undefined"!=typeof navigator&&"string"==typeof(null===(t=navigator)||void 0===t?void 0:t.platform)?Yot(this,"platform",{isMac:navigator.platform.includes("Mac"),isWindows:navigator.platform.includes("Win"),isFirefox:"string"==typeof(null===(e=navigator)||void 0===e?void 0:e.userAgent)&&navigator.userAgent.includes("Firefox")}):Yot(this,"platform",{isMac:!1,isWindows:!1,isFirefox:!1})}static get isCSSRoundSupported(){var t,e;return Yot(this,"isCSSRoundSupported",null===(t=globalThis.CSS)||void 0===t||null===(e=t.supports)||void 0===e?void 0:e.call(t,"width: round(1.5px, 1px)"))}}var ilt=Array.from(Array(256).keys(),(t=>t.toString(16).padStart(2,"0")));class alt{static makeHexColor(t,e,r){return"#".concat(ilt[t]).concat(ilt[e]).concat(ilt[r])}static scaleMinMax(t,e){var r;t[0]?(t[0]<0&&(r=e[0],e[0]=e[2],e[2]=r),e[0]*=t[0],e[2]*=t[0],t[3]<0&&(r=e[1],e[1]=e[3],e[3]=r),e[1]*=t[3],e[3]*=t[3]):(r=e[0],e[0]=e[1],e[1]=r,r=e[2],e[2]=e[3],e[3]=r,t[1]<0&&(r=e[1],e[1]=e[3],e[3]=r),e[1]*=t[1],e[3]*=t[1],t[2]<0&&(r=e[0],e[0]=e[2],e[2]=r),e[0]*=t[2],e[2]*=t[2]),e[0]+=t[4],e[1]+=t[5],e[2]+=t[4],e[3]+=t[5]}static transform(t,e){return[t[0]*e[0]+t[2]*e[1],t[1]*e[0]+t[3]*e[1],t[0]*e[2]+t[2]*e[3],t[1]*e[2]+t[3]*e[3],t[0]*e[4]+t[2]*e[5]+t[4],t[1]*e[4]+t[3]*e[5]+t[5]]}static applyTransform(t,e){return[t[0]*e[0]+t[1]*e[2]+e[4],t[0]*e[1]+t[1]*e[3]+e[5]]}static applyInverseTransform(t,e){var r=e[0]*e[3]-e[1]*e[2];return[(t[0]*e[3]-t[1]*e[2]+e[2]*e[5]-e[4]*e[3])/r,(-t[0]*e[1]+t[1]*e[0]+e[4]*e[1]-e[5]*e[0])/r]}static getAxialAlignedBoundingBox(t,e){var r=this.applyTransform(t,e),n=this.applyTransform(t.slice(2,4),e),i=this.applyTransform([t[0],t[3]],e),a=this.applyTransform([t[2],t[1]],e);return[Math.min(r[0],n[0],i[0],a[0]),Math.min(r[1],n[1],i[1],a[1]),Math.max(r[0],n[0],i[0],a[0]),Math.max(r[1],n[1],i[1],a[1])]}static inverseTransform(t){var e=t[0]*t[3]-t[1]*t[2];return[t[3]/e,-t[1]/e,-t[2]/e,t[0]/e,(t[2]*t[5]-t[4]*t[3])/e,(t[4]*t[1]-t[5]*t[0])/e]}static singularValueDecompose2dScale(t){var e=[t[0],t[2],t[1],t[3]],r=t[0]*e[0]+t[1]*e[2],n=t[0]*e[1]+t[1]*e[3],i=t[2]*e[0]+t[3]*e[2],a=t[2]*e[1]+t[3]*e[3],s=(r+a)/2,o=Math.sqrt(Math.pow(r+a,2)-4*(r*a-i*n))/2,l=s+o||1,h=s-o||1;return[Math.sqrt(l),Math.sqrt(h)]}static normalizeRect(t){var e=t.slice(0);return t[0]>t[2]&&(e[0]=t[2],e[2]=t[0]),t[1]>t[3]&&(e[1]=t[3],e[3]=t[1]),e}static intersect(t,e){var r=Math.max(Math.min(t[0],t[2]),Math.min(e[0],e[2])),n=Math.min(Math.max(t[0],t[2]),Math.max(e[0],e[2]));if(r>n)return null;var i=Math.max(Math.min(t[1],t[3]),Math.min(e[1],e[3])),a=Math.min(Math.max(t[1],t[3]),Math.max(e[1],e[3]));return i>a?null:[r,i,n,a]}static bezierBoundingBox(t,e,r,n,i,a,s,o,l){return l?(l[0]=Math.min(l[0],t,s),l[1]=Math.min(l[1],e,o),l[2]=Math.max(l[2],t,s),l[3]=Math.max(l[3],e,o)):l=[Math.min(t,s),Math.min(e,o),Math.max(t,s),Math.max(e,o)],bnt(alt,this,olt).call(this,t,r,i,s,e,n,a,o,3*(3*(r-i)-t+s),6*(t-2*r+i),3*(r-t),l),bnt(alt,this,olt).call(this,t,r,i,s,e,n,a,o,3*(3*(n-a)-e+o),6*(e-2*n+a),3*(n-e),l),l}}function slt(t,e,r,n,i,a,s,o,l,h){if(!(l<=0||l>=1)){var c=1-l,u=l*l,d=u*l,p=c*(c*(c*t+3*l*e)+3*u*r)+d*n,f=c*(c*(c*i+3*l*a)+3*u*s)+d*o;h[0]=Math.min(h[0],p),h[1]=Math.min(h[1],f),h[2]=Math.max(h[2],p),h[3]=Math.max(h[3],f)}}function olt(t,e,r,n,i,a,s,o,l,h,c,u){if(Math.abs(l)<1e-12)Math.abs(h)>=1e-12&&bnt(Sst,this,slt).call(this,t,e,r,n,i,a,s,o,-c/h,u);else{var d=Math.pow(h,2)-4*c*l;if(!(d<0)){var p=Math.sqrt(d),f=2*l;bnt(Sst,this,slt).call(this,t,e,r,n,i,a,s,o,(-h+p)/f,u),bnt(Sst,this,slt).call(this,t,e,r,n,i,a,s,o,(-h-p)/f,u)}}}Sst=alt;var llt=null,hlt=null;function clt(t){return llt||(llt=/([\xA0\xB5\u037E\u0EB3\u2000-\u200A\u202F\u2126\uFB00-\uFB04\uFB06\uFB20-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBA1\uFBA4-\uFBA9\uFBAE-\uFBB1\uFBD3-\uFBDC\uFBDE-\uFBE7\uFBEA-\uFBF8\uFBFC\uFBFD\uFC00-\uFC5D\uFC64-\uFCF1\uFCF5-\uFD3D\uFD88\uFDF4\uFDFA\uFDFB\uFE71\uFE77\uFE79\uFE7B\uFE7D]+)|(\uFB05+)/g,hlt=new Map([["ſt","ſt"]])),t.replaceAll(llt,((t,e,r)=>e?e.normalize("NFKC"):hlt.get(r)))}var ult="pdfjs_internal_id_";"function"!=typeof Promise.try&&(Promise.try=function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return new Promise((e=>{e(t(...r))}))});var dlt="http://www.w3.org/2000/svg";class plt{}function flt(t){return glt.apply(this,arguments)}function glt(){return glt=xnt((function*(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"text";if(_lt(t,document.baseURI)){var r=yield fetch(t);if(!r.ok)throw new Error(r.statusText);switch(e){case"arraybuffer":return r.arrayBuffer();case"blob":return r.blob();case"json":return r.json()}return r.text()}return new Promise(((r,n)=>{var i=new XMLHttpRequest;i.open("GET",t,!0),i.responseType=e,i.onreadystatechange=()=>{if(i.readyState===XMLHttpRequest.DONE)if(200!==i.status&&0!==i.status)n(new Error(i.statusText));else{switch(e){case"arraybuffer":case"blob":case"json":return void r(i.response)}r(i.responseText)}},i.send(null)}))})),glt.apply(this,arguments)}Est=plt,Tnt(plt,"CSS",96),Tnt(plt,"PDF",72),Tnt(plt,"PDF_TO_CSS_UNITS",Est.CSS/Est.PDF);class vlt{constructor(t){var{viewBox:e,userUnit:r,scale:n,rotation:i,offsetX:a=0,offsetY:s=0,dontFlip:o=!1}=t;this.viewBox=e,this.userUnit=r,this.scale=n,this.rotation=i,this.offsetX=a,this.offsetY=s,n*=r;var l,h,c,u,d,p,f,g,v=(e[2]+e[0])/2,m=(e[3]+e[1])/2;switch((i%=360)<0&&(i+=360),i){case 180:l=-1,h=0,c=0,u=1;break;case 90:l=0,h=1,c=1,u=0;break;case 270:l=0,h=-1,c=-1,u=0;break;case 0:l=1,h=0,c=0,u=-1;break;default:throw new Error("PageViewport: Invalid rotation, must be a multiple of 90 degrees.")}o&&(c=-c,u=-u),0===l?(d=Math.abs(m-e[1])*n+a,p=Math.abs(v-e[0])*n+s,f=(e[3]-e[1])*n,g=(e[2]-e[0])*n):(d=Math.abs(v-e[0])*n+a,p=Math.abs(m-e[1])*n+s,f=(e[2]-e[0])*n,g=(e[3]-e[1])*n),this.transform=[l*n,h*n,c*n,u*n,d-l*n*v-c*n*m,p-h*n*v-u*n*m],this.width=f,this.height=g}get rawDims(){var{userUnit:t,viewBox:e}=this,r=e.map((e=>e*t));return Yot(this,"rawDims",{pageWidth:r[2]-r[0],pageHeight:r[3]-r[1],pageX:r[0],pageY:r[1]})}clone(){var{scale:t=this.scale,rotation:e=this.rotation,offsetX:r=this.offsetX,offsetY:n=this.offsetY,dontFlip:i=!1}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new vlt({viewBox:this.viewBox.slice(),userUnit:this.userUnit,scale:t,rotation:e,offsetX:r,offsetY:n,dontFlip:i})}convertToViewportPoint(t,e){return alt.applyTransform([t,e],this.transform)}convertToViewportRectangle(t){var e=alt.applyTransform([t[0],t[1]],this.transform),r=alt.applyTransform([t[2],t[3]],this.transform);return[e[0],e[1],r[0],r[1]]}convertToPdfPoint(t,e){return alt.applyInverseTransform([t,e],this.transform)}}class mlt extends Vot{constructor(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;super(t,"RenderingCancelledException"),this.extraDelay=e}}function ylt(t){for(var e=t.length,r=0;r<e&&""===t[r].trim();)r++;return"data:"===t.substring(r,r+5).toLowerCase()}function blt(t){return"string"==typeof t&&/\.pdf$/i.test(t)}function wlt(t){return[t]=t.split(/[#?]/,1),t.substring(t.lastIndexOf("/")+1)}function xlt(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"document.pdf";if("string"!=typeof t)return e;if(ylt(t))return Wot('getPdfFilenameFromUrl: ignore "data:"-URL for performance reasons.'),e;var r=/[^/?#=]+\.pdf\b(?!.*\.pdf\b)/i,n=/^(?:(?:[^:]+:)?\/\/[^/]+)?([^?#]*)(\?[^#]*)?(#.*)?$/.exec(t),i=r.exec(n[1])||r.exec(n[2])||r.exec(n[3]);if(i&&(i=i[0]).includes("%"))try{i=r.exec(decodeURIComponent(i))[0]}catch(t){}return i||e}class Alt{constructor(){Tnt(this,"started",Object.create(null)),Tnt(this,"times",[])}time(t){t in this.started&&Wot("Timer is already running for ".concat(t)),this.started[t]=Date.now()}timeEnd(t){t in this.started||Wot("Timer has not been started for ".concat(t)),this.times.push({name:t,start:this.started[t],end:Date.now()}),delete this.started[t]}toString(){var t=[],e=0;for(var{name:r}of this.times)e=Math.max(r.length,e);for(var{name:n,start:i,end:a}of this.times)t.push("".concat(n.padEnd(e)," ").concat(a-i,"ms\n"));return t.join("")}}function _lt(t,e){try{var{protocol:r}=e?new URL(t,e):new URL(t);return"http:"===r||"https:"===r}catch(t){return!1}}function klt(t){t.preventDefault()}function Slt(t){t.preventDefault(),t.stopPropagation()}class Elt{static toDateObject(t){if(!t||"string"!=typeof t)return null;bnt(Elt,this,Mlt)._||(Mlt._=bnt(Elt,this,new RegExp("^D:(\\d{4})(\\d{2})?(\\d{2})?(\\d{2})?(\\d{2})?(\\d{2})?([Z|+|-])?(\\d{2})?'?(\\d{2})?'?")));var e=bnt(Elt,this,Mlt)._.exec(t);if(!e)return null;var r=parseInt(e[1],10),n=parseInt(e[2],10);n=n>=1&&n<=12?n-1:0;var i=parseInt(e[3],10);i=i>=1&&i<=31?i:1;var a=parseInt(e[4],10);a=a>=0&&a<=23?a:0;var s=parseInt(e[5],10);s=s>=0&&s<=59?s:0;var o=parseInt(e[6],10);o=o>=0&&o<=59?o:0;var l=e[7]||"Z",h=parseInt(e[8],10);h=h>=0&&h<=23?h:0;var c=parseInt(e[9],10)||0;return c=c>=0&&c<=59?c:0,"-"===l?(a+=h,s+=c):"+"===l&&(a-=h,s-=c),new Date(Date.UTC(r,n,i,a,s,o))}}var Mlt={_:void 0};function Tlt(t,e){var{scale:r=1,rotation:n=0}=e,{width:i,height:a}=t.attributes.style,s=[0,0,parseInt(i),parseInt(a)];return new vlt({viewBox:s,userUnit:1,scale:r,rotation:n})}function Clt(t){if(t.startsWith("#")){var e=parseInt(t.slice(1),16);return[(16711680&e)>>16,(65280&e)>>8,255&e]}return t.startsWith("rgb(")?t.slice(4,-1).split(",").map((t=>parseInt(t))):t.startsWith("rgba(")?t.slice(5,-1).split(",").map((t=>parseInt(t))).slice(0,3):(Wot('Not a valid color format: "'.concat(t,'"')),[0,0,0])}function Plt(t){var{a:e,b:r,c:n,d:i,e:a,f:s}=t.getTransform();return[e,r,n,i,a,s]}function Ilt(t){var{a:e,b:r,c:n,d:i,e:a,f:s}=t.getTransform().invertSelf();return[e,r,n,i,a,s]}function Rlt(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];if(e instanceof vlt){var{pageWidth:i,pageHeight:a}=e.rawDims,{style:s}=t,o=nlt.isCSSRoundSupported,l="var(--scale-factor) * ".concat(i,"px"),h="var(--scale-factor) * ".concat(a,"px"),c=o?"round(down, ".concat(l,", var(--scale-round-x, 1px))"):"calc(".concat(l,")"),u=o?"round(down, ".concat(h,", var(--scale-round-y, 1px))"):"calc(".concat(h,")");r&&e.rotation%180!=0?(s.width=u,s.height=c):(s.width=c,s.height=u)}n&&t.setAttribute("data-main-rotation",e.rotation)}class Olt{constructor(){var t=window.devicePixelRatio||1;this.sx=t,this.sy=t}get scaled(){return 1!==this.sx||1!==this.sy}get symmetric(){return this.sx===this.sy}}var Llt=new WeakMap,Dlt=new WeakMap,Flt=new WeakMap,Nlt=new WeakMap,jlt=new WeakMap,Blt=new WeakSet;class zlt{constructor(t){Mnt(this,Blt),knt(this,Llt,null),knt(this,Dlt,null),knt(this,Flt,void 0),knt(this,Nlt,null),knt(this,jlt,null),Snt(Flt,this,t),qlt._||(qlt._=Object.freeze({freetext:"pdfjs-editor-remove-freetext-button",highlight:"pdfjs-editor-remove-highlight-button",ink:"pdfjs-editor-remove-ink-button",stamp:"pdfjs-editor-remove-stamp-button"}))}render(){var t=Snt(Llt,this,document.createElement("div"));t.classList.add("editToolbar","hidden"),t.setAttribute("role","toolbar");var e=_nt(Flt,this)._uiManager._signal;t.addEventListener("contextmenu",klt,{signal:e}),t.addEventListener("pointerdown",Wlt,{signal:e});var r=Snt(Nlt,this,document.createElement("div"));r.className="buttons",t.append(r);var n=_nt(Flt,this).toolbarPosition;if(n){var{style:i}=t,a="ltr"===_nt(Flt,this)._uiManager.direction?1-n[0]:n[0];i.insetInlineEnd="".concat(100*a,"%"),i.top="calc(".concat(100*n[1],"% + var(--editor-toolbar-vert-offset))")}return bnt(Blt,this,Ylt).call(this),t}get div(){return _nt(Llt,this)}hide(){var t;_nt(Llt,this).classList.add("hidden"),null===(t=_nt(Dlt,this))||void 0===t||t.hideDropdown()}show(){var t;_nt(Llt,this).classList.remove("hidden"),null===(t=_nt(jlt,this))||void 0===t||t.shown()}addAltText(t){var e=this;return xnt((function*(){var r=yield t.render();bnt(Blt,e,Glt).call(e,r),_nt(Nlt,e).prepend(r,Ent(Blt,e,Vlt)),Snt(jlt,e,t)}))()}addColorPicker(t){Snt(Dlt,this,t);var e=t.renderButton();bnt(Blt,this,Glt).call(this,e),_nt(Nlt,this).prepend(e,Ent(Blt,this,Vlt))}remove(){var t;_nt(Llt,this).remove(),null===(t=_nt(Dlt,this))||void 0===t||t.destroy(),Snt(Dlt,this,null)}}function Wlt(t){t.stopPropagation()}function Ult(t){_nt(Flt,this)._focusEventsAllowed=!1,Slt(t)}function Hlt(t){_nt(Flt,this)._focusEventsAllowed=!0,Slt(t)}function Glt(t){var e=_nt(Flt,this)._uiManager._signal;t.addEventListener("focusin",bnt(Blt,this,Ult).bind(this),{capture:!0,signal:e}),t.addEventListener("focusout",bnt(Blt,this,Hlt).bind(this),{capture:!0,signal:e}),t.addEventListener("contextmenu",klt,{signal:e})}function Ylt(){var{editorType:t,_uiManager:e}=_nt(Flt,this),r=document.createElement("button");r.className="delete",r.tabIndex=0,r.setAttribute("data-l10n-id",qlt._[t]),bnt(Blt,this,Glt).call(this,r),r.addEventListener("click",(t=>{e.delete()}),{signal:e._signal}),_nt(Nlt,this).append(r)}function Vlt(t){var e=document.createElement("div");return e.className="divider",e}var qlt={_:null},Xlt=new WeakMap,$lt=new WeakMap,Klt=new WeakMap,Qlt=new WeakSet;class Jlt{constructor(t){Mnt(this,Qlt),knt(this,Xlt,null),knt(this,$lt,null),knt(this,Klt,void 0),Snt(Klt,this,t)}show(t,e,r){var[n,i]=bnt(Qlt,this,tht).call(this,e,r),{style:a}=_nt($lt,this)||Snt($lt,this,bnt(Qlt,this,Zlt).call(this));t.append(_nt($lt,this)),a.insetInlineEnd="".concat(100*n,"%"),a.top="calc(".concat(100*i,"% + var(--editor-toolbar-vert-offset))")}hide(){_nt($lt,this).remove()}}function Zlt(){var t=Snt($lt,this,document.createElement("div"));t.className="editToolbar",t.setAttribute("role","toolbar"),t.addEventListener("contextmenu",klt,{signal:_nt(Klt,this)._signal});var e=Snt(Xlt,this,document.createElement("div"));return e.className="buttons",t.append(e),bnt(Qlt,this,eht).call(this),t}function tht(t,e){var r=0,n=0;for(var i of t){var a=i.y+i.height;if(!(a<r)){var s=i.x+(e?i.width:0);a>r?(n=s,r=a):e?s>n&&(n=s):s<n&&(n=s)}}return[e?1-n:n,r]}function eht(){var t=document.createElement("button");t.className="highlightButton",t.tabIndex=0,t.setAttribute("data-l10n-id","pdfjs-highlight-floating-button1");var e=document.createElement("span");t.append(e),e.className="visuallyHidden",e.setAttribute("data-l10n-id","pdfjs-highlight-floating-button-label");var r=_nt(Klt,this)._signal;t.addEventListener("contextmenu",klt,{signal:r}),t.addEventListener("click",(()=>{_nt(Klt,this).highlightSelection("floating_button")}),{signal:r}),_nt(Xlt,this).append(t)}function rht(t,e,r){for(var n of r)e.addEventListener(n,t[n].bind(t))}var nht=new WeakMap;class iht{constructor(){knt(this,nht,0)}get id(){var t,e;return"".concat("pdfjs_internal_editor_").concat((Snt(nht,this,(t=_nt(nht,this),e=t++,t)),e))}}var aht=new WeakMap,sht=new WeakMap,oht=new WeakMap,lht=new WeakSet;class hht{constructor(){Mnt(this,lht),knt(this,aht,function(){if("function"==typeof crypto.randomUUID)return crypto.randomUUID();var t=new Uint8Array(32);return crypto.getRandomValues(t),tlt(t)}()),knt(this,sht,0),knt(this,oht,null)}static get _isSVGFittingCanvas(){var t=new OffscreenCanvas(1,3).getContext("2d",{willReadFrequently:!0}),e=new Image;return e.src='data:image/svg+xml;charset=UTF-8,<svg viewBox="0 0 1 1" width="1" height="1" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" style="fill:red;"/></svg>',Yot(this,"_isSVGFittingCanvas",e.decode().then((()=>(t.drawImage(e,0,0,1,1,0,0,1,3),0===new Uint32Array(t.getImageData(0,0,1,1).data.buffer)[0]))))}getFromFile(t){var e=this;return xnt((function*(){var{lastModified:r,name:n,size:i,type:a}=t;return bnt(lht,e,cht).call(e,"".concat(r,"_").concat(n,"_").concat(i,"_").concat(a),t)}))()}getFromUrl(t){var e=this;return xnt((function*(){return bnt(lht,e,cht).call(e,t,t)}))()}getFromBlob(t,e){var r=this;return xnt((function*(){var n=yield e;return bnt(lht,r,cht).call(r,t,n)}))()}getFromId(t){var e=this;return xnt((function*(){_nt(oht,e)||Snt(oht,e,new Map);var r=_nt(oht,e).get(t);if(!r)return null;if(r.bitmap)return r.refCounter+=1,r;if(r.file)return e.getFromFile(r.file);if(r.blobPromise){var{blobPromise:n}=r;return delete r.blobPromise,e.getFromBlob(r.id,n)}return e.getFromUrl(r.url)}))()}getFromCanvas(t,e){var r,n,i;_nt(oht,this)||Snt(oht,this,new Map);var a=_nt(oht,this).get(t);if(null!==(i=a)&&void 0!==i&&i.bitmap)return a.refCounter+=1,a;var s=new OffscreenCanvas(e.width,e.height);return s.getContext("2d").drawImage(e,0,0),a={bitmap:s.transferToImageBitmap(),id:"image_".concat(_nt(aht,this),"_").concat((Snt(sht,this,(r=_nt(sht,this),n=r++,r)),n)),refCounter:1,isSvg:!1},_nt(oht,this).set(t,a),_nt(oht,this).set(a.id,a),a}getSvgUrl(t){var e=_nt(oht,this).get(t);return null!=e&&e.isSvg?e.svgUrl:null}deleteId(t){var e;_nt(oht,this)||Snt(oht,this,new Map);var r=_nt(oht,this).get(t);if(r&&(r.refCounter-=1,0===r.refCounter)){var{bitmap:n}=r;if(!r.url&&!r.file){var i=new OffscreenCanvas(n.width,n.height);i.getContext("bitmaprenderer").transferFromImageBitmap(n),r.blobPromise=i.convertToBlob()}null===(e=n.close)||void 0===e||e.call(n),r.bitmap=null}}isValidId(t){return t.startsWith("image_".concat(_nt(aht,this),"_"))}}function cht(t,e){return uht.apply(this,arguments)}function uht(){return uht=xnt((function*(t,e){var r;_nt(oht,this)||Snt(oht,this,new Map);var n=_nt(oht,this).get(t);if(null===n)return null;if(null!==(r=n)&&void 0!==r&&r.bitmap)return n.refCounter+=1,n;try{var i,a,s;if(n||(n={bitmap:null,id:"image_".concat(_nt(aht,this),"_").concat((Snt(sht,this,(i=_nt(sht,this),a=i++,i)),a)),refCounter:0,isSvg:!1}),"string"==typeof e?(n.url=e,s=yield flt(e,"blob")):e instanceof File?s=n.file=e:e instanceof Blob&&(s=e),"image/svg+xml"===s.type){var o=Mst._isSVGFittingCanvas,l=new FileReader,h=new Image,c=new Promise(((t,e)=>{h.onload=()=>{n.bitmap=h,n.isSvg=!0,t()},l.onload=xnt((function*(){var t=n.svgUrl=l.result;h.src=(yield o)?"".concat(t,"#svgView(preserveAspectRatio(none))"):t})),h.onerror=l.onerror=e}));l.readAsDataURL(s),yield c}else n.bitmap=yield createImageBitmap(s);n.refCounter=1}catch(t){Wot(t),n=null}return _nt(oht,this).set(t,n),n&&_nt(oht,this).set(n.id,n),n})),uht.apply(this,arguments)}Mst=hht;var dht=new WeakMap,pht=new WeakMap,fht=new WeakMap,ght=new WeakMap;class vht{constructor(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:128;knt(this,dht,[]),knt(this,pht,!1),knt(this,fht,void 0),knt(this,ght,-1),Snt(fht,this,t)}add(t){var{cmd:e,undo:r,post:n,mustExec:i,type:a=NaN,overwriteIfSameType:s=!1,keepUndo:o=!1}=t;if(i&&e(),!_nt(pht,this)){var l={cmd:e,undo:r,post:n,type:a};if(-1===_nt(ght,this))return _nt(dht,this).length>0&&(_nt(dht,this).length=0),Snt(ght,this,0),void _nt(dht,this).push(l);if(s&&_nt(dht,this)[_nt(ght,this)].type===a)return o&&(l.undo=_nt(dht,this)[_nt(ght,this)].undo),void(_nt(dht,this)[_nt(ght,this)]=l);var h=_nt(ght,this)+1;h===_nt(fht,this)?_nt(dht,this).splice(0,1):(Snt(ght,this,h),h<_nt(dht,this).length&&_nt(dht,this).splice(h)),_nt(dht,this).push(l)}}undo(){if(-1!==_nt(ght,this)){Snt(pht,this,!0);var{undo:t,post:e}=_nt(dht,this)[_nt(ght,this)];t(),null==e||e(),Snt(pht,this,!1),Snt(ght,this,_nt(ght,this)-1)}}redo(){if(_nt(ght,this)<_nt(dht,this).length-1){Snt(ght,this,_nt(ght,this)+1),Snt(pht,this,!0);var{cmd:t,post:e}=_nt(dht,this)[_nt(ght,this)];t(),null==e||e(),Snt(pht,this,!1)}}hasSomethingToUndo(){return-1!==_nt(ght,this)}hasSomethingToRedo(){return _nt(ght,this)<_nt(dht,this).length-1}cleanType(t){if(-1!==_nt(ght,this)){for(var e=_nt(ght,this);e>=0;e--)if(_nt(dht,this)[e].type!==t)return _nt(dht,this).splice(e+1,_nt(ght,this)-e),void Snt(ght,this,e);_nt(dht,this).length=0,Snt(ght,this,-1)}}destroy(){Snt(dht,this,null)}}var mht=new WeakSet;class yht{constructor(t){Mnt(this,mht),this.buffer=[],this.callbacks=new Map,this.allKeys=new Set;var{isMac:e}=nlt.platform;for(var[r,n,i={}]of t)for(var a of r){var s=a.startsWith("mac+");e&&s?(this.callbacks.set(a.slice(4),{callback:n,options:i}),this.allKeys.add(a.split("+").at(-1))):e||s||(this.callbacks.set(a,{callback:n,options:i}),this.allKeys.add(a.split("+").at(-1)))}}exec(t,e){if(this.allKeys.has(e.key)){var r=this.callbacks.get(bnt(mht,this,bht).call(this,e));if(r){var{callback:n,options:{bubbles:i=!1,args:a=[],checker:s=null}}=r;s&&!s(t,e)||(n.bind(t,...a,e)(),i||Slt(e))}}}}function bht(t){t.altKey&&this.buffer.push("alt"),t.ctrlKey&&this.buffer.push("ctrl"),t.metaKey&&this.buffer.push("meta"),t.shiftKey&&this.buffer.push("shift"),this.buffer.push(t.key);var e=this.buffer.join("+");return this.buffer.length=0,e}class wht{get _colors(){var t=new Map([["CanvasText",null],["Canvas",null]]);return function(t){var e=document.createElement("span");for(var r of(e.style.visibility="hidden",document.body.append(e),t.keys())){e.style.color=r;var n=window.getComputedStyle(e).color;t.set(r,Clt(n))}e.remove()}(t),Yot(this,"_colors",t)}convert(t){var e=Clt(t);if(!window.matchMedia("(forced-colors: active)").matches)return e;for(var[r,n]of this._colors)if(n.every(((t,r)=>t===e[r])))return wht._colorsMapping.get(r);return e}getHexCode(t){var e=this._colors.get(t);return e?alt.makeHexColor(...e):t}}Tnt(wht,"_colorsMapping",new Map([["CanvasText",[0,0,0]],["Canvas",[255,255,255]]]));var xht=new WeakMap,Aht=new WeakMap,_ht=new WeakMap,kht=new WeakMap,Sht=new WeakMap,Eht=new WeakMap,Mht=new WeakMap,Tht=new WeakMap,Cht=new WeakMap,Pht=new WeakMap,Iht=new WeakMap,Rht=new WeakMap,Oht=new WeakMap,Lht=new WeakMap,Dht=new WeakMap,Fht=new WeakMap,Nht=new WeakMap,jht=new WeakMap,Bht=new WeakMap,zht=new WeakMap,Wht=new WeakMap,Uht=new WeakMap,Hht=new WeakMap,Ght=new WeakMap,Yht=new WeakMap,Vht=new WeakMap,qht=new WeakMap,Xht=new WeakMap,$ht=new WeakMap,Kht=new WeakMap,Qht=new WeakMap,Jht=new WeakMap,Zht=new WeakMap,tct=new WeakMap,ect=new WeakMap,rct=new WeakMap,nct=new WeakMap,ict=new WeakMap,act=new WeakMap,sct=new WeakMap,oct=new WeakMap,lct=new WeakMap,hct=new WeakSet;class cct{static get _keyboardManager(){var t=cct.prototype,e=t=>_nt(sct,t).contains(document.activeElement)&&"BUTTON"!==document.activeElement.tagName&&t.hasSomethingToControl(),r=(t,e)=>{var{target:r}=e;if(r instanceof HTMLInputElement){var{type:n}=r;return"text"!==n&&"number"!==n}return!0},n=this.TRANSLATE_SMALL,i=this.TRANSLATE_BIG;return Yot(this,"_keyboardManager",new yht([[["ctrl+a","mac+meta+a"],t.selectAll,{checker:r}],[["ctrl+z","mac+meta+z"],t.undo,{checker:r}],[["ctrl+y","ctrl+shift+z","mac+meta+shift+z","ctrl+shift+Z","mac+meta+shift+Z"],t.redo,{checker:r}],[["Backspace","alt+Backspace","ctrl+Backspace","shift+Backspace","mac+Backspace","mac+alt+Backspace","mac+ctrl+Backspace","Delete","ctrl+Delete","shift+Delete","mac+Delete"],t.delete,{checker:r}],[["Enter","mac+Enter"],t.addNewEditorFromKeyboard,{checker:(t,e)=>{var{target:r}=e;return!(r instanceof HTMLButtonElement)&&_nt(sct,t).contains(r)&&!t.isEnterHandled}}],[[" ","mac+ "],t.addNewEditorFromKeyboard,{checker:(t,e)=>{var{target:r}=e;return!(r instanceof HTMLButtonElement)&&_nt(sct,t).contains(document.activeElement)}}],[["Escape","mac+Escape"],t.unselectAll],[["ArrowLeft","mac+ArrowLeft"],t.translateSelectedEditors,{args:[-n,0],checker:e}],[["ctrl+ArrowLeft","mac+shift+ArrowLeft"],t.translateSelectedEditors,{args:[-i,0],checker:e}],[["ArrowRight","mac+ArrowRight"],t.translateSelectedEditors,{args:[n,0],checker:e}],[["ctrl+ArrowRight","mac+shift+ArrowRight"],t.translateSelectedEditors,{args:[i,0],checker:e}],[["ArrowUp","mac+ArrowUp"],t.translateSelectedEditors,{args:[0,-n],checker:e}],[["ctrl+ArrowUp","mac+shift+ArrowUp"],t.translateSelectedEditors,{args:[0,-i],checker:e}],[["ArrowDown","mac+ArrowDown"],t.translateSelectedEditors,{args:[0,n],checker:e}],[["ctrl+ArrowDown","mac+shift+ArrowDown"],t.translateSelectedEditors,{args:[0,i],checker:e}]]))}constructor(t,e,r,n,i,a,s,o,l,h,c,u,d){Mnt(this,hct),knt(this,xht,new AbortController),knt(this,Aht,null),knt(this,_ht,new Map),knt(this,kht,new Map),knt(this,Sht,null),knt(this,Eht,null),knt(this,Mht,null),knt(this,Tht,new vht),knt(this,Cht,null),knt(this,Pht,null),knt(this,Iht,0),knt(this,Rht,new Set),knt(this,Oht,null),knt(this,Lht,null),knt(this,Dht,new Set),Tnt(this,"_editorUndoBar",null),knt(this,Fht,!1),knt(this,Nht,!1),knt(this,jht,!1),knt(this,Bht,null),knt(this,zht,null),knt(this,Wht,null),knt(this,Uht,null),knt(this,Hht,!1),knt(this,Ght,null),knt(this,Yht,new iht),knt(this,Vht,!1),knt(this,qht,!1),knt(this,Xht,null),knt(this,$ht,null),knt(this,Kht,null),knt(this,Qht,null),knt(this,Jht,eot.NONE),knt(this,Zht,new Set),knt(this,tct,null),knt(this,ect,null),knt(this,rct,null),knt(this,nct,{isEditing:!1,isEmpty:!0,hasSomethingToUndo:!1,hasSomethingToRedo:!1,hasSelectedEditor:!1,hasSelectedText:!1}),knt(this,ict,[0,0]),knt(this,act,null),knt(this,sct,null),knt(this,oct,null),knt(this,lct,null);var p=this._signal=_nt(xht,this).signal;Snt(sct,this,t),Snt(oct,this,e),Snt(Sht,this,r),this._eventBus=n,n._on("editingaction",this.onEditingAction.bind(this),{signal:p}),n._on("pagechanging",this.onPageChanging.bind(this),{signal:p}),n._on("scalechanging",this.onScaleChanging.bind(this),{signal:p}),n._on("rotationchanging",this.onRotationChanging.bind(this),{signal:p}),n._on("setpreference",this.onSetPreference.bind(this),{signal:p}),n._on("switchannotationeditorparams",(t=>this.updateParams(t.type,t.value)),{signal:p}),bnt(hct,this,vct).call(this),bnt(hct,this,_ct).call(this),bnt(hct,this,bct).call(this),Snt(Eht,this,i.annotationStorage),Snt(Bht,this,i.filterFactory),Snt(ect,this,a),Snt(Uht,this,s||null),Snt(Fht,this,o),Snt(Nht,this,l),Snt(jht,this,h),Snt(Qht,this,c||null),this.viewParameters={realScale:plt.PDF_TO_CSS_UNITS,rotation:0},this.isShiftKeyDown=!1,this._editorUndoBar=u||null,this._supportsPinchToZoom=!1!==d}destroy(){var t,e,r,n,i;for(var a of(null===(t=_nt(lct,this))||void 0===t||t.resolve(),Snt(lct,this,null),null===(e=_nt(xht,this))||void 0===e||e.abort(),Snt(xht,this,null),this._signal=null,_nt(kht,this).values()))a.destroy();_nt(kht,this).clear(),_nt(_ht,this).clear(),_nt(Dht,this).clear(),Snt(Aht,this,null),_nt(Zht,this).clear(),_nt(Tht,this).destroy(),null===(r=_nt(Sht,this))||void 0===r||r.destroy(),null===(n=_nt(Ght,this))||void 0===n||n.hide(),Snt(Ght,this,null),_nt(zht,this)&&(clearTimeout(_nt(zht,this)),Snt(zht,this,null)),_nt(act,this)&&(clearTimeout(_nt(act,this)),Snt(act,this,null)),null===(i=this._editorUndoBar)||void 0===i||i.destroy()}combinedSignal(t){return AbortSignal.any([this._signal,t.signal])}get mlManager(){return _nt(Qht,this)}get useNewAltTextFlow(){return _nt(Nht,this)}get useNewAltTextWhenAddingImage(){return _nt(jht,this)}get hcmFilter(){return Yot(this,"hcmFilter",_nt(ect,this)?_nt(Bht,this).addHCMFilter(_nt(ect,this).foreground,_nt(ect,this).background):"none")}get direction(){return Yot(this,"direction",getComputedStyle(_nt(sct,this)).direction)}get highlightColors(){return Yot(this,"highlightColors",_nt(Uht,this)?new Map(_nt(Uht,this).split(",").map((t=>t.split("=").map((t=>t.trim()))))):null)}get highlightColorNames(){return Yot(this,"highlightColorNames",this.highlightColors?new Map(Array.from(this.highlightColors,(t=>t.reverse()))):null)}setCurrentDrawingSession(t){t?(this.unselectAll(),this.disableUserSelect(!0)):this.disableUserSelect(!1),Snt(Pht,this,t)}setMainHighlightColorPicker(t){Snt(Kht,this,t)}editAltText(t){var e,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];null===(e=_nt(Sht,this))||void 0===e||e.editAltText(this,t,r)}switchToMode(t,e){this._eventBus.on("annotationeditormodechanged",e,{once:!0,signal:this._signal}),this._eventBus.dispatch("showannotationeditorui",{source:this,mode:t})}setPreference(t,e){this._eventBus.dispatch("setpreference",{source:this,name:t,value:e})}onSetPreference(t){var{name:e,value:r}=t;if("enableNewAltTextWhenAddingImage"===e)Snt(jht,this,r)}onPageChanging(t){var{pageNumber:e}=t;Snt(Iht,this,e-1)}focusMainContainer(){_nt(sct,this).focus()}findParent(t,e){for(var r of _nt(kht,this).values()){var{x:n,y:i,width:a,height:s}=r.div.getBoundingClientRect();if(t>=n&&t<=n+a&&e>=i&&e<=i+s)return r}return null}disableUserSelect(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];_nt(oct,this).classList.toggle("noUserSelect",t)}addShouldRescale(t){_nt(Dht,this).add(t)}removeShouldRescale(t){_nt(Dht,this).delete(t)}onScaleChanging(t){var e,{scale:r}=t;for(var n of(this.commitOrRemove(),this.viewParameters.realScale=r*plt.PDF_TO_CSS_UNITS,_nt(Dht,this)))n.onScaleChanging();null===(e=_nt(Pht,this))||void 0===e||e.onScaleChanging()}onRotationChanging(t){var{pagesRotation:e}=t;this.commitOrRemove(),this.viewParameters.rotation=e}highlightSelection(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",e=document.getSelection();if(e&&!e.isCollapsed){var{anchorNode:r,anchorOffset:n,focusNode:i,focusOffset:a}=e,s=e.toString(),o=bnt(hct,this,uct).call(this,e).closest(".textLayer"),l=this.getSelectionBoxes(o);if(l){e.empty();var h=bnt(hct,this,dct).call(this,o),c=_nt(Jht,this)===eot.NONE,u=()=>{null==h||h.createAndAddNewEditor({x:0,y:0},!1,{methodOfCreation:t,boxes:l,anchorNode:r,anchorOffset:n,focusNode:i,focusOffset:a,text:s}),c&&this.showAllEditors("highlight",!0,!0)};c?this.switchToMode(eot.HIGHLIGHT,u):u()}}}addToAnnotationStorage(t){t.isEmpty()||!_nt(Eht,this)||_nt(Eht,this).has(t.id)||_nt(Eht,this).setValue(t.id,t)}blur(){if(this.isShiftKeyDown=!1,_nt(Hht,this)&&(Snt(Hht,this,!1),bnt(hct,this,gct).call(this,"main_toolbar")),this.hasSelection){var{activeElement:t}=document;for(var e of _nt(Zht,this))if(e.div.contains(t)){Snt($ht,this,[e,t]),e._focusEventsAllowed=!1;break}}}focus(){if(_nt($ht,this)){var[t,e]=_nt($ht,this);Snt($ht,this,null),e.addEventListener("focusin",(()=>{t._focusEventsAllowed=!0}),{once:!0,signal:this._signal}),e.focus()}}addEditListeners(){bnt(hct,this,bct).call(this),bnt(hct,this,xct).call(this)}removeEditListeners(){bnt(hct,this,wct).call(this),bnt(hct,this,Act).call(this)}dragOver(t){for(var{type:e}of t.dataTransfer.items)for(var r of _nt(Lht,this))if(r.isHandlingMimeForPasting(e))return t.dataTransfer.dropEffect="copy",void t.preventDefault()}drop(t){for(var e of t.dataTransfer.items)for(var r of _nt(Lht,this))if(r.isHandlingMimeForPasting(e.type))return r.paste(e,this.currentLayer),void t.preventDefault()}copy(t){var e;if(t.preventDefault(),null===(e=_nt(Aht,this))||void 0===e||e.commitOrRemove(),this.hasSelection){var r=[];for(var n of _nt(Zht,this)){var i=n.serialize(!0);i&&r.push(i)}0!==r.length&&t.clipboardData.setData("application/pdfjs",JSON.stringify(r))}}cut(t){this.copy(t),this.delete()}paste(t){var e=this;return xnt((function*(){t.preventDefault();var{clipboardData:r}=t;for(var n of r.items)for(var i of _nt(Lht,e))if(i.isHandlingMimeForPasting(n.type))return void i.paste(n,e.currentLayer);var a=r.getData("application/pdfjs");if(a){try{a=JSON.parse(a)}catch(t){return void Wot('paste: "'.concat(t.message,'".'))}if(Array.isArray(a)){e.unselectAll();var s=e.currentLayer;try{var o=[];for(var l of a){var h=yield s.deserialize(l);if(!h)return;o.push(h)}e.addCommands({cmd:()=>{for(var t of o)bnt(hct,e,Cct).call(e,t);bnt(hct,e,Rct).call(e,o)},undo:()=>{for(var t of o)t.remove()},mustExec:!0})}catch(t){Wot('paste: "'.concat(t.message,'".'))}}}}))()}keydown(t){this.isShiftKeyDown||"Shift"!==t.key||(this.isShiftKeyDown=!0),_nt(Jht,this)===eot.NONE||this.isEditorHandlingKeyboard||cct._keyboardManager.exec(this,t)}keyup(t){this.isShiftKeyDown&&"Shift"===t.key&&(this.isShiftKeyDown=!1,_nt(Hht,this)&&(Snt(Hht,this,!1),bnt(hct,this,gct).call(this,"main_toolbar")))}onEditingAction(t){var{name:e}=t;switch(e){case"undo":case"redo":case"delete":case"selectAll":this[e]();break;case"highlightSelection":this.highlightSelection("context_menu")}}setEditingState(t){t?(bnt(hct,this,mct).call(this),bnt(hct,this,xct).call(this),bnt(hct,this,kct).call(this,{isEditing:_nt(Jht,this)!==eot.NONE,isEmpty:bnt(hct,this,Ict).call(this),hasSomethingToUndo:_nt(Tht,this).hasSomethingToUndo(),hasSomethingToRedo:_nt(Tht,this).hasSomethingToRedo(),hasSelectedEditor:!1})):(bnt(hct,this,yct).call(this),bnt(hct,this,Act).call(this),bnt(hct,this,kct).call(this,{isEditing:!1}),this.disableUserSelect(!1))}registerEditorTypes(t){if(!_nt(Lht,this))for(var e of(Snt(Lht,this,t),_nt(Lht,this)))bnt(hct,this,Sct).call(this,e.defaultPropertiesToUpdate)}getId(){return _nt(Yht,this).id}get currentLayer(){return _nt(kht,this).get(_nt(Iht,this))}getLayer(t){return _nt(kht,this).get(t)}get currentPageIndex(){return _nt(Iht,this)}addLayer(t){_nt(kht,this).set(t.pageIndex,t),_nt(Vht,this)?t.enable():t.disable()}removeLayer(t){_nt(kht,this).delete(t.pageIndex)}updateMode(t){var e=arguments,r=this;return xnt((function*(){var n=e.length>1&&void 0!==e[1]?e[1]:null,i=e.length>2&&void 0!==e[2]&&e[2];if(_nt(Jht,r)!==t&&(!_nt(lct,r)||(yield _nt(lct,r).promise,_nt(lct,r)))){var a;if(Snt(lct,r,Promise.withResolvers()),Snt(Jht,r,t),t===eot.NONE)return r.setEditingState(!1),bnt(hct,r,Tct).call(r),null===(a=r._editorUndoBar)||void 0===a||a.hide(),void _nt(lct,r).resolve();for(var s of(r.setEditingState(!0),yield bnt(hct,r,Ect).call(r),r.unselectAll(),_nt(kht,r).values()))s.updateMode(t);if(!n)return i&&r.addNewEditorFromKeyboard(),void _nt(lct,r).resolve();for(var o of _nt(_ht,r).values())o.annotationElementId===n?(r.setSelected(o),o.enterInEditMode()):o.unselect();_nt(lct,r).resolve()}}))()}addNewEditorFromKeyboard(){this.currentLayer.canCreateNewEmptyEditor()&&this.currentLayer.addNewEditor()}updateToolbar(t){t!==_nt(Jht,this)&&this._eventBus.dispatch("switchannotationeditormode",{source:this,mode:t})}updateParams(t,e){var r;if(_nt(Lht,this)){switch(t){case rot.CREATE:return void this.currentLayer.addNewEditor();case rot.HIGHLIGHT_DEFAULT_COLOR:null===(r=_nt(Kht,this))||void 0===r||r.updateColor(e);break;case rot.HIGHLIGHT_SHOW_ALL:this._eventBus.dispatch("reporttelemetry",{source:this,details:{type:"editing",data:{type:"highlight",action:"toggle_visibility"}}}),(_nt(rct,this)||Snt(rct,this,new Map)).set(t,e),this.showAllEditors("highlight",e)}for(var n of _nt(Zht,this))n.updateParams(t,e);for(var i of _nt(Lht,this))i.updateDefaultParams(t,e)}}showAllEditors(t,e){var r,n;for(var i of _nt(_ht,this).values())i.editorType===t&&i.show(e);(null===(r=null===(n=_nt(rct,this))||void 0===n?void 0:n.get(rot.HIGHLIGHT_SHOW_ALL))||void 0===r||r)!==e&&bnt(hct,this,Sct).call(this,[[rot.HIGHLIGHT_SHOW_ALL,e]])}enableWaiting(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(_nt(qht,this)!==t)for(var e of(Snt(qht,this,t),_nt(kht,this).values()))t?e.disableClick():e.enableClick(),e.div.classList.toggle("waiting",t)}getEditors(t){var e=[];for(var r of _nt(_ht,this).values())r.pageIndex===t&&e.push(r);return e}getEditor(t){return _nt(_ht,this).get(t)}addEditor(t){_nt(_ht,this).set(t.id,t)}removeEditor(t){var e;(t.div.contains(document.activeElement)&&(_nt(zht,this)&&clearTimeout(_nt(zht,this)),Snt(zht,this,setTimeout((()=>{this.focusMainContainer(),Snt(zht,this,null)}),0))),_nt(_ht,this).delete(t.id),this.unselect(t),t.annotationElementId&&_nt(Rht,this).has(t.annotationElementId))||(null===(e=_nt(Eht,this))||void 0===e||e.remove(t.id))}addDeletedAnnotationElement(t){_nt(Rht,this).add(t.annotationElementId),this.addChangedExistingAnnotation(t),t.deleted=!0}isDeletedAnnotationElement(t){return _nt(Rht,this).has(t)}removeDeletedAnnotationElement(t){_nt(Rht,this).delete(t.annotationElementId),this.removeChangedExistingAnnotation(t),t.deleted=!1}setActiveEditor(t){_nt(Aht,this)!==t&&(Snt(Aht,this,t),t&&bnt(hct,this,Sct).call(this,t.propertiesToUpdate))}updateUI(t){Ent(hct,this,Pct)===t&&bnt(hct,this,Sct).call(this,t.propertiesToUpdate)}updateUIForDefaultProperties(t){bnt(hct,this,Sct).call(this,t.defaultPropertiesToUpdate)}toggleSelected(t){if(_nt(Zht,this).has(t))return _nt(Zht,this).delete(t),t.unselect(),void bnt(hct,this,kct).call(this,{hasSelectedEditor:this.hasSelection});_nt(Zht,this).add(t),t.select(),bnt(hct,this,Sct).call(this,t.propertiesToUpdate),bnt(hct,this,kct).call(this,{hasSelectedEditor:!0})}setSelected(t){var e;for(var r of(null===(e=_nt(Pht,this))||void 0===e||e.commitOrRemove(),_nt(Zht,this)))r!==t&&r.unselect();_nt(Zht,this).clear(),_nt(Zht,this).add(t),t.select(),bnt(hct,this,Sct).call(this,t.propertiesToUpdate),bnt(hct,this,kct).call(this,{hasSelectedEditor:!0})}isSelected(t){return _nt(Zht,this).has(t)}get firstSelectedEditor(){return _nt(Zht,this).values().next().value}unselect(t){t.unselect(),_nt(Zht,this).delete(t),bnt(hct,this,kct).call(this,{hasSelectedEditor:this.hasSelection})}get hasSelection(){return 0!==_nt(Zht,this).size}get isEnterHandled(){return 1===_nt(Zht,this).size&&this.firstSelectedEditor.isEnterHandled}undo(){var t;_nt(Tht,this).undo(),bnt(hct,this,kct).call(this,{hasSomethingToUndo:_nt(Tht,this).hasSomethingToUndo(),hasSomethingToRedo:!0,isEmpty:bnt(hct,this,Ict).call(this)}),null===(t=this._editorUndoBar)||void 0===t||t.hide()}redo(){_nt(Tht,this).redo(),bnt(hct,this,kct).call(this,{hasSomethingToUndo:!0,hasSomethingToRedo:_nt(Tht,this).hasSomethingToRedo(),isEmpty:bnt(hct,this,Ict).call(this)})}addCommands(t){_nt(Tht,this).add(t),bnt(hct,this,kct).call(this,{hasSomethingToUndo:!0,hasSomethingToRedo:!1,isEmpty:bnt(hct,this,Ict).call(this)})}cleanUndoStack(t){_nt(Tht,this).cleanType(t)}delete(){var t;this.commitOrRemove();var e=null===(t=this.currentLayer)||void 0===t?void 0:t.endDrawingSession(!0);if(this.hasSelection||e){var r=e?[e]:[..._nt(Zht,this)],n=()=>{for(var t of r)bnt(hct,this,Cct).call(this,t)};this.addCommands({cmd:()=>{var t;for(var e of(null===(t=this._editorUndoBar)||void 0===t||t.show(n,1===r.length?r[0].editorType:r.length),r))e.remove()},undo:n,mustExec:!0})}}commitOrRemove(){var t;null===(t=_nt(Aht,this))||void 0===t||t.commitOrRemove()}hasSomethingToControl(){return _nt(Aht,this)||this.hasSelection}selectAll(){for(var t of _nt(Zht,this))t.commit();bnt(hct,this,Rct).call(this,_nt(_ht,this).values())}unselectAll(){var t;if((!_nt(Aht,this)||(_nt(Aht,this).commitOrRemove(),_nt(Jht,this)===eot.NONE))&&(null===(t=_nt(Pht,this))||void 0===t||!t.commitOrRemove())&&this.hasSelection){for(var e of _nt(Zht,this))e.unselect();_nt(Zht,this).clear(),bnt(hct,this,kct).call(this,{hasSelectedEditor:!1})}}translateSelectedEditors(t,e){if(arguments.length>2&&void 0!==arguments[2]&&arguments[2]||this.commitOrRemove(),this.hasSelection){_nt(ict,this)[0]+=t,_nt(ict,this)[1]+=e;var[r,n]=_nt(ict,this),i=[..._nt(Zht,this)];for(var a of(_nt(act,this)&&clearTimeout(_nt(act,this)),Snt(act,this,setTimeout((()=>{Snt(act,this,null),_nt(ict,this)[0]=_nt(ict,this)[1]=0,this.addCommands({cmd:()=>{for(var t of i)_nt(_ht,this).has(t.id)&&t.translateInPage(r,n)},undo:()=>{for(var t of i)_nt(_ht,this).has(t.id)&&t.translateInPage(-r,-n)},mustExec:!1})}),1e3)),i))a.translateInPage(t,e)}}setUpDragSession(){if(this.hasSelection)for(var t of(this.disableUserSelect(!0),Snt(Oht,this,new Map),_nt(Zht,this)))_nt(Oht,this).set(t,{savedX:t.x,savedY:t.y,savedPageIndex:t.pageIndex,newX:0,newY:0,newPageIndex:-1})}endDragSession(){if(!_nt(Oht,this))return!1;this.disableUserSelect(!1);var t=_nt(Oht,this);Snt(Oht,this,null);var e=!1;for(var[{x:r,y:n,pageIndex:i},a]of t)a.newX=r,a.newY=n,a.newPageIndex=i,e||(e=r!==a.savedX||n!==a.savedY||i!==a.savedPageIndex);if(!e)return!1;var s=(t,e,r,n)=>{if(_nt(_ht,this).has(t.id)){var i=_nt(kht,this).get(n);i?t._setParentAndPosition(i,e,r):(t.pageIndex=n,t.x=e,t.y=r)}};return this.addCommands({cmd:()=>{for(var[e,{newX:r,newY:n,newPageIndex:i}]of t)s(e,r,n,i)},undo:()=>{for(var[e,{savedX:r,savedY:n,savedPageIndex:i}]of t)s(e,r,n,i)},mustExec:!0}),!0}dragSelectedEditors(t,e){if(_nt(Oht,this))for(var r of _nt(Oht,this).keys())r.drag(t,e)}rebuild(t){if(null===t.parent){var e=this.getLayer(t.pageIndex);e?(e.changeParent(t),e.addOrRebuild(t)):(this.addEditor(t),this.addToAnnotationStorage(t),t.rebuild())}else t.parent.addOrRebuild(t)}get isEditorHandlingKeyboard(){var t;return(null===(t=this.getActive())||void 0===t?void 0:t.shouldGetKeyboardEvents())||1===_nt(Zht,this).size&&this.firstSelectedEditor.shouldGetKeyboardEvents()}isActive(t){return _nt(Aht,this)===t}getActive(){return _nt(Aht,this)}getMode(){return _nt(Jht,this)}get imageManager(){return Yot(this,"imageManager",new hht)}getSelectionBoxes(t){if(!t)return null;for(var e=document.getSelection(),r=0,n=e.rangeCount;r<n;r++)if(!t.contains(e.getRangeAt(r).commonAncestorContainer))return null;var i,{x:a,y:s,width:o,height:l}=t.getBoundingClientRect();switch(t.getAttribute("data-main-rotation")){case"90":i=(t,e,r,n)=>({x:(e-s)/l,y:1-(t+r-a)/o,width:n/l,height:r/o});break;case"180":i=(t,e,r,n)=>({x:1-(t+r-a)/o,y:1-(e+n-s)/l,width:r/o,height:n/l});break;case"270":i=(t,e,r,n)=>({x:1-(e+n-s)/l,y:(t-a)/o,width:n/l,height:r/o});break;default:i=(t,e,r,n)=>({x:(t-a)/o,y:(e-s)/l,width:r/o,height:n/l})}for(var h=[],c=0,u=e.rangeCount;c<u;c++){var d=e.getRangeAt(c);if(!d.collapsed)for(var{x:p,y:f,width:g,height:v}of d.getClientRects())0!==g&&0!==v&&h.push(i(p,f,g,v))}return 0===h.length?null:h}addChangedExistingAnnotation(t){var{annotationElementId:e,id:r}=t;(_nt(Mht,this)||Snt(Mht,this,new Map)).set(e,r)}removeChangedExistingAnnotation(t){var e,{annotationElementId:r}=t;null===(e=_nt(Mht,this))||void 0===e||e.delete(r)}renderAnnotationElement(t){var e,r=null===(e=_nt(Mht,this))||void 0===e?void 0:e.get(t.data.id);if(r){var n=_nt(Eht,this).getRawValue(r);n&&(_nt(Jht,this)!==eot.NONE||n.hasBeenModified)&&n.renderAnnotationElement(t)}}}function uct(t){var{anchorNode:e}=t;return e.nodeType===Node.TEXT_NODE?e.parentElement:e}function dct(t){var{currentLayer:e}=this;if(e.hasTextLayer(t))return e;for(var r of _nt(kht,this).values())if(r.hasTextLayer(t))return r;return null}function pct(){var t=document.getSelection();if(t&&!t.isCollapsed){var e=bnt(hct,this,uct).call(this,t).closest(".textLayer"),r=this.getSelectionBoxes(e);r&&(_nt(Ght,this)||Snt(Ght,this,new Jlt(this)),_nt(Ght,this).show(e,r,"ltr"===this.direction))}}function fct(){var t,e=document.getSelection();if(e&&!e.isCollapsed){var{anchorNode:r}=e;if(r!==_nt(tct,this)){var n,i=bnt(hct,this,uct).call(this,e).closest(".textLayer");if(i){if(null===(t=_nt(Ght,this))||void 0===t||t.hide(),Snt(tct,this,r),bnt(hct,this,kct).call(this,{hasSelectedText:!0}),(_nt(Jht,this)===eot.HIGHLIGHT||_nt(Jht,this)===eot.NONE)&&(_nt(Jht,this)===eot.HIGHLIGHT&&this.showAllEditors("highlight",!0,!0),Snt(Hht,this,this.isShiftKeyDown),!this.isShiftKeyDown)){var a=_nt(Jht,this)===eot.HIGHLIGHT?bnt(hct,this,dct).call(this,i):null;null==a||a.toggleDrawing();var s=new AbortController,o=this.combinedSignal(s),l=t=>{"pointerup"===t.type&&0!==t.button||(s.abort(),null==a||a.toggleDrawing(!0),"pointerup"===t.type&&bnt(hct,this,gct).call(this,"main_toolbar"))};window.addEventListener("pointerup",l,{signal:o}),window.addEventListener("blur",l,{signal:o})}}else _nt(tct,this)&&(null===(n=_nt(Ght,this))||void 0===n||n.hide(),Snt(tct,this,null),bnt(hct,this,kct).call(this,{hasSelectedText:!1}))}}else{var h;_nt(tct,this)&&(null===(h=_nt(Ght,this))||void 0===h||h.hide(),Snt(tct,this,null),bnt(hct,this,kct).call(this,{hasSelectedText:!1}))}}function gct(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";_nt(Jht,this)===eot.HIGHLIGHT?this.highlightSelection(t):_nt(Fht,this)&&bnt(hct,this,pct).call(this)}function vct(){document.addEventListener("selectionchange",bnt(hct,this,fct).bind(this),{signal:this._signal})}function mct(){if(!_nt(Wht,this)){Snt(Wht,this,new AbortController);var t=this.combinedSignal(_nt(Wht,this));window.addEventListener("focus",this.focus.bind(this),{signal:t}),window.addEventListener("blur",this.blur.bind(this),{signal:t})}}function yct(){var t;null===(t=_nt(Wht,this))||void 0===t||t.abort(),Snt(Wht,this,null)}function bct(){if(!_nt(Xht,this)){Snt(Xht,this,new AbortController);var t=this.combinedSignal(_nt(Xht,this));window.addEventListener("keydown",this.keydown.bind(this),{signal:t}),window.addEventListener("keyup",this.keyup.bind(this),{signal:t})}}function wct(){var t;null===(t=_nt(Xht,this))||void 0===t||t.abort(),Snt(Xht,this,null)}function xct(){if(!_nt(Cht,this)){Snt(Cht,this,new AbortController);var t=this.combinedSignal(_nt(Cht,this));document.addEventListener("copy",this.copy.bind(this),{signal:t}),document.addEventListener("cut",this.cut.bind(this),{signal:t}),document.addEventListener("paste",this.paste.bind(this),{signal:t})}}function Act(){var t;null===(t=_nt(Cht,this))||void 0===t||t.abort(),Snt(Cht,this,null)}function _ct(){var t=this._signal;document.addEventListener("dragover",this.dragOver.bind(this),{signal:t}),document.addEventListener("drop",this.drop.bind(this),{signal:t})}function kct(t){var e=Object.entries(t).some((t=>{var[e,r]=t;return _nt(nct,this)[e]!==r}));e&&(this._eventBus.dispatch("annotationeditorstateschanged",{source:this,details:Object.assign(_nt(nct,this),t)}),_nt(Jht,this)===eot.HIGHLIGHT&&!1===t.hasSelectedEditor&&bnt(hct,this,Sct).call(this,[[rot.HIGHLIGHT_FREE,!0]]))}function Sct(t){this._eventBus.dispatch("annotationeditorparamschanged",{source:this,details:t})}function Ect(){return Mct.apply(this,arguments)}function Mct(){return(Mct=xnt((function*(){if(!_nt(Vht,this)){Snt(Vht,this,!0);var t=[];for(var e of _nt(kht,this).values())t.push(e.enable());for(var r of(yield Promise.all(t),_nt(_ht,this).values()))r.enable()}}))).apply(this,arguments)}function Tct(){if(this.unselectAll(),_nt(Vht,this)){for(var t of(Snt(Vht,this,!1),_nt(kht,this).values()))t.disable();for(var e of _nt(_ht,this).values())e.disable()}}function Cct(t){var e=_nt(kht,this).get(t.pageIndex);e?e.addOrRebuild(t):(this.addEditor(t),this.addToAnnotationStorage(t))}function Pct(t){var e=null;for(e of _nt(Zht,t));return e}function Ict(){if(0===_nt(_ht,this).size)return!0;if(1===_nt(_ht,this).size)for(var t of _nt(_ht,this).values())return t.isEmpty();return!1}function Rct(t){for(var e of _nt(Zht,this))e.unselect();for(var r of(_nt(Zht,this).clear(),t))r.isEmpty()||(_nt(Zht,this).add(r),r.select());bnt(hct,this,kct).call(this,{hasSelectedEditor:this.hasSelection})}Tnt(cct,"TRANSLATE_SMALL",1),Tnt(cct,"TRANSLATE_BIG",10);var Oct=new WeakMap,Lct=new WeakMap,Dct=new WeakMap,Fct=new WeakMap,Nct=new WeakMap,jct=new WeakMap,Bct=new WeakMap,zct=new WeakMap,Wct=new WeakMap,Uct=new WeakMap,Hct=new WeakMap,Gct=new WeakMap,Yct=new WeakSet;class Vct{constructor(t){Mnt(this,Yct),knt(this,Oct,null),knt(this,Lct,!1),knt(this,Dct,null),knt(this,Fct,null),knt(this,Nct,null),knt(this,jct,null),knt(this,Bct,!1),knt(this,zct,null),knt(this,Wct,null),knt(this,Uct,null),knt(this,Hct,null),knt(this,Gct,!1),Snt(Wct,this,t),Snt(Gct,this,t._uiManager.useNewAltTextFlow),Kct._||(Kct._=Object.freeze({added:"pdfjs-editor-new-alt-text-added-button","added-label":"pdfjs-editor-new-alt-text-added-button-label",missing:"pdfjs-editor-new-alt-text-missing-button","missing-label":"pdfjs-editor-new-alt-text-missing-button-label",review:"pdfjs-editor-new-alt-text-to-review-button","review-label":"pdfjs-editor-new-alt-text-to-review-button-label"}))}static initialize(t){var e;null!==(e=Vct._l10n)&&void 0!==e||(Vct._l10n=t)}render(){var t=this;return xnt((function*(){var e=Snt(Dct,t,document.createElement("button"));e.className="altText",e.tabIndex="0";var r=Snt(Fct,t,document.createElement("span"));e.append(r),_nt(Gct,t)?(e.classList.add("new"),e.setAttribute("data-l10n-id",Kct._.missing),r.setAttribute("data-l10n-id",Kct._["missing-label"])):(e.setAttribute("data-l10n-id","pdfjs-editor-alt-text-button"),r.setAttribute("data-l10n-id","pdfjs-editor-alt-text-button-label"));var n=_nt(Wct,t)._uiManager._signal;e.addEventListener("contextmenu",klt,{signal:n}),e.addEventListener("pointerdown",(t=>t.stopPropagation()),{signal:n});var i=e=>{e.preventDefault(),_nt(Wct,t)._uiManager.editAltText(_nt(Wct,t)),_nt(Gct,t)&&_nt(Wct,t)._reportTelemetry({action:"pdfjs.image.alt_text.image_status_label_clicked",data:{label:Ent(Yct,t,qct)}})};return e.addEventListener("click",i,{capture:!0,signal:n}),e.addEventListener("keydown",(r=>{r.target===e&&"Enter"===r.key&&(Snt(Bct,t,!0),i(r))}),{signal:n}),yield bnt(Yct,t,Xct).call(t),e}))()}finish(){_nt(Dct,this)&&(_nt(Dct,this).focus({focusVisible:_nt(Bct,this)}),Snt(Bct,this,!1))}isEmpty(){return _nt(Gct,this)?null===_nt(Oct,this):!_nt(Oct,this)&&!_nt(Lct,this)}hasData(){return _nt(Gct,this)?null!==_nt(Oct,this)||!!_nt(Uct,this):this.isEmpty()}get guessedText(){return _nt(Uct,this)}setGuessedText(t){var e=this;return xnt((function*(){null===_nt(Oct,e)&&(Snt(Uct,e,t),Snt(Hct,e,yield Vct._l10n.get("pdfjs-editor-new-alt-text-generated-alt-text-with-disclaimer",{generatedAltText:t})),bnt(Yct,e,Xct).call(e))}))()}toggleAltTextBadge(){var t,e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(!_nt(Gct,this)||_nt(Oct,this))return null===(t=_nt(zct,this))||void 0===t||t.remove(),void Snt(zct,this,null);if(!_nt(zct,this)){var r=Snt(zct,this,document.createElement("div"));r.className="noAltTextBadge",_nt(Wct,this).div.append(r)}_nt(zct,this).classList.toggle("hidden",!e)}serialize(t){var e=_nt(Oct,this);return t||_nt(Uct,this)!==e||(e=_nt(Hct,this)),{altText:e,decorative:_nt(Lct,this),guessedText:_nt(Uct,this),textWithDisclaimer:_nt(Hct,this)}}get data(){return{altText:_nt(Oct,this),decorative:_nt(Lct,this)}}set data(t){var{altText:e,decorative:r,guessedText:n,textWithDisclaimer:i,cancel:a=!1}=t;n&&(Snt(Uct,this,n),Snt(Hct,this,i)),_nt(Oct,this)===e&&_nt(Lct,this)===r||(a||(Snt(Oct,this,e),Snt(Lct,this,r)),bnt(Yct,this,Xct).call(this))}toggle(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];_nt(Dct,this)&&(!t&&_nt(jct,this)&&(clearTimeout(_nt(jct,this)),Snt(jct,this,null)),_nt(Dct,this).disabled=!t)}shown(){_nt(Wct,this)._reportTelemetry({action:"pdfjs.image.alt_text.image_status_label_displayed",data:{label:Ent(Yct,this,qct)}})}destroy(){var t,e;null===(t=_nt(Dct,this))||void 0===t||t.remove(),Snt(Dct,this,null),Snt(Fct,this,null),Snt(Nct,this,null),null===(e=_nt(zct,this))||void 0===e||e.remove(),Snt(zct,this,null)}}function qct(t){return(_nt(Oct,t)?"added":null===_nt(Oct,t)&&t.guessedText&&"review")||"missing"}function Xct(){return $ct.apply(this,arguments)}function $ct(){return($ct=xnt((function*(){var t=_nt(Dct,this);if(t){if(_nt(Gct,this)){var e,r;if(t.classList.toggle("done",!!_nt(Oct,this)),t.setAttribute("data-l10n-id",Kct._[Ent(Yct,this,qct)]),null===(e=_nt(Fct,this))||void 0===e||e.setAttribute("data-l10n-id",Kct._["".concat(Ent(Yct,this,qct),"-label")]),!_nt(Oct,this))return void(null===(r=_nt(Nct,this))||void 0===r||r.remove())}else{var n;if(!_nt(Oct,this)&&!_nt(Lct,this))return t.classList.remove("done"),void(null===(n=_nt(Nct,this))||void 0===n||n.remove());t.classList.add("done"),t.setAttribute("data-l10n-id","pdfjs-editor-alt-text-edit-button")}var i=_nt(Nct,this);if(!i){Snt(Nct,this,i=document.createElement("span")),i.className="tooltip",i.setAttribute("role","tooltip"),i.id="alt-text-tooltip-".concat(_nt(Wct,this).id);var a=_nt(Wct,this)._uiManager._signal;a.addEventListener("abort",(()=>{clearTimeout(_nt(jct,this)),Snt(jct,this,null)}),{once:!0}),t.addEventListener("mouseenter",(()=>{Snt(jct,this,setTimeout((()=>{Snt(jct,this,null),_nt(Nct,this).classList.add("show"),_nt(Wct,this)._reportTelemetry({action:"alt_text_tooltip"})}),100))}),{signal:a}),t.addEventListener("mouseleave",(()=>{var t;_nt(jct,this)&&(clearTimeout(_nt(jct,this)),Snt(jct,this,null)),null===(t=_nt(Nct,this))||void 0===t||t.classList.remove("show")}),{signal:a})}_nt(Lct,this)?i.setAttribute("data-l10n-id","pdfjs-editor-alt-text-decorative-tooltip"):(i.removeAttribute("data-l10n-id"),i.textContent=_nt(Oct,this)),i.parentNode||t.append(i);var s=_nt(Wct,this).getImageForAltText();null==s||s.setAttribute("aria-describedby",i.id)}}))).apply(this,arguments)}var Kct={_:null};Tnt(Vct,"_l10n",null);var Qct=new WeakMap,Jct=new WeakMap,Zct=new WeakMap,tut=new WeakMap,eut=new WeakMap,rut=new WeakMap,nut=new WeakMap,iut=new WeakMap,aut=new WeakMap,sut=new WeakMap,out=new WeakMap,lut=new WeakSet;class hut{constructor(t){var{container:e,isPinchingDisabled:r=null,isPinchingStopped:n=null,onPinchStart:i=null,onPinching:a=null,onPinchEnd:s=null,signal:o}=t;Mnt(this,lut),knt(this,Qct,void 0),knt(this,Jct,!1),knt(this,Zct,null),knt(this,tut,void 0),knt(this,eut,void 0),knt(this,rut,void 0),knt(this,nut,void 0),knt(this,iut,void 0),knt(this,aut,null),knt(this,sut,void 0),knt(this,out,null),Snt(Qct,this,e),Snt(Zct,this,n),Snt(tut,this,r),Snt(eut,this,i),Snt(rut,this,a),Snt(nut,this,s),Snt(sut,this,new AbortController),Snt(iut,this,AbortSignal.any([o,_nt(sut,this).signal])),e.addEventListener("touchstart",bnt(lut,this,cut).bind(this),{passive:!1,signal:_nt(iut,this)})}get MIN_TOUCH_DISTANCE_TO_PINCH(){return Yot(this,"MIN_TOUCH_DISTANCE_TO_PINCH",35/(window.devicePixelRatio||1))}destroy(){var t;null===(t=_nt(sut,this))||void 0===t||t.abort(),Snt(sut,this,null)}}function cut(t){var e,r;if(!(null!==(e=_nt(tut,this))&&void 0!==e&&e.call(this)||t.touches.length<2)){if(!_nt(out,this)){var n;Snt(out,this,new AbortController);var i=AbortSignal.any([_nt(iut,this),_nt(out,this).signal]),a=_nt(Qct,this),s={signal:i,passive:!1};a.addEventListener("touchmove",bnt(lut,this,uut).bind(this),s),a.addEventListener("touchend",bnt(lut,this,dut).bind(this),s),a.addEventListener("touchcancel",bnt(lut,this,dut).bind(this),s),null===(n=_nt(eut,this))||void 0===n||n.call(this)}if(Slt(t),2!==t.touches.length||null!==(r=_nt(Zct,this))&&void 0!==r&&r.call(this))Snt(aut,this,null);else{var[o,l]=t.touches;o.identifier>l.identifier&&([o,l]=[l,o]),Snt(aut,this,{touch0X:o.screenX,touch0Y:o.screenY,touch1X:l.screenX,touch1Y:l.screenY})}}}function uut(t){var e;if(_nt(aut,this)&&2===t.touches.length){var[r,n]=t.touches;r.identifier>n.identifier&&([r,n]=[n,r]);var{screenX:i,screenY:a}=r,{screenX:s,screenY:o}=n,l=_nt(aut,this),{touch0X:h,touch0Y:c,touch1X:u,touch1Y:d}=l,p=u-h,f=d-c,g=s-i,v=o-a,m=Math.hypot(g,v)||1,y=Math.hypot(p,f)||1;if(_nt(Jct,this)||!(Math.abs(y-m)<=Tst.MIN_TOUCH_DISTANCE_TO_PINCH))if(l.touch0X=i,l.touch0Y=a,l.touch1X=s,l.touch1Y=o,t.preventDefault(),_nt(Jct,this)){var b=[(i+s)/2,(a+o)/2];null===(e=_nt(rut,this))||void 0===e||e.call(this,b,y,m)}else Snt(Jct,this,!0)}}function dut(t){var e;_nt(out,this).abort(),Snt(out,this,null),null===(e=_nt(nut,this))||void 0===e||e.call(this),_nt(aut,this)&&(t.preventDefault(),Snt(aut,this,null),Snt(Jct,this,!1))}Tst=hut;var put=new WeakMap,fut=new WeakMap,gut=new WeakMap,vut=new WeakMap,mut=new WeakMap,yut=new WeakMap,but=new WeakMap,wut=new WeakMap,xut=new WeakMap,Aut=new WeakMap,_ut=new WeakMap,kut=new WeakMap,Sut=new WeakMap,Eut=new WeakMap,Mut=new WeakMap,Tut=new WeakMap,Cut=new WeakMap,Put=new WeakMap,Iut=new WeakMap,Rut=new WeakMap,Out=new WeakMap,Lut=new WeakMap,Dut=new WeakMap,Fut=new WeakMap,Nut=new WeakSet;class jut{static get _resizerKeyboardManager(){var t=jut.prototype._resizeWithKeyboard,e=cct.TRANSLATE_SMALL,r=cct.TRANSLATE_BIG;return Yot(this,"_resizerKeyboardManager",new yht([[["ArrowLeft","mac+ArrowLeft"],t,{args:[-e,0]}],[["ctrl+ArrowLeft","mac+shift+ArrowLeft"],t,{args:[-r,0]}],[["ArrowRight","mac+ArrowRight"],t,{args:[e,0]}],[["ctrl+ArrowRight","mac+shift+ArrowRight"],t,{args:[r,0]}],[["ArrowUp","mac+ArrowUp"],t,{args:[0,-e]}],[["ctrl+ArrowUp","mac+shift+ArrowUp"],t,{args:[0,-r]}],[["ArrowDown","mac+ArrowDown"],t,{args:[0,e]}],[["ctrl+ArrowDown","mac+shift+ArrowDown"],t,{args:[0,r]}],[["Escape","mac+Escape"],jut.prototype._stopResizingWithKeyboard]]))}constructor(t){Mnt(this,Nut),knt(this,put,null),knt(this,fut,null),knt(this,gut,null),knt(this,vut,!1),knt(this,mut,null),knt(this,yut,""),knt(this,but,!1),knt(this,wut,null),knt(this,xut,null),knt(this,Aut,null),knt(this,_ut,null),knt(this,kut,""),knt(this,Sut,!1),knt(this,Eut,null),knt(this,Mut,!1),knt(this,Tut,!1),knt(this,Cut,!1),knt(this,Put,null),knt(this,Iut,0),knt(this,Rut,0),knt(this,Out,null),knt(this,Lut,null),Tnt(this,"_editToolbar",null),Tnt(this,"_initialOptions",Object.create(null)),Tnt(this,"_initialData",null),Tnt(this,"_isVisible",!0),Tnt(this,"_uiManager",null),Tnt(this,"_focusEventsAllowed",!0),knt(this,Dut,!1),knt(this,Fut,jut._zIndex++),this.parent=t.parent,this.id=t.id,this.width=this.height=null,this.pageIndex=t.parent.pageIndex,this.name=t.name,this.div=null,this._uiManager=t.uiManager,this.annotationElementId=null,this._willKeepAspectRatio=!1,this._initialOptions.isCentered=t.isCentered,this._structTreeParentId=null;var{rotation:e,rawDims:{pageWidth:r,pageHeight:n,pageX:i,pageY:a}}=this.parent.viewport;this.rotation=e,this.pageRotation=(360+e-this._uiManager.viewParameters.rotation)%360,this.pageDimensions=[r,n],this.pageTranslation=[i,a];var[s,o]=this.parentDimensions;this.x=t.x/s,this.y=t.y/o,this.isAttachedToDOM=!1,this.deleted=!1}get editorType(){return Object.getPrototypeOf(this).constructor._type}static get isDrawer(){return!1}static get _defaultLineColor(){return Yot(this,"_defaultLineColor",this._colorManager.getHexCode("CanvasText"))}static deleteAnnotationElement(t){var e=new idt({id:t.parent.getNextId(),parent:t.parent,uiManager:t._uiManager});e.annotationElementId=t.annotationElementId,e.deleted=!0,e._uiManager.addToAnnotationStorage(e)}static initialize(t,e){var r;if(null!==(r=jut._l10n)&&void 0!==r||(jut._l10n=t),jut._l10nResizer||(jut._l10nResizer=Object.freeze({topLeft:"pdfjs-editor-resizer-top-left",topMiddle:"pdfjs-editor-resizer-top-middle",topRight:"pdfjs-editor-resizer-top-right",middleRight:"pdfjs-editor-resizer-middle-right",bottomRight:"pdfjs-editor-resizer-bottom-right",bottomMiddle:"pdfjs-editor-resizer-bottom-middle",bottomLeft:"pdfjs-editor-resizer-bottom-left",middleLeft:"pdfjs-editor-resizer-middle-left"})),-1===jut._borderLineWidth){var n=getComputedStyle(document.documentElement);jut._borderLineWidth=parseFloat(n.getPropertyValue("--outline-width"))||0}}static updateDefaultParams(t,e){}static get defaultPropertiesToUpdate(){return[]}static isHandlingMimeForPasting(t){return!1}static paste(t,e){Uot("Not implemented")}get propertiesToUpdate(){return[]}get _isDraggable(){return _nt(Dut,this)}set _isDraggable(t){var e;Snt(Dut,this,t),null===(e=this.div)||void 0===e||e.classList.toggle("draggable",t)}get isEnterHandled(){return!0}center(){var[t,e]=this.pageDimensions;switch(this.parentRotation){case 90:this.x-=this.height*e/(2*t),this.y+=this.width*t/(2*e);break;case 180:this.x+=this.width/2,this.y+=this.height/2;break;case 270:this.x+=this.height*e/(2*t),this.y-=this.width*t/(2*e);break;default:this.x-=this.width/2,this.y-=this.height/2}this.fixAndSetPosition()}addCommands(t){this._uiManager.addCommands(t)}get currentLayer(){return this._uiManager.currentLayer}setInBackground(){this.div.style.zIndex=0}setInForeground(){this.div.style.zIndex=_nt(Fut,this)}setParent(t){null!==t?(this.pageIndex=t.pageIndex,this.pageDimensions=t.pageDimensions):bnt(Nut,this,ndt).call(this),this.parent=t}focusin(t){this._focusEventsAllowed&&(_nt(Sut,this)?Snt(Sut,this,!1):this.parent.setSelected(this))}focusout(t){var e;if(this._focusEventsAllowed&&this.isAttachedToDOM){var r=t.relatedTarget;null!=r&&r.closest("#".concat(this.id))||(t.preventDefault(),null!==(e=this.parent)&&void 0!==e&&e.isMultipleSelection||this.commitOrRemove())}}commitOrRemove(){this.isEmpty()?this.remove():this.commit()}commit(){this.addToAnnotationStorage()}addToAnnotationStorage(){this._uiManager.addToAnnotationStorage(this)}setAt(t,e,r,n){var[i,a]=this.parentDimensions;[r,n]=this.screenToPageTranslation(r,n),this.x=(t+r)/i,this.y=(e+n)/a,this.fixAndSetPosition()}translate(t,e){bnt(Nut,this,But).call(this,this.parentDimensions,t,e)}translateInPage(t,e){_nt(Eut,this)||Snt(Eut,this,[this.x,this.y,this.width,this.height]),bnt(Nut,this,But).call(this,this.pageDimensions,t,e),this.div.scrollIntoView({block:"nearest"})}drag(t,e){_nt(Eut,this)||Snt(Eut,this,[this.x,this.y,this.width,this.height]);var{div:r,parentDimensions:[n,i]}=this;if(this.x+=t/n,this.y+=e/i,this.parent&&(this.x<0||this.x>1||this.y<0||this.y>1)){var{x:a,y:s}=this.div.getBoundingClientRect();this.parent.findNewParent(this,a,s)&&(this.x-=Math.floor(this.x),this.y-=Math.floor(this.y))}var{x:o,y:l}=this,[h,c]=this.getBaseTranslation();o+=h,l+=c;var{style:u}=r;u.left="".concat((100*o).toFixed(2),"%"),u.top="".concat((100*l).toFixed(2),"%"),this._onTranslating(o,l),r.scrollIntoView({block:"nearest"})}_onTranslating(t,e){}_onTranslated(t,e){}get _hasBeenMoved(){return!!_nt(Eut,this)&&(_nt(Eut,this)[0]!==this.x||_nt(Eut,this)[1]!==this.y)}get _hasBeenResized(){return!!_nt(Eut,this)&&(_nt(Eut,this)[2]!==this.width||_nt(Eut,this)[3]!==this.height)}getBaseTranslation(){var[t,e]=this.parentDimensions,{_borderLineWidth:r}=jut,n=r/t,i=r/e;switch(this.rotation){case 90:return[-n,i];case 180:return[n,i];case 270:return[n,-i];default:return[-n,-i]}}get _mustFixPosition(){return!0}fixAndSetPosition(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.rotation,{div:{style:e},pageDimensions:[r,n]}=this,{x:i,y:a,width:s,height:o}=this;if(s*=r,o*=n,i*=r,a*=n,this._mustFixPosition)switch(t){case 0:i=Math.max(0,Math.min(r-s,i)),a=Math.max(0,Math.min(n-o,a));break;case 90:i=Math.max(0,Math.min(r-o,i)),a=Math.min(n,Math.max(s,a));break;case 180:i=Math.min(r,Math.max(s,i)),a=Math.min(n,Math.max(o,a));break;case 270:i=Math.min(r,Math.max(o,i)),a=Math.max(0,Math.min(n-s,a))}this.x=i/=r,this.y=a/=n;var[l,h]=this.getBaseTranslation();i+=l,a+=h,e.left="".concat((100*i).toFixed(2),"%"),e.top="".concat((100*a).toFixed(2),"%"),this.moveInDOM()}screenToPageTranslation(t,e){return zut.call(jut,t,e,this.parentRotation)}pageTranslationToScreen(t,e){return zut.call(jut,t,e,360-this.parentRotation)}get parentScale(){return this._uiManager.viewParameters.realScale}get parentRotation(){return(this._uiManager.viewParameters.rotation+this.pageRotation)%360}get parentDimensions(){var{parentScale:t,pageDimensions:[e,r]}=this;return[e*t,r*t]}setDims(t,e){var[r,n]=this.parentDimensions,{style:i}=this.div;i.width="".concat((100*t/r).toFixed(2),"%"),_nt(but,this)||(i.height="".concat((100*e/n).toFixed(2),"%"))}fixDims(){var{style:t}=this.div,{height:e,width:r}=t,n=r.endsWith("%"),i=!_nt(but,this)&&e.endsWith("%");if(!n||!i){var[a,s]=this.parentDimensions;n||(t.width="".concat((100*parseFloat(r)/a).toFixed(2),"%")),_nt(but,this)||i||(t.height="".concat((100*parseFloat(e)/s).toFixed(2),"%"))}}getInitialTranslation(){return[0,0]}_onResized(){}static _round(t){return Math.round(1e4*t)/1e4}_onResizing(){}altTextFinish(){var t;null===(t=_nt(gut,this))||void 0===t||t.finish()}addEditToolbar(){var t=this;return xnt((function*(){return t._editToolbar||_nt(Tut,t)||(t._editToolbar=new zlt(t),t.div.append(t._editToolbar.render()),_nt(gut,t)&&(yield t._editToolbar.addAltText(_nt(gut,t)))),t._editToolbar}))()}removeEditToolbar(){var t;this._editToolbar&&(this._editToolbar.remove(),this._editToolbar=null,null===(t=_nt(gut,this))||void 0===t||t.destroy())}addContainer(t){var e,r=null===(e=this._editToolbar)||void 0===e?void 0:e.div;r?r.before(t):this.div.append(t)}getClientDimensions(){return this.div.getBoundingClientRect()}addAltTextButton(){var t=this;return xnt((function*(){_nt(gut,t)||(Vct.initialize(jut._l10n),Snt(gut,t,new Vct(t)),_nt(put,t)&&(_nt(gut,t).data=_nt(put,t),Snt(put,t,null)),yield t.addEditToolbar())}))()}get altTextData(){var t;return null===(t=_nt(gut,this))||void 0===t?void 0:t.data}set altTextData(t){_nt(gut,this)&&(_nt(gut,this).data=t)}get guessedAltText(){var t;return null===(t=_nt(gut,this))||void 0===t?void 0:t.guessedText}setGuessedAltText(t){var e=this;return xnt((function*(){var r;yield null===(r=_nt(gut,e))||void 0===r?void 0:r.setGuessedText(t)}))()}serializeAltText(t){var e;return null===(e=_nt(gut,this))||void 0===e?void 0:e.serialize(t)}hasAltText(){return!!_nt(gut,this)&&!_nt(gut,this).isEmpty()}hasAltTextData(){var t,e;return null!==(t=null===(e=_nt(gut,this))||void 0===e?void 0:e.hasData())&&void 0!==t&&t}render(){var t;this.div=document.createElement("div"),this.div.setAttribute("data-editor-rotation",(360-this.rotation)%360),this.div.className=this.name,this.div.setAttribute("id",this.id),this.div.tabIndex=_nt(vut,this)?-1:0,this._isVisible||this.div.classList.add("hidden"),this.setInForeground(),bnt(Nut,this,Jut).call(this);var[e,r]=this.parentDimensions;this.parentRotation%180!=0&&(this.div.style.maxWidth="".concat((100*r/e).toFixed(2),"%"),this.div.style.maxHeight="".concat((100*e/r).toFixed(2),"%"));var[n,i]=this.getInitialTranslation();return this.translate(n,i),rht(this,this.div,["pointerdown"]),this.isResizable&&this._uiManager._supportsPinchToZoom&&(_nt(Lut,this)||Snt(Lut,this,new hut({container:this.div,isPinchingDisabled:()=>!this.isSelected,onPinchStart:bnt(Nut,this,qut).bind(this),onPinching:bnt(Nut,this,Xut).bind(this),onPinchEnd:bnt(Nut,this,$ut).bind(this),signal:this._uiManager._signal}))),null===(t=this._uiManager._editorUndoBar)||void 0===t||t.hide(),this.div}pointerdown(t){var{isMac:e}=nlt.platform;0!==t.button||t.ctrlKey&&e?t.preventDefault():(Snt(Sut,this,!0),this._isDraggable?bnt(Nut,this,Qut).call(this,t):bnt(Nut,this,Kut).call(this,t))}get isSelected(){return this._uiManager.isSelected(this)}_onStartDragging(){}_onStopDragging(){}moveInDOM(){_nt(Put,this)&&clearTimeout(_nt(Put,this)),Snt(Put,this,setTimeout((()=>{var t;Snt(Put,this,null),null===(t=this.parent)||void 0===t||t.moveEditorInDOM(this)}),0))}_setParentAndPosition(t,e,r){t.changeParent(this),this.x=e,this.y=r,this.fixAndSetPosition(),this._onTranslated()}getRect(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.rotation,n=this.parentScale,[i,a]=this.pageDimensions,[s,o]=this.pageTranslation,l=t/n,h=e/n,c=this.x*i,u=this.y*a,d=this.width*i,p=this.height*a;switch(r){case 0:return[c+l+s,a-u-h-p+o,c+l+d+s,a-u-h+o];case 90:return[c+h+s,a-u+l+o,c+h+p+s,a-u+l+d+o];case 180:return[c-l-d+s,a-u+h+o,c-l+s,a-u+h+p+o];case 270:return[c-h-p+s,a-u-l-d+o,c-h+s,a-u-l+o];default:throw new Error("Invalid rotation")}}getRectInCurrentCoords(t,e){var[r,n,i,a]=t,s=i-r,o=a-n;switch(this.rotation){case 0:return[r,e-a,s,o];case 90:return[r,e-n,o,s];case 180:return[i,e-n,s,o];case 270:return[i,e-a,o,s];default:throw new Error("Invalid rotation")}}onceAdded(t){}isEmpty(){return!1}enableEditMode(){Snt(Tut,this,!0)}disableEditMode(){Snt(Tut,this,!1)}isInEditMode(){return _nt(Tut,this)}shouldGetKeyboardEvents(){return _nt(Cut,this)}needsToBeRebuilt(){return this.div&&!this.isAttachedToDOM}get isOnScreen(){var{top:t,left:e,bottom:r,right:n}=this.getClientDimensions(),{innerHeight:i,innerWidth:a}=window;return e<a&&n>0&&t<i&&r>0}rebuild(){bnt(Nut,this,Jut).call(this)}rotate(t){}resize(){}serializeDeleted(){var t;return{id:this.annotationElementId,deleted:!0,pageIndex:this.pageIndex,popupRef:(null===(t=this._initialData)||void 0===t?void 0:t.popupRef)||""}}serialize(){Uot("An editor must be serializable")}static deserialize(t,e,r){var n=this;return xnt((function*(){var i=new n.prototype.constructor({parent:e,id:e.getNextId(),uiManager:r});i.rotation=t.rotation,Snt(put,i,t.accessibilityData);var[a,s]=i.pageDimensions,[o,l,h,c]=i.getRectInCurrentCoords(t.rect,s);return i.x=o/a,i.y=l/s,i.width=h/a,i.height=c/s,i}))()}get hasBeenModified(){return!!this.annotationElementId&&(this.deleted||null!==this.serialize())}remove(){var t,e;if(null===(t=_nt(_ut,this))||void 0===t||t.abort(),Snt(_ut,this,null),this.isEmpty()||this.commit(),this.parent?this.parent.remove(this):this._uiManager.removeEditor(this),_nt(Put,this)&&(clearTimeout(_nt(Put,this)),Snt(Put,this,null)),bnt(Nut,this,ndt).call(this),this.removeEditToolbar(),_nt(Out,this)){for(var r of _nt(Out,this).values())clearTimeout(r);Snt(Out,this,null)}this.parent=null,null===(e=_nt(Lut,this))||void 0===e||e.destroy(),Snt(Lut,this,null)}get isResizable(){return!1}makeResizable(){this.isResizable&&(bnt(Nut,this,Uut).call(this),_nt(wut,this).classList.remove("hidden"),rht(this,this.div,["keydown"]))}get toolbarPosition(){return null}keydown(t){if(this.isResizable&&t.target===this.div&&"Enter"===t.key){this._uiManager.setSelected(this),Snt(Aut,this,{savedX:this.x,savedY:this.y,savedWidth:this.width,savedHeight:this.height});var e=_nt(wut,this).children;if(!_nt(fut,this)){Snt(fut,this,Array.from(e));var r=bnt(Nut,this,Zut).bind(this),n=bnt(Nut,this,tdt).bind(this),i=this._uiManager._signal;for(var a of _nt(fut,this)){var s=a.getAttribute("data-resizer-name");a.setAttribute("role","spinbutton"),a.addEventListener("keydown",r,{signal:i}),a.addEventListener("blur",n,{signal:i}),a.addEventListener("focus",bnt(Nut,this,edt).bind(this,s),{signal:i}),a.setAttribute("data-l10n-id",jut._l10nResizer[s])}}var o=_nt(fut,this)[0],l=0;for(var h of e){if(h===o)break;l++}var c=(360-this.rotation+this.parentRotation)%360/90*(_nt(fut,this).length/4);if(c!==l){if(c<l)for(var u=0;u<l-c;u++)_nt(wut,this).append(_nt(wut,this).firstChild);else if(c>l)for(var d=0;d<c-l;d++)_nt(wut,this).firstChild.before(_nt(wut,this).lastChild);var p=0;for(var f of e){var g=_nt(fut,this)[p++].getAttribute("data-resizer-name");f.setAttribute("data-l10n-id",jut._l10nResizer[g])}}bnt(Nut,this,rdt).call(this,0),Snt(Cut,this,!0),_nt(wut,this).firstChild.focus({focusVisible:!0}),t.preventDefault(),t.stopImmediatePropagation()}}_resizeWithKeyboard(t,e){_nt(Cut,this)&&bnt(Nut,this,Vut).call(this,_nt(kut,this),{deltaX:t,deltaY:e,fromKeyboard:!0})}_stopResizingWithKeyboard(){bnt(Nut,this,ndt).call(this),this.div.focus()}select(){var t,e,r;this.makeResizable(),null===(t=this.div)||void 0===t||t.classList.add("selectedEditor"),this._editToolbar?(null===(e=this._editToolbar)||void 0===e||e.show(),null===(r=_nt(gut,this))||void 0===r||r.toggleAltTextBadge(!1)):this.addEditToolbar().then((()=>{var t,e;null!==(t=this.div)&&void 0!==t&&t.classList.contains("selectedEditor")&&(null===(e=this._editToolbar)||void 0===e||e.show())}))}unselect(){var t,e,r,n,i;null===(t=_nt(wut,this))||void 0===t||t.classList.add("hidden"),null===(e=this.div)||void 0===e||e.classList.remove("selectedEditor"),null!==(r=this.div)&&void 0!==r&&r.contains(document.activeElement)&&this._uiManager.currentLayer.div.focus({preventScroll:!0}),null===(n=this._editToolbar)||void 0===n||n.hide(),null===(i=_nt(gut,this))||void 0===i||i.toggleAltTextBadge(!0)}updateParams(t,e){}disableEditing(){}enableEditing(){}enterInEditMode(){}getImageForAltText(){return null}get contentDiv(){return this.div}get isEditing(){return _nt(Mut,this)}set isEditing(t){Snt(Mut,this,t),this.parent&&(t?(this.parent.setSelected(this),this.parent.setActiveEditor(this)):this.parent.setActiveEditor(null))}setAspectRatio(t,e){Snt(but,this,!0);var r=t/e,{style:n}=this.div;n.aspectRatio=r,n.height="auto"}static get MIN_SIZE(){return 16}static canCreateNewEmptyEditor(){return!0}get telemetryInitialData(){return{action:"added"}}get telemetryFinalData(){return null}_reportTelemetry(t){if(arguments.length>1&&void 0!==arguments[1]&&arguments[1]){_nt(Out,this)||Snt(Out,this,new Map);var{action:e}=t,r=_nt(Out,this).get(e);return r&&clearTimeout(r),r=setTimeout((()=>{this._reportTelemetry(t),_nt(Out,this).delete(e),0===_nt(Out,this).size&&Snt(Out,this,null)}),jut._telemetryTimeout),void _nt(Out,this).set(e,r)}t.type||(t.type=this.editorType),this._uiManager._eventBus.dispatch("reporttelemetry",{source:this,details:{type:"editing",data:t}})}show(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this._isVisible;this.div.classList.toggle("hidden",!t),this._isVisible=t}enable(){this.div&&(this.div.tabIndex=0),Snt(vut,this,!1)}disable(){this.div&&(this.div.tabIndex=-1),Snt(vut,this,!0)}renderAnnotationElement(t){var e=t.container.querySelector(".annotationContent");if(e){if("CANVAS"===e.nodeName){var r=e;(e=document.createElement("div")).classList.add("annotationContent",this.editorType),r.before(e)}}else(e=document.createElement("div")).classList.add("annotationContent",this.editorType),t.container.prepend(e);return e}resetAnnotationElement(t){var{firstChild:e}=t.container;"DIV"===(null==e?void 0:e.nodeName)&&e.classList.contains("annotationContent")&&e.remove()}}function But(t,e,r){var[n,i]=t;[e,r]=this.screenToPageTranslation(e,r),this.x+=e/n,this.y+=r/i,this._onTranslating(this.x,this.y),this.fixAndSetPosition()}function zut(t,e,r){switch(r){case 90:return[e,-t];case 180:return[-t,-e];case 270:return[-e,t];default:return[t,e]}}function Wut(t){switch(t){case 90:var[e,r]=this.pageDimensions;return[0,-e/r,r/e,0];case 180:return[-1,0,0,-1];case 270:var[n,i]=this.pageDimensions;return[0,n/i,-i/n,0];default:return[1,0,0,1]}}function Uut(){if(!_nt(wut,this)){Snt(wut,this,document.createElement("div")),_nt(wut,this).classList.add("resizers");var t=this._willKeepAspectRatio?["topLeft","topRight","bottomRight","bottomLeft"]:["topLeft","topMiddle","topRight","middleRight","bottomRight","bottomMiddle","bottomLeft","middleLeft"],e=this._uiManager._signal;for(var r of t){var n=document.createElement("div");_nt(wut,this).append(n),n.classList.add("resizer",r),n.setAttribute("data-resizer-name",r),n.addEventListener("pointerdown",bnt(Nut,this,Hut).bind(this,r),{signal:e}),n.addEventListener("contextmenu",klt,{signal:e}),n.tabIndex=-1}this.div.prepend(_nt(wut,this))}}function Hut(t,e){var r;e.preventDefault();var{isMac:n}=nlt.platform;if(!(0!==e.button||e.ctrlKey&&n)){null===(r=_nt(gut,this))||void 0===r||r.toggle(!1);var i=this._isDraggable;this._isDraggable=!1,Snt(xut,this,[e.screenX,e.screenY]);var a=new AbortController,s=this._uiManager.combinedSignal(a);this.parent.togglePointerEvents(!1),window.addEventListener("pointermove",bnt(Nut,this,Vut).bind(this,t),{passive:!0,capture:!0,signal:s}),window.addEventListener("touchmove",Slt,{passive:!1,signal:s}),window.addEventListener("contextmenu",klt,{signal:s}),Snt(Aut,this,{savedX:this.x,savedY:this.y,savedWidth:this.width,savedHeight:this.height});var o=this.parent.div.style.cursor,l=this.div.style.cursor;this.div.style.cursor=this.parent.div.style.cursor=window.getComputedStyle(e.target).cursor;var h=()=>{var t;a.abort(),this.parent.togglePointerEvents(!0),null===(t=_nt(gut,this))||void 0===t||t.toggle(!0),this._isDraggable=i,this.parent.div.style.cursor=o,this.div.style.cursor=l,bnt(Nut,this,Yut).call(this)};window.addEventListener("pointerup",h,{signal:s}),window.addEventListener("blur",h,{signal:s})}}function Gut(t,e,r,n){this.width=r,this.height=n,this.x=t,this.y=e;var[i,a]=this.parentDimensions;this.setDims(i*r,a*n),this.fixAndSetPosition(),this._onResized()}function Yut(){if(_nt(Aut,this)){var{savedX:t,savedY:e,savedWidth:r,savedHeight:n}=_nt(Aut,this);Snt(Aut,this,null);var i=this.x,a=this.y,s=this.width,o=this.height;i===t&&a===e&&s===r&&o===n||this.addCommands({cmd:bnt(Nut,this,Gut).bind(this,i,a,s,o),undo:bnt(Nut,this,Gut).bind(this,t,e,r,n),mustExec:!0})}}function Vut(t,e){var r,n,[i,a]=this.parentDimensions,s=this.x,o=this.y,l=this.width,h=this.height,c=Cst.MIN_SIZE/i,u=Cst.MIN_SIZE/a,d=bnt(Nut,this,Wut).call(this,this.rotation),p=(t,e)=>[d[0]*t+d[2]*e,d[1]*t+d[3]*e],f=bnt(Nut,this,Wut).call(this,360-this.rotation),g=!1,v=!1;switch(t){case"topLeft":g=!0,r=(t,e)=>[0,0],n=(t,e)=>[t,e];break;case"topMiddle":r=(t,e)=>[t/2,0],n=(t,e)=>[t/2,e];break;case"topRight":g=!0,r=(t,e)=>[t,0],n=(t,e)=>[0,e];break;case"middleRight":v=!0,r=(t,e)=>[t,e/2],n=(t,e)=>[0,e/2];break;case"bottomRight":g=!0,r=(t,e)=>[t,e],n=(t,e)=>[0,0];break;case"bottomMiddle":r=(t,e)=>[t/2,e],n=(t,e)=>[t/2,0];break;case"bottomLeft":g=!0,r=(t,e)=>[0,e],n=(t,e)=>[t,0];break;case"middleLeft":v=!0,r=(t,e)=>[0,e/2],n=(t,e)=>[t,e/2]}var m,y,b=r(l,h),w=n(l,h),x=p(...w),A=Cst._round(s+x[0]),_=Cst._round(o+x[1]),k=1,S=1;if(e.fromKeyboard)({deltaX:m,deltaY:y}=e);else{var{screenX:E,screenY:M}=e,[T,C]=_nt(xut,this);[m,y]=this.screenToPageTranslation(E-T,M-C),_nt(xut,this)[0]=E,_nt(xut,this)[1]=M}if([m,y]=((t,e)=>[f[0]*t+f[2]*e,f[1]*t+f[3]*e])(m/i,y/a),g){var P=Math.hypot(l,h);k=S=Math.max(Math.min(Math.hypot(w[0]-b[0]-m,w[1]-b[1]-y)/P,1/l,1/h),c/l,u/h)}else v?k=Math.max(c,Math.min(1,Math.abs(w[0]-b[0]-m)))/l:S=Math.max(u,Math.min(1,Math.abs(w[1]-b[1]-y)))/h;var I=Cst._round(l*k),R=Cst._round(h*S),O=A-(x=p(...n(I,R)))[0],L=_-x[1];_nt(Eut,this)||Snt(Eut,this,[this.x,this.y,this.width,this.height]),this.width=I,this.height=R,this.x=O,this.y=L,this.setDims(i*I,a*R),this.fixAndSetPosition(),this._onResizing()}function qut(){var t;Snt(Aut,this,{savedX:this.x,savedY:this.y,savedWidth:this.width,savedHeight:this.height}),null===(t=_nt(gut,this))||void 0===t||t.toggle(!1),this.parent.togglePointerEvents(!1)}function Xut(t,e,r){var n=r/e*.7+1-.7;if(1!==n){var i=bnt(Nut,this,Wut).call(this,this.rotation),a=(t,e)=>[i[0]*t+i[2]*e,i[1]*t+i[3]*e],[s,o]=this.parentDimensions,l=this.x,h=this.y,c=this.width,u=this.height,d=Cst.MIN_SIZE/s,p=Cst.MIN_SIZE/o;n=Math.max(Math.min(n,1/c,1/u),d/c,p/u);var f=Cst._round(c*n),g=Cst._round(u*n);if(f!==c||g!==u){_nt(Eut,this)||Snt(Eut,this,[l,h,c,u]);var v=a(c/2,u/2),m=Cst._round(l+v[0]),y=Cst._round(h+v[1]),b=a(f/2,g/2);this.x=m-b[0],this.y=y-b[1],this.width=f,this.height=g,this.setDims(s*f,o*g),this.fixAndSetPosition(),this._onResizing()}}}function $ut(){var t;null===(t=_nt(gut,this))||void 0===t||t.toggle(!0),this.parent.togglePointerEvents(!0),bnt(Nut,this,Yut).call(this)}function Kut(t){var{isMac:e}=nlt.platform;t.ctrlKey&&!e||t.shiftKey||t.metaKey&&e?this.parent.toggleSelected(this):this.parent.setSelected(this)}function Qut(t){var{isSelected:e}=this;this._uiManager.setUpDragSession();var r=!1,n=new AbortController,i=this._uiManager.combinedSignal(n),a={capture:!0,passive:!1,signal:i},s=t=>{n.abort(),Snt(mut,this,null),Snt(Sut,this,!1),this._uiManager.endDragSession()||bnt(Nut,this,Kut).call(this,t),r&&this._onStopDragging()};e&&(Snt(Iut,this,t.clientX),Snt(Rut,this,t.clientY),Snt(mut,this,t.pointerId),Snt(yut,this,t.pointerType),window.addEventListener("pointermove",(t=>{r||(r=!0,this._onStartDragging());var{clientX:e,clientY:n,pointerId:i}=t;if(i===_nt(mut,this)){var[a,s]=this.screenToPageTranslation(e-_nt(Iut,this),n-_nt(Rut,this));Snt(Iut,this,e),Snt(Rut,this,n),this._uiManager.dragSelectedEditors(a,s)}else Slt(t)}),a),window.addEventListener("touchmove",Slt,a),window.addEventListener("pointerdown",(t=>{t.pointerType===_nt(yut,this)&&(_nt(Lut,this)||t.isPrimary)&&s(t),Slt(t)}),a));var o=t=>{_nt(mut,this)&&_nt(mut,this)!==t.pointerId?Slt(t):s(t)};window.addEventListener("pointerup",o,{signal:i}),window.addEventListener("blur",o,{signal:i})}function Jut(){if(!_nt(_ut,this)&&this.div){Snt(_ut,this,new AbortController);var t=this._uiManager.combinedSignal(_nt(_ut,this));this.div.addEventListener("focusin",this.focusin.bind(this),{signal:t}),this.div.addEventListener("focusout",this.focusout.bind(this),{signal:t})}}function Zut(t){Cst._resizerKeyboardManager.exec(this,t)}function tdt(t){var e;_nt(Cut,this)&&(null===(e=t.relatedTarget)||void 0===e?void 0:e.parentNode)!==_nt(wut,this)&&bnt(Nut,this,ndt).call(this)}function edt(t){Snt(kut,this,_nt(Cut,this)?t:"")}function rdt(t){if(_nt(fut,this))for(var e of _nt(fut,this))e.tabIndex=t}function ndt(){Snt(Cut,this,!1),bnt(Nut,this,rdt).call(this,-1),bnt(Nut,this,Yut).call(this)}Cst=jut,Tnt(jut,"_l10n",null),Tnt(jut,"_l10nResizer",null),Tnt(jut,"_borderLineWidth",-1),Tnt(jut,"_colorManager",new wht),Tnt(jut,"_zIndex",1),Tnt(jut,"_telemetryTimeout",1e3);class idt extends jut{constructor(t){super(t),this.annotationElementId=t.annotationElementId,this.deleted=!0}serialize(){return this.serializeDeleted()}}var adt=3285377520,sdt=4294901760,odt=65535;class ldt{constructor(t){this.h1=t?4294967295&t:adt,this.h2=t?4294967295&t:adt}update(t){var e,r;if("string"==typeof t){e=new Uint8Array(2*t.length),r=0;for(var n=0,i=t.length;n<i;n++){var a=t.charCodeAt(n);a<=255?e[r++]=a:(e[r++]=a>>>8,e[r++]=255&a)}}else{if(!ArrayBuffer.isView(t))throw new Error("Invalid data format, must be a string or TypedArray.");r=(e=t.slice()).byteLength}for(var s=r>>2,o=r-4*s,l=new Uint32Array(e.buffer,0,s),h=0,c=0,u=this.h1,d=this.h2,p=3432918353,f=461845907,g=11601,v=13715,m=0;m<s;m++)1&m?u=5*(u=(u^=h=(h=(h=(h=l[m])*p&sdt|h*g&odt)<<15|h>>>17)*f&sdt|h*v&odt)<<13|u>>>19)+3864292196:d=5*(d=(d^=c=(c=(c=(c=l[m])*p&sdt|c*g&odt)<<15|c>>>17)*f&sdt|c*v&odt)<<13|d>>>19)+3864292196;switch(h=0,o){case 3:h^=e[4*s+2]<<16;case 2:h^=e[4*s+1]<<8;case 1:h=(h=(h=(h^=e[4*s])*p&sdt|h*g&odt)<<15|h>>>17)*f&sdt|h*v&odt,1&s?u^=h:d^=h}this.h1=u,this.h2=d}hexdigest(){var t=this.h1,e=this.h2;return t=3981806797*(t^=e>>>1)&sdt|36045*t&odt,t=444984403*(t^=(e=4283543511*e&sdt|(2950163797*(e<<16|t>>>16)&sdt)>>>16)>>>1)&sdt|60499*t&odt,((t^=(e=3301882366*e&sdt|(3120437893*(e<<16|t>>>16)&sdt)>>>16)>>>1)>>>0).toString(16).padStart(8,"0")+(e>>>0).toString(16).padStart(8,"0")}}var hdt=Object.freeze({map:null,hash:"",transfer:void 0}),cdt=new WeakMap,udt=new WeakMap,ddt=new WeakMap,pdt=new WeakSet;class fdt{constructor(){Mnt(this,pdt),knt(this,cdt,!1),knt(this,udt,null),knt(this,ddt,new Map),this.onSetModified=null,this.onResetModified=null,this.onAnnotationEditor=null}getValue(t,e){var r=_nt(ddt,this).get(t);return void 0===r?e:Object.assign(e,r)}getRawValue(t){return _nt(ddt,this).get(t)}remove(t){if(_nt(ddt,this).delete(t),0===_nt(ddt,this).size&&this.resetModified(),"function"==typeof this.onAnnotationEditor){for(var e of _nt(ddt,this).values())if(e instanceof jut)return;this.onAnnotationEditor(null)}}setValue(t,e){var r=_nt(ddt,this).get(t),n=!1;if(void 0!==r)for(var[i,a]of Object.entries(e))r[i]!==a&&(n=!0,r[i]=a);else n=!0,_nt(ddt,this).set(t,e);n&&bnt(pdt,this,gdt).call(this),e instanceof jut&&"function"==typeof this.onAnnotationEditor&&this.onAnnotationEditor(e.constructor._type)}has(t){return _nt(ddt,this).has(t)}getAll(){return _nt(ddt,this).size>0?rlt(_nt(ddt,this)):null}setAll(t){for(var[e,r]of Object.entries(t))this.setValue(e,r)}get size(){return _nt(ddt,this).size}resetModified(){_nt(cdt,this)&&(Snt(cdt,this,!1),"function"==typeof this.onResetModified&&this.onResetModified())}get print(){return new mdt(this)}get serializable(){if(0===_nt(ddt,this).size)return hdt;var t=new Map,e=new ldt,r=[],n=Object.create(null),i=!1;for(var[a,s]of _nt(ddt,this)){var o=s instanceof jut?s.serialize(!1,n):s;o&&(t.set(a,o),e.update("".concat(a,":").concat(JSON.stringify(o))),i||(i=!!o.bitmap))}if(i)for(var l of t.values())l.bitmap&&r.push(l.bitmap);return t.size>0?{map:t,hash:e.hexdigest(),transfer:r}:hdt}get editorStats(){var t=null,e=new Map;for(var r of _nt(ddt,this).values()){var n;if(r instanceof jut){var i=r.telemetryFinalData;if(i){var{type:a}=i;e.has(a)||e.set(a,Object.getPrototypeOf(r).constructor),t||(t=Object.create(null));var s=(n=t)[a]||(n[a]=new Map);for(var[o,l]of Object.entries(i)){var h;if("type"!==o){var c=s.get(o);c||(c=new Map,s.set(o,c));var u=null!==(h=c.get(l))&&void 0!==h?h:0;c.set(l,u+1)}}}}}for(var[d,p]of e)t[d]=p.computeTelemetryFinalData(t[d]);return t}resetModifiedIds(){Snt(udt,this,null)}get modifiedIds(){if(_nt(udt,this))return _nt(udt,this);var t=[];for(var e of _nt(ddt,this).values())e instanceof jut&&e.annotationElementId&&e.serialize()&&t.push(e.annotationElementId);return Snt(udt,this,{ids:new Set(t),hash:t.join(",")})}}function gdt(){_nt(cdt,this)||(Snt(cdt,this,!0),"function"==typeof this.onSetModified&&this.onSetModified())}var vdt=new WeakMap;class mdt extends fdt{constructor(t){super(),knt(this,vdt,void 0);var{map:e,hash:r,transfer:n}=t.serializable,i=structuredClone(e,n?{transfer:n}:null);Snt(vdt,this,{map:i,hash:r,transfer:n})}get print(){Uot("Should not call PrintAnnotationStorage.print")}get serializable(){return _nt(vdt,this)}get modifiedIds(){return Yot(this,"modifiedIds",{ids:new Set,hash:""})}}var ydt=new WeakMap;class bdt{constructor(t){var{ownerDocument:e=globalThis.document,styleElement:r=null}=t;knt(this,ydt,new Set),this._document=e,this.nativeFontFaces=new Set,this.styleElement=null,this.loadingRequests=[],this.loadTestFontId=0}addNativeFontFace(t){this.nativeFontFaces.add(t),this._document.fonts.add(t)}removeNativeFontFace(t){this.nativeFontFaces.delete(t),this._document.fonts.delete(t)}insertRule(t){this.styleElement||(this.styleElement=this._document.createElement("style"),this._document.documentElement.getElementsByTagName("head")[0].append(this.styleElement));var e=this.styleElement.sheet;e.insertRule(t,e.cssRules.length)}clear(){for(var t of this.nativeFontFaces)this._document.fonts.delete(t);this.nativeFontFaces.clear(),_nt(ydt,this).clear(),this.styleElement&&(this.styleElement.remove(),this.styleElement=null)}loadSystemFont(t){var e=this;return xnt((function*(){var{systemFontInfo:r,_inspectFont:n}=t;if(r&&!_nt(ydt,e).has(r.loadedName))if(Hot(!e.disableFontFace,"loadSystemFont shouldn't be called when `disableFontFace` is set."),e.isFontLoadingAPISupported){var{loadedName:i,src:a,style:s}=r,o=new FontFace(i,a,s);e.addNativeFontFace(o);try{yield o.load(),_nt(ydt,e).add(i),null==n||n(r)}catch(t){Wot("Cannot load system font: ".concat(r.baseFontName,", installing it could help to improve PDF rendering.")),e.removeNativeFontFace(o)}}else Uot("Not implemented: loadSystemFont without the Font Loading API.")}))()}bind(t){var e=this;return xnt((function*(){if(!(t.attached||t.missingFile&&!t.systemFontInfo))if(t.attached=!0,t.systemFontInfo)yield e.loadSystemFont(t);else if(e.isFontLoadingAPISupported){var r=t.createNativeFontFace();if(r){e.addNativeFontFace(r);try{yield r.loaded}catch(e){throw Wot("Failed to load font '".concat(r.family,"': '").concat(e,"'.")),t.disableFontFace=!0,e}}}else{var n=t.createFontFaceRule();if(n){if(e.insertRule(n),e.isSyncFontLoadingSupported)return;yield new Promise((r=>{var n=e._queueLoadingCallback(r);e._prepareFontLoadEvent(t,n)}))}}}))()}get isFontLoadingAPISupported(){var t;return Yot(this,"isFontLoadingAPISupported",!(null===(t=this._document)||void 0===t||!t.fonts))}get isSyncFontLoadingSupported(){var t,e=!1;return(Ust||"undefined"!=typeof navigator&&"string"==typeof(null===(t=navigator)||void 0===t?void 0:t.userAgent)&&/Mozilla\/5.0.*?rv:\d+.*? Gecko/.test(navigator.userAgent))&&(e=!0),Yot(this,"isSyncFontLoadingSupported",e)}_queueLoadingCallback(t){var{loadingRequests:e}=this,r={done:!1,complete:function(){for(Hot(!r.done,"completeRequest() cannot be called twice."),r.done=!0;e.length>0&&e[0].done;){var t=e.shift();setTimeout(t.callback,0)}},callback:t};return e.push(r),r}get _loadTestFont(){return Yot(this,"_loadTestFont",atob("T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk/xVFDQAAALwAAAA2aGhlYQdkA+oAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T/hgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA+gDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7//wAAAC7////TAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD/gwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA/gXBIwMAYuL+nz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE/t3Dov6fAH6fAT+fPp8+nwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA=="))}_prepareFontLoadEvent(t,e){function r(t,e){return t.charCodeAt(e)<<24|t.charCodeAt(e+1)<<16|t.charCodeAt(e+2)<<8|255&t.charCodeAt(e+3)}function n(t,e,r,n){return t.substring(0,e)+n+t.substring(e+r)}var i,a,s=this._document.createElement("canvas");s.width=1,s.height=1;var o=s.getContext("2d"),l=0;var h="lt".concat(Date.now()).concat(this.loadTestFontId++),c=this._loadTestFont,u=1482184792,d=r(c=n(c,976,h.length,h),16);for(i=0,a=h.length-3;i<a;i+=4)d=d-u+r(h,i)|0;i<h.length&&(d=d-u+r(h+"XXX",i)|0),c=n(c,16,4,function(t){return String.fromCharCode(t>>24&255,t>>16&255,t>>8&255,255&t)}(d));var p="url(data:font/opentype;base64,".concat(btoa(c),");"),f='@font-face {font-family:"'.concat(h,'";src:').concat(p,"}");this.insertRule(f);var g=this._document.createElement("div");for(var v of(g.style.visibility="hidden",g.style.width=g.style.height="10px",g.style.position="absolute",g.style.top=g.style.left="0px",[t.loadedName,h])){var m=this._document.createElement("span");m.textContent="Hi",m.style.fontFamily=v,g.append(m)}this._document.body.append(g),function t(e,r){if(++l>30)return Wot("Load test font never loaded."),void r();o.font="30px "+e,o.fillText(".",0,20),o.getImageData(0,0,1,1).data[3]>0?r():setTimeout(t.bind(null,e,r))}(h,(()=>{g.remove(),e.complete()}))}}class wdt{constructor(t,e){var{disableFontFace:r=!1,fontExtraProperties:n=!1,inspectFont:i=null}=e;for(var a in this.compiledGlyphs=Object.create(null),t)this[a]=t[a];this.disableFontFace=!0===r,this.fontExtraProperties=!0===n,this._inspectFont=i}createNativeFontFace(){var t,e;if(!this.data||this.disableFontFace)return null;if(this.cssFontInfo){var r={weight:this.cssFontInfo.fontWeight};this.cssFontInfo.italicAngle&&(r.style="oblique ".concat(this.cssFontInfo.italicAngle,"deg")),e=new FontFace(this.cssFontInfo.fontFamily,this.data,r)}else e=new FontFace(this.loadedName,this.data,{});return null===(t=this._inspectFont)||void 0===t||t.call(this,this),e}createFontFaceRule(){var t;if(!this.data||this.disableFontFace)return null;var e,r,n="url(data:".concat(this.mimetype,";base64,").concat((e=this.data,Uint8Array.prototype.toBase64?e.toBase64():btoa(tlt(e))),");");if(this.cssFontInfo){var i="font-weight: ".concat(this.cssFontInfo.fontWeight,";");this.cssFontInfo.italicAngle&&(i+="font-style: oblique ".concat(this.cssFontInfo.italicAngle,"deg;")),r='@font-face {font-family:"'.concat(this.cssFontInfo.fontFamily,'";').concat(i,"src:").concat(n,"}")}else r='@font-face {font-family:"'.concat(this.loadedName,'";src:').concat(n,"}");return null===(t=this._inspectFont)||void 0===t||t.call(this,this,n),r}getPathGenerator(t,e){if(void 0!==this.compiledGlyphs[e])return this.compiledGlyphs[e];var r,n=this.loadedName+"_path_"+e;try{r=t.get(n)}catch(t){Wot('getPathGenerator - ignoring character: "'.concat(t,'".'))}var i=new Path2D(r||"");return this.fontExtraProperties||t.delete(n),this.compiledGlyphs[e]=i}}var xdt=1,Adt=2,_dt=1,kdt=2,Sdt=3,Edt=4,Mdt=5,Tdt=6,Cdt=7,Pdt=8;function Idt(){}function Rdt(t){if(t instanceof Zot||t instanceof $ot||t instanceof Kot||t instanceof qot||t instanceof Qot||t instanceof Xot)return t;switch(t instanceof Error||"object"==typeof t&&null!==t||Uot('wrapReason: Expected "reason" to be a (possibly cloned) Error.'),t.name){case"AbortException":return new Zot(t.message);case"InvalidPDFException":return new $ot(t.message);case"MissingPDFException":return new Kot(t.message);case"PasswordException":return new qot(t.message,t.code);case"UnexpectedResponseException":return new Qot(t.message,t.status);case"UnknownErrorException":return new Xot(t.message,t.details)}return new Xot(t.message,t.toString())}var Odt=new WeakMap,Ldt=new WeakSet;class Ddt{constructor(t,e,r){Mnt(this,Ldt),knt(this,Odt,new AbortController),this.sourceName=t,this.targetName=e,this.comObj=r,this.callbackId=1,this.streamId=1,this.streamSinks=Object.create(null),this.streamControllers=Object.create(null),this.callbackCapabilities=Object.create(null),this.actionHandler=Object.create(null),r.addEventListener("message",bnt(Ldt,this,Fdt).bind(this),{signal:_nt(Odt,this).signal})}on(t,e){var r=this.actionHandler;if(r[t])throw new Error('There is already an actionName called "'.concat(t,'"'));r[t]=e}send(t,e,r){this.comObj.postMessage({sourceName:this.sourceName,targetName:this.targetName,action:t,data:e},r)}sendWithPromise(t,e,r){var n=this.callbackId++,i=Promise.withResolvers();this.callbackCapabilities[n]=i;try{this.comObj.postMessage({sourceName:this.sourceName,targetName:this.targetName,action:t,callbackId:n,data:e},r)}catch(t){i.reject(t)}return i.promise}sendWithStream(t,e,r,n){var i=this.streamId++,a=this.sourceName,s=this.targetName,o=this.comObj;return new ReadableStream({start:r=>{var l=Promise.withResolvers();return this.streamControllers[i]={controller:r,startCall:l,pullCall:null,cancelCall:null,isClosed:!1},o.postMessage({sourceName:a,targetName:s,action:t,streamId:i,data:e,desiredSize:r.desiredSize},n),l.promise},pull:t=>{var e=Promise.withResolvers();return this.streamControllers[i].pullCall=e,o.postMessage({sourceName:a,targetName:s,stream:Tdt,streamId:i,desiredSize:t.desiredSize}),e.promise},cancel:t=>{Hot(t instanceof Error,"cancel must have a valid reason");var e=Promise.withResolvers();return this.streamControllers[i].cancelCall=e,this.streamControllers[i].isClosed=!0,o.postMessage({sourceName:a,targetName:s,stream:_dt,streamId:i,reason:Rdt(t)}),e.promise}},r)}destroy(){var t;null===(t=_nt(Odt,this))||void 0===t||t.abort(),Snt(Odt,this,null)}}function Fdt(t){var{data:e}=t;if(e.targetName===this.sourceName)if(e.stream)bnt(Ldt,this,jdt).call(this,e);else if(e.callback){var r=e.callbackId,n=this.callbackCapabilities[r];if(!n)throw new Error("Cannot resolve callback ".concat(r));if(delete this.callbackCapabilities[r],e.callback===xdt)n.resolve(e.data);else{if(e.callback!==Adt)throw new Error("Unexpected callback case");n.reject(Rdt(e.reason))}}else{var i=this.actionHandler[e.action];if(!i)throw new Error("Unknown action from worker: ".concat(e.action));if(e.callbackId){var a=this.sourceName,s=e.sourceName,o=this.comObj;Promise.try(i,e.data).then((function(t){o.postMessage({sourceName:a,targetName:s,callback:xdt,callbackId:e.callbackId,data:t})}),(function(t){o.postMessage({sourceName:a,targetName:s,callback:Adt,callbackId:e.callbackId,reason:Rdt(t)})}))}else e.streamId?bnt(Ldt,this,Ndt).call(this,e):i(e.data)}}function Ndt(t){var e=t.streamId,r=this.sourceName,n=t.sourceName,i=this.comObj,a=this,s=this.actionHandler[t.action],o={enqueue(t){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,s=arguments.length>2?arguments[2]:void 0;if(!this.isCancelled){var o=this.desiredSize;this.desiredSize-=a,o>0&&this.desiredSize<=0&&(this.sinkCapability=Promise.withResolvers(),this.ready=this.sinkCapability.promise),i.postMessage({sourceName:r,targetName:n,stream:Edt,streamId:e,chunk:t},s)}},close(){this.isCancelled||(this.isCancelled=!0,i.postMessage({sourceName:r,targetName:n,stream:Sdt,streamId:e}),delete a.streamSinks[e])},error(t){Hot(t instanceof Error,"error must have a valid reason"),this.isCancelled||(this.isCancelled=!0,i.postMessage({sourceName:r,targetName:n,stream:Mdt,streamId:e,reason:Rdt(t)}))},sinkCapability:Promise.withResolvers(),onPull:null,onCancel:null,isCancelled:!1,desiredSize:t.desiredSize,ready:null};o.sinkCapability.resolve(),o.ready=o.sinkCapability.promise,this.streamSinks[e]=o,Promise.try(s,t.data,o).then((function(){i.postMessage({sourceName:r,targetName:n,stream:Pdt,streamId:e,success:!0})}),(function(t){i.postMessage({sourceName:r,targetName:n,stream:Pdt,streamId:e,reason:Rdt(t)})}))}function jdt(t){var e=t.streamId,r=this.sourceName,n=t.sourceName,i=this.comObj,a=this.streamControllers[e],s=this.streamSinks[e];switch(t.stream){case Pdt:t.success?a.startCall.resolve():a.startCall.reject(Rdt(t.reason));break;case Cdt:t.success?a.pullCall.resolve():a.pullCall.reject(Rdt(t.reason));break;case Tdt:if(!s){i.postMessage({sourceName:r,targetName:n,stream:Cdt,streamId:e,success:!0});break}s.desiredSize<=0&&t.desiredSize>0&&s.sinkCapability.resolve(),s.desiredSize=t.desiredSize,Promise.try(s.onPull||Idt).then((function(){i.postMessage({sourceName:r,targetName:n,stream:Cdt,streamId:e,success:!0})}),(function(t){i.postMessage({sourceName:r,targetName:n,stream:Cdt,streamId:e,reason:Rdt(t)})}));break;case Edt:if(Hot(a,"enqueue should have stream controller"),a.isClosed)break;a.controller.enqueue(t.chunk);break;case Sdt:if(Hot(a,"close should have stream controller"),a.isClosed)break;a.isClosed=!0,a.controller.close(),bnt(Ldt,this,Bdt).call(this,a,e);break;case Mdt:Hot(a,"error should have stream controller"),a.controller.error(Rdt(t.reason)),bnt(Ldt,this,Bdt).call(this,a,e);break;case kdt:t.success?a.cancelCall.resolve():a.cancelCall.reject(Rdt(t.reason)),bnt(Ldt,this,Bdt).call(this,a,e);break;case _dt:if(!s)break;var o=Rdt(t.reason);Promise.try(s.onCancel||Idt,o).then((function(){i.postMessage({sourceName:r,targetName:n,stream:kdt,streamId:e,success:!0})}),(function(t){i.postMessage({sourceName:r,targetName:n,stream:kdt,streamId:e,reason:Rdt(t)})})),s.sinkCapability.reject(o),s.isCancelled=!0,delete this.streamSinks[e];break;default:throw new Error("Unexpected stream case")}}function Bdt(t,e){return zdt.apply(this,arguments)}function zdt(){return(zdt=xnt((function*(t,e){var r,n,i;yield Promise.allSettled([null===(r=t.startCall)||void 0===r?void 0:r.promise,null===(n=t.pullCall)||void 0===n?void 0:n.promise,null===(i=t.cancelCall)||void 0===i?void 0:i.promise]),delete this.streamControllers[e]}))).apply(this,arguments)}var Wdt=new WeakMap;class Udt{constructor(t){var{enableHWA:e=!1}=t;knt(this,Wdt,!1),Snt(Wdt,this,e)}create(t,e){if(t<=0||e<=0)throw new Error("Invalid canvas size");var r=this._createCanvas(t,e);return{canvas:r,context:r.getContext("2d",{willReadFrequently:!_nt(Wdt,this)})}}reset(t,e,r){if(!t.canvas)throw new Error("Canvas is not specified");if(e<=0||r<=0)throw new Error("Invalid canvas size");t.canvas.width=e,t.canvas.height=r}destroy(t){if(!t.canvas)throw new Error("Canvas is not specified");t.canvas.width=0,t.canvas.height=0,t.canvas=null,t.context=null}_createCanvas(t,e){Uot("Abstract method `_createCanvas` called.")}}class Hdt{constructor(t){var{baseUrl:e=null,isCompressed:r=!0}=t;this.baseUrl=e,this.isCompressed=r}fetch(t){var e=this;return xnt((function*(){var{name:r}=t;if(!e.baseUrl)throw new Error("Ensure that the `cMapUrl` and `cMapPacked` API parameters are provided.");if(!r)throw new Error("CMap name must be specified.");var n=e.baseUrl+r+(e.isCompressed?".bcmap":"");return e._fetch(n).then((t=>({cMapData:t,isCompressed:e.isCompressed}))).catch((t=>{throw new Error("Unable to load ".concat(e.isCompressed?"binary ":"","CMap at: ").concat(n))}))}))()}_fetch(t){return xnt((function*(){Uot("Abstract method `_fetch` called.")}))()}}class Gdt extends Hdt{_fetch(t){var e=this;return xnt((function*(){var r=yield flt(t,e.isCompressed?"arraybuffer":"text");return r instanceof ArrayBuffer?new Uint8Array(r):elt(r)}))()}}class Ydt{addFilter(t){return"none"}addHCMFilter(t,e){return"none"}addAlphaFilter(t){return"none"}addLuminosityFilter(t){return"none"}addHighlightHCMFilter(t,e,r,n,i){return"none"}destroy(){}}var Vdt=new WeakMap,qdt=new WeakMap,Xdt=new WeakMap,$dt=new WeakMap,Kdt=new WeakMap,Qdt=new WeakMap,Jdt=new WeakMap,Zdt=new WeakSet;function tpt(t){return _nt(qdt,t)||Snt(qdt,t,new Map)}function ept(t){return _nt(Qdt,t)||Snt(Qdt,t,new Map)}function rpt(t){if(!_nt(Xdt,t)){var e=_nt(Kdt,t).createElement("div"),{style:r}=e;r.visibility="hidden",r.contain="strict",r.width=r.height=0,r.position="absolute",r.top=r.left=0,r.zIndex=-1;var n=_nt(Kdt,t).createElementNS(dlt,"svg");n.setAttribute("width",0),n.setAttribute("height",0),Snt(Xdt,t,_nt(Kdt,t).createElementNS(dlt,"defs")),e.append(n),n.append(_nt(Xdt,t)),_nt(Kdt,t).body.append(e)}return _nt(Xdt,t)}function npt(t){if(1===t.length){for(var e=t[0],r=new Array(256),n=0;n<256;n++)r[n]=e[n]/255;var i=r.join(",");return[i,i,i]}for(var[a,s,o]=t,l=new Array(256),h=new Array(256),c=new Array(256),u=0;u<256;u++)l[u]=a[u]/255,h[u]=s[u]/255,c[u]=o[u]/255;return[l.join(","),h.join(","),c.join(",")]}function ipt(t){if(void 0===_nt(Vdt,this)){Snt(Vdt,this,"");var e=_nt(Kdt,this).URL;e!==_nt(Kdt,this).baseURI&&(ylt(e)?Wot('#createUrl: ignore "data:"-URL for performance reasons.'):Snt(Vdt,this,e.split("#",1)[0]))}return"url(".concat(_nt(Vdt,this),"#").concat(t,")")}function apt(t){var e=_nt(Kdt,this).createElementNS(dlt,"feColorMatrix");e.setAttribute("type","matrix"),e.setAttribute("values","0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0.59 0.11 0 0"),t.append(e)}function spt(t){var e=_nt(Kdt,this).createElementNS(dlt,"feColorMatrix");e.setAttribute("type","matrix"),e.setAttribute("values","0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0"),t.append(e)}function opt(t){var e=_nt(Kdt,this).createElementNS(dlt,"filter");return e.setAttribute("color-interpolation-filters","sRGB"),e.setAttribute("id",t),Ent(Zdt,this,rpt).append(e),e}function lpt(t,e,r){var n=_nt(Kdt,this).createElementNS(dlt,e);n.setAttribute("type","discrete"),n.setAttribute("tableValues",r),t.append(n)}function hpt(t,e,r,n){var i=_nt(Kdt,this).createElementNS(dlt,"feComponentTransfer");n.append(i),bnt(Zdt,this,lpt).call(this,i,"feFuncR",t),bnt(Zdt,this,lpt).call(this,i,"feFuncG",e),bnt(Zdt,this,lpt).call(this,i,"feFuncB",r)}function cpt(t,e){var r=_nt(Kdt,this).createElementNS(dlt,"feComponentTransfer");e.append(r),bnt(Zdt,this,lpt).call(this,r,"feFuncA",t)}function upt(t){return Ent(Zdt,this,rpt).style.color=t,Clt(getComputedStyle(Ent(Zdt,this,rpt)).getPropertyValue("color"))}class dpt{constructor(t){var{baseUrl:e=null}=t;this.baseUrl=e}fetch(t){var e=this;return xnt((function*(){var{filename:r}=t;if(!e.baseUrl)throw new Error("Ensure that the `standardFontDataUrl` API parameter is provided.");if(!r)throw new Error("Font filename must be specified.");var n="".concat(e.baseUrl).concat(r);return e._fetch(n).catch((t=>{throw new Error("Unable to load font data at: ".concat(n))}))}))()}_fetch(t){return xnt((function*(){Uot("Abstract method `_fetch` called.")}))()}}class ppt extends dpt{_fetch(t){return xnt((function*(){var e=yield flt(t,"arraybuffer");return new Uint8Array(e)}))()}}function fpt(t){return gpt.apply(this,arguments)}function gpt(){return gpt=xnt((function*(t){var e=process.getBuiltinModule("fs"),r=yield e.promises.readFile(t);return new Uint8Array(r)})),gpt.apply(this,arguments)}Ust&&Wot("Please use the `legacy` build in Node.js environments.");var vpt="Fill",mpt="Stroke",ypt="Shading";function bpt(t,e){if(e){var r=e[2]-e[0],n=e[3]-e[1],i=new Path2D;i.rect(e[0],e[1],r,n),t.clip(i)}}class wpt{getPattern(){Uot("Abstract method `getPattern` called.")}}class xpt extends wpt{constructor(t){super(),this._type=t[1],this._bbox=t[2],this._colorStops=t[3],this._p0=t[4],this._p1=t[5],this._r0=t[6],this._r1=t[7],this.matrix=null}_createGradient(t){var e;for(var r of("axial"===this._type?e=t.createLinearGradient(this._p0[0],this._p0[1],this._p1[0],this._p1[1]):"radial"===this._type&&(e=t.createRadialGradient(this._p0[0],this._p0[1],this._r0,this._p1[0],this._p1[1],this._r1)),this._colorStops))e.addColorStop(r[0],r[1]);return e}getPattern(t,e,r,n){var i;if(n===mpt||n===vpt){var a=e.current.getClippedPathBoundingBox(n,Plt(t))||[0,0,0,0],s=Math.ceil(a[2]-a[0])||1,o=Math.ceil(a[3]-a[1])||1,l=e.cachedCanvases.getCanvas("pattern",s,o),h=l.context;h.clearRect(0,0,h.canvas.width,h.canvas.height),h.beginPath(),h.rect(0,0,h.canvas.width,h.canvas.height),h.translate(-a[0],-a[1]),r=alt.transform(r,[1,0,0,1,a[0],a[1]]),h.transform(...e.baseTransform),this.matrix&&h.transform(...this.matrix),bpt(h,this._bbox),h.fillStyle=this._createGradient(h),h.fill(),i=t.createPattern(l.canvas,"no-repeat");var c=new DOMMatrix(r);i.setTransform(c)}else bpt(t,this._bbox),i=this._createGradient(t);return i}}function Apt(t,e,r,n,i,a,s,o){var l,h=e.coords,c=e.colors,u=t.data,d=4*t.width;h[r+1]>h[n+1]&&(l=r,r=n,n=l,l=a,a=s,s=l),h[n+1]>h[i+1]&&(l=n,n=i,i=l,l=s,s=o,o=l),h[r+1]>h[n+1]&&(l=r,r=n,n=l,l=a,a=s,s=l);var p=(h[r]+e.offsetX)*e.scaleX,f=(h[r+1]+e.offsetY)*e.scaleY,g=(h[n]+e.offsetX)*e.scaleX,v=(h[n+1]+e.offsetY)*e.scaleY,m=(h[i]+e.offsetX)*e.scaleX,y=(h[i+1]+e.offsetY)*e.scaleY;if(!(f>=y))for(var b,w,x,A,_,k,S,E,M=c[a],T=c[a+1],C=c[a+2],P=c[s],I=c[s+1],R=c[s+2],O=c[o],L=c[o+1],D=c[o+2],F=Math.round(f),N=Math.round(y),j=F;j<=N;j++){if(j<v){var B=j<f?0:(f-j)/(f-v);b=p-(p-g)*B,w=M-(M-P)*B,x=T-(T-I)*B,A=C-(C-R)*B}else{var z=void 0;b=g-(g-m)*(z=j>y?1:v===y?0:(v-j)/(v-y)),w=P-(P-O)*z,x=I-(I-L)*z,A=R-(R-D)*z}var W=void 0;_=p-(p-m)*(W=j<f?0:j>y?1:(f-j)/(f-y)),k=M-(M-O)*W,S=T-(T-L)*W,E=C-(C-D)*W;for(var U=Math.round(Math.min(b,_)),H=Math.round(Math.max(b,_)),G=d*j+4*U,Y=U;Y<=H;Y++)(W=(b-Y)/(b-_))<0?W=0:W>1&&(W=1),u[G++]=w-(w-k)*W|0,u[G++]=x-(x-S)*W|0,u[G++]=A-(A-E)*W|0,u[G++]=255}}function _pt(t,e,r){var n,i,a=e.coords,s=e.colors;switch(e.type){case"lattice":var o=e.verticesPerRow,l=Math.floor(a.length/o)-1,h=o-1;for(n=0;n<l;n++)for(var c=n*o,u=0;u<h;u++,c++)Apt(t,r,a[c],a[c+1],a[c+o],s[c],s[c+1],s[c+o]),Apt(t,r,a[c+o+1],a[c+1],a[c+o],s[c+o+1],s[c+1],s[c+o]);break;case"triangles":for(n=0,i=a.length;n<i;n+=3)Apt(t,r,a[n],a[n+1],a[n+2],s[n],s[n+1],s[n+2]);break;default:throw new Error("illegal figure")}}class kpt extends wpt{constructor(t){super(),this._coords=t[2],this._colors=t[3],this._figures=t[4],this._bounds=t[5],this._bbox=t[7],this._background=t[8],this.matrix=null}_createMeshCanvas(t,e,r){var n=Math.floor(this._bounds[0]),i=Math.floor(this._bounds[1]),a=Math.ceil(this._bounds[2])-n,s=Math.ceil(this._bounds[3])-i,o=Math.min(Math.ceil(Math.abs(a*t[0]*1.1)),3e3),l=Math.min(Math.ceil(Math.abs(s*t[1]*1.1)),3e3),h=a/o,c=s/l,u={coords:this._coords,colors:this._colors,offsetX:-n,offsetY:-i,scaleX:1/h,scaleY:1/c},d=o+4,p=l+4,f=r.getCanvas("mesh",d,p),g=f.context,v=g.createImageData(o,l);if(e)for(var m=v.data,y=0,b=m.length;y<b;y+=4)m[y]=e[0],m[y+1]=e[1],m[y+2]=e[2],m[y+3]=255;for(var w of this._figures)_pt(v,w,u);return g.putImageData(v,2,2),{canvas:f.canvas,offsetX:n-2*h,offsetY:i-2*c,scaleX:h,scaleY:c}}getPattern(t,e,r,n){var i;if(bpt(t,this._bbox),n===ypt)i=alt.singularValueDecompose2dScale(Plt(t));else if(i=alt.singularValueDecompose2dScale(e.baseTransform),this.matrix){var a=alt.singularValueDecompose2dScale(this.matrix);i=[i[0]*a[0],i[1]*a[1]]}var s=this._createMeshCanvas(i,n===ypt?null:this._background,e.cachedCanvases);return n!==ypt&&(t.setTransform(...e.baseTransform),this.matrix&&t.transform(...this.matrix)),t.translate(s.offsetX,s.offsetY),t.scale(s.scaleX,s.scaleY),t.createPattern(s.canvas,"no-repeat")}}class Spt extends wpt{getPattern(){return"hotpink"}}var Ept=1,Mpt=2;class Tpt{constructor(t,e,r,n,i){this.operatorList=t[2],this.matrix=t[3],this.bbox=t[4],this.xstep=t[5],this.ystep=t[6],this.paintType=t[7],this.tilingType=t[8],this.color=e,this.ctx=r,this.canvasGraphicsFactory=n,this.baseTransform=i}createPatternCanvas(t){var{bbox:e,operatorList:r,paintType:n,tilingType:i,color:a,canvasGraphicsFactory:s}=this,{xstep:o,ystep:l}=this;o=Math.abs(o),l=Math.abs(l),zot("TilingType: "+i);var h=e[0],c=e[1],u=e[2],d=e[3],p=u-h,f=d-c,g=alt.singularValueDecompose2dScale(this.matrix),v=alt.singularValueDecompose2dScale(this.baseTransform),m=g[0]*v[0],y=g[1]*v[1],b=p,w=f,x=!1,A=!1,_=Math.ceil(o*m),k=Math.ceil(l*y);_>=Math.ceil(p*m)?b=o:x=!0,k>=Math.ceil(f*y)?w=l:A=!0;var S=this.getSizeAndScale(b,this.ctx.canvas.width,m),E=this.getSizeAndScale(w,this.ctx.canvas.height,y),M=t.cachedCanvases.getCanvas("pattern",S.size,E.size),T=M.context,C=s.createCanvasGraphics(T);if(C.groupLevel=t.groupLevel,this.setFillAndStrokeStyleToContext(C,n,a),T.translate(-S.scale*h,-E.scale*c),C.transform(S.scale,0,0,E.scale,0,0),T.save(),this.clipBbox(C,h,c,u,d),C.baseTransform=Plt(C.ctx),C.executeOperatorList(r),C.endDrawing(),T.restore(),x||A){var P=M.canvas;x&&(b=o),A&&(w=l);for(var I=this.getSizeAndScale(b,this.ctx.canvas.width,m),R=this.getSizeAndScale(w,this.ctx.canvas.height,y),O=I.size,L=R.size,D=t.cachedCanvases.getCanvas("pattern-workaround",O,L),F=D.context,N=x?Math.floor(p/o):0,j=A?Math.floor(f/l):0,B=0;B<=N;B++)for(var z=0;z<=j;z++)F.drawImage(P,O*B,L*z,O,L,0,0,O,L);return{canvas:D.canvas,scaleX:I.scale,scaleY:R.scale,offsetX:h,offsetY:c}}return{canvas:M.canvas,scaleX:S.scale,scaleY:E.scale,offsetX:h,offsetY:c}}getSizeAndScale(t,e,r){var n=Math.max(Tpt.MAX_PATTERN_SIZE,e),i=Math.ceil(t*r);return i>=n?i=n:r=i/t,{scale:r,size:i}}clipBbox(t,e,r,n,i){var a=n-e,s=i-r;t.ctx.rect(e,r,a,s),t.current.updateRectMinMax(Plt(t.ctx),[e,r,n,i]),t.clip(),t.endPath()}setFillAndStrokeStyleToContext(t,e,r){var n=t.ctx,i=t.current;switch(e){case Ept:var a=this.ctx;n.fillStyle=a.fillStyle,n.strokeStyle=a.strokeStyle,i.fillColor=a.fillStyle,i.strokeColor=a.strokeStyle;break;case Mpt:var s=alt.makeHexColor(r[0],r[1],r[2]);n.fillStyle=s,n.strokeStyle=s,i.fillColor=s,i.strokeColor=s;break;default:throw new Jot("Unsupported paint type: ".concat(e))}}getPattern(t,e,r,n){var i=r;n!==ypt&&(i=alt.transform(i,e.baseTransform),this.matrix&&(i=alt.transform(i,this.matrix)));var a=this.createPatternCanvas(e),s=new DOMMatrix(i);s=(s=s.translate(a.offsetX,a.offsetY)).scale(1/a.scaleX,1/a.scaleY);var o=t.createPattern(a.canvas,"repeat");return o.setTransform(s),o}}function Cpt(t){var{src:e,srcPos:r=0,dest:n,width:i,height:a,nonBlackColor:s=4294967295,inverseDecode:o=!1}=t,l=nlt.isLittleEndian?4278190080:255,[h,c]=o?[s,l]:[l,s],u=i>>3,d=7&i,p=e.length;n=new Uint32Array(n.buffer);for(var f=0,g=0;g<a;g++){for(var v=r+u;r<v;r++){var m=r<p?e[r]:255;n[f++]=128&m?c:h,n[f++]=64&m?c:h,n[f++]=32&m?c:h,n[f++]=16&m?c:h,n[f++]=8&m?c:h,n[f++]=4&m?c:h,n[f++]=2&m?c:h,n[f++]=1&m?c:h}if(0!==d)for(var y=r<p?e[r++]:255,b=0;b<d;b++)n[f++]=y&1<<7-b?c:h}return{srcPos:r,destPos:f}}Tnt(Tpt,"MAX_PATTERN_SIZE",3e3);var Ppt=16;class Ipt{constructor(t){this.canvasFactory=t,this.cache=Object.create(null)}getCanvas(t,e,r){var n;return void 0!==this.cache[t]?(n=this.cache[t],this.canvasFactory.reset(n,e,r)):(n=this.canvasFactory.create(e,r),this.cache[t]=n),n}delete(t){delete this.cache[t]}clear(){for(var t in this.cache){var e=this.cache[t];this.canvasFactory.destroy(e),delete this.cache[t]}}}function Rpt(t,e,r,n,i,a,s,o,l,h){var[c,u,d,p,f,g]=Plt(t);if(0===u&&0===d){var v=s*c+f,m=Math.round(v),y=o*p+g,b=Math.round(y),w=(s+l)*c+f,x=Math.abs(Math.round(w)-m)||1,A=(o+h)*p+g,_=Math.abs(Math.round(A)-b)||1;return t.setTransform(Math.sign(c),0,0,Math.sign(p),m,b),t.drawImage(e,r,n,i,a,0,0,x,_),t.setTransform(c,u,d,p,f,g),[x,_]}if(0===c&&0===p){var k=o*d+f,S=Math.round(k),E=s*u+g,M=Math.round(E),T=(o+h)*d+f,C=Math.abs(Math.round(T)-S)||1,P=(s+l)*u+g,I=Math.abs(Math.round(P)-M)||1;return t.setTransform(0,Math.sign(u),Math.sign(d),0,S,M),t.drawImage(e,r,n,i,a,0,0,I,C),t.setTransform(c,u,d,p,f,g),[I,C]}return t.drawImage(e,r,n,i,a,s,o,l,h),[Math.hypot(c,u)*l,Math.hypot(d,p)*h]}class Opt{constructor(t,e){this.alphaIsShape=!1,this.fontSize=0,this.fontSizeScale=1,this.textMatrix=Hst,this.textMatrixScale=1,this.fontMatrix=Gst,this.leading=0,this.x=0,this.y=0,this.lineX=0,this.lineY=0,this.charSpacing=0,this.wordSpacing=0,this.textHScale=1,this.textRenderingMode=iot,this.textRise=0,this.fillColor="#000000",this.strokeColor="#000000",this.patternFill=!1,this.patternStroke=!1,this.fillAlpha=1,this.strokeAlpha=1,this.lineWidth=1,this.activeSMask=null,this.transferMaps="none",this.startNewPathAndClipBox([0,0,t,e])}clone(){var t=Object.create(this);return t.clipBox=this.clipBox.slice(),t}setCurrentPoint(t,e){this.x=t,this.y=e}updatePathMinMax(t,e,r){[e,r]=alt.applyTransform([e,r],t),this.minX=Math.min(this.minX,e),this.minY=Math.min(this.minY,r),this.maxX=Math.max(this.maxX,e),this.maxY=Math.max(this.maxY,r)}updateRectMinMax(t,e){var r=alt.applyTransform(e,t),n=alt.applyTransform(e.slice(2),t),i=alt.applyTransform([e[0],e[3]],t),a=alt.applyTransform([e[2],e[1]],t);this.minX=Math.min(this.minX,r[0],n[0],i[0],a[0]),this.minY=Math.min(this.minY,r[1],n[1],i[1],a[1]),this.maxX=Math.max(this.maxX,r[0],n[0],i[0],a[0]),this.maxY=Math.max(this.maxY,r[1],n[1],i[1],a[1])}updateScalingPathMinMax(t,e){alt.scaleMinMax(t,e),this.minX=Math.min(this.minX,e[0]),this.minY=Math.min(this.minY,e[1]),this.maxX=Math.max(this.maxX,e[2]),this.maxY=Math.max(this.maxY,e[3])}updateCurvePathMinMax(t,e,r,n,i,a,s,o,l,h){var c=alt.bezierBoundingBox(e,r,n,i,a,s,o,l,h);h||this.updateRectMinMax(t,c)}getPathBoundingBox(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:vpt,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=[this.minX,this.minY,this.maxX,this.maxY];if(t===mpt){e||Uot("Stroke bounding box must include transform.");var n=alt.singularValueDecompose2dScale(e),i=n[0]*this.lineWidth/2,a=n[1]*this.lineWidth/2;r[0]-=i,r[1]-=a,r[2]+=i,r[3]+=a}return r}updateClipFromPath(){var t=alt.intersect(this.clipBox,this.getPathBoundingBox());this.startNewPathAndClipBox(t||[0,0,0,0])}isEmptyClip(){return this.minX===1/0}startNewPathAndClipBox(t){this.clipBox=t,this.minX=1/0,this.minY=1/0,this.maxX=0,this.maxY=0}getClippedPathBoundingBox(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:vpt,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return alt.intersect(this.clipBox,this.getPathBoundingBox(t,e))}}function Lpt(t,e){if(e instanceof ImageData)t.putImageData(e,0,0);else{var r,n,i,a,s,o=e.height,l=e.width,h=o%Ppt,c=(o-h)/Ppt,u=0===h?c:c+1,d=t.createImageData(l,Ppt),p=0,f=e.data,g=d.data;if(e.kind===cot.GRAYSCALE_1BPP){var v=f.byteLength,m=new Uint32Array(g.buffer,0,g.byteLength>>2),y=m.length,b=l+7>>3,w=4294967295,x=nlt.isLittleEndian?4278190080:255;for(n=0;n<u;n++){for(a=n<c?Ppt:h,r=0,i=0;i<a;i++){for(var A=v-p,_=0,k=A>b?l:8*A-7,S=-8&k,E=0,M=0;_<S;_+=8)M=f[p++],m[r++]=128&M?w:x,m[r++]=64&M?w:x,m[r++]=32&M?w:x,m[r++]=16&M?w:x,m[r++]=8&M?w:x,m[r++]=4&M?w:x,m[r++]=2&M?w:x,m[r++]=1&M?w:x;for(;_<k;_++)0===E&&(M=f[p++],E=128),m[r++]=M&E?w:x,E>>=1}for(;r<y;)m[r++]=0;t.putImageData(d,0,n*Ppt)}}else if(e.kind===cot.RGBA_32BPP){for(i=0,s=l*Ppt*4,n=0;n<c;n++)g.set(f.subarray(p,p+s)),p+=s,t.putImageData(d,0,i),i+=Ppt;n<u&&(s=l*h*4,g.set(f.subarray(p,p+s)),t.putImageData(d,0,i))}else{if(e.kind!==cot.RGB_24BPP)throw new Error("bad image kind: ".concat(e.kind));for(s=l*(a=Ppt),n=0;n<u;n++){for(n>=c&&(s=l*(a=h)),r=0,i=s;i--;)g[r++]=f[p++],g[r++]=f[p++],g[r++]=f[p++],g[r++]=255;t.putImageData(d,0,n*Ppt)}}}}function Dpt(t,e){if(e.bitmap)t.drawImage(e.bitmap,0,0);else for(var r=e.height,n=e.width,i=r%Ppt,a=(r-i)/Ppt,s=0===i?a:a+1,o=t.createImageData(n,Ppt),l=0,h=e.data,c=o.data,u=0;u<s;u++){var d=u<a?Ppt:i;({srcPos:l}=Cpt({src:h,srcPos:l,dest:c,width:n,height:d,nonBlackColor:0})),t.putImageData(o,0,u*Ppt)}}function Fpt(t,e){for(var r of["strokeStyle","fillStyle","fillRule","globalAlpha","lineWidth","lineCap","lineJoin","miterLimit","globalCompositeOperation","font","filter"])void 0!==t[r]&&(e[r]=t[r]);void 0!==t.setLineDash&&(e.setLineDash(t.getLineDash()),e.lineDashOffset=t.lineDashOffset)}function Npt(t){if(t.strokeStyle=t.fillStyle="#000000",t.fillRule="nonzero",t.globalAlpha=1,t.lineWidth=1,t.lineCap="butt",t.lineJoin="miter",t.miterLimit=10,t.globalCompositeOperation="source-over",t.font="10px sans-serif",void 0!==t.setLineDash&&(t.setLineDash([]),t.lineDashOffset=0),!Ust){var{filter:e}=t;"none"!==e&&""!==e&&(t.filter="none")}}function jpt(t,e){if(e)return!0;var r=alt.singularValueDecompose2dScale(t);r[0]=Math.fround(r[0]),r[1]=Math.fround(r[1]);var n=Math.fround((globalThis.devicePixelRatio||1)*plt.PDF_TO_CSS_UNITS);return r[0]<=n&&r[1]<=n}var Bpt=["butt","round","square"],zpt=["miter","round","bevel"],Wpt={},Upt={},Hpt=new WeakSet;class Gpt{constructor(t,e,r,n,i,a,s,o){var{optionalContentConfig:l,markedContentStack:h=null}=a;Mnt(this,Hpt),this.ctx=t,this.current=new Opt(this.ctx.canvas.width,this.ctx.canvas.height),this.stateStack=[],this.pendingClip=null,this.pendingEOFill=!1,this.res=null,this.xobjs=null,this.commonObjs=e,this.objs=r,this.canvasFactory=n,this.filterFactory=i,this.groupStack=[],this.processingType3=null,this.baseTransform=null,this.baseTransformStack=[],this.groupLevel=0,this.smaskStack=[],this.smaskCounter=0,this.tempSMask=null,this.suspendedCtx=null,this.contentVisible=!0,this.markedContentStack=h||[],this.optionalContentConfig=l,this.cachedCanvases=new Ipt(this.canvasFactory),this.cachedPatterns=new Map,this.annotationCanvasMap=s,this.viewportScale=1,this.outputScaleX=1,this.outputScaleY=1,this.pageColors=o,this._cachedScaleForStroking=[-1,0],this._cachedGetSinglePixelWidth=null,this._cachedBitmapsMap=new Map}getObject(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return"string"==typeof t?t.startsWith("g_")?this.commonObjs.get(t):this.objs.get(t):e}beginDrawing(t){var{transform:e,viewport:r,transparency:n=!1,background:i=null}=t,a=this.ctx.canvas.width,s=this.ctx.canvas.height,o=this.ctx.fillStyle;if(this.ctx.fillStyle=i||"#ffffff",this.ctx.fillRect(0,0,a,s),this.ctx.fillStyle=o,n){var l=this.cachedCanvases.getCanvas("transparent",a,s);this.compositeCtx=this.ctx,this.transparentCanvas=l.canvas,this.ctx=l.context,this.ctx.save(),this.ctx.transform(...Plt(this.compositeCtx))}this.ctx.save(),Npt(this.ctx),e&&(this.ctx.transform(...e),this.outputScaleX=e[0],this.outputScaleY=e[0]),this.ctx.transform(...r.transform),this.viewportScale=r.scale,this.baseTransform=Plt(this.ctx)}executeOperatorList(t,e,r,n){var i=t.argsArray,a=t.fnArray,s=e||0,o=i.length;if(o===s)return s;for(var l,h=o-s>10&&"function"==typeof r,c=h?Date.now()+15:0,u=0,d=this.commonObjs,p=this.objs;;){if(void 0!==n&&s===n.nextBreakPoint)return n.breakIt(s,r),s;if((l=a[s])!==Dot.dependency)this[l].apply(this,i[s]);else for(var f of i[s]){var g=f.startsWith("g_")?d:p;if(!g.has(f))return g.get(f,r),s}if(++s===o)return s;if(h&&++u>10){if(Date.now()>c)return r(),s;u=0}}}endDrawing(){for(var t of(bnt(Hpt,this,Ypt).call(this),this.cachedCanvases.clear(),this.cachedPatterns.clear(),this._cachedBitmapsMap.values())){for(var e of t.values())"undefined"!=typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement&&(e.width=e.height=0);t.clear()}this._cachedBitmapsMap.clear(),bnt(Hpt,this,Vpt).call(this)}_scaleImage(t,e){for(var r,n,i,a,s=null!==(r=t.width)&&void 0!==r?r:t.displayWidth,o=null!==(n=t.height)&&void 0!==n?n:t.displayHeight,l=Math.max(Math.hypot(e[0],e[1]),1),h=Math.max(Math.hypot(e[2],e[3]),1),c=s,u=o,d="prescale1";l>2&&c>1||h>2&&u>1;){var p=c,f=u;l>2&&c>1&&(l/=c/(p=c>=16384?Math.floor(c/2)-1||1:Math.ceil(c/2))),h>2&&u>1&&(h/=u/(f=u>=16384?Math.floor(u/2)-1||1:Math.ceil(u)/2)),(a=(i=this.cachedCanvases.getCanvas(d,p,f)).context).clearRect(0,0,p,f),a.drawImage(t,0,0,c,u,0,0,p,f),t=i.canvas,c=p,u=f,d="prescale1"===d?"prescale2":"prescale1"}return{img:t,paintWidth:c,paintHeight:u}}_createMaskCanvas(t){var e,r,n,i,a=this.ctx,{width:s,height:o}=t,l=this.current.fillColor,h=this.current.patternFill,c=Plt(a);if((t.bitmap||t.data)&&t.count>1){var u=t.bitmap||t.data.buffer;r=JSON.stringify(h?c:[c.slice(0,4),l]),(e=this._cachedBitmapsMap.get(u))||(e=new Map,this._cachedBitmapsMap.set(u,e));var d=e.get(r);if(d&&!h)return{canvas:d,offsetX:Math.round(Math.min(c[0],c[2])+c[4]),offsetY:Math.round(Math.min(c[1],c[3])+c[5])};n=d}n||Dpt((i=this.cachedCanvases.getCanvas("maskCanvas",s,o)).context,t);var p=alt.transform(c,[1/s,0,0,-1/o,0,0]);p=alt.transform(p,[1,0,0,1,0,-o]);var[f,g,v,m]=alt.getAxialAlignedBoundingBox([0,0,s,o],p),y=Math.round(v-f)||1,b=Math.round(m-g)||1,w=this.cachedCanvases.getCanvas("fillCanvas",y,b),x=w.context,A=f,_=g;x.translate(-A,-_),x.transform(...p),n||(n=(n=this._scaleImage(i.canvas,Ilt(x))).img,e&&h&&e.set(r,n)),x.imageSmoothingEnabled=jpt(Plt(x),t.interpolate),Rpt(x,n,0,0,n.width,n.height,0,0,s,o),x.globalCompositeOperation="source-in";var k=alt.transform(Ilt(x),[1,0,0,1,-A,-_]);return x.fillStyle=h?l.getPattern(a,this,k,vpt):l,x.fillRect(0,0,s,o),e&&!h&&(this.cachedCanvases.delete("fillCanvas"),e.set(r,w.canvas)),{canvas:w.canvas,offsetX:Math.round(A),offsetY:Math.round(_)}}setLineWidth(t){t!==this.current.lineWidth&&(this._cachedScaleForStroking[0]=-1),this.current.lineWidth=t,this.ctx.lineWidth=t}setLineCap(t){this.ctx.lineCap=Bpt[t]}setLineJoin(t){this.ctx.lineJoin=zpt[t]}setMiterLimit(t){this.ctx.miterLimit=t}setDash(t,e){var r=this.ctx;void 0!==r.setLineDash&&(r.setLineDash(t),r.lineDashOffset=e)}setRenderingIntent(t){}setFlatness(t){}setGState(t){for(var[e,r]of t)switch(e){case"LW":this.setLineWidth(r);break;case"LC":this.setLineCap(r);break;case"LJ":this.setLineJoin(r);break;case"ML":this.setMiterLimit(r);break;case"D":this.setDash(r[0],r[1]);break;case"RI":this.setRenderingIntent(r);break;case"FL":this.setFlatness(r);break;case"Font":this.setFont(r[0],r[1]);break;case"CA":this.current.strokeAlpha=r;break;case"ca":this.current.fillAlpha=r,this.ctx.globalAlpha=r;break;case"BM":this.ctx.globalCompositeOperation=r;break;case"SMask":this.current.activeSMask=r?this.tempSMask:null,this.tempSMask=null,this.checkSMaskState();break;case"TR":this.ctx.filter=this.current.transferMaps=this.filterFactory.addFilter(r)}}get inSMaskMode(){return!!this.suspendedCtx}checkSMaskState(){var t=this.inSMaskMode;this.current.activeSMask&&!t?this.beginSMaskMode():!this.current.activeSMask&&t&&this.endSMaskMode()}beginSMaskMode(){if(this.inSMaskMode)throw new Error("beginSMaskMode called while already in smask mode");var t=this.ctx.canvas.width,e=this.ctx.canvas.height,r="smaskGroupAt"+this.groupLevel,n=this.cachedCanvases.getCanvas(r,t,e);this.suspendedCtx=this.ctx,this.ctx=n.context;var i=this.ctx;i.setTransform(...Plt(this.suspendedCtx)),Fpt(this.suspendedCtx,i),function(t,e){if(t._removeMirroring)throw new Error("Context is already forwarding operations.");t.__originalSave=t.save,t.__originalRestore=t.restore,t.__originalRotate=t.rotate,t.__originalScale=t.scale,t.__originalTranslate=t.translate,t.__originalTransform=t.transform,t.__originalSetTransform=t.setTransform,t.__originalResetTransform=t.resetTransform,t.__originalClip=t.clip,t.__originalMoveTo=t.moveTo,t.__originalLineTo=t.lineTo,t.__originalBezierCurveTo=t.bezierCurveTo,t.__originalRect=t.rect,t.__originalClosePath=t.closePath,t.__originalBeginPath=t.beginPath,t._removeMirroring=()=>{t.save=t.__originalSave,t.restore=t.__originalRestore,t.rotate=t.__originalRotate,t.scale=t.__originalScale,t.translate=t.__originalTranslate,t.transform=t.__originalTransform,t.setTransform=t.__originalSetTransform,t.resetTransform=t.__originalResetTransform,t.clip=t.__originalClip,t.moveTo=t.__originalMoveTo,t.lineTo=t.__originalLineTo,t.bezierCurveTo=t.__originalBezierCurveTo,t.rect=t.__originalRect,t.closePath=t.__originalClosePath,t.beginPath=t.__originalBeginPath,delete t._removeMirroring},t.save=function(){e.save(),this.__originalSave()},t.restore=function(){e.restore(),this.__originalRestore()},t.translate=function(t,r){e.translate(t,r),this.__originalTranslate(t,r)},t.scale=function(t,r){e.scale(t,r),this.__originalScale(t,r)},t.transform=function(t,r,n,i,a,s){e.transform(t,r,n,i,a,s),this.__originalTransform(t,r,n,i,a,s)},t.setTransform=function(t,r,n,i,a,s){e.setTransform(t,r,n,i,a,s),this.__originalSetTransform(t,r,n,i,a,s)},t.resetTransform=function(){e.resetTransform(),this.__originalResetTransform()},t.rotate=function(t){e.rotate(t),this.__originalRotate(t)},t.clip=function(t){e.clip(t),this.__originalClip(t)},t.moveTo=function(t,r){e.moveTo(t,r),this.__originalMoveTo(t,r)},t.lineTo=function(t,r){e.lineTo(t,r),this.__originalLineTo(t,r)},t.bezierCurveTo=function(t,r,n,i,a,s){e.bezierCurveTo(t,r,n,i,a,s),this.__originalBezierCurveTo(t,r,n,i,a,s)},t.rect=function(t,r,n,i){e.rect(t,r,n,i),this.__originalRect(t,r,n,i)},t.closePath=function(){e.closePath(),this.__originalClosePath()},t.beginPath=function(){e.beginPath(),this.__originalBeginPath()}}(i,this.suspendedCtx),this.setGState([["BM","source-over"],["ca",1],["CA",1]])}endSMaskMode(){if(!this.inSMaskMode)throw new Error("endSMaskMode called while not in smask mode");this.ctx._removeMirroring(),Fpt(this.ctx,this.suspendedCtx),this.ctx=this.suspendedCtx,this.suspendedCtx=null}compose(t){if(this.current.activeSMask){t?(t[0]=Math.floor(t[0]),t[1]=Math.floor(t[1]),t[2]=Math.ceil(t[2]),t[3]=Math.ceil(t[3])):t=[0,0,this.ctx.canvas.width,this.ctx.canvas.height];var e=this.current.activeSMask,r=this.suspendedCtx;this.composeSMask(r,e,this.ctx,t),this.ctx.save(),this.ctx.setTransform(1,0,0,1,0,0),this.ctx.clearRect(0,0,this.ctx.canvas.width,this.ctx.canvas.height),this.ctx.restore()}}composeSMask(t,e,r,n){var i=n[0],a=n[1],s=n[2]-i,o=n[3]-a;0!==s&&0!==o&&(this.genericComposeSMask(e.context,r,s,o,e.subtype,e.backdrop,e.transferMap,i,a,e.offsetX,e.offsetY),t.save(),t.globalAlpha=1,t.globalCompositeOperation="source-over",t.setTransform(1,0,0,1,0,0),t.drawImage(r.canvas,0,0),t.restore())}genericComposeSMask(t,e,r,n,i,a,s,o,l,h,c){var u=t.canvas,d=o-h,p=l-c;if(a){var f=alt.makeHexColor(...a);if(d<0||p<0||d+r>u.width||p+n>u.height){var g=this.cachedCanvases.getCanvas("maskExtension",r,n),v=g.context;v.drawImage(u,-d,-p),v.globalCompositeOperation="destination-atop",v.fillStyle=f,v.fillRect(0,0,r,n),v.globalCompositeOperation="source-over",u=g.canvas,d=p=0}else{t.save(),t.globalAlpha=1,t.setTransform(1,0,0,1,0,0);var m=new Path2D;m.rect(d,p,r,n),t.clip(m),t.globalCompositeOperation="destination-atop",t.fillStyle=f,t.fillRect(d,p,r,n),t.restore()}}e.save(),e.globalAlpha=1,e.setTransform(1,0,0,1,0,0),"Alpha"===i&&s?e.filter=this.filterFactory.addAlphaFilter(s):"Luminosity"===i&&(e.filter=this.filterFactory.addLuminosityFilter(s));var y=new Path2D;y.rect(o,l,r,n),e.clip(y),e.globalCompositeOperation="destination-in",e.drawImage(u,d,p,r,n,o,l,r,n),e.restore()}save(){this.inSMaskMode?(Fpt(this.ctx,this.suspendedCtx),this.suspendedCtx.save()):this.ctx.save();var t=this.current;this.stateStack.push(t),this.current=t.clone()}restore(){0===this.stateStack.length&&this.inSMaskMode&&this.endSMaskMode(),0!==this.stateStack.length&&(this.current=this.stateStack.pop(),this.inSMaskMode?(this.suspendedCtx.restore(),Fpt(this.suspendedCtx,this.ctx)):this.ctx.restore(),this.checkSMaskState(),this.pendingClip=null,this._cachedScaleForStroking[0]=-1,this._cachedGetSinglePixelWidth=null)}transform(t,e,r,n,i,a){this.ctx.transform(t,e,r,n,i,a),this._cachedScaleForStroking[0]=-1,this._cachedGetSinglePixelWidth=null}constructPath(t,e,r){for(var n,i,a=this.ctx,s=this.current,o=s.x,l=s.y,h=Plt(a),c=0===h[0]&&0===h[3]||0===h[1]&&0===h[2],u=c?r.slice(0):null,d=0,p=0,f=t.length;d<f;d++)switch(0|t[d]){case Dot.rectangle:o=e[p++],l=e[p++];var g=e[p++],v=e[p++],m=o+g,y=l+v;a.moveTo(o,l),0===g||0===v?a.lineTo(m,y):(a.lineTo(m,l),a.lineTo(m,y),a.lineTo(o,y)),c||s.updateRectMinMax(h,[o,l,m,y]),a.closePath();break;case Dot.moveTo:o=e[p++],l=e[p++],a.moveTo(o,l),c||s.updatePathMinMax(h,o,l);break;case Dot.lineTo:o=e[p++],l=e[p++],a.lineTo(o,l),c||s.updatePathMinMax(h,o,l);break;case Dot.curveTo:n=o,i=l,o=e[p+4],l=e[p+5],a.bezierCurveTo(e[p],e[p+1],e[p+2],e[p+3],o,l),s.updateCurvePathMinMax(h,n,i,e[p],e[p+1],e[p+2],e[p+3],o,l,u),p+=6;break;case Dot.curveTo2:n=o,i=l,a.bezierCurveTo(o,l,e[p],e[p+1],e[p+2],e[p+3]),s.updateCurvePathMinMax(h,n,i,o,l,e[p],e[p+1],e[p+2],e[p+3],u),o=e[p+2],l=e[p+3],p+=4;break;case Dot.curveTo3:n=o,i=l,o=e[p+2],l=e[p+3],a.bezierCurveTo(e[p],e[p+1],o,l,o,l),s.updateCurvePathMinMax(h,n,i,e[p],e[p+1],o,l,o,l,u),p+=4;break;case Dot.closePath:a.closePath()}c&&s.updateScalingPathMinMax(h,u),s.setCurrentPoint(o,l)}closePath(){this.ctx.closePath()}stroke(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],e=this.ctx,r=this.current.strokeColor;e.globalAlpha=this.current.strokeAlpha,this.contentVisible&&("object"==typeof r&&null!=r&&r.getPattern?(e.save(),e.strokeStyle=r.getPattern(e,this,Ilt(e),mpt),this.rescaleAndStroke(!1),e.restore()):this.rescaleAndStroke(!0)),t&&this.consumePath(this.current.getClippedPathBoundingBox()),e.globalAlpha=this.current.fillAlpha}closeStroke(){this.closePath(),this.stroke()}fill(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],e=this.ctx,r=this.current.fillColor,n=!1;this.current.patternFill&&(e.save(),e.fillStyle=r.getPattern(e,this,Ilt(e),vpt),n=!0);var i=this.current.getClippedPathBoundingBox();this.contentVisible&&null!==i&&(this.pendingEOFill?(e.fill("evenodd"),this.pendingEOFill=!1):e.fill()),n&&e.restore(),t&&this.consumePath(i)}eoFill(){this.pendingEOFill=!0,this.fill()}fillStroke(){this.fill(!1),this.stroke(!1),this.consumePath()}eoFillStroke(){this.pendingEOFill=!0,this.fillStroke()}closeFillStroke(){this.closePath(),this.fillStroke()}closeEOFillStroke(){this.pendingEOFill=!0,this.closePath(),this.fillStroke()}endPath(){this.consumePath()}clip(){this.pendingClip=Wpt}eoClip(){this.pendingClip=Upt}beginText(){this.current.textMatrix=Hst,this.current.textMatrixScale=1,this.current.x=this.current.lineX=0,this.current.y=this.current.lineY=0}endText(){var t=this.pendingTextPaths,e=this.ctx;if(void 0!==t){var r=new Path2D,n=e.getTransform().invertSelf();for(var{transform:i,x:a,y:s,fontSize:o,path:l}of t)r.addPath(l,new DOMMatrix(i).preMultiplySelf(n).translate(a,s).scale(o,-o));e.clip(r),e.beginPath(),delete this.pendingTextPaths}else e.beginPath()}setCharSpacing(t){this.current.charSpacing=t}setWordSpacing(t){this.current.wordSpacing=t}setHScale(t){this.current.textHScale=t/100}setLeading(t){this.current.leading=-t}setFont(t,e){var r,n=this.commonObjs.get(t),i=this.current;if(!n)throw new Error("Can't find font for ".concat(t));if(i.fontMatrix=n.fontMatrix||Gst,0!==i.fontMatrix[0]&&0!==i.fontMatrix[3]||Wot("Invalid font matrix for font "+t),e<0?(e=-e,i.fontDirection=-1):i.fontDirection=1,this.current.font=n,this.current.fontSize=e,!n.isType3Font){var a=n.loadedName||"sans-serif",s=(null===(r=n.systemFontInfo)||void 0===r?void 0:r.css)||'"'.concat(a,'", ').concat(n.fallbackName),o="normal";n.black?o="900":n.bold&&(o="bold");var l=n.italic?"italic":"normal",h=e;e<16?h=16:e>100&&(h=100),this.current.fontSizeScale=e/h,this.ctx.font="".concat(l," ").concat(o," ").concat(h,"px ").concat(s)}}setTextRenderingMode(t){this.current.textRenderingMode=t}setTextRise(t){this.current.textRise=t}moveText(t,e){this.current.x=this.current.lineX+=t,this.current.y=this.current.lineY+=e}setLeadingMoveText(t,e){this.setLeading(-e),this.moveText(t,e)}setTextMatrix(t,e,r,n,i,a){this.current.textMatrix=[t,e,r,n,i,a],this.current.textMatrixScale=Math.hypot(t,e),this.current.x=this.current.lineX=0,this.current.y=this.current.lineY=0}nextLine(){this.moveText(0,this.current.leading)}paintChar(t,e,r,n,i){var a,s=this.ctx,o=this.current,l=o.font,h=o.textRenderingMode,c=o.fontSize/o.fontSizeScale,u=h&lot,d=!!(h&hot),p=o.patternFill&&!l.missingFile,f=o.patternStroke&&!l.missingFile;if((l.disableFontFace||d||p||f)&&(a=l.getPathGenerator(this.commonObjs,t)),l.disableFontFace||p||f){if(s.save(),s.translate(e,r),s.scale(c,-c),u===iot||u===sot)if(n){var g=s.getTransform();s.setTransform(...n),s.fill(bnt(Hpt,this,qpt).call(this,a,g,n))}else s.fill(a);if(u===aot||u===sot)if(i){var v=s.getTransform();s.setTransform(...i),s.stroke(bnt(Hpt,this,qpt).call(this,a,v,i))}else s.lineWidth/=c,s.stroke(a);s.restore()}else u!==iot&&u!==sot||s.fillText(t,e,r),u!==aot&&u!==sot||s.strokeText(t,e,r);d&&(this.pendingTextPaths||(this.pendingTextPaths=[])).push({transform:Plt(s),x:e,y:r,fontSize:c,path:a})}get isFontSubpixelAAEnabled(){var{context:t}=this.cachedCanvases.getCanvas("isFontSubpixelAAEnabled",10,10);t.scale(1.5,1),t.fillText("I",0,10);for(var e=t.getImageData(0,0,10,10).data,r=!1,n=3;n<e.length;n+=4)if(e[n]>0&&e[n]<255){r=!0;break}return Yot(this,"isFontSubpixelAAEnabled",r)}showText(t){var e=this.current,r=e.font;if(r.isType3Font)return this.showType3Text(t);var n=e.fontSize;if(0!==n){var i,a,s=this.ctx,o=e.fontSizeScale,l=e.charSpacing,h=e.wordSpacing,c=e.fontDirection,u=e.textHScale*c,d=t.length,p=r.vertical,f=p?1:-1,g=r.defaultVMetrics,v=n*e.fontMatrix[0],m=e.textRenderingMode===iot&&!r.disableFontFace&&!e.patternFill;if(s.save(),s.transform(...e.textMatrix),s.translate(e.x,e.y+e.textRise),c>0?s.scale(u,-1):s.scale(u,1),e.patternFill){s.save();var y=e.fillColor.getPattern(s,this,Ilt(s),vpt);i=Plt(s),s.restore(),s.fillStyle=y}if(e.patternStroke){s.save();var b=e.strokeColor.getPattern(s,this,Ilt(s),mpt);a=Plt(s),s.restore(),s.strokeStyle=b}var w=e.lineWidth,x=e.textMatrixScale;if(0===x||0===w){var A=e.textRenderingMode&lot;A!==aot&&A!==sot||(w=this.getSinglePixelWidth())}else w/=x;if(1!==o&&(s.scale(o,o),w/=o),s.lineWidth=w,r.isInvalidPDFjsFont){var _=[],k=0;for(var S of t)_.push(S.unicode),k+=S.width;return s.fillText(_.join(""),0,0),e.x+=k*v*u,s.restore(),void this.compose()}var E,M=0;for(E=0;E<d;++E){var T=t[E];if("number"!=typeof T){var C=!1,P=(T.isSpace?h:0)+l,I=T.fontChar,R=T.accent,O=void 0,L=void 0,D=T.width;if(p){var F=T.vmetric||g,N=-(T.vmetric?F[1]:.5*D)*v,j=F[2]*v;D=F?-F[0]:D,O=N/o,L=(M+j)/o}else O=M/o,L=0;if(r.remeasure&&D>0){var B=1e3*s.measureText(I).width/n*o;if(D<B&&this.isFontSubpixelAAEnabled){var z=D/B;C=!0,s.save(),s.scale(z,1),O/=z}else D!==B&&(O+=(D-B)/2e3*n/o)}if(this.contentVisible&&(T.isInFont||r.missingFile))if(m&&!R)s.fillText(I,O,L);else if(this.paintChar(I,O,L,i,a),R){var W=O+n*R.offset.x/o,U=L-n*R.offset.y/o;this.paintChar(R.fontChar,W,U,i,a)}M+=p?D*v-P*c:D*v+P*c,C&&s.restore()}else M+=f*T*n/1e3}p?e.y-=M:e.x+=M*u,s.restore(),this.compose()}}showType3Text(t){var e,r,n,i,a=this.ctx,s=this.current,o=s.font,l=s.fontSize,h=s.fontDirection,c=o.vertical?1:-1,u=s.charSpacing,d=s.wordSpacing,p=s.textHScale*h,f=s.fontMatrix||Gst,g=t.length;if(!(s.textRenderingMode===oot)&&0!==l){for(this._cachedScaleForStroking[0]=-1,this._cachedGetSinglePixelWidth=null,a.save(),a.transform(...s.textMatrix),a.translate(s.x,s.y),a.scale(p,h),e=0;e<g;++e)if("number"!=typeof(r=t[e])){var v=(r.isSpace?d:0)+u,m=o.charProcOperatorList[r.operatorListId];if(m)this.contentVisible&&(this.processingType3=r,this.save(),a.scale(l,l),a.transform(...f),this.executeOperatorList(m),this.restore()),n=alt.applyTransform([r.width,0],f)[0]*l+v,a.translate(n,0),s.x+=n*p;else Wot('Type3 character "'.concat(r.operatorListId,'" is not available.'))}else i=c*r*l/1e3,this.ctx.translate(i,0),s.x+=i*p;a.restore(),this.processingType3=null}}setCharWidth(t,e){}setCharWidthAndBounds(t,e,r,n,i,a){this.ctx.rect(r,n,i-r,a-n),this.ctx.clip(),this.endPath()}getColorN_Pattern(t){var e;if("TilingPattern"===t[0]){var r=t[1],n=this.baseTransform||Plt(this.ctx),i={createCanvasGraphics:t=>new Gpt(t,this.commonObjs,this.objs,this.canvasFactory,this.filterFactory,{optionalContentConfig:this.optionalContentConfig,markedContentStack:this.markedContentStack})};e=new Tpt(t,r,this.ctx,i,n)}else e=this._getPattern(t[1],t[2]);return e}setStrokeColorN(){this.current.strokeColor=this.getColorN_Pattern(arguments),this.current.patternStroke=!0}setFillColorN(){this.current.fillColor=this.getColorN_Pattern(arguments),this.current.patternFill=!0}setStrokeRGBColor(t,e,r){this.ctx.strokeStyle=this.current.strokeColor=alt.makeHexColor(t,e,r),this.current.patternStroke=!1}setStrokeTransparent(){this.ctx.strokeStyle=this.current.strokeColor="transparent",this.current.patternStroke=!1}setFillRGBColor(t,e,r){this.ctx.fillStyle=this.current.fillColor=alt.makeHexColor(t,e,r),this.current.patternFill=!1}setFillTransparent(){this.ctx.fillStyle=this.current.fillColor="transparent",this.current.patternFill=!1}_getPattern(t){var e,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return this.cachedPatterns.has(t)?e=this.cachedPatterns.get(t):(e=function(t){switch(t[0]){case"RadialAxial":return new xpt(t);case"Mesh":return new kpt(t);case"Dummy":return new Spt}throw new Error("Unknown IR type: ".concat(t[0]))}(this.getObject(t)),this.cachedPatterns.set(t,e)),r&&(e.matrix=r),e}shadingFill(t){if(this.contentVisible){var e=this.ctx;this.save();var r=this._getPattern(t);e.fillStyle=r.getPattern(e,this,Ilt(e),ypt);var n=Ilt(e);if(n){var{width:i,height:a}=e.canvas,[s,o,l,h]=alt.getAxialAlignedBoundingBox([0,0,i,a],n);this.ctx.fillRect(s,o,l-s,h-o)}else this.ctx.fillRect(-1e10,-1e10,2e10,2e10);this.compose(this.current.getClippedPathBoundingBox()),this.restore()}}beginInlineImage(){Uot("Should not call beginInlineImage")}beginImageData(){Uot("Should not call beginImageData")}paintFormXObjectBegin(t,e){if(this.contentVisible&&(this.save(),this.baseTransformStack.push(this.baseTransform),t&&this.transform(...t),this.baseTransform=Plt(this.ctx),e)){var r=e[2]-e[0],n=e[3]-e[1];this.ctx.rect(e[0],e[1],r,n),this.current.updateRectMinMax(Plt(this.ctx),e),this.clip(),this.endPath()}}paintFormXObjectEnd(){this.contentVisible&&(this.restore(),this.baseTransform=this.baseTransformStack.pop())}beginGroup(t){if(this.contentVisible){this.save(),this.inSMaskMode&&(this.endSMaskMode(),this.current.activeSMask=null);var e=this.ctx;t.isolated||zot("TODO: Support non-isolated groups."),t.knockout&&Wot("Knockout groups not supported.");var r=Plt(e);if(t.matrix&&e.transform(...t.matrix),!t.bbox)throw new Error("Bounding box is required.");var n=alt.getAxialAlignedBoundingBox(t.bbox,Plt(e)),i=[0,0,e.canvas.width,e.canvas.height];n=alt.intersect(n,i)||[0,0,0,0];var a=Math.floor(n[0]),s=Math.floor(n[1]),o=Math.max(Math.ceil(n[2])-a,1),l=Math.max(Math.ceil(n[3])-s,1);this.current.startNewPathAndClipBox([0,0,o,l]);var h="groupAt"+this.groupLevel;t.smask&&(h+="_smask_"+this.smaskCounter++%2);var c=this.cachedCanvases.getCanvas(h,o,l),u=c.context;u.translate(-a,-s),u.transform(...r),t.smask?this.smaskStack.push({canvas:c.canvas,context:u,offsetX:a,offsetY:s,subtype:t.smask.subtype,backdrop:t.smask.backdrop,transferMap:t.smask.transferMap||null,startTransformInverse:null}):(e.setTransform(1,0,0,1,0,0),e.translate(a,s),e.save()),Fpt(e,u),this.ctx=u,this.setGState([["BM","source-over"],["ca",1],["CA",1]]),this.groupStack.push(e),this.groupLevel++}}endGroup(t){if(this.contentVisible){this.groupLevel--;var e=this.ctx,r=this.groupStack.pop();if(this.ctx=r,this.ctx.imageSmoothingEnabled=!1,t.smask)this.tempSMask=this.smaskStack.pop(),this.restore();else{this.ctx.restore();var n=Plt(this.ctx);this.restore(),this.ctx.save(),this.ctx.setTransform(...n);var i=alt.getAxialAlignedBoundingBox([0,0,e.canvas.width,e.canvas.height],n);this.ctx.drawImage(e.canvas,0,0),this.ctx.restore(),this.compose(i)}}}beginAnnotation(t,e,r,n,i){if(bnt(Hpt,this,Ypt).call(this),Npt(this.ctx),this.ctx.save(),this.save(),this.baseTransform&&this.ctx.setTransform(...this.baseTransform),e){var a=e[2]-e[0],s=e[3]-e[1];if(i&&this.annotationCanvasMap){(r=r.slice())[4]-=e[0],r[5]-=e[1],(e=e.slice())[0]=e[1]=0,e[2]=a,e[3]=s;var[o,l]=alt.singularValueDecompose2dScale(Plt(this.ctx)),{viewportScale:h}=this,c=Math.ceil(a*this.outputScaleX*h),u=Math.ceil(s*this.outputScaleY*h);this.annotationCanvas=this.canvasFactory.create(c,u);var{canvas:d,context:p}=this.annotationCanvas;this.annotationCanvasMap.set(t,d),this.annotationCanvas.savedCtx=this.ctx,this.ctx=p,this.ctx.save(),this.ctx.setTransform(o,0,0,-l,0,s*l),Npt(this.ctx)}else Npt(this.ctx),this.endPath(),this.ctx.rect(e[0],e[1],a,s),this.ctx.clip(),this.ctx.beginPath()}this.current=new Opt(this.ctx.canvas.width,this.ctx.canvas.height),this.transform(...r),this.transform(...n)}endAnnotation(){this.annotationCanvas&&(this.ctx.restore(),bnt(Hpt,this,Vpt).call(this),this.ctx=this.annotationCanvas.savedCtx,delete this.annotationCanvas.savedCtx,delete this.annotationCanvas)}paintImageMaskXObject(t){if(this.contentVisible){var e=t.count;(t=this.getObject(t.data,t)).count=e;var r=this.ctx,n=this.processingType3;if(n&&(void 0===n.compiled&&(n.compiled=function(t){var{width:e,height:r}=t;if(e>1e3||r>1e3)return null;var n,i,a,s=new Uint8Array([0,2,4,0,1,0,5,4,8,10,0,8,0,2,1,0]),o=e+1,l=new Uint8Array(o*(r+1)),h=e+7&-8,c=new Uint8Array(h*r),u=0;for(var d of t.data)for(var p=128;p>0;)c[u++]=d&p?0:255,p>>=1;var f=0;for(0!==c[u=0]&&(l[0]=1,++f),i=1;i<e;i++)c[u]!==c[u+1]&&(l[i]=c[u]?2:1,++f),u++;for(0!==c[u]&&(l[i]=2,++f),n=1;n<r;n++){a=n*o,c[(u=n*h)-h]!==c[u]&&(l[a]=c[u]?1:8,++f);var g=(c[u]?4:0)+(c[u-h]?8:0);for(i=1;i<e;i++)s[g=(g>>2)+(c[u+1]?4:0)+(c[u-h+1]?8:0)]&&(l[a+i]=s[g],++f),u++;if(c[u-h]!==c[u]&&(l[a+i]=c[u]?2:4,++f),f>1e3)return null}for(a=n*o,0!==c[u=h*(r-1)]&&(l[a]=8,++f),i=1;i<e;i++)c[u]!==c[u+1]&&(l[a+i]=c[u]?4:8,++f),u++;if(0!==c[u]&&(l[a+i]=4,++f),f>1e3)return null;var v=new Int32Array([0,o,-1,0,-o,0,0,0,1]),m=new Path2D;for(n=0;f&&n<=r;n++){for(var y=n*o,b=y+e;y<b&&!l[y];)y++;if(y!==b){m.moveTo(y%o,n);var w=y,x=l[y];do{var A=v[x];do{y+=A}while(!l[y]);var _=l[y];5!==_&&10!==_?(x=_,l[y]=0):(x=_&51*x>>4,l[y]&=x>>2|x<<2),m.lineTo(y%o,y/o|0),l[y]||--f}while(w!==y);--n}}return c=null,l=null,function(t){t.save(),t.scale(1/e,-1/r),t.translate(0,-r),t.fill(m),t.beginPath(),t.restore()}}(t)),n.compiled))n.compiled(r);else{var i=this._createMaskCanvas(t),a=i.canvas;r.save(),r.setTransform(1,0,0,1,0,0),r.drawImage(a,i.offsetX,i.offsetY),r.restore(),this.compose()}}}paintImageMaskXObjectRepeat(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,i=arguments.length>4?arguments[4]:void 0,a=arguments.length>5?arguments[5]:void 0;if(this.contentVisible){t=this.getObject(t.data,t);var s=this.ctx;s.save();var o=Plt(s);s.transform(e,r,n,i,0,0);var l=this._createMaskCanvas(t);s.setTransform(1,0,0,1,l.offsetX-o[4],l.offsetY-o[5]);for(var h=0,c=a.length;h<c;h+=2){var u=alt.transform(o,[e,r,n,i,a[h],a[h+1]]),[d,p]=alt.applyTransform([0,0],u);s.drawImage(l.canvas,d,p)}s.restore(),this.compose()}}paintImageMaskXObjectGroup(t){if(this.contentVisible){var e=this.ctx,r=this.current.fillColor,n=this.current.patternFill;for(var i of t){var{data:a,width:s,height:o,transform:l}=i,h=this.cachedCanvases.getCanvas("maskCanvas",s,o),c=h.context;c.save(),Dpt(c,this.getObject(a,i)),c.globalCompositeOperation="source-in",c.fillStyle=n?r.getPattern(c,this,Ilt(e),vpt):r,c.fillRect(0,0,s,o),c.restore(),e.save(),e.transform(...l),e.scale(1,-1),Rpt(e,h.canvas,0,0,s,o,0,-1,1,1),e.restore()}this.compose()}}paintImageXObject(t){if(this.contentVisible){var e=this.getObject(t);e?this.paintInlineImageXObject(e):Wot("Dependent image isn't ready yet")}}paintImageXObjectRepeat(t,e,r,n){if(this.contentVisible){var i=this.getObject(t);if(i){for(var a=i.width,s=i.height,o=[],l=0,h=n.length;l<h;l+=2)o.push({transform:[e,0,0,r,n[l],n[l+1]],x:0,y:0,w:a,h:s});this.paintInlineImageXObjectGroup(i,o)}else Wot("Dependent image isn't ready yet")}}applyTransferMapsToCanvas(t){return"none"!==this.current.transferMaps&&(t.filter=this.current.transferMaps,t.drawImage(t.canvas,0,0),t.filter="none"),t.canvas}applyTransferMapsToBitmap(t){if("none"===this.current.transferMaps)return t.bitmap;var{bitmap:e,width:r,height:n}=t,i=this.cachedCanvases.getCanvas("inlineImage",r,n),a=i.context;return a.filter=this.current.transferMaps,a.drawImage(e,0,0),a.filter="none",i.canvas}paintInlineImageXObject(t){if(this.contentVisible){var e,r=t.width,n=t.height,i=this.ctx;if(this.save(),!Ust){var{filter:a}=i;"none"!==a&&""!==a&&(i.filter="none")}if(i.scale(1/r,-1/n),t.bitmap)e=this.applyTransferMapsToBitmap(t);else if("function"==typeof HTMLElement&&t instanceof HTMLElement||!t.data)e=t;else{var s=this.cachedCanvases.getCanvas("inlineImage",r,n).context;Lpt(s,t),e=this.applyTransferMapsToCanvas(s)}var o=this._scaleImage(e,Ilt(i));i.imageSmoothingEnabled=jpt(Plt(i),t.interpolate),Rpt(i,o.img,0,0,o.paintWidth,o.paintHeight,0,-n,r,n),this.compose(),this.restore()}}paintInlineImageXObjectGroup(t,e){if(this.contentVisible){var r,n=this.ctx;if(t.bitmap)r=t.bitmap;else{var i=t.width,a=t.height,s=this.cachedCanvases.getCanvas("inlineImage",i,a).context;Lpt(s,t),r=this.applyTransferMapsToCanvas(s)}for(var o of e)n.save(),n.transform(...o.transform),n.scale(1,-1),Rpt(n,r,o.x,o.y,o.w,o.h,0,-1,1,1),n.restore();this.compose()}}paintSolidColorImageMask(){this.contentVisible&&(this.ctx.fillRect(0,0,1,1),this.compose())}markPoint(t){}markPointProps(t,e){}beginMarkedContent(t){this.markedContentStack.push({visible:!0})}beginMarkedContentProps(t,e){"OC"===t?this.markedContentStack.push({visible:this.optionalContentConfig.isVisible(e)}):this.markedContentStack.push({visible:!0}),this.contentVisible=this.isContentVisible()}endMarkedContent(){this.markedContentStack.pop(),this.contentVisible=this.isContentVisible()}beginCompat(){}endCompat(){}consumePath(t){var e=this.current.isEmptyClip();this.pendingClip&&this.current.updateClipFromPath(),this.pendingClip||this.compose(t);var r=this.ctx;this.pendingClip&&(e||(this.pendingClip===Upt?r.clip("evenodd"):r.clip()),this.pendingClip=null),this.current.startNewPathAndClipBox(this.current.clipBox),r.beginPath()}getSinglePixelWidth(){if(!this._cachedGetSinglePixelWidth){var t=Plt(this.ctx);if(0===t[1]&&0===t[2])this._cachedGetSinglePixelWidth=1/Math.min(Math.abs(t[0]),Math.abs(t[3]));else{var e=Math.abs(t[0]*t[3]-t[2]*t[1]),r=Math.hypot(t[0],t[2]),n=Math.hypot(t[1],t[3]);this._cachedGetSinglePixelWidth=Math.max(r,n)/e}}return this._cachedGetSinglePixelWidth}getScaleForStroking(){if(-1===this._cachedScaleForStroking[0]){var t,e,{lineWidth:r}=this.current,{a:n,b:i,c:a,d:s}=this.ctx.getTransform();if(0===i&&0===a){var o=Math.abs(n),l=Math.abs(s);if(o===l)if(0===r)t=e=1/o;else{var h=o*r;t=e=h<1?1/h:1}else if(0===r)t=1/o,e=1/l;else{var c=o*r,u=l*r;t=c<1?1/c:1,e=u<1?1/u:1}}else{var d=Math.abs(n*s-i*a),p=Math.hypot(n,i),f=Math.hypot(a,s);if(0===r)t=f/d,e=p/d;else{var g=r*d;t=f>g?f/g:1,e=p>g?p/g:1}}this._cachedScaleForStroking[0]=t,this._cachedScaleForStroking[1]=e}return this._cachedScaleForStroking}rescaleAndStroke(t){var{ctx:e}=this,{lineWidth:r}=this.current,[n,i]=this.getScaleForStroking();if(e.lineWidth=r||1,1!==n||1!==i){var a=e.getLineDash();if(t&&e.save(),e.scale(n,i),a.length>0){var s=Math.max(n,i);e.setLineDash(a.map((t=>t/s))),e.lineDashOffset/=s}e.stroke(),t&&e.restore()}else e.stroke()}isContentVisible(){for(var t=this.markedContentStack.length-1;t>=0;t--)if(!this.markedContentStack[t].visible)return!1;return!0}}function Ypt(){for(;this.stateStack.length||this.inSMaskMode;)this.restore();this.current.activeSMask=null,this.ctx.restore(),this.transparentCanvas&&(this.ctx=this.compositeCtx,this.ctx.save(),this.ctx.setTransform(1,0,0,1,0,0),this.ctx.drawImage(this.transparentCanvas,0,0),this.ctx.restore(),this.transparentCanvas=null)}function Vpt(){if(this.pageColors){var t=this.filterFactory.addHCMFilter(this.pageColors.foreground,this.pageColors.background);if("none"!==t){var e=this.ctx.filter;this.ctx.filter=t,this.ctx.drawImage(this.ctx.canvas,0,0),this.ctx.filter=e}}}function qpt(t,e,r){var n=new Path2D;return n.addPath(t,new DOMMatrix(r).invertSelf().multiplySelf(e)),n}for(var Xpt in Dot)void 0!==Gpt.prototype[Xpt]&&(Gpt.prototype[Dot[Xpt]]=Gpt.prototype[Xpt]);class $pt{static get workerPort(){return bnt($pt,this,Kpt)._}static set workerPort(t){if(!("undefined"!=typeof Worker&&t instanceof Worker)&&null!==t)throw new Error("Invalid `workerPort` type.");Kpt._=bnt($pt,this,t)}static get workerSrc(){return bnt($pt,this,Qpt)._}static set workerSrc(t){if("string"!=typeof t)throw new Error("Invalid `workerSrc` type.");Qpt._=bnt($pt,this,t)}}var Kpt={_:null},Qpt={_:""},Jpt=new WeakMap,Zpt=new WeakMap;class tft{constructor(t){var{parsedData:e,rawData:r}=t;knt(this,Jpt,void 0),knt(this,Zpt,void 0),Snt(Jpt,this,e),Snt(Zpt,this,r)}getRaw(){return _nt(Zpt,this)}get(t){var e;return null!==(e=_nt(Jpt,this).get(t))&&void 0!==e?e:null}getAll(){return rlt(_nt(Jpt,this))}has(t){return _nt(Jpt,this).has(t)}}var eft=Symbol("INTERNAL"),rft=new WeakMap,nft=new WeakMap,ift=new WeakMap,aft=new WeakMap;class sft{constructor(t,e){var{name:r,intent:n,usage:i,rbGroups:a}=e;knt(this,rft,!1),knt(this,nft,!1),knt(this,ift,!1),knt(this,aft,!0),Snt(rft,this,!!(t&qst)),Snt(nft,this,!!(t&Xst)),this.name=r,this.intent=n,this.usage=i,this.rbGroups=a}get visible(){if(_nt(ift,this))return _nt(aft,this);if(!_nt(aft,this))return!1;var{print:t,view:e}=this.usage;return _nt(rft,this)?"OFF"!==(null==e?void 0:e.viewState):!_nt(nft,this)||"OFF"!==(null==t?void 0:t.printState)}_setVisible(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];t!==eft&&Uot("Internal method `_setVisible` called."),Snt(ift,this,r),Snt(aft,this,e)}}var oft=new WeakMap,lft=new WeakMap,hft=new WeakMap,cft=new WeakMap,uft=new WeakSet;class dft{constructor(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:qst;if(Mnt(this,uft),knt(this,oft,null),knt(this,lft,new Map),knt(this,hft,null),knt(this,cft,null),this.renderingIntent=e,this.name=null,this.creator=null,null!==t){for(var r of(this.name=t.name,this.creator=t.creator,Snt(cft,this,t.order),t.groups))_nt(lft,this).set(r.id,new sft(e,r));if("OFF"===t.baseState)for(var n of _nt(lft,this).values())n._setVisible(eft,!1);for(var i of t.on)_nt(lft,this).get(i)._setVisible(eft,!0);for(var a of t.off)_nt(lft,this).get(a)._setVisible(eft,!1);Snt(hft,this,this.getHash())}}isVisible(t){if(0===_nt(lft,this).size)return!0;if(!t)return zot("Optional content group not defined."),!0;if("OCG"===t.type)return _nt(lft,this).has(t.id)?_nt(lft,this).get(t.id).visible:(Wot("Optional content group not found: ".concat(t.id)),!0);if("OCMD"===t.type){if(t.expression)return bnt(uft,this,pft).call(this,t.expression);if(!t.policy||"AnyOn"===t.policy){for(var e of t.ids){if(!_nt(lft,this).has(e))return Wot("Optional content group not found: ".concat(e)),!0;if(_nt(lft,this).get(e).visible)return!0}return!1}if("AllOn"===t.policy){for(var r of t.ids){if(!_nt(lft,this).has(r))return Wot("Optional content group not found: ".concat(r)),!0;if(!_nt(lft,this).get(r).visible)return!1}return!0}if("AnyOff"===t.policy){for(var n of t.ids){if(!_nt(lft,this).has(n))return Wot("Optional content group not found: ".concat(n)),!0;if(!_nt(lft,this).get(n).visible)return!0}return!1}if("AllOff"===t.policy){for(var i of t.ids){if(!_nt(lft,this).has(i))return Wot("Optional content group not found: ".concat(i)),!0;if(_nt(lft,this).get(i).visible)return!1}return!0}return Wot("Unknown optional content policy ".concat(t.policy,".")),!0}return Wot("Unknown group type ".concat(t.type,".")),!0}setVisibility(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],n=_nt(lft,this).get(t);if(n){if(r&&e&&n.rbGroups.length)for(var i of n.rbGroups)for(var a of i){var s;if(a!==t)null===(s=_nt(lft,this).get(a))||void 0===s||s._setVisible(eft,!1,!0)}n._setVisible(eft,!!e,!0),Snt(oft,this,null)}else Wot("Optional content group not found: ".concat(t))}setOCGState(t){var e,{state:r,preserveRB:n}=t;for(var i of r){switch(i){case"ON":case"OFF":case"Toggle":e=i;continue}var a=_nt(lft,this).get(i);if(a)switch(e){case"ON":this.setVisibility(i,!0,n);break;case"OFF":this.setVisibility(i,!1,n);break;case"Toggle":this.setVisibility(i,!a.visible,n)}}Snt(oft,this,null)}get hasInitialVisibility(){return null===_nt(hft,this)||this.getHash()===_nt(hft,this)}getOrder(){return _nt(lft,this).size?_nt(cft,this)?_nt(cft,this).slice():[..._nt(lft,this).keys()]:null}getGroups(){return _nt(lft,this).size>0?rlt(_nt(lft,this)):null}getGroup(t){return _nt(lft,this).get(t)||null}getHash(){if(null!==_nt(oft,this))return _nt(oft,this);var t=new ldt;for(var[e,r]of _nt(lft,this))t.update("".concat(e,":").concat(r.visible));return Snt(oft,this,t.hexdigest())}}function pft(t){var e=t.length;if(e<2)return!0;for(var r=t[0],n=1;n<e;n++){var i=t[n],a=void 0;if(Array.isArray(i))a=bnt(uft,this,pft).call(this,i);else{if(!_nt(lft,this).has(i))return Wot("Optional content group not found: ".concat(i)),!0;a=_nt(lft,this).get(i).visible}switch(r){case"And":if(!a)return!1;break;case"Or":if(a)return!0;break;case"Not":return!a;default:return!0}}return"And"===r}class fft{constructor(t,e){var{disableRange:r=!1,disableStream:n=!1}=e;Hot(t,'PDFDataTransportStream - missing required "pdfDataRangeTransport" argument.');var{length:i,initialData:a,progressiveDone:s,contentDispositionFilename:o}=t;if(this._queuedChunks=[],this._progressiveDone=s,this._contentDispositionFilename=o,(null==a?void 0:a.length)>0){var l=a instanceof Uint8Array&&a.byteLength===a.buffer.byteLength?a.buffer:new Uint8Array(a).buffer;this._queuedChunks.push(l)}this._pdfDataRangeTransport=t,this._isStreamingSupported=!n,this._isRangeSupported=!r,this._contentLength=i,this._fullRequestReader=null,this._rangeReaders=[],t.addRangeListener(((t,e)=>{this._onReceiveData({begin:t,chunk:e})})),t.addProgressListener(((t,e)=>{this._onProgress({loaded:t,total:e})})),t.addProgressiveReadListener((t=>{this._onReceiveData({chunk:t})})),t.addProgressiveDoneListener((()=>{this._onProgressiveDone()})),t.transportReady()}_onReceiveData(t){var{begin:e,chunk:r}=t,n=r instanceof Uint8Array&&r.byteLength===r.buffer.byteLength?r.buffer:new Uint8Array(r).buffer;void 0===e?this._fullRequestReader?this._fullRequestReader._enqueue(n):this._queuedChunks.push(n):Hot(this._rangeReaders.some((function(t){return t._begin===e&&(t._enqueue(n),!0)})),"_onReceiveData - no `PDFDataTransportStreamRangeReader` instance found.")}get _progressiveDataLength(){var t,e;return null!==(t=null===(e=this._fullRequestReader)||void 0===e?void 0:e._loaded)&&void 0!==t?t:0}_onProgress(t){var e,r,n,i;void 0===t.total?null===(e=this._rangeReaders[0])||void 0===e||null===(r=e.onProgress)||void 0===r||r.call(e,{loaded:t.loaded}):null===(n=this._fullRequestReader)||void 0===n||null===(i=n.onProgress)||void 0===i||i.call(n,{loaded:t.loaded,total:t.total})}_onProgressiveDone(){var t;null===(t=this._fullRequestReader)||void 0===t||t.progressiveDone(),this._progressiveDone=!0}_removeRangeReader(t){var e=this._rangeReaders.indexOf(t);e>=0&&this._rangeReaders.splice(e,1)}getFullReader(){Hot(!this._fullRequestReader,"PDFDataTransportStream.getFullReader can only be called once.");var t=this._queuedChunks;return this._queuedChunks=null,new gft(this,t,this._progressiveDone,this._contentDispositionFilename)}getRangeReader(t,e){if(e<=this._progressiveDataLength)return null;var r=new vft(this,t,e);return this._pdfDataRangeTransport.requestDataRange(t,e),this._rangeReaders.push(r),r}cancelAllRequests(t){var e;for(var r of(null===(e=this._fullRequestReader)||void 0===e||e.cancel(t),this._rangeReaders.slice(0)))r.cancel(t);this._pdfDataRangeTransport.abort()}}class gft{constructor(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;for(var i of(this._stream=t,this._done=r||!1,this._filename=blt(n)?n:null,this._queuedChunks=e||[],this._loaded=0,this._queuedChunks))this._loaded+=i.byteLength;this._requests=[],this._headersReady=Promise.resolve(),t._fullRequestReader=this,this.onProgress=null}_enqueue(t){if(!this._done){if(this._requests.length>0)this._requests.shift().resolve({value:t,done:!1});else this._queuedChunks.push(t);this._loaded+=t.byteLength}}get headersReady(){return this._headersReady}get filename(){return this._filename}get isRangeSupported(){return this._stream._isRangeSupported}get isStreamingSupported(){return this._stream._isStreamingSupported}get contentLength(){return this._stream._contentLength}read(){var t=this;return xnt((function*(){if(t._queuedChunks.length>0)return{value:t._queuedChunks.shift(),done:!1};if(t._done)return{value:void 0,done:!0};var e=Promise.withResolvers();return t._requests.push(e),e.promise}))()}cancel(t){for(var e of(this._done=!0,this._requests))e.resolve({value:void 0,done:!0});this._requests.length=0}progressiveDone(){this._done||(this._done=!0)}}class vft{constructor(t,e,r){this._stream=t,this._begin=e,this._end=r,this._queuedChunk=null,this._requests=[],this._done=!1,this.onProgress=null}_enqueue(t){if(!this._done){if(0===this._requests.length)this._queuedChunk=t;else{var e=this._requests.shift();for(var r of(e.resolve({value:t,done:!1}),this._requests))r.resolve({value:void 0,done:!0});this._requests.length=0}this._done=!0,this._stream._removeRangeReader(this)}}get isStreamingSupported(){return!1}read(){var t=this;return xnt((function*(){if(t._queuedChunk){var e=t._queuedChunk;return t._queuedChunk=null,{value:e,done:!1}}if(t._done)return{value:void 0,done:!0};var r=Promise.withResolvers();return t._requests.push(r),r.promise}))()}cancel(t){for(var e of(this._done=!0,this._requests))e.resolve({value:void 0,done:!0});this._requests.length=0,this._stream._removeRangeReader(this)}}function mft(t,e){var r=new Headers;if(!t||!e||"object"!=typeof e)return r;for(var n in e){var i=e[n];void 0!==i&&r.append(n,i)}return r}function yft(t){try{return new URL(t).origin}catch(t){}return null}function bft(t){var{responseHeaders:e,isHttp:r,rangeChunkSize:n,disableRange:i}=t,a={allowRangeRequests:!1,suggestedLength:void 0},s=parseInt(e.get("Content-Length"),10);return Number.isInteger(s)?(a.suggestedLength=s,s<=2*n||i||!r||"bytes"!==e.get("Accept-Ranges")||"identity"!==(e.get("Content-Encoding")||"identity")||(a.allowRangeRequests=!0),a):a}function wft(t){var e=t.get("Content-Disposition");if(e){var r=function(t){var e=!0,r=a("filename\\*","i").exec(t);if(r){var n=l(r=r[1]);return o(n=c(n=h(n=unescape(n))))}if(r=function(t){for(var e,r=[],n=a("filename\\*((?!0\\d)\\d+)(\\*?)","ig");null!==(e=n.exec(t));){var[,i,s,o]=e;if((i=parseInt(i,10))in r){if(0===i)break}else r[i]=[s,o]}for(var c=[],u=0;u<r.length&&u in r;++u){var[d,p]=r[u];p=l(p),d&&(p=unescape(p),0===u&&(p=h(p))),c.push(p)}return c.join("")}(t),r)return o(c(r));if(r=a("filename","i").exec(t)){var i=l(r=r[1]);return o(i=c(i))}function a(t,e){return new RegExp("(?:^|;)\\s*"+t+'\\s*=\\s*([^";\\s][^;\\s]*|"(?:[^"\\\\]|\\\\"?)+"?)',e)}function s(t,r){if(t){if(!/^[\x00-\xFF]+$/.test(r))return r;try{var n=new TextDecoder(t,{fatal:!0}),i=elt(r);r=n.decode(i),e=!1}catch(t){}}return r}function o(t){return e&&/[\x80-\xff]/.test(t)&&(t=s("utf-8",t),e&&(t=s("iso-8859-1",t))),t}function l(t){if(t.startsWith('"')){for(var e=t.slice(1).split('\\"'),r=0;r<e.length;++r){var n=e[r].indexOf('"');-1!==n&&(e[r]=e[r].slice(0,n),e.length=r+1),e[r]=e[r].replaceAll(/\\(.)/g,"$1")}t=e.join('"')}return t}function h(t){var e=t.indexOf("'");return-1===e?t:s(t.slice(0,e),t.slice(e+1).replace(/^[^']*'/,""))}function c(t){return!t.startsWith("=?")||/[\x00-\x19\x80-\xff]/.test(t)?t:t.replaceAll(/=\?([\w-]*)\?([QqBb])\?((?:[^?]|\?(?!=))*)\?=/g,(function(t,e,r,n){if("q"===r||"Q"===r)return n=(n=n.replaceAll("_"," ")).replaceAll(/=([0-9a-fA-F]{2})/g,(function(t,e){return String.fromCharCode(parseInt(e,16))})),s(e,n);try{n=atob(n)}catch(t){}return s(e,n)}))}return""}(e);if(r.includes("%"))try{r=decodeURIComponent(r)}catch(t){}if(blt(r))return r}return null}function xft(t,e){return 404===t||0===t&&e.startsWith("file:")?new Kot('Missing PDF "'+e+'".'):new Qot("Unexpected server response (".concat(t,') while retrieving PDF "').concat(e,'".'),t)}function Aft(t){return 200===t||206===t}function _ft(t,e,r){return{method:"GET",headers:t,signal:r.signal,mode:"cors",credentials:e?"include":"same-origin",redirect:"follow"}}function kft(t){return t instanceof Uint8Array?t.buffer:t instanceof ArrayBuffer?t:(Wot("getArrayBuffer - unexpected data format: ".concat(t)),new Uint8Array(t).buffer)}class Sft{constructor(t){Tnt(this,"_responseOrigin",null),this.source=t,this.isHttp=/^https?:/i.test(t.url),this.headers=mft(this.isHttp,t.httpHeaders),this._fullRequestReader=null,this._rangeRequestReaders=[]}get _progressiveDataLength(){var t,e;return null!==(t=null===(e=this._fullRequestReader)||void 0===e?void 0:e._loaded)&&void 0!==t?t:0}getFullReader(){return Hot(!this._fullRequestReader,"PDFFetchStream.getFullReader can only be called once."),this._fullRequestReader=new Eft(this),this._fullRequestReader}getRangeReader(t,e){if(e<=this._progressiveDataLength)return null;var r=new Mft(this,t,e);return this._rangeRequestReaders.push(r),r}cancelAllRequests(t){var e;for(var r of(null===(e=this._fullRequestReader)||void 0===e||e.cancel(t),this._rangeRequestReaders.slice(0)))r.cancel(t)}}class Eft{constructor(t){this._stream=t,this._reader=null,this._loaded=0,this._filename=null;var e=t.source;this._withCredentials=e.withCredentials||!1,this._contentLength=e.length,this._headersCapability=Promise.withResolvers(),this._disableRange=e.disableRange||!1,this._rangeChunkSize=e.rangeChunkSize,this._rangeChunkSize||this._disableRange||(this._disableRange=!0),this._abortController=new AbortController,this._isStreamingSupported=!e.disableStream,this._isRangeSupported=!e.disableRange;var r=new Headers(t.headers),n=e.url;fetch(n,_ft(r,this._withCredentials,this._abortController)).then((e=>{if(t._responseOrigin=yft(e.url),!Aft(e.status))throw xft(e.status,n);this._reader=e.body.getReader(),this._headersCapability.resolve();var r=e.headers,{allowRangeRequests:i,suggestedLength:a}=bft({responseHeaders:r,isHttp:t.isHttp,rangeChunkSize:this._rangeChunkSize,disableRange:this._disableRange});this._isRangeSupported=i,this._contentLength=a||this._contentLength,this._filename=wft(r),!this._isStreamingSupported&&this._isRangeSupported&&this.cancel(new Zot("Streaming is disabled."))})).catch(this._headersCapability.reject),this.onProgress=null}get headersReady(){return this._headersCapability.promise}get filename(){return this._filename}get contentLength(){return this._contentLength}get isRangeSupported(){return this._isRangeSupported}get isStreamingSupported(){return this._isStreamingSupported}read(){var t=this;return xnt((function*(){var e;yield t._headersCapability.promise;var{value:r,done:n}=yield t._reader.read();return n?{value:r,done:n}:(t._loaded+=r.byteLength,null===(e=t.onProgress)||void 0===e||e.call(t,{loaded:t._loaded,total:t._contentLength}),{value:kft(r),done:!1})}))()}cancel(t){var e;null===(e=this._reader)||void 0===e||e.cancel(t),this._abortController.abort()}}class Mft{constructor(t,e,r){this._stream=t,this._reader=null,this._loaded=0;var n=t.source;this._withCredentials=n.withCredentials||!1,this._readCapability=Promise.withResolvers(),this._isStreamingSupported=!n.disableStream,this._abortController=new AbortController;var i=new Headers(t.headers);i.append("Range","bytes=".concat(e,"-").concat(r-1));var a=n.url;fetch(a,_ft(i,this._withCredentials,this._abortController)).then((e=>{var r=yft(e.url);if(r!==t._responseOrigin)throw new Error('Expected range response-origin "'.concat(r,'" to match "').concat(t._responseOrigin,'".'));if(!Aft(e.status))throw xft(e.status,a);this._readCapability.resolve(),this._reader=e.body.getReader()})).catch(this._readCapability.reject),this.onProgress=null}get isStreamingSupported(){return this._isStreamingSupported}read(){var t=this;return xnt((function*(){var e;yield t._readCapability.promise;var{value:r,done:n}=yield t._reader.read();return n?{value:r,done:n}:(t._loaded+=r.byteLength,null===(e=t.onProgress)||void 0===e||e.call(t,{loaded:t._loaded}),{value:kft(r),done:!1})}))()}cancel(t){var e;null===(e=this._reader)||void 0===e||e.cancel(t),this._abortController.abort()}}class Tft{constructor(t){var{url:e,httpHeaders:r,withCredentials:n}=t;Tnt(this,"_responseOrigin",null),this.url=e,this.isHttp=/^https?:/i.test(e),this.headers=mft(this.isHttp,r),this.withCredentials=n||!1,this.currXhrId=0,this.pendingRequests=Object.create(null)}request(t){var e=new XMLHttpRequest,r=this.currXhrId++,n=this.pendingRequests[r]={xhr:e};for(var[i,a]of(e.open("GET",this.url),e.withCredentials=this.withCredentials,this.headers))e.setRequestHeader(i,a);return this.isHttp&&"begin"in t&&"end"in t?(e.setRequestHeader("Range","bytes=".concat(t.begin,"-").concat(t.end-1)),n.expectedStatus=206):n.expectedStatus=200,e.responseType="arraybuffer",Hot(t.onError,"Expected `onError` callback to be provided."),e.onerror=()=>{t.onError(e.status)},e.onreadystatechange=this.onStateChange.bind(this,r),e.onprogress=this.onProgress.bind(this,r),n.onHeadersReceived=t.onHeadersReceived,n.onDone=t.onDone,n.onError=t.onError,n.onProgress=t.onProgress,e.send(null),r}onProgress(t,e){var r,n=this.pendingRequests[t];n&&(null===(r=n.onProgress)||void 0===r||r.call(n,e))}onStateChange(t,e){var r=this.pendingRequests[t];if(r){var n=r.xhr;if(n.readyState>=2&&r.onHeadersReceived&&(r.onHeadersReceived(),delete r.onHeadersReceived),4===n.readyState&&t in this.pendingRequests)if(delete this.pendingRequests[t],0===n.status&&this.isHttp)r.onError(n.status);else{var i=n.status||200;if(200===i&&206===r.expectedStatus||i===r.expectedStatus){var a=function(t){var e=t.response;return"string"!=typeof e?e:elt(e).buffer}(n);if(206===i){var s=n.getResponseHeader("Content-Range"),o=/bytes (\d+)-(\d+)\/(\d+)/.exec(s);o?r.onDone({begin:parseInt(o[1],10),chunk:a}):(Wot('Missing or invalid "Content-Range" header.'),r.onError(0))}else a?r.onDone({begin:0,chunk:a}):r.onError(n.status)}else r.onError(n.status)}}}getRequestXhr(t){return this.pendingRequests[t].xhr}isPendingRequest(t){return t in this.pendingRequests}abortRequest(t){var e=this.pendingRequests[t].xhr;delete this.pendingRequests[t],e.abort()}}class Cft{constructor(t){this._source=t,this._manager=new Tft(t),this._rangeChunkSize=t.rangeChunkSize,this._fullRequestReader=null,this._rangeRequestReaders=[]}_onRangeRequestReaderClosed(t){var e=this._rangeRequestReaders.indexOf(t);e>=0&&this._rangeRequestReaders.splice(e,1)}getFullReader(){return Hot(!this._fullRequestReader,"PDFNetworkStream.getFullReader can only be called once."),this._fullRequestReader=new Pft(this._manager,this._source),this._fullRequestReader}getRangeReader(t,e){var r=new Ift(this._manager,t,e);return r.onClosed=this._onRangeRequestReaderClosed.bind(this),this._rangeRequestReaders.push(r),r}cancelAllRequests(t){var e;for(var r of(null===(e=this._fullRequestReader)||void 0===e||e.cancel(t),this._rangeRequestReaders.slice(0)))r.cancel(t)}}class Pft{constructor(t,e){this._manager=t,this._url=e.url,this._fullRequestId=t.request({onHeadersReceived:this._onHeadersReceived.bind(this),onDone:this._onDone.bind(this),onError:this._onError.bind(this),onProgress:this._onProgress.bind(this)}),this._headersCapability=Promise.withResolvers(),this._disableRange=e.disableRange||!1,this._contentLength=e.length,this._rangeChunkSize=e.rangeChunkSize,this._rangeChunkSize||this._disableRange||(this._disableRange=!0),this._isStreamingSupported=!1,this._isRangeSupported=!1,this._cachedChunks=[],this._requests=[],this._done=!1,this._storedError=void 0,this._filename=null,this.onProgress=null}_onHeadersReceived(){var t=this._fullRequestId,e=this._manager.getRequestXhr(t);this._manager._responseOrigin=yft(e.responseURL);var r=e.getAllResponseHeaders(),n=new Headers(r?r.trimStart().replace(/[^\S ]+$/,"").split(/[\r\n]+/).map((t=>{var[e,...r]=t.split(": ");return[e,r.join(": ")]})):[]),{allowRangeRequests:i,suggestedLength:a}=bft({responseHeaders:n,isHttp:this._manager.isHttp,rangeChunkSize:this._rangeChunkSize,disableRange:this._disableRange});i&&(this._isRangeSupported=!0),this._contentLength=a||this._contentLength,this._filename=wft(n),this._isRangeSupported&&this._manager.abortRequest(t),this._headersCapability.resolve()}_onDone(t){t&&(this._requests.length>0?this._requests.shift().resolve({value:t.chunk,done:!1}):this._cachedChunks.push(t.chunk));if(this._done=!0,!(this._cachedChunks.length>0)){for(var e of this._requests)e.resolve({value:void 0,done:!0});this._requests.length=0}}_onError(t){for(var e of(this._storedError=xft(t,this._url),this._headersCapability.reject(this._storedError),this._requests))e.reject(this._storedError);this._requests.length=0,this._cachedChunks.length=0}_onProgress(t){var e;null===(e=this.onProgress)||void 0===e||e.call(this,{loaded:t.loaded,total:t.lengthComputable?t.total:this._contentLength})}get filename(){return this._filename}get isRangeSupported(){return this._isRangeSupported}get isStreamingSupported(){return this._isStreamingSupported}get contentLength(){return this._contentLength}get headersReady(){return this._headersCapability.promise}read(){var t=this;return xnt((function*(){if(yield t._headersCapability.promise,t._storedError)throw t._storedError;if(t._cachedChunks.length>0)return{value:t._cachedChunks.shift(),done:!1};if(t._done)return{value:void 0,done:!0};var e=Promise.withResolvers();return t._requests.push(e),e.promise}))()}cancel(t){for(var e of(this._done=!0,this._headersCapability.reject(t),this._requests))e.resolve({value:void 0,done:!0});this._requests.length=0,this._manager.isPendingRequest(this._fullRequestId)&&this._manager.abortRequest(this._fullRequestId),this._fullRequestReader=null}}class Ift{constructor(t,e,r){this._manager=t,this._url=t.url,this._requestId=t.request({begin:e,end:r,onHeadersReceived:this._onHeadersReceived.bind(this),onDone:this._onDone.bind(this),onError:this._onError.bind(this),onProgress:this._onProgress.bind(this)}),this._requests=[],this._queuedChunk=null,this._done=!1,this._storedError=void 0,this.onProgress=null,this.onClosed=null}_onHeadersReceived(){var t,e=yft(null===(t=this._manager.getRequestXhr(this._requestId))||void 0===t?void 0:t.responseURL);e!==this._manager._responseOrigin&&(this._storedError=new Error('Expected range response-origin "'.concat(e,'" to match "').concat(this._manager._responseOrigin,'".')),this._onError(0))}_close(){var t;null===(t=this.onClosed)||void 0===t||t.call(this,this)}_onDone(t){var e=t.chunk;this._requests.length>0?this._requests.shift().resolve({value:e,done:!1}):this._queuedChunk=e;for(var r of(this._done=!0,this._requests))r.resolve({value:void 0,done:!0});this._requests.length=0,this._close()}_onError(t){var e;for(var r of(null!==(e=this._storedError)&&void 0!==e||(this._storedError=xft(t,this._url)),this._requests))r.reject(this._storedError);this._requests.length=0,this._queuedChunk=null}_onProgress(t){var e;this.isStreamingSupported||(null===(e=this.onProgress)||void 0===e||e.call(this,{loaded:t.loaded}))}get isStreamingSupported(){return!1}read(){var t=this;return xnt((function*(){if(t._storedError)throw t._storedError;if(null!==t._queuedChunk){var e=t._queuedChunk;return t._queuedChunk=null,{value:e,done:!1}}if(t._done)return{value:void 0,done:!0};var r=Promise.withResolvers();return t._requests.push(r),r.promise}))()}cancel(t){for(var e of(this._done=!0,this._requests))e.resolve({value:void 0,done:!0});this._requests.length=0,this._manager.isPendingRequest(this._requestId)&&this._manager.abortRequest(this._requestId),this._close()}}var Rft=/^[a-z][a-z0-9\-+.]+:/i;class Oft{constructor(t){this.source=t,this.url=function(t){if(Rft.test(t))return new URL(t);var e=process.getBuiltinModule("url");return new URL(e.pathToFileURL(t))}(t.url),Hot("file:"===this.url.protocol,"PDFNodeStream only supports file:// URLs."),this._fullRequestReader=null,this._rangeRequestReaders=[]}get _progressiveDataLength(){var t,e;return null!==(t=null===(e=this._fullRequestReader)||void 0===e?void 0:e._loaded)&&void 0!==t?t:0}getFullReader(){return Hot(!this._fullRequestReader,"PDFNodeStream.getFullReader can only be called once."),this._fullRequestReader=new Lft(this),this._fullRequestReader}getRangeReader(t,e){if(e<=this._progressiveDataLength)return null;var r=new Dft(this,t,e);return this._rangeRequestReaders.push(r),r}cancelAllRequests(t){var e;for(var r of(null===(e=this._fullRequestReader)||void 0===e||e.cancel(t),this._rangeRequestReaders.slice(0)))r.cancel(t)}}class Lft{constructor(t){this._url=t.url,this._done=!1,this._storedError=null,this.onProgress=null;var e=t.source;this._contentLength=e.length,this._loaded=0,this._filename=null,this._disableRange=e.disableRange||!1,this._rangeChunkSize=e.rangeChunkSize,this._rangeChunkSize||this._disableRange||(this._disableRange=!0),this._isStreamingSupported=!e.disableStream,this._isRangeSupported=!e.disableRange,this._readableStream=null,this._readCapability=Promise.withResolvers(),this._headersCapability=Promise.withResolvers();var r=process.getBuiltinModule("fs");r.promises.lstat(this._url).then((t=>{this._contentLength=t.size,this._setReadableStream(r.createReadStream(this._url)),this._headersCapability.resolve()}),(t=>{"ENOENT"===t.code&&(t=new Kot('Missing PDF "'.concat(this._url,'".'))),this._storedError=t,this._headersCapability.reject(t)}))}get headersReady(){return this._headersCapability.promise}get filename(){return this._filename}get contentLength(){return this._contentLength}get isRangeSupported(){return this._isRangeSupported}get isStreamingSupported(){return this._isStreamingSupported}read(){var t=this;return xnt((function*(){var e;if(yield t._readCapability.promise,t._done)return{value:void 0,done:!0};if(t._storedError)throw t._storedError;var r=t._readableStream.read();return null===r?(t._readCapability=Promise.withResolvers(),t.read()):(t._loaded+=r.length,null===(e=t.onProgress)||void 0===e||e.call(t,{loaded:t._loaded,total:t._contentLength}),{value:new Uint8Array(r).buffer,done:!1})}))()}cancel(t){this._readableStream?this._readableStream.destroy(t):this._error(t)}_error(t){this._storedError=t,this._readCapability.resolve()}_setReadableStream(t){this._readableStream=t,t.on("readable",(()=>{this._readCapability.resolve()})),t.on("end",(()=>{t.destroy(),this._done=!0,this._readCapability.resolve()})),t.on("error",(t=>{this._error(t)})),!this._isStreamingSupported&&this._isRangeSupported&&this._error(new Zot("streaming is disabled")),this._storedError&&this._readableStream.destroy(this._storedError)}}class Dft{constructor(t,e,r){this._url=t.url,this._done=!1,this._storedError=null,this.onProgress=null,this._loaded=0,this._readableStream=null,this._readCapability=Promise.withResolvers();var n=t.source;this._isStreamingSupported=!n.disableStream;var i=process.getBuiltinModule("fs");this._setReadableStream(i.createReadStream(this._url,{start:e,end:r-1}))}get isStreamingSupported(){return this._isStreamingSupported}read(){var t=this;return xnt((function*(){var e;if(yield t._readCapability.promise,t._done)return{value:void 0,done:!0};if(t._storedError)throw t._storedError;var r=t._readableStream.read();return null===r?(t._readCapability=Promise.withResolvers(),t.read()):(t._loaded+=r.length,null===(e=t.onProgress)||void 0===e||e.call(t,{loaded:t._loaded}),{value:new Uint8Array(r).buffer,done:!1})}))()}cancel(t){this._readableStream?this._readableStream.destroy(t):this._error(t)}_error(t){this._storedError=t,this._readCapability.resolve()}_setReadableStream(t){this._readableStream=t,t.on("readable",(()=>{this._readCapability.resolve()})),t.on("end",(()=>{t.destroy(),this._done=!0,this._readCapability.resolve()})),t.on("error",(t=>{this._error(t)})),this._storedError&&this._readableStream.destroy(this._storedError)}}var Fft=30,Nft=new WeakMap,jft=new WeakMap,Bft=new WeakMap,zft=new WeakMap,Wft=new WeakMap,Uft=new WeakMap,Hft=new WeakMap,Gft=new WeakMap,Yft=new WeakMap,Vft=new WeakMap,qft=new WeakMap,Xft=new WeakMap,$ft=new WeakMap,Kft=new WeakMap,Qft=new WeakMap,Jft=new WeakMap,Zft=new WeakMap,tgt=new WeakMap,egt=new WeakSet;class rgt{constructor(t){var e,{textContentSource:r,container:n,viewport:i}=t;if(Mnt(this,egt),knt(this,Nft,Promise.withResolvers()),knt(this,jft,null),knt(this,Bft,!1),knt(this,zft,!(null===(e=globalThis.FontInspector)||void 0===e||!e.enabled)),knt(this,Wft,null),knt(this,Uft,null),knt(this,Hft,0),knt(this,Gft,0),knt(this,Yft,null),knt(this,Vft,null),knt(this,qft,0),knt(this,Xft,0),knt(this,$ft,Object.create(null)),knt(this,Kft,[]),knt(this,Qft,null),knt(this,Jft,[]),knt(this,Zft,new WeakMap),knt(this,tgt,null),r instanceof ReadableStream)Snt(Qft,this,r);else{if("object"!=typeof r)throw new Error('No "textContentSource" parameter specified.');Snt(Qft,this,new ReadableStream({start(t){t.enqueue(r),t.close()}}))}Snt(jft,this,Snt(Vft,this,n)),Snt(Xft,this,i.scale*(globalThis.devicePixelRatio||1)),Snt(qft,this,i.rotation),Snt(Uft,this,{div:null,properties:null,ctx:null});var{pageWidth:a,pageHeight:s,pageX:o,pageY:l}=i.rawDims;Snt(tgt,this,[1,0,0,-1,-o,l+s]),Snt(Gft,this,a),Snt(Hft,this,s),lgt.call(rgt),Rlt(n,i),_nt(Nft,this).promise.finally((()=>{fgt._.delete(this),Snt(Uft,this,null),Snt($ft,this,null)})).catch((()=>{}))}static get fontFamilyMap(){var{isWindows:t,isFirefox:e}=nlt.platform;return Yot(this,"fontFamilyMap",new Map([["sans-serif","".concat(t&&e?"Calibri, ":"","sans-serif")],["monospace","".concat(t&&e?"Lucida Console, ":"","monospace")]]))}render(){var t=()=>{_nt(Yft,this).read().then((e=>{var r,{value:n,done:i}=e;i?_nt(Nft,this).resolve():(null!==(r=_nt(Wft,this))&&void 0!==r||Snt(Wft,this,n.lang),Object.assign(_nt($ft,this),n.styles),bnt(egt,this,ngt).call(this,n.items),t())}),_nt(Nft,this).reject)};return Snt(Yft,this,_nt(Qft,this).getReader()),fgt._.add(this),t(),_nt(Nft,this).promise}update(t){var{viewport:e,onBefore:r=null}=t,n=e.scale*(globalThis.devicePixelRatio||1),i=e.rotation;if(i!==_nt(qft,this)&&(null==r||r(),Snt(qft,this,i),Rlt(_nt(Vft,this),{rotation:i})),n!==_nt(Xft,this)){null==r||r(),Snt(Xft,this,n);var a={div:null,properties:null,ctx:sgt.call(rgt,_nt(Wft,this))};for(var s of _nt(Jft,this))a.properties=_nt(Zft,this).get(s),a.div=s,bnt(egt,this,agt).call(this,a)}}cancel(){var t,e=new Zot("TextLayer task cancelled.");null===(t=_nt(Yft,this))||void 0===t||t.cancel(e).catch((()=>{})),Snt(Yft,this,null),_nt(Nft,this).reject(e)}get textDivs(){return _nt(Jft,this)}get textContentItemsStr(){return _nt(Kft,this)}static cleanup(){if(!(bnt(rgt,this,fgt)._.size>0)){for(var{canvas:t}of(bnt(rgt,this,cgt)._.clear(),bnt(rgt,this,ugt)._.values()))t.remove();bnt(rgt,this,ugt)._.clear()}}}function ngt(t){var e,r;if(!_nt(Bft,this)){null!==(r=(e=_nt(Uft,this)).ctx)&&void 0!==r||(e.ctx=sgt.call(Pst,_nt(Wft,this)));var n=_nt(Jft,this),i=_nt(Kft,this);for(var a of t){if(n.length>1e5)return Wot("Ignoring additional textDivs for performance reasons."),void Snt(Bft,this,!0);if(void 0!==a.str)i.push(a.str),bnt(egt,this,igt).call(this,a);else if("beginMarkedContentProps"===a.type||"beginMarkedContent"===a.type){var s=_nt(jft,this);Snt(jft,this,document.createElement("span")),_nt(jft,this).classList.add("markedContent"),null!==a.id&&_nt(jft,this).setAttribute("id","".concat(a.id)),s.append(_nt(jft,this))}else"endMarkedContent"===a.type&&Snt(jft,this,_nt(jft,this).parentNode)}}}function igt(t){var e=document.createElement("span"),r={angle:0,canvasWidth:0,hasText:""!==t.str,hasEOL:t.hasEOL,fontSize:0};_nt(Jft,this).push(e);var n=alt.transform(_nt(tgt,this),t.transform),i=Math.atan2(n[1],n[0]),a=_nt($ft,this)[t.fontName];a.vertical&&(i+=Math.PI/2);var s=_nt(zft,this)&&a.fontSubstitution||a.fontFamily;s=Pst.fontFamilyMap.get(s)||s;var o,l,h=Math.hypot(n[2],n[3]),c=h*hgt.call(Pst,s,_nt(Wft,this));0===i?(o=n[4],l=n[5]-c):(o=n[4]+c*Math.sin(i),l=n[5]-c*Math.cos(i));var u="calc(var(--scale-factor)*",d=e.style;_nt(jft,this)===_nt(Vft,this)?(d.left="".concat((100*o/_nt(Gft,this)).toFixed(2),"%"),d.top="".concat((100*l/_nt(Hft,this)).toFixed(2),"%")):(d.left="".concat(u).concat(o.toFixed(2),"px)"),d.top="".concat(u).concat(l.toFixed(2),"px)")),d.fontSize="".concat(u).concat((pgt._*h).toFixed(2),"px)"),d.fontFamily=s,r.fontSize=h,e.setAttribute("role","presentation"),e.textContent=t.str,e.dir=t.dir,_nt(zft,this)&&(e.dataset.fontName=a.fontSubstitutionLoadedName||t.fontName),0!==i&&(r.angle=i*(180/Math.PI));var p=!1;if(t.str.length>1)p=!0;else if(" "!==t.str&&t.transform[0]!==t.transform[3]){var f=Math.abs(t.transform[0]),g=Math.abs(t.transform[3]);f!==g&&Math.max(f,g)/Math.min(f,g)>1.5&&(p=!0)}if(p&&(r.canvasWidth=a.vertical?t.height:t.width),_nt(Zft,this).set(e,r),_nt(Uft,this).div=e,_nt(Uft,this).properties=r,bnt(egt,this,agt).call(this,_nt(Uft,this)),r.hasText&&_nt(jft,this).append(e),r.hasEOL){var v=document.createElement("br");v.setAttribute("role","presentation"),_nt(jft,this).append(v)}}function agt(t){var{div:e,properties:r,ctx:n}=t,{style:i}=e,a="";if(pgt._>1&&(a="scale(".concat(1/pgt._,")")),0!==r.canvasWidth&&r.hasText){var{fontFamily:s}=i,{canvasWidth:o,fontSize:l}=r;ogt.call(Pst,n,l*_nt(Xft,this),s);var{width:h}=n.measureText(e.textContent);h>0&&(a="scaleX(".concat(o*_nt(Xft,this)/h,") ").concat(a))}0!==r.angle&&(a="rotate(".concat(r.angle,"deg) ").concat(a)),a.length>0&&(i.transform=a)}function sgt(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=bnt(Pst,this,ugt)._.get(t||(t=""));if(!e){var r=document.createElement("canvas");r.className="hiddenCanvasElement",r.lang=t,document.body.append(r),e=r.getContext("2d",{alpha:!1,willReadFrequently:!0}),bnt(Pst,this,ugt)._.set(t,e),bnt(Pst,this,dgt)._.set(e,{size:0,family:""})}return e}function ogt(t,e,r){var n=bnt(Pst,this,dgt)._.get(t);e===n.size&&r===n.family||(t.font="".concat(e,"px ").concat(r),n.size=e,n.family=r)}function lgt(){if(null===bnt(Pst,this,pgt)._){var t=document.createElement("div");t.style.opacity=0,t.style.lineHeight=1,t.style.fontSize="1px",t.style.position="absolute",t.textContent="X",document.body.append(t),pgt._=bnt(Pst,this,t.getBoundingClientRect().height),t.remove()}}function hgt(t,e){var r=bnt(Pst,this,cgt)._.get(t);if(r)return r;var n=bnt(Pst,this,sgt).call(this,e);n.canvas.width=n.canvas.height=Fft,bnt(Pst,this,ogt).call(this,n,Fft,t);var i=n.measureText(""),a=i.fontBoundingBoxAscent,s=Math.abs(i.fontBoundingBoxDescent);if(a){var o=a/(a+s);return bnt(Pst,this,cgt)._.set(t,o),n.canvas.width=n.canvas.height=0,o}n.strokeStyle="red",n.clearRect(0,0,Fft,Fft),n.strokeText("g",0,0);var l=n.getImageData(0,0,Fft,Fft).data;s=0;for(var h=l.length-1-3;h>=0;h-=4)if(l[h]>0){s=Math.ceil(h/4/Fft);break}n.clearRect(0,0,Fft,Fft),n.strokeText("A",0,Fft),a=0;for(var c=0,u=(l=n.getImageData(0,0,Fft,Fft).data).length;c<u;c+=4)if(l[c]>0){a=Fft-Math.floor(c/4/Fft);break}n.canvas.width=n.canvas.height=0;var d=a?a/(a+s):.8;return bnt(Pst,this,cgt)._.set(t,d),d}Pst=rgt;var cgt={_:new Map},ugt={_:new Map},dgt={_:new WeakMap},pgt={_:null},fgt={_:new Set};class ggt{static textContent(t){var e=[],r={items:e,styles:Object.create(null)};return function t(r){var n;if(r){var i=null,a=r.name;if("#text"===a)i=r.value;else{if(!ggt.shouldBuildText(a))return;null!=r&&null!==(n=r.attributes)&&void 0!==n&&n.textContent?i=r.attributes.textContent:r.value&&(i=r.value)}if(null!==i&&e.push({str:i}),r.children)for(var s of r.children)t(s)}}(t),r}static shouldBuildText(t){return!("textarea"===t||"input"===t||"option"===t||"select"===t)}}var vgt=65536,mgt=Ust?class extends Udt{_createCanvas(t,e){return process.getBuiltinModule("module").createRequire(import.meta.url)("@napi-rs/canvas").createCanvas(t,e)}}:class extends Udt{constructor(t){var{ownerDocument:e=globalThis.document,enableHWA:r=!1}=t;super({enableHWA:r}),this._document=e}_createCanvas(t,e){var r=this._document.createElement("canvas");return r.width=t,r.height=e,r}},ygt=Ust?class extends Hdt{_fetch(t){return xnt((function*(){return fpt(t)}))()}}:Gdt,bgt=Ust?class extends Ydt{}:class extends Ydt{constructor(t){var{docId:e,ownerDocument:r=globalThis.document}=t;super(),Mnt(this,Zdt),knt(this,Vdt,void 0),knt(this,qdt,void 0),knt(this,Xdt,void 0),knt(this,$dt,void 0),knt(this,Kdt,void 0),knt(this,Qdt,void 0),knt(this,Jdt,0),Snt($dt,this,e),Snt(Kdt,this,r)}addFilter(t){var e,r;if(!t)return"none";var n=Ent(Zdt,this,tpt).get(t);if(n)return n;var[i,a,s]=bnt(Zdt,this,npt).call(this,t),o=1===t.length?i:"".concat(i).concat(a).concat(s);if(n=Ent(Zdt,this,tpt).get(o))return Ent(Zdt,this,tpt).set(t,n),n;var l="g_".concat(_nt($dt,this),"_transfer_map_").concat((Snt(Jdt,this,(e=_nt(Jdt,this),r=e++,e)),r)),h=bnt(Zdt,this,ipt).call(this,l);Ent(Zdt,this,tpt).set(t,h),Ent(Zdt,this,tpt).set(o,h);var c=bnt(Zdt,this,opt).call(this,l);return bnt(Zdt,this,hpt).call(this,i,a,s,c),h}addHCMFilter(t,e){var r,n,i="".concat(t,"-").concat(e),a="base",s=Ent(Zdt,this,ept).get(a);if((null===(r=s)||void 0===r?void 0:r.key)===i)return s.url;s?(null===(n=s.filter)||void 0===n||n.remove(),s.key=i,s.url="none",s.filter=null):(s={key:i,url:"none",filter:null},Ent(Zdt,this,ept).set(a,s));if(!t||!e)return s.url;var o=bnt(Zdt,this,upt).call(this,t);t=alt.makeHexColor(...o);var l=bnt(Zdt,this,upt).call(this,e);if(e=alt.makeHexColor(...l),Ent(Zdt,this,rpt).style.color="","#000000"===t&&"#ffffff"===e||t===e)return s.url;for(var h=new Array(256),c=0;c<=255;c++){var u=c/255;h[c]=u<=.03928?u/12.92:Math.pow((u+.055)/1.055,2.4)}var d=h.join(","),p="g_".concat(_nt($dt,this),"_hcm_filter"),f=s.filter=bnt(Zdt,this,opt).call(this,p);bnt(Zdt,this,hpt).call(this,d,d,d,f),bnt(Zdt,this,spt).call(this,f);var g=(t,e)=>{for(var r=o[t]/255,n=l[t]/255,i=new Array(e+1),a=0;a<=e;a++)i[a]=r+a/e*(n-r);return i.join(",")};return bnt(Zdt,this,hpt).call(this,g(0,5),g(1,5),g(2,5),f),s.url=bnt(Zdt,this,ipt).call(this,p),s.url}addAlphaFilter(t){var e,r,n=Ent(Zdt,this,tpt).get(t);if(n)return n;var[i]=bnt(Zdt,this,npt).call(this,[t]),a="alpha_".concat(i);if(n=Ent(Zdt,this,tpt).get(a))return Ent(Zdt,this,tpt).set(t,n),n;var s="g_".concat(_nt($dt,this),"_alpha_map_").concat((Snt(Jdt,this,(e=_nt(Jdt,this),r=e++,e)),r)),o=bnt(Zdt,this,ipt).call(this,s);Ent(Zdt,this,tpt).set(t,o),Ent(Zdt,this,tpt).set(a,o);var l=bnt(Zdt,this,opt).call(this,s);return bnt(Zdt,this,cpt).call(this,i,l),o}addLuminosityFilter(t){var e,r,n,i,a=Ent(Zdt,this,tpt).get(t||"luminosity");if(a)return a;if(t?([n]=bnt(Zdt,this,npt).call(this,[t]),i="luminosity_".concat(n)):i="luminosity",a=Ent(Zdt,this,tpt).get(i))return Ent(Zdt,this,tpt).set(t,a),a;var s="g_".concat(_nt($dt,this),"_luminosity_map_").concat((Snt(Jdt,this,(e=_nt(Jdt,this),r=e++,e)),r)),o=bnt(Zdt,this,ipt).call(this,s);Ent(Zdt,this,tpt).set(t,o),Ent(Zdt,this,tpt).set(i,o);var l=bnt(Zdt,this,opt).call(this,s);return bnt(Zdt,this,apt).call(this,l),t&&bnt(Zdt,this,cpt).call(this,n,l),o}addHighlightHCMFilter(t,e,r,n,i){var a,s,o="".concat(e,"-").concat(r,"-").concat(n,"-").concat(i),l=Ent(Zdt,this,ept).get(t);if((null===(a=l)||void 0===a?void 0:a.key)===o)return l.url;l?(null===(s=l.filter)||void 0===s||s.remove(),l.key=o,l.url="none",l.filter=null):(l={key:o,url:"none",filter:null},Ent(Zdt,this,ept).set(t,l));if(!e||!r)return l.url;var[h,c]=[e,r].map(bnt(Zdt,this,upt).bind(this)),u=Math.round(.2126*h[0]+.7152*h[1]+.0722*h[2]),d=Math.round(.2126*c[0]+.7152*c[1]+.0722*c[2]),[p,f]=[n,i].map(bnt(Zdt,this,upt).bind(this));d<u&&([u,d,p,f]=[d,u,f,p]),Ent(Zdt,this,rpt).style.color="";var g=(t,e,r)=>{for(var n=new Array(256),i=(d-u)/r,a=t/255,s=(e-t)/(255*r),o=0,l=0;l<=r;l++){for(var h=Math.round(u+l*i),c=a+l*s,p=o;p<=h;p++)n[p]=c;o=h+1}for(var f=o;f<256;f++)n[f]=n[o-1];return n.join(",")},v="g_".concat(_nt($dt,this),"_hcm_").concat(t,"_filter"),m=l.filter=bnt(Zdt,this,opt).call(this,v);return bnt(Zdt,this,spt).call(this,m),bnt(Zdt,this,hpt).call(this,g(p[0],f[0],5),g(p[1],f[1],5),g(p[2],f[2],5),m),l.url=bnt(Zdt,this,ipt).call(this,v),l.url}destroy(){var t,e,r,n;arguments.length>0&&void 0!==arguments[0]&&arguments[0]&&null!==(t=_nt(Qdt,this))&&void 0!==t&&t.size||(null===(e=_nt(Xdt,this))||void 0===e||e.parentNode.parentNode.remove(),Snt(Xdt,this,null),null===(r=_nt(qdt,this))||void 0===r||r.clear(),Snt(qdt,this,null),null===(n=_nt(Qdt,this))||void 0===n||n.clear(),Snt(Qdt,this,null),Snt(Jdt,this,0))}},wgt=Ust?class extends dpt{_fetch(t){return xnt((function*(){return fpt(t)}))()}}:ppt;function xgt(){var t,e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};"string"==typeof r||r instanceof URL?r={url:r}:(r instanceof ArrayBuffer||ArrayBuffer.isView(r))&&(r={data:r});var n=new _gt,{docId:i}=n,a=r.url?function(t){if(t instanceof URL)return t.href;try{return new URL(t,window.location).href}catch(e){if(Ust&&"string"==typeof t)return t}throw new Error("Invalid PDF url data: either string or URL-object is expected in the url property.")}(r.url):null,s=r.data?function(t){if(Ust&&"undefined"!=typeof Buffer&&t instanceof Buffer)throw new Error("Please provide binary data as `Uint8Array`, rather than `Buffer`.");if(t instanceof Uint8Array&&t.byteLength===t.buffer.byteLength)return t;if("string"==typeof t)return elt(t);if(t instanceof ArrayBuffer||ArrayBuffer.isView(t)||"object"==typeof t&&!isNaN(null==t?void 0:t.length))return new Uint8Array(t);throw new Error("Invalid PDF binary data: either TypedArray, string, or array-like object is expected in the data property.")}(r.data):null,o=r.httpHeaders||null,l=!0===r.withCredentials,h=null!==(t=r.password)&&void 0!==t?t:null,c=r.range instanceof Sgt?r.range:null,u=Number.isInteger(r.rangeChunkSize)&&r.rangeChunkSize>0?r.rangeChunkSize:vgt,d=r.worker instanceof Ngt?r.worker:null,p=r.verbosity,f="string"!=typeof r.docBaseUrl||ylt(r.docBaseUrl)?null:r.docBaseUrl,g="string"==typeof r.cMapUrl?r.cMapUrl:null,v=!1!==r.cMapPacked,m=r.CMapReaderFactory||ygt,y="string"==typeof r.standardFontDataUrl?r.standardFontDataUrl:null,b=r.StandardFontDataFactory||wgt,w=!0!==r.stopAtErrors,x=Number.isInteger(r.maxImageSize)&&r.maxImageSize>-1?r.maxImageSize:-1,A=!1!==r.isEvalSupported,_="boolean"==typeof r.isOffscreenCanvasSupported?r.isOffscreenCanvasSupported:!Ust,k="boolean"==typeof r.isImageDecoderSupported?r.isImageDecoderSupported:!Ust&&(nlt.platform.isFirefox||!globalThis.chrome),S=Number.isInteger(r.canvasMaxAreaInBytes)?r.canvasMaxAreaInBytes:-1,E="boolean"==typeof r.disableFontFace?r.disableFontFace:Ust,M=!0===r.fontExtraProperties,T=!0===r.enableXfa,C=r.ownerDocument||globalThis.document,P=!0===r.disableRange,I=!0===r.disableStream,R=!0===r.disableAutoFetch,O=!0===r.pdfBug,L=r.CanvasFactory||mgt,D=r.FilterFactory||bgt,F=!0===r.enableHWA,N=c?c.length:null!==(e=r.length)&&void 0!==e?e:NaN,j="boolean"==typeof r.useSystemFonts?r.useSystemFonts:!Ust&&!E,B="boolean"==typeof r.useWorkerFetch?r.useWorkerFetch:m===Gdt&&b===ppt&&g&&y&&_lt(g,document.baseURI)&&_lt(y,document.baseURI);jot(p);var z={canvasFactory:new L({ownerDocument:C,enableHWA:F}),filterFactory:new D({docId:i,ownerDocument:C}),cMapReaderFactory:B?null:new m({baseUrl:g,isCompressed:v}),standardFontDataFactory:B?null:new b({baseUrl:y})};if(!d){var W={verbosity:p,port:$pt.workerPort};d=W.port?Ngt.fromPort(W):new Ngt(W),n._worker=d}var U={docId:i,apiVersion:"4.10.38",data:s,password:h,disableAutoFetch:R,rangeChunkSize:u,length:N,docBaseUrl:f,enableXfa:T,evaluatorOptions:{maxImageSize:x,disableFontFace:E,ignoreErrors:w,isEvalSupported:A,isOffscreenCanvasSupported:_,isImageDecoderSupported:k,canvasMaxAreaInBytes:S,fontExtraProperties:M,useSystemFonts:j,cMapUrl:B?g:null,standardFontDataUrl:B?y:null}},H={disableFontFace:E,fontExtraProperties:M,ownerDocument:C,pdfBug:O,styleElement:null,loadingParams:{disableAutoFetch:R,enableXfa:T}};return d.promise.then((function(){if(n.destroyed)throw new Error("Loading aborted");if(d.destroyed)throw new Error("Worker was destroyed");var t,e=d.messageHandler.sendWithPromise("GetDocRequest",U,s?[s.buffer]:null);if(c)t=new fft(c,{disableRange:P,disableStream:I});else if(!s){if(!a)throw new Error("getDocument - no `url` parameter provided.");var r;if(Ust)if(_lt(a)){if("undefined"==typeof fetch||"undefined"==typeof Response||!("body"in Response.prototype))throw new Error("getDocument - the Fetch API was disabled in Node.js, see `--no-experimental-fetch`.");r=Sft}else r=Oft;else r=_lt(a)?Sft:Cft;t=new r({url:a,length:N,httpHeaders:o,withCredentials:l,rangeChunkSize:u,disableRange:P,disableStream:I})}return e.then((e=>{if(n.destroyed)throw new Error("Loading aborted");if(d.destroyed)throw new Error("Worker was destroyed");var r=new Ddt(i,e,d.port),a=new $gt(r,n,t,H,z);n._transport=a,r.send("Ready",null)}))})).catch(n._capability.reject),n}function Agt(t){return"object"==typeof t&&Number.isInteger(null==t?void 0:t.num)&&t.num>=0&&Number.isInteger(null==t?void 0:t.gen)&&t.gen>=0}class _gt{constructor(){var t,e;this._capability=Promise.withResolvers(),this._transport=null,this._worker=null,this.docId="d".concat((kgt._=(t=kgt._,e=t++,t),e)),this.destroyed=!1,this.onPassword=null,this.onProgress=null}get promise(){return this._capability.promise}destroy(){var t=this;return xnt((function*(){var e;t.destroyed=!0;try{var r,n;null!==(r=t._worker)&&void 0!==r&&r.port&&(t._worker._pendingDestroy=!0),yield null===(n=t._transport)||void 0===n?void 0:n.destroy()}catch(e){var i;throw null!==(i=t._worker)&&void 0!==i&&i.port&&delete t._worker._pendingDestroy,e}t._transport=null,null===(e=t._worker)||void 0===e||e.destroy(),t._worker=null}))()}}var kgt={_:0};class Sgt{constructor(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;this.length=t,this.initialData=e,this.progressiveDone=r,this.contentDispositionFilename=n,this._rangeListeners=[],this._progressListeners=[],this._progressiveReadListeners=[],this._progressiveDoneListeners=[],this._readyCapability=Promise.withResolvers()}addRangeListener(t){this._rangeListeners.push(t)}addProgressListener(t){this._progressListeners.push(t)}addProgressiveReadListener(t){this._progressiveReadListeners.push(t)}addProgressiveDoneListener(t){this._progressiveDoneListeners.push(t)}onDataRange(t,e){for(var r of this._rangeListeners)r(t,e)}onDataProgress(t,e){this._readyCapability.promise.then((()=>{for(var r of this._progressListeners)r(t,e)}))}onDataProgressiveRead(t){this._readyCapability.promise.then((()=>{for(var e of this._progressiveReadListeners)e(t)}))}onDataProgressiveDone(){this._readyCapability.promise.then((()=>{for(var t of this._progressiveDoneListeners)t()}))}transportReady(){this._readyCapability.resolve()}requestDataRange(t,e){Uot("Abstract method PDFDataRangeTransport.requestDataRange")}abort(){}}class Egt{constructor(t,e){this._pdfInfo=t,this._transport=e}get annotationStorage(){return this._transport.annotationStorage}get canvasFactory(){return this._transport.canvasFactory}get filterFactory(){return this._transport.filterFactory}get numPages(){return this._pdfInfo.numPages}get fingerprints(){return this._pdfInfo.fingerprints}get isPureXfa(){return Yot(this,"isPureXfa",!!this._transport._htmlForXfa)}get allXfaHtml(){return this._transport._htmlForXfa}getPage(t){return this._transport.getPage(t)}getPageIndex(t){return this._transport.getPageIndex(t)}getDestinations(){return this._transport.getDestinations()}getDestination(t){return this._transport.getDestination(t)}getPageLabels(){return this._transport.getPageLabels()}getPageLayout(){return this._transport.getPageLayout()}getPageMode(){return this._transport.getPageMode()}getViewerPreferences(){return this._transport.getViewerPreferences()}getOpenAction(){return this._transport.getOpenAction()}getAttachments(){return this._transport.getAttachments()}getJSActions(){return this._transport.getDocJSActions()}getOutline(){return this._transport.getOutline()}getOptionalContentConfig(){var{intent:t="display"}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},{renderingIntent:e}=this._transport.getRenderingIntent(t);return this._transport.getOptionalContentConfig(e)}getPermissions(){return this._transport.getPermissions()}getMetadata(){return this._transport.getMetadata()}getMarkInfo(){return this._transport.getMarkInfo()}getData(){return this._transport.getData()}saveDocument(){return this._transport.saveDocument()}getDownloadInfo(){return this._transport.downloadInfoCapability.promise}cleanup(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return this._transport.startCleanup(t||this.isPureXfa)}destroy(){return this.loadingTask.destroy()}cachedPageNumber(t){return this._transport.cachedPageNumber(t)}get loadingParams(){return this._transport.loadingParams}get loadingTask(){return this._transport.loadingTask}getFieldObjects(){return this._transport.getFieldObjects()}hasJSActions(){return this._transport.hasJSActions()}getCalculationOrderIds(){return this._transport.getCalculationOrderIds()}}var Mgt=new WeakMap,Tgt=new WeakMap,Cgt=new WeakSet;class Pgt{constructor(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];Mnt(this,Cgt),knt(this,Mgt,null),knt(this,Tgt,!1),this._pageIndex=t,this._pageInfo=e,this._transport=r,this._stats=n?new Alt:null,this._pdfBug=n,this.commonObjs=r.commonObjs,this.objs=new tvt,this._maybeCleanupAfterRender=!1,this._intentStates=new Map,this.destroyed=!1}get pageNumber(){return this._pageIndex+1}get rotate(){return this._pageInfo.rotate}get ref(){return this._pageInfo.ref}get userUnit(){return this._pageInfo.userUnit}get view(){return this._pageInfo.view}getViewport(){var{scale:t,rotation:e=this.rotate,offsetX:r=0,offsetY:n=0,dontFlip:i=!1}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new vlt({viewBox:this.view,userUnit:this.userUnit,scale:t,rotation:e,offsetX:r,offsetY:n,dontFlip:i})}getAnnotations(){var{intent:t="display"}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},{renderingIntent:e}=this._transport.getRenderingIntent(t);return this._transport.getAnnotations(this._pageIndex,e)}getJSActions(){return this._transport.getPageJSActions(this._pageIndex)}get filterFactory(){return this._transport.filterFactory}get isPureXfa(){return Yot(this,"isPureXfa",!!this._transport._htmlForXfa)}getXfa(){var t=this;return xnt((function*(){var e;return(null===(e=t._transport._htmlForXfa)||void 0===e?void 0:e.children[t._pageIndex])||null}))()}render(t){var e,r,{canvasContext:n,viewport:i,intent:a="display",annotationMode:s=tot.ENABLE,transform:o=null,background:l=null,optionalContentConfigPromise:h=null,annotationCanvasMap:c=null,pageColors:u=null,printAnnotationStorage:d=null,isEditing:p=!1}=t;null===(e=this._stats)||void 0===e||e.time("Overall");var f=this._transport.getRenderingIntent(a,s,d,p),{renderingIntent:g,cacheKey:v}=f;Snt(Tgt,this,!1),bnt(Cgt,this,Rgt).call(this),h||(h=this._transport.getOptionalContentConfig(g));var m=this._intentStates.get(v);m||(m=Object.create(null),this._intentStates.set(v,m)),m.streamReaderCancelTimeout&&(clearTimeout(m.streamReaderCancelTimeout),m.streamReaderCancelTimeout=null);var y,b=!!(g&Xst);m.displayReadyCapability||(m.displayReadyCapability=Promise.withResolvers(),m.operatorList={fnArray:[],argsArray:[],lastChunk:!1,separateAnnots:null},null===(y=this._stats)||void 0===y||y.time("Page Request"),this._pumpOperatorList(f));var w=t=>{var e;(m.renderTasks.delete(x),(this._maybeCleanupAfterRender||b)&&Snt(Tgt,this,!0),bnt(Cgt,this,Igt).call(this,!b),t?(x.capability.reject(t),this._abortOperatorList({intentState:m,reason:t instanceof Error?t:new Error(t)})):x.capability.resolve(),this._stats)&&(this._stats.timeEnd("Rendering"),this._stats.timeEnd("Overall"),null!==(e=globalThis.Stats)&&void 0!==e&&e.enabled&&globalThis.Stats.add(this.pageNumber,this._stats))},x=new avt({callback:w,params:{canvasContext:n,viewport:i,transform:o,background:l},objs:this.objs,commonObjs:this.commonObjs,annotationCanvasMap:c,operatorList:m.operatorList,pageIndex:this._pageIndex,canvasFactory:this._transport.canvasFactory,filterFactory:this._transport.filterFactory,useRequestAnimationFrame:!b,pdfBug:this._pdfBug,pageColors:u});((r=m).renderTasks||(r.renderTasks=new Set)).add(x);var A=x.task;return Promise.all([m.displayReadyCapability.promise,h]).then((t=>{var e,[r,n]=t;if(this.destroyed)w();else{if(null===(e=this._stats)||void 0===e||e.time("Rendering"),!(n.renderingIntent&g))throw new Error("Must use the same `intent`-argument when calling the `PDFPageProxy.render` and `PDFDocumentProxy.getOptionalContentConfig` methods.");x.initializeGraphics({transparency:r,optionalContentConfig:n}),x.operatorListChanged()}})).catch(w),A}getOperatorList(){var{intent:t="display",annotationMode:e=tot.ENABLE,printAnnotationStorage:r=null,isEditing:n=!1}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};var i,a,s,o=this._transport.getRenderingIntent(t,e,r,n,!0),l=this._intentStates.get(o.cacheKey);(l||(l=Object.create(null),this._intentStates.set(o.cacheKey,l)),l.opListReadCapability)||((i=Object.create(null)).operatorListChanged=function(){l.operatorList.lastChunk&&(l.opListReadCapability.resolve(l.operatorList),l.renderTasks.delete(i))},l.opListReadCapability=Promise.withResolvers(),((a=l).renderTasks||(a.renderTasks=new Set)).add(i),l.operatorList={fnArray:[],argsArray:[],lastChunk:!1,separateAnnots:null},null===(s=this._stats)||void 0===s||s.time("Page Request"),this._pumpOperatorList(o));return l.opListReadCapability.promise}streamTextContent(){var{includeMarkedContent:t=!1,disableNormalization:e=!1}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return this._transport.messageHandler.sendWithStream("GetTextContent",{pageIndex:this._pageIndex,includeMarkedContent:!0===t,disableNormalization:!0===e},{highWaterMark:100,size:t=>t.items.length})}getTextContent(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(this._transport._htmlForXfa)return this.getXfa().then((t=>ggt.textContent(t)));var e=this.streamTextContent(t);return new Promise((function(t,r){var n=e.getReader(),i={items:[],styles:Object.create(null),lang:null};!function e(){n.read().then((function(r){var n,{value:a,done:s}=r;s?t(i):(null!==(n=i.lang)&&void 0!==n||(i.lang=a.lang),Object.assign(i.styles,a.styles),i.items.push(...a.items),e())}),r)}()}))}getStructTree(){return this._transport.getStructTree(this._pageIndex)}_destroy(){this.destroyed=!0;var t=[];for(var e of this._intentStates.values())if(this._abortOperatorList({intentState:e,reason:new Error("Page was destroyed."),force:!0}),!e.opListReadCapability)for(var r of e.renderTasks)t.push(r.completed),r.cancel();return this.objs.clear(),Snt(Tgt,this,!1),bnt(Cgt,this,Rgt).call(this),Promise.all(t)}cleanup(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];Snt(Tgt,this,!0);var e=bnt(Cgt,this,Igt).call(this,!1);return t&&e&&this._stats&&(this._stats=new Alt),e}_startRenderPage(t,e){var r,n,i=this._intentStates.get(e);i&&(null===(r=this._stats)||void 0===r||r.timeEnd("Page Request"),null===(n=i.displayReadyCapability)||void 0===n||n.resolve(t))}_renderPageChunk(t,e){for(var r=0,n=t.length;r<n;r++)e.operatorList.fnArray.push(t.fnArray[r]),e.operatorList.argsArray.push(t.argsArray[r]);for(var i of(e.operatorList.lastChunk=t.lastChunk,e.operatorList.separateAnnots=t.separateAnnots,e.renderTasks))i.operatorListChanged();t.lastChunk&&bnt(Cgt,this,Igt).call(this,!0)}_pumpOperatorList(t){var{renderingIntent:e,cacheKey:r,annotationStorageSerializable:n,modifiedIds:i}=t,{map:a,transfer:s}=n,o=this._transport.messageHandler.sendWithStream("GetOperatorList",{pageIndex:this._pageIndex,intent:e,cacheKey:r,annotationStorage:a,modifiedIds:i},s).getReader(),l=this._intentStates.get(r);l.streamReader=o;var h=()=>{o.read().then((t=>{var{value:e,done:r}=t;r?l.streamReader=null:this._transport.destroyed||(this._renderPageChunk(e,l),h())}),(t=>{if(l.streamReader=null,!this._transport.destroyed){if(l.operatorList){for(var e of(l.operatorList.lastChunk=!0,l.renderTasks))e.operatorListChanged();bnt(Cgt,this,Igt).call(this,!0)}if(l.displayReadyCapability)l.displayReadyCapability.reject(t);else{if(!l.opListReadCapability)throw t;l.opListReadCapability.reject(t)}}}))};h()}_abortOperatorList(t){var{intentState:e,reason:r,force:n=!1}=t;if(e.streamReader){if(e.streamReaderCancelTimeout&&(clearTimeout(e.streamReaderCancelTimeout),e.streamReaderCancelTimeout=null),!n){if(e.renderTasks.size>0)return;if(r instanceof mlt){var i=100;return r.extraDelay>0&&r.extraDelay<1e3&&(i+=r.extraDelay),void(e.streamReaderCancelTimeout=setTimeout((()=>{e.streamReaderCancelTimeout=null,this._abortOperatorList({intentState:e,reason:r,force:!0})}),i))}}if(e.streamReader.cancel(new Zot(r.message)).catch((()=>{})),e.streamReader=null,!this._transport.destroyed){for(var[a,s]of this._intentStates)if(s===e){this._intentStates.delete(a);break}this.cleanup()}}}get stats(){return this._stats}}function Igt(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(bnt(Cgt,this,Rgt).call(this),!_nt(Tgt,this)||this.destroyed)return!1;if(t)return Snt(Mgt,this,setTimeout((()=>{Snt(Mgt,this,null),bnt(Cgt,this,Igt).call(this,!1)}),5e3)),!1;for(var{renderTasks:e,operatorList:r}of this._intentStates.values())if(e.size>0||!r.lastChunk)return!1;return this._intentStates.clear(),this.objs.clear(),Snt(Tgt,this,!1),!0}function Rgt(){_nt(Mgt,this)&&(clearTimeout(_nt(Mgt,this)),Snt(Mgt,this,null))}var Ogt=new WeakMap,Lgt=new WeakMap;class Dgt{constructor(){knt(this,Ogt,new Map),knt(this,Lgt,Promise.resolve())}postMessage(t,e){var r={data:structuredClone(t,e?{transfer:e}:null)};_nt(Lgt,this).then((()=>{for(var[t]of _nt(Ogt,this))t.call(this,r)}))}addEventListener(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=null;if((null==r?void 0:r.signal)instanceof AbortSignal){var{signal:i}=r;if(i.aborted)return void Wot("LoopbackPort - cannot use an `aborted` signal.");var a=()=>this.removeEventListener(t,e);n=()=>i.removeEventListener("abort",a),i.addEventListener("abort",a)}_nt(Ogt,this).set(e,n)}removeEventListener(t,e){var r=_nt(Ogt,this).get(e);null==r||r(),_nt(Ogt,this).delete(e)}terminate(){for(var[,t]of _nt(Ogt,this))null==t||t();_nt(Ogt,this).clear()}}var Fgt=new WeakSet;class Ngt{constructor(){var{name:t=null,port:e=null,verbosity:r=Bot()}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(Mnt(this,Fgt),this.name=t,this.destroyed=!1,this.verbosity=r,this._readyCapability=Promise.withResolvers(),this._port=null,this._webWorker=null,this._messageHandler=null,e){var n;if(null!==(n=Ugt._)&&void 0!==n&&n.has(e))throw new Error("Cannot use more than one PDFWorker per port.");return(Ugt._||(Ugt._=new WeakMap)).set(e,this),void this._initializeFromPort(e)}this._initialize()}get promise(){return this._readyCapability.promise}get port(){return this._port}get messageHandler(){return this._messageHandler}_initializeFromPort(t){this._port=t,this._messageHandler=new Ddt("main","worker",t),this._messageHandler.on("ready",(function(){})),bnt(Fgt,this,jgt).call(this)}_initialize(){if(Wgt._||Bgt(Ngt))this._setupFakeWorker();else{var{workerSrc:t}=Ngt;try{Ngt._isSameOrigin(window.location.href,t)||(t=Ngt._createCDNWrapper(new URL(t,window.location).href));var e=new Worker(t,{type:"module"}),r=new Ddt("main","worker",e),n=()=>{i.abort(),r.destroy(),e.terminate(),this.destroyed?this._readyCapability.reject(new Error("Worker was destroyed")):this._setupFakeWorker()},i=new AbortController;e.addEventListener("error",(()=>{this._webWorker||n()}),{signal:i.signal}),r.on("test",(t=>{i.abort(),!this.destroyed&&t?(this._messageHandler=r,this._port=e,this._webWorker=e,bnt(Fgt,this,jgt).call(this)):n()})),r.on("ready",(t=>{if(i.abort(),this.destroyed)n();else try{a()}catch(t){this._setupFakeWorker()}}));var a=()=>{var t=new Uint8Array;r.send("test",t,[t.buffer])};return void a()}catch(t){zot("The worker has been disabled.")}this._setupFakeWorker()}}_setupFakeWorker(){Wgt._||(Wot("Setting up fake worker."),Wgt._=!0),Ngt._setupFakeWorkerGlobal.then((t=>{var e,r;if(this.destroyed)this._readyCapability.reject(new Error("Worker was destroyed"));else{var n=new Dgt;this._port=n;var i="fake".concat((zgt._=(e=zgt._,r=e++,e),r)),a=new Ddt(i+"_worker",i,n);t.setup(a,n),this._messageHandler=new Ddt(i,i+"_worker",n),bnt(Fgt,this,jgt).call(this)}})).catch((t=>{this._readyCapability.reject(new Error('Setting up fake worker failed: "'.concat(t.message,'".')))}))}destroy(){var t,e,r;this.destroyed=!0,null===(t=this._webWorker)||void 0===t||t.terminate(),this._webWorker=null,null===(e=Ugt._)||void 0===e||e.delete(this._port),this._port=null,null===(r=this._messageHandler)||void 0===r||r.destroy(),this._messageHandler=null}static fromPort(t){var e;if(null==t||!t.port)throw new Error("PDFWorker.fromPort - invalid method signature.");var r=null===(e=bnt(Ngt,this,Ugt)._)||void 0===e?void 0:e.get(t.port);if(r){if(r._pendingDestroy)throw new Error("PDFWorker.fromPort - the worker is being destroyed.\nPlease remember to await `PDFDocumentLoadingTask.destroy()`-calls.");return r}return new Ngt(t)}static get workerSrc(){if($pt.workerSrc)return $pt.workerSrc;throw new Error('No "GlobalWorkerOptions.workerSrc" specified.')}static get _setupFakeWorkerGlobal(){var t=this,e=function(){var e=xnt((function*(){return Ent(Ngt,t,Bgt)?Ent(Ngt,t,Bgt):(yield import(t.workerSrc)).WorkerMessageHandler}));return function(){return e.apply(this,arguments)}}();return Yot(this,"_setupFakeWorkerGlobal",e())}}function jgt(){this._readyCapability.resolve(),this._messageHandler.send("configure",{verbosity:this.verbosity})}function Bgt(t){try{var e;return(null===(e=globalThis.pdfjsWorker)||void 0===e?void 0:e.WorkerMessageHandler)||null}catch(t){return null}}Ist=Ngt;var zgt={_:0},Wgt={_:!1},Ugt={_:void 0};Ust&&(Wgt._=bnt(Ist,Ist,!0),$pt.workerSrc||($pt.workerSrc="./pdf.worker.mjs")),Ist._isSameOrigin=(t,e)=>{var r;try{if(!(r=new URL(t)).origin||"null"===r.origin)return!1}catch(t){return!1}var n=new URL(e,r);return r.origin===n.origin},Ist._createCDNWrapper=t=>{var e='await import("'.concat(t,'");');return URL.createObjectURL(new Blob([e],{type:"text/javascript"}))};var Hgt=new WeakMap,Ggt=new WeakMap,Ygt=new WeakMap,Vgt=new WeakMap,qgt=new WeakMap,Xgt=new WeakSet;class $gt{constructor(t,e,r,n,i){Mnt(this,Xgt),knt(this,Hgt,new Map),knt(this,Ggt,new Map),knt(this,Ygt,new Map),knt(this,Vgt,new Map),knt(this,qgt,null),this.messageHandler=t,this.loadingTask=e,this.commonObjs=new tvt,this.fontLoader=new bdt({ownerDocument:n.ownerDocument,styleElement:n.styleElement}),this.loadingParams=n.loadingParams,this._params=n,this.canvasFactory=i.canvasFactory,this.filterFactory=i.filterFactory,this.cMapReaderFactory=i.cMapReaderFactory,this.standardFontDataFactory=i.standardFontDataFactory,this.destroyed=!1,this.destroyCapability=null,this._networkStream=r,this._fullReader=null,this._lastProgress=null,this.downloadInfoCapability=Promise.withResolvers(),this.setupMessageHandler()}get annotationStorage(){return Yot(this,"annotationStorage",new fdt)}getRenderingIntent(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:tot.ENABLE,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=arguments.length>3&&void 0!==arguments[3]&&arguments[3],i=arguments.length>4&&void 0!==arguments[4]&&arguments[4],a=qst,s=hdt;switch(t){case"any":a=Vst;break;case"display":break;case"print":a=Xst;break;default:Wot("getRenderingIntent - invalid intent: ".concat(t))}var o=a&Xst&&r instanceof mdt?r:this.annotationStorage;switch(e){case tot.DISABLE:a+=Qst;break;case tot.ENABLE:break;case tot.ENABLE_FORMS:a+=$st;break;case tot.ENABLE_STORAGE:a+=Kst,s=o.serializable;break;default:Wot("getRenderingIntent - invalid annotationMode: ".concat(e))}n&&(a+=Jst),i&&(a+=Zst);var{ids:l,hash:h}=o.modifiedIds;return{renderingIntent:a,cacheKey:[a,s.hash,h].join("_"),annotationStorageSerializable:s,modifiedIds:l}}destroy(){var t;if(this.destroyCapability)return this.destroyCapability.promise;this.destroyed=!0,this.destroyCapability=Promise.withResolvers(),null===(t=_nt(qgt,this))||void 0===t||t.reject(new Error("Worker was destroyed during onPassword callback"));var e=[];for(var r of _nt(Ggt,this).values())e.push(r._destroy());_nt(Ggt,this).clear(),_nt(Ygt,this).clear(),_nt(Vgt,this).clear(),this.hasOwnProperty("annotationStorage")&&this.annotationStorage.resetModified();var n=this.messageHandler.sendWithPromise("Terminate",null);return e.push(n),Promise.all(e).then((()=>{var t,e;this.commonObjs.clear(),this.fontLoader.clear(),_nt(Hgt,this).clear(),this.filterFactory.destroy(),rgt.cleanup(),null===(t=this._networkStream)||void 0===t||t.cancelAllRequests(new Zot("Worker was terminated.")),null===(e=this.messageHandler)||void 0===e||e.destroy(),this.messageHandler=null,this.destroyCapability.resolve()}),this.destroyCapability.reject),this.destroyCapability.promise}setupMessageHandler(){var t=this,{messageHandler:e,loadingTask:r}=this;e.on("GetReader",((t,e)=>{Hot(this._networkStream,"GetReader - no `IPDFStream` instance available."),this._fullReader=this._networkStream.getFullReader(),this._fullReader.onProgress=t=>{this._lastProgress={loaded:t.loaded,total:t.total}},e.onPull=()=>{this._fullReader.read().then((function(t){var{value:r,done:n}=t;n?e.close():(Hot(r instanceof ArrayBuffer,"GetReader - expected an ArrayBuffer."),e.enqueue(new Uint8Array(r),1,[r]))})).catch((t=>{e.error(t)}))},e.onCancel=t=>{this._fullReader.cancel(t),e.ready.catch((t=>{if(!this.destroyed)throw t}))}})),e.on("ReaderHeadersReady",function(){var e=xnt((function*(e){yield t._fullReader.headersReady;var{isStreamingSupported:n,isRangeSupported:i,contentLength:a}=t._fullReader;if(!n||!i){var s;if(t._lastProgress)null===(s=r.onProgress)||void 0===s||s.call(r,t._lastProgress);t._fullReader.onProgress=t=>{var e;null===(e=r.onProgress)||void 0===e||e.call(r,{loaded:t.loaded,total:t.total})}}return{isStreamingSupported:n,isRangeSupported:i,contentLength:a}}));return function(t){return e.apply(this,arguments)}}()),e.on("GetRangeReader",((t,e)=>{Hot(this._networkStream,"GetRangeReader - no `IPDFStream` instance available.");var r=this._networkStream.getRangeReader(t.begin,t.end);r?(e.onPull=()=>{r.read().then((function(t){var{value:r,done:n}=t;n?e.close():(Hot(r instanceof ArrayBuffer,"GetRangeReader - expected an ArrayBuffer."),e.enqueue(new Uint8Array(r),1,[r]))})).catch((t=>{e.error(t)}))},e.onCancel=t=>{r.cancel(t),e.ready.catch((t=>{if(!this.destroyed)throw t}))}):e.close()})),e.on("GetDoc",(t=>{var{pdfInfo:e}=t;this._numPages=e.numPages,this._htmlForXfa=e.htmlForXfa,delete e.htmlForXfa,r._capability.resolve(new Egt(e,this))})),e.on("DocException",(t=>{r._capability.reject(Rdt(t))})),e.on("PasswordRequest",(t=>{Snt(qgt,this,Promise.withResolvers());try{if(!r.onPassword)throw Rdt(t);r.onPassword((t=>{t instanceof Error?_nt(qgt,this).reject(t):_nt(qgt,this).resolve({password:t})}),t.code)}catch(t){_nt(qgt,this).reject(t)}return _nt(qgt,this).promise})),e.on("DataLoaded",(t=>{var e;null===(e=r.onProgress)||void 0===e||e.call(r,{loaded:t.length,total:t.length}),this.downloadInfoCapability.resolve(t)})),e.on("StartRenderPage",(t=>{this.destroyed||_nt(Ggt,this).get(t.pageIndex)._startRenderPage(t.transparency,t.cacheKey)})),e.on("commonobj",(t=>{var r,[n,i,a]=t;if(this.destroyed)return null;if(this.commonObjs.has(n))return null;switch(i){case"Font":var{disableFontFace:s,fontExtraProperties:o,pdfBug:l}=this._params;if("error"in a){var h=a.error;Wot("Error during font loading: ".concat(h)),this.commonObjs.resolve(n,h);break}var c=l&&null!==(r=globalThis.FontInspector)&&void 0!==r&&r.enabled?(t,e)=>globalThis.FontInspector.fontAdded(t,e):null,u=new wdt(a,{disableFontFace:s,fontExtraProperties:o,inspectFont:c});this.fontLoader.bind(u).catch((()=>e.sendWithPromise("FontFallback",{id:n}))).finally((()=>{!o&&u.data&&(u.data=null),this.commonObjs.resolve(n,u)}));break;case"CopyLocalImage":var{imageRef:d}=a;for(var p of(Hot(d,"The imageRef must be defined."),_nt(Ggt,this).values()))for(var[,f]of p.objs)if((null==f?void 0:f.ref)===d)return f.dataLen?(this.commonObjs.resolve(n,structuredClone(f)),f.dataLen):null;break;case"FontPath":case"Image":case"Pattern":this.commonObjs.resolve(n,a);break;default:throw new Error("Got unknown common object type ".concat(i))}return null})),e.on("obj",(t=>{var[e,r,n,i]=t;if(!this.destroyed){var a,s=_nt(Ggt,this).get(r);if(!s.objs.has(e))if(0!==s._intentStates.size)switch(n){case"Image":s.objs.resolve(e,i),(null==i?void 0:i.dataLen)>1e7&&(s._maybeCleanupAfterRender=!0);break;case"Pattern":s.objs.resolve(e,i);break;default:throw new Error("Got unknown object type ".concat(n))}else null==i||null===(a=i.bitmap)||void 0===a||a.close()}})),e.on("DocProgress",(t=>{var e;this.destroyed||null===(e=r.onProgress)||void 0===e||e.call(r,{loaded:t.loaded,total:t.total})})),e.on("FetchBuiltInCMap",function(){var e=xnt((function*(e){if(t.destroyed)throw new Error("Worker was destroyed.");if(!t.cMapReaderFactory)throw new Error("CMapReaderFactory not initialized, see the `useWorkerFetch` parameter.");return t.cMapReaderFactory.fetch(e)}));return function(t){return e.apply(this,arguments)}}()),e.on("FetchStandardFontData",function(){var e=xnt((function*(e){if(t.destroyed)throw new Error("Worker was destroyed.");if(!t.standardFontDataFactory)throw new Error("StandardFontDataFactory not initialized, see the `useWorkerFetch` parameter.");return t.standardFontDataFactory.fetch(e)}));return function(t){return e.apply(this,arguments)}}())}getData(){return this.messageHandler.sendWithPromise("GetData",null)}saveDocument(){var t,e;this.annotationStorage.size<=0&&Wot("saveDocument called while `annotationStorage` is empty, please use the getData-method instead.");var{map:r,transfer:n}=this.annotationStorage.serializable;return this.messageHandler.sendWithPromise("SaveDocument",{isPureXfa:!!this._htmlForXfa,numPages:this._numPages,annotationStorage:r,filename:null!==(t=null===(e=this._fullReader)||void 0===e?void 0:e.filename)&&void 0!==t?t:null},n).finally((()=>{this.annotationStorage.resetModified()}))}getPage(t){if(!Number.isInteger(t)||t<=0||t>this._numPages)return Promise.reject(new Error("Invalid page request."));var e=t-1,r=_nt(Ygt,this).get(e);if(r)return r;var n=this.messageHandler.sendWithPromise("GetPage",{pageIndex:e}).then((r=>{if(this.destroyed)throw new Error("Transport destroyed");r.refStr&&_nt(Vgt,this).set(r.refStr,t);var n=new Pgt(e,r,this,this._params.pdfBug);return _nt(Ggt,this).set(e,n),n}));return _nt(Ygt,this).set(e,n),n}getPageIndex(t){return Agt(t)?this.messageHandler.sendWithPromise("GetPageIndex",{num:t.num,gen:t.gen}):Promise.reject(new Error("Invalid pageIndex request."))}getAnnotations(t,e){return this.messageHandler.sendWithPromise("GetAnnotations",{pageIndex:t,intent:e})}getFieldObjects(){return bnt(Xgt,this,Kgt).call(this,"GetFieldObjects")}hasJSActions(){return bnt(Xgt,this,Kgt).call(this,"HasJSActions")}getCalculationOrderIds(){return this.messageHandler.sendWithPromise("GetCalculationOrderIds",null)}getDestinations(){return this.messageHandler.sendWithPromise("GetDestinations",null)}getDestination(t){return"string"!=typeof t?Promise.reject(new Error("Invalid destination request.")):this.messageHandler.sendWithPromise("GetDestination",{id:t})}getPageLabels(){return this.messageHandler.sendWithPromise("GetPageLabels",null)}getPageLayout(){return this.messageHandler.sendWithPromise("GetPageLayout",null)}getPageMode(){return this.messageHandler.sendWithPromise("GetPageMode",null)}getViewerPreferences(){return this.messageHandler.sendWithPromise("GetViewerPreferences",null)}getOpenAction(){return this.messageHandler.sendWithPromise("GetOpenAction",null)}getAttachments(){return this.messageHandler.sendWithPromise("GetAttachments",null)}getDocJSActions(){return bnt(Xgt,this,Kgt).call(this,"GetDocJSActions")}getPageJSActions(t){return this.messageHandler.sendWithPromise("GetPageJSActions",{pageIndex:t})}getStructTree(t){return this.messageHandler.sendWithPromise("GetStructTree",{pageIndex:t})}getOutline(){return this.messageHandler.sendWithPromise("GetOutline",null)}getOptionalContentConfig(t){return bnt(Xgt,this,Kgt).call(this,"GetOptionalContentConfig").then((e=>new dft(e,t)))}getPermissions(){return this.messageHandler.sendWithPromise("GetPermissions",null)}getMetadata(){var t="GetMetadata",e=_nt(Hgt,this).get(t);if(e)return e;var r=this.messageHandler.sendWithPromise(t,null).then((t=>{var e,r,n,i;return{info:t[0],metadata:t[1]?new tft(t[1]):null,contentDispositionFilename:null!==(e=null===(r=this._fullReader)||void 0===r?void 0:r.filename)&&void 0!==e?e:null,contentLength:null!==(n=null===(i=this._fullReader)||void 0===i?void 0:i.contentLength)&&void 0!==n?n:null}}));return _nt(Hgt,this).set(t,r),r}getMarkInfo(){return this.messageHandler.sendWithPromise("GetMarkInfo",null)}startCleanup(){var t=arguments,e=this;return xnt((function*(){var r=t.length>0&&void 0!==t[0]&&t[0];if(!e.destroyed){for(var n of(yield e.messageHandler.sendWithPromise("Cleanup",null),_nt(Ggt,e).values())){if(!n.cleanup())throw new Error("startCleanup: Page ".concat(n.pageNumber," is currently rendering."))}e.commonObjs.clear(),r||e.fontLoader.clear(),_nt(Hgt,e).clear(),e.filterFactory.destroy(!0),rgt.cleanup()}}))()}cachedPageNumber(t){var e;if(!Agt(t))return null;var r=0===t.gen?"".concat(t.num,"R"):"".concat(t.num,"R").concat(t.gen);return null!==(e=_nt(Vgt,this).get(r))&&void 0!==e?e:null}}function Kgt(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=_nt(Hgt,this).get(t);if(r)return r;var n=this.messageHandler.sendWithPromise(t,e);return _nt(Hgt,this).set(t,n),n}var Qgt=Symbol("INITIAL_DATA"),Jgt=new WeakMap,Zgt=new WeakSet;class tvt{constructor(){Mnt(this,Zgt),knt(this,Jgt,Object.create(null))}get(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(e){var r=bnt(Zgt,this,evt).call(this,t);return r.promise.then((()=>e(r.data))),null}var n=_nt(Jgt,this)[t];if(!n||n.data===Qgt)throw new Error("Requesting object that isn't resolved yet ".concat(t,"."));return n.data}has(t){var e=_nt(Jgt,this)[t];return!!e&&e.data!==Qgt}delete(t){var e=_nt(Jgt,this)[t];return!(!e||e.data===Qgt)&&(delete _nt(Jgt,this)[t],!0)}resolve(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=bnt(Zgt,this,evt).call(this,t);r.data=e,r.resolve()}clear(){for(var t in _nt(Jgt,this)){var e,{data:r}=_nt(Jgt,this)[t];null==r||null===(e=r.bitmap)||void 0===e||e.close()}Snt(Jgt,this,Object.create(null))}*[Symbol.iterator](){for(var t in _nt(Jgt,this)){var{data:e}=_nt(Jgt,this)[t];e!==Qgt&&(yield[t,e])}}}function evt(t){var e;return(e=_nt(Jgt,this))[t]||(e[t]=Pnt(Pnt({},Promise.withResolvers()),{},{data:Qgt}))}var rvt=new WeakMap;class nvt{constructor(t){knt(this,rvt,null),Snt(rvt,this,t),this.onContinue=null}get promise(){return _nt(rvt,this).capability.promise}cancel(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;_nt(rvt,this).cancel(null,t)}get separateAnnots(){var{separateAnnots:t}=_nt(rvt,this).operatorList;if(!t)return!1;var{annotationCanvasMap:e}=_nt(rvt,this);return t.form||t.canvas&&(null==e?void 0:e.size)>0}}var ivt=new WeakMap;class avt{constructor(t){var{callback:e,params:r,objs:n,commonObjs:i,annotationCanvasMap:a,operatorList:s,pageIndex:o,canvasFactory:l,filterFactory:h,useRequestAnimationFrame:c=!1,pdfBug:u=!1,pageColors:d=null}=t;knt(this,ivt,null),this.callback=e,this.params=r,this.objs=n,this.commonObjs=i,this.annotationCanvasMap=a,this.operatorListIdx=null,this.operatorList=s,this._pageIndex=o,this.canvasFactory=l,this.filterFactory=h,this._pdfBug=u,this.pageColors=d,this.running=!1,this.graphicsReadyCallback=null,this.graphicsReady=!1,this._useRequestAnimationFrame=!0===c&&"undefined"!=typeof window,this.cancelled=!1,this.capability=Promise.withResolvers(),this.task=new nvt(this),this._cancelBound=this.cancel.bind(this),this._continueBound=this._continue.bind(this),this._scheduleNextBound=this._scheduleNext.bind(this),this._nextBound=this._next.bind(this),this._canvas=r.canvasContext.canvas}get completed(){return this.capability.promise.catch((function(){}))}initializeGraphics(t){var e,r,{transparency:n=!1,optionalContentConfig:i}=t;if(!this.cancelled){if(this._canvas){if(svt._.has(this._canvas))throw new Error("Cannot use the same canvas during multiple render() operations. Use different canvas or ensure previous operations were cancelled or completed.");svt._.add(this._canvas)}this._pdfBug&&null!==(e=globalThis.StepperManager)&&void 0!==e&&e.enabled&&(this.stepper=globalThis.StepperManager.create(this._pageIndex),this.stepper.init(this.operatorList),this.stepper.nextBreakPoint=this.stepper.getNextBreakPoint());var{canvasContext:a,viewport:s,transform:o,background:l}=this.params;this.gfx=new Gpt(a,this.commonObjs,this.objs,this.canvasFactory,this.filterFactory,{optionalContentConfig:i},this.annotationCanvasMap,this.pageColors),this.gfx.beginDrawing({transform:o,viewport:s,transparency:n,background:l}),this.operatorListIdx=0,this.graphicsReady=!0,null===(r=this.graphicsReadyCallback)||void 0===r||r.call(this)}}cancel(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this.running=!1,this.cancelled=!0,null===(t=this.gfx)||void 0===t||t.endDrawing(),_nt(ivt,this)&&(window.cancelAnimationFrame(_nt(ivt,this)),Snt(ivt,this,null)),svt._.delete(this._canvas),this.callback(e||new mlt("Rendering cancelled, page ".concat(this._pageIndex+1),r))}operatorListChanged(){var t;this.graphicsReady?(null===(t=this.stepper)||void 0===t||t.updateOperatorList(this.operatorList),this.running||this._continue()):this.graphicsReadyCallback||(this.graphicsReadyCallback=this._continueBound)}_continue(){this.running=!0,this.cancelled||(this.task.onContinue?this.task.onContinue(this._scheduleNextBound):this._scheduleNext())}_scheduleNext(){this._useRequestAnimationFrame?Snt(ivt,this,window.requestAnimationFrame((()=>{Snt(ivt,this,null),this._nextBound().catch(this._cancelBound)}))):Promise.resolve().then(this._nextBound).catch(this._cancelBound)}_next(){var t=this;return xnt((function*(){t.cancelled||(t.operatorListIdx=t.gfx.executeOperatorList(t.operatorList,t.operatorListIdx,t._continueBound,t.stepper),t.operatorListIdx===t.operatorList.argsArray.length&&(t.running=!1,t.operatorList.lastChunk&&(t.gfx.endDrawing(),svt._.delete(t._canvas),t.callback())))}))()}}var svt={_:new WeakSet},ovt="4.10.38",lvt="f9bea397f";function hvt(t){return Math.floor(255*Math.max(0,Math.min(1,t))).toString(16).padStart(2,"0")}function cvt(t){return Math.max(0,Math.min(255,255*t))}class uvt{static CMYK_G(t){var[e,r,n,i]=t;return["G",1-Math.min(1,.3*e+.59*n+.11*r+i)]}static G_CMYK(t){var[e]=t;return["CMYK",0,0,0,1-e]}static G_RGB(t){var[e]=t;return["RGB",e,e,e]}static G_rgb(t){var[e]=t;return[e=cvt(e),e,e]}static G_HTML(t){var[e]=t,r=hvt(e);return"#".concat(r).concat(r).concat(r)}static RGB_G(t){var[e,r,n]=t;return["G",.3*e+.59*r+.11*n]}static RGB_rgb(t){return t.map(cvt)}static RGB_HTML(t){return"#".concat(t.map(hvt).join(""))}static T_HTML(){return"#00000000"}static T_rgb(){return[null]}static CMYK_RGB(t){var[e,r,n,i]=t;return["RGB",1-Math.min(1,e+i),1-Math.min(1,n+i),1-Math.min(1,r+i)]}static CMYK_rgb(t){var[e,r,n,i]=t;return[cvt(1-Math.min(1,e+i)),cvt(1-Math.min(1,n+i)),cvt(1-Math.min(1,r+i))]}static CMYK_HTML(t){var e=this.CMYK_RGB(t).slice(1);return this.RGB_HTML(e)}static RGB_CMYK(t){var[e,r,n]=t,i=1-e,a=1-r,s=1-n;return["CMYK",i,a,s,Math.min(i,a,s)]}}class dvt{create(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(t<=0||e<=0)throw new Error("Invalid SVG dimensions");var n=this._createSVG("svg:svg");return n.setAttribute("version","1.1"),r||(n.setAttribute("width","".concat(t,"px")),n.setAttribute("height","".concat(e,"px"))),n.setAttribute("preserveAspectRatio","none"),n.setAttribute("viewBox","0 0 ".concat(t," ").concat(e)),n}createElement(t){if("string"!=typeof t)throw new Error("Invalid SVG element type");return this._createSVG(t)}_createSVG(t){Uot("Abstract method `_createSVG` called.")}}class pvt extends dvt{_createSVG(t){return document.createElementNS(dlt,t)}}class fvt{static setupStorage(t,e,r,n,i){var a=n.getValue(e,{value:null});switch(r.name){case"textarea":if(null!==a.value&&(t.textContent=a.value),"print"===i)break;t.addEventListener("input",(t=>{n.setValue(e,{value:t.target.value})}));break;case"input":if("radio"===r.attributes.type||"checkbox"===r.attributes.type){if(a.value===r.attributes.xfaOn?t.setAttribute("checked",!0):a.value===r.attributes.xfaOff&&t.removeAttribute("checked"),"print"===i)break;t.addEventListener("change",(t=>{n.setValue(e,{value:t.target.checked?t.target.getAttribute("xfaOn"):t.target.getAttribute("xfaOff")})}))}else{if(null!==a.value&&t.setAttribute("value",a.value),"print"===i)break;t.addEventListener("input",(t=>{n.setValue(e,{value:t.target.value})}))}break;case"select":if(null!==a.value)for(var s of(t.setAttribute("value",a.value),r.children))s.attributes.value===a.value?s.attributes.selected=!0:s.attributes.hasOwnProperty("selected")&&delete s.attributes.selected;t.addEventListener("input",(t=>{var r=t.target.options,i=-1===r.selectedIndex?"":r[r.selectedIndex].value;n.setValue(e,{value:i})}))}}static setAttributes(t){var{html:e,element:r,storage:n=null,intent:i,linkService:a}=t,{attributes:s}=r,o=e instanceof HTMLAnchorElement;for(var[l,h]of("radio"===s.type&&(s.name="".concat(s.name,"-").concat(i)),Object.entries(s)))if(null!=h)switch(l){case"class":h.length&&e.setAttribute(l,h.join(" "));break;case"dataId":break;case"id":e.setAttribute("data-element-id",h);break;case"style":Object.assign(e.style,h);break;case"textContent":e.textContent=h;break;default:(!o||"href"!==l&&"newWindow"!==l)&&e.setAttribute(l,h)}o&&a.addLinkAttributes(e,s.href,s.newWindow),n&&s.dataId&&this.setupStorage(e,s.dataId,r,n)}static render(t){var e=t.annotationStorage,r=t.linkService,n=t.xfaHtml,i=t.intent||"display",a=document.createElement(n.name);n.attributes&&this.setAttributes({html:a,element:n,intent:i,linkService:r});var s="richText"!==i,o=t.div;if(o.append(a),t.viewport){var l="matrix(".concat(t.viewport.transform.join(","),")");o.style.transform=l}s&&o.setAttribute("class","xfaLayer xfaFont");var h=[];if(0===n.children.length){if(n.value){var c=document.createTextNode(n.value);a.append(c),s&&ggt.shouldBuildText(n.name)&&h.push(c)}return{textDivs:h}}for(var u=[[n,-1,a]];u.length>0;){var d,p,[f,g,v]=u.at(-1);if(g+1!==f.children.length){var m=f.children[++u.at(-1)[1]];if(null!==m){var{name:y}=m;if("#text"!==y){var b=null!=m&&null!==(d=m.attributes)&&void 0!==d&&d.xmlns?document.createElementNS(m.attributes.xmlns,y):document.createElement(y);if(v.append(b),m.attributes&&this.setAttributes({html:b,element:m,storage:e,intent:i,linkService:r}),(null===(p=m.children)||void 0===p?void 0:p.length)>0)u.push([m,-1,b]);else if(m.value){var w=document.createTextNode(m.value);s&&ggt.shouldBuildText(y)&&h.push(w),b.append(w)}}else{var x=document.createTextNode(m.value);h.push(x),v.append(x)}}}else u.pop()}for(var A of o.querySelectorAll(".xfaNonInteractive input, .xfaNonInteractive textarea"))A.setAttribute("readOnly",!0);return{textDivs:h}}static update(t){var e="matrix(".concat(t.viewport.transform.join(","),")");t.div.style.transform=e,t.div.hidden=!1}}var gvt=1e3,vvt=new WeakSet;function mvt(t){return{width:t[2]-t[0],height:t[3]-t[1]}}class yvt{static create(t){switch(t.data.annotationType){case dot:return new Evt(t);case uot:return new Pvt(t);case Tot:switch(t.data.fieldType){case"Tx":return new Rvt(t);case"Btn":return t.data.radioButton?new Dvt(t):t.data.checkBox?new Lvt(t):new Fvt(t);case"Ch":return new Nvt(t);case"Sig":return new Ovt(t)}return new Ivt(t);case Eot:return new jvt(t);case pot:return new gmt(t);case fot:return new mmt(t);case got:return new bmt(t);case vot:return new xmt(t);case yot:return new _mt(t);case kot:return new Smt(t);case Sot:return new Cmt(t);case mot:return new kmt(t);case bot:return new Imt(t);case wot:return new Rmt(t);case xot:return new Omt(t);case Aot:return new Lmt(t);case _ot:return new Dmt(t);case Mot:return new jmt(t);default:return new _vt(t)}}}var bvt=new WeakMap,wvt=new WeakMap,xvt=new WeakMap,Avt=new WeakSet;class _vt{constructor(t){var{isRenderable:e=!1,ignoreBorder:r=!1,createQuadrilaterals:n=!1}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};Mnt(this,Avt),knt(this,bvt,null),knt(this,wvt,!1),knt(this,xvt,null),this.isRenderable=e,this.data=t.data,this.layer=t.layer,this.linkService=t.linkService,this.downloadManager=t.downloadManager,this.imageResourcesPath=t.imageResourcesPath,this.renderForms=t.renderForms,this.svgFactory=t.svgFactory,this.annotationStorage=t.annotationStorage,this.enableScripting=t.enableScripting,this.hasJSActions=t.hasJSActions,this._fieldObjects=t.fieldObjects,this.parent=t.parent,e&&(this.container=this._createContainer(r)),n&&this._createQuadrilaterals()}static _hasPopupData(t){var{titleObj:e,contentsObj:r,richText:n}=t;return!!(null!=e&&e.str||null!=r&&r.str||null!=n&&n.str)}get _isEditable(){return this.data.isEditable}get hasPopupData(){return _vt._hasPopupData(this.data)}updateEdited(t){var e;if(this.container){_nt(bvt,this)||Snt(bvt,this,{rect:this.data.rect.slice(0)});var{rect:r}=t;r&&bnt(Avt,this,kvt).call(this,r),null===(e=_nt(xvt,this))||void 0===e||e.popup.updateEdited(t)}}resetEdited(){var t;_nt(bvt,this)&&(bnt(Avt,this,kvt).call(this,_nt(bvt,this).rect),null===(t=_nt(xvt,this))||void 0===t||t.popup.resetEdited(),Snt(bvt,this,null))}_createContainer(t){var{data:e,parent:{page:r,viewport:n}}=this,i=document.createElement("section");i.setAttribute("data-annotation-id",e.id),this instanceof Ivt||(i.tabIndex=gvt);var{style:a}=i;if(a.zIndex=this.parent.zIndex++,e.alternativeText&&(i.title=e.alternativeText),e.noRotate&&i.classList.add("norotate"),!e.rect||this instanceof jvt){var{rotation:s}=e;return e.hasOwnCanvas||0===s||this.setRotation(s,i),i}var{width:o,height:l}=mvt(e.rect);if(!t&&e.borderStyle.width>0){a.borderWidth="".concat(e.borderStyle.width,"px");var h=e.borderStyle.horizontalCornerRadius,c=e.borderStyle.verticalCornerRadius;if(h>0||c>0){var u="calc(".concat(h,"px * var(--scale-factor)) / calc(").concat(c,"px * var(--scale-factor))");a.borderRadius=u}else if(this instanceof Dvt){var d="calc(".concat(o,"px * var(--scale-factor)) / calc(").concat(l,"px * var(--scale-factor))");a.borderRadius=d}switch(e.borderStyle.style){case Cot:a.borderStyle="solid";break;case Pot:a.borderStyle="dashed";break;case Iot:Wot("Unimplemented border style: beveled");break;case Rot:Wot("Unimplemented border style: inset");break;case Oot:a.borderBottomStyle="solid"}var p=e.borderColor||null;p?(Snt(wvt,this,!0),a.borderColor=alt.makeHexColor(0|p[0],0|p[1],0|p[2])):a.borderWidth=0}var f=alt.normalizeRect([e.rect[0],r.view[3]-e.rect[1]+r.view[1],e.rect[2],r.view[3]-e.rect[3]+r.view[1]]),{pageWidth:g,pageHeight:v,pageX:m,pageY:y}=n.rawDims;a.left="".concat(100*(f[0]-m)/g,"%"),a.top="".concat(100*(f[1]-y)/v,"%");var{rotation:b}=e;return e.hasOwnCanvas||0===b?(a.width="".concat(100*o/g,"%"),a.height="".concat(100*l/v,"%")):this.setRotation(b,i),i}setRotation(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.container;if(this.data.rect){var r,n,{pageWidth:i,pageHeight:a}=this.parent.viewport.rawDims,{width:s,height:o}=mvt(this.data.rect);t%180==0?(r=100*s/i,n=100*o/a):(r=100*o/i,n=100*s/a),e.style.width="".concat(r,"%"),e.style.height="".concat(n,"%"),e.setAttribute("data-main-rotation",(360-t)%360)}}get _commonActions(){var t=(t,e,r)=>{var n=r.detail[t],i=n[0],a=n.slice(1);r.target.style[e]=uvt["".concat(i,"_HTML")](a),this.annotationStorage.setValue(this.data.id,{[e]:uvt["".concat(i,"_rgb")](a)})};return Yot(this,"_commonActions",{display:t=>{var{display:e}=t.detail,r=e%2==1;this.container.style.visibility=r?"hidden":"visible",this.annotationStorage.setValue(this.data.id,{noView:r,noPrint:1===e||2===e})},print:t=>{this.annotationStorage.setValue(this.data.id,{noPrint:!t.detail.print})},hidden:t=>{var{hidden:e}=t.detail;this.container.style.visibility=e?"hidden":"visible",this.annotationStorage.setValue(this.data.id,{noPrint:e,noView:e})},focus:t=>{setTimeout((()=>t.target.focus({preventScroll:!1})),0)},userName:t=>{t.target.title=t.detail.userName},readonly:t=>{t.target.disabled=t.detail.readonly},required:t=>{this._setRequired(t.target,t.detail.required)},bgColor:e=>{t("bgColor","backgroundColor",e)},fillColor:e=>{t("fillColor","backgroundColor",e)},fgColor:e=>{t("fgColor","color",e)},textColor:e=>{t("textColor","color",e)},borderColor:e=>{t("borderColor","borderColor",e)},strokeColor:e=>{t("strokeColor","borderColor",e)},rotation:t=>{var e=t.detail.rotation;this.setRotation(e),this.annotationStorage.setValue(this.data.id,{rotation:e})}})}_dispatchEventFromSandbox(t,e){var r=this._commonActions;for(var n of Object.keys(e.detail)){var i=t[n]||r[n];null==i||i(e)}}_setDefaultPropertiesFromJS(t){if(this.enableScripting){var e=this.annotationStorage.getRawValue(this.data.id);if(e){var r=this._commonActions;for(var[n,i]of Object.entries(e)){var a=r[n];if(a)a({detail:{[n]:i},target:t}),delete e[n]}}}}_createQuadrilaterals(){if(this.container){var{quadPoints:t}=this.data;if(t){var[e,r,n,i]=this.data.rect.map((t=>Math.fround(t)));if(8===t.length){var[a,s,o,l]=t.subarray(2,6);if(n===a&&i===s&&e===o&&r===l)return}var h,{style:c}=this.container;if(_nt(wvt,this)){var{borderColor:u,borderWidth:d}=c;c.borderWidth=0,h=["url('data:image/svg+xml;utf8,",'<svg xmlns="http://www.w3.org/2000/svg"',' preserveAspectRatio="none" viewBox="0 0 1 1">','<g fill="transparent" stroke="'.concat(u,'" stroke-width="').concat(d,'">')],this.container.classList.add("hasBorder")}var p=n-e,f=i-r,{svgFactory:g}=this,v=g.createElement("svg");v.classList.add("quadrilateralsContainer"),v.setAttribute("width",0),v.setAttribute("height",0);var m=g.createElement("defs");v.append(m);var y=g.createElement("clipPath"),b="clippath_".concat(this.data.id);y.setAttribute("id",b),y.setAttribute("clipPathUnits","objectBoundingBox"),m.append(y);for(var w=2,x=t.length;w<x;w+=8){var A,_=t[w],k=t[w+1],S=t[w+2],E=t[w+3],M=g.createElement("rect"),T=(S-e)/p,C=(i-k)/f,P=(_-S)/p,I=(k-E)/f;M.setAttribute("x",T),M.setAttribute("y",C),M.setAttribute("width",P),M.setAttribute("height",I),y.append(M),null===(A=h)||void 0===A||A.push('<rect vector-effect="non-scaling-stroke" x="'.concat(T,'" y="').concat(C,'" width="').concat(P,'" height="').concat(I,'"/>'))}_nt(wvt,this)&&(h.push("</g></svg>')"),c.backgroundImage=h.join("")),this.container.append(v),this.container.style.clipPath="url(#".concat(b,")")}}}_createPopup(){var{data:t}=this,e=Snt(xvt,this,new jvt({data:{color:t.color,titleObj:t.titleObj,modificationDate:t.modificationDate,contentsObj:t.contentsObj,richText:t.richText,parentRect:t.rect,borderStyle:0,id:"popup_".concat(t.id),rotation:t.rotation},parent:this.parent,elements:[this]}));this.parent.div.append(e.render())}render(){Uot("Abstract method `AnnotationElement.render` called")}_getElementsByName(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,r=[];if(this._fieldObjects){var n=this._fieldObjects[t];if(n)for(var{page:i,id:a,exportValues:s}of n)if(-1!==i&&a!==e){var o="string"==typeof s?s:null,l=document.querySelector('[data-element-id="'.concat(a,'"]'));!l||vvt.has(l)?r.push({id:a,exportValue:o,domElement:l}):Wot("_getElementsByName - element not allowed: ".concat(a))}return r}for(var h of document.getElementsByName(t)){var{exportValue:c}=h,u=h.getAttribute("data-element-id");u!==e&&(vvt.has(h)&&r.push({id:u,exportValue:c,domElement:h}))}return r}show(){var t;this.container&&(this.container.hidden=!1),null===(t=this.popup)||void 0===t||t.maybeShow()}hide(){var t;this.container&&(this.container.hidden=!0),null===(t=this.popup)||void 0===t||t.forceHide()}getElementsToTriggerPopup(){return this.container}addHighlightArea(){var t=this.getElementsToTriggerPopup();if(Array.isArray(t))for(var e of t)e.classList.add("highlightArea");else t.classList.add("highlightArea")}_editOnDoubleClick(){if(this._isEditable){var{annotationEditorType:t,data:{id:e}}=this;this.container.addEventListener("dblclick",(()=>{var r;null===(r=this.linkService.eventBus)||void 0===r||r.dispatch("switchannotationeditormode",{source:this,mode:t,editId:e})}))}}}function kvt(t){var{container:{style:e},data:{rect:r,rotation:n},parent:{viewport:{rawDims:{pageWidth:i,pageHeight:a,pageX:s,pageY:o}}}}=this;null==r||r.splice(0,4,...t);var{width:l,height:h}=mvt(t);e.left="".concat(100*(t[0]-s)/i,"%"),e.top="".concat(100*(a-t[3]+o)/a,"%"),0===n?(e.width="".concat(100*l/i,"%"),e.height="".concat(100*h/a,"%")):this.setRotation(n)}var Svt=new WeakSet;class Evt extends _vt{constructor(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;super(t,{isRenderable:!0,ignoreBorder:!(null==e||!e.ignoreBorder),createQuadrilaterals:!0}),Mnt(this,Svt),this.isTooltipOnly=t.data.isTooltipOnly}render(){var{data:t,linkService:e}=this,r=document.createElement("a");r.setAttribute("data-element-id",t.id);var n=!1;return t.url?(e.addLinkAttributes(r,t.url,t.newWindow),n=!0):t.action?(this._bindNamedAction(r,t.action),n=!0):t.attachment?(bnt(Svt,this,Tvt).call(this,r,t.attachment,t.attachmentDest),n=!0):t.setOCGState?(bnt(Svt,this,Cvt).call(this,r,t.setOCGState),n=!0):t.dest?(this._bindLink(r,t.dest),n=!0):(t.actions&&(t.actions.Action||t.actions["Mouse Up"]||t.actions["Mouse Down"])&&this.enableScripting&&this.hasJSActions&&(this._bindJSAction(r,t),n=!0),t.resetForm?(this._bindResetFormAction(r,t.resetForm),n=!0):this.isTooltipOnly&&!n&&(this._bindLink(r,""),n=!0)),this.container.classList.add("linkAnnotation"),n&&this.container.append(r),this.container}_bindLink(t,e){t.href=this.linkService.getDestinationHash(e),t.onclick=()=>(e&&this.linkService.goToDestination(e),!1),(e||""===e)&&bnt(Svt,this,Mvt).call(this)}_bindNamedAction(t,e){t.href=this.linkService.getAnchorUrl(""),t.onclick=()=>(this.linkService.executeNamedAction(e),!1),bnt(Svt,this,Mvt).call(this)}_bindJSAction(t,e){var r=this;t.href=this.linkService.getAnchorUrl("");var n=new Map([["Action","onclick"],["Mouse Up","onmouseup"],["Mouse Down","onmousedown"]]),i=function(i){var a=n.get(i);if(!a)return 1;t[a]=()=>{var t;return null===(t=r.linkService.eventBus)||void 0===t||t.dispatch("dispatcheventinsandbox",{source:r,detail:{id:e.id,name:i}}),!1}};for(var a of Object.keys(e.actions))i(a);t.onclick||(t.onclick=()=>!1),bnt(Svt,this,Mvt).call(this)}_bindResetFormAction(t,e){var r=t.onclick;if(r||(t.href=this.linkService.getAnchorUrl("")),bnt(Svt,this,Mvt).call(this),!this._fieldObjects)return Wot('_bindResetFormAction - "resetForm" action not supported, ensure that the `fieldObjects` parameter is provided.'),void(r||(t.onclick=()=>!1));t.onclick=()=>{null==r||r();var{fields:t,refs:n,include:i}=e,a=[];if(0!==t.length||0!==n.length){var s=new Set(n);for(var o of t){var l=this._fieldObjects[o]||[];for(var{id:h}of l)s.add(h)}for(var c of Object.values(this._fieldObjects))for(var u of c)s.has(u.id)===i&&a.push(u)}else for(var d of Object.values(this._fieldObjects))a.push(...d);var p,f=this.annotationStorage,g=[];for(var v of a){var{id:m}=v;switch(g.push(m),v.type){case"text":var y=v.defaultValue||"";f.setValue(m,{value:y});break;case"checkbox":case"radiobutton":var b=v.defaultValue===v.exportValues;f.setValue(m,{value:b});break;case"combobox":case"listbox":var w=v.defaultValue||"";f.setValue(m,{value:w});break;default:continue}var x=document.querySelector('[data-element-id="'.concat(m,'"]'));x&&(vvt.has(x)?x.dispatchEvent(new Event("resetform")):Wot("_bindResetFormAction - element not allowed: ".concat(m)))}this.enableScripting&&(null===(p=this.linkService.eventBus)||void 0===p||p.dispatch("dispatcheventinsandbox",{source:this,detail:{id:"app",ids:g,name:"ResetForm"}}));return!1}}}function Mvt(){this.container.setAttribute("data-internal-link","")}function Tvt(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;t.href=this.linkService.getAnchorUrl(""),e.description&&(t.title=e.description),t.onclick=()=>{var t;return null===(t=this.downloadManager)||void 0===t||t.openOrDownloadData(e.content,e.filename,r),!1},bnt(Svt,this,Mvt).call(this)}function Cvt(t,e){t.href=this.linkService.getAnchorUrl(""),t.onclick=()=>(this.linkService.executeSetOCGState(e),!1),bnt(Svt,this,Mvt).call(this)}class Pvt extends _vt{constructor(t){super(t,{isRenderable:!0})}render(){this.container.classList.add("textAnnotation");var t=document.createElement("img");return t.src=this.imageResourcesPath+"annotation-"+this.data.name.toLowerCase()+".svg",t.setAttribute("data-l10n-id","pdfjs-text-annotation-type"),t.setAttribute("data-l10n-args",JSON.stringify({type:this.data.name})),!this.data.popupRef&&this.hasPopupData&&this._createPopup(),this.container.append(t),this.container}}class Ivt extends _vt{render(){return this.container}showElementAndHideCanvas(t){var e;this.data.hasOwnCanvas&&("CANVAS"===(null===(e=t.previousSibling)||void 0===e?void 0:e.nodeName)&&(t.previousSibling.hidden=!0),t.hidden=!1)}_getKeyModifier(t){return nlt.platform.isMac?t.metaKey:t.ctrlKey}_setEventListener(t,e,r,n,i){r.includes("mouse")?t.addEventListener(r,(t=>{var e;null===(e=this.linkService.eventBus)||void 0===e||e.dispatch("dispatcheventinsandbox",{source:this,detail:{id:this.data.id,name:n,value:i(t),shift:t.shiftKey,modifier:this._getKeyModifier(t)}})})):t.addEventListener(r,(t=>{var a;if("blur"===r){if(!e.focused||!t.relatedTarget)return;e.focused=!1}else if("focus"===r){if(e.focused)return;e.focused=!0}i&&(null===(a=this.linkService.eventBus)||void 0===a||a.dispatch("dispatcheventinsandbox",{source:this,detail:{id:this.data.id,name:n,value:i(t)}}))}))}_setEventListeners(t,e,r,n){for(var[i,a]of r){var s,o,l;if("Action"===a||null!==(s=this.data.actions)&&void 0!==s&&s[a])"Focus"!==a&&"Blur"!==a||e||(e={focused:!1}),this._setEventListener(t,e,i,a,n),"Focus"!==a||null!==(o=this.data.actions)&&void 0!==o&&o.Blur?"Blur"!==a||null!==(l=this.data.actions)&&void 0!==l&&l.Focus||this._setEventListener(t,e,"focus","Focus",null):this._setEventListener(t,e,"blur","Blur",null)}}_setBackgroundColor(t){var e=this.data.backgroundColor||null;t.style.backgroundColor=null===e?"transparent":alt.makeHexColor(e[0],e[1],e[2])}_setTextStyle(t){var e,{fontColor:r}=this.data.defaultAppearanceData,n=this.data.defaultAppearanceData.fontSize||9,i=t.style,a=t=>Math.round(10*t)/10;if(this.data.multiLine){var s=Math.abs(this.data.rect[3]-this.data.rect[1]-2),o=s/(Math.round(s/(Yst*n))||1);e=Math.min(n,a(o/Yst))}else{var l=Math.abs(this.data.rect[3]-this.data.rect[1]-2);e=Math.min(n,a(l/Yst))}i.fontSize="calc(".concat(e,"px * var(--scale-factor))"),i.color=alt.makeHexColor(r[0],r[1],r[2]),null!==this.data.textAlignment&&(i.textAlign=["left","center","right"][this.data.textAlignment])}_setRequired(t,e){e?t.setAttribute("required",!0):t.removeAttribute("required"),t.setAttribute("aria-required",e)}}class Rvt extends Ivt{constructor(t){super(t,{isRenderable:t.renderForms||t.data.hasOwnCanvas||!t.data.hasAppearance&&!!t.data.fieldValue})}setPropertyOnSiblings(t,e,r,n){var i=this.annotationStorage;for(var a of this._getElementsByName(t.name,t.id))a.domElement&&(a.domElement[e]=r),i.setValue(a.id,{[n]:r})}render(){var t=this.annotationStorage,e=this.data.id;this.container.classList.add("textWidgetAnnotation");var r=null;if(this.renderForms){var n,i=t.getValue(e,{value:this.data.fieldValue}),a=i.value||"",s=t.getValue(e,{charLimit:this.data.maxLen}).charLimit;s&&a.length>s&&(a=a.slice(0,s));var o=i.formattedValue||(null===(n=this.data.textContent)||void 0===n?void 0:n.join("\n"))||null;o&&this.data.comb&&(o=o.replaceAll(/\s+/g,""));var l={userValue:a,formattedValue:o,lastCommittedValue:null,commitKey:1,focused:!1};this.data.multiLine?((r=document.createElement("textarea")).textContent=null!=o?o:a,this.data.doNotScroll&&(r.style.overflowY="hidden")):((r=document.createElement("input")).type="text",r.setAttribute("value",null!=o?o:a),this.data.doNotScroll&&(r.style.overflowX="hidden")),this.data.hasOwnCanvas&&(r.hidden=!0),vvt.add(r),r.setAttribute("data-element-id",e),r.disabled=this.data.readOnly,r.name=this.data.fieldName,r.tabIndex=gvt,this._setRequired(r,this.data.required),s&&(r.maxLength=s),r.addEventListener("input",(n=>{t.setValue(e,{value:n.target.value}),this.setPropertyOnSiblings(r,"value",n.target.value,"value"),l.formattedValue=null})),r.addEventListener("resetform",(t=>{var e,n=null!==(e=this.data.defaultFieldValue)&&void 0!==e?e:"";r.value=l.userValue=n,l.formattedValue=null}));var h=t=>{var{formattedValue:e}=l;null!=e&&(t.target.value=e),t.target.scrollLeft=0};if(this.enableScripting&&this.hasJSActions){var c;r.addEventListener("focus",(t=>{var e;if(!l.focused){var{target:r}=t;l.userValue&&(r.value=l.userValue),l.lastCommittedValue=r.value,l.commitKey=1,null!==(e=this.data.actions)&&void 0!==e&&e.Focus||(l.focused=!0)}})),r.addEventListener("updatefromsandbox",(r=>{this.showElementAndHideCanvas(r.target);var n={value(r){var n;l.userValue=null!==(n=r.detail.value)&&void 0!==n?n:"",t.setValue(e,{value:l.userValue.toString()}),r.target.value=l.userValue},formattedValue(r){var{formattedValue:n}=r.detail;l.formattedValue=n,null!=n&&r.target!==document.activeElement&&(r.target.value=n),t.setValue(e,{formattedValue:n})},selRange(t){t.target.setSelectionRange(...t.detail.selRange)},charLimit:r=>{var n,{charLimit:i}=r.detail,{target:a}=r;if(0!==i){a.setAttribute("maxLength",i);var s=l.userValue;!s||s.length<=i||(s=s.slice(0,i),a.value=l.userValue=s,t.setValue(e,{value:s}),null===(n=this.linkService.eventBus)||void 0===n||n.dispatch("dispatcheventinsandbox",{source:this,detail:{id:e,name:"Keystroke",value:s,willCommit:!0,commitKey:1,selStart:a.selectionStart,selEnd:a.selectionEnd}}))}else a.removeAttribute("maxLength")}};this._dispatchEventFromSandbox(n,r)})),r.addEventListener("keydown",(t=>{var r;l.commitKey=1;var n=-1;if("Escape"===t.key?n=0:"Enter"!==t.key||this.data.multiLine?"Tab"===t.key&&(l.commitKey=3):n=2,-1!==n){var{value:i}=t.target;l.lastCommittedValue!==i&&(l.lastCommittedValue=i,l.userValue=i,null===(r=this.linkService.eventBus)||void 0===r||r.dispatch("dispatcheventinsandbox",{source:this,detail:{id:e,name:"Keystroke",value:i,willCommit:!0,commitKey:n,selStart:t.target.selectionStart,selEnd:t.target.selectionEnd}}))}}));var u=h;h=null,r.addEventListener("blur",(t=>{var r;if(l.focused&&t.relatedTarget){null!==(r=this.data.actions)&&void 0!==r&&r.Blur||(l.focused=!1);var n,{value:i}=t.target;if(l.userValue=i,l.lastCommittedValue!==i)null===(n=this.linkService.eventBus)||void 0===n||n.dispatch("dispatcheventinsandbox",{source:this,detail:{id:e,name:"Keystroke",value:i,willCommit:!0,commitKey:l.commitKey,selStart:t.target.selectionStart,selEnd:t.target.selectionEnd}});u(t)}})),null!==(c=this.data.actions)&&void 0!==c&&c.Keystroke&&r.addEventListener("beforeinput",(t=>{var r;l.lastCommittedValue=null;var{data:n,target:i}=t,{value:a,selectionStart:s,selectionEnd:o}=i,h=s,c=o;switch(t.inputType){case"deleteWordBackward":var u=a.substring(0,s).match(/\w*[^\w]*$/);u&&(h-=u[0].length);break;case"deleteWordForward":var d=a.substring(s).match(/^[^\w]*\w*/);d&&(c+=d[0].length);break;case"deleteContentBackward":s===o&&(h-=1);break;case"deleteContentForward":s===o&&(c+=1)}t.preventDefault(),null===(r=this.linkService.eventBus)||void 0===r||r.dispatch("dispatcheventinsandbox",{source:this,detail:{id:e,name:"Keystroke",value:a,change:n||"",willCommit:!1,selStart:h,selEnd:c}})})),this._setEventListeners(r,l,[["focus","Focus"],["blur","Blur"],["mousedown","Mouse Down"],["mouseenter","Mouse Enter"],["mouseleave","Mouse Exit"],["mouseup","Mouse Up"]],(t=>t.target.value))}if(h&&r.addEventListener("blur",h),this.data.comb){var d=(this.data.rect[2]-this.data.rect[0])/s;r.classList.add("comb"),r.style.letterSpacing="calc(".concat(d,"px * var(--scale-factor) - 1ch)")}}else(r=document.createElement("div")).textContent=this.data.fieldValue,r.style.verticalAlign="middle",r.style.display="table-cell",this.data.hasOwnCanvas&&(r.hidden=!0);return this._setTextStyle(r),this._setBackgroundColor(r),this._setDefaultPropertiesFromJS(r),this.container.append(r),this.container}}class Ovt extends Ivt{constructor(t){super(t,{isRenderable:!!t.data.hasOwnCanvas})}}class Lvt extends Ivt{constructor(t){super(t,{isRenderable:t.renderForms})}render(){var t=this.annotationStorage,e=this.data,r=e.id,n=t.getValue(r,{value:e.exportValue===e.fieldValue}).value;"string"==typeof n&&(n="Off"!==n,t.setValue(r,{value:n})),this.container.classList.add("buttonWidgetAnnotation","checkBox");var i=document.createElement("input");return vvt.add(i),i.setAttribute("data-element-id",r),i.disabled=e.readOnly,this._setRequired(i,this.data.required),i.type="checkbox",i.name=e.fieldName,n&&i.setAttribute("checked",!0),i.setAttribute("exportValue",e.exportValue),i.tabIndex=gvt,i.addEventListener("change",(n=>{var{name:i,checked:a}=n.target;for(var s of this._getElementsByName(i,r)){var o=a&&s.exportValue===e.exportValue;s.domElement&&(s.domElement.checked=o),t.setValue(s.id,{value:o})}t.setValue(r,{value:a})})),i.addEventListener("resetform",(t=>{var r=e.defaultFieldValue||"Off";t.target.checked=r===e.exportValue})),this.enableScripting&&this.hasJSActions&&(i.addEventListener("updatefromsandbox",(e=>{var n={value(e){e.target.checked="Off"!==e.detail.value,t.setValue(r,{value:e.target.checked})}};this._dispatchEventFromSandbox(n,e)})),this._setEventListeners(i,null,[["change","Validate"],["change","Action"],["focus","Focus"],["blur","Blur"],["mousedown","Mouse Down"],["mouseenter","Mouse Enter"],["mouseleave","Mouse Exit"],["mouseup","Mouse Up"]],(t=>t.target.checked))),this._setBackgroundColor(i),this._setDefaultPropertiesFromJS(i),this.container.append(i),this.container}}class Dvt extends Ivt{constructor(t){super(t,{isRenderable:t.renderForms})}render(){this.container.classList.add("buttonWidgetAnnotation","radioButton");var t=this.annotationStorage,e=this.data,r=e.id,n=t.getValue(r,{value:e.fieldValue===e.buttonValue}).value;if("string"==typeof n&&(n=n!==e.buttonValue,t.setValue(r,{value:n})),n)for(var i of this._getElementsByName(e.fieldName,r))t.setValue(i.id,{value:!1});var a=document.createElement("input");if(vvt.add(a),a.setAttribute("data-element-id",r),a.disabled=e.readOnly,this._setRequired(a,this.data.required),a.type="radio",a.name=e.fieldName,n&&a.setAttribute("checked",!0),a.tabIndex=gvt,a.addEventListener("change",(e=>{var{name:n,checked:i}=e.target;for(var a of this._getElementsByName(n,r))t.setValue(a.id,{value:!1});t.setValue(r,{value:i})})),a.addEventListener("resetform",(t=>{var r=e.defaultFieldValue;t.target.checked=null!=r&&r===e.buttonValue})),this.enableScripting&&this.hasJSActions){var s=e.buttonValue;a.addEventListener("updatefromsandbox",(e=>{var n={value:e=>{var n=s===e.detail.value;for(var i of this._getElementsByName(e.target.name)){var a=n&&i.id===r;i.domElement&&(i.domElement.checked=a),t.setValue(i.id,{value:a})}}};this._dispatchEventFromSandbox(n,e)})),this._setEventListeners(a,null,[["change","Validate"],["change","Action"],["focus","Focus"],["blur","Blur"],["mousedown","Mouse Down"],["mouseenter","Mouse Enter"],["mouseleave","Mouse Exit"],["mouseup","Mouse Up"]],(t=>t.target.checked))}return this._setBackgroundColor(a),this._setDefaultPropertiesFromJS(a),this.container.append(a),this.container}}class Fvt extends Evt{constructor(t){super(t,{ignoreBorder:t.data.hasAppearance})}render(){var t=super.render();t.classList.add("buttonWidgetAnnotation","pushButton");var e=t.lastChild;return this.enableScripting&&this.hasJSActions&&e&&(this._setDefaultPropertiesFromJS(e),e.addEventListener("updatefromsandbox",(t=>{this._dispatchEventFromSandbox({},t)}))),t}}class Nvt extends Ivt{constructor(t){super(t,{isRenderable:t.renderForms})}render(){this.container.classList.add("choiceWidgetAnnotation");var t=this.annotationStorage,e=this.data.id,r=t.getValue(e,{value:this.data.fieldValue}),n=document.createElement("select");vvt.add(n),n.setAttribute("data-element-id",e),n.disabled=this.data.readOnly,this._setRequired(n,this.data.required),n.name=this.data.fieldName,n.tabIndex=gvt;var i=this.data.combo&&this.data.options.length>0;for(var a of(this.data.combo||(n.size=this.data.options.length,this.data.multiSelect&&(n.multiple=!0)),n.addEventListener("resetform",(t=>{var e=this.data.defaultFieldValue;for(var r of n.options)r.selected=r.value===e})),this.data.options)){var s=document.createElement("option");s.textContent=a.displayValue,s.value=a.exportValue,r.value.includes(a.exportValue)&&(s.setAttribute("selected",!0),i=!1),n.append(s)}var o=null;if(i){var l=document.createElement("option");l.value=" ",l.setAttribute("hidden",!0),l.setAttribute("selected",!0),n.prepend(l),o=()=>{l.remove(),n.removeEventListener("input",o),o=null},n.addEventListener("input",o)}var h=t=>{var e=t?"value":"textContent",{options:r,multiple:i}=n;return i?Array.prototype.filter.call(r,(t=>t.selected)).map((t=>t[e])):-1===r.selectedIndex?null:r[r.selectedIndex][e]},c=h(!1),u=t=>{var e=t.target.options;return Array.prototype.map.call(e,(t=>({displayValue:t.textContent,exportValue:t.value})))};return this.enableScripting&&this.hasJSActions?(n.addEventListener("updatefromsandbox",(r=>{var i={value(r){var i;null===(i=o)||void 0===i||i();var a=r.detail.value,s=new Set(Array.isArray(a)?a:[a]);for(var l of n.options)l.selected=s.has(l.value);t.setValue(e,{value:h(!0)}),c=h(!1)},multipleSelection(t){n.multiple=!0},remove(r){var i=n.options,a=r.detail.remove;if(i[a].selected=!1,n.remove(a),i.length>0){var s=Array.prototype.findIndex.call(i,(t=>t.selected));-1===s&&(i[0].selected=!0)}t.setValue(e,{value:h(!0),items:u(r)}),c=h(!1)},clear(r){for(;0!==n.length;)n.remove(0);t.setValue(e,{value:null,items:[]}),c=h(!1)},insert(r){var{index:i,displayValue:a,exportValue:s}=r.detail.insert,o=n.children[i],l=document.createElement("option");l.textContent=a,l.value=s,o?o.before(l):n.append(l),t.setValue(e,{value:h(!0),items:u(r)}),c=h(!1)},items(r){for(var{items:i}=r.detail;0!==n.length;)n.remove(0);for(var a of i){var{displayValue:s,exportValue:o}=a,l=document.createElement("option");l.textContent=s,l.value=o,n.append(l)}n.options.length>0&&(n.options[0].selected=!0),t.setValue(e,{value:h(!0),items:u(r)}),c=h(!1)},indices(r){var n=new Set(r.detail.indices);for(var i of r.target.options)i.selected=n.has(i.index);t.setValue(e,{value:h(!0)}),c=h(!1)},editable(t){t.target.disabled=!t.detail.editable}};this._dispatchEventFromSandbox(i,r)})),n.addEventListener("input",(r=>{var n,i=h(!0),a=h(!1);t.setValue(e,{value:i}),r.preventDefault(),null===(n=this.linkService.eventBus)||void 0===n||n.dispatch("dispatcheventinsandbox",{source:this,detail:{id:e,name:"Keystroke",value:c,change:a,changeEx:i,willCommit:!1,commitKey:1,keyDown:!1}})})),this._setEventListeners(n,null,[["focus","Focus"],["blur","Blur"],["mousedown","Mouse Down"],["mouseenter","Mouse Enter"],["mouseleave","Mouse Exit"],["mouseup","Mouse Up"],["input","Action"],["input","Validate"]],(t=>t.target.value))):n.addEventListener("input",(function(r){t.setValue(e,{value:h(!0)})})),this.data.combo&&this._setTextStyle(n),this._setBackgroundColor(n),this._setDefaultPropertiesFromJS(n),this.container.append(n),this.container}}class jvt extends _vt{constructor(t){var{data:e,elements:r}=t;super(t,{isRenderable:_vt._hasPopupData(e)}),this.elements=r,this.popup=null}render(){this.container.classList.add("popupAnnotation");var t=this.popup=new amt({container:this.container,color:this.data.color,titleObj:this.data.titleObj,modificationDate:this.data.modificationDate,contentsObj:this.data.contentsObj,richText:this.data.richText,rect:this.data.rect,parentRect:this.data.parentRect||null,parent:this.parent,elements:this.elements,open:this.data.open}),e=[];for(var r of this.elements)r.popup=t,r.container.ariaHasPopup="dialog",e.push(r.data.id),r.addHighlightArea();return this.container.setAttribute("aria-controls",e.map((t=>"".concat(ult).concat(t))).join(",")),this.container}}var Bvt=new WeakMap,zvt=new WeakMap,Wvt=new WeakMap,Uvt=new WeakMap,Hvt=new WeakMap,Gvt=new WeakMap,Yvt=new WeakMap,Vvt=new WeakMap,qvt=new WeakMap,Xvt=new WeakMap,$vt=new WeakMap,Kvt=new WeakMap,Qvt=new WeakMap,Jvt=new WeakMap,Zvt=new WeakMap,tmt=new WeakMap,emt=new WeakMap,rmt=new WeakMap,nmt=new WeakMap,imt=new WeakSet;class amt{constructor(t){var{container:e,color:r,elements:n,titleObj:i,modificationDate:a,contentsObj:s,richText:o,parent:l,rect:h,parentRect:c,open:u}=t;for(var d of(Mnt(this,imt),knt(this,Bvt,bnt(imt,this,cmt).bind(this)),knt(this,zvt,bnt(imt,this,fmt).bind(this)),knt(this,Wvt,bnt(imt,this,pmt).bind(this)),knt(this,Uvt,bnt(imt,this,dmt).bind(this)),knt(this,Hvt,null),knt(this,Gvt,null),knt(this,Yvt,null),knt(this,Vvt,null),knt(this,qvt,null),knt(this,Xvt,null),knt(this,$vt,null),knt(this,Kvt,!1),knt(this,Qvt,null),knt(this,Jvt,null),knt(this,Zvt,null),knt(this,tmt,null),knt(this,emt,null),knt(this,rmt,null),knt(this,nmt,!1),Snt(Gvt,this,e),Snt(emt,this,i),Snt(Yvt,this,s),Snt(tmt,this,o),Snt(Xvt,this,l),Snt(Hvt,this,r),Snt(Zvt,this,h),Snt($vt,this,c),Snt(qvt,this,n),Snt(Vvt,this,Elt.toDateObject(a)),this.trigger=n.flatMap((t=>t.getElementsToTriggerPopup())),this.trigger))d.addEventListener("click",_nt(Uvt,this)),d.addEventListener("mouseenter",_nt(Wvt,this)),d.addEventListener("mouseleave",_nt(zvt,this)),d.classList.add("popupTriggerArea");for(var p of n){var f;null===(f=p.container)||void 0===f||f.addEventListener("keydown",_nt(Bvt,this))}_nt(Gvt,this).hidden=!0,u&&bnt(imt,this,dmt).call(this)}render(){if(!_nt(Qvt,this)){var t=Snt(Qvt,this,document.createElement("div"));if(t.className="popup",_nt(Hvt,this)){var e=t.style.outlineColor=alt.makeHexColor(..._nt(Hvt,this));if(CSS.supports("background-color","color-mix(in srgb, red 30%, white)"))t.style.backgroundColor="color-mix(in srgb, ".concat(e," 30%, white)");else{t.style.backgroundColor=alt.makeHexColor(..._nt(Hvt,this).map((t=>Math.floor(.7*(255-t)+t))))}}var r=document.createElement("span");r.className="header";var n=document.createElement("h1");if(r.append(n),({dir:n.dir,str:n.textContent}=_nt(emt,this)),t.append(r),_nt(Vvt,this)){var i=document.createElement("span");i.classList.add("popupDate"),i.setAttribute("data-l10n-id","pdfjs-annotation-date-time-string"),i.setAttribute("data-l10n-args",JSON.stringify({dateObj:_nt(Vvt,this).valueOf()})),r.append(i)}var a=Ent(imt,this,smt);if(a)fvt.render({xfaHtml:a,intent:"richText",div:t}),t.lastChild.classList.add("richText","popupContent");else{var s=this._formatContents(_nt(Yvt,this));t.append(s)}_nt(Gvt,this).append(t)}}_formatContents(t){var{str:e,dir:r}=t,n=document.createElement("p");n.classList.add("popupContent"),n.dir=r;for(var i=e.split(/(?:\r\n?|\n)/),a=0,s=i.length;a<s;++a){var o=i[a];n.append(document.createTextNode(o)),a<s-1&&n.append(document.createElement("br"))}return n}updateEdited(t){var e,{rect:r,popupContent:n}=t;_nt(rmt,this)||Snt(rmt,this,{contentsObj:_nt(Yvt,this),richText:_nt(tmt,this)}),r&&Snt(Jvt,this,null),n&&(Snt(tmt,this,bnt(imt,this,hmt).call(this,n)),Snt(Yvt,this,null)),null===(e=_nt(Qvt,this))||void 0===e||e.remove(),Snt(Qvt,this,null)}resetEdited(){var t;_nt(rmt,this)&&(({contentsObj:Int(Snt,[Yvt,this])._,richText:Int(Snt,[tmt,this])._}=_nt(rmt,this)),Snt(rmt,this,null),null===(t=_nt(Qvt,this))||void 0===t||t.remove(),Snt(Qvt,this,null),Snt(Jvt,this,null))}forceHide(){Snt(nmt,this,this.isVisible),_nt(nmt,this)&&(_nt(Gvt,this).hidden=!0)}maybeShow(){_nt(nmt,this)&&(_nt(Qvt,this)||bnt(imt,this,pmt).call(this),Snt(nmt,this,!1),_nt(Gvt,this).hidden=!1)}get isVisible(){return!1===_nt(Gvt,this).hidden}}function smt(t){var e=_nt(tmt,t),r=_nt(Yvt,t);return null==e||!e.str||null!=r&&r.str&&r.str!==e.str?null:_nt(tmt,t).html||null}function omt(t){var e;return(null===(e=Ent(imt,t,smt))||void 0===e||null===(e=e.attributes)||void 0===e||null===(e=e.style)||void 0===e?void 0:e.fontSize)||0}function lmt(t){var e;return(null===(e=Ent(imt,t,smt))||void 0===e||null===(e=e.attributes)||void 0===e||null===(e=e.style)||void 0===e?void 0:e.color)||null}function hmt(t){var e=[],r={str:t,html:{name:"div",attributes:{dir:"auto"},children:[{name:"p",children:e}]}},n={style:{color:Ent(imt,this,lmt),fontSize:Ent(imt,this,omt)?"calc(".concat(Ent(imt,this,omt),"px * var(--scale-factor))"):""}};for(var i of t.split("\n"))e.push({name:"span",value:i,attributes:n});return r}function cmt(t){t.altKey||t.shiftKey||t.ctrlKey||t.metaKey||("Enter"===t.key||"Escape"===t.key&&_nt(Kvt,this))&&bnt(imt,this,dmt).call(this)}function umt(){if(null===_nt(Jvt,this)){var{page:{view:t},viewport:{rawDims:{pageWidth:e,pageHeight:r,pageX:n,pageY:i}}}=_nt(Xvt,this),a=!!_nt($vt,this),s=_nt(a?$vt:Zvt,this);for(var o of _nt(qvt,this))if(!s||null!==alt.intersect(o.data.rect,s)){s=o.data.rect,a=!0;break}var l=alt.normalizeRect([s[0],t[3]-s[1]+t[1],s[2],t[3]-s[3]+t[1]]),h=a?s[2]-s[0]+5:0,c=l[0]+h,u=l[1];Snt(Jvt,this,[100*(c-n)/e,100*(u-i)/r]);var{style:d}=_nt(Gvt,this);d.left="".concat(_nt(Jvt,this)[0],"%"),d.top="".concat(_nt(Jvt,this)[1],"%")}}function dmt(){Snt(Kvt,this,!_nt(Kvt,this)),_nt(Kvt,this)?(bnt(imt,this,pmt).call(this),_nt(Gvt,this).addEventListener("click",_nt(Uvt,this)),_nt(Gvt,this).addEventListener("keydown",_nt(Bvt,this))):(bnt(imt,this,fmt).call(this),_nt(Gvt,this).removeEventListener("click",_nt(Uvt,this)),_nt(Gvt,this).removeEventListener("keydown",_nt(Bvt,this)))}function pmt(){_nt(Qvt,this)||this.render(),this.isVisible?_nt(Kvt,this)&&_nt(Gvt,this).classList.add("focused"):(bnt(imt,this,umt).call(this),_nt(Gvt,this).hidden=!1,_nt(Gvt,this).style.zIndex=parseInt(_nt(Gvt,this).style.zIndex)+1e3)}function fmt(){_nt(Gvt,this).classList.remove("focused"),!_nt(Kvt,this)&&this.isVisible&&(_nt(Gvt,this).hidden=!0,_nt(Gvt,this).style.zIndex=parseInt(_nt(Gvt,this).style.zIndex)-1e3)}class gmt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0}),this.textContent=t.data.textContent,this.textPosition=t.data.textPosition,this.annotationEditorType=eot.FREETEXT}render(){if(this.container.classList.add("freeTextAnnotation"),this.textContent){var t=document.createElement("div");for(var e of(t.classList.add("annotationTextContent"),t.setAttribute("role","comment"),this.textContent)){var r=document.createElement("span");r.textContent=e,t.append(r)}this.container.append(t)}return!this.data.popupRef&&this.hasPopupData&&this._createPopup(),this._editOnDoubleClick(),this.container}}var vmt=new WeakMap;class mmt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0}),knt(this,vmt,null)}render(){this.container.classList.add("lineAnnotation");var t=this.data,{width:e,height:r}=mvt(t.rect),n=this.svgFactory.create(e,r,!0),i=Snt(vmt,this,this.svgFactory.createElement("svg:line"));return i.setAttribute("x1",t.rect[2]-t.lineCoordinates[0]),i.setAttribute("y1",t.rect[3]-t.lineCoordinates[1]),i.setAttribute("x2",t.rect[2]-t.lineCoordinates[2]),i.setAttribute("y2",t.rect[3]-t.lineCoordinates[3]),i.setAttribute("stroke-width",t.borderStyle.width||1),i.setAttribute("stroke","transparent"),i.setAttribute("fill","transparent"),n.append(i),this.container.append(n),!t.popupRef&&this.hasPopupData&&this._createPopup(),this.container}getElementsToTriggerPopup(){return _nt(vmt,this)}addHighlightArea(){this.container.classList.add("highlightArea")}}var ymt=new WeakMap;class bmt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0}),knt(this,ymt,null)}render(){this.container.classList.add("squareAnnotation");var t=this.data,{width:e,height:r}=mvt(t.rect),n=this.svgFactory.create(e,r,!0),i=t.borderStyle.width,a=Snt(ymt,this,this.svgFactory.createElement("svg:rect"));return a.setAttribute("x",i/2),a.setAttribute("y",i/2),a.setAttribute("width",e-i),a.setAttribute("height",r-i),a.setAttribute("stroke-width",i||1),a.setAttribute("stroke","transparent"),a.setAttribute("fill","transparent"),n.append(a),this.container.append(n),!t.popupRef&&this.hasPopupData&&this._createPopup(),this.container}getElementsToTriggerPopup(){return _nt(ymt,this)}addHighlightArea(){this.container.classList.add("highlightArea")}}var wmt=new WeakMap;class xmt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0}),knt(this,wmt,null)}render(){this.container.classList.add("circleAnnotation");var t=this.data,{width:e,height:r}=mvt(t.rect),n=this.svgFactory.create(e,r,!0),i=t.borderStyle.width,a=Snt(wmt,this,this.svgFactory.createElement("svg:ellipse"));return a.setAttribute("cx",e/2),a.setAttribute("cy",r/2),a.setAttribute("rx",e/2-i/2),a.setAttribute("ry",r/2-i/2),a.setAttribute("stroke-width",i||1),a.setAttribute("stroke","transparent"),a.setAttribute("fill","transparent"),n.append(a),this.container.append(n),!t.popupRef&&this.hasPopupData&&this._createPopup(),this.container}getElementsToTriggerPopup(){return _nt(wmt,this)}addHighlightArea(){this.container.classList.add("highlightArea")}}var Amt=new WeakMap;class _mt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0}),knt(this,Amt,null),this.containerClassName="polylineAnnotation",this.svgElementName="svg:polyline"}render(){this.container.classList.add(this.containerClassName);var{data:{rect:t,vertices:e,borderStyle:r,popupRef:n}}=this;if(!e)return this.container;for(var{width:i,height:a}=mvt(t),s=this.svgFactory.create(i,a,!0),o=[],l=0,h=e.length;l<h;l+=2){var c=e[l]-t[0],u=t[3]-e[l+1];o.push("".concat(c,",").concat(u))}o=o.join(" ");var d=Snt(Amt,this,this.svgFactory.createElement(this.svgElementName));return d.setAttribute("points",o),d.setAttribute("stroke-width",r.width||1),d.setAttribute("stroke","transparent"),d.setAttribute("fill","transparent"),s.append(d),this.container.append(s),!n&&this.hasPopupData&&this._createPopup(),this.container}getElementsToTriggerPopup(){return _nt(Amt,this)}addHighlightArea(){this.container.classList.add("highlightArea")}}class kmt extends _mt{constructor(t){super(t),this.containerClassName="polygonAnnotation",this.svgElementName="svg:polygon"}}class Smt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0})}render(){return this.container.classList.add("caretAnnotation"),!this.data.popupRef&&this.hasPopupData&&this._createPopup(),this.container}}var Emt=new WeakMap,Mmt=new WeakMap,Tmt=new WeakSet;class Cmt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0}),Mnt(this,Tmt),knt(this,Emt,null),knt(this,Mmt,[]),this.containerClassName="inkAnnotation",this.svgElementName="svg:polyline",this.annotationEditorType="InkHighlight"===this.data.it?eot.HIGHLIGHT:eot.INK}render(){this.container.classList.add(this.containerClassName);var{data:{rect:t,rotation:e,inkLists:r,borderStyle:n,popupRef:i}}=this,{transform:a,width:s,height:o}=bnt(Tmt,this,Pmt).call(this,e,t),l=this.svgFactory.create(s,o,!0),h=Snt(Emt,this,this.svgFactory.createElement("svg:g"));l.append(h),h.setAttribute("stroke-width",n.width||1),h.setAttribute("stroke-linecap","round"),h.setAttribute("stroke-linejoin","round"),h.setAttribute("stroke-miterlimit",10),h.setAttribute("stroke","transparent"),h.setAttribute("fill","transparent"),h.setAttribute("transform",a);for(var c=0,u=r.length;c<u;c++){var d=this.svgFactory.createElement(this.svgElementName);_nt(Mmt,this).push(d),d.setAttribute("points",r[c].join(",")),h.append(d)}return!i&&this.hasPopupData&&this._createPopup(),this.container.append(l),this._editOnDoubleClick(),this.container}updateEdited(t){super.updateEdited(t);var{thickness:e,points:r,rect:n}=t,i=_nt(Emt,this);if(e>=0&&i.setAttribute("stroke-width",e||1),r)for(var a=0,s=_nt(Mmt,this).length;a<s;a++)_nt(Mmt,this)[a].setAttribute("points",r[a].join(","));if(n){var{transform:o,width:l,height:h}=bnt(Tmt,this,Pmt).call(this,this.data.rotation,n);i.parentElement.setAttribute("viewBox","0 0 ".concat(l," ").concat(h)),i.setAttribute("transform",o)}}getElementsToTriggerPopup(){return _nt(Mmt,this)}addHighlightArea(){this.container.classList.add("highlightArea")}}function Pmt(t,e){switch(t){case 90:return{transform:"rotate(90) translate(".concat(-e[0],",").concat(e[1],") scale(1,-1)"),width:e[3]-e[1],height:e[2]-e[0]};case 180:return{transform:"rotate(180) translate(".concat(-e[2],",").concat(e[1],") scale(1,-1)"),width:e[2]-e[0],height:e[3]-e[1]};case 270:return{transform:"rotate(270) translate(".concat(-e[2],",").concat(e[3],") scale(1,-1)"),width:e[3]-e[1],height:e[2]-e[0]};default:return{transform:"translate(".concat(-e[0],",").concat(e[3],") scale(1,-1)"),width:e[2]-e[0],height:e[3]-e[1]}}}class Imt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0,createQuadrilaterals:!0}),this.annotationEditorType=eot.HIGHLIGHT}render(){return!this.data.popupRef&&this.hasPopupData&&this._createPopup(),this.container.classList.add("highlightAnnotation"),this._editOnDoubleClick(),this.container}}class Rmt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0,createQuadrilaterals:!0})}render(){return!this.data.popupRef&&this.hasPopupData&&this._createPopup(),this.container.classList.add("underlineAnnotation"),this.container}}class Omt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0,createQuadrilaterals:!0})}render(){return!this.data.popupRef&&this.hasPopupData&&this._createPopup(),this.container.classList.add("squigglyAnnotation"),this.container}}class Lmt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0,createQuadrilaterals:!0})}render(){return!this.data.popupRef&&this.hasPopupData&&this._createPopup(),this.container.classList.add("strikeoutAnnotation"),this.container}}class Dmt extends _vt{constructor(t){super(t,{isRenderable:!0,ignoreBorder:!0}),this.annotationEditorType=eot.STAMP}render(){return this.container.classList.add("stampAnnotation"),this.container.setAttribute("role","img"),!this.data.popupRef&&this.hasPopupData&&this._createPopup(),this._editOnDoubleClick(),this.container}}var Fmt=new WeakMap,Nmt=new WeakSet;class jmt extends _vt{constructor(t){var e;super(t,{isRenderable:!0}),Mnt(this,Nmt),knt(this,Fmt,null);var{file:r}=this.data;this.filename=r.filename,this.content=r.content,null===(e=this.linkService.eventBus)||void 0===e||e.dispatch("fileattachmentannotation",Pnt({source:this},r))}render(){this.container.classList.add("fileAttachmentAnnotation");var t,{container:e,data:r}=this;r.hasAppearance||0===r.fillAlpha?t=document.createElement("div"):((t=document.createElement("img")).src="".concat(this.imageResourcesPath,"annotation-").concat(/paperclip/i.test(r.name)?"paperclip":"pushpin",".svg"),r.fillAlpha&&r.fillAlpha<1&&(t.style="filter: opacity(".concat(Math.round(100*r.fillAlpha),"%);"))),t.addEventListener("dblclick",bnt(Nmt,this,Bmt).bind(this)),Snt(Fmt,this,t);var{isMac:n}=nlt.platform;return e.addEventListener("keydown",(t=>{"Enter"===t.key&&(n?t.metaKey:t.ctrlKey)&&bnt(Nmt,this,Bmt).call(this)})),!r.popupRef&&this.hasPopupData?this._createPopup():t.classList.add("popupTriggerArea"),e.append(t),e}getElementsToTriggerPopup(){return _nt(Fmt,this)}addHighlightArea(){this.container.classList.add("highlightArea")}}function Bmt(){var t;null===(t=this.downloadManager)||void 0===t||t.openOrDownloadData(this.content,this.filename)}var zmt=new WeakMap,Wmt=new WeakMap,Umt=new WeakMap,Hmt=new WeakMap,Gmt=new WeakSet;class Ymt{constructor(t){var{div:e,accessibilityManager:r,annotationCanvasMap:n,annotationEditorUIManager:i,page:a,viewport:s,structTreeLayer:o}=t;Mnt(this,Gmt),knt(this,zmt,null),knt(this,Wmt,null),knt(this,Umt,new Map),knt(this,Hmt,null),this.div=e,Snt(zmt,this,r),Snt(Wmt,this,n),Snt(Hmt,this,o||null),this.page=a,this.viewport=s,this.zIndex=0,this._annotationEditorUIManager=i}hasEditableAnnotations(){return _nt(Umt,this).size>0}render(t){var e=this;return xnt((function*(){var{annotations:r}=t,n=e.div;Rlt(n,e.viewport);var i=new Map,a={data:null,layer:n,linkService:t.linkService,downloadManager:t.downloadManager,imageResourcesPath:t.imageResourcesPath||"",renderForms:!1!==t.renderForms,svgFactory:new pvt,annotationStorage:t.annotationStorage||new fdt,enableScripting:!0===t.enableScripting,hasJSActions:t.hasJSActions,fieldObjects:t.fieldObjects,parent:e,elements:null};for(var s of r)if(!s.noHTML){var o=s.annotationType===Eot;if(o){var l=i.get(s.id);if(!l)continue;a.elements=l}else{var{width:h,height:c}=mvt(s.rect);if(h<=0||c<=0)continue}a.data=s;var u=yvt.create(a);if(u.isRenderable){if(!o&&s.popupRef){var d=i.get(s.popupRef);d?d.push(u):i.set(s.popupRef,[u])}var p,f=u.render();if(s.hidden&&(f.style.visibility="hidden"),yield bnt(Gmt,e,Vmt).call(e,f,s.id),u._isEditable)_nt(Umt,e).set(u.data.id,u),null===(p=e._annotationEditorUIManager)||void 0===p||p.renderAnnotationElement(u)}}bnt(Gmt,e,Xmt).call(e)}))()}update(t){var{viewport:e}=t,r=this.div;this.viewport=e,Rlt(r,{rotation:e.rotation}),bnt(Gmt,this,Xmt).call(this),r.hidden=!1}getEditableAnnotations(){return Array.from(_nt(Umt,this).values())}getEditableAnnotation(t){return _nt(Umt,this).get(t)}}function Vmt(t,e){return qmt.apply(this,arguments)}function qmt(){return qmt=xnt((function*(t,e){var r,n,i=t.firstChild||t,a=i.id="".concat(ult).concat(e),s=yield null===(r=_nt(Hmt,this))||void 0===r?void 0:r.getAriaAttributes(a);if(s)for(var[o,l]of s)i.setAttribute(o,l);this.div.append(t),null===(n=_nt(zmt,this))||void 0===n||n.moveElementInDOM(this.div,t,i,!1)})),qmt.apply(this,arguments)}function Xmt(){if(_nt(Wmt,this)){var t=this.div;for(var[e,r]of _nt(Wmt,this)){var n=t.querySelector('[data-annotation-id="'.concat(e,'"]'));if(n){r.className="annotationContent";var{firstChild:i}=n;i?"CANVAS"===i.nodeName?i.replaceWith(r):i.classList.contains("annotationContent")?i.after(r):i.before(r):n.append(r)}}_nt(Wmt,this).clear()}}var $mt=/\r\n?|\n/g,Kmt=new WeakMap,Qmt=new WeakMap,Jmt=new WeakMap,Zmt=new WeakMap,tyt=new WeakMap,eyt=new WeakSet;class ryt extends jut{static get _keyboardManager(){var t=ryt.prototype,e=t=>t.isEmpty(),r=cct.TRANSLATE_SMALL,n=cct.TRANSLATE_BIG;return Yot(this,"_keyboardManager",new yht([[["ctrl+s","mac+meta+s","ctrl+p","mac+meta+p"],t.commitOrRemove,{bubbles:!0}],[["ctrl+Enter","mac+meta+Enter","Escape","mac+Escape"],t.commitOrRemove],[["ArrowLeft","mac+ArrowLeft"],t._translateEmpty,{args:[-r,0],checker:e}],[["ctrl+ArrowLeft","mac+shift+ArrowLeft"],t._translateEmpty,{args:[-n,0],checker:e}],[["ArrowRight","mac+ArrowRight"],t._translateEmpty,{args:[r,0],checker:e}],[["ctrl+ArrowRight","mac+shift+ArrowRight"],t._translateEmpty,{args:[n,0],checker:e}],[["ArrowUp","mac+ArrowUp"],t._translateEmpty,{args:[0,-r],checker:e}],[["ctrl+ArrowUp","mac+shift+ArrowUp"],t._translateEmpty,{args:[0,-n],checker:e}],[["ArrowDown","mac+ArrowDown"],t._translateEmpty,{args:[0,r],checker:e}],[["ctrl+ArrowDown","mac+shift+ArrowDown"],t._translateEmpty,{args:[0,n],checker:e}]]))}constructor(t){super(Pnt(Pnt({},t),{},{name:"freeTextEditor"})),Mnt(this,eyt),knt(this,Kmt,void 0),knt(this,Qmt,""),knt(this,Jmt,"".concat(this.id,"-editor")),knt(this,Zmt,null),knt(this,tyt,void 0),Snt(Kmt,this,t.color||ryt._defaultColor||jut._defaultLineColor),Snt(tyt,this,t.fontSize||ryt._defaultFontSize)}static initialize(t,e){jut.initialize(t,e);var r=getComputedStyle(document.documentElement);this._internalPadding=parseFloat(r.getPropertyValue("--freetext-padding"))}static updateDefaultParams(t,e){switch(t){case rot.FREETEXT_SIZE:ryt._defaultFontSize=e;break;case rot.FREETEXT_COLOR:ryt._defaultColor=e}}updateParams(t,e){switch(t){case rot.FREETEXT_SIZE:bnt(eyt,this,nyt).call(this,e);break;case rot.FREETEXT_COLOR:bnt(eyt,this,iyt).call(this,e)}}static get defaultPropertiesToUpdate(){return[[rot.FREETEXT_SIZE,ryt._defaultFontSize],[rot.FREETEXT_COLOR,ryt._defaultColor||jut._defaultLineColor]]}get propertiesToUpdate(){return[[rot.FREETEXT_SIZE,_nt(tyt,this)],[rot.FREETEXT_COLOR,_nt(Kmt,this)]]}_translateEmpty(t,e){this._uiManager.translateSelectedEditors(t,e,!0)}getInitialTranslation(){var t=this.parentScale;return[-ryt._internalPadding*t,-(ryt._internalPadding+_nt(tyt,this))*t]}rebuild(){this.parent&&(super.rebuild(),null!==this.div&&(this.isAttachedToDOM||this.parent.add(this)))}enableEditMode(){if(!this.isInEditMode()){this.parent.setEditingState(!1),this.parent.updateToolbar(eot.FREETEXT),super.enableEditMode(),this.overlayDiv.classList.remove("enabled"),this.editorDiv.contentEditable=!0,this._isDraggable=!1,this.div.removeAttribute("aria-activedescendant"),Snt(Zmt,this,new AbortController);var t=this._uiManager.combinedSignal(_nt(Zmt,this));this.editorDiv.addEventListener("keydown",this.editorDivKeydown.bind(this),{signal:t}),this.editorDiv.addEventListener("focus",this.editorDivFocus.bind(this),{signal:t}),this.editorDiv.addEventListener("blur",this.editorDivBlur.bind(this),{signal:t}),this.editorDiv.addEventListener("input",this.editorDivInput.bind(this),{signal:t}),this.editorDiv.addEventListener("paste",this.editorDivPaste.bind(this),{signal:t})}}disableEditMode(){var t;this.isInEditMode()&&(this.parent.setEditingState(!0),super.disableEditMode(),this.overlayDiv.classList.add("enabled"),this.editorDiv.contentEditable=!1,this.div.setAttribute("aria-activedescendant",_nt(Jmt,this)),this._isDraggable=!0,null===(t=_nt(Zmt,this))||void 0===t||t.abort(),Snt(Zmt,this,null),this.div.focus({preventScroll:!0}),this.isEditing=!1,this.parent.div.classList.add("freetextEditing"))}focusin(t){this._focusEventsAllowed&&(super.focusin(t),t.target!==this.editorDiv&&this.editorDiv.focus())}onceAdded(t){var e;this.width||(this.enableEditMode(),t&&this.editorDiv.focus(),null!==(e=this._initialOptions)&&void 0!==e&&e.isCentered&&this.center(),this._initialOptions=null)}isEmpty(){return!this.editorDiv||""===this.editorDiv.innerText.trim()}remove(){this.isEditing=!1,this.parent&&(this.parent.setEditingState(!0),this.parent.div.classList.add("freetextEditing")),super.remove()}commit(){if(this.isInEditMode()){super.commit(),this.disableEditMode();var t=_nt(Qmt,this),e=Snt(Qmt,this,bnt(eyt,this,ayt).call(this).trimEnd());if(t!==e){var r=t=>{Snt(Qmt,this,t),t?(bnt(eyt,this,lyt).call(this),this._uiManager.rebuild(this),bnt(eyt,this,syt).call(this)):this.remove()};this.addCommands({cmd:()=>{r(e)},undo:()=>{r(t)},mustExec:!1}),bnt(eyt,this,syt).call(this)}}}shouldGetKeyboardEvents(){return this.isInEditMode()}enterInEditMode(){this.enableEditMode(),this.editorDiv.focus()}dblclick(t){this.enterInEditMode()}keydown(t){t.target===this.div&&"Enter"===t.key&&(this.enterInEditMode(),t.preventDefault())}editorDivKeydown(t){ryt._keyboardManager.exec(this,t)}editorDivFocus(t){this.isEditing=!0}editorDivBlur(t){this.isEditing=!1}editorDivInput(t){this.parent.div.classList.toggle("freetextEditing",this.isEmpty())}disableEditing(){this.editorDiv.setAttribute("role","comment"),this.editorDiv.removeAttribute("aria-multiline")}enableEditing(){this.editorDiv.setAttribute("role","textbox"),this.editorDiv.setAttribute("aria-multiline",!0)}render(){if(this.div)return this.div;var t,e;this.width&&(t=this.x,e=this.y),super.render(),this.editorDiv=document.createElement("div"),this.editorDiv.className="internal",this.editorDiv.setAttribute("id",_nt(Jmt,this)),this.editorDiv.setAttribute("data-l10n-id","pdfjs-free-text2"),this.editorDiv.setAttribute("data-l10n-attrs","default-content"),this.enableEditing(),this.editorDiv.contentEditable=!0;var{style:r}=this.editorDiv;if(r.fontSize="calc(".concat(_nt(tyt,this),"px * var(--scale-factor))"),r.color=_nt(Kmt,this),this.div.append(this.editorDiv),this.overlayDiv=document.createElement("div"),this.overlayDiv.classList.add("overlay","enabled"),this.div.append(this.overlayDiv),rht(this,this.div,["dblclick","keydown"]),this.width){var[n,i]=this.parentDimensions;if(this.annotationElementId){var{position:a}=this._initialData,[s,o]=this.getInitialTranslation();[s,o]=this.pageTranslationToScreen(s,o);var l,h,[c,u]=this.pageDimensions,[d,p]=this.pageTranslation;switch(this.rotation){case 0:l=t+(a[0]-d)/c,h=e+this.height-(a[1]-p)/u;break;case 90:l=t+(a[0]-d)/c,h=e-(a[1]-p)/u,[s,o]=[o,-s];break;case 180:l=t-this.width+(a[0]-d)/c,h=e-(a[1]-p)/u,[s,o]=[-s,-o];break;case 270:l=t+(a[0]-d-this.height*u)/c,h=e+(a[1]-p-this.width*c)/u,[s,o]=[-o,s]}this.setAt(l*n,h*i,s,o)}else this.setAt(t*n,e*i,this.width*n,this.height*i);bnt(eyt,this,lyt).call(this),this._isDraggable=!0,this.editorDiv.contentEditable=!1}else this._isDraggable=!1,this.editorDiv.contentEditable=!0;return this.div}editorDivPaste(t){var e=t.clipboardData||window.clipboardData,{types:r}=e;if(1!==r.length||"text/plain"!==r[0]){t.preventDefault();var n=cyt.call(ryt,e.getData("text")||"").replaceAll($mt,"\n");if(n){var i=window.getSelection();if(i.rangeCount){this.editorDiv.normalize(),i.deleteFromDocument();var a=i.getRangeAt(0);if(!n.includes("\n"))return a.insertNode(document.createTextNode(n)),this.editorDiv.normalize(),void i.collapseToStart();var{startContainer:s,startOffset:o}=a,l=[],h=[];if(s.nodeType===Node.TEXT_NODE){var c=s.parentElement;if(h.push(s.nodeValue.slice(o).replaceAll($mt,"")),c!==this.editorDiv){var u=l;for(var d of this.editorDiv.childNodes)d!==c?u.push(oyt.call(ryt,d)):u=h}l.push(s.nodeValue.slice(0,o).replaceAll($mt,""))}else if(s===this.editorDiv){var p=l,f=0;for(var g of this.editorDiv.childNodes)f++===o&&(p=h),p.push(oyt.call(ryt,g))}Snt(Qmt,this,"".concat(l.join("\n")).concat(n).concat(h.join("\n"))),bnt(eyt,this,lyt).call(this);var v=new Range,m=l.reduce(((t,e)=>t+e.length),0);for(var{firstChild:y}of this.editorDiv.childNodes)if(y.nodeType===Node.TEXT_NODE){var b=y.nodeValue.length;if(m<=b){v.setStart(y,m),v.setEnd(y,m);break}m-=b}i.removeAllRanges(),i.addRange(v)}}}}get contentDiv(){return this.editorDiv}static deserialize(t,e,r){var n=()=>super.deserialize,i=this;return xnt((function*(){var a=null;if(t instanceof gmt){var{data:{defaultAppearanceData:{fontSize:s,fontColor:o},rect:l,rotation:h,id:c,popupRef:u},textContent:d,textPosition:p,parent:{page:{pageNumber:f}}}=t;if(!d||0===d.length)return null;a=t={annotationType:eot.FREETEXT,color:Array.from(o),fontSize:s,value:d.join("\n"),position:p,pageIndex:f-1,rect:l.slice(0),rotation:h,id:c,deleted:!1,popupRef:u}}var g=yield n().call(i,t,e,r);return Snt(tyt,g,t.fontSize),Snt(Kmt,g,alt.makeHexColor(...t.color)),Snt(Qmt,g,cyt.call(ryt,t.value)),g.annotationElementId=t.id||null,g._initialData=a,g}))()}serialize(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this.isEmpty())return null;if(this.deleted)return this.serializeDeleted();var e=ryt._internalPadding*this.parentScale,r=this.getRect(e,e),n=jut._colorManager.convert(this.isAttachedToDOM?getComputedStyle(this.editorDiv).color:_nt(Kmt,this)),i={annotationType:eot.FREETEXT,color:n,fontSize:_nt(tyt,this),value:bnt(eyt,this,hyt).call(this),pageIndex:this.pageIndex,rect:r,rotation:this.rotation,structTreeParentId:this._structTreeParentId};return t?i:this.annotationElementId&&!bnt(eyt,this,uyt).call(this,i)?null:(i.id=this.annotationElementId,i)}renderAnnotationElement(t){var e=super.renderAnnotationElement(t);if(this.deleted)return e;var{style:r}=e;for(var n of(r.fontSize="calc(".concat(_nt(tyt,this),"px * var(--scale-factor))"),r.color=_nt(Kmt,this),e.replaceChildren(),_nt(Qmt,this).split("\n"))){var i=document.createElement("div");i.append(n?document.createTextNode(n):document.createElement("br")),e.append(i)}var a=ryt._internalPadding*this.parentScale;return t.updateEdited({rect:this.getRect(a,a),popupContent:_nt(Qmt,this)}),e}resetAnnotationElement(t){super.resetAnnotationElement(t),t.resetEdited()}}function nyt(t){var e=t=>{this.editorDiv.style.fontSize="calc(".concat(t,"px * var(--scale-factor))"),this.translate(0,-(t-_nt(tyt,this))*this.parentScale),Snt(tyt,this,t),bnt(eyt,this,syt).call(this)},r=_nt(tyt,this);this.addCommands({cmd:e.bind(this,t),undo:e.bind(this,r),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:rot.FREETEXT_SIZE,overwriteIfSameType:!0,keepUndo:!0})}function iyt(t){var e=t=>{Snt(Kmt,this,this.editorDiv.style.color=t)},r=_nt(Kmt,this);this.addCommands({cmd:e.bind(this,t),undo:e.bind(this,r),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:rot.FREETEXT_COLOR,overwriteIfSameType:!0,keepUndo:!0})}function ayt(){var t=[];this.editorDiv.normalize();var e=null;for(var r of this.editorDiv.childNodes){var n;(null===(n=e)||void 0===n?void 0:n.nodeType)===Node.TEXT_NODE&&"BR"===r.nodeName||(t.push(oyt.call(Rst,r)),e=r)}return t.join("\n")}function syt(){var t,[e,r]=this.parentDimensions;if(this.isAttachedToDOM)t=this.div.getBoundingClientRect();else{var{currentLayer:n,div:i}=this,a=i.style.display,s=i.classList.contains("hidden");i.classList.remove("hidden"),i.style.display="hidden",n.div.append(this.div),t=i.getBoundingClientRect(),i.remove(),i.style.display=a,i.classList.toggle("hidden",s)}this.rotation%180==this.parentRotation%180?(this.width=t.width/e,this.height=t.height/r):(this.width=t.height/e,this.height=t.width/r),this.fixAndSetPosition()}function oyt(t){return(t.nodeType===Node.TEXT_NODE?t.nodeValue:t.innerText).replaceAll($mt,"")}function lyt(){if(this.editorDiv.replaceChildren(),_nt(Qmt,this))for(var t of _nt(Qmt,this).split("\n")){var e=document.createElement("div");e.append(t?document.createTextNode(t):document.createElement("br")),this.editorDiv.append(e)}}function hyt(){return _nt(Qmt,this).replaceAll(" "," ")}function cyt(t){return t.replaceAll(" "," ")}function uyt(t){var{value:e,fontSize:r,color:n,pageIndex:i}=this._initialData;return this._hasBeenMoved||t.value!==e||t.fontSize!==r||t.color.some(((t,e)=>t!==n[e]))||t.pageIndex!==i}Rst=ryt,Tnt(ryt,"_freeTextDefaultContent",""),Tnt(ryt,"_internalPadding",0),Tnt(ryt,"_defaultColor",null),Tnt(ryt,"_defaultFontSize",10),Tnt(ryt,"_type","freetext"),Tnt(ryt,"_editorType",eot.FREETEXT);class dyt{toSVGPath(){Uot("Abstract method `toSVGPath` must be implemented.")}get box(){Uot("Abstract getter `box` must be implemented.")}serialize(t,e){Uot("Abstract method `serialize` must be implemented.")}static _rescale(t,e,r,n,i,a){a||(a=new Float32Array(t.length));for(var s=0,o=t.length;s<o;s+=2)a[s]=e+t[s]*n,a[s+1]=r+t[s+1]*i;return a}static _rescaleAndSwap(t,e,r,n,i,a){a||(a=new Float32Array(t.length));for(var s=0,o=t.length;s<o;s+=2)a[s]=e+t[s+1]*n,a[s+1]=r+t[s]*i;return a}static _translate(t,e,r,n){n||(n=new Float32Array(t.length));for(var i=0,a=t.length;i<a;i+=2)n[i]=e+t[i],n[i+1]=r+t[i+1];return n}static svgRound(t){return Math.round(1e4*t)}static _normalizePoint(t,e,r,n,i){switch(i){case 90:return[1-e/r,t/n];case 180:return[1-t/r,1-e/n];case 270:return[e/r,1-t/n];default:return[t/r,e/n]}}static _normalizePagePoint(t,e,r){switch(r){case 90:return[1-e,t];case 180:return[1-t,1-e];case 270:return[e,1-t];default:return[t,e]}}static createBezierPoints(t,e,r,n,i,a){return[(t+5*r)/6,(e+5*n)/6,(5*r+i)/6,(5*n+a)/6,(r+i)/2,(n+a)/2]}}Tnt(dyt,"PRECISION",1e-4);var pyt=new WeakMap,fyt=new WeakMap,gyt=new WeakMap,vyt=new WeakMap,myt=new WeakMap,yyt=new WeakMap,byt=new WeakMap,wyt=new WeakMap,xyt=new WeakMap,Ayt=new WeakMap,_yt=new WeakMap,kyt=new WeakMap,Syt=new WeakMap,Eyt=new WeakSet;class Myt{constructor(t,e,r,n,i){var{x:a,y:s}=t,o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;Mnt(this,Eyt),knt(this,pyt,void 0),knt(this,fyt,[]),knt(this,gyt,void 0),knt(this,vyt,void 0),knt(this,myt,[]),knt(this,yyt,new Float32Array(18)),knt(this,byt,void 0),knt(this,wyt,void 0),knt(this,xyt,void 0),knt(this,Ayt,void 0),knt(this,_yt,void 0),knt(this,kyt,void 0),knt(this,Syt,[]),Snt(pyt,this,e),Snt(kyt,this,n*r),Snt(vyt,this,i),_nt(yyt,this).set([NaN,NaN,NaN,NaN,a,s],6),Snt(gyt,this,o),Snt(Ayt,this,Dyt._*r),Snt(xyt,this,Fyt._*r),Snt(_yt,this,r),_nt(Syt,this).push(a,s)}isEmpty(){return isNaN(_nt(yyt,this)[8])}add(t){var e,{x:r,y:n}=t;Snt(byt,this,r),Snt(wyt,this,n);var[i,a,s,o]=_nt(pyt,this),[l,h,c,u]=_nt(yyt,this).subarray(8,12),d=r-c,p=n-u,f=Math.hypot(d,p);if(f<_nt(xyt,this))return!1;var g=f-_nt(Ayt,this),v=g/f,m=v*d,y=v*p,b=l,w=h;l=c,h=u,c+=m,u+=y,null===(e=_nt(Syt,this))||void 0===e||e.push(r,n);var x=m/g,A=-y/g*_nt(kyt,this),_=x*_nt(kyt,this);return _nt(yyt,this).set(_nt(yyt,this).subarray(2,8),0),_nt(yyt,this).set([c+A,u+_],4),_nt(yyt,this).set(_nt(yyt,this).subarray(14,18),12),_nt(yyt,this).set([c-A,u-_],16),isNaN(_nt(yyt,this)[6])?(0===_nt(myt,this).length&&(_nt(yyt,this).set([l+A,h+_],2),_nt(myt,this).push(NaN,NaN,NaN,NaN,(l+A-i)/s,(h+_-a)/o),_nt(yyt,this).set([l-A,h-_],14),_nt(fyt,this).push(NaN,NaN,NaN,NaN,(l-A-i)/s,(h-_-a)/o)),_nt(yyt,this).set([b,w,l,h,c,u],6),!this.isEmpty()):(_nt(yyt,this).set([b,w,l,h,c,u],6),Math.abs(Math.atan2(w-h,b-l)-Math.atan2(y,m))<Math.PI/2?([l,h,c,u]=_nt(yyt,this).subarray(2,6),_nt(myt,this).push(NaN,NaN,NaN,NaN,((l+c)/2-i)/s,((h+u)/2-a)/o),[l,h,b,w]=_nt(yyt,this).subarray(14,18),_nt(fyt,this).push(NaN,NaN,NaN,NaN,((b+l)/2-i)/s,((w+h)/2-a)/o),!0):([b,w,l,h,c,u]=_nt(yyt,this).subarray(0,6),_nt(myt,this).push(((b+5*l)/6-i)/s,((w+5*h)/6-a)/o,((5*l+c)/6-i)/s,((5*h+u)/6-a)/o,((l+c)/2-i)/s,((h+u)/2-a)/o),[c,u,l,h,b,w]=_nt(yyt,this).subarray(12,18),_nt(fyt,this).push(((b+5*l)/6-i)/s,((w+5*h)/6-a)/o,((5*l+c)/6-i)/s,((5*h+u)/6-a)/o,((l+c)/2-i)/s,((h+u)/2-a)/o),!0))}toSVGPath(){if(this.isEmpty())return"";var t=_nt(myt,this),e=_nt(fyt,this);if(isNaN(_nt(yyt,this)[6])&&!this.isEmpty())return bnt(Eyt,this,Cyt).call(this);var r=[];r.push("M".concat(t[4]," ").concat(t[5]));for(var n=6;n<t.length;n+=6)isNaN(t[n])?r.push("L".concat(t[n+4]," ").concat(t[n+5])):r.push("C".concat(t[n]," ").concat(t[n+1]," ").concat(t[n+2]," ").concat(t[n+3]," ").concat(t[n+4]," ").concat(t[n+5]));bnt(Eyt,this,Iyt).call(this,r);for(var i=e.length-6;i>=6;i-=6)isNaN(e[i])?r.push("L".concat(e[i+4]," ").concat(e[i+5])):r.push("C".concat(e[i]," ").concat(e[i+1]," ").concat(e[i+2]," ").concat(e[i+3]," ").concat(e[i+4]," ").concat(e[i+5]));return bnt(Eyt,this,Pyt).call(this,r),r.join(" ")}newFreeDrawOutline(t,e,r,n,i,a){return new Yyt(t,e,r,n,i,a)}getOutlines(){for(var t,e,r=_nt(myt,this),n=_nt(fyt,this),i=_nt(yyt,this),[a,s,o,l]=_nt(pyt,this),h=new Float32Array((null!==(t=null===(e=_nt(Syt,this))||void 0===e?void 0:e.length)&&void 0!==t?t:0)+2),c=0,u=h.length-2;c<u;c+=2)h[c]=(_nt(Syt,this)[c]-a)/o,h[c+1]=(_nt(Syt,this)[c+1]-s)/l;if(h[h.length-2]=(_nt(byt,this)-a)/o,h[h.length-1]=(_nt(wyt,this)-s)/l,isNaN(i[6])&&!this.isEmpty())return bnt(Eyt,this,Ryt).call(this,h);for(var d=new Float32Array(_nt(myt,this).length+24+_nt(fyt,this).length),p=r.length,f=0;f<p;f+=2)isNaN(r[f])?d[f]=d[f+1]=NaN:(d[f]=r[f],d[f+1]=r[f+1]);p=bnt(Eyt,this,Lyt).call(this,d,p);for(var g=n.length-6;g>=6;g-=6)for(var v=0;v<6;v+=2)isNaN(n[g+v])?(d[p]=d[p+1]=NaN,p+=2):(d[p]=n[g+v],d[p+1]=n[g+v+1],p+=2);return bnt(Eyt,this,Oyt).call(this,d,p),this.newFreeDrawOutline(d,h,_nt(pyt,this),_nt(_yt,this),_nt(gyt,this),_nt(vyt,this))}}function Tyt(){var t=_nt(yyt,this).subarray(4,6),e=_nt(yyt,this).subarray(16,18),[r,n,i,a]=_nt(pyt,this);return[(_nt(byt,this)+(t[0]-e[0])/2-r)/i,(_nt(wyt,this)+(t[1]-e[1])/2-n)/a,(_nt(byt,this)+(e[0]-t[0])/2-r)/i,(_nt(wyt,this)+(e[1]-t[1])/2-n)/a]}function Cyt(){var[t,e,r,n]=_nt(pyt,this),[i,a,s,o]=bnt(Eyt,this,Tyt).call(this);return"M".concat((_nt(yyt,this)[2]-t)/r," ").concat((_nt(yyt,this)[3]-e)/n," L").concat((_nt(yyt,this)[4]-t)/r," ").concat((_nt(yyt,this)[5]-e)/n," L").concat(i," ").concat(a," L").concat(s," ").concat(o," L").concat((_nt(yyt,this)[16]-t)/r," ").concat((_nt(yyt,this)[17]-e)/n," L").concat((_nt(yyt,this)[14]-t)/r," ").concat((_nt(yyt,this)[15]-e)/n," Z")}function Pyt(t){var e=_nt(fyt,this);t.push("L".concat(e[4]," ").concat(e[5]," Z"))}function Iyt(t){var[e,r,n,i]=_nt(pyt,this),a=_nt(yyt,this).subarray(4,6),s=_nt(yyt,this).subarray(16,18),[o,l,h,c]=bnt(Eyt,this,Tyt).call(this);t.push("L".concat((a[0]-e)/n," ").concat((a[1]-r)/i," L").concat(o," ").concat(l," L").concat(h," ").concat(c," L").concat((s[0]-e)/n," ").concat((s[1]-r)/i))}function Ryt(t){var e=_nt(yyt,this),[r,n,i,a]=_nt(pyt,this),[s,o,l,h]=bnt(Eyt,this,Tyt).call(this),c=new Float32Array(36);return c.set([NaN,NaN,NaN,NaN,(e[2]-r)/i,(e[3]-n)/a,NaN,NaN,NaN,NaN,(e[4]-r)/i,(e[5]-n)/a,NaN,NaN,NaN,NaN,s,o,NaN,NaN,NaN,NaN,l,h,NaN,NaN,NaN,NaN,(e[16]-r)/i,(e[17]-n)/a,NaN,NaN,NaN,NaN,(e[14]-r)/i,(e[15]-n)/a],0),this.newFreeDrawOutline(c,t,_nt(pyt,this),_nt(_yt,this),_nt(gyt,this),_nt(vyt,this))}function Oyt(t,e){var r=_nt(fyt,this);return t.set([NaN,NaN,NaN,NaN,r[4],r[5]],e),e+6}function Lyt(t,e){var r=_nt(yyt,this).subarray(4,6),n=_nt(yyt,this).subarray(16,18),[i,a,s,o]=_nt(pyt,this),[l,h,c,u]=bnt(Eyt,this,Tyt).call(this);return t.set([NaN,NaN,NaN,NaN,(r[0]-i)/s,(r[1]-a)/o,NaN,NaN,NaN,NaN,l,h,NaN,NaN,NaN,NaN,c,u,NaN,NaN,NaN,NaN,(n[0]-i)/s,(n[1]-a)/o],e),e+24}var Dyt={_:8},Fyt={_:Dyt._+2},Nyt=new WeakMap,jyt=new WeakMap,Byt=new WeakMap,zyt=new WeakMap,Wyt=new WeakMap,Uyt=new WeakMap,Hyt=new WeakMap,Gyt=new WeakSet;class Yyt extends dyt{constructor(t,e,r,n,i,a){super(),Mnt(this,Gyt),knt(this,Nyt,void 0),knt(this,jyt,new Float32Array(4)),knt(this,Byt,void 0),knt(this,zyt,void 0),knt(this,Wyt,void 0),knt(this,Uyt,void 0),knt(this,Hyt,void 0),Snt(Hyt,this,t),Snt(Wyt,this,e),Snt(Nyt,this,r),Snt(Uyt,this,n),Snt(Byt,this,i),Snt(zyt,this,a),this.lastPoint=[NaN,NaN],bnt(Gyt,this,Vyt).call(this,a);for(var[s,o,l,h]=_nt(jyt,this),c=0,u=t.length;c<u;c+=2)t[c]=(t[c]-s)/l,t[c+1]=(t[c+1]-o)/h;for(var d=0,p=e.length;d<p;d+=2)e[d]=(e[d]-s)/l,e[d+1]=(e[d+1]-o)/h}toSVGPath(){for(var t=["M".concat(_nt(Hyt,this)[4]," ").concat(_nt(Hyt,this)[5])],e=6,r=_nt(Hyt,this).length;e<r;e+=6)isNaN(_nt(Hyt,this)[e])?t.push("L".concat(_nt(Hyt,this)[e+4]," ").concat(_nt(Hyt,this)[e+5])):t.push("C".concat(_nt(Hyt,this)[e]," ").concat(_nt(Hyt,this)[e+1]," ").concat(_nt(Hyt,this)[e+2]," ").concat(_nt(Hyt,this)[e+3]," ").concat(_nt(Hyt,this)[e+4]," ").concat(_nt(Hyt,this)[e+5]));return t.push("Z"),t.join(" ")}serialize(t,e){var r,n,[i,a,s,o]=t,l=s-i,h=o-a;switch(e){case 0:r=dyt._rescale(_nt(Hyt,this),i,o,l,-h),n=dyt._rescale(_nt(Wyt,this),i,o,l,-h);break;case 90:r=dyt._rescaleAndSwap(_nt(Hyt,this),i,a,l,h),n=dyt._rescaleAndSwap(_nt(Wyt,this),i,a,l,h);break;case 180:r=dyt._rescale(_nt(Hyt,this),s,a,-l,h),n=dyt._rescale(_nt(Wyt,this),s,a,-l,h);break;case 270:r=dyt._rescaleAndSwap(_nt(Hyt,this),s,o,-l,-h),n=dyt._rescaleAndSwap(_nt(Wyt,this),s,o,-l,-h)}return{outline:Array.from(r),points:[Array.from(n)]}}get box(){return _nt(jyt,this)}newOutliner(t,e,r,n,i){return new Myt(t,e,r,n,i,arguments.length>5&&void 0!==arguments[5]?arguments[5]:0)}getNewOutline(t,e){for(var[r,n,i,a]=_nt(jyt,this),[s,o,l,h]=_nt(Nyt,this),c=i*l,u=a*h,d=r*l+s,p=n*h+o,f=this.newOutliner({x:_nt(Wyt,this)[0]*c+d,y:_nt(Wyt,this)[1]*u+p},_nt(Nyt,this),_nt(Uyt,this),t,_nt(zyt,this),null!=e?e:_nt(Byt,this)),g=2;g<_nt(Wyt,this).length;g+=2)f.add({x:_nt(Wyt,this)[g]*c+d,y:_nt(Wyt,this)[g+1]*u+p});return f.getOutlines()}}function Vyt(t){for(var e=_nt(Hyt,this),r=e[4],n=e[5],i=r,a=n,s=r,o=n,l=r,h=n,c=t?Math.max:Math.min,u=6,d=e.length;u<d;u+=6){if(isNaN(e[u]))i=Math.min(i,e[u+4]),a=Math.min(a,e[u+5]),s=Math.max(s,e[u+4]),o=Math.max(o,e[u+5]),h<e[u+5]?(l=e[u+4],h=e[u+5]):h===e[u+5]&&(l=c(l,e[u+4]));else{var p=alt.bezierBoundingBox(r,n,...e.slice(u,u+6));i=Math.min(i,p[0]),a=Math.min(a,p[1]),s=Math.max(s,p[2]),o=Math.max(o,p[3]),h<p[3]?(l=p[2],h=p[3]):h===p[3]&&(l=c(l,p[2]))}r=e[u+4],n=e[u+5]}var f=_nt(jyt,this);f[0]=i-_nt(Byt,this),f[1]=a-_nt(Byt,this),f[2]=s-i+2*_nt(Byt,this),f[3]=o-a+2*_nt(Byt,this),this.lastPoint=[l,h]}var qyt=new WeakMap,Xyt=new WeakMap,$yt=new WeakMap,Kyt=new WeakMap,Qyt=new WeakSet;class Jyt{constructor(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,n=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];Mnt(this,Qyt),knt(this,qyt,void 0),knt(this,Xyt,void 0),knt(this,$yt,[]),knt(this,Kyt,[]);var i=1/0,a=-1/0,s=1/0,o=-1/0,l=Math.pow(10,-4);for(var{x:h,y:c,width:u,height:d}of t){var p=Math.floor((h-e)/l)*l,f=Math.ceil((h+u+e)/l)*l,g=Math.floor((c-e)/l)*l,v=Math.ceil((c+d+e)/l)*l,m=[p,g,v,!0],y=[f,g,v,!1];_nt($yt,this).push(m,y),i=Math.min(i,p),a=Math.max(a,f),s=Math.min(s,g),o=Math.max(o,v)}var b=a-i+2*r,w=o-s+2*r,x=i-r,A=s-r,_=_nt($yt,this).at(n?-1:-2),k=[_[0],_[2]];for(var S of _nt($yt,this)){var[E,M,T]=S;S[0]=(E-x)/b,S[1]=(M-A)/w,S[2]=(T-A)/w}Snt(qyt,this,new Float32Array([x,A,b,w])),Snt(Xyt,this,k)}getOutlines(){_nt($yt,this).sort(((t,e)=>t[0]-e[0]||t[1]-e[1]||t[2]-e[2]));var t=[];for(var e of _nt($yt,this))e[3]?(t.push(...bnt(Qyt,this,nbt).call(this,e)),bnt(Qyt,this,ebt).call(this,e)):(bnt(Qyt,this,rbt).call(this,e),t.push(...bnt(Qyt,this,nbt).call(this,e)));return bnt(Qyt,this,Zyt).call(this,t)}}function Zyt(t){var e=[],r=new Set;for(var n of t){var[i,a,s]=n;e.push([i,a,n],[i,s,n])}e.sort(((t,e)=>t[1]-e[1]||t[0]-e[0]));for(var o=0,l=e.length;o<l;o+=2){var h=e[o][2],c=e[o+1][2];h.push(c),c.push(h),r.add(h),r.add(c)}for(var u,d=[];r.size>0;){var p=r.values().next().value,[f,g,v,m,y]=p;r.delete(p);var b=f,w=g;for(u=[f,v],d.push(u);;){var x=void 0;if(r.has(m))x=m;else{if(!r.has(y))break;x=y}r.delete(x),[f,g,v,m,y]=x,b!==f&&(u.push(b,w,f,w===g?g:v),b=f),w=w===g?v:g}u.push(b,w)}return new sbt(d,_nt(qyt,this),_nt(Xyt,this))}function tbt(t){for(var e=_nt(Kyt,this),r=0,n=e.length-1;r<=n;){var i=r+n>>1,a=e[i][0];if(a===t)return i;a<t?r=i+1:n=i-1}return n+1}function ebt(t){var[,e,r]=t,n=bnt(Qyt,this,tbt).call(this,e);_nt(Kyt,this).splice(n,0,[e,r])}function rbt(t){for(var[,e,r]=t,n=bnt(Qyt,this,tbt).call(this,e),i=n;i<_nt(Kyt,this).length;i++){var[a,s]=_nt(Kyt,this)[i];if(a!==e)break;if(a===e&&s===r)return void _nt(Kyt,this).splice(i,1)}for(var o=n-1;o>=0;o--){var[l,h]=_nt(Kyt,this)[o];if(l!==e)break;if(l===e&&h===r)return void _nt(Kyt,this).splice(o,1)}}function nbt(t){for(var[e,r,n]=t,i=[[e,r,n]],a=bnt(Qyt,this,tbt).call(this,n),s=0;s<a;s++)for(var[o,l]=_nt(Kyt,this)[s],h=0,c=i.length;h<c;h++){var[,u,d]=i[h];if(!(l<=u||d<=o))if(u>=o)if(d>l)i[h][1]=l;else{if(1===c)return[];i.splice(h,1),h--,c--}else i[h][2]=o,d>l&&i.push([e,l,d])}return i}var ibt=new WeakMap,abt=new WeakMap;class sbt extends dyt{constructor(t,e,r){super(),knt(this,ibt,void 0),knt(this,abt,void 0),Snt(abt,this,t),Snt(ibt,this,e),this.lastPoint=r}toSVGPath(){var t=[];for(var e of _nt(abt,this)){var[r,n]=e;t.push("M".concat(r," ").concat(n));for(var i=2;i<e.length;i+=2){var a=e[i],s=e[i+1];a===r?(t.push("V".concat(s)),n=s):s===n&&(t.push("H".concat(a)),r=a)}t.push("Z")}return t.join(" ")}serialize(t,e){var[r,n,i,a]=t,s=[],o=i-r,l=a-n;for(var h of _nt(abt,this)){for(var c=new Array(h.length),u=0;u<h.length;u+=2)c[u]=r+h[u]*o,c[u+1]=a-h[u+1]*l;s.push(c)}return s}get box(){return _nt(ibt,this)}get classNamesForOutlining(){return["highlightOutline"]}}class obt extends Myt{newFreeDrawOutline(t,e,r,n,i,a){return new lbt(t,e,r,n,i,a)}}class lbt extends Yyt{newOutliner(t,e,r,n,i){return new obt(t,e,r,n,i,arguments.length>5&&void 0!==arguments[5]?arguments[5]:0)}}var hbt=new WeakMap,cbt=new WeakMap,ubt=new WeakMap,dbt=new WeakMap,pbt=new WeakMap,fbt=new WeakMap,gbt=new WeakMap,vbt=new WeakMap,mbt=new WeakMap,ybt=new WeakMap,bbt=new WeakMap,wbt=new WeakSet;class xbt{static get _keyboardManager(){return Yot(this,"_keyboardManager",new yht([[["Escape","mac+Escape"],xbt.prototype._hideDropdownFromKeyboard],[[" ","mac+ "],xbt.prototype._colorSelectFromKeyboard],[["ArrowDown","ArrowRight","mac+ArrowDown","mac+ArrowRight"],xbt.prototype._moveToNext],[["ArrowUp","ArrowLeft","mac+ArrowUp","mac+ArrowLeft"],xbt.prototype._moveToPrevious],[["Home","mac+Home"],xbt.prototype._moveToBeginning],[["End","mac+End"],xbt.prototype._moveToEnd]]))}constructor(t){var e,{editor:r=null,uiManager:n=null}=t;Mnt(this,wbt),knt(this,hbt,null),knt(this,cbt,null),knt(this,ubt,void 0),knt(this,dbt,null),knt(this,pbt,!1),knt(this,fbt,!1),knt(this,gbt,null),knt(this,vbt,void 0),knt(this,mbt,null),knt(this,ybt,null),knt(this,bbt,void 0),r?(Snt(fbt,this,!1),Snt(bbt,this,rot.HIGHLIGHT_COLOR),Snt(gbt,this,r)):(Snt(fbt,this,!0),Snt(bbt,this,rot.HIGHLIGHT_DEFAULT_COLOR)),Snt(ybt,this,(null==r?void 0:r._uiManager)||n),Snt(vbt,this,_nt(ybt,this)._eventBus),Snt(ubt,this,(null==r?void 0:r.color)||(null===(e=_nt(ybt,this))||void 0===e?void 0:e.highlightColors.values().next().value)||"#FFFF98"),Tbt._||(Tbt._=Object.freeze({blue:"pdfjs-editor-colorpicker-blue",green:"pdfjs-editor-colorpicker-green",pink:"pdfjs-editor-colorpicker-pink",red:"pdfjs-editor-colorpicker-red",yellow:"pdfjs-editor-colorpicker-yellow"}))}renderButton(){var t=Snt(hbt,this,document.createElement("button"));t.className="colorPicker",t.tabIndex="0",t.setAttribute("data-l10n-id","pdfjs-editor-colorpicker-button"),t.setAttribute("aria-haspopup",!0);var e=_nt(ybt,this)._signal;t.addEventListener("click",bnt(wbt,this,Sbt).bind(this),{signal:e}),t.addEventListener("keydown",bnt(wbt,this,kbt).bind(this),{signal:e});var r=Snt(cbt,this,document.createElement("span"));return r.className="swatch",r.setAttribute("aria-hidden",!0),r.style.backgroundColor=_nt(ubt,this),t.append(r),t}renderMainDropdown(){var t=Snt(dbt,this,bnt(wbt,this,Abt).call(this));return t.setAttribute("aria-orientation","horizontal"),t.setAttribute("aria-labelledby","highlightColorPickerLabel"),t}_colorSelectFromKeyboard(t){if(t.target!==_nt(hbt,this)){var e=t.target.getAttribute("data-color");e&&bnt(wbt,this,_bt).call(this,e,t)}else bnt(wbt,this,Sbt).call(this,t)}_moveToNext(t){var e,r;Ent(wbt,this,Mbt)?t.target!==_nt(hbt,this)?null===(e=t.target.nextSibling)||void 0===e||e.focus():null===(r=_nt(dbt,this).firstChild)||void 0===r||r.focus():bnt(wbt,this,Sbt).call(this,t)}_moveToPrevious(t){var e,r;t.target!==(null===(e=_nt(dbt,this))||void 0===e?void 0:e.firstChild)&&t.target!==_nt(hbt,this)?(Ent(wbt,this,Mbt)||bnt(wbt,this,Sbt).call(this,t),null===(r=t.target.previousSibling)||void 0===r||r.focus()):Ent(wbt,this,Mbt)&&this._hideDropdownFromKeyboard()}_moveToBeginning(t){var e;Ent(wbt,this,Mbt)?null===(e=_nt(dbt,this).firstChild)||void 0===e||e.focus():bnt(wbt,this,Sbt).call(this,t)}_moveToEnd(t){var e;Ent(wbt,this,Mbt)?null===(e=_nt(dbt,this).lastChild)||void 0===e||e.focus():bnt(wbt,this,Sbt).call(this,t)}hideDropdown(){var t,e;null===(t=_nt(dbt,this))||void 0===t||t.classList.add("hidden"),null===(e=_nt(mbt,this))||void 0===e||e.abort(),Snt(mbt,this,null)}_hideDropdownFromKeyboard(){var t;_nt(fbt,this)||(Ent(wbt,this,Mbt)?(this.hideDropdown(),_nt(hbt,this).focus({preventScroll:!0,focusVisible:_nt(pbt,this)})):null===(t=_nt(gbt,this))||void 0===t||t.unselect())}updateColor(t){if(_nt(cbt,this)&&(_nt(cbt,this).style.backgroundColor=t),_nt(dbt,this)){var e=_nt(ybt,this).highlightColors.values();for(var r of _nt(dbt,this).children)r.setAttribute("aria-selected",e.next().value===t)}}destroy(){var t,e;null===(t=_nt(hbt,this))||void 0===t||t.remove(),Snt(hbt,this,null),Snt(cbt,this,null),null===(e=_nt(dbt,this))||void 0===e||e.remove(),Snt(dbt,this,null)}}function Abt(){var t=document.createElement("div"),e=_nt(ybt,this)._signal;for(var[r,n]of(t.addEventListener("contextmenu",klt,{signal:e}),t.className="dropdown",t.role="listbox",t.setAttribute("aria-multiselectable",!1),t.setAttribute("aria-orientation","vertical"),t.setAttribute("data-l10n-id","pdfjs-editor-colorpicker-dropdown"),_nt(ybt,this).highlightColors)){var i=document.createElement("button");i.tabIndex="0",i.role="option",i.setAttribute("data-color",n),i.title=r,i.setAttribute("data-l10n-id",Tbt._[r]);var a=document.createElement("span");i.append(a),a.className="swatch",a.style.backgroundColor=n,i.setAttribute("aria-selected",n===_nt(ubt,this)),i.addEventListener("click",bnt(wbt,this,_bt).bind(this,n),{signal:e}),t.append(i)}return t.addEventListener("keydown",bnt(wbt,this,kbt).bind(this),{signal:e}),t}function _bt(t,e){e.stopPropagation(),_nt(vbt,this).dispatch("switchannotationeditorparams",{source:this,type:_nt(bbt,this),value:t})}function kbt(t){Ost._keyboardManager.exec(this,t)}function Sbt(t){if(Ent(wbt,this,Mbt))this.hideDropdown();else if(Snt(pbt,this,0===t.detail),_nt(mbt,this)||(Snt(mbt,this,new AbortController),window.addEventListener("pointerdown",bnt(wbt,this,Ebt).bind(this),{signal:_nt(ybt,this).combinedSignal(_nt(mbt,this))})),_nt(dbt,this))_nt(dbt,this).classList.remove("hidden");else{var e=Snt(dbt,this,bnt(wbt,this,Abt).call(this));_nt(hbt,this).append(e)}}function Ebt(t){var e;null!==(e=_nt(dbt,this))&&void 0!==e&&e.contains(t.target)||this.hideDropdown()}function Mbt(t){return _nt(dbt,t)&&!_nt(dbt,t).classList.contains("hidden")}Ost=xbt;var Tbt={_:null},Cbt=new WeakMap,Pbt=new WeakMap,Ibt=new WeakMap,Rbt=new WeakMap,Obt=new WeakMap,Lbt=new WeakMap,Dbt=new WeakMap,Fbt=new WeakMap,Nbt=new WeakMap,jbt=new WeakMap,Bbt=new WeakMap,zbt=new WeakMap,Wbt=new WeakMap,Ubt=new WeakMap,Hbt=new WeakMap,Gbt=new WeakMap,Ybt=new WeakMap,Vbt=new WeakMap,qbt=new WeakSet;class Xbt extends jut{static get _keyboardManager(){var t=Xbt.prototype;return Yot(this,"_keyboardManager",new yht([[["ArrowLeft","mac+ArrowLeft"],t._moveCaret,{args:[0]}],[["ArrowRight","mac+ArrowRight"],t._moveCaret,{args:[1]}],[["ArrowUp","mac+ArrowUp"],t._moveCaret,{args:[2]}],[["ArrowDown","mac+ArrowDown"],t._moveCaret,{args:[3]}]]))}constructor(t){super(Pnt(Pnt({},t),{},{name:"highlightEditor"})),Mnt(this,qbt),knt(this,Cbt,null),knt(this,Pbt,0),knt(this,Ibt,void 0),knt(this,Rbt,null),knt(this,Obt,null),knt(this,Lbt,null),knt(this,Dbt,null),knt(this,Fbt,0),knt(this,Nbt,null),knt(this,jbt,null),knt(this,Bbt,null),knt(this,zbt,!1),knt(this,Wbt,null),knt(this,Ubt,void 0),knt(this,Hbt,null),knt(this,Gbt,""),knt(this,Ybt,void 0),knt(this,Vbt,""),this.color=t.color||Xbt._defaultColor,Snt(Ybt,this,t.thickness||Xbt._defaultThickness),Snt(Ubt,this,t.opacity||Xbt._defaultOpacity),Snt(Ibt,this,t.boxes||null),Snt(Vbt,this,t.methodOfCreation||""),Snt(Gbt,this,t.text||""),this._isDraggable=!1,t.highlightId>-1?(Snt(zbt,this,!0),bnt(qbt,this,Kbt).call(this,t),bnt(qbt,this,ewt).call(this)):_nt(Ibt,this)&&(Snt(Cbt,this,t.anchorNode),Snt(Pbt,this,t.anchorOffset),Snt(Dbt,this,t.focusNode),Snt(Fbt,this,t.focusOffset),bnt(qbt,this,$bt).call(this),bnt(qbt,this,ewt).call(this),this.rotate(this.rotation))}get telemetryInitialData(){return{action:"added",type:_nt(zbt,this)?"free_highlight":"highlight",color:this._uiManager.highlightColorNames.get(this.color),thickness:_nt(Ybt,this),methodOfCreation:_nt(Vbt,this)}}get telemetryFinalData(){return{type:"highlight",color:this._uiManager.highlightColorNames.get(this.color)}}static computeTelemetryFinalData(t){return{numberOfColors:t.get("color").size}}static initialize(t,e){var r;jut.initialize(t,e),Xbt._defaultColor||(Xbt._defaultColor=(null===(r=e.highlightColors)||void 0===r?void 0:r.values().next().value)||"#fff066")}static updateDefaultParams(t,e){switch(t){case rot.HIGHLIGHT_DEFAULT_COLOR:Xbt._defaultColor=e;break;case rot.HIGHLIGHT_THICKNESS:Xbt._defaultThickness=e}}translateInPage(t,e){}get toolbarPosition(){return _nt(Wbt,this)}updateParams(t,e){switch(t){case rot.HIGHLIGHT_COLOR:bnt(qbt,this,Qbt).call(this,e);break;case rot.HIGHLIGHT_THICKNESS:bnt(qbt,this,Jbt).call(this,e)}}static get defaultPropertiesToUpdate(){return[[rot.HIGHLIGHT_DEFAULT_COLOR,Xbt._defaultColor],[rot.HIGHLIGHT_THICKNESS,Xbt._defaultThickness]]}get propertiesToUpdate(){return[[rot.HIGHLIGHT_COLOR,this.color||Xbt._defaultColor],[rot.HIGHLIGHT_THICKNESS,_nt(Ybt,this)||Xbt._defaultThickness],[rot.HIGHLIGHT_FREE,_nt(zbt,this)]]}addEditToolbar(){var t=()=>super.addEditToolbar,e=this;return xnt((function*(){var r=yield t().call(e);return r?(e._uiManager.highlightColors&&(Snt(Obt,e,new xbt({editor:e})),r.addColorPicker(_nt(Obt,e))),r):null}))()}disableEditing(){super.disableEditing(),this.div.classList.toggle("disabled",!0)}enableEditing(){super.enableEditing(),this.div.classList.toggle("disabled",!1)}fixAndSetPosition(){return super.fixAndSetPosition(bnt(qbt,this,awt).call(this))}getBaseTranslation(){return[0,0]}getRect(t,e){return super.getRect(t,e,bnt(qbt,this,awt).call(this))}onceAdded(t){this.annotationElementId||this.parent.addUndoableEditor(this),t&&this.div.focus()}remove(){bnt(qbt,this,twt).call(this),this._reportTelemetry({action:"deleted"}),super.remove()}rebuild(){this.parent&&(super.rebuild(),null!==this.div&&(bnt(qbt,this,ewt).call(this),this.isAttachedToDOM||this.parent.add(this)))}setParent(t){var e=!1;if(this.parent&&!t)bnt(qbt,this,twt).call(this);else if(t){var r;bnt(qbt,this,ewt).call(this,t),e=!this.parent&&(null===(r=this.div)||void 0===r?void 0:r.classList.contains("selectedEditor"))}super.setParent(t),this.show(this._isVisible),e&&this.select()}rotate(t){var e,{drawLayer:r}=this.parent;_nt(zbt,this)?(t=(t-this.rotation+360)%360,e=rwt.call(Xbt,_nt(jbt,this).box,t)):e=rwt.call(Xbt,[this.x,this.y,this.width,this.height],t),r.updateProperties(_nt(Bbt,this),{bbox:e,root:{"data-main-rotation":t}}),r.updateProperties(_nt(Hbt,this),{bbox:rwt.call(Xbt,_nt(Lbt,this).box,t),root:{"data-main-rotation":t}})}render(){if(this.div)return this.div;var t=super.render();_nt(Gbt,this)&&(t.setAttribute("aria-label",_nt(Gbt,this)),t.setAttribute("role","mark")),_nt(zbt,this)?t.classList.add("free"):this.div.addEventListener("keydown",bnt(qbt,this,nwt).bind(this),{signal:this._uiManager._signal});var e=Snt(Nbt,this,document.createElement("div"));t.append(e),e.setAttribute("aria-hidden","true"),e.className="internal",e.style.clipPath=_nt(Rbt,this);var[r,n]=this.parentDimensions;return this.setDims(this.width*r,this.height*n),rht(this,_nt(Nbt,this),["pointerover","pointerleave"]),this.enableEditing(),t}pointerover(){var t;this.isSelected||(null===(t=this.parent)||void 0===t||t.drawLayer.updateProperties(_nt(Hbt,this),{rootClass:{hovered:!0}}))}pointerleave(){var t;this.isSelected||(null===(t=this.parent)||void 0===t||t.drawLayer.updateProperties(_nt(Hbt,this),{rootClass:{hovered:!1}}))}_moveCaret(t){switch(this.parent.unselect(this),t){case 0:case 2:bnt(qbt,this,iwt).call(this,!0);break;case 1:case 3:bnt(qbt,this,iwt).call(this,!1)}}select(){var t;super.select(),_nt(Hbt,this)&&(null===(t=this.parent)||void 0===t||t.drawLayer.updateProperties(_nt(Hbt,this),{rootClass:{hovered:!1,selected:!0}}))}unselect(){var t;super.unselect(),_nt(Hbt,this)&&(null===(t=this.parent)||void 0===t||t.drawLayer.updateProperties(_nt(Hbt,this),{rootClass:{selected:!1}}),_nt(zbt,this)||bnt(qbt,this,iwt).call(this,!1))}get _mustFixPosition(){return!_nt(zbt,this)}show(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this._isVisible;super.show(t),this.parent&&(this.parent.drawLayer.updateProperties(_nt(Bbt,this),{rootClass:{hidden:!t}}),this.parent.drawLayer.updateProperties(_nt(Hbt,this),{rootClass:{hidden:!t}}))}static startHighlighting(t,e,r){var{target:n,x:i,y:a}=r,{x:s,y:o,width:l,height:h}=n.getBoundingClientRect(),c=new AbortController,u=t.combinedSignal(c),d=e=>{c.abort(),bnt(Xbt,this,hwt).call(this,t,e)};window.addEventListener("blur",d,{signal:u}),window.addEventListener("pointerup",d,{signal:u}),window.addEventListener("pointerdown",Slt,{capture:!0,passive:!1,signal:u}),window.addEventListener("contextmenu",klt,{signal:u}),n.addEventListener("pointermove",bnt(Xbt,this,lwt).bind(this,t),{signal:u}),this._freeHighlight=new obt({x:i,y:a},[s,o,l,h],t.scale,this._defaultThickness/2,e,.001),({id:this._freeHighlightId,clipPathId:this._freeHighlightClipId}=t.drawLayer.draw({bbox:[0,0,1,1],root:{viewBox:"0 0 1 1",fill:this._defaultColor,"fill-opacity":this._defaultOpacity},rootClass:{highlight:!0,free:!0},path:{d:this._freeHighlight.toSVGPath()}},!0,!0))}static deserialize(t,e,r){var n=()=>super.deserialize,i=this;return xnt((function*(){var a=null;if(t instanceof Imt){var{data:{quadPoints:s,rect:o,rotation:l,id:h,color:c,opacity:u,popupRef:d},parent:{page:{pageNumber:p}}}=t;a=t={annotationType:eot.HIGHLIGHT,color:Array.from(c),opacity:u,quadPoints:s,boxes:null,pageIndex:p-1,rect:o.slice(0),rotation:l,id:h,deleted:!1,popupRef:d}}else if(t instanceof Cmt){var{data:{inkLists:f,rect:g,rotation:v,id:m,color:y,borderStyle:{rawWidth:b},popupRef:w},parent:{page:{pageNumber:x}}}=t;a=t={annotationType:eot.HIGHLIGHT,color:Array.from(y),thickness:b,inkLists:f,boxes:null,pageIndex:x-1,rect:g.slice(0),rotation:v,id:m,deleted:!1,popupRef:w}}var{color:A,quadPoints:_,inkLists:k,opacity:S}=t,E=yield n().call(i,t,e,r);E.color=alt.makeHexColor(...A),Snt(Ubt,E,S||1),k&&Snt(Ybt,E,t.thickness),E.annotationElementId=t.id||null,E._initialData=a;var[M,T]=E.pageDimensions,[C,P]=E.pageTranslation;if(_){for(var I=Snt(Ibt,E,[]),R=0;R<_.length;R+=8)I.push({x:(_[R]-C)/M,y:1-(_[R+1]-P)/T,width:(_[R+2]-_[R])/M,height:(_[R+1]-_[R+5])/T});bnt(qbt,E,$bt).call(E),bnt(qbt,E,ewt).call(E),E.rotate(E.rotation)}else if(k){Snt(zbt,E,!0);for(var O=k[0],L={x:O[0]-C,y:T-(O[1]-P)},D=new obt(L,[0,0,M,T],1,_nt(Ybt,E)/2,!0,.001),F=0,N=O.length;F<N;F+=2)L.x=O[F]-C,L.y=T-(O[F+1]-P),D.add(L);var{id:j,clipPathId:B}=e.drawLayer.draw({bbox:[0,0,1,1],root:{viewBox:"0 0 1 1",fill:E.color,"fill-opacity":E._defaultOpacity},rootClass:{highlight:!0,free:!0},path:{d:D.toSVGPath()}},!0,!0);bnt(qbt,E,Kbt).call(E,{highlightOutlines:D.getOutlines(),highlightId:j,clipPathId:B}),bnt(qbt,E,ewt).call(E)}return E}))()}serialize(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this.isEmpty()||t)return null;if(this.deleted)return this.serializeDeleted();var e=this.getRect(0,0),r=jut._colorManager.convert(this.color),n={annotationType:eot.HIGHLIGHT,color:r,opacity:_nt(Ubt,this),thickness:_nt(Ybt,this),quadPoints:bnt(qbt,this,swt).call(this),outlines:bnt(qbt,this,owt).call(this,e),pageIndex:this.pageIndex,rect:e,rotation:bnt(qbt,this,awt).call(this),structTreeParentId:this._structTreeParentId};return this.annotationElementId&&!bnt(qbt,this,cwt).call(this,n)?null:(n.id=this.annotationElementId,n)}renderAnnotationElement(t){return t.updateEdited({rect:this.getRect(0,0)}),null}static canCreateNewEmptyEditor(){return!1}}function $bt(){var t=new Jyt(_nt(Ibt,this),.001);Snt(jbt,this,t.getOutlines()),[this.x,this.y,this.width,this.height]=_nt(jbt,this).box;var e=new Jyt(_nt(Ibt,this),.0025,.001,"ltr"===this._uiManager.direction);Snt(Lbt,this,e.getOutlines());var{lastPoint:r}=_nt(Lbt,this);Snt(Wbt,this,[(r[0]-this.x)/this.width,(r[1]-this.y)/this.height])}function Kbt(t){var{highlightOutlines:e,highlightId:r,clipPathId:n}=t;Snt(jbt,this,e);if(Snt(Lbt,this,e.getNewOutline(_nt(Ybt,this)/2+1.5,.0025)),r>=0)Snt(Bbt,this,r),Snt(Rbt,this,n),this.parent.drawLayer.finalizeDraw(r,{bbox:e.box,path:{d:e.toSVGPath()}}),Snt(Hbt,this,this.parent.drawLayer.drawOutline({rootClass:{highlightOutline:!0,free:!0},bbox:_nt(Lbt,this).box,path:{d:_nt(Lbt,this).toSVGPath()}},!0));else if(this.parent){var i=this.parent.viewport.rotation;this.parent.drawLayer.updateProperties(_nt(Bbt,this),{bbox:rwt.call(Lst,_nt(jbt,this).box,(i-this.rotation+360)%360),path:{d:e.toSVGPath()}}),this.parent.drawLayer.updateProperties(_nt(Hbt,this),{bbox:rwt.call(Lst,_nt(Lbt,this).box,i),path:{d:_nt(Lbt,this).toSVGPath()}})}var[a,s,o,l]=e.box;switch(this.rotation){case 0:this.x=a,this.y=s,this.width=o,this.height=l;break;case 90:var[h,c]=this.parentDimensions;this.x=s,this.y=1-a,this.width=o*c/h,this.height=l*h/c;break;case 180:this.x=1-a,this.y=1-s,this.width=o,this.height=l;break;case 270:var[u,d]=this.parentDimensions;this.x=1-s,this.y=a,this.width=o*d/u,this.height=l*u/d}var{lastPoint:p}=_nt(Lbt,this);Snt(Wbt,this,[(p[0]-a)/o,(p[1]-s)/l])}function Qbt(t){var e=(t,e)=>{var r,n;this.color=t,Snt(Ubt,this,e),null===(r=this.parent)||void 0===r||r.drawLayer.updateProperties(_nt(Bbt,this),{root:{fill:t,"fill-opacity":e}}),null===(n=_nt(Obt,this))||void 0===n||n.updateColor(t)},r=this.color,n=_nt(Ubt,this);this.addCommands({cmd:e.bind(this,t,Lst._defaultOpacity),undo:e.bind(this,r,n),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:rot.HIGHLIGHT_COLOR,overwriteIfSameType:!0,keepUndo:!0}),this._reportTelemetry({action:"color_changed",color:this._uiManager.highlightColorNames.get(t)},!0)}function Jbt(t){var e=_nt(Ybt,this),r=t=>{Snt(Ybt,this,t),bnt(qbt,this,Zbt).call(this,t)};this.addCommands({cmd:r.bind(this,t),undo:r.bind(this,e),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:rot.INK_THICKNESS,overwriteIfSameType:!0,keepUndo:!0}),this._reportTelemetry({action:"thickness_changed",thickness:t},!0)}function Zbt(t){if(_nt(zbt,this)){bnt(qbt,this,Kbt).call(this,{highlightOutlines:_nt(jbt,this).getNewOutline(t/2)}),this.fixAndSetPosition();var[e,r]=this.parentDimensions;this.setDims(this.width*e,this.height*r)}}function twt(){null!==_nt(Bbt,this)&&this.parent&&(this.parent.drawLayer.remove(_nt(Bbt,this)),Snt(Bbt,this,null),this.parent.drawLayer.remove(_nt(Hbt,this)),Snt(Hbt,this,null))}function ewt(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.parent;null===_nt(Bbt,this)&&(({id:Int(Snt,[Bbt,this])._,clipPathId:Int(Snt,[Rbt,this])._}=t.drawLayer.draw({bbox:_nt(jbt,this).box,root:{viewBox:"0 0 1 1",fill:this.color,"fill-opacity":_nt(Ubt,this)},rootClass:{highlight:!0,free:_nt(zbt,this)},path:{d:_nt(jbt,this).toSVGPath()}},!1,!0)),Snt(Hbt,this,t.drawLayer.drawOutline({rootClass:{highlightOutline:!0,free:_nt(zbt,this)},bbox:_nt(Lbt,this).box,path:{d:_nt(Lbt,this).toSVGPath()}},_nt(zbt,this))),_nt(Nbt,this)&&(_nt(Nbt,this).style.clipPath=_nt(Rbt,this)))}function rwt(t,e){var[r,n,i,a]=t;switch(e){case 90:return[1-n-a,r,a,i];case 180:return[1-r-i,1-n-a,i,a];case 270:return[n,1-r-i,a,i]}return[r,n,i,a]}function nwt(t){Lst._keyboardManager.exec(this,t)}function iwt(t){if(_nt(Cbt,this)){var e=window.getSelection();t?e.setPosition(_nt(Cbt,this),_nt(Pbt,this)):e.setPosition(_nt(Dbt,this),_nt(Fbt,this))}}function awt(){return _nt(zbt,this)?this.rotation:0}function swt(){if(_nt(zbt,this))return null;var[t,e]=this.pageDimensions,[r,n]=this.pageTranslation,i=_nt(Ibt,this),a=new Float32Array(8*i.length),s=0;for(var{x:o,y:l,width:h,height:c}of i){var u=o*t+r,d=(1-l)*e+n;a[s]=a[s+4]=u,a[s+1]=a[s+3]=d,a[s+2]=a[s+6]=u+h*t,a[s+5]=a[s+7]=d-c*e,s+=8}return a}function owt(t){return _nt(jbt,this).serialize(t,bnt(qbt,this,awt).call(this))}function lwt(t,e){this._freeHighlight.add(e)&&t.drawLayer.updateProperties(this._freeHighlightId,{path:{d:this._freeHighlight.toSVGPath()}})}function hwt(t,e){this._freeHighlight.isEmpty()?t.drawLayer.remove(this._freeHighlightId):t.createAndAddNewEditor(e,!1,{highlightId:this._freeHighlightId,highlightOutlines:this._freeHighlight.getOutlines(),clipPathId:this._freeHighlightClipId,methodOfCreation:"main_toolbar"}),this._freeHighlightId=-1,this._freeHighlight=null,this._freeHighlightClipId=""}function cwt(t){var{color:e}=this._initialData;return t.color.some(((t,r)=>t!==e[r]))}Lst=Xbt,Tnt(Xbt,"_defaultColor",null),Tnt(Xbt,"_defaultOpacity",1),Tnt(Xbt,"_defaultThickness",12),Tnt(Xbt,"_type","highlight"),Tnt(Xbt,"_editorType",eot.HIGHLIGHT),Tnt(Xbt,"_freeHighlightId",-1),Tnt(Xbt,"_freeHighlight",null),Tnt(Xbt,"_freeHighlightClipId","");var uwt=new WeakMap;class dwt{constructor(){knt(this,uwt,Object.create(null))}updateProperty(t,e){this[t]=e,this.updateSVGProperty(t,e)}updateProperties(t){if(t)for(var[e,r]of Object.entries(t))this.updateProperty(e,r)}updateSVGProperty(t,e){_nt(uwt,this)[t]=e}toSVGProperties(){var t=_nt(uwt,this);return Snt(uwt,this,Object.create(null)),{root:t}}reset(){Snt(uwt,this,Object.create(null))}updateAll(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this;this.updateProperties(t)}clone(){Uot("Not implemented")}}var pwt=new WeakMap,fwt=new WeakMap,gwt=new WeakSet;class vwt extends jut{constructor(t){super(t),Mnt(this,gwt),knt(this,pwt,null),knt(this,fwt,void 0),Tnt(this,"_drawId",null),Snt(fwt,this,t.mustBeCommitted||!1),t.drawOutlines&&(bnt(gwt,this,mwt).call(this,t),bnt(gwt,this,wwt).call(this))}static _mergeSVGProperties(t,e){var r=new Set(Object.keys(t));for(var[n,i]of Object.entries(e))r.has(n)?Object.assign(t[n],i):t[n]=i;return t}static getDefaultDrawingOptions(t){Uot("Not implemented")}static get typesMap(){Uot("Not implemented")}static get isDrawer(){return!0}static get supportMultipleDrawings(){return!1}static updateDefaultParams(t,e){var r=this.typesMap.get(t);r&&this._defaultDrawingOptions.updateProperty(r,e),this._currentParent&&(Swt._.updateProperty(r,e),this._currentParent.drawLayer.updateProperties(this._currentDrawId,this._defaultDrawingOptions.toSVGProperties()))}updateParams(t,e){var r=this.constructor.typesMap.get(t);r&&this._updateProperty(t,r,e)}static get defaultPropertiesToUpdate(){var t=[],e=this._defaultDrawingOptions;for(var[r,n]of this.typesMap)t.push([r,e[n]]);return t}get propertiesToUpdate(){var t=[],{_drawingOptions:e}=this;for(var[r,n]of this.constructor.typesMap)t.push([r,e[n]]);return t}_updateProperty(t,e,r){var n=this._drawingOptions,i=n[e],a=t=>{var r;n.updateProperty(e,t);var i=_nt(pwt,this).updateProperty(e,t);i&&bnt(gwt,this,_wt).call(this,i),null===(r=this.parent)||void 0===r||r.drawLayer.updateProperties(this._drawId,n.toSVGProperties())};this.addCommands({cmd:a.bind(this,r),undo:a.bind(this,i),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:t,overwriteIfSameType:!0,keepUndo:!0})}_onResizing(){var t;null===(t=this.parent)||void 0===t||t.drawLayer.updateProperties(this._drawId,vwt._mergeSVGProperties(_nt(pwt,this).getPathResizingSVGProperties(bnt(gwt,this,Awt).call(this)),{bbox:bnt(gwt,this,kwt).call(this)}))}_onResized(){var t;null===(t=this.parent)||void 0===t||t.drawLayer.updateProperties(this._drawId,vwt._mergeSVGProperties(_nt(pwt,this).getPathResizedSVGProperties(bnt(gwt,this,Awt).call(this)),{bbox:bnt(gwt,this,kwt).call(this)}))}_onTranslating(t,e){var r;null===(r=this.parent)||void 0===r||r.drawLayer.updateProperties(this._drawId,{bbox:bnt(gwt,this,kwt).call(this,t,e)})}_onTranslated(){var t;null===(t=this.parent)||void 0===t||t.drawLayer.updateProperties(this._drawId,vwt._mergeSVGProperties(_nt(pwt,this).getPathTranslatedSVGProperties(bnt(gwt,this,Awt).call(this),this.parentDimensions),{bbox:bnt(gwt,this,kwt).call(this)}))}_onStartDragging(){var t;null===(t=this.parent)||void 0===t||t.drawLayer.updateProperties(this._drawId,{rootClass:{moving:!0}})}_onStopDragging(){var t;null===(t=this.parent)||void 0===t||t.drawLayer.updateProperties(this._drawId,{rootClass:{moving:!1}})}commit(){super.commit(),this.disableEditMode(),this.disableEditing()}disableEditing(){super.disableEditing(),this.div.classList.toggle("disabled",!0)}enableEditing(){super.enableEditing(),this.div.classList.toggle("disabled",!1)}getBaseTranslation(){return[0,0]}get isResizable(){return!0}onceAdded(t){this.annotationElementId||this.parent.addUndoableEditor(this),this._isDraggable=!0,_nt(fwt,this)&&(Snt(fwt,this,!1),this.commit(),this.parent.setSelected(this),t&&this.isOnScreen&&this.div.focus())}remove(){bnt(gwt,this,bwt).call(this),super.remove()}rebuild(){this.parent&&(super.rebuild(),null!==this.div&&(bnt(gwt,this,wwt).call(this),bnt(gwt,this,_wt).call(this,_nt(pwt,this).box),this.isAttachedToDOM||this.parent.add(this)))}setParent(t){var e=!1;if(this.parent&&!t)this._uiManager.removeShouldRescale(this),bnt(gwt,this,bwt).call(this);else if(t){var r;this._uiManager.addShouldRescale(this),bnt(gwt,this,wwt).call(this,t),e=!this.parent&&(null===(r=this.div)||void 0===r?void 0:r.classList.contains("selectedEditor"))}super.setParent(t),e&&this.select()}rotate(){this.parent&&this.parent.drawLayer.updateProperties(this._drawId,vwt._mergeSVGProperties({bbox:bnt(gwt,this,kwt).call(this)},_nt(pwt,this).updateRotation((this.parentRotation-this.rotation+360)%360)))}onScaleChanging(){this.parent&&bnt(gwt,this,_wt).call(this,_nt(pwt,this).updateParentDimensions(this.parentDimensions,this.parent.scale))}static onScaleChangingWhenDrawing(){}render(){if(this.div)return this.div;var t=super.render();t.classList.add("draw");var e=document.createElement("div");t.append(e),e.setAttribute("aria-hidden","true"),e.className="internal";var[r,n]=this.parentDimensions;return this.setDims(this.width*r,this.height*n),this._uiManager.addShouldRescale(this),this.disableEditing(),t}static createDrawerInstance(t,e,r,n,i){Uot("Not implemented")}static startDrawing(t,e,r,n){var i,a,{target:s,offsetX:o,offsetY:l,pointerId:h,pointerType:c}=n;if(!Cwt._||Cwt._===c){var{viewport:{rotation:u}}=t,{width:d,height:p}=s.getBoundingClientRect(),f=Ewt._=new AbortController,g=t.combinedSignal(f);Twt._||(Twt._=h),null!==(i=Cwt._)&&void 0!==i||(Cwt._=c),window.addEventListener("pointerup",(t=>{var e;Twt._===t.pointerId?this._endDraw(t):null===(e=Pwt._)||void 0===e||e.delete(t.pointerId)}),{signal:g}),window.addEventListener("pointercancel",(t=>{var e;Twt._===t.pointerId?this._currentParent.endDrawingSession():null===(e=Pwt._)||void 0===e||e.delete(t.pointerId)}),{signal:g}),window.addEventListener("pointerdown",(t=>{Cwt._===t.pointerType&&((Pwt._||(Pwt._=new Set)).add(t.pointerId),Swt._.isCancellable()&&(Swt._.removeLastElement(),Swt._.isEmpty()?this._currentParent.endDrawingSession(!0):this._endDraw(null)))}),{capture:!0,passive:!1,signal:g}),window.addEventListener("contextmenu",klt,{signal:g}),s.addEventListener("pointermove",this._drawMove.bind(this),{signal:g}),s.addEventListener("touchmove",(t=>{t.timeStamp===Iwt._&&Slt(t)}),{signal:g}),t.toggleDrawing(),null===(a=e._editorUndoBar)||void 0===a||a.hide(),Swt._?t.drawLayer.updateProperties(this._currentDrawId,Swt._.startNew(o,l,d,p,u)):(e.updateUIForDefaultProperties(this),Swt._=this.createDrawerInstance(o,l,d,p,u),Mwt._=this.getDefaultDrawingOptions(),this._currentParent=t,({id:this._currentDrawId}=t.drawLayer.draw(this._mergeSVGProperties(Mwt._.toSVGProperties(),Swt._.defaultSVGProperties),!0,!1)))}}static _drawMove(t){var e;if(Iwt._=-1,Swt._){var{offsetX:r,offsetY:n,pointerId:i}=t;Twt._===i&&((null===(e=Pwt._)||void 0===e?void 0:e.size)>=1?this._endDraw(t):(this._currentParent.drawLayer.updateProperties(this._currentDrawId,Swt._.add(r,n)),Iwt._=t.timeStamp,Slt(t)))}}static _cleanup(t){t&&(this._currentDrawId=-1,this._currentParent=null,Swt._=null,Mwt._=null,Cwt._=null,Iwt._=NaN),Ewt._&&(Ewt._.abort(),Ewt._=null,Twt._=NaN,Pwt._=null)}static _endDraw(t){var e=this._currentParent;if(e)if(e.toggleDrawing(!0),this._cleanup(!1),t&&e.drawLayer.updateProperties(this._currentDrawId,Swt._.end(t.offsetX,t.offsetY)),this.supportMultipleDrawings){var r=Swt._,n=this._currentDrawId,i=r.getLastElement();e.addCommands({cmd:()=>{e.drawLayer.updateProperties(n,r.setLastElement(i))},undo:()=>{e.drawLayer.updateProperties(n,r.removeLastElement())},mustExec:!1,type:rot.DRAW_STEP})}else this.endDrawing(!1)}static endDrawing(t){var e=this._currentParent;if(!e)return null;if(e.toggleDrawing(!0),e.cleanUndoStack(rot.DRAW_STEP),!Swt._.isEmpty()){var{pageDimensions:[r,n],scale:i}=e,a=e.createAndAddNewEditor({offsetX:0,offsetY:0},!1,{drawId:this._currentDrawId,drawOutlines:Swt._.getOutlines(r*i,n*i,i,this._INNER_MARGIN),drawingOptions:Mwt._,mustBeCommitted:!t});return this._cleanup(!0),a}return e.drawLayer.remove(this._currentDrawId),this._cleanup(!0),null}createDrawingOptions(t){}static deserializeDraw(t,e,r,n,i,a){Uot("Not implemented")}static deserialize(t,e,r){var n=()=>super.deserialize,i=this;return xnt((function*(){var{rawDims:{pageWidth:a,pageHeight:s,pageX:o,pageY:l}}=e.viewport,h=i.deserializeDraw(o,l,a,s,i._INNER_MARGIN,t),c=yield n().call(i,t,e,r);return c.createDrawingOptions(t),bnt(gwt,c,mwt).call(c,{drawOutlines:h}),bnt(gwt,c,wwt).call(c),c.onScaleChanging(),c.rotate(),c}))()}serializeDraw(t){var[e,r]=this.pageTranslation,[n,i]=this.pageDimensions;return _nt(pwt,this).serialize([e,r,n,i],t)}renderAnnotationElement(t){return t.updateEdited({rect:this.getRect(0,0)}),null}static canCreateNewEmptyEditor(){return!1}}function mwt(t){var{drawOutlines:e,drawId:r,drawingOptions:n}=t;Snt(pwt,this,e),this._drawingOptions||(this._drawingOptions=n),r>=0?(this._drawId=r,this.parent.drawLayer.finalizeDraw(r,e.defaultProperties)):this._drawId=bnt(gwt,this,ywt).call(this,e,this.parent),bnt(gwt,this,_wt).call(this,e.box)}function ywt(t,e){var{id:r}=e.drawLayer.draw(Dst._mergeSVGProperties(this._drawingOptions.toSVGProperties(),t.defaultSVGProperties),!1,!1);return r}function bwt(){null!==this._drawId&&this.parent&&(this.parent.drawLayer.remove(this._drawId),this._drawId=null,this._drawingOptions.reset())}function wwt(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.parent;null!==this._drawId&&this.parent===t||(null===this._drawId?(this._drawingOptions.updateAll(),this._drawId=bnt(gwt,this,ywt).call(this,_nt(pwt,this),t)):this.parent.drawLayer.updateParent(this._drawId,t.drawLayer))}function xwt(t){var[e,r,n,i]=t,{parentDimensions:[a,s],rotation:o}=this;switch(o){case 90:return[r,1-e,n*(s/a),i*(a/s)];case 180:return[1-e,1-r,n,i];case 270:return[1-r,e,n*(s/a),i*(a/s)];default:return[e,r,n,i]}}function Awt(){var{x:t,y:e,width:r,height:n,parentDimensions:[i,a],rotation:s}=this;switch(s){case 90:return[1-e,t,r*(i/a),n*(a/i)];case 180:return[1-t,1-e,r,n];case 270:return[e,1-t,r*(i/a),n*(a/i)];default:return[t,e,r,n]}}function _wt(t){if([this.x,this.y,this.width,this.height]=bnt(gwt,this,xwt).call(this,t),this.div){this.fixAndSetPosition();var[e,r]=this.parentDimensions;this.setDims(this.width*e,this.height*r)}this._onResized()}function kwt(){var{x:t,y:e,width:r,height:n,rotation:i,parentRotation:a,parentDimensions:[s,o]}=this;switch((4*i+a)/90){case 1:return[1-e-n,t,n,r];case 2:return[1-t-r,1-e-n,r,n];case 3:return[e,1-t-r,n,r];case 4:return[t,e-r*(s/o),n*(o/s),r*(s/o)];case 5:return[1-e,t,r*(s/o),n*(o/s)];case 6:return[1-t-n*(o/s),1-e,n*(o/s),r*(s/o)];case 7:return[e-r*(s/o),1-t-n*(o/s),r*(s/o),n*(o/s)];case 8:return[t-r,e-n,r,n];case 9:return[1-e,t-r,n,r];case 10:return[1-t,1-e,r,n];case 11:return[e-n,1-t,n,r];case 12:return[t-n*(o/s),e,n*(o/s),r*(s/o)];case 13:return[1-e-r*(s/o),t-n*(o/s),r*(s/o),n*(o/s)];case 14:return[1-t,1-e-r*(s/o),n*(o/s),r*(s/o)];case 15:return[e,1-t,r*(s/o),n*(o/s)];default:return[t,e,r,n]}}Dst=vwt,Tnt(vwt,"_currentDrawId",-1),Tnt(vwt,"_currentParent",null);var Swt={_:null},Ewt={_:null},Mwt={_:null},Twt={_:NaN},Cwt={_:null},Pwt={_:null},Iwt={_:NaN};Tnt(vwt,"_INNER_MARGIN",3);var Rwt=new WeakMap,Owt=new WeakMap,Lwt=new WeakMap,Dwt=new WeakMap,Fwt=new WeakMap,Nwt=new WeakMap,jwt=new WeakMap,Bwt=new WeakMap,zwt=new WeakMap,Wwt=new WeakMap,Uwt=new WeakMap,Hwt=new WeakSet;class Gwt{constructor(t,e,r,n,i,a){Mnt(this,Hwt),knt(this,Rwt,new Float64Array(6)),knt(this,Owt,void 0),knt(this,Lwt,void 0),knt(this,Dwt,void 0),knt(this,Fwt,void 0),knt(this,Nwt,void 0),knt(this,jwt,""),knt(this,Bwt,0),knt(this,zwt,new rxt),knt(this,Wwt,void 0),knt(this,Uwt,void 0),Snt(Wwt,this,r),Snt(Uwt,this,n),Snt(Dwt,this,i),Snt(Fwt,this,a),[t,e]=bnt(Hwt,this,Ywt).call(this,t,e);var s=Snt(Owt,this,[NaN,NaN,NaN,NaN,t,e]);Snt(Nwt,this,[t,e]),Snt(Lwt,this,[{line:s,points:_nt(Nwt,this)}]),_nt(Rwt,this).set(s,0)}updateProperty(t,e){"stroke-width"===t&&Snt(Fwt,this,e)}isEmpty(){return!_nt(Lwt,this)||0===_nt(Lwt,this).length}isCancellable(){return _nt(Nwt,this).length<=10}add(t,e){[t,e]=bnt(Hwt,this,Ywt).call(this,t,e);var[r,n,i,a]=_nt(Rwt,this).subarray(2,6),s=t-i,o=e-a;return Math.hypot(_nt(Wwt,this)*s,_nt(Uwt,this)*o)<=2?null:(_nt(Nwt,this).push(t,e),isNaN(r)?(_nt(Rwt,this).set([i,a,t,e],2),_nt(Owt,this).push(NaN,NaN,NaN,NaN,t,e),{path:{d:this.toSVGPath()}}):(isNaN(_nt(Rwt,this)[0])&&_nt(Owt,this).splice(6,6),_nt(Rwt,this).set([r,n,i,a,t,e],0),_nt(Owt,this).push(...dyt.createBezierPoints(r,n,i,a,t,e)),{path:{d:this.toSVGPath()}}))}end(t,e){var r=this.add(t,e);return r||(2===_nt(Nwt,this).length?{path:{d:this.toSVGPath()}}:null)}startNew(t,e,r,n,i){Snt(Wwt,this,r),Snt(Uwt,this,n),Snt(Dwt,this,i),[t,e]=bnt(Hwt,this,Ywt).call(this,t,e);var a=Snt(Owt,this,[NaN,NaN,NaN,NaN,t,e]);Snt(Nwt,this,[t,e]);var s=_nt(Lwt,this).at(-1);return s&&(s.line=new Float32Array(s.line),s.points=new Float32Array(s.points)),_nt(Lwt,this).push({line:a,points:_nt(Nwt,this)}),_nt(Rwt,this).set(a,0),Snt(Bwt,this,0),this.toSVGPath(),null}getLastElement(){return _nt(Lwt,this).at(-1)}setLastElement(t){return _nt(Lwt,this)?(_nt(Lwt,this).push(t),Snt(Owt,this,t.line),Snt(Nwt,this,t.points),Snt(Bwt,this,0),{path:{d:this.toSVGPath()}}):_nt(zwt,this).setLastElement(t)}removeLastElement(){if(!_nt(Lwt,this))return _nt(zwt,this).removeLastElement();_nt(Lwt,this).pop(),Snt(jwt,this,"");for(var t=0,e=_nt(Lwt,this).length;t<e;t++){var{line:r,points:n}=_nt(Lwt,this)[t];Snt(Owt,this,r),Snt(Nwt,this,n),Snt(Bwt,this,0),this.toSVGPath()}return{path:{d:_nt(jwt,this)}}}toSVGPath(){var t=dyt.svgRound(_nt(Owt,this)[4]),e=dyt.svgRound(_nt(Owt,this)[5]);if(2===_nt(Nwt,this).length)return Snt(jwt,this,"".concat(_nt(jwt,this)," M ").concat(t," ").concat(e," Z")),_nt(jwt,this);if(_nt(Nwt,this).length<=6){var r=_nt(jwt,this).lastIndexOf("M");Snt(jwt,this,"".concat(_nt(jwt,this).slice(0,r)," M ").concat(t," ").concat(e)),Snt(Bwt,this,6)}if(4===_nt(Nwt,this).length){var n=dyt.svgRound(_nt(Owt,this)[10]),i=dyt.svgRound(_nt(Owt,this)[11]);return Snt(jwt,this,"".concat(_nt(jwt,this)," L ").concat(n," ").concat(i)),Snt(Bwt,this,12),_nt(jwt,this)}var a=[];0===_nt(Bwt,this)&&(a.push("M ".concat(t," ").concat(e)),Snt(Bwt,this,6));for(var s=_nt(Bwt,this),o=_nt(Owt,this).length;s<o;s+=6){var[l,h,c,u,d,p]=_nt(Owt,this).slice(s,s+6).map(dyt.svgRound);a.push("C".concat(l," ").concat(h," ").concat(c," ").concat(u," ").concat(d," ").concat(p))}return Snt(jwt,this,_nt(jwt,this)+a.join(" ")),Snt(Bwt,this,_nt(Owt,this).length),_nt(jwt,this)}getOutlines(t,e,r,n){var i=_nt(Lwt,this).at(-1);return i.line=new Float32Array(i.line),i.points=new Float32Array(i.points),_nt(zwt,this).build(_nt(Lwt,this),t,e,r,_nt(Dwt,this),_nt(Fwt,this),n),Snt(Rwt,this,null),Snt(Owt,this,null),Snt(Lwt,this,null),Snt(jwt,this,null),_nt(zwt,this)}get defaultSVGProperties(){return{root:{viewBox:"0 0 10000 10000"},rootClass:{draw:!0},bbox:[0,0,1,1]}}}function Ywt(t,e){return dyt._normalizePoint(t,e,_nt(Wwt,this),_nt(Uwt,this),_nt(Dwt,this))}var Vwt=new WeakMap,qwt=new WeakMap,Xwt=new WeakMap,$wt=new WeakMap,Kwt=new WeakMap,Qwt=new WeakMap,Jwt=new WeakMap,Zwt=new WeakMap,txt=new WeakMap,ext=new WeakSet;class rxt extends dyt{constructor(){super(...arguments),Mnt(this,ext),knt(this,Vwt,void 0),knt(this,qwt,0),knt(this,Xwt,void 0),knt(this,$wt,void 0),knt(this,Kwt,void 0),knt(this,Qwt,void 0),knt(this,Jwt,void 0),knt(this,Zwt,void 0),knt(this,txt,void 0)}build(t,e,r,n,i,a,s){Snt(Kwt,this,e),Snt(Qwt,this,r),Snt(Jwt,this,n),Snt(Zwt,this,i),Snt(txt,this,a),Snt(Xwt,this,null!=s?s:0),Snt($wt,this,t),bnt(ext,this,axt).call(this)}setLastElement(t){return _nt($wt,this).push(t),{path:{d:this.toSVGPath()}}}removeLastElement(){return _nt($wt,this).pop(),{path:{d:this.toSVGPath()}}}toSVGPath(){var t=[];for(var{line:e}of _nt($wt,this))if(t.push("M".concat(dyt.svgRound(e[4])," ").concat(dyt.svgRound(e[5]))),6!==e.length)if(12!==e.length)for(var r=6,n=e.length;r<n;r+=6){var[i,a,s,o,l,h]=e.subarray(r,r+6).map(dyt.svgRound);t.push("C".concat(i," ").concat(a," ").concat(s," ").concat(o," ").concat(l," ").concat(h))}else t.push("L".concat(dyt.svgRound(e[10])," ").concat(dyt.svgRound(e[11])));else t.push("Z");return t.join("")}serialize(t,e){var r,n,i,a,s,o,l,h,c,[u,d,p,f]=t,g=[],v=[],[m,y,b,w]=bnt(ext,this,ixt).call(this);switch(_nt(Zwt,this)){case 0:c=dyt._rescale,r=u,n=d+f,i=p,a=-f,s=u+m*p,o=d+(1-y-w)*f,l=u+(m+b)*p,h=d+(1-y)*f;break;case 90:c=dyt._rescaleAndSwap,r=u,n=d,i=p,a=f,s=u+y*p,o=d+m*f,l=u+(y+w)*p,h=d+(m+b)*f;break;case 180:c=dyt._rescale,r=u+p,n=d,i=-p,a=f,s=u+(1-m-b)*p,o=d+y*f,l=u+(1-m)*p,h=d+(y+w)*f;break;case 270:c=dyt._rescaleAndSwap,r=u+p,n=d+f,i=-p,a=-f,s=u+(1-y-w)*p,o=d+(1-m-b)*f,l=u+(1-y)*p,h=d+(1-m)*f}for(var{line:x,points:A}of _nt($wt,this))g.push(c(x,r,n,i,a,e?new Array(x.length):null)),v.push(c(A,r,n,i,a,e?new Array(A.length):null));return{lines:g,points:v,rect:[s,o,l,h]}}static deserialize(t,e,r,n,i,a){var s,o,l,h,c,{paths:{lines:u,points:d},rotation:p,thickness:f}=a,g=[];switch(p){case 0:c=dyt._rescale,s=-t/r,o=e/n+1,l=1/r,h=-1/n;break;case 90:c=dyt._rescaleAndSwap,s=-e/n,o=-t/r,l=1/n,h=1/r;break;case 180:c=dyt._rescale,s=t/r+1,o=-e/n,l=-1/r,h=1/n;break;case 270:c=dyt._rescaleAndSwap,s=e/n+1,o=t/r+1,l=-1/n,h=-1/r}if(!u)for(var v of(u=[],d)){var m=v.length;if(2!==m)if(4!==m){var y=new Float32Array(3*(m-2));u.push(y);var[b,w,x,A]=v.subarray(0,4);y.set([NaN,NaN,NaN,NaN,b,w],0);for(var _=4;_<m;_+=2){var k=v[_],S=v[_+1];y.set(dyt.createBezierPoints(b,w,x,A,k,S),3*(_-2)),[b,w,x,A]=[x,A,k,S]}}else u.push(new Float32Array([NaN,NaN,NaN,NaN,v[0],v[1],NaN,NaN,NaN,NaN,v[2],v[3]]));else u.push(new Float32Array([NaN,NaN,NaN,NaN,v[0],v[1]]))}for(var E=0,M=u.length;E<M;E++)g.push({line:c(u[E].map((t=>null!=t?t:NaN)),s,o,l,h),points:c(d[E].map((t=>null!=t?t:NaN)),s,o,l,h)});var T=new rxt;return T.build(g,r,n,1,p,f,i),T}get box(){return _nt(Vwt,this)}updateProperty(t,e){return"stroke-width"===t?bnt(ext,this,sxt).call(this,e):null}updateParentDimensions(t,e){var[r,n]=t,[i,a]=bnt(ext,this,nxt).call(this);Snt(Kwt,this,r),Snt(Qwt,this,n),Snt(Jwt,this,e);var[s,o]=bnt(ext,this,nxt).call(this),l=s-i,h=o-a,c=_nt(Vwt,this);return c[0]-=l,c[1]-=h,c[2]+=2*l,c[3]+=2*h,c}updateRotation(t){return Snt(qwt,this,t),{path:{transform:this.rotationTransform}}}get viewBox(){return _nt(Vwt,this).map(dyt.svgRound).join(" ")}get defaultProperties(){var[t,e]=_nt(Vwt,this);return{root:{viewBox:this.viewBox},path:{"transform-origin":"".concat(dyt.svgRound(t)," ").concat(dyt.svgRound(e))}}}get rotationTransform(){var[,,t,e]=_nt(Vwt,this),r=0,n=0,i=0,a=0,s=0,o=0;switch(_nt(qwt,this)){case 90:n=e/t,i=-t/e,s=t;break;case 180:r=-1,a=-1,s=t,o=e;break;case 270:n=-e/t,i=t/e,o=e;break;default:return""}return"matrix(".concat(r," ").concat(n," ").concat(i," ").concat(a," ").concat(dyt.svgRound(s)," ").concat(dyt.svgRound(o),")")}getPathResizingSVGProperties(t){var[e,r,n,i]=t,[a,s]=bnt(ext,this,nxt).call(this),[o,l,h,c]=_nt(Vwt,this);if(Math.abs(h-a)<=dyt.PRECISION||Math.abs(c-s)<=dyt.PRECISION){var u=e+n/2-(o+h/2),d=r+i/2-(l+c/2);return{path:{"transform-origin":"".concat(dyt.svgRound(e)," ").concat(dyt.svgRound(r)),transform:"".concat(this.rotationTransform," translate(").concat(u," ").concat(d,")")}}}var p=(n-2*a)/(h-2*a),f=(i-2*s)/(c-2*s),g=h/n,v=c/i;return{path:{"transform-origin":"".concat(dyt.svgRound(o)," ").concat(dyt.svgRound(l)),transform:"".concat(this.rotationTransform," scale(").concat(g," ").concat(v,") ")+"translate(".concat(dyt.svgRound(a)," ").concat(dyt.svgRound(s),") scale(").concat(p," ").concat(f,") ")+"translate(".concat(dyt.svgRound(-a)," ").concat(dyt.svgRound(-s),")")}}}getPathResizedSVGProperties(t){var[e,r,n,i]=t,[a,s]=bnt(ext,this,nxt).call(this),o=_nt(Vwt,this),[l,h,c,u]=o;if(o[0]=e,o[1]=r,o[2]=n,o[3]=i,Math.abs(c-a)<=dyt.PRECISION||Math.abs(u-s)<=dyt.PRECISION){var d=e+n/2-(l+c/2),p=r+i/2-(h+u/2);for(var{line:f,points:g}of _nt($wt,this))dyt._translate(f,d,p,f),dyt._translate(g,d,p,g);return{root:{viewBox:this.viewBox},path:{"transform-origin":"".concat(dyt.svgRound(e)," ").concat(dyt.svgRound(r)),transform:this.rotationTransform||null,d:this.toSVGPath()}}}var v=(n-2*a)/(c-2*a),m=(i-2*s)/(u-2*s),y=-v*(l+a)+e+a,b=-m*(h+s)+r+s;if(1!==v||1!==m||0!==y||0!==b)for(var{line:w,points:x}of _nt($wt,this))dyt._rescale(w,y,b,v,m,w),dyt._rescale(x,y,b,v,m,x);return{root:{viewBox:this.viewBox},path:{"transform-origin":"".concat(dyt.svgRound(e)," ").concat(dyt.svgRound(r)),transform:this.rotationTransform||null,d:this.toSVGPath()}}}getPathTranslatedSVGProperties(t,e){var[r,n]=t,[i,a]=e,s=_nt(Vwt,this),o=r-s[0],l=n-s[1];if(_nt(Kwt,this)===i&&_nt(Qwt,this)===a)for(var{line:h,points:c}of _nt($wt,this))dyt._translate(h,o,l,h),dyt._translate(c,o,l,c);else{var u=_nt(Kwt,this)/i,d=_nt(Qwt,this)/a;for(var{line:p,points:f}of(Snt(Kwt,this,i),Snt(Qwt,this,a),_nt($wt,this)))dyt._rescale(p,o,l,u,d,p),dyt._rescale(f,o,l,u,d,f);s[2]*=u,s[3]*=d}return s[0]=r,s[1]=n,{root:{viewBox:this.viewBox},path:{d:this.toSVGPath(),"transform-origin":"".concat(dyt.svgRound(r)," ").concat(dyt.svgRound(n))}}}get defaultSVGProperties(){var t=_nt(Vwt,this);return{root:{viewBox:this.viewBox},rootClass:{draw:!0},path:{d:this.toSVGPath(),"transform-origin":"".concat(dyt.svgRound(t[0])," ").concat(dyt.svgRound(t[1])),transform:this.rotationTransform||null},bbox:t}}}function nxt(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:_nt(txt,this),e=_nt(Xwt,this)+t/2*_nt(Jwt,this);return _nt(Zwt,this)%180==0?[e/_nt(Kwt,this),e/_nt(Qwt,this)]:[e/_nt(Qwt,this),e/_nt(Kwt,this)]}function ixt(){var[t,e,r,n]=_nt(Vwt,this),[i,a]=bnt(ext,this,nxt).call(this,0);return[t+i,e+a,r-2*i,n-2*a]}function axt(){var t=Snt(Vwt,this,new Float32Array([1/0,1/0,-1/0,-1/0]));for(var{line:e}of _nt($wt,this))if(e.length<=12)for(var r=4,n=e.length;r<n;r+=6){var[i,a]=e.subarray(r,r+2);t[0]=Math.min(t[0],i),t[1]=Math.min(t[1],a),t[2]=Math.max(t[2],i),t[3]=Math.max(t[3],a)}else for(var s=e[4],o=e[5],l=6,h=e.length;l<h;l+=6){var[c,u,d,p,f,g]=e.subarray(l,l+6);alt.bezierBoundingBox(s,o,c,u,d,p,f,g,t),s=f,o=g}var[v,m]=bnt(ext,this,nxt).call(this);t[0]=Math.min(1,Math.max(0,t[0]-v)),t[1]=Math.min(1,Math.max(0,t[1]-m)),t[2]=Math.min(1,Math.max(0,t[2]+v)),t[3]=Math.min(1,Math.max(0,t[3]+m)),t[2]-=t[0],t[3]-=t[1]}function sxt(t){var[e,r]=bnt(ext,this,nxt).call(this);Snt(txt,this,t);var[n,i]=bnt(ext,this,nxt).call(this),[a,s]=[n-e,i-r],o=_nt(Vwt,this);return o[0]-=a,o[1]-=s,o[2]+=2*a,o[3]+=2*s,o}var oxt=new WeakMap;class lxt extends dwt{constructor(t){super(),knt(this,oxt,void 0),Snt(oxt,this,t),super.updateProperties({fill:"none",stroke:jut._defaultLineColor,"stroke-opacity":1,"stroke-width":1,"stroke-linecap":"round","stroke-linejoin":"round","stroke-miterlimit":10})}updateSVGProperty(t,e){"stroke-width"===t&&(null!=e||(e=this["stroke-width"]),e*=_nt(oxt,this).realScale),super.updateSVGProperty(t,e)}clone(){var t=new lxt(_nt(oxt,this));return t.updateAll(this),t}}var hxt=new WeakSet;class cxt extends vwt{constructor(t){super(Pnt(Pnt({},t),{},{name:"inkEditor"})),Mnt(this,hxt),this._willKeepAspectRatio=!0}static initialize(t,e){jut.initialize(t,e),this._defaultDrawingOptions=new lxt(e.viewParameters)}static getDefaultDrawingOptions(t){var e=this._defaultDrawingOptions.clone();return e.updateProperties(t),e}static get supportMultipleDrawings(){return!0}static get typesMap(){return Yot(this,"typesMap",new Map([[rot.INK_THICKNESS,"stroke-width"],[rot.INK_COLOR,"stroke"],[rot.INK_OPACITY,"stroke-opacity"]]))}static createDrawerInstance(t,e,r,n,i){return new Gwt(t,e,r,n,i,this._defaultDrawingOptions["stroke-width"])}static deserializeDraw(t,e,r,n,i,a){return rxt.deserialize(t,e,r,n,i,a)}static deserialize(t,e,r){var n=()=>super.deserialize,i=this;return xnt((function*(){var a=null;if(t instanceof Cmt){var{data:{inkLists:s,rect:o,rotation:l,id:h,color:c,opacity:u,borderStyle:{rawWidth:d},popupRef:p},parent:{page:{pageNumber:f}}}=t;a=t={annotationType:eot.INK,color:Array.from(c),thickness:d,opacity:u,paths:{points:s},boxes:null,pageIndex:f-1,rect:o.slice(0),rotation:l,id:h,deleted:!1,popupRef:p}}var g=yield n().call(i,t,e,r);return g.annotationElementId=t.id||null,g._initialData=a,g}))()}onScaleChanging(){if(this.parent){super.onScaleChanging();var{_drawId:t,_drawingOptions:e,parent:r}=this;e.updateSVGProperty("stroke-width"),r.drawLayer.updateProperties(t,e.toSVGProperties())}}static onScaleChangingWhenDrawing(){var t=this._currentParent;t&&(super.onScaleChangingWhenDrawing(),this._defaultDrawingOptions.updateSVGProperty("stroke-width"),t.drawLayer.updateProperties(this._currentDrawId,this._defaultDrawingOptions.toSVGProperties()))}createDrawingOptions(t){var{color:e,thickness:r,opacity:n}=t;this._drawingOptions=cxt.getDefaultDrawingOptions({stroke:alt.makeHexColor(...e),"stroke-width":r,"stroke-opacity":n})}serialize(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this.isEmpty())return null;if(this.deleted)return this.serializeDeleted();var{lines:e,points:r,rect:n}=this.serializeDraw(t),{_drawingOptions:{stroke:i,"stroke-opacity":a,"stroke-width":s}}=this,o={annotationType:eot.INK,color:jut._colorManager.convert(i),opacity:a,thickness:s,paths:{lines:e,points:r},pageIndex:this.pageIndex,rect:n,rotation:this.rotation,structTreeParentId:this._structTreeParentId};return t?o:this.annotationElementId&&!bnt(hxt,this,uxt).call(this,o)?null:(o.id=this.annotationElementId,o)}renderAnnotationElement(t){var{points:e,rect:r}=this.serializeDraw(!1);return t.updateEdited({rect:r,thickness:this._drawingOptions["stroke-width"],points:e}),null}}function uxt(t){var{color:e,thickness:r,opacity:n,pageIndex:i}=this._initialData;return this._hasBeenMoved||this._hasBeenResized||t.color.some(((t,r)=>t!==e[r]))||t.thickness!==r||t.opacity!==n||t.pageIndex!==i}Tnt(cxt,"_type","ink"),Tnt(cxt,"_editorType",eot.INK),Tnt(cxt,"_defaultDrawingOptions",null);var dxt=new WeakMap,pxt=new WeakMap,fxt=new WeakMap,gxt=new WeakMap,vxt=new WeakMap,mxt=new WeakMap,yxt=new WeakMap,bxt=new WeakMap,wxt=new WeakMap,xxt=new WeakMap,Axt=new WeakSet;class _xt extends jut{constructor(t){super(Pnt(Pnt({},t),{},{name:"stampEditor"})),Mnt(this,Axt),knt(this,dxt,null),knt(this,pxt,null),knt(this,fxt,null),knt(this,gxt,null),knt(this,vxt,null),knt(this,mxt,""),knt(this,yxt,null),knt(this,bxt,null),knt(this,wxt,!1),knt(this,xxt,!1),Snt(gxt,this,t.bitmapUrl),Snt(vxt,this,t.bitmapFile)}static initialize(t,e){jut.initialize(t,e)}static get supportedTypes(){return Yot(this,"supportedTypes",["apng","avif","bmp","gif","jpeg","png","svg+xml","webp","x-icon"].map((t=>"image/".concat(t))))}static get supportedTypesStr(){return Yot(this,"supportedTypesStr",this.supportedTypes.join(","))}static isHandlingMimeForPasting(t){return this.supportedTypes.includes(t)}static paste(t,e){e.pasteEditor(eot.STAMP,{bitmapFile:t.getAsFile()})}altTextFinish(){this._uiManager.useNewAltTextFlow&&(this.div.hidden=!1),super.altTextFinish()}get telemetryFinalData(){var t;return{type:"stamp",hasAltText:!(null===(t=this.altTextData)||void 0===t||!t.altText)}}static computeTelemetryFinalData(t){var e,r,n=t.get("hasAltText");return{hasAltText:null!==(e=n.get(!0))&&void 0!==e?e:0,hasNoAltText:null!==(r=n.get(!1))&&void 0!==r?r:0}}mlGuessAltText(){var t=arguments,e=this;return xnt((function*(){var r=t.length>0&&void 0!==t[0]?t[0]:null,n=!(t.length>1&&void 0!==t[1])||t[1];if(e.hasAltTextData())return null;var{mlManager:i}=e._uiManager;if(!i)throw new Error("No ML.");if(!(yield i.isEnabledFor("altText")))throw new Error("ML isn't enabled for alt text.");var{data:a,width:s,height:o}=r||e.copyCanvas(null,null,!0).imageData,l=yield i.guess({name:"altText",request:{data:a,width:s,height:o,channels:a.length/(s*o)}});if(!l)throw new Error("No response from the AI service.");if(l.error)throw new Error("Error from the AI service.");if(l.cancel)return null;if(!l.output)throw new Error("No valid response from the AI service.");var h=l.output;return yield e.setGuessedAltText(h),n&&!e.hasAltTextData()&&(e.altTextData={alt:h,decorative:!1}),h}))()}remove(){var t;_nt(pxt,this)&&(Snt(dxt,this,null),this._uiManager.imageManager.deleteId(_nt(pxt,this)),null===(t=_nt(yxt,this))||void 0===t||t.remove(),Snt(yxt,this,null),_nt(bxt,this)&&(clearTimeout(_nt(bxt,this)),Snt(bxt,this,null)));super.remove()}rebuild(){this.parent?(super.rebuild(),null!==this.div&&(_nt(pxt,this)&&null===_nt(yxt,this)&&bnt(Axt,this,Ext).call(this),this.isAttachedToDOM||this.parent.add(this))):_nt(pxt,this)&&bnt(Axt,this,Ext).call(this)}onceAdded(t){this._isDraggable=!0,t&&this.div.focus()}isEmpty(){return!(_nt(fxt,this)||_nt(dxt,this)||_nt(gxt,this)||_nt(vxt,this)||_nt(pxt,this))}get isResizable(){return!0}render(){if(this.div)return this.div;var t,e;if(this.width&&(t=this.x,e=this.y),super.render(),this.div.hidden=!0,this.div.setAttribute("role","figure"),this.addAltTextButton(),_nt(dxt,this)?bnt(Axt,this,Mxt).call(this):bnt(Axt,this,Ext).call(this),this.width&&!this.annotationElementId){var[r,n]=this.parentDimensions;this.setAt(t*r,e*n,this.width*r,this.height*n)}return this._uiManager.addShouldRescale(this),this.div}_onResized(){this.onScaleChanging()}onScaleChanging(){if(this.parent){null!==_nt(bxt,this)&&clearTimeout(_nt(bxt,this));Snt(bxt,this,setTimeout((()=>{Snt(bxt,this,null),bnt(Axt,this,Cxt).call(this)}),200))}}copyCanvas(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];t||(t=224);var{width:n,height:i}=_nt(dxt,this),a=new Olt,s=_nt(dxt,this),o=n,l=i,h=null;if(e){var c,u;if(n>e||i>e){var d=Math.min(e/n,e/i);o=Math.floor(n*d),l=Math.floor(i*d)}var p=(h=document.createElement("canvas")).width=Math.ceil(o*a.sx),f=h.height=Math.ceil(l*a.sy);_nt(wxt,this)||(s=bnt(Axt,this,Txt).call(this,p,f));var g=h.getContext("2d");g.filter=this._uiManager.hcmFilter;var v="white",m="#cfcfd8";"none"!==this._uiManager.hcmFilter?m="black":null!==(c=(u=window).matchMedia)&&void 0!==c&&c.call(u,"(prefers-color-scheme: dark)").matches&&(v="#8f8f9d",m="#42414d");var y=15*a.sx,b=15*a.sy,w=new OffscreenCanvas(2*y,2*b),x=w.getContext("2d");x.fillStyle=v,x.fillRect(0,0,2*y,2*b),x.fillStyle=m,x.fillRect(0,0,y,b),x.fillRect(y,b,y,b),g.fillStyle=g.createPattern(w,"repeat"),g.fillRect(0,0,p,f),g.drawImage(s,0,0,s.width,s.height,0,0,p,f)}var A=null;if(r){var _,k;if(a.symmetric&&s.width<t&&s.height<t)_=s.width,k=s.height;else if(s=_nt(dxt,this),n>t||i>t){var S=Math.min(t/n,t/i);_=Math.floor(n*S),k=Math.floor(i*S),_nt(wxt,this)||(s=bnt(Axt,this,Txt).call(this,_,k))}var E=new OffscreenCanvas(_,k).getContext("2d",{willReadFrequently:!0});E.drawImage(s,0,0,s.width,s.height,0,0,_,k),A={width:_,height:k,data:E.getImageData(0,0,_,k).data}}return{canvas:h,width:o,height:l,imageData:A}}getImageForAltText(){return _nt(yxt,this)}static deserialize(t,e,r){var n=()=>super.deserialize,i=this;return xnt((function*(){var a=null;if(t instanceof Dmt){var s,{data:{rect:o,rotation:l,id:h,structParent:c,popupRef:u},container:d,parent:{page:{pageNumber:p}}}=t,f=d.querySelector("canvas"),g=r.imageManager.getFromCanvas(d.id,f);f.remove();var v=(null===(s=yield e._structTree.getAriaAttributes("".concat(ult).concat(h)))||void 0===s?void 0:s.get("aria-label"))||"";a=t={annotationType:eot.STAMP,bitmapId:g.id,bitmap:g.bitmap,pageIndex:p-1,rect:o.slice(0),rotation:l,id:h,deleted:!1,accessibilityData:{decorative:!1,altText:v},isSvg:!1,structParent:c,popupRef:u}}var m=yield n().call(i,t,e,r),{rect:y,bitmap:b,bitmapUrl:w,bitmapId:x,isSvg:A,accessibilityData:_}=t;x&&r.imageManager.isValidId(x)?(Snt(pxt,m,x),b&&Snt(dxt,m,b)):Snt(gxt,m,w),Snt(wxt,m,A);var[k,S]=m.pageDimensions;return m.width=(y[2]-y[0])/k,m.height=(y[3]-y[1])/S,m.annotationElementId=t.id||null,_&&(m.altTextData=_),m._initialData=a,Snt(xxt,m,!!a),m}))()}serialize(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(this.isEmpty())return null;if(this.deleted)return this.serializeDeleted();var r={annotationType:eot.STAMP,bitmapId:_nt(pxt,this),pageIndex:this.pageIndex,rect:this.getRect(0,0),rotation:this.rotation,isSvg:_nt(wxt,this),structTreeParentId:this._structTreeParentId};if(t)return r.bitmapUrl=bnt(Axt,this,Pxt).call(this,!0),r.accessibilityData=this.serializeAltText(!0),r;var{decorative:n,altText:i}=this.serializeAltText(!1);if(!n&&i&&(r.accessibilityData={type:"Figure",alt:i}),this.annotationElementId){var a,s=bnt(Axt,this,Ixt).call(this,r);if(s.isSame)return null;if(s.isSameAltText)delete r.accessibilityData;else r.accessibilityData.structParent=null!==(a=this._initialData.structParent)&&void 0!==a?a:-1}if(r.id=this.annotationElementId,null===e)return r;e.stamps||(e.stamps=new Map);var o=_nt(wxt,this)?(r.rect[2]-r.rect[0])*(r.rect[3]-r.rect[1]):null;if(e.stamps.has(_nt(pxt,this))){if(_nt(wxt,this)){var l=e.stamps.get(_nt(pxt,this));o>l.area&&(l.area=o,l.serialized.bitmap.close(),l.serialized.bitmap=bnt(Axt,this,Pxt).call(this,!1))}}else e.stamps.set(_nt(pxt,this),{area:o,serialized:r}),r.bitmap=bnt(Axt,this,Pxt).call(this,!1);return r}renderAnnotationElement(t){return t.updateEdited({rect:this.getRect(0,0)}),null}}function kxt(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];t?(Snt(dxt,this,t.bitmap),e||(Snt(pxt,this,t.id),Snt(wxt,this,t.isSvg)),t.file&&Snt(mxt,this,t.file.name),bnt(Axt,this,Mxt).call(this)):this.remove()}function Sxt(){if(Snt(fxt,this,null),this._uiManager.enableWaiting(!1),_nt(yxt,this)){if(this._uiManager.useNewAltTextWhenAddingImage&&this._uiManager.useNewAltTextFlow&&_nt(dxt,this))return this._editToolbar.hide(),void this._uiManager.editAltText(this,!0);if(!this._uiManager.useNewAltTextWhenAddingImage&&this._uiManager.useNewAltTextFlow&&_nt(dxt,this)){this._reportTelemetry({action:"pdfjs.image.image_added",data:{alt_text_modal:!1,alt_text_type:"empty"}});try{this.mlGuessAltText()}catch(t){}}this.div.focus()}}function Ext(){var t=this;if(_nt(pxt,this))return this._uiManager.enableWaiting(!0),void this._uiManager.imageManager.getFromId(_nt(pxt,this)).then((t=>bnt(Axt,this,kxt).call(this,t,!0))).finally((()=>bnt(Axt,this,Sxt).call(this)));if(_nt(gxt,this)){var e=_nt(gxt,this);return Snt(gxt,this,null),this._uiManager.enableWaiting(!0),void Snt(fxt,this,this._uiManager.imageManager.getFromUrl(e).then((t=>bnt(Axt,this,kxt).call(this,t))).finally((()=>bnt(Axt,this,Sxt).call(this))))}if(_nt(vxt,this)){var r=_nt(vxt,this);return Snt(vxt,this,null),this._uiManager.enableWaiting(!0),void Snt(fxt,this,this._uiManager.imageManager.getFromFile(r).then((t=>bnt(Axt,this,kxt).call(this,t))).finally((()=>bnt(Axt,this,Sxt).call(this))))}var n=document.createElement("input");n.type="file",n.accept=Fst.supportedTypesStr;var i=this._uiManager._signal;Snt(fxt,this,new Promise((e=>{n.addEventListener("change",xnt((function*(){if(n.files&&0!==n.files.length){t._uiManager.enableWaiting(!0);var r=yield t._uiManager.imageManager.getFromFile(n.files[0]);t._reportTelemetry({action:"pdfjs.image.image_selected",data:{alt_text_modal:t._uiManager.useNewAltTextFlow}}),bnt(Axt,t,kxt).call(t,r)}else t.remove();e()})),{signal:i}),n.addEventListener("cancel",(()=>{this.remove(),e()}),{signal:i})})).finally((()=>bnt(Axt,this,Sxt).call(this)))),n.click()}function Mxt(){var t,{div:e}=this,{width:r,height:n}=_nt(dxt,this),[i,a]=this.pageDimensions,s=.75;if(this.width)r=this.width*i,n=this.height*a;else if(r>s*i||n>s*a){var o=Math.min(s*i/r,s*a/n);r*=o,n*=o}var[l,h]=this.parentDimensions;this.setDims(r*l/i,n*h/a),this._uiManager.enableWaiting(!1);var c=Snt(yxt,this,document.createElement("canvas"));c.setAttribute("role","img"),this.addContainer(c),this.width=r/i,this.height=n/a,null!==(t=this._initialOptions)&&void 0!==t&&t.isCentered?this.center():this.fixAndSetPosition(),this._initialOptions=null,this._uiManager.useNewAltTextWhenAddingImage&&this._uiManager.useNewAltTextFlow&&!this.annotationElementId||(e.hidden=!1),bnt(Axt,this,Cxt).call(this),_nt(xxt,this)||(this.parent.addUndoableEditor(this),Snt(xxt,this,!0)),this._reportTelemetry({action:"inserted_image"}),_nt(mxt,this)&&c.setAttribute("aria-label",_nt(mxt,this))}function Txt(t,e){for(var{width:r,height:n}=_nt(dxt,this),i=r,a=n,s=_nt(dxt,this);i>2*t||a>2*e;){var o=i,l=a;i>2*t&&(i=i>=16384?Math.floor(i/2)-1:Math.ceil(i/2)),a>2*e&&(a=a>=16384?Math.floor(a/2)-1:Math.ceil(a/2));var h=new OffscreenCanvas(i,a);h.getContext("2d").drawImage(s,0,0,o,l,0,0,i,a),s=h.transferToImageBitmap()}return s}function Cxt(){var[t,e]=this.parentDimensions,{width:r,height:n}=this,i=new Olt,a=Math.ceil(r*t*i.sx),s=Math.ceil(n*e*i.sy),o=_nt(yxt,this);if(o&&(o.width!==a||o.height!==s)){o.width=a,o.height=s;var l=_nt(wxt,this)?_nt(dxt,this):bnt(Axt,this,Txt).call(this,a,s),h=o.getContext("2d");h.filter=this._uiManager.hcmFilter,h.drawImage(l,0,0,l.width,l.height,0,0,a,s)}}function Pxt(t){if(t){if(_nt(wxt,this)){var e=this._uiManager.imageManager.getSvgUrl(_nt(pxt,this));if(e)return e}var r=document.createElement("canvas");return({width:r.width,height:r.height}=_nt(dxt,this)),r.getContext("2d").drawImage(_nt(dxt,this),0,0),r.toDataURL()}if(_nt(wxt,this)){var[n,i]=this.pageDimensions,a=Math.round(this.width*n*plt.PDF_TO_CSS_UNITS),s=Math.round(this.height*i*plt.PDF_TO_CSS_UNITS),o=new OffscreenCanvas(a,s);return o.getContext("2d").drawImage(_nt(dxt,this),0,0,_nt(dxt,this).width,_nt(dxt,this).height,0,0,a,s),o.transferToImageBitmap()}return structuredClone(_nt(dxt,this))}function Ixt(t){var e,{pageIndex:r,accessibilityData:{altText:n}}=this._initialData,i=t.pageIndex===r,a=((null===(e=t.accessibilityData)||void 0===e?void 0:e.alt)||"")===n;return{isSame:!this._hasBeenMoved&&!this._hasBeenResized&&i&&a,isSameAltText:a}}Fst=_xt,Tnt(_xt,"_type","stamp"),Tnt(_xt,"_editorType",eot.STAMP);var Rxt=new WeakMap,Oxt=new WeakMap,Lxt=new WeakMap,Dxt=new WeakMap,Fxt=new WeakMap,Nxt=new WeakMap,jxt=new WeakMap,Bxt=new WeakMap,zxt=new WeakMap,Wxt=new WeakMap,Uxt=new WeakMap,Hxt=new WeakMap,Gxt=new WeakMap,Yxt=new WeakMap,Vxt=new WeakSet;class qxt{constructor(t){var{uiManager:e,pageIndex:r,div:n,structTreeLayer:i,accessibilityManager:a,annotationLayer:s,drawLayer:o,textLayer:l,viewport:h,l10n:c}=t;Mnt(this,Vxt),knt(this,Rxt,void 0),knt(this,Oxt,!1),knt(this,Lxt,null),knt(this,Dxt,null),knt(this,Fxt,null),knt(this,Nxt,new Map),knt(this,jxt,!1),knt(this,Bxt,!1),knt(this,zxt,!1),knt(this,Wxt,null),knt(this,Uxt,null),knt(this,Hxt,null),knt(this,Gxt,null),knt(this,Yxt,void 0);var u=[...Zxt._.values()];if(!qxt._initialized)for(var d of(qxt._initialized=!0,u))d.initialize(c,e);e.registerEditorTypes(u),Snt(Yxt,this,e),this.pageIndex=r,this.div=n,Snt(Rxt,this,a),Snt(Lxt,this,s),this.viewport=h,Snt(Hxt,this,l),this.drawLayer=o,this._structTree=i,_nt(Yxt,this).addLayer(this)}get isEmpty(){return 0===_nt(Nxt,this).size}get isInvisible(){return this.isEmpty&&_nt(Yxt,this).getMode()===eot.NONE}updateToolbar(t){_nt(Yxt,this).updateToolbar(t)}updateMode(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:_nt(Yxt,this).getMode();switch(bnt(Vxt,this,Jxt).call(this),t){case eot.NONE:return this.disableTextSelection(),this.togglePointerEvents(!1),this.toggleAnnotationLayerPointerEvents(!0),void this.disableClick();case eot.INK:this.disableTextSelection(),this.togglePointerEvents(!0),this.enableClick();break;case eot.HIGHLIGHT:this.enableTextSelection(),this.togglePointerEvents(!1),this.disableClick();break;default:this.disableTextSelection(),this.togglePointerEvents(!0),this.enableClick()}this.toggleAnnotationLayerPointerEvents(!1);var{classList:e}=this.div;for(var r of Zxt._.values())e.toggle("".concat(r._type,"Editing"),t===r._editorType);this.div.hidden=!1}hasTextLayer(t){var e;return t===(null===(e=_nt(Hxt,this))||void 0===e?void 0:e.div)}setEditingState(t){_nt(Yxt,this).setEditingState(t)}addCommands(t){_nt(Yxt,this).addCommands(t)}cleanUndoStack(t){_nt(Yxt,this).cleanUndoStack(t)}toggleDrawing(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.div.classList.toggle("drawing",!t)}togglePointerEvents(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.div.classList.toggle("disabled",!t)}toggleAnnotationLayerPointerEvents(){var t,e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];null===(t=_nt(Lxt,this))||void 0===t||t.div.classList.toggle("disabled",!e)}enable(){var t=this;return xnt((function*(){Snt(zxt,t,!0),t.div.tabIndex=0,t.togglePointerEvents(!0);var e=new Set;for(var r of _nt(Nxt,t).values())r.enableEditing(),r.show(!0),r.annotationElementId&&(_nt(Yxt,t).removeChangedExistingAnnotation(r),e.add(r.annotationElementId));if(_nt(Lxt,t)){var n=_nt(Lxt,t).getEditableAnnotations();for(var i of n)if(i.hide(),!_nt(Yxt,t).isDeletedAnnotationElement(i.data.id)&&!e.has(i.data.id)){var a=yield t.deserialize(i);a&&(t.addOrRebuild(a),a.enableEditing())}Snt(zxt,t,!1)}else Snt(zxt,t,!1)}))()}disable(){Snt(Bxt,this,!0),this.div.tabIndex=-1,this.togglePointerEvents(!1);var t=new Map,e=new Map;for(var r of _nt(Nxt,this).values()){var n;r.disableEditing(),r.annotationElementId&&(null===r.serialize()?(e.set(r.annotationElementId,r),null===(n=this.getEditableAnnotation(r.annotationElementId))||void 0===n||n.show(),r.remove()):t.set(r.annotationElementId,r))}if(_nt(Lxt,this)){var i=_nt(Lxt,this).getEditableAnnotations();for(var a of i){var{id:s}=a.data;if(!_nt(Yxt,this).isDeletedAnnotationElement(s)){var o=e.get(s);o?(o.resetAnnotationElement(a),o.show(!1),a.show()):((o=t.get(s))&&(_nt(Yxt,this).addChangedExistingAnnotation(o),o.renderAnnotationElement(a)&&o.show(!1)),a.show())}}}bnt(Vxt,this,Jxt).call(this),this.isEmpty&&(this.div.hidden=!0);var{classList:l}=this.div;for(var h of Zxt._.values())l.remove("".concat(h._type,"Editing"));this.disableTextSelection(),this.toggleAnnotationLayerPointerEvents(!0),Snt(Bxt,this,!1)}getEditableAnnotation(t){var e;return(null===(e=_nt(Lxt,this))||void 0===e?void 0:e.getEditableAnnotation(t))||null}setActiveEditor(t){_nt(Yxt,this).getActive()!==t&&_nt(Yxt,this).setActiveEditor(t)}enableTextSelection(){var t;if(this.div.tabIndex=-1,null!==(t=_nt(Hxt,this))&&void 0!==t&&t.div&&!_nt(Gxt,this)){Snt(Gxt,this,new AbortController);var e=_nt(Yxt,this).combinedSignal(_nt(Gxt,this));_nt(Hxt,this).div.addEventListener("pointerdown",bnt(Vxt,this,Xxt).bind(this),{signal:e}),_nt(Hxt,this).div.classList.add("highlighting")}}disableTextSelection(){var t;this.div.tabIndex=0,null!==(t=_nt(Hxt,this))&&void 0!==t&&t.div&&_nt(Gxt,this)&&(_nt(Gxt,this).abort(),Snt(Gxt,this,null),_nt(Hxt,this).div.classList.remove("highlighting"))}enableClick(){if(!_nt(Dxt,this)){Snt(Dxt,this,new AbortController);var t=_nt(Yxt,this).combinedSignal(_nt(Dxt,this));this.div.addEventListener("pointerdown",this.pointerdown.bind(this),{signal:t});var e=this.pointerup.bind(this);this.div.addEventListener("pointerup",e,{signal:t}),this.div.addEventListener("pointercancel",e,{signal:t})}}disableClick(){var t;null===(t=_nt(Dxt,this))||void 0===t||t.abort(),Snt(Dxt,this,null)}attach(t){_nt(Nxt,this).set(t.id,t);var{annotationElementId:e}=t;e&&_nt(Yxt,this).isDeletedAnnotationElement(e)&&_nt(Yxt,this).removeDeletedAnnotationElement(t)}detach(t){var e;_nt(Nxt,this).delete(t.id),null===(e=_nt(Rxt,this))||void 0===e||e.removePointerInTextLayer(t.contentDiv),!_nt(Bxt,this)&&t.annotationElementId&&_nt(Yxt,this).addDeletedAnnotationElement(t)}remove(t){this.detach(t),_nt(Yxt,this).removeEditor(t),t.div.remove(),t.isAttachedToDOM=!1}changeParent(t){var e;t.parent!==this&&(t.parent&&t.annotationElementId&&(_nt(Yxt,this).addDeletedAnnotationElement(t.annotationElementId),jut.deleteAnnotationElement(t),t.annotationElementId=null),this.attach(t),null===(e=t.parent)||void 0===e||e.detach(t),t.setParent(this),t.div&&t.isAttachedToDOM&&(t.div.remove(),this.div.append(t.div)))}add(t){if(t.parent!==this||!t.isAttachedToDOM){if(this.changeParent(t),_nt(Yxt,this).addEditor(t),this.attach(t),!t.isAttachedToDOM){var e=t.render();this.div.append(e),t.isAttachedToDOM=!0}t.fixAndSetPosition(),t.onceAdded(!_nt(zxt,this)),_nt(Yxt,this).addToAnnotationStorage(t),t._reportTelemetry(t.telemetryInitialData)}}moveEditorInDOM(t){var e;if(t.isAttachedToDOM){var{activeElement:r}=document;t.div.contains(r)&&!_nt(Fxt,this)&&(t._focusEventsAllowed=!1,Snt(Fxt,this,setTimeout((()=>{Snt(Fxt,this,null),t.div.contains(document.activeElement)?t._focusEventsAllowed=!0:(t.div.addEventListener("focusin",(()=>{t._focusEventsAllowed=!0}),{once:!0,signal:_nt(Yxt,this)._signal}),r.focus())}),0))),t._structTreeParentId=null===(e=_nt(Rxt,this))||void 0===e?void 0:e.moveElementInDOM(this.div,t.div,t.contentDiv,!0)}}addOrRebuild(t){t.needsToBeRebuilt()?(t.parent||(t.parent=this),t.rebuild(),t.show()):this.add(t)}addUndoableEditor(t){this.addCommands({cmd:()=>t._uiManager.rebuild(t),undo:()=>{t.remove()},mustExec:!1})}getNextId(){return _nt(Yxt,this).getId()}combinedSignal(t){return _nt(Yxt,this).combinedSignal(t)}canCreateNewEmptyEditor(){var t;return null===(t=Ent(Vxt,this,$xt))||void 0===t?void 0:t.canCreateNewEmptyEditor()}pasteEditor(t,e){_nt(Yxt,this).updateToolbar(t),_nt(Yxt,this).updateMode(t);var{offsetX:r,offsetY:n}=bnt(Vxt,this,Qxt).call(this),i=this.getNextId(),a=bnt(Vxt,this,Kxt).call(this,Pnt({parent:this,id:i,x:r,y:n,uiManager:_nt(Yxt,this),isCentered:!0},e));a&&this.add(a)}deserialize(t){var e=this;return xnt((function*(){var r,n;return(yield null===(r=Zxt._.get(null!==(n=t.annotationType)&&void 0!==n?n:t.annotationEditorType))||void 0===r?void 0:r.deserialize(t,e,_nt(Yxt,e)))||null}))()}createAndAddNewEditor(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=this.getNextId(),i=bnt(Vxt,this,Kxt).call(this,Pnt({parent:this,id:n,x:t.offsetX,y:t.offsetY,uiManager:_nt(Yxt,this),isCentered:e},r));return i&&this.add(i),i}addNewEditor(){this.createAndAddNewEditor(bnt(Vxt,this,Qxt).call(this),!0)}setSelected(t){_nt(Yxt,this).setSelected(t)}toggleSelected(t){_nt(Yxt,this).toggleSelected(t)}unselect(t){_nt(Yxt,this).unselect(t)}pointerup(t){var e,{isMac:r}=nlt.platform;0!==t.button||t.ctrlKey&&r||t.target===this.div&&_nt(jxt,this)&&(Snt(jxt,this,!1),null!==(e=Ent(Vxt,this,$xt))&&void 0!==e&&e.isDrawer&&Ent(Vxt,this,$xt).supportMultipleDrawings||(_nt(Oxt,this)?_nt(Yxt,this).getMode()!==eot.STAMP?this.createAndAddNewEditor(t,!1):_nt(Yxt,this).unselectAll():Snt(Oxt,this,!0)))}pointerdown(t){var e;if(_nt(Yxt,this).getMode()===eot.HIGHLIGHT&&this.enableTextSelection(),_nt(jxt,this))Snt(jxt,this,!1);else{var{isMac:r}=nlt.platform;if(!(0!==t.button||t.ctrlKey&&r)&&t.target===this.div)if(Snt(jxt,this,!0),null!==(e=Ent(Vxt,this,$xt))&&void 0!==e&&e.isDrawer)this.startDrawingSession(t);else{var n=_nt(Yxt,this).getActive();Snt(Oxt,this,!n||n.isEmpty())}}}startDrawingSession(t){if(this.div.focus(),_nt(Wxt,this))Ent(Vxt,this,$xt).startDrawing(this,_nt(Yxt,this),!1,t);else{_nt(Yxt,this).setCurrentDrawingSession(this),Snt(Wxt,this,new AbortController);var e=_nt(Yxt,this).combinedSignal(_nt(Wxt,this));this.div.addEventListener("blur",(t=>{var{relatedTarget:e}=t;e&&!this.div.contains(e)&&(Snt(Uxt,this,null),this.commitOrRemove())}),{signal:e}),Ent(Vxt,this,$xt).startDrawing(this,_nt(Yxt,this),!1,t)}}pause(t){if(t){var{activeElement:e}=document;this.div.contains(e)&&Snt(Uxt,this,e)}else _nt(Uxt,this)&&setTimeout((()=>{var t;null===(t=_nt(Uxt,this))||void 0===t||t.focus(),Snt(Uxt,this,null)}),0)}endDrawingSession(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return _nt(Wxt,this)?(_nt(Yxt,this).setCurrentDrawingSession(null),_nt(Wxt,this).abort(),Snt(Wxt,this,null),Snt(Uxt,this,null),Ent(Vxt,this,$xt).endDrawing(t)):null}findNewParent(t,e,r){var n=_nt(Yxt,this).findParent(e,r);return null!==n&&n!==this&&(n.changeParent(t),!0)}commitOrRemove(){return!!_nt(Wxt,this)&&(this.endDrawingSession(),!0)}onScaleChanging(){_nt(Wxt,this)&&Ent(Vxt,this,$xt).onScaleChangingWhenDrawing(this)}destroy(){var t;for(var e of(this.commitOrRemove(),(null===(t=_nt(Yxt,this).getActive())||void 0===t?void 0:t.parent)===this&&(_nt(Yxt,this).commitOrRemove(),_nt(Yxt,this).setActiveEditor(null)),_nt(Fxt,this)&&(clearTimeout(_nt(Fxt,this)),Snt(Fxt,this,null)),_nt(Nxt,this).values())){var r;null===(r=_nt(Rxt,this))||void 0===r||r.removePointerInTextLayer(e.contentDiv),e.setParent(null),e.isAttachedToDOM=!1,e.div.remove()}this.div=null,_nt(Nxt,this).clear(),_nt(Yxt,this).removeLayer(this)}render(t){var{viewport:e}=t;for(var r of(this.viewport=e,Rlt(this.div,e),_nt(Yxt,this).getEditors(this.pageIndex)))this.add(r),r.rebuild();this.updateMode()}update(t){var{viewport:e}=t;_nt(Yxt,this).commitOrRemove(),bnt(Vxt,this,Jxt).call(this);var r=this.viewport.rotation,n=e.rotation;if(this.viewport=e,Rlt(this.div,{rotation:n}),r!==n)for(var i of _nt(Nxt,this).values())i.rotate(n)}get pageDimensions(){var{pageWidth:t,pageHeight:e}=this.viewport.rawDims;return[t,e]}get scale(){return _nt(Yxt,this).viewParameters.realScale}}function Xxt(t){_nt(Yxt,this).unselectAll();var{target:e}=t;if(e===_nt(Hxt,this).div||("img"===e.getAttribute("role")||e.classList.contains("endOfContent"))&&_nt(Hxt,this).div.contains(e)){var{isMac:r}=nlt.platform;if(0!==t.button||t.ctrlKey&&r)return;_nt(Yxt,this).showAllEditors("highlight",!0,!0),_nt(Hxt,this).div.classList.add("free"),this.toggleDrawing(),Xbt.startHighlighting(this,"ltr"===_nt(Yxt,this).direction,{target:_nt(Hxt,this).div,x:t.x,y:t.y}),_nt(Hxt,this).div.addEventListener("pointerup",(()=>{_nt(Hxt,this).div.classList.remove("free"),this.toggleDrawing(!0)}),{once:!0,signal:_nt(Yxt,this)._signal}),t.preventDefault()}}function $xt(t){return Zxt._.get(_nt(Yxt,t).getMode())}function Kxt(t){var e=Ent(Vxt,this,$xt);return e?new e.prototype.constructor(t):null}function Qxt(){var{x:t,y:e,width:r,height:n}=this.div.getBoundingClientRect(),i=Math.max(0,t),a=Math.max(0,e),s=(i+Math.min(window.innerWidth,t+r))/2-t,o=(a+Math.min(window.innerHeight,e+n))/2-e,[l,h]=this.viewport.rotation%180==0?[s,o]:[o,s];return{offsetX:l,offsetY:h}}function Jxt(){for(var t of _nt(Nxt,this).values())t.isEmpty()&&t.remove()}Tnt(qxt,"_initialized",!1);var Zxt={_:new Map([ryt,cxt,_xt,Xbt].map((t=>[t._editorType,t])))},tAt=new WeakMap,eAt=new WeakMap,rAt=new WeakMap,nAt=new WeakMap,iAt=new WeakSet;class aAt{constructor(t){var{pageIndex:e}=t;Mnt(this,iAt),knt(this,tAt,null),knt(this,eAt,0),knt(this,rAt,new Map),knt(this,nAt,new Map),this.pageIndex=e}setParent(t){if(_nt(tAt,this)){if(_nt(tAt,this)!==t){if(_nt(rAt,this).size>0)for(var e of _nt(rAt,this).values())e.remove(),t.append(e);Snt(tAt,this,t)}}else Snt(tAt,this,t)}static get _svgFactory(){return Yot(this,"_svgFactory",new pvt)}draw(t){var e,r,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=arguments.length>2&&void 0!==arguments[2]&&arguments[2],a=(Snt(eAt,this,(e=_nt(eAt,this),r=e++,e)),r),s=bnt(iAt,this,oAt).call(this),o=aAt._svgFactory.createElement("defs");s.append(o);var l=aAt._svgFactory.createElement("path");o.append(l);var h="path_p".concat(this.pageIndex,"_").concat(a);l.setAttribute("id",h),l.setAttribute("vector-effect","non-scaling-stroke"),n&&_nt(nAt,this).set(a,l);var c=i?bnt(iAt,this,lAt).call(this,o,h):null,u=aAt._svgFactory.createElement("use");return s.append(u),u.setAttribute("href","#".concat(h)),this.updateProperties(s,t),_nt(rAt,this).set(a,s),{id:a,clipPathId:"url(#".concat(c,")")}}drawOutline(t,e){var r,n,i=(Snt(eAt,this,(r=_nt(eAt,this),n=r++,r)),n),a=bnt(iAt,this,oAt).call(this),s=aAt._svgFactory.createElement("defs");a.append(s);var o=aAt._svgFactory.createElement("path");s.append(o);var l,h="path_p".concat(this.pageIndex,"_").concat(i);if(o.setAttribute("id",h),o.setAttribute("vector-effect","non-scaling-stroke"),e){var c=aAt._svgFactory.createElement("mask");s.append(c),l="mask_p".concat(this.pageIndex,"_").concat(i),c.setAttribute("id",l),c.setAttribute("maskUnits","objectBoundingBox");var u=aAt._svgFactory.createElement("rect");c.append(u),u.setAttribute("width","1"),u.setAttribute("height","1"),u.setAttribute("fill","white");var d=aAt._svgFactory.createElement("use");c.append(d),d.setAttribute("href","#".concat(h)),d.setAttribute("stroke","none"),d.setAttribute("fill","black"),d.setAttribute("fill-rule","nonzero"),d.classList.add("mask")}var p=aAt._svgFactory.createElement("use");a.append(p),p.setAttribute("href","#".concat(h)),l&&p.setAttribute("mask","url(#".concat(l,")"));var f=p.cloneNode();return a.append(f),p.classList.add("mainOutline"),f.classList.add("secondaryOutline"),this.updateProperties(a,t),_nt(rAt,this).set(i,a),i}finalizeDraw(t,e){_nt(nAt,this).delete(t),this.updateProperties(t,e)}updateProperties(t,e){if(e){var{root:r,bbox:n,rootClass:i,path:a}=e,s="number"==typeof t?_nt(rAt,this).get(t):t;if(s){if(r&&bnt(iAt,this,hAt).call(this,s,r),n&&sAt.call(aAt,s,n),i){var{classList:o}=s;for(var[l,h]of Object.entries(i))o.toggle(l,h)}if(a){var c=s.firstChild.firstChild;bnt(iAt,this,hAt).call(this,c,a)}}}}updateParent(t,e){if(e!==this){var r=_nt(rAt,this).get(t);r&&(_nt(tAt,e).append(r),_nt(rAt,this).delete(t),_nt(rAt,e).set(t,r))}}remove(t){_nt(nAt,this).delete(t),null!==_nt(tAt,this)&&(_nt(rAt,this).get(t).remove(),_nt(rAt,this).delete(t))}destroy(){for(var t of(Snt(tAt,this,null),_nt(rAt,this).values()))t.remove();_nt(rAt,this).clear(),_nt(nAt,this).clear()}}function sAt(t,e){var[r,n,i,a]=e,{style:s}=t;s.top="".concat(100*n,"%"),s.left="".concat(100*r,"%"),s.width="".concat(100*i,"%"),s.height="".concat(100*a,"%")}function oAt(){var t=Nst._svgFactory.create(1,1,!0);return _nt(tAt,this).append(t),t.setAttribute("aria-hidden",!0),t}function lAt(t,e){var r=Nst._svgFactory.createElement("clipPath");t.append(r);var n="clip_".concat(e);r.setAttribute("id",n),r.setAttribute("clipPathUnits","objectBoundingBox");var i=Nst._svgFactory.createElement("use");return r.append(i),i.setAttribute("href","#".concat(e)),i.classList.add("clip"),n}function hAt(t,e){for(var[r,n]of Object.entries(e))null===n?t.removeAttribute(r):t.setAttribute(r,n)}Nst=aAt,globalThis.pdfjsTestingUtils={HighlightOutliner:Jyt};var cAt=Wst.getDocument;Wst.GlobalWorkerOptions.workerSrc="/node_modules/pdfjs-dist/build/pdf.worker.min.mjs";const uAt={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0}},{type:"attachment-selector",label:"file",name:"file",property:{displayField:"fullpath",displayFullUrl:!0,storageFilters:{type:Array,value:[{name:"category",value:"application"}]},useUpload:!0}},{type:"number",label:"page",name:"page"},{type:"select",label:"fit",name:"fit",property:{options:["none","ratio","width","height"]}}],help:"scene/component/pdf-viewer"},dAt=[2,4,8,16,32],pAt=16e3;class fAt extends(wtt(ytt)){async ready(){this.scaleIndex=0,this.displayScale=1,this.offsetX=0,this.offsetY=0,this.pdfDoc=null,this.canvas=document.createElement("canvas"),this.renderTask=null,this.loadPDF()}dispose(){super.dispose(),this.worker&&(this.worker.terminate(),this.worker=null),this.renderTask&&this.renderTask.cancel(),this.pdfDoc=null,this.canvas=null}async loadPDF(){const{file:t,page:e=1}=this.state;if(t)try{console.log(`📌 Loading PDF: ${t}`),this.pdfDoc=await cAt(t).promise;const r=this.pdfDoc.numPages;this.page=await this.pdfDoc.getPage(e>r?1:e),this.documentSize=this.page.getViewport({scale:1}),this.fit()}catch(t){console.error("🚨 Failed to load PDF:",t)}}onchange(t,e){("file"in t||"fit"in t||"page"in t)&&this.loadPDF()}async fit(){const{fit:t="none"}=this.state,{width:e,height:r}=this.bounds,n=this.documentSize;switch(t){case"none":default:this.displayScale=1;break;case"width":this.displayScale=e/n.width;break;case"height":this.displayScale=r/n.height;break;case"ratio":this.displayScale=Math.min(e/n.width,r/n.height)}this.scaleIndex=dAt.findIndex((t=>this.displayScale<=t)),-1===this.scaleIndex&&(this.scaleIndex=dAt.length-1),"ratio"===t?(this.offsetX=(e-n.width*this.displayScale)/2,this.offsetY=(r-n.height*this.displayScale)/2):(this.offsetX=0,this.offsetY=0),this.renderPDF()}async renderPDF(){if(!this.pdfDoc||!this.page)return;const{width:t,height:e}=this.documentSize;let r=dAt[this.scaleIndex],n=Math.min(t*r,pAt),i=Math.min(e*r,pAt);if(n===pAt||i===pAt){const a=t/e;a>1&&(i=n/a);const s=i/e;this.scaleIndex=dAt.findIndex((t=>s<=t))-1,r=dAt[this.scaleIndex],n=t*r,i=e*r}const a=document.createElement("canvas");a.width=n,a.height=i;const s={canvasContext:a.getContext("2d"),viewport:this.page.getViewport({scale:r})};if(this.renderTask){this.renderTask.cancel();try{await this.renderTask.promise}catch(t){console.warn("Previous render task was canceled.")}}this.renderTask=this.page.render(s);try{await this.renderTask.promise,this.canvas=a,this.renderTask=null,this.invalidate()}catch(t){"RenderingCancelledException"!==t.name&&console.error("Failed to render PDF:",t)}}render(t){super.render(t);const{left:e,top:r}=this.bounds,{width:n,height:i}=this.canvas;t.clip(),t.drawImage(this.canvas,e+this.offsetX,r+this.offsetY,(this.documentSize?.width||n)*this.displayScale,(this.documentSize?.height||i)*this.displayScale)}onwheel(t){t.preventDefault();var{left:e,top:r}=this.bounds,{x:n,y:i}=this.transcoordC2S(t.offsetX,t.offsetY);n-=e,i-=r;const a=t.deltaY<0?1.05:.95,s=this.displayScale;this.displayScale=Math.min(Math.max(.5,this.displayScale*a),dAt[dAt.length-1]);const o=dAt.findIndex((t=>this.displayScale<=t)),l=-1===o?dAt.length-1:o,h=this.displayScale/s;this.offsetX=n-(n-this.offsetX)*h,this.offsetY=i-(i-this.offsetY)*h,this.invalidate(),l!==this.scaleIndex&&(this.scaleIndex=l,this.renderPDF())}ondragstart(t){this.position=this.transcoordC2S(t.offsetX,t.offsetY)}ondragmove(t){var{x:e,y:r}=this.transcoordC2S(t.offsetX,t.offsetY);const n=e-this.position.x,i=r-this.position.y;this.offsetX+=n,this.offsetY+=i,this.position={x:e,y:r},this.invalidate()}ondblclick(t){this.fit()}get nature(){return uAt}}mtt.register("pdf-page",fAt);var gAt=t=>class extends t{animOnValueChange(t,e=!1,r){if(t!=this._lastValue){if(e)var n=t-(Number(r)||0);else n=t-(this._lastValue||0);this._lastValue=t,this._anim_alpha=-n,this.animate({step:t=>{this._anim_alpha=n*(t-1),this.invalidate()},duration:1e3,delta:"circ",options:{x:1},ease:"out"}).start()}}dispose(){super.dispose(),delete this._value_substitutor}onchange(t,e){t.hasOwnProperty("value")&&delete this._value_substitutor}get animAlpha(){return this._anim_alpha||0}get animValue(){return(this._lastValue||0)+(this._anim_alpha||0)}defaultValueSubstitutor(){return this.getState("value")}get valueSubstitutor(){return this._value_substitutor||(this._value_substitutor=att(this.getState("value"),this)||this.defaultValueSubstitutor),this._value_substitutor}get value(){return Number(this.valueSubstitutor())||0}set value(t){delete this._value_substitutor,this.setState("value",Number(P7(t)))}},vAt=t=>class extends t{_convertDataFormat(t,e){var r;if("json"===e)r=JSON.parse(t);else r=t;return r}isDataSource(){return!0}},mAt=0;const yAt=new FinalizationRegistry((()=>{mAt--}));class bAt{static get residents(){return mAt}static get residentsCount(){return mAt}constructor(t,e){this.counters={},this.references={},this.creator=t,this.disposer=e,mAt++,yAt.register(this,mAt)}dispose(){if(this.disposer)for(let t in this.references)this.disposer.call(null,t,this.references[t]);delete this.references,delete this.counters}get ids(){return Object.keys(this.references)}create(t){var e=this;return new Promise((function(r,n){e.creator?e.creator.call(null,t,(function(e){!function(e){e.release=function(){this.disposer&&this.disposer.call(null,t,e),delete e.release,G7("RELEASED",t)},r(e)}(e)}),(function(t){n(t)})):n(Error("Reference id("+t+") could not be created. Reference creator should be defined."))}))}add(t,e){var r=this,n=new Promise((function(n,i){var a=r.references[t];if(a)a===e?i(Error("Reference ID and target duplicate")):e?i(Error("Reference ID duplicate")):n(a);else{function s(e){e.release=function(){r.release(this)},r.references[t]=e,r.counters[t]=1,n(e)}if(e)s(e);else{if(!r.creator)return void i(Error("Reference id("+t+") is not allowed. Reference creator should be defined."));r.creator.call(null,t,(function(t){s(t)}),(function(t){i(t)}))}}}));return this.references[t]||(this.references[t]=n),n}async get(t,e){var r=this.references[t];if(r){if(!(r instanceof Promise)){if(!(t in this.counters))throw new Error("No Reference Count");return this.counters[t]++,r}if(e)return r=await r,this.counters[t]++,r}if(e)return await this.add(t);throw new Error("No References for "+t)}_id(t){for(let e in this.references){if(this.references[e]===t)return e}return-1}release(t){var e=this._id(t),r=this.references[e];r?(this.counters[e]--,0==this.counters[e]&&(this.disposer&&this.disposer.call(null,e,r),delete this.references[e],delete this.counters[e],delete t.release,G7("RELEASED",e))):U7("No Referenced ID")}}var wAt={},xAt={},AAt=[];function _At(t){var e="SCRIPT"==t.target.tagName?wAt:xAt,r=t.target.src||t.target.href;e[r]=!0,AAt.forEach(((t,n)=>{let{resolve:i,scripts:a,styles:s}=t;if(e==wAt){let t=a.indexOf(r);t>-1&&t<a.length-1&&SAt(a[t+1])}for(let t=0;t<a.length;t++)if(!wAt[a[t]])return;if(s)for(let t=0;t<s.length;t++)if(!xAt[s[t]])return;i(),AAt[n]=null})),AAt=AAt.filter(Boolean)}function kAt(t){var e=t.target.src,r="SCRIPT"==t.target.tagName?wAt:xAt;AAt.forEach(((n,i)=>{let{reject:a,scripts:s,styles:o}=n,l=!1;if(r===wAt){for(let t=0;t<s.length;t++)if(s[t]==e){l=!0;break}}else if(o)for(let t=0;t<o.length;t++)if(o[t]==e){l=!0;break}l&&(a(t),AAt[i]=null)})),AAt=AAt.filter(Boolean),delete r[e],document.head.removeChild(t.target)}function SAt(t){wAt[t]=!1;var e=document.createElement("script");e.onload=_At,e.onerror=kAt,e.type="text/javascript",e.src=t,document.head.appendChild(e)}class EAt{static load(t,e){return"string"==typeof t&&(t=[t]),"string"==typeof e&&(e=[e]),new Promise((function(r,n){if((!t||t instanceof Array)&&(!e||e instanceof Array)){var i,a=!0;if(e&&e.forEach((t=>{xAt.hasOwnProperty(t)||function(t){xAt[t]=!1;var e=document.createElement("link");e.onload=_At,e.onerror=kAt,e.type="text/css",e.rel="stylesheet",e.media="screen,print",e.href=t,document.head.appendChild(e)}(t),xAt[t]||(a=!1)})),t&&t.length>0&&t.forEach((t=>{wAt.hasOwnProperty(t)?wAt[t]||(a=!1):i=i||t})),i)SAt(i);else if(a)return void r();AAt.push({resolve:r,reject:n,scripts:t,styles:e})}else n("invalid sources for load")}))}}const MAt="0.0.0";var TAt=0,CAt=performance.now(),PAt=0;function IAt(){return TAt}requestAnimationFrame((function t(){requestAnimationFrame(t),PAt++;var e=performance.now(),r=e-CAt;r<1e3||(TAt=Math.round(1e3*PAt/r),CAt=e,PAt=0)}));var RAt=Let;function OAt(){}export{Ott as AbsoluteLayout,ost as AudioPlayer,Dtt as CardLayout,mtt as Component,Qtt as Connectable,yat as Container,Gtt as ContainerAbstract,i9 as DEFAULT,e9 as DPPX,vAt as DataSource,_st as Donut,Lat as Ellipse,hnt as EventMap,IAt as FPS,r9 as GESTURES,ast as GifView,gst as GlobalRef,cst as Group,Mtt as HTMLAbsoluteLayout,pst as HTMLOverlayContainer,Yat as HTMLOverlayElement,Gat as ImageView,ktt as InfoWindow,n9 as KEYEVENTS,Ytt as Layer,Ett as Layout,Rat as Line,Ntt as LinearHorizontalLayout,Btt as LinearVerticalLayout,dst as LocalRef,t9 as MAX_UNDO_SIZE,K7 as MODE_ADD,X7 as MODE_EDIT,J7 as MODE_PASTE_DATABIND,Q7 as MODE_PASTE_STYLE,$7 as MODE_SHIFT,q7 as MODE_VIEW,RAt as Model,Utt as MoveHandle,V7 as NOTHING,Uat as OrthoLine,fAt as PDFPage,yst as Path,Nat as Polygon,zat as Polyline,mst as Popup,tet as Rect,wtt as RectPath,bAt as ReferenceMap,jnt as RootContainer,ret as Ruler,Z7 as SCENE_MODE,Jnt as Scene,Rtt as ScenePopup,EAt as ScriptLoader,ytt as Shape,Bst as Star,ztt as TableLayout,lst as Text,wst as Triangle,gAt as ValueHolder,tit as create,G7 as debug,U7 as error,OAt as license,k4 as polyfill,MAt as version,H7 as warn};console.log("@hatiolab/things-scene@9.0.0-beta.21 is loaded");