@dckj-npm/dc-material 0.1.358 → 0.1.360

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 (803) hide show
  1. package/README.md +17 -17
  2. package/build/index.css +2 -0
  3. package/build/index.html +1 -0
  4. package/build/index.js +43 -0
  5. package/build/lowcode/assets-daily.json +71 -0
  6. package/build/lowcode/assets-dev.json +71 -0
  7. package/build/lowcode/assets-prod.json +71 -0
  8. package/build/lowcode/designer.html +302 -0
  9. package/build/lowcode/index.html +304 -0
  10. package/build/lowcode/index.js +1 -0
  11. package/build/lowcode/meta.design.js +1 -0
  12. package/build/lowcode/meta.js +1 -0
  13. package/build/lowcode/preview.css +1 -0
  14. package/build/lowcode/preview.html +33 -0
  15. package/build/lowcode/preview.js +310 -0
  16. package/build/lowcode/render/default/view.css +1 -0
  17. package/build/lowcode/render/default/view.js +295 -0
  18. package/build/lowcode/view.css +1 -0
  19. package/build/lowcode/view.js +295 -0
  20. package/dist/BizComps.css +1 -0
  21. package/dist/BizComps.js +7 -0
  22. package/dist/BizComps.js.map +1 -0
  23. package/es/assets/icon/grid-nav/right.png +0 -0
  24. package/es/assets/icon/position/location.png +0 -0
  25. package/es/assets/icon/review-list/like-fill.png +0 -0
  26. package/es/assets/icon/review-list/like.png +0 -0
  27. package/es/assets/icon/review-list/unlike-fill.png +0 -0
  28. package/es/assets/icon/review-list/unlike.png +0 -0
  29. package/es/assets/icon/search/delete.png +0 -0
  30. package/es/assets/icon/search-history-list/close.png +0 -0
  31. package/es/assets/icon/search-history-list/time.png +0 -0
  32. package/es/assets/icon/shop/add.png +0 -0
  33. package/es/assets/icon/shop/checkbox.png +0 -0
  34. package/es/assets/icon/shop/subtract.png +0 -0
  35. package/es/assets/icon/teletext-list/arr.png +0 -0
  36. package/es/assets/scss/mixin.scss +68 -0
  37. package/es/components/accordion-selector/accordion-selector.d.ts +49 -0
  38. package/es/components/accordion-selector/accordion-selector.js +22 -0
  39. package/es/components/accordion-selector/index.d.ts +6 -0
  40. package/es/components/accordion-selector/index.js +5 -0
  41. package/es/components/accordion-selector/index.scss +5 -0
  42. package/es/components/address-list/address-list-item.d.ts +14 -0
  43. package/es/components/address-list/address-list-item.js +50 -0
  44. package/es/components/address-list/address-list-item.scss +90 -0
  45. package/es/components/address-list/address-list.d.ts +44 -0
  46. package/es/components/address-list/address-list.js +46 -0
  47. package/es/components/address-list/index.d.ts +6 -0
  48. package/es/components/address-list/index.js +6 -0
  49. package/es/components/address-list/index.scss +4 -0
  50. package/es/components/bottom-navigation/bottom-navigation.d.ts +15 -15
  51. package/es/components/bottom-navigation/index.d.ts +3 -3
  52. package/es/components/bottom-navigation/index.scss +28 -28
  53. package/es/components/bread-crumb/bread-crumb.d.ts +24 -0
  54. package/es/components/bread-crumb/bread-crumb.js +33 -0
  55. package/es/components/bread-crumb/index.d.ts +6 -0
  56. package/es/components/bread-crumb/index.js +6 -0
  57. package/es/components/bread-crumb/index.scss +4 -0
  58. package/es/components/button/button.d.ts +14 -14
  59. package/es/components/button/button.js +4 -1
  60. package/es/components/button/index.d.ts +6 -6
  61. package/es/components/button/index.js +2 -2
  62. package/es/components/button/index.scss +16 -16
  63. package/es/components/carousel/carousel.d.ts +14 -14
  64. package/es/components/carousel/carousel.scss +32 -32
  65. package/es/components/collapse/collapse.d.ts +51 -0
  66. package/es/components/collapse/collapse.js +58 -0
  67. package/es/components/collapse/index.d.ts +6 -0
  68. package/es/components/collapse/index.js +5 -0
  69. package/es/components/collapse/index.scss +18 -0
  70. package/es/components/collapse-selector/collapse-selector.d.ts +14 -0
  71. package/es/components/collapse-selector/collapse-selector.js +94 -0
  72. package/es/components/collapse-selector/index.d.ts +3 -0
  73. package/es/components/collapse-selector/index.js +2 -0
  74. package/es/components/collapse-selector/index.scss +98 -0
  75. package/es/components/collapse-selector-item/collapse-selector-item.d.ts +8 -0
  76. package/es/components/collapse-selector-item/collapse-selector-item.js +16 -0
  77. package/es/components/collapse-selector-item/index.d.ts +3 -0
  78. package/es/components/collapse-selector-item/index.js +2 -0
  79. package/es/components/collapse-selector-item/index.scss +6 -0
  80. package/es/components/colorful-button/colorful-button.d.ts +12 -12
  81. package/es/components/colorful-button/index.d.ts +3 -3
  82. package/es/components/colorful-button/index.scss +5 -5
  83. package/es/components/colorful-input/colorful-input.d.ts +8 -8
  84. package/es/components/colorful-input/index.d.ts +3 -3
  85. package/es/components/colorful-input/index.scss +5 -5
  86. package/es/components/custom-form/custom-form.d.ts +37 -0
  87. package/es/components/custom-form/custom-form.js +158 -0
  88. package/es/components/custom-form/index.d.ts +6 -0
  89. package/es/components/custom-form/index.js +6 -0
  90. package/es/components/custom-form/index.scss +25 -0
  91. package/es/components/custom-select/index.d.ts +6 -0
  92. package/es/components/custom-select/index.js +6 -0
  93. package/es/components/custom-select/index.scss +152 -0
  94. package/es/components/custom-select/select.d.ts +45 -0
  95. package/es/components/custom-select/select.js +146 -0
  96. package/es/components/dc-slider/index.d.ts +3 -3
  97. package/es/components/dc-slider/index.scss +6 -6
  98. package/es/components/dc-slider/slider-img.d.ts +32 -32
  99. package/es/components/drawer/drawer.d.ts +44 -0
  100. package/es/components/drawer/drawer.js +43 -0
  101. package/es/components/drawer/index.d.ts +6 -0
  102. package/es/components/drawer/index.js +6 -0
  103. package/es/components/drawer/index.scss +16 -0
  104. package/es/components/form/form-item.d.ts +42 -42
  105. package/es/components/form/form-item.scss +20 -20
  106. package/es/components/form/form.d.ts +21 -20
  107. package/es/components/form/form.js +254 -1468
  108. package/es/components/form/index.d.ts +6 -6
  109. package/es/components/form/index.js +2 -2
  110. package/es/components/form/index.scss +21 -21
  111. package/es/components/goods-card-list/goods-card-list-common.d.ts +5 -5
  112. package/es/components/goods-card-list/goods-card-list-common.scss +118 -118
  113. package/es/components/goods-card-list/goods-card-list.d.ts +5 -5
  114. package/es/components/goods-card-list/goods-card-list.scss +112 -112
  115. package/es/components/goods-card-list/index.d.ts +4 -4
  116. package/es/components/goods-card-list/types.d.ts +45 -45
  117. package/es/components/grid-nav/grid-nav.d.ts +13 -13
  118. package/es/components/grid-nav/index.d.ts +3 -3
  119. package/es/components/grid-nav/index.scss +50 -50
  120. package/es/components/image/image.d.ts +17 -0
  121. package/es/components/image/image.js +21 -0
  122. package/es/components/image/index.d.ts +3 -0
  123. package/es/components/image/index.js +2 -0
  124. package/es/components/image/index.scss +3 -0
  125. package/es/components/input/index.d.ts +6 -0
  126. package/es/components/input/index.js +6 -0
  127. package/es/components/input/index.scss +3 -0
  128. package/es/components/input/input.d.ts +42 -0
  129. package/es/components/input/input.js +95 -0
  130. package/es/components/integral-task/index.d.ts +6 -6
  131. package/es/components/integral-task/index.js +2 -2
  132. package/es/components/integral-task/index.scss +35 -35
  133. package/es/components/integral-task/integral-task.d.ts +40 -40
  134. package/es/components/member-card/index.d.ts +6 -6
  135. package/es/components/member-card/index.js +2 -2
  136. package/es/components/member-card/index.scss +86 -86
  137. package/es/components/member-card/member-card.d.ts +5 -5
  138. package/es/components/member-card/type.d.ts +11 -11
  139. package/es/components/menu-list/index.d.ts +6 -6
  140. package/es/components/menu-list/index.js +2 -2
  141. package/es/components/menu-list/index.scss +16 -16
  142. package/es/components/menu-list/menu-list-item.d.ts +5 -5
  143. package/es/components/menu-list/menu-list-item.scss +49 -49
  144. package/es/components/menu-list/menu-list.d.ts +5 -5
  145. package/es/components/menu-list/types.d.ts +23 -23
  146. package/es/components/message-list/index.d.ts +6 -6
  147. package/es/components/message-list/index.js +2 -2
  148. package/es/components/message-list/index.scss +22 -22
  149. package/es/components/message-list/message-list-item.d.ts +33 -33
  150. package/es/components/message-list/message-list-item.js +2 -2
  151. package/es/components/message-list/message-list-item.scss +62 -62
  152. package/es/components/message-list/message-list.d.ts +28 -28
  153. package/es/components/notice-bar/index.d.ts +3 -3
  154. package/es/components/notice-bar/index.scss +84 -84
  155. package/es/components/notice-bar/notice-bar-item.d.ts +18 -18
  156. package/es/components/notice-bar/notice-bar-item.scss +26 -26
  157. package/es/components/notice-bar/notice-bar.d.ts +46 -46
  158. package/es/components/position/entity.d.ts +5 -5
  159. package/es/components/position/index.d.ts +3 -3
  160. package/es/components/position/index.scss +124 -124
  161. package/es/components/position/position-left.d.ts +9 -9
  162. package/es/components/position/position-list.d.ts +12 -12
  163. package/es/components/position/position-list.js +4 -4
  164. package/es/components/position/position.d.ts +8 -8
  165. package/es/components/profile/index.d.ts +6 -0
  166. package/es/components/profile/index.js +6 -0
  167. package/es/components/profile/index.scss +37 -0
  168. package/es/components/profile/profile.d.ts +35 -0
  169. package/es/components/profile/profile.js +41 -0
  170. package/es/components/radio-group/index.d.ts +8 -8
  171. package/es/components/radio-group/index.js +2 -2
  172. package/es/components/radio-group/index.scss +40 -40
  173. package/es/components/radio-group/radio-group-item.d.ts +48 -48
  174. package/es/components/radio-group/radio-group.d.ts +52 -52
  175. package/es/components/rating/index.d.ts +6 -0
  176. package/es/components/rating/index.js +6 -0
  177. package/es/components/rating/index.scss +3 -0
  178. package/es/components/rating/rating.d.ts +39 -0
  179. package/es/components/rating/rating.js +31 -0
  180. package/es/components/review-list/index.d.ts +3 -0
  181. package/es/components/review-list/index.js +2 -0
  182. package/es/components/review-list/index.scss +89 -0
  183. package/es/components/review-list/review-list.d.ts +44 -0
  184. package/es/components/review-list/review-list.js +71 -0
  185. package/es/components/rich-text/index.d.ts +6 -6
  186. package/es/components/rich-text/index.js +2 -2
  187. package/es/components/rich-text/index.scss +19 -19
  188. package/es/components/rich-text/rich-text.d.ts +13 -14
  189. package/es/components/search-bar/index.d.ts +3 -3
  190. package/es/components/search-bar/index.scss +44 -39
  191. package/es/components/search-bar/search-bar.d.ts +12 -10
  192. package/es/components/search-bar/search-bar.js +12 -6
  193. package/es/components/search-history-list/index.d.ts +3 -0
  194. package/es/components/search-history-list/index.js +2 -0
  195. package/es/components/search-history-list/index.scss +29 -0
  196. package/es/components/search-history-list/search-history-list.d.ts +29 -0
  197. package/es/components/search-history-list/search-history-list.js +45 -0
  198. package/es/components/shopping-cart/components/good-item.d.ts +15 -0
  199. package/es/components/shopping-cart/components/good-item.js +127 -0
  200. package/es/components/shopping-cart/components/good-item.scss +161 -0
  201. package/es/components/shopping-cart/index.d.ts +6 -0
  202. package/es/components/shopping-cart/index.js +6 -0
  203. package/es/components/shopping-cart/index.scss +140 -0
  204. package/es/components/shopping-cart/shopping-cart.d.ts +5 -0
  205. package/es/components/shopping-cart/shopping-cart.js +239 -0
  206. package/es/components/shopping-cart/type.d.ts +51 -0
  207. package/es/components/shopping-cart/type.js +1 -0
  208. package/es/components/stream-list/index.d.ts +6 -6
  209. package/es/components/stream-list/index.js +2 -2
  210. package/es/components/stream-list/index.scss +26 -26
  211. package/es/components/stream-list/stream-list.d.ts +54 -54
  212. package/es/components/stream-list/stream-list.js +4 -4
  213. package/es/components/swiper/index.d.ts +3 -3
  214. package/es/components/swiper/index.scss +20 -20
  215. package/es/components/swiper/swiper.d.ts +30 -30
  216. package/es/components/switch/index.d.ts +6 -0
  217. package/es/components/switch/index.js +6 -0
  218. package/es/components/switch/index.scss +4 -0
  219. package/es/components/switch/switch.d.ts +14 -0
  220. package/es/components/switch/switch.js +20 -0
  221. package/es/components/tab/index.d.ts +6 -6
  222. package/es/components/tab/index.js +2 -2
  223. package/es/components/tab/index.scss +44 -44
  224. package/es/components/tab/tab.d.ts +27 -27
  225. package/es/components/tab-container/index.d.ts +3 -3
  226. package/es/components/tab-container/index.scss +47 -47
  227. package/es/components/tab-container/tab-container.d.ts +10 -10
  228. package/es/components/tab-container-item/index.d.ts +3 -3
  229. package/es/components/tab-container-item/tab-container-item.d.ts +11 -11
  230. package/es/components/tag/index.d.ts +6 -6
  231. package/es/components/tag/index.js +2 -2
  232. package/es/components/tag/index.scss +24 -24
  233. package/es/components/tag/tag.d.ts +14 -14
  234. package/es/components/teletext-list/index.d.ts +6 -6
  235. package/es/components/teletext-list/index.js +2 -2
  236. package/es/components/teletext-list/index.scss +53 -40
  237. package/es/components/teletext-list/teletext-list-item.d.ts +102 -33
  238. package/es/components/teletext-list/teletext-list-item.js +195 -28
  239. package/es/components/teletext-list/teletext-list-item.scss +203 -57
  240. package/es/components/teletext-list/teletext-list.d.ts +147 -61
  241. package/es/components/teletext-list/teletext-list.js +91 -9
  242. package/es/components/text-description-detail-list/index.d.ts +6 -0
  243. package/es/components/text-description-detail-list/index.js +6 -0
  244. package/es/components/text-description-detail-list/index.scss +12 -0
  245. package/es/components/text-description-detail-list/text-description-detail-list-item.d.ts +29 -0
  246. package/es/components/text-description-detail-list/text-description-detail-list-item.js +24 -0
  247. package/es/components/text-description-detail-list/text-description-detail-list-item.scss +45 -0
  248. package/es/components/text-description-detail-list/text-description-detail-list.d.ts +27 -0
  249. package/es/components/text-description-detail-list/text-description-detail-list.js +44 -0
  250. package/es/components/title/index.d.ts +8 -8
  251. package/es/components/title/index.js +2 -2
  252. package/es/components/title/title-1.d.ts +10 -10
  253. package/es/components/title/title-1.scss +25 -25
  254. package/es/components/title/title-2.d.ts +18 -18
  255. package/es/components/title/title-2.scss +22 -22
  256. package/es/components/user-card/index.d.ts +6 -6
  257. package/es/components/user-card/index.js +2 -2
  258. package/es/components/user-card/index.scss +68 -68
  259. package/es/components/user-card/type.d.ts +8 -8
  260. package/es/components/user-card/user-card.d.ts +5 -5
  261. package/es/components//346/250/241/346/235/277/index.d.ts +6 -0
  262. package/es/components//346/250/241/346/235/277/index.js +6 -0
  263. package/es/components//346/250/241/346/235/277/index.scss +0 -0
  264. package/es/components//346/250/241/346/235/277/member-card.d.ts +5 -0
  265. package/es/components//346/250/241/346/235/277/member-card.js +21 -0
  266. package/es/components//346/250/241/346/235/277/type.d.ts +11 -0
  267. package/es/components//346/250/241/346/235/277/type.js +1 -0
  268. package/es/entity/dynamic-column-data-type.d.ts +316 -316
  269. package/es/entity/dynamic-column-data-type.js +4 -4
  270. package/es/index.d.ts +85 -52
  271. package/es/index.js +73 -2
  272. package/es/index.scss +6 -6
  273. package/es/style.js +14 -0
  274. package/es/utils/children-node-handle.d.ts +9 -9
  275. package/es/utils/children-node-handle.js +12 -7
  276. package/es/utils/component-wrapper.d.ts +9 -9
  277. package/es/utils/debounce.d.ts +1 -1
  278. package/es/utils/textUtil.d.ts +10 -10
  279. package/es/utils/textUtil.js +9 -9
  280. package/es/utils/time-util.d.ts +5 -5
  281. package/es/utils/time-util.js +3 -3
  282. package/es/variables.d.ts +2 -2
  283. package/es/variables.scss +3 -3
  284. package/lib/assets/icon/grid-nav/right.png +0 -0
  285. package/lib/assets/icon/position/location.png +0 -0
  286. package/lib/assets/icon/review-list/like-fill.png +0 -0
  287. package/lib/assets/icon/review-list/like.png +0 -0
  288. package/lib/assets/icon/review-list/unlike-fill.png +0 -0
  289. package/lib/assets/icon/review-list/unlike.png +0 -0
  290. package/lib/assets/icon/search/delete.png +0 -0
  291. package/lib/assets/icon/search-history-list/close.png +0 -0
  292. package/lib/assets/icon/search-history-list/time.png +0 -0
  293. package/lib/assets/icon/shop/add.png +0 -0
  294. package/lib/assets/icon/shop/checkbox.png +0 -0
  295. package/lib/assets/icon/shop/subtract.png +0 -0
  296. package/lib/assets/icon/teletext-list/arr.png +0 -0
  297. package/lib/assets/scss/mixin.scss +68 -0
  298. package/lib/components/accordion-selector/accordion-selector.d.ts +49 -0
  299. package/lib/components/accordion-selector/accordion-selector.js +27 -0
  300. package/lib/components/accordion-selector/index.d.ts +6 -0
  301. package/lib/components/accordion-selector/index.js +6 -0
  302. package/lib/components/accordion-selector/index.scss +5 -0
  303. package/lib/components/address-list/address-list-item.d.ts +14 -0
  304. package/lib/components/address-list/address-list-item.js +55 -0
  305. package/lib/components/address-list/address-list-item.scss +90 -0
  306. package/lib/components/address-list/address-list.d.ts +44 -0
  307. package/lib/components/address-list/address-list.js +51 -0
  308. package/lib/components/address-list/index.d.ts +6 -0
  309. package/lib/components/address-list/index.js +6 -0
  310. package/lib/components/address-list/index.scss +4 -0
  311. package/lib/components/bottom-navigation/bottom-navigation.d.ts +15 -15
  312. package/lib/components/bottom-navigation/bottom-navigation.js +1 -2
  313. package/lib/components/bottom-navigation/index.d.ts +3 -3
  314. package/lib/components/bottom-navigation/index.scss +28 -28
  315. package/lib/components/bread-crumb/bread-crumb.d.ts +24 -0
  316. package/lib/components/bread-crumb/bread-crumb.js +38 -0
  317. package/lib/components/bread-crumb/index.d.ts +6 -0
  318. package/lib/components/bread-crumb/index.js +6 -0
  319. package/lib/components/bread-crumb/index.scss +4 -0
  320. package/lib/components/button/button.d.ts +14 -14
  321. package/lib/components/button/button.js +5 -3
  322. package/lib/components/button/index.d.ts +6 -6
  323. package/lib/components/button/index.js +2 -2
  324. package/lib/components/button/index.scss +16 -16
  325. package/lib/components/carousel/carousel.d.ts +14 -14
  326. package/lib/components/carousel/carousel.js +1 -2
  327. package/lib/components/carousel/carousel.scss +32 -32
  328. package/lib/components/collapse/collapse.d.ts +51 -0
  329. package/lib/components/collapse/collapse.js +63 -0
  330. package/lib/components/collapse/index.d.ts +6 -0
  331. package/lib/components/collapse/index.js +6 -0
  332. package/lib/components/collapse/index.scss +18 -0
  333. package/lib/components/collapse-selector/collapse-selector.d.ts +14 -0
  334. package/lib/components/collapse-selector/collapse-selector.js +99 -0
  335. package/lib/components/collapse-selector/index.d.ts +3 -0
  336. package/lib/components/collapse-selector/index.js +6 -0
  337. package/lib/components/collapse-selector/index.scss +98 -0
  338. package/lib/components/collapse-selector-item/collapse-selector-item.d.ts +8 -0
  339. package/lib/components/collapse-selector-item/collapse-selector-item.js +19 -0
  340. package/lib/components/collapse-selector-item/index.d.ts +3 -0
  341. package/lib/components/collapse-selector-item/index.js +6 -0
  342. package/lib/components/collapse-selector-item/index.scss +6 -0
  343. package/lib/components/colorful-button/colorful-button.d.ts +12 -12
  344. package/lib/components/colorful-button/colorful-button.js +1 -2
  345. package/lib/components/colorful-button/index.d.ts +3 -3
  346. package/lib/components/colorful-button/index.scss +5 -5
  347. package/lib/components/colorful-input/colorful-input.d.ts +8 -8
  348. package/lib/components/colorful-input/colorful-input.js +1 -2
  349. package/lib/components/colorful-input/index.d.ts +3 -3
  350. package/lib/components/colorful-input/index.scss +5 -5
  351. package/lib/components/custom-form/custom-form.d.ts +37 -0
  352. package/lib/components/custom-form/custom-form.js +164 -0
  353. package/lib/components/custom-form/index.d.ts +6 -0
  354. package/lib/components/custom-form/index.js +6 -0
  355. package/lib/components/custom-form/index.scss +25 -0
  356. package/lib/components/custom-select/index.d.ts +6 -0
  357. package/lib/components/custom-select/index.js +6 -0
  358. package/lib/components/custom-select/index.scss +152 -0
  359. package/lib/components/custom-select/select.d.ts +45 -0
  360. package/lib/components/custom-select/select.js +152 -0
  361. package/lib/components/dc-slider/index.d.ts +3 -3
  362. package/lib/components/dc-slider/index.scss +6 -6
  363. package/lib/components/dc-slider/slider-img.d.ts +32 -32
  364. package/lib/components/dc-slider/slider-img.js +1 -2
  365. package/lib/components/drawer/drawer.d.ts +44 -0
  366. package/lib/components/drawer/drawer.js +49 -0
  367. package/lib/components/drawer/index.d.ts +6 -0
  368. package/lib/components/drawer/index.js +6 -0
  369. package/lib/components/drawer/index.scss +16 -0
  370. package/lib/components/form/form-item.d.ts +42 -42
  371. package/lib/components/form/form-item.js +1 -2
  372. package/lib/components/form/form-item.scss +20 -20
  373. package/lib/components/form/form.d.ts +21 -20
  374. package/lib/components/form/form.js +253 -1464
  375. package/lib/components/form/index.d.ts +6 -6
  376. package/lib/components/form/index.scss +21 -21
  377. package/lib/components/goods-card-list/goods-card-list-common.d.ts +5 -5
  378. package/lib/components/goods-card-list/goods-card-list-common.scss +118 -118
  379. package/lib/components/goods-card-list/goods-card-list.d.ts +5 -5
  380. package/lib/components/goods-card-list/goods-card-list.js +1 -2
  381. package/lib/components/goods-card-list/goods-card-list.scss +112 -112
  382. package/lib/components/goods-card-list/index.d.ts +4 -4
  383. package/lib/components/goods-card-list/types.d.ts +45 -45
  384. package/lib/components/grid-nav/grid-nav.d.ts +13 -13
  385. package/lib/components/grid-nav/grid-nav.js +1 -2
  386. package/lib/components/grid-nav/index.d.ts +3 -3
  387. package/lib/components/grid-nav/index.scss +50 -50
  388. package/lib/components/image/image.d.ts +17 -0
  389. package/lib/components/image/image.js +27 -0
  390. package/lib/components/image/index.d.ts +3 -0
  391. package/lib/components/image/index.js +7 -0
  392. package/lib/components/image/index.scss +3 -0
  393. package/lib/components/input/index.d.ts +6 -0
  394. package/lib/components/input/index.js +6 -0
  395. package/lib/components/input/index.scss +3 -0
  396. package/lib/components/input/input.d.ts +42 -0
  397. package/lib/components/input/input.js +101 -0
  398. package/lib/components/integral-task/index.d.ts +6 -6
  399. package/lib/components/integral-task/index.js +2 -2
  400. package/lib/components/integral-task/index.scss +35 -35
  401. package/lib/components/integral-task/integral-task.d.ts +40 -40
  402. package/lib/components/integral-task/integral-task.js +1 -2
  403. package/lib/components/member-card/index.d.ts +6 -6
  404. package/lib/components/member-card/index.scss +86 -86
  405. package/lib/components/member-card/member-card.d.ts +5 -5
  406. package/lib/components/member-card/member-card.js +1 -2
  407. package/lib/components/member-card/type.d.ts +11 -11
  408. package/lib/components/menu-list/index.d.ts +6 -6
  409. package/lib/components/menu-list/index.js +2 -2
  410. package/lib/components/menu-list/index.scss +16 -16
  411. package/lib/components/menu-list/menu-list-item.d.ts +5 -5
  412. package/lib/components/menu-list/menu-list-item.scss +49 -49
  413. package/lib/components/menu-list/menu-list.d.ts +5 -5
  414. package/lib/components/menu-list/types.d.ts +23 -23
  415. package/lib/components/message-list/index.d.ts +6 -6
  416. package/lib/components/message-list/index.js +2 -2
  417. package/lib/components/message-list/index.scss +22 -22
  418. package/lib/components/message-list/message-list-item.d.ts +33 -33
  419. package/lib/components/message-list/message-list-item.js +2 -2
  420. package/lib/components/message-list/message-list-item.scss +62 -62
  421. package/lib/components/message-list/message-list.d.ts +28 -28
  422. package/lib/components/message-list/message-list.js +1 -2
  423. package/lib/components/notice-bar/index.d.ts +3 -3
  424. package/lib/components/notice-bar/index.scss +84 -84
  425. package/lib/components/notice-bar/notice-bar-item.d.ts +18 -18
  426. package/lib/components/notice-bar/notice-bar-item.scss +26 -26
  427. package/lib/components/notice-bar/notice-bar.d.ts +46 -46
  428. package/lib/components/position/entity.d.ts +5 -5
  429. package/lib/components/position/index.d.ts +3 -3
  430. package/lib/components/position/index.scss +124 -124
  431. package/lib/components/position/position-left.d.ts +9 -9
  432. package/lib/components/position/position-left.js +1 -2
  433. package/lib/components/position/position-list.d.ts +12 -12
  434. package/lib/components/position/position-list.js +5 -6
  435. package/lib/components/position/position.d.ts +8 -8
  436. package/lib/components/position/position.js +1 -2
  437. package/lib/components/profile/index.d.ts +6 -0
  438. package/lib/components/profile/index.js +6 -0
  439. package/lib/components/profile/index.scss +37 -0
  440. package/lib/components/profile/profile.d.ts +35 -0
  441. package/lib/components/profile/profile.js +45 -0
  442. package/lib/components/radio-group/index.d.ts +8 -8
  443. package/lib/components/radio-group/index.scss +40 -40
  444. package/lib/components/radio-group/radio-group-item.d.ts +48 -48
  445. package/lib/components/radio-group/radio-group.d.ts +52 -52
  446. package/lib/components/radio-group/radio-group.js +1 -2
  447. package/lib/components/rating/index.d.ts +6 -0
  448. package/lib/components/rating/index.js +6 -0
  449. package/lib/components/rating/index.scss +3 -0
  450. package/lib/components/rating/rating.d.ts +39 -0
  451. package/lib/components/rating/rating.js +36 -0
  452. package/lib/components/review-list/index.d.ts +3 -0
  453. package/lib/components/review-list/index.js +6 -0
  454. package/lib/components/review-list/index.scss +89 -0
  455. package/lib/components/review-list/review-list.d.ts +44 -0
  456. package/lib/components/review-list/review-list.js +75 -0
  457. package/lib/components/rich-text/index.d.ts +6 -6
  458. package/lib/components/rich-text/index.scss +19 -19
  459. package/lib/components/rich-text/rich-text.d.ts +13 -14
  460. package/lib/components/search-bar/index.d.ts +3 -3
  461. package/lib/components/search-bar/index.scss +44 -39
  462. package/lib/components/search-bar/search-bar.d.ts +12 -10
  463. package/lib/components/search-bar/search-bar.js +12 -7
  464. package/lib/components/search-history-list/index.d.ts +3 -0
  465. package/lib/components/search-history-list/index.js +6 -0
  466. package/lib/components/search-history-list/index.scss +29 -0
  467. package/lib/components/search-history-list/search-history-list.d.ts +29 -0
  468. package/lib/components/search-history-list/search-history-list.js +51 -0
  469. package/lib/components/shopping-cart/components/good-item.d.ts +15 -0
  470. package/lib/components/shopping-cart/components/good-item.js +132 -0
  471. package/lib/components/shopping-cart/components/good-item.scss +161 -0
  472. package/lib/components/shopping-cart/index.d.ts +6 -0
  473. package/lib/components/shopping-cart/index.js +6 -0
  474. package/lib/components/shopping-cart/index.scss +140 -0
  475. package/lib/components/shopping-cart/shopping-cart.d.ts +5 -0
  476. package/lib/components/shopping-cart/shopping-cart.js +244 -0
  477. package/lib/components/shopping-cart/type.d.ts +51 -0
  478. package/lib/components/shopping-cart/type.js +3 -0
  479. package/lib/components/stream-list/index.d.ts +6 -6
  480. package/lib/components/stream-list/index.scss +26 -26
  481. package/lib/components/stream-list/stream-list.d.ts +54 -54
  482. package/lib/components/stream-list/stream-list.js +5 -6
  483. package/lib/components/swiper/index.d.ts +3 -3
  484. package/lib/components/swiper/index.scss +20 -20
  485. package/lib/components/swiper/swiper.d.ts +30 -30
  486. package/lib/components/swiper/swiper.js +1 -2
  487. package/lib/components/switch/index.d.ts +6 -0
  488. package/lib/components/switch/index.js +6 -0
  489. package/lib/components/switch/index.scss +4 -0
  490. package/lib/components/switch/switch.d.ts +14 -0
  491. package/lib/components/switch/switch.js +26 -0
  492. package/lib/components/tab/index.d.ts +6 -6
  493. package/lib/components/tab/index.js +2 -2
  494. package/lib/components/tab/index.scss +44 -44
  495. package/lib/components/tab/tab.d.ts +27 -27
  496. package/lib/components/tab/tab.js +1 -2
  497. package/lib/components/tab-container/index.d.ts +3 -3
  498. package/lib/components/tab-container/index.scss +47 -47
  499. package/lib/components/tab-container/tab-container.d.ts +10 -10
  500. package/lib/components/tab-container-item/index.d.ts +3 -3
  501. package/lib/components/tab-container-item/tab-container-item.d.ts +11 -11
  502. package/lib/components/tag/index.d.ts +6 -6
  503. package/lib/components/tag/index.js +2 -2
  504. package/lib/components/tag/index.scss +24 -24
  505. package/lib/components/tag/tag.d.ts +14 -14
  506. package/lib/components/tag/tag.js +1 -2
  507. package/lib/components/teletext-list/index.d.ts +6 -6
  508. package/lib/components/teletext-list/index.scss +53 -40
  509. package/lib/components/teletext-list/teletext-list-item.d.ts +102 -33
  510. package/lib/components/teletext-list/teletext-list-item.js +195 -28
  511. package/lib/components/teletext-list/teletext-list-item.scss +203 -57
  512. package/lib/components/teletext-list/teletext-list.d.ts +147 -61
  513. package/lib/components/teletext-list/teletext-list.js +91 -9
  514. package/lib/components/text-description-detail-list/index.d.ts +6 -0
  515. package/lib/components/text-description-detail-list/index.js +6 -0
  516. package/lib/components/text-description-detail-list/index.scss +12 -0
  517. package/lib/components/text-description-detail-list/text-description-detail-list-item.d.ts +29 -0
  518. package/lib/components/text-description-detail-list/text-description-detail-list-item.js +28 -0
  519. package/lib/components/text-description-detail-list/text-description-detail-list-item.scss +45 -0
  520. package/lib/components/text-description-detail-list/text-description-detail-list.d.ts +27 -0
  521. package/lib/components/text-description-detail-list/text-description-detail-list.js +49 -0
  522. package/lib/components/title/index.d.ts +8 -8
  523. package/lib/components/title/title-1.d.ts +10 -10
  524. package/lib/components/title/title-1.scss +25 -25
  525. package/lib/components/title/title-2.d.ts +18 -18
  526. package/lib/components/title/title-2.scss +22 -22
  527. package/lib/components/user-card/index.d.ts +6 -6
  528. package/lib/components/user-card/index.scss +68 -68
  529. package/lib/components/user-card/type.d.ts +8 -8
  530. package/lib/components/user-card/user-card.d.ts +5 -5
  531. package/lib/components//346/250/241/346/235/277/index.d.ts +6 -0
  532. package/lib/components//346/250/241/346/235/277/index.js +6 -0
  533. package/lib/components//346/250/241/346/235/277/index.scss +0 -0
  534. package/lib/components//346/250/241/346/235/277/member-card.d.ts +5 -0
  535. package/lib/components//346/250/241/346/235/277/member-card.js +26 -0
  536. package/lib/components//346/250/241/346/235/277/type.d.ts +11 -0
  537. package/lib/components//346/250/241/346/235/277/type.js +3 -0
  538. package/lib/entity/dynamic-column-data-type.d.ts +316 -316
  539. package/lib/entity/dynamic-column-data-type.js +4 -4
  540. package/lib/index.d.ts +85 -52
  541. package/lib/index.js +126 -3
  542. package/lib/index.scss +6 -6
  543. package/lib/style.js +14 -0
  544. package/lib/utils/children-node-handle.d.ts +9 -9
  545. package/lib/utils/children-node-handle.js +12 -7
  546. package/lib/utils/component-wrapper.d.ts +9 -9
  547. package/lib/utils/component-wrapper.js +1 -2
  548. package/lib/utils/debounce.d.ts +1 -1
  549. package/lib/utils/textUtil.d.ts +10 -10
  550. package/lib/utils/textUtil.js +9 -9
  551. package/lib/utils/time-util.d.ts +5 -5
  552. package/lib/utils/time-util.js +3 -3
  553. package/lib/variables.d.ts +2 -2
  554. package/lib/variables.scss +3 -3
  555. package/lowcode/accordion-selector/meta.ts +125 -124
  556. package/lowcode/accordion-selector/props.ts +106 -106
  557. package/lowcode/address-list/meta.ts +102 -101
  558. package/lowcode/bread-crumb/meta.ts +119 -118
  559. package/lowcode/button2/meta.ts +86 -84
  560. package/lowcode/collapse/meta.ts +140 -138
  561. package/lowcode/collapse-selector/meta.ts +67 -67
  562. package/lowcode/collapse-selector/props.ts +114 -114
  563. package/lowcode/collapse-selector-item/meta.ts +80 -78
  564. package/lowcode/custom-drawer/meta.ts +223 -221
  565. package/lowcode/custom-form/meta.ts +307 -0
  566. package/lowcode/custom-radio-group/meta.ts +313 -312
  567. package/lowcode/custom-radio-group-item/meta.ts +231 -230
  568. package/lowcode/{select → custom-select}/meta.ts +203 -189
  569. package/lowcode/d-c-slider/meta.design.ts +174 -174
  570. package/lowcode/d-c-slider/meta.ts +186 -186
  571. package/lowcode/d-c-slider/snippets.ts +69 -69
  572. package/lowcode/drawer/meta.ts +319 -318
  573. package/lowcode/form/meta.ts +69 -68
  574. package/lowcode/goods-card-list/meta.ts +271 -270
  575. package/lowcode/goods-card-list-common/meta.ts +271 -270
  576. package/lowcode/grid-nav/meta.ts +237 -236
  577. package/lowcode/image/meta.ts +62 -61
  578. package/lowcode/input/meta.ts +629 -240
  579. package/lowcode/integral-task/meta.ts +214 -212
  580. package/lowcode/item/meta.ts +310 -308
  581. package/lowcode/member-card/meta.ts +189 -187
  582. package/lowcode/menu-list/meta.ts +155 -154
  583. package/lowcode/message-list/meta.ts +227 -225
  584. package/lowcode/navigation/meta.ts +178 -177
  585. package/lowcode/notice-bar/meta.ts +252 -251
  586. package/lowcode/position/meta.ts +163 -162
  587. package/lowcode/profile/meta.ts +126 -125
  588. package/lowcode/rating/meta.ts +103 -102
  589. package/lowcode/review-list/meta.ts +148 -147
  590. package/lowcode/rich-text/meta.ts +73 -72
  591. package/lowcode/search-bar/meta.ts +106 -105
  592. package/lowcode/search-history-list/meta.ts +104 -103
  593. package/lowcode/shopping-cart/meta.ts +496 -494
  594. package/lowcode/stream-list/meta.ts +211 -209
  595. package/lowcode/swiper/meta.ts +237 -237
  596. package/lowcode/switch/meta.ts +70 -69
  597. package/lowcode/tab-container/meta.ts +71 -71
  598. package/lowcode/tab-container/props.ts +194 -194
  599. package/lowcode/tab-container-item/meta.ts +197 -195
  600. package/lowcode/tab-message/meta.ts +107 -105
  601. package/lowcode/tag-c/meta.ts +78 -76
  602. package/lowcode/teletext-list/meta.ts +846 -845
  603. package/lowcode/text-description-detail-list/meta.ts +113 -112
  604. package/lowcode/title1/meta.ts +61 -60
  605. package/lowcode/title2/meta.ts +95 -94
  606. package/lowcode/user-card/meta.ts +131 -130
  607. package/lowcode_es/accordion-selector/meta.d.ts +3 -3
  608. package/lowcode_es/accordion-selector/meta.js +1 -0
  609. package/lowcode_es/accordion-selector/props.d.ts +51 -51
  610. package/lowcode_es/address-list/meta.d.ts +22 -2
  611. package/lowcode_es/address-list/meta.js +1 -0
  612. package/lowcode_es/bread-crumb/meta.d.ts +22 -2
  613. package/lowcode_es/bread-crumb/meta.js +1 -0
  614. package/lowcode_es/button2/meta.d.ts +22 -2
  615. package/lowcode_es/button2/meta.js +2 -0
  616. package/lowcode_es/collapse/meta.d.ts +22 -2
  617. package/lowcode_es/collapse/meta.js +2 -0
  618. package/lowcode_es/collapse-selector/meta.d.ts +22 -2
  619. package/lowcode_es/collapse-selector/props.d.ts +49 -49
  620. package/lowcode_es/collapse-selector-item/meta.d.ts +22 -2
  621. package/lowcode_es/collapse-selector-item/meta.js +2 -0
  622. package/lowcode_es/custom-drawer/meta.d.ts +22 -2
  623. package/lowcode_es/custom-drawer/meta.js +2 -0
  624. package/lowcode_es/custom-form/meta.d.ts +22 -0
  625. package/lowcode_es/custom-form/meta.js +302 -0
  626. package/lowcode_es/custom-radio-group/meta.d.ts +22 -2
  627. package/lowcode_es/custom-radio-group/meta.js +1 -0
  628. package/lowcode_es/custom-radio-group-item/meta.d.ts +23 -2
  629. package/lowcode_es/custom-radio-group-item/meta.js +1 -0
  630. package/lowcode_es/custom-select/meta.d.ts +22 -0
  631. package/lowcode_es/{select → custom-select}/meta.js +21 -10
  632. package/lowcode_es/d-c-slider/meta.d.ts +151 -151
  633. package/lowcode_es/d-c-slider/meta.design.d.ts +102 -102
  634. package/lowcode_es/d-c-slider/snippets.d.ts +37 -37
  635. package/lowcode_es/drawer/meta.d.ts +22 -2
  636. package/lowcode_es/drawer/meta.js +1 -0
  637. package/lowcode_es/form/meta.d.ts +22 -2
  638. package/lowcode_es/form/meta.js +1 -0
  639. package/lowcode_es/goods-card-list/meta.d.ts +22 -2
  640. package/lowcode_es/goods-card-list/meta.js +1 -0
  641. package/lowcode_es/goods-card-list-common/meta.d.ts +22 -2
  642. package/lowcode_es/goods-card-list-common/meta.js +1 -0
  643. package/lowcode_es/grid-nav/meta.d.ts +22 -2
  644. package/lowcode_es/grid-nav/meta.js +1 -0
  645. package/lowcode_es/image/meta.d.ts +22 -2
  646. package/lowcode_es/image/meta.js +1 -0
  647. package/lowcode_es/input/meta.d.ts +22 -2
  648. package/lowcode_es/input/meta.js +424 -77
  649. package/lowcode_es/integral-task/meta.d.ts +22 -2
  650. package/lowcode_es/integral-task/meta.js +2 -0
  651. package/lowcode_es/item/meta.d.ts +22 -2
  652. package/lowcode_es/item/meta.js +2 -0
  653. package/lowcode_es/member-card/meta.d.ts +22 -2
  654. package/lowcode_es/member-card/meta.js +2 -0
  655. package/lowcode_es/menu-list/meta.d.ts +22 -2
  656. package/lowcode_es/menu-list/meta.js +1 -0
  657. package/lowcode_es/message-list/meta.d.ts +22 -2
  658. package/lowcode_es/message-list/meta.js +2 -0
  659. package/lowcode_es/meta.js +49 -48
  660. package/lowcode_es/navigation/meta.d.ts +22 -2
  661. package/lowcode_es/navigation/meta.js +1 -0
  662. package/lowcode_es/notice-bar/meta.d.ts +22 -2
  663. package/lowcode_es/notice-bar/meta.js +1 -0
  664. package/lowcode_es/position/meta.d.ts +22 -2
  665. package/lowcode_es/position/meta.js +1 -0
  666. package/lowcode_es/profile/meta.d.ts +22 -2
  667. package/lowcode_es/profile/meta.js +1 -0
  668. package/lowcode_es/rating/meta.d.ts +22 -2
  669. package/lowcode_es/rating/meta.js +1 -0
  670. package/lowcode_es/review-list/meta.d.ts +22 -2
  671. package/lowcode_es/review-list/meta.js +1 -0
  672. package/lowcode_es/rich-text/meta.d.ts +22 -2
  673. package/lowcode_es/rich-text/meta.js +1 -0
  674. package/lowcode_es/search-bar/meta.d.ts +22 -2
  675. package/lowcode_es/search-bar/meta.js +1 -0
  676. package/lowcode_es/search-history-list/meta.d.ts +22 -2
  677. package/lowcode_es/search-history-list/meta.js +1 -0
  678. package/lowcode_es/shopping-cart/meta.d.ts +22 -2
  679. package/lowcode_es/shopping-cart/meta.js +2 -0
  680. package/lowcode_es/stream-list/meta.d.ts +22 -2
  681. package/lowcode_es/stream-list/meta.js +2 -0
  682. package/lowcode_es/swiper/meta.d.ts +22 -2
  683. package/lowcode_es/switch/meta.d.ts +22 -2
  684. package/lowcode_es/switch/meta.js +1 -0
  685. package/lowcode_es/tab-container/meta.d.ts +22 -2
  686. package/lowcode_es/tab-container/props.d.ts +90 -90
  687. package/lowcode_es/tab-container-item/meta.d.ts +22 -2
  688. package/lowcode_es/tab-container-item/meta.js +2 -0
  689. package/lowcode_es/tab-message/meta.d.ts +22 -2
  690. package/lowcode_es/tab-message/meta.js +2 -0
  691. package/lowcode_es/tag-c/meta.d.ts +22 -2
  692. package/lowcode_es/tag-c/meta.js +2 -0
  693. package/lowcode_es/teletext-list/meta.d.ts +22 -2
  694. package/lowcode_es/teletext-list/meta.js +1 -0
  695. package/lowcode_es/text-description-detail-list/meta.d.ts +22 -2
  696. package/lowcode_es/text-description-detail-list/meta.js +1 -0
  697. package/lowcode_es/title1/meta.d.ts +22 -2
  698. package/lowcode_es/title1/meta.js +1 -0
  699. package/lowcode_es/title2/meta.d.ts +22 -2
  700. package/lowcode_es/title2/meta.js +1 -0
  701. package/lowcode_es/user-card/meta.d.ts +22 -2
  702. package/lowcode_es/user-card/meta.js +2 -1
  703. package/lowcode_es/view.js +3 -3
  704. package/lowcode_lib/accordion-selector/meta.d.ts +3 -3
  705. package/lowcode_lib/accordion-selector/meta.js +1 -0
  706. package/lowcode_lib/accordion-selector/props.d.ts +51 -51
  707. package/lowcode_lib/address-list/meta.d.ts +22 -2
  708. package/lowcode_lib/address-list/meta.js +1 -0
  709. package/lowcode_lib/bread-crumb/meta.d.ts +22 -2
  710. package/lowcode_lib/bread-crumb/meta.js +1 -0
  711. package/lowcode_lib/button2/meta.d.ts +22 -2
  712. package/lowcode_lib/button2/meta.js +2 -0
  713. package/lowcode_lib/collapse/meta.d.ts +22 -2
  714. package/lowcode_lib/collapse/meta.js +2 -0
  715. package/lowcode_lib/collapse-selector/meta.d.ts +22 -2
  716. package/lowcode_lib/collapse-selector/props.d.ts +49 -49
  717. package/lowcode_lib/collapse-selector-item/meta.d.ts +22 -2
  718. package/lowcode_lib/collapse-selector-item/meta.js +2 -0
  719. package/lowcode_lib/custom-drawer/meta.d.ts +22 -2
  720. package/lowcode_lib/custom-drawer/meta.js +2 -0
  721. package/lowcode_lib/custom-form/meta.d.ts +22 -0
  722. package/lowcode_lib/custom-form/meta.js +307 -0
  723. package/lowcode_lib/custom-radio-group/meta.d.ts +22 -2
  724. package/lowcode_lib/custom-radio-group/meta.js +1 -0
  725. package/lowcode_lib/custom-radio-group-item/meta.d.ts +23 -2
  726. package/lowcode_lib/custom-radio-group-item/meta.js +1 -0
  727. package/lowcode_lib/custom-select/meta.d.ts +22 -0
  728. package/lowcode_lib/{select → custom-select}/meta.js +21 -10
  729. package/lowcode_lib/d-c-slider/meta.d.ts +151 -151
  730. package/lowcode_lib/d-c-slider/meta.design.d.ts +102 -102
  731. package/lowcode_lib/d-c-slider/snippets.d.ts +37 -37
  732. package/lowcode_lib/drawer/meta.d.ts +22 -2
  733. package/lowcode_lib/drawer/meta.js +1 -0
  734. package/lowcode_lib/form/meta.d.ts +22 -2
  735. package/lowcode_lib/form/meta.js +1 -0
  736. package/lowcode_lib/goods-card-list/meta.d.ts +22 -2
  737. package/lowcode_lib/goods-card-list/meta.js +1 -0
  738. package/lowcode_lib/goods-card-list-common/meta.d.ts +22 -2
  739. package/lowcode_lib/goods-card-list-common/meta.js +1 -0
  740. package/lowcode_lib/grid-nav/meta.d.ts +22 -2
  741. package/lowcode_lib/grid-nav/meta.js +1 -0
  742. package/lowcode_lib/image/meta.d.ts +22 -2
  743. package/lowcode_lib/image/meta.js +1 -0
  744. package/lowcode_lib/input/meta.d.ts +22 -2
  745. package/lowcode_lib/input/meta.js +424 -77
  746. package/lowcode_lib/integral-task/meta.d.ts +22 -2
  747. package/lowcode_lib/integral-task/meta.js +2 -0
  748. package/lowcode_lib/item/meta.d.ts +22 -2
  749. package/lowcode_lib/item/meta.js +2 -0
  750. package/lowcode_lib/member-card/meta.d.ts +22 -2
  751. package/lowcode_lib/member-card/meta.js +2 -0
  752. package/lowcode_lib/menu-list/meta.d.ts +22 -2
  753. package/lowcode_lib/menu-list/meta.js +1 -0
  754. package/lowcode_lib/message-list/meta.d.ts +22 -2
  755. package/lowcode_lib/message-list/meta.js +2 -0
  756. package/lowcode_lib/meta.js +49 -48
  757. package/lowcode_lib/navigation/meta.d.ts +22 -2
  758. package/lowcode_lib/navigation/meta.js +1 -0
  759. package/lowcode_lib/notice-bar/meta.d.ts +22 -2
  760. package/lowcode_lib/notice-bar/meta.js +1 -0
  761. package/lowcode_lib/position/meta.d.ts +22 -2
  762. package/lowcode_lib/position/meta.js +1 -0
  763. package/lowcode_lib/profile/meta.d.ts +22 -2
  764. package/lowcode_lib/profile/meta.js +1 -0
  765. package/lowcode_lib/rating/meta.d.ts +22 -2
  766. package/lowcode_lib/rating/meta.js +1 -0
  767. package/lowcode_lib/review-list/meta.d.ts +22 -2
  768. package/lowcode_lib/review-list/meta.js +1 -0
  769. package/lowcode_lib/rich-text/meta.d.ts +22 -2
  770. package/lowcode_lib/rich-text/meta.js +1 -0
  771. package/lowcode_lib/search-bar/meta.d.ts +22 -2
  772. package/lowcode_lib/search-bar/meta.js +1 -0
  773. package/lowcode_lib/search-history-list/meta.d.ts +22 -2
  774. package/lowcode_lib/search-history-list/meta.js +1 -0
  775. package/lowcode_lib/shopping-cart/meta.d.ts +22 -2
  776. package/lowcode_lib/shopping-cart/meta.js +2 -0
  777. package/lowcode_lib/stream-list/meta.d.ts +22 -2
  778. package/lowcode_lib/stream-list/meta.js +2 -0
  779. package/lowcode_lib/swiper/meta.d.ts +22 -2
  780. package/lowcode_lib/switch/meta.d.ts +22 -2
  781. package/lowcode_lib/switch/meta.js +1 -0
  782. package/lowcode_lib/tab-container/meta.d.ts +22 -2
  783. package/lowcode_lib/tab-container/props.d.ts +90 -90
  784. package/lowcode_lib/tab-container-item/meta.d.ts +22 -2
  785. package/lowcode_lib/tab-container-item/meta.js +2 -0
  786. package/lowcode_lib/tab-message/meta.d.ts +22 -2
  787. package/lowcode_lib/tab-message/meta.js +2 -0
  788. package/lowcode_lib/tag-c/meta.d.ts +22 -2
  789. package/lowcode_lib/tag-c/meta.js +2 -0
  790. package/lowcode_lib/teletext-list/meta.d.ts +22 -2
  791. package/lowcode_lib/teletext-list/meta.js +1 -0
  792. package/lowcode_lib/text-description-detail-list/meta.d.ts +22 -2
  793. package/lowcode_lib/text-description-detail-list/meta.js +1 -0
  794. package/lowcode_lib/title1/meta.d.ts +22 -2
  795. package/lowcode_lib/title1/meta.js +1 -0
  796. package/lowcode_lib/title2/meta.d.ts +22 -2
  797. package/lowcode_lib/title2/meta.js +1 -0
  798. package/lowcode_lib/user-card/meta.d.ts +22 -2
  799. package/lowcode_lib/user-card/meta.js +2 -1
  800. package/lowcode_lib/view.js +2 -2
  801. package/package.json +19 -11
  802. package/lowcode_es/select/meta.d.ts +0 -2
  803. package/lowcode_lib/select/meta.d.ts +0 -2
package/build/index.js ADDED
@@ -0,0 +1,43 @@
1
+ !function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function e(){return t.default}:function e(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=237)}([function(t,e,n){"use strict";var r=n(4),o=n(24).f,i=n(46),a=n(18),u=n(123),c=n(126),s=n(86);t.exports=function(t,e){var n=t.target,l=t.global,f=t.stat,p,h,d,g,v,m;if(h=l?r:f?r[n]||u(n,{}):r[n]&&r[n].prototype)for(d in e){if(v=e[d],g=t.dontCallGetSet?(m=o(h,d))&&m.value:h[d],!(p=s(l?d:n+(f?".":"#")+d,t.forced))&&void 0!==g){if(typeof v==typeof g)continue;c(v,g)}(t.sham||g&&g.sham)&&i(v,"sham",!0),a(h,d,v,t)}}},function(t,e,n){"use strict";t.exports=n(493)},function(t,e,n){"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){"use strict";var r=n(82),o=Function.prototype,i=o.call,a=r&&o.bind.bind(i,i);t.exports=r?a:function(t){return function(){return i.apply(t,arguments)}}},function(t,e,n){"use strict";(function(e){var n=function(t){return t&&t.Math===Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e&&e)||n("object"==typeof this&&this)||function(){return this}()||Function("return this")()}).call(this,n(166))},function(t,e,n){var r,o;t.exports=n(503)()},function(t,e,n){"use strict";var r=n(2);t.exports=!r((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(t,e,n){"use strict";var r=n(11);t.exports=function(t){return"object"==typeof t?null!==t:r(t)}},function(t,e,n){"use strict";var r=n(7),o=String,i=TypeError;t.exports=function(t){if(r(t))return t;throw new i(o(t)+" is not an object")}},function(t,e,n){"use strict";var r=n(4),o=n(72),i=n(13),a=n(73),u=n(71),c=n(167),s=r.Symbol,l=o("wks"),f=c?s.for||s:s&&s.withoutSetter||a;t.exports=function(t){return i(l,t)||(l[t]=u&&i(s,t)?s[t]:f("Symbol."+t)),l[t]}},function(t,e,n){"use strict";var r=n(82),o=Function.prototype.call;t.exports=r?o.bind(o):function(){return o.apply(o,arguments)}},function(t,e,n){"use strict";var r="object"==typeof document&&document.all;t.exports=void 0===r&&void 0!==r?function(t){return"function"==typeof t||t===r}:function(t){return"function"==typeof t}},function(t,e,n){"use strict";var r=n(142),o=n(6),i=n(4),a=n(11),u=n(7),c=n(13),s=n(48),l=n(63),f=n(46),p=n(18),h=n(43),d=n(40),g=n(44),v=n(57),m=n(9),y=n(73),b=n(23),x=b.enforce,w=b.get,k=i.Int8Array,S=k&&k.prototype,E=i.Uint8ClampedArray,O=E&&E.prototype,A=k&&g(k),T=S&&g(S),C=Object.prototype,P=i.TypeError,R=m("toStringTag"),L=y("TYPED_ARRAY_TAG"),j="TypedArrayConstructor",I=r&&!!v&&"Opera"!==s(i.opera),F=!1,D,_,M,N={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},U={BigInt64Array:8,BigUint64Array:8},q=function t(e){if(!u(e))return!1;var n=s(e);return"DataView"===n||c(N,n)||c(U,n)},B=function(t){var e=g(t);if(u(e)){var n=w(e);return n&&c(n,"TypedArrayConstructor")?n.TypedArrayConstructor:B(e)}},z=function(t){if(!u(t))return!1;var e=s(t);return c(N,e)||c(U,e)},H=function(t){if(z(t))return t;throw new P("Target is not a typed array")},V=function(t){if(a(t)&&(!v||d(A,t)))return t;throw new P(l(t)+" is not a typed array constructor")},$=function(t,e,n,r){if(o){if(n)for(var a in N){var u=i[a];if(u&&c(u.prototype,t))try{delete u.prototype[t]}catch(n){try{u.prototype[t]=e}catch(t){}}}T[t]&&!n||p(T,t,n?e:I&&S[t]||e,r)}},G=function(t,e,n){var r,a;if(o){if(v){if(n)for(r in N)if((a=i[r])&&c(a,t))try{delete a[t]}catch(t){}if(A[t]&&!n)return;try{return p(A,t,n?e:I&&A[t]||e)}catch(t){}}for(r in N)!(a=i[r])||a[t]&&!n||p(a,t,e)}};for(D in N)(M=(_=i[D])&&_.prototype)?x(M).TypedArrayConstructor=_:I=!1;for(D in U)(M=(_=i[D])&&_.prototype)&&(x(M).TypedArrayConstructor=_);if((!I||!a(A)||A===Function.prototype)&&(A=function t(){throw new P("Incorrect invocation")},I))for(D in N)i[D]&&v(i[D],A);if((!I||!T||T===C)&&(T=A.prototype,I))for(D in N)i[D]&&v(i[D].prototype,T);if(I&&g(O)!==T&&v(O,T),o&&!c(T,R))for(D in F=!0,h(T,R,{configurable:!0,get:function(){return u(this)?this[L]:void 0}}),N)i[D]&&f(i[D],L,D);t.exports={NATIVE_ARRAY_BUFFER_VIEWS:I,TYPED_ARRAY_TAG:F&&L,aTypedArray:H,aTypedArrayConstructor:V,exportTypedArrayMethod:$,exportTypedArrayStaticMethod:G,getTypedArrayConstructor:B,isView:q,isTypedArray:z,TypedArray:A,TypedArrayPrototype:T}},function(t,e,n){"use strict";var r=n(3),o=n(15),i=r({}.hasOwnProperty);t.exports=Object.hasOwn||function t(e,n){return i(o(e),n)}},function(t,e,n){"use strict";var r=n(48),o=String;t.exports=function(t){if("Symbol"===r(t))throw new TypeError("Cannot convert a Symbol value to a string");return o(t)}},function(t,e,n){"use strict";var r=n(25),o=Object;t.exports=function(t){return o(r(t))}},function(t,e,n){"use strict";var r=n(6),o=n(169),i=n(170),a=n(8),u=n(61),c=TypeError,s=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",h="writable";e.f=r?i?function t(e,n,r){if(a(e),n=u(n),a(r),"function"==typeof e&&"prototype"===n&&"value"in r&&h in r&&!r[h]){var o=l(e,n);o&&o[h]&&(e[n]=r.value,r={configurable:p in r?r[p]:o[p],enumerable:f in r?r[f]:o[f],writable:!1})}return s(e,n,r)}:s:function t(e,n,r){if(a(e),n=u(n),a(r),o)try{return s(e,n,r)}catch(t){}if("get"in r||"set"in r)throw new c("Accessors not supported");return"value"in r&&(e[n]=r.value),e}},function(t,e,n){"use strict";(function(t){n.d(e,"a",(function(){return W})),n.d(e,"b",(function(){return P})),n.d(e,"c",(function(){return et})),n.d(e,"d",(function(){return C})),n.d(e,"e",(function(){return V}));var r=n(38),o=n(1),i=n.n(o),a=n(5),u=n.n(a),c=n(29),s=n(33),l=n(20),f=n(163),p=n.n(f),h=n(225),d=n.n(h),g=n(67),v=n(231),m=n.n(v),y=1073741823,b="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==t?t:{};function x(){var t="__global_unique_id__";return b[t]=(b[t]||0)+1}function w(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}function k(t){var e=[];return{on:function t(n){e.push(n)},off:function t(n){e=e.filter((function(t){return t!==n}))},get:function e(){return t},set:function n(r,o){t=r,e.forEach((function(e){return e(t,o)}))}}}function S(t){return Array.isArray(t)?t[0]:t}function E(t,e){var n,o,a="__create-react-context-"+x()+"__",c=function(t){function n(){for(var e,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(e=t.call.apply(t,[this].concat(r))||this).emitter=k(e.props.value),e}Object(r.a)(n,t);var o=n.prototype;return o.getChildContext=function t(){var e;return(e={})[a]=this.emitter,e},o.componentWillReceiveProps=function t(n){if(this.props.value!==n.value){var r=this.props.value,o=n.value,i;w(r,o)?i=0:(i="function"==typeof e?e(r,o):1073741823,0!==(i|=0)&&this.emitter.set(n.value,i))}},o.render=function t(){return this.props.children},n}(i.a.Component);c.childContextTypes=((n={})[a]=u.a.object.isRequired,n);var s=function(e){function n(){for(var t,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(t=e.call.apply(e,[this].concat(r))||this).observedBits=void 0,t.state={value:t.getValue()},t.onUpdate=function(e,n){var r;0!=((0|t.observedBits)&n)&&t.setState({value:t.getValue()})},t}Object(r.a)(n,e);var o=n.prototype;return o.componentWillReceiveProps=function t(e){var n=e.observedBits;this.observedBits=null==n?1073741823:n},o.componentDidMount=function t(){this.context[a]&&this.context[a].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=null==e?1073741823:e},o.componentWillUnmount=function t(){this.context[a]&&this.context[a].off(this.onUpdate)},o.getValue=function e(){return this.context[a]?this.context[a].get():t},o.render=function t(){return S(this.props.children)(this.state.value)},n}(i.a.Component);return s.contextTypes=((o={})[a]=u.a.object,o),{Provider:c,Consumer:s}}var O=i.a.createContext||E,A=function t(e){var n=O();return n.displayName=e,n},T=A("Router-History"),C=A("Router"),P=function(t){function e(e){var n;return(n=t.call(this,e)||this).state={location:e.history.location},n._isMounted=!1,n._pendingLocation=null,e.staticContext||(n.unlisten=e.history.listen((function(t){n._pendingLocation=t}))),n}Object(r.a)(e,t),e.computeRootMatch=function t(e){return{path:"/",url:"/",params:{},isExact:"/"===e}};var n=e.prototype;return n.componentDidMount=function t(){var e=this;this._isMounted=!0,this.unlisten&&this.unlisten(),this.props.staticContext||(this.unlisten=this.props.history.listen((function(t){e._isMounted&&e.setState({location:t})}))),this._pendingLocation&&this.setState({location:this._pendingLocation})},n.componentWillUnmount=function t(){this.unlisten&&(this.unlisten(),this._isMounted=!1,this._pendingLocation=null)},n.render=function t(){return i.a.createElement(C.Provider,{value:{history:this.props.history,location:this.state.location,match:e.computeRootMatch(this.state.location.pathname),staticContext:this.props.staticContext}},i.a.createElement(T.Provider,{children:this.props.children||null,value:this.props.history}))},e}(i.a.Component);var R=function(t){function e(){for(var e,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(e=t.call.apply(t,[this].concat(r))||this).history=Object(c.d)(e.props),e}var n;return Object(r.a)(e,t),e.prototype.render=function t(){return i.a.createElement(P,{history:this.history,children:this.props.children})},e}(i.a.Component);var L=function(t){function e(){return t.apply(this,arguments)||this}Object(r.a)(e,t);var n=e.prototype;return n.componentDidMount=function t(){this.props.onMount&&this.props.onMount.call(this,this)},n.componentDidUpdate=function t(e){this.props.onUpdate&&this.props.onUpdate.call(this,this,e)},n.componentWillUnmount=function t(){this.props.onUnmount&&this.props.onUnmount.call(this,this)},n.render=function t(){return null},e}(i.a.Component),j;function I(t){var e=t.message,n=t.when,r=void 0===n||n;return i.a.createElement(C.Consumer,null,(function(t){if(t||Object(s.a)(!1),!r||t.staticContext)return null;var n=t.history.block;return i.a.createElement(L,{onMount:function t(r){r.release=n(e)},onUpdate:function t(r,o){o.message!==e&&(r.release(),r.release=n(e))},onUnmount:function t(e){e.release()},message:e})}))}var F={},D=1e4,_=0;function M(t){if(F[t])return F[t];var e=p.a.compile(t);return _<1e4&&(F[t]=e,_++),e}function N(t,e){return void 0===t&&(t="/"),void 0===e&&(e={}),"/"===t?t:M(t)(e,{pretty:!0})}function U(t){var e=t.computedMatch,n=t.to,r=t.push,o=void 0!==r&&r;return i.a.createElement(C.Consumer,null,(function(t){t||Object(s.a)(!1);var r=t.history,a=t.staticContext,u=o?r.push:r.replace,f=Object(c.c)(e?"string"==typeof n?N(n,e.params):Object(l.a)({},n,{pathname:N(n.pathname,e.params)}):n);return a?(u(f),null):i.a.createElement(L,{onMount:function t(){u(f)},onUpdate:function t(e,n){var r=Object(c.c)(n.to);Object(c.f)(r,Object(l.a)({},f,{key:r.key}))||u(f)},to:n})}))}var q={},B=1e4,z=0;function H(t,e){var n=""+e.end+e.strict+e.sensitive,r=q[n]||(q[n]={});if(r[t])return r[t];var o=[],i,a={regexp:p()(t,o,e),keys:o};return z<1e4&&(r[t]=a,z++),a}function V(t,e){void 0===e&&(e={}),("string"==typeof e||Array.isArray(e))&&(e={path:e});var n=e,r=n.path,o=n.exact,i=void 0!==o&&o,a=n.strict,u=void 0!==a&&a,c=n.sensitive,s=void 0!==c&&c,l;return[].concat(r).reduce((function(e,n){if(!n&&""!==n)return null;if(e)return e;var r=H(n,{end:i,strict:u,sensitive:s}),o=r.regexp,a=r.keys,c=o.exec(t);if(!c)return null;var l=c[0],f=c.slice(1),p=t===l;return i&&!p?null:{path:n,url:"/"===n&&""===l?"/":l,isExact:p,params:a.reduce((function(t,e,n){return t[e.name]=f[n],t}),{})}}),null)}function $(t){return 0===i.a.Children.count(t)}function G(t,e,n){var r;return t(e)||null}var W=function(t){function e(){return t.apply(this,arguments)||this}var n;return Object(r.a)(e,t),e.prototype.render=function t(){var e=this;return i.a.createElement(C.Consumer,null,(function(t){t||Object(s.a)(!1);var n=e.props.location||t.location,r=e.props.computedMatch?e.props.computedMatch:e.props.path?V(n.pathname,e.props):t.match,o=Object(l.a)({},t,{location:n,match:r}),a=e.props,u=a.children,c=a.component,f=a.render;return Array.isArray(u)&&$(u)&&(u=null),i.a.createElement(C.Provider,{value:o},o.match?u?"function"==typeof u?u(o):u:c?i.a.createElement(c,o):f?f(o):null:"function"==typeof u?u(o):null)}))},e}(i.a.Component);function Y(t){return"/"===t.charAt(0)?t:"/"+t}function K(t,e){return t?Object(l.a)({},e,{pathname:Y(t)+e.pathname}):e}function J(t,e){if(!t)return e;var n=Y(t);return 0!==e.pathname.indexOf(n)?e:Object(l.a)({},e,{pathname:e.pathname.substr(n.length)})}function Q(t){return"string"==typeof t?t:Object(c.e)(t)}function X(t){return function(){Object(s.a)(!1)}}function Z(){}var tt=function(t){function e(){for(var e,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(e=t.call.apply(t,[this].concat(r))||this).handlePush=function(t){return e.navigateTo(t,"PUSH")},e.handleReplace=function(t){return e.navigateTo(t,"REPLACE")},e.handleListen=function(){return Z},e.handleBlock=function(){return Z},e}Object(r.a)(e,t);var n=e.prototype;return n.navigateTo=function t(e,n){var r=this.props,o=r.basename,i=void 0===o?"":o,a=r.context,u=void 0===a?{}:a;u.action=n,u.location=K(i,Object(c.c)(e)),u.url=Q(u.location)},n.render=function t(){var e=this.props,n=e.basename,r=void 0===n?"":n,o=e.context,a=void 0===o?{}:o,u=e.location,s=void 0===u?"/":u,f=Object(g.a)(e,["basename","context","location"]),p={createHref:function t(e){return Y(r+Q(e))},action:"POP",location:J(r,Object(c.c)(s)),push:this.handlePush,replace:this.handleReplace,go:X("go"),goBack:X("goBack"),goForward:X("goForward"),listen:this.handleListen,block:this.handleBlock};return i.a.createElement(P,Object(l.a)({},f,{history:p,staticContext:a}))},e}(i.a.Component);var et=function(t){function e(){return t.apply(this,arguments)||this}var n;return Object(r.a)(e,t),e.prototype.render=function t(){var e=this;return i.a.createElement(C.Consumer,null,(function(t){t||Object(s.a)(!1);var n=e.props.location||t.location,r,o;return i.a.Children.forEach(e.props.children,(function(e){if(null==o&&i.a.isValidElement(e)){r=e;var a=e.props.path||e.props.from;o=a?V(n.pathname,Object(l.a)({},e.props,{path:a})):t.match}})),o?i.a.cloneElement(r,{location:n,computedMatch:o}):null}))},e}(i.a.Component);function nt(t){var e="withRouter("+(t.displayName||t.name)+")",n=function e(n){var r=n.wrappedComponentRef,o=Object(g.a)(n,["wrappedComponentRef"]);return i.a.createElement(C.Consumer,null,(function(e){return e||Object(s.a)(!1),i.a.createElement(t,Object(l.a)({},o,e,{ref:r}))}))};return n.displayName=e,n.WrappedComponent=t,m()(n,t)}var rt=i.a.useContext,ot,it,at,ut,ct;function st(){return rt(T)}function lt(){return rt(C).location}function ft(){var t=rt(C).match;return t?t.params:{}}function pt(t){var e=lt(),n=rt(C).match;return t?V(e.pathname,t):n}}).call(this,n(166))},function(t,e,n){"use strict";var r=n(11),o=n(16),i=n(124),a=n(123);t.exports=function(t,e,n,u){u||(u={});var c=u.enumerable,s=void 0!==u.name?u.name:e;if(r(n)&&i(n,s,u),u.global)c?t[e]=n:a(e,n);else{try{u.unsafe?t[e]&&(c=!0):delete t[e]}catch(t){}c?t[e]=n:o.f(t,e,{value:n,enumerable:!1,configurable:!u.nonConfigurable,writable:!u.nonWritable})}return t}},function(t,e,n){"use strict";var r=n(36);t.exports=function(t){return r(t.length)}},function(t,e,n){"use strict";function r(){return(r=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t}).apply(null,arguments)}n.d(e,"a",(function(){return r}))},function(t,e,n){"use strict";var r=n(11),o=n(63),i=TypeError;t.exports=function(t){if(r(t))return t;throw new i(o(t)+" is not a function")}},function(t,e,n){"use strict";var r=n(47),o=n(3),i=n(83),a=n(15),u=n(19),c=n(88),s=o([].push),l=function(t){var e=1===t,n=2===t,o=3===t,l=4===t,f=6===t,p=7===t,h=5===t||f;return function(d,g,v,m){for(var y=a(d),b=i(y),x=u(b),w=r(g,v),k=0,S=m||c,E=e?S(d,x):n||p?S(d,0):void 0,O,A;x>k;k++)if((h||k in b)&&(A=w(O=b[k],k,y),t))if(e)E[k]=A;else if(A)switch(t){case 3:return!0;case 5:return O;case 6:return k;case 2:s(E,O)}else switch(t){case 4:return!1;case 7:s(E,O)}return f?-1:o||l?l:E}};t.exports={forEach:l(0),map:l(1),filter:l(2),some:l(3),every:l(4),find:l(5),findIndex:l(6),filterReject:l(7)}},function(t,e,n){"use strict";var r=n(171),o=n(4),i=n(7),a=n(46),u=n(13),c=n(122),s=n(102),l=n(84),f="Object already initialized",p=o.TypeError,h=o.WeakMap,d,g,v,m=function(t){return v(t)?g(t):d(t,{})},y=function(t){return function(e){var n;if(!i(e)||(n=g(e)).type!==t)throw new p("Incompatible receiver, "+t+" required");return n}};if(r||c.state){var b=c.state||(c.state=new h);b.get=b.get,b.has=b.has,b.set=b.set,d=function(t,e){if(b.has(t))throw new p(f);return e.facade=t,b.set(t,e),e},g=function(t){return b.get(t)||{}},v=function(t){return b.has(t)}}else{var x=s("state");l[x]=!0,d=function(t,e){if(u(t,x))throw new p(f);return e.facade=t,a(t,x,e),e},g=function(t){return u(t,x)?t[x]:{}},v=function(t){return u(t,x)}}t.exports={set:d,get:g,has:v,enforce:m,getterFor:y}},function(t,e,n){"use strict";var r=n(6),o=n(10),i=n(99),a=n(52),u=n(28),c=n(61),s=n(13),l=n(169),f=Object.getOwnPropertyDescriptor;e.f=r?f:function t(e,n){if(e=u(e),n=c(n),l)try{return f(e,n)}catch(t){}if(s(e,n))return a(!o(i.f,e,n),e[n])}},function(t,e,n){"use strict";var r=n(60),o=TypeError;t.exports=function(t){if(r(t))throw new o("Can't call method on "+t);return t}},function(t,e,n){"use strict";var r=n(4),o=n(11),i=function(t){return o(t)?t:void 0};t.exports=function(t,e){return arguments.length<2?i(r[t]):r[t]&&r[t][e]}},function(t,e,n){"use strict";t.exports=!1},function(t,e,n){"use strict";var r=n(83),o=n(25);t.exports=function(t){return r(o(t))}},function(t,e,n){"use strict";n.d(e,"a",(function(){return L})),n.d(e,"b",(function(){return N})),n.d(e,"d",(function(){return q})),n.d(e,"c",(function(){return b})),n.d(e,"f",(function(){return x})),n.d(e,"e",(function(){return y}));var r=n(20);function o(t){return"/"===t.charAt(0)}function i(t,e){for(var n=e,r=n+1,o=t.length;r<o;n+=1,r+=1)t[n]=t[r];t.pop()}function a(t,e){void 0===e&&(e="");var n=t&&t.split("/")||[],r=e&&e.split("/")||[],a=t&&o(t),u=e&&o(e),c=a||u,s;if(t&&o(t)?r=n:n.length&&(r.pop(),r=r.concat(n)),!r.length)return"/";if(r.length){var l=r[r.length-1];s="."===l||".."===l||""===l}else s=!1;for(var f=0,p=r.length;p>=0;p--){var h=r[p];"."===h?i(r,p):".."===h?(i(r,p),f++):f&&(i(r,p),f--)}if(!c)for(;f--;f)r.unshift("..");!c||""===r[0]||r[0]&&o(r[0])||r.unshift("");var d=r.join("/");return s&&"/"!==d.substr(-1)&&(d+="/"),d}var u=a;function c(t){return t.valueOf?t.valueOf():Object.prototype.valueOf.call(t)}function s(t,e){if(t===e)return!0;if(null==t||null==e)return!1;if(Array.isArray(t))return Array.isArray(e)&&t.length===e.length&&t.every((function(t,n){return s(t,e[n])}));if("object"==typeof t||"object"==typeof e){var n=c(t),r=c(e);return n!==t||r!==e?s(n,r):Object.keys(Object.assign({},t,e)).every((function(n){return s(t[n],e[n])}))}return!1}var l=s,f=n(33);function p(t){return"/"===t.charAt(0)?t:"/"+t}function h(t){return"/"===t.charAt(0)?t.substr(1):t}function d(t,e){return 0===t.toLowerCase().indexOf(e.toLowerCase())&&-1!=="/?#".indexOf(t.charAt(e.length))}function g(t,e){return d(t,e)?t.substr(e.length):t}function v(t){return"/"===t.charAt(t.length-1)?t.slice(0,-1):t}function m(t){var e=t||"/",n="",r="",o=e.indexOf("#");-1!==o&&(r=e.substr(o),e=e.substr(0,o));var i=e.indexOf("?");return-1!==i&&(n=e.substr(i),e=e.substr(0,i)),{pathname:e,search:"?"===n?"":n,hash:"#"===r?"":r}}function y(t){var e=t.pathname,n=t.search,r=t.hash,o=e||"/";return n&&"?"!==n&&(o+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(o+="#"===r.charAt(0)?r:"#"+r),o}function b(t,e,n,o){var i;"string"==typeof t?(i=m(t)).state=e:(void 0===(i=Object(r.a)({},t)).pathname&&(i.pathname=""),i.search?"?"!==i.search.charAt(0)&&(i.search="?"+i.search):i.search="",i.hash?"#"!==i.hash.charAt(0)&&(i.hash="#"+i.hash):i.hash="",void 0!==e&&void 0===i.state&&(i.state=e));try{i.pathname=decodeURI(i.pathname)}catch(t){throw t instanceof URIError?new URIError('Pathname "'+i.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):t}return n&&(i.key=n),o?i.pathname?"/"!==i.pathname.charAt(0)&&(i.pathname=u(i.pathname,o.pathname)):i.pathname=o.pathname:i.pathname||(i.pathname="/"),i}function x(t,e){return t.pathname===e.pathname&&t.search===e.search&&t.hash===e.hash&&t.key===e.key&&l(t.state,e.state)}function w(){var t=null;function e(e){return t=e,function(){t===e&&(t=null)}}function n(e,n,r,o){if(null!=t){var i="function"==typeof t?t(e,n):t;"string"==typeof i?"function"==typeof r?r(i,o):o(!0):o(!1!==i)}else o(!0)}var r=[];function o(t){var e=!0;function n(){e&&t.apply(void 0,arguments)}return r.push(n),function(){e=!1,r=r.filter((function(t){return t!==n}))}}function i(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];r.forEach((function(t){return t.apply(void 0,e)}))}return{setPrompt:e,confirmTransitionTo:n,appendListener:o,notifyListeners:i}}var k=!("undefined"==typeof window||!window.document||!window.document.createElement);function S(t,e){e(window.confirm(t))}function E(){var t=window.navigator.userAgent;return(-1===t.indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&(window.history&&"pushState"in window.history)}function O(){return-1===window.navigator.userAgent.indexOf("Trident")}function A(){return-1===window.navigator.userAgent.indexOf("Firefox")}function T(t){return void 0===t.state&&-1===navigator.userAgent.indexOf("CriOS")}var C="popstate",P="hashchange";function R(){try{return window.history.state||{}}catch(t){return{}}}function L(t){void 0===t&&(t={}),k||Object(f.a)(!1);var e=window.history,n=E(),o=!O(),i=t,a=i.forceRefresh,u=void 0!==a&&a,c=i.getUserConfirmation,s=void 0===c?S:c,l=i.keyLength,h=void 0===l?6:l,d=t.basename?v(p(t.basename)):"";function m(t){var e=t||{},n=e.key,r=e.state,o=window.location,i,a,u,c=o.pathname+o.search+o.hash;return d&&(c=g(c,d)),b(c,r,n)}function x(){return Math.random().toString(36).substr(2,h)}var A=w();function C(t){Object(r.a)(Y,t),Y.length=e.length,A.notifyListeners(Y.location,Y.action)}function P(t){T(t)||I(m(t.state))}function L(){I(m(R()))}var j=!1;function I(t){if(j)j=!1,C();else{var e="POP";A.confirmTransitionTo(t,"POP",s,(function(e){e?C({action:"POP",location:t}):F(t)}))}}function F(t){var e=Y.location,n=_.indexOf(e.key);-1===n&&(n=0);var r=_.indexOf(t.key);-1===r&&(r=0);var o=n-r;o&&(j=!0,q(o))}var D=m(R()),_=[D.key];function M(t){return d+y(t)}function N(t,r){var o="PUSH",i=b(t,r,x(),Y.location);A.confirmTransitionTo(i,"PUSH",s,(function(t){if(t){var r=M(i),o=i.key,a=i.state;if(n)if(e.pushState({key:o,state:a},null,r),u)window.location.href=r;else{var c=_.indexOf(Y.location.key),s=_.slice(0,c+1);s.push(i.key),_=s,C({action:"PUSH",location:i})}else window.location.href=r}}))}function U(t,r){var o="REPLACE",i=b(t,r,x(),Y.location);A.confirmTransitionTo(i,o,s,(function(t){if(t){var r=M(i),a=i.key,c=i.state;if(n)if(e.replaceState({key:a,state:c},null,r),u)window.location.replace(r);else{var s=_.indexOf(Y.location.key);-1!==s&&(_[s]=i.key),C({action:o,location:i})}else window.location.replace(r)}}))}function q(t){e.go(t)}function B(){q(-1)}function z(){q(1)}var H=0;function V(t){1===(H+=t)&&1===t?(window.addEventListener("popstate",P),o&&window.addEventListener("hashchange",L)):0===H&&(window.removeEventListener("popstate",P),o&&window.removeEventListener("hashchange",L))}var $=!1;function G(t){void 0===t&&(t=!1);var e=A.setPrompt(t);return $||(V(1),$=!0),function(){return $&&($=!1,V(-1)),e()}}function W(t){var e=A.appendListener(t);return V(1),function(){V(-1),e()}}var Y={length:e.length,action:"POP",location:D,createHref:M,push:N,replace:U,go:q,goBack:B,goForward:z,block:G,listen:W};return Y}var j="hashchange",I={hashbang:{encodePath:function t(e){return"!"===e.charAt(0)?e:"!/"+h(e)},decodePath:function t(e){return"!"===e.charAt(0)?e.substr(1):e}},noslash:{encodePath:h,decodePath:p},slash:{encodePath:p,decodePath:p}};function F(t){var e=t.indexOf("#");return-1===e?t:t.slice(0,e)}function D(){var t=window.location.href,e=t.indexOf("#");return-1===e?"":t.substring(e+1)}function _(t){window.location.hash=t}function M(t){window.location.replace(F(window.location.href)+"#"+t)}function N(t){void 0===t&&(t={}),k||Object(f.a)(!1);var e=window.history,n=A(),o=t,i=o.getUserConfirmation,a=void 0===i?S:i,u=o.hashType,c=void 0===u?"slash":u,s=t.basename?v(p(t.basename)):"",l=I[c],h=l.encodePath,d=l.decodePath;function m(){var t=d(D());return s&&(t=g(t,s)),b(t)}var x=w();function E(t){Object(r.a)(X,t),X.length=e.length,x.notifyListeners(X.location,X.action)}var O=!1,T=null;function C(t,e){return t.pathname===e.pathname&&t.search===e.search&&t.hash===e.hash}function P(){var t=D(),e=h(t);if(t!==e)M(e);else{var n=m(),r=X.location;if(!O&&C(r,n))return;if(T===y(n))return;T=null,R(n)}}function R(t){if(O)O=!1,E();else{var e="POP";x.confirmTransitionTo(t,"POP",a,(function(e){e?E({action:"POP",location:t}):L(t)}))}}function L(t){var e=X.location,n=q.lastIndexOf(y(e));-1===n&&(n=0);var r=q.lastIndexOf(y(t));-1===r&&(r=0);var o=n-r;o&&(O=!0,V(o))}var j=D(),N=h(j);j!==N&&M(N);var U=m(),q=[y(U)];function B(t){var e=document.querySelector("base"),n="";return e&&e.getAttribute("href")&&(n=F(window.location.href)),n+"#"+h(s+y(t))}function z(t,e){var n="PUSH",r=b(t,void 0,void 0,X.location);x.confirmTransitionTo(r,"PUSH",a,(function(t){if(t){var e=y(r),n=h(s+e),o;if(D()!==n){T=e,_(n);var i=q.lastIndexOf(y(X.location)),a=q.slice(0,i+1);a.push(e),q=a,E({action:"PUSH",location:r})}else E()}}))}function H(t,e){var n="REPLACE",r=b(t,void 0,void 0,X.location);x.confirmTransitionTo(r,n,a,(function(t){if(t){var e=y(r),o=h(s+e),i;D()!==o&&(T=e,M(o));var a=q.indexOf(y(X.location));-1!==a&&(q[a]=e),E({action:n,location:r})}}))}function V(t){e.go(t)}function $(){V(-1)}function G(){V(1)}var W=0;function Y(t){1===(W+=t)&&1===t?window.addEventListener("hashchange",P):0===W&&window.removeEventListener("hashchange",P)}var K=!1;function J(t){void 0===t&&(t=!1);var e=x.setPrompt(t);return K||(Y(1),K=!0),function(){return K&&(K=!1,Y(-1)),e()}}function Q(t){var e=x.appendListener(t);return Y(1),function(){Y(-1),e()}}var X={length:e.length,action:"POP",location:U,createHref:B,push:z,replace:H,go:V,goBack:$,goForward:G,block:J,listen:Q};return X}function U(t,e,n){return Math.min(Math.max(t,e),n)}function q(t){void 0===t&&(t={});var e=t,n=e.getUserConfirmation,o=e.initialEntries,i=void 0===o?["/"]:o,a=e.initialIndex,u=void 0===a?0:a,c=e.keyLength,s=void 0===c?6:c,l=w();function f(t){Object(r.a)(T,t),T.length=T.entries.length,l.notifyListeners(T.location,T.action)}function p(){return Math.random().toString(36).substr(2,s)}var h=U(u,0,i.length-1),d=i.map((function(t){return b(t,void 0,"string"==typeof t?p():t.key||p())})),g=y;function v(t,e){var r="PUSH",o=b(t,e,p(),T.location);l.confirmTransitionTo(o,"PUSH",n,(function(t){if(t){var e,n=T.index+1,r=T.entries.slice(0);r.length>n?r.splice(n,r.length-n,o):r.push(o),f({action:"PUSH",location:o,index:n,entries:r})}}))}function m(t,e){var r="REPLACE",o=b(t,e,p(),T.location);l.confirmTransitionTo(o,r,n,(function(t){t&&(T.entries[T.index]=o,f({action:r,location:o}))}))}function x(t){var e=U(T.index+t,0,T.entries.length-1),r="POP",o=T.entries[e];l.confirmTransitionTo(o,"POP",n,(function(t){t?f({action:"POP",location:o,index:e}):f()}))}function k(){x(-1)}function S(){x(1)}function E(t){var e=T.index+t;return e>=0&&e<T.entries.length}function O(t){return void 0===t&&(t=!1),l.setPrompt(t)}function A(t){return l.appendListener(t)}var T={length:d.length,action:"POP",location:d[h],index:h,entries:d,createHref:g,push:v,replace:m,go:x,goBack:k,goForward:S,canGo:E,block:O,listen:A};return T}},function(t,e,n){"use strict";var r=n(132),o=n(13),i=n(175),a=n(16).f;t.exports=function(t){var e=r.Symbol||(r.Symbol={});o(e,t)||a(e,t,{value:i.f(t)})}},function(t,e,n){"use strict";var r=n(3),o=n(25),i=n(14),a=/"/g,u=r("".replace);t.exports=function(t,e,n,r){var c=i(o(t)),s="<"+e;return""!==n&&(s+=" "+n+'="'+u(i(r),a,"&quot;")+'"'),s+">"+c+"</"+e+">"}},function(t,e,n){"use strict";var r=n(2);t.exports=function(t){return r((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))}},function(t,e,n){"use strict";n.d(e,"a",(function(){return i}));var r=!0,o="Invariant failed";function i(t,e){var n,r;if(!t)throw new Error(o)}},function(t,e,n){"use strict";var r=n(3),o=r({}.toString),i=r("".slice);t.exports=function(t){return i(o(t),8,-1)}},function(t,e,n){"use strict";var r=n(173);t.exports=function(t){var e=+t;return e!=e||0===e?0:r(e)}},function(t,e,n){"use strict";var r=n(35),o=Math.min;t.exports=function(t){var e=r(t);return e>0?o(e,9007199254740991):0}},function(t,e,n){"use strict";var r=n(16).f,o=n(13),i,a=n(9)("toStringTag");t.exports=function(t,e,n){t&&!n&&(t=t.prototype),t&&!o(t,a)&&r(t,a,{configurable:!0,value:e})}},function(t,e,n){"use strict";function r(t,e){return(r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t})(t,e)}function o(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,r(t,e)}n.d(e,"a",(function(){return o}))},,function(t,e,n){"use strict";var r=n(3);t.exports=r({}.isPrototypeOf)},function(t,e,n){"use strict";var r=n(8),o=n(130),i=n(128),a=n(84),u=n(174),c=n(101),s=n(102),l=">",f="<",p="prototype",h="script",d=s("IE_PROTO"),g=function(){},v=function(t){return f+h+l+t+f+"/"+h+l},m=function(t){t.write(v("")),t.close();var e=t.parentWindow.Object;return t=null,e},y=function(){var t=c("iframe"),e="javascript:",n;return t.style.display="none",u.appendChild(t),t.src=String(e),(n=t.contentWindow.document).open(),n.write(v("document.F=Object")),n.close(),n.F},b,x=function(){try{b=new ActiveXObject("htmlfile")}catch(t){}x="undefined"!=typeof document?document.domain&&b?m(b):y():m(b);for(var t=i.length;t--;)delete x[p][i[t]];return x()};a[d]=!0,t.exports=Object.create||function t(e,n){var i;return null!==e?(g[p]=r(e),i=new g,g[p]=null,i[d]=e):i=x(),void 0===n?i:o.f(i,n)}},function(t,e,n){"use strict";var r=n(3);t.exports=r([].slice)},function(t,e,n){"use strict";var r=n(124),o=n(16);t.exports=function(t,e,n){return n.get&&r(n.get,e,{getter:!0}),n.set&&r(n.set,e,{setter:!0}),o.f(t,e,n)}},function(t,e,n){"use strict";var r=n(13),o=n(11),i=n(15),a=n(102),u=n(138),c=a("IE_PROTO"),s=Object,l=s.prototype;t.exports=u?s.getPrototypeOf:function(t){var e=i(t);if(r(e,c))return e[c];var n=e.constructor;return o(n)&&e instanceof n?n.prototype:e instanceof s?l:null}},function(t,e,n){"use strict";var r,o=n(4).navigator,i=o&&o.userAgent;t.exports=i?String(i):""},function(t,e,n){"use strict";var r=n(6),o=n(16),i=n(52);t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){"use strict";var r=n(75),o=n(21),i=n(82),a=r(r.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?a(t,e):function(){return t.apply(e,arguments)}}},function(t,e,n){"use strict";var r=n(129),o=n(11),i=n(34),a,u=n(9)("toStringTag"),c=Object,s="Arguments"===i(function(){return arguments}()),l=function(t,e){try{return t[e]}catch(t){}};t.exports=r?i:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=l(e=c(t),u))?n:s?i(e):"Object"===(r=i(e))&&o(e.callee)?"Arguments":r}},function(t,e,n){"use strict";var r=n(82),o=Function.prototype,i=o.apply,a=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(r?a.bind(i):function(){return a.apply(i,arguments)})},function(t,e,n){"use strict";var r=n(2);t.exports=function(t,e){var n=[][t];return!!n&&r((function(){n.call(null,e||function(){return 1},1)}))}},function(t,e,n){"use strict";var r=n(0),o=n(4),i=n(10),a=n(6),u=n(160),c=n(12),s=n(109),l=n(58),f=n(52),p=n(46),h=n(149),d=n(36),g=n(189),v=n(216),m=n(438),y=n(61),b=n(13),x=n(48),w=n(7),k=n(70),S=n(41),E=n(40),O=n(57),A=n(64).f,T=n(217),C=n(22).forEach,P=n(76),R=n(43),L=n(16),j=n(24),I=n(219),F=n(23),D=n(95),_=F.get,M=F.set,N=F.enforce,U=L.f,q=j.f,B=o.RangeError,z=s.ArrayBuffer,H=z.prototype,V=s.DataView,$=c.NATIVE_ARRAY_BUFFER_VIEWS,G=c.TYPED_ARRAY_TAG,W=c.TypedArray,Y=c.TypedArrayPrototype,K=c.isTypedArray,J="BYTES_PER_ELEMENT",Q="Wrong length",X=function(t,e){R(t,e,{configurable:!0,get:function(){return _(this)[e]}})},Z=function(t){var e;return E(H,t)||"ArrayBuffer"===(e=x(t))||"SharedArrayBuffer"===e},tt=function(t,e){return K(t)&&!k(e)&&e in t&&h(+e)&&e>=0},et=function t(e,n){return n=y(n),tt(e,n)?f(2,e[n]):q(e,n)},nt=function t(e,n,r){return n=y(n),!(tt(e,n)&&w(r)&&b(r,"value"))||b(r,"get")||b(r,"set")||r.configurable||b(r,"writable")&&!r.writable||b(r,"enumerable")&&!r.enumerable?U(e,n,r):(e[n]=r.value,e)};a?($||(j.f=et,L.f=nt,X(Y,"buffer"),X(Y,"byteOffset"),X(Y,"byteLength"),X(Y,"length")),r({target:"Object",stat:!0,forced:!$},{getOwnPropertyDescriptor:et,defineProperty:nt}),t.exports=function(t,e,n){var a=t.match(/\d+/)[0]/8,c=t+(n?"Clamped":"")+"Array",s="get"+t,f="set"+t,h=o[c],y=h,b=y&&y.prototype,x={},k=function(t,e){var n=_(t);return n.view[s](e*a+n.byteOffset,!0)},E=function(t,e,r){var o=_(t);o.view[f](e*a+o.byteOffset,n?m(r):r,!0)},R=function(t,e){U(t,e,{get:function(){return k(this,e)},set:function(t){return E(this,e,t)},enumerable:!0})};$?u&&(y=e((function(t,e,n,r){return l(t,b),D(w(e)?Z(e)?void 0!==r?new h(e,v(n,a),r):void 0!==n?new h(e,v(n,a)):new h(e):K(e)?I(y,e):i(T,y,e):new h(g(e)),t,y)})),O&&O(y,W),C(A(h),(function(t){t in y||p(y,t,h[t])})),y.prototype=b):(y=e((function(t,e,n,r){l(t,b);var o=0,u=0,c,s,f;if(w(e)){if(!Z(e))return K(e)?I(y,e):i(T,y,e);c=e,u=v(n,a);var p=e.byteLength;if(void 0===r){if(p%a)throw new B(Q);if((s=p-u)<0)throw new B(Q)}else if((s=d(r)*a)+u>p)throw new B(Q);f=s/a}else f=g(e),c=new z(s=f*a);for(M(t,{buffer:c,byteOffset:u,byteLength:s,length:f,view:new V(c)});o<f;)R(t,o++)})),O&&O(y,W),b=y.prototype=S(Y)),b.constructor!==y&&p(b,"constructor",y),N(b).TypedArrayConstructor=y,G&&p(b,G,c);var L=y!==h;x[c]=y,r({global:!0,constructor:!0,forced:L,sham:!$},x),J in y||p(y,J,a),J in b||p(b,J,a),P(c)}):t.exports=function(){}},function(t,e,n){"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){"use strict";var r=n(4),o=n(45),i=r.process,a=r.Deno,u=i&&i.versions||a&&a.version,c=u&&u.v8,s,l;c&&(l=(s=c.split("."))[0]>0&&s[0]<4?1:+(s[0]+s[1])),!l&&o&&(!(s=o.match(/Edge\/(\d+)/))||s[1]>=74)&&(s=o.match(/Chrome\/(\d+)/))&&(l=+s[1]),t.exports=l},function(t,e,n){"use strict";var r=n(35),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e,n){"use strict";var r=n(34);t.exports=Array.isArray||function t(e){return"Array"===r(e)}},function(t,e,n){"use strict";var r=n(9),o=n(41),i=n(16).f,a=r("unscopables"),u=Array.prototype;void 0===u[a]&&i(u,a,{configurable:!0,value:o(null)}),t.exports=function(t){u[a][t]=!0}},function(t,e,n){"use strict";var r=n(276),o=n(7),i=n(25),a=n(185);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t=!1,e={},n;try{(n=r(Object.prototype,"__proto__","set"))(e,[]),t=e instanceof Array}catch(t){}return function e(r,u){return i(r),a(u),o(r)?(t?n(r,u):r.__proto__=u,r):r}}():void 0)},function(t,e,n){"use strict";var r=n(40),o=TypeError;t.exports=function(t,e){if(r(e,t))return t;throw new o("Incorrect invocation")}},function(t,e,n){"use strict";var r={};function o(t){var e,n,o=r[t];if(o)return o;for(o=r[t]=[],e=0;e<128;e++)n=String.fromCharCode(e),/^[0-9a-z]$/i.test(n)?o.push(n):o.push("%"+("0"+e.toString(16).toUpperCase()).slice(-2));for(e=0;e<t.length;e++)o[t.charCodeAt(e)]=t[e];return o}function i(t,e,n){var r,a,u,c,s,l="";for("string"!=typeof e&&(n=e,e=i.defaultChars),void 0===n&&(n=!0),s=o(e),r=0,a=t.length;r<a;r++)if(u=t.charCodeAt(r),n&&37===u&&r+2<a&&/^[0-9a-f]{2}$/i.test(t.slice(r+1,r+3)))l+=t.slice(r,r+3),r+=2;else if(u<128)l+=s[u];else if(u>=55296&&u<=57343){if(u>=55296&&u<=56319&&r+1<a&&(c=t.charCodeAt(r+1))>=56320&&c<=57343){l+=encodeURIComponent(t[r]+t[r+1]),r++;continue}l+="%EF%BF%BD"}else l+=encodeURIComponent(t[r]);return l}i.defaultChars=";/?:@&=+$,-_.!~*'()#",i.componentChars="-_.!~*'()",t.exports=i},function(t,e,n){"use strict";t.exports=function(t){return null==t}},function(t,e,n){"use strict";var r=n(100),o=n(70);t.exports=function(t){var e=r(t,"string");return o(e)?e:e+""}},function(t,e,n){"use strict";var r=n(21),o=n(60);t.exports=function(t,e){var n=t[e];return o(n)?void 0:r(n)}},function(t,e,n){"use strict";var r=String;t.exports=function(t){try{return r(t)}catch(t){return"Object"}}},function(t,e,n){"use strict";var r=n(172),o,i=n(128).concat("length","prototype");e.f=Object.getOwnPropertyNames||function t(e){return r(e,i)}},function(t,e,n){"use strict";var r=n(6),o=n(16),i=n(52);t.exports=function(t,e,n){r?o.f(t,e,i(0,n)):t[e]=n}},function(t,e,n){"use strict";var r=n(0),o=n(3),i=n(84),a=n(7),u=n(13),c=n(16).f,s=n(64),l=n(131),f=n(146),p=n(73),h=n(77),d=!1,g=p("meta"),v=0,m=function(t){c(t,g,{value:{objectID:"O"+v++,weakData:{}}})},y=function(t,e){if(!a(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!u(t,g)){if(!f(t))return"F";if(!e)return"E";m(t)}return t[g].objectID},b=function(t,e){if(!u(t,g)){if(!f(t))return!0;if(!e)return!1;m(t)}return t[g].weakData},x=function(t){return h&&d&&f(t)&&!u(t,g)&&m(t),t},w=function(){k.enable=function(){},d=!0;var t=s.f,e=o([].splice),n={};n[g]=1,t(n).length&&(s.f=function(n){for(var r=t(n),o=0,i=r.length;o<i;o++)if(r[o]===g){e(r,o,1);break}return r},r({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:l.f}))},k=t.exports={enable:w,fastKey:y,getWeakData:b,onFreeze:x};i[g]=!0},function(t,e,n){"use strict";function r(t,e){if(null==t)return{};var n={};for(var r in t)if({}.hasOwnProperty.call(t,r)){if(-1!==e.indexOf(r))continue;n[r]=t[r]}return n}n.d(e,"a",(function(){return r}))},function(t,e,n){t.exports={sidebar:"Layout--sidebar--2p11xZ5",searchbox:"Layout--searchbox--330nPS_",input:"Layout--input--2Cl24bs",menuList:"Layout--menuList--ZZXozEU",item:"Layout--item--2kjKP4y",selected:"Layout--selected--1aXYKYN"}},function(t,e,n){t.exports={nav:"Layout--nav--3yrsx5v",container:"Layout--container--38MtWUZ",main:"Layout--main--QuUtx16",layout:"Layout--layout--14tN8qA",fixNav:"Layout--fixNav--2oc1kyc",selected:"Layout--selected--146z0fZ"}},function(t,e,n){"use strict";var r=n(26),o=n(11),i=n(40),a=n(167),u=Object;t.exports=a?function(t){return"symbol"==typeof t}:function(t){var e=r("Symbol");return o(e)&&i(e.prototype,u(t))}},function(t,e,n){"use strict";var r=n(53),o=n(2),i,a=n(4).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol("symbol detection");return!a(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},function(t,e,n){"use strict";var r=n(122);t.exports=function(t,e){return r[t]||(r[t]=e||{})}},function(t,e,n){"use strict";var r=n(3),o=0,i=Math.random(),a=r(1.1.toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+a(++o+i,36)}},function(t,e,n){"use strict";var r=n(6),o=n(13),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,u=o(i,"name"),c=u&&"something"===function t(){}.name,s=u&&(!r||r&&a(i,"name").configurable);t.exports={EXISTS:u,PROPER:c,CONFIGURABLE:s}},function(t,e,n){"use strict";var r=n(34),o=n(3);t.exports=function(t){if("Function"===r(t))return o(t)}},function(t,e,n){"use strict";var r=n(26),o=n(43),i=n(9),a=n(6),u=i("species");t.exports=function(t){var e=r(t);a&&e&&!e[u]&&o(e,u,{configurable:!0,get:function(){return this}})}},function(t,e,n){"use strict";var r=n(2);t.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},function(t,e,n){"use strict";var r=n(47),o=n(10),i=n(8),a=n(63),u=n(136),c=n(19),s=n(40),l=n(104),f=n(92),p=n(182),h=TypeError,d=function(t,e){this.stopped=t,this.result=e},g=d.prototype;t.exports=function(t,e,n){var v=n&&n.that,m=!(!n||!n.AS_ENTRIES),y=!(!n||!n.IS_RECORD),b=!(!n||!n.IS_ITERATOR),x=!(!n||!n.INTERRUPTED),w=r(e,v),k,S,E,O,A,T,C,P=function(t){return k&&p(k,"normal"),new d(!0,t)},R=function(t){return m?(i(t),x?w(t[0],t[1],P):w(t[0],t[1])):x?w(t,P):w(t)};if(y)k=t.iterator;else if(b)k=t;else{if(!(S=f(t)))throw new h(a(t)+" is not iterable");if(u(S)){for(E=0,O=c(t);O>E;E++)if((A=R(t[E]))&&s(g,A))return A;return new d(!1)}k=l(t,S)}for(T=y?t.next:k.next;!(C=o(T,k)).done;){try{A=R(C.value)}catch(t){p(k,"throw",t)}if("object"==typeof A&&A&&s(g,A))return A}return new d(!1)}},function(t,e,n){"use strict";var r=n(3),o=n(25),i=n(14),a=n(112),u=r("".replace),c=RegExp("^["+a+"]+"),s=RegExp("(^|[^"+a+"])["+a+"]+$"),l=function(t){return function(e){var n=i(o(e));return 1&t&&(n=u(n,c,"")),2&t&&(n=u(n,s,"$1")),n}};t.exports={start:l(1),end:l(2),trim:l(3)}},function(t,e,n){"use strict";var r=n(4);t.exports=r.Promise},function(t,e,n){var r=n(500);function o(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,r(t,e)}t.exports=o,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,n){"use strict";var r=n(2);t.exports=!r((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},function(t,e,n){"use strict";var r=n(3),o=n(2),i=n(34),a=Object,u=r("".split);t.exports=o((function(){return!a("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?u(t,""):a(t)}:a},function(t,e,n){"use strict";t.exports={}},function(t,e,n){"use strict";var r=n(28),o=n(54),i=n(19),a=function(t){return function(e,n,a){var u=r(e),c=i(u);if(0===c)return!t&&-1;var s=o(a,c),l;if(t&&n!=n){for(;c>s;)if((l=u[s++])!=l)return!0}else for(;c>s;s++)if((t||s in u)&&u[s]===n)return t||s||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e,n){"use strict";var r=n(2),o=n(11),i=/#|\.prototype\./,a=function(t,e){var n=c[u(t)];return n===l||n!==s&&(o(e)?r(e):!!e)},u=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=a.data={},s=a.NATIVE="N",l=a.POLYFILL="P";t.exports=a},function(t,e,n){"use strict";var r=n(172),o=n(128);t.exports=Object.keys||function t(e){return r(e,o)}},function(t,e,n){"use strict";var r=n(240);t.exports=function(t,e){return new(r(t))(0===e?0:e)}},function(t,e,n){"use strict";var r=n(3),o=n(2),i=n(11),a=n(48),u=n(26),c=n(125),s=function(){},l=u("Reflect","construct"),f=/^\s*(?:class|function)\b/,p=r(f.exec),h=!f.test(s),d=function t(e){if(!i(e))return!1;try{return l(s,[],e),!0}catch(t){return!1}},g=function t(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return h||!!p(f,c(e))}catch(t){return!0}};g.sham=!0,t.exports=!l||o((function(){var t;return d(d.call)||!d(Object)||!d((function(){t=!0}))||t}))?g:d},function(t,e,n){"use strict";var r=n(2),o=n(9),i=n(53),a=o("species");t.exports=function(t){return i>=51||!r((function(){var e=[],n;return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},function(t,e,n){"use strict";t.exports={}},function(t,e,n){"use strict";var r=n(48),o=n(62),i=n(60),a=n(91),u,c=n(9)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||a[r(t)]}},function(t,e,n){"use strict";var r=n(139);t.exports="NODE"===r},function(t,e,n){"use strict";var r=n(18);t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},function(t,e,n){"use strict";var r=n(11),o=n(7),i=n(57);t.exports=function(t,e,n){var a,u;return i&&r(a=e.constructor)&&a!==n&&o(u=a.prototype)&&u!==n.prototype&&i(t,u),t}},function(t,e,n){"use strict";var r=TypeError;t.exports=function(t,e){if(t<e)throw new r("Not enough arguments");return t}},function(t,e,n){"use strict";var r=n(4),o=n(80),i=n(11),a=n(86),u=n(125),c=n(9),s=n(139),l=n(27),f=n(53),p=o&&o.prototype,h=c("species"),d=!1,g=i(r.PromiseRejectionEvent),v=a("Promise",(function(){var t=u(o),e=t!==String(o);if(!e&&66===f)return!0;if(l&&(!p.catch||!p.finally))return!0;if(!f||f<51||!/native code/.test(t)){var n=new o((function(t){t(1)})),r=function(t){t((function(){}),(function(){}))},i;if((n.constructor={})[h]=r,!(d=n.then((function(){}))instanceof r))return!0}return!(e||"BROWSER"!==s&&"DENO"!==s||g)}));t.exports={CONSTRUCTOR:v,REJECTION_EVENT:g,SUBCLASSING:d}},function(t,e,n){"use strict";var r=n(21),o=TypeError,i=function(t){var e,n;this.promise=new t((function(t,r){if(void 0!==e||void 0!==n)throw new o("Bad Promise constructor");e=t,n=r})),this.resolve=r(e),this.reject=r(n)};t.exports.f=function(t){return new i(t)}},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function t(e){var n=o(this,e);return!!n&&n.enumerable}:r},function(t,e,n){"use strict";var r=n(10),o=n(7),i=n(70),a=n(62),u=n(168),c=n(9),s=TypeError,l=c("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var n=a(t,l),c;if(n){if(void 0===e&&(e="default"),c=r(n,t,e),!o(c)||i(c))return c;throw new s("Can't convert object to primitive value")}return void 0===e&&(e="number"),u(t,e)}},function(t,e,n){"use strict";var r=n(4),o=n(7),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,e,n){"use strict";var r=n(72),o=n(73),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e,n){"use strict";e.f=Object.getOwnPropertySymbols},function(t,e,n){"use strict";var r=n(10),o=n(21),i=n(8),a=n(63),u=n(92),c=TypeError;t.exports=function(t,e){var n=arguments.length<2?u(t):e;if(o(n))return i(r(n,t));throw new c(a(t)+" is not iterable")}},function(t,e,n){"use strict";var r,o=n(9)("iterator"),i=!1;try{var a=0,u={next:function(){return{done:!!a++}},return:function(){i=!0}};u[o]=function(){return this},Array.from(u,(function(){throw 2}))}catch(t){}t.exports=function(t,e){try{if(!e&&!i)return!1}catch(t){return!1}var n=!1;try{var r={};r[o]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n}},function(t,e,n){"use strict";var r=n(28),o=n(56),i=n(91),a=n(23),u=n(16).f,c=n(137),s=n(107),l=n(27),f=n(6),p="Array Iterator",h=a.set,d=a.getterFor(p);t.exports=c(Array,"Array",(function(t,e){h(this,{type:p,target:r(t),index:0,kind:e})}),(function(){var t=d(this),e=t.target,n=t.index++;if(!e||n>=e.length)return t.target=null,s(void 0,!0);switch(t.kind){case"keys":return s(n,!1);case"values":return s(e[n],!1)}return s([n,e[n]],!1)}),"values");var g=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!l&&f&&"values"!==g.name)try{u(g,"name",{value:"values"})}catch(t){}},function(t,e,n){"use strict";t.exports=function(t,e){return{value:t,done:e}}},function(t,e,n){"use strict";var r=n(21),o=n(15),i=n(83),a=n(19),u=TypeError,c="Reduce of empty array with no initial value",s=function(t){return function(e,n,s,l){var f=o(e),p=i(f),h=a(f);if(r(n),0===h&&s<2)throw new u(c);var d=t?h-1:0,g=t?-1:1;if(s<2)for(;;){if(d in p){l=p[d],d+=g;break}if(d+=g,t?d<0:h<=d)throw new u(c)}for(;t?d>=0:h>d;d+=g)d in p&&(l=n(l,p[d],d,f));return l}};t.exports={left:s(!1),right:s(!0)}},function(t,e,n){"use strict";var r=n(4),o=n(3),i=n(6),a=n(142),u=n(74),c=n(46),s=n(43),l=n(94),f=n(2),p=n(58),h=n(35),d=n(36),g=n(189),v=n(190),m=n(296),y=n(44),b=n(57),x=n(135),w=n(42),k=n(95),S=n(126),E=n(37),O=n(23),A=u.PROPER,T=u.CONFIGURABLE,C="ArrayBuffer",P="DataView",R="prototype",L="Wrong length",j="Wrong index",I=O.getterFor(C),F=O.getterFor(P),D=O.set,_=r[C],M=_,N=M&&M[R],U=r[P],q=U&&U[R],B=Object.prototype,z=r.Array,H=r.RangeError,V=o(x),$=o([].reverse),G=m.pack,W=m.unpack,Y=function(t){return[255&t]},K=function(t){return[255&t,t>>8&255]},J=function(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]},Q=function(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]},X=function(t){return G(v(t),23,4)},Z=function(t){return G(t,52,8)},tt=function(t,e,n){s(t[R],e,{configurable:!0,get:function(){return n(this)[e]}})},et=function(t,e,n,r){var o=F(t),i=g(n),a=!!r;if(i+e>o.byteLength)throw new H(j);var u=o.bytes,c=i+o.byteOffset,s=w(u,c,c+e);return a?s:$(s)},nt=function(t,e,n,r,o,i){var a=F(t),u=g(n),c=r(+o),s=!!i;if(u+e>a.byteLength)throw new H(j);for(var l=a.bytes,f=u+a.byteOffset,p=0;p<e;p++)l[f+p]=c[s?p:e-p-1]};if(a){var rt=A&&_.name!==C;f((function(){_(1)}))&&f((function(){new _(-1)}))&&!f((function(){return new _,new _(1.5),new _(NaN),1!==_.length||rt&&!T}))?rt&&T&&c(_,"name",C):((M=function t(e){return p(this,N),k(new _(g(e)),this,M)})[R]=N,N.constructor=M,S(M,_)),b&&y(q)!==B&&b(q,B);var ot=new U(new M(2)),it=o(q.setInt8);ot.setInt8(0,2147483648),ot.setInt8(1,2147483649),!ot.getInt8(0)&&ot.getInt8(1)||l(q,{setInt8:function t(e,n){it(this,e,n<<24>>24)},setUint8:function t(e,n){it(this,e,n<<24>>24)}},{unsafe:!0})}else N=(M=function t(e){p(this,N);var n=g(e);D(this,{type:C,bytes:V(z(n),0),byteLength:n}),i||(this.byteLength=n,this.detached=!1)})[R],q=(U=function t(e,n,r){p(this,q),p(e,N);var o=I(e),a=o.byteLength,u=h(n);if(u<0||u>a)throw new H("Wrong offset");if(u+(r=void 0===r?a-u:d(r))>a)throw new H(L);D(this,{type:P,buffer:e,byteLength:r,byteOffset:u,bytes:o.bytes}),i||(this.buffer=e,this.byteLength=r,this.byteOffset=u)})[R],i&&(tt(M,"byteLength",I),tt(U,"buffer",F),tt(U,"byteLength",F),tt(U,"byteOffset",F)),l(q,{getInt8:function t(e){return et(this,1,e)[0]<<24>>24},getUint8:function t(e){return et(this,1,e)[0]},getInt16:function t(e){var n=et(this,2,e,arguments.length>1&&arguments[1]);return(n[1]<<8|n[0])<<16>>16},getUint16:function t(e){var n=et(this,2,e,arguments.length>1&&arguments[1]);return n[1]<<8|n[0]},getInt32:function t(e){return Q(et(this,4,e,arguments.length>1&&arguments[1]))},getUint32:function t(e){return Q(et(this,4,e,arguments.length>1&&arguments[1]))>>>0},getFloat32:function t(e){return W(et(this,4,e,arguments.length>1&&arguments[1]),23)},getFloat64:function t(e){return W(et(this,8,e,arguments.length>1&&arguments[1]),52)},setInt8:function t(e,n){nt(this,1,e,Y,n)},setUint8:function t(e,n){nt(this,1,e,Y,n)},setInt16:function t(e,n){nt(this,2,e,K,n,arguments.length>2&&arguments[2])},setUint16:function t(e,n){nt(this,2,e,K,n,arguments.length>2&&arguments[2])},setInt32:function t(e,n){nt(this,4,e,J,n,arguments.length>2&&arguments[2])},setUint32:function t(e,n){nt(this,4,e,J,n,arguments.length>2&&arguments[2])},setFloat32:function t(e,n){nt(this,4,e,X,n,arguments.length>2&&arguments[2])},setFloat64:function t(e,n){nt(this,8,e,Z,n,arguments.length>2&&arguments[2])}});E(M,C),E(U,P),t.exports={ArrayBuffer:M,DataView:U}},function(t,e,n){"use strict";var r=n(0),o=n(4),i=n(3),a=n(86),u=n(18),c=n(66),s=n(78),l=n(58),f=n(11),p=n(60),h=n(7),d=n(2),g=n(105),v=n(37),m=n(95);t.exports=function(t,e,n){var y=-1!==t.indexOf("Map"),b=-1!==t.indexOf("Weak"),x=y?"set":"add",w=o[t],k=w&&w.prototype,S=w,E={},O=function(t){var e=i(k[t]);u(k,t,"add"===t?function t(n){return e(this,0===n?0:n),this}:"delete"===t?function(t){return!(b&&!h(t))&&e(this,0===t?0:t)}:"get"===t?function t(n){return b&&!h(n)?void 0:e(this,0===n?0:n)}:"has"===t?function t(n){return!(b&&!h(n))&&e(this,0===n?0:n)}:function t(n,r){return e(this,0===n?0:n,r),this})},A;if(a(t,!f(w)||!(b||k.forEach&&!d((function(){(new w).entries().next()})))))S=n.getConstructor(e,t,y,x),c.enable();else if(a(t,!0)){var T=new S,C=T[x](b?{}:-0,1)!==T,P=d((function(){T.has(1)})),R=g((function(t){new w(t)})),L=!b&&d((function(){for(var t=new w,e=5;e--;)t[x](e,e);return!t.has(-0)}));R||((S=e((function(t,e){l(t,k);var n=m(new w,t,S);return p(e)||s(e,n[x],{that:n,AS_ENTRIES:y}),n}))).prototype=k,k.constructor=S),(P||L)&&(O("delete"),O("has"),y&&O("get")),(L||C)&&O(x),b&&k.clear&&delete k.clear}return E[t]=S,r({global:!0,constructor:!0,forced:S!==w},E),v(S,t),b||n.setStrong(S,t,y),S}},function(t,e,n){"use strict";var r=Math.expm1,o=Math.exp;t.exports=!r||r(10)>22025.465794806718||r(10)<22025.465794806718||-2e-17!==r(-2e-17)?function t(e){var n=+e;return 0===n?n:n>-1e-6&&n<1e-6?n+n*n/2:o(n)-1}:r},function(t,e,n){"use strict";t.exports="\t\n\v\f\r \xa0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff"},function(t,e,n){"use strict";var r=n(27),o=n(4),i=n(2),a=n(141);t.exports=r||!i((function(){if(!(a&&a<535)){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete o[t]}}))},function(t,e,n){"use strict";var r=n(4),o=n(49),i=n(47),a=n(11),u=n(13),c=n(2),s=n(174),l=n(42),f=n(101),p=n(96),h=n(199),d=n(93),g=r.setImmediate,v=r.clearImmediate,m=r.process,y=r.Dispatch,b=r.Function,x=r.MessageChannel,w=r.String,k=0,S={},E="onreadystatechange",O,A,T,C;c((function(){O=r.location}));var P=function(t){if(u(S,t)){var e=S[t];delete S[t],e()}},R=function(t){return function(){P(t)}},L=function(t){P(t.data)},j=function(t){r.postMessage(w(t),O.protocol+"//"+O.host)};g&&v||(g=function t(e){p(arguments.length,1);var n=a(e)?e:b(e),r=l(arguments,1);return S[++k]=function(){o(n,void 0,r)},A(k),k},v=function t(e){delete S[e]},d?A=function(t){m.nextTick(R(t))}:y&&y.now?A=function(t){y.now(R(t))}:x&&!h?(C=(T=new x).port2,T.port1.onmessage=L,A=i(C.postMessage,C)):r.addEventListener&&a(r.postMessage)&&!r.importScripts&&O&&"file:"!==O.protocol&&!c(j)?(A=j,r.addEventListener("message",L,!1)):A=E in f("script")?function(t){s.appendChild(f("script"))[E]=function(){s.removeChild(this),P(t)}}:function(t){setTimeout(R(t),0)}),t.exports={set:g,clear:v}},function(t,e,n){"use strict";var r=n(10),o=n(13),i=n(40),a=n(207),u=n(153),c=RegExp.prototype;t.exports=a.correct?function(t){return t.flags}:function(t){return a.correct||!i(c,t)||o(t,"flags")?t.flags:r(u,t)}},function(t,e,n){"use strict";var r=n(3),o=n(35),i=n(14),a=n(25),u=r("".charAt),c=r("".charCodeAt),s=r("".slice),l=function(t){return function(e,n){var r=i(a(e)),l=o(n),f=r.length,p,h;return l<0||l>=f?t?"":void 0:(p=c(r,l))<55296||p>56319||l+1===f||(h=c(r,l+1))<56320||h>57343?t?u(r,l):p:t?s(r,l,l+2):h-56320+(p-55296<<10)+65536}};t.exports={codeAt:l(!1),charAt:l(!0)}},function(t,e,n){"use strict";n(210);var r=n(10),o=n(18),i=n(155),a=n(2),u=n(9),c=n(46),s=u("species"),l=RegExp.prototype;t.exports=function(t,e,n,f){var p=u(t),h=!a((function(){var e={};return e[p]=function(){return 7},7!==""[t](e)})),d=h&&!a((function(){var e=!1,n=/a/;if("split"===t){var r={};r[s]=function(){return n},(n={constructor:r,flags:""})[p]=/./[p]}return n.exec=function(){return e=!0,null},n[p](""),!e}));if(!h||!d||n){var g=/./[p],v=e(p,""[t],(function(t,e,n,o,a){var u=e.exec;return u===i||u===l.exec?h&&!a?{done:!0,value:r(g,e,n,o)}:{done:!0,value:r(t,n,e,o)}:{done:!1}}));o(String.prototype,t,v[0]),o(l,p,v[1])}f&&c(l[p],"sham",!0)}},function(t,e,n){"use strict";var r=n(10),o=n(8),i=n(11),a=n(34),u=n(155),c=TypeError;t.exports=function(t,e){var n=t.exec;if(i(n)){var s=r(n,t,e);return null!==s&&o(s),s}if("RegExp"===a(t))return r(u,t,e);throw new c("RegExp#exec called on incompatible receiver")}},function(t,e){
2
+ /*!
3
+ * Determine if an object is a Buffer
4
+ *
5
+ * @author Feross Aboukhadijeh <https://feross.org>
6
+ * @license MIT
7
+ */
8
+ t.exports=function t(e){return null!=e&&null!=e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}},function(t,e){function n(){return t.exports=n=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},t.exports.__esModule=!0,t.exports.default=t.exports,n.apply(null,arguments)}t.exports=n,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,n){t.exports={actions:"Playground--actions--1O1fb5Y",codeBox:"Playground--codeBox--FO9sumb",meta:"Playground--meta--3WYHhAR",title:"Playground--title--1ha-US0",demo:"Playground--demo--2Y5chdA",highlight:"Playground--highlight--6kQeGbB"}},function(t,e,n){"use strict";var r=n(27),o=n(4),i=n(123),a="__core-js_shared__",u=t.exports=o[a]||i(a,{});(u.versions||(u.versions=[])).push({version:"3.47.0",mode:r?"pure":"global",copyright:"\xa9 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)",license:"https://github.com/zloirock/core-js/blob/v3.47.0/LICENSE",source:"https://github.com/zloirock/core-js"})},function(t,e,n){"use strict";var r=n(4),o=Object.defineProperty;t.exports=function(t,e){try{o(r,t,{value:e,configurable:!0,writable:!0})}catch(n){r[t]=e}return e}},function(t,e,n){"use strict";var r=n(3),o=n(2),i=n(11),a=n(13),u=n(6),c=n(74).CONFIGURABLE,s=n(125),l=n(23),f=l.enforce,p=l.get,h=String,d=Object.defineProperty,g=r("".slice),v=r("".replace),m=r([].join),y=u&&!o((function(){return 8!==d((function(){}),"length",{value:8}).length})),b=String(String).split("String"),x=t.exports=function(t,e,n){"Symbol("===g(h(e),0,7)&&(e="["+v(h(e),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),n&&n.getter&&(e="get "+e),n&&n.setter&&(e="set "+e),(!a(t,"name")||c&&t.name!==e)&&(u?d(t,"name",{value:e,configurable:!0}):t.name=e),y&&n&&a(n,"arity")&&t.length!==n.arity&&d(t,"length",{value:n.arity});try{n&&a(n,"constructor")&&n.constructor?u&&d(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var r=f(t);return a(r,"source")||(r.source=m(b,"string"==typeof e?e:"")),t};Function.prototype.toString=x((function t(){return i(this)&&p(this).source||s(this)}),"toString")},function(t,e,n){"use strict";var r=n(3),o=n(11),i=n(122),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return a(t)}),t.exports=i.inspectSource},function(t,e,n){"use strict";var r=n(13),o=n(127),i=n(24),a=n(16);t.exports=function(t,e,n){for(var u=o(e),c=a.f,s=i.f,l=0;l<u.length;l++){var f=u[l];r(t,f)||n&&r(n,f)||c(t,f,s(e,f))}}},function(t,e,n){"use strict";var r=n(26),o=n(3),i=n(64),a=n(103),u=n(8),c=o([].concat);t.exports=r("Reflect","ownKeys")||function t(e){var n=i.f(u(e)),r=a.f;return r?c(n,r(e)):n}},function(t,e,n){"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e,n){"use strict";var r,o,i={};i[n(9)("toStringTag")]="z",t.exports="[object z]"===String(i)},function(t,e,n){"use strict";var r=n(6),o=n(170),i=n(16),a=n(8),u=n(28),c=n(87);e.f=r&&!o?Object.defineProperties:function t(e,n){a(e);for(var r=u(n),o=c(n),s=o.length,l=0,f;s>l;)i.f(e,f=o[l++],r[f]);return e}},function(t,e,n){"use strict";var r=n(34),o=n(28),i=n(64).f,a=n(42),u="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],c=function(t){try{return i(t)}catch(t){return a(u)}};t.exports.f=function t(e){return u&&"Window"===r(e)?c(e):i(o(e))}},function(t,e,n){"use strict";var r=n(4);t.exports=r},function(t,e,n){"use strict";var r=TypeError,o=9007199254740991;t.exports=function(t){if(t>9007199254740991)throw r("Maximum allowed index exceeded");return t}},function(t,e,n){"use strict";var r=n(63),o=TypeError;t.exports=function(t,e){if(!delete t[e])throw new o("Cannot delete property "+r(e)+" of "+r(t))}},function(t,e,n){"use strict";var r=n(15),o=n(54),i=n(19);t.exports=function t(e){for(var n=r(this),a=i(n),u=arguments.length,c=o(u>1?arguments[1]:void 0,a),s=u>2?arguments[2]:void 0,l=void 0===s?a:o(s,a);l>c;)n[c++]=e;return n}},function(t,e,n){"use strict";var r=n(9),o=n(91),i=r("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},function(t,e,n){"use strict";var r=n(0),o=n(10),i=n(27),a=n(74),u=n(11),c=n(183),s=n(44),l=n(57),f=n(37),p=n(46),h=n(18),d=n(9),g=n(91),v=n(184),m=a.PROPER,y=a.CONFIGURABLE,b=v.IteratorPrototype,x=v.BUGGY_SAFARI_ITERATORS,w=d("iterator"),k="keys",S="values",E="entries",O=function(){return this};t.exports=function(t,e,n,a,d,v,A){c(n,e,a);var T=function(t){if(t===d&&j)return j;if(!x&&t&&t in R)return R[t];switch(t){case k:return function e(){return new n(this,t)};case S:return function e(){return new n(this,t)};case E:return function e(){return new n(this,t)}}return function(){return new n(this)}},C=e+" Iterator",P=!1,R=t.prototype,L=R[w]||R["@@iterator"]||d&&R[d],j=!x&&L||T(d),I="Array"===e&&R.entries||L,F,D,_;if(I&&(F=s(I.call(new t)))!==Object.prototype&&F.next&&(i||s(F)===b||(l?l(F,b):u(F[w])||h(F,w,O)),f(F,C,!0,!0),i&&(g[C]=O)),m&&d===S&&L&&L.name!==S&&(!i&&y?p(R,"name",S):(P=!0,j=function t(){return o(L,this)})),d)if(D={values:T(S),keys:v?j:T(k),entries:T(E)},A)for(_ in D)(x||P||!(_ in R))&&h(R,_,D[_]);else r({target:e,proto:!0,forced:x||P},D);return i&&!A||R[w]===j||h(R,w,j,{name:d}),g[e]=j,D}},function(t,e,n){"use strict";var r=n(2);t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},function(t,e,n){"use strict";var r=n(4),o=n(45),i=n(34),a=function(t){return o.slice(0,t.length)===t};t.exports=a("Bun/")?"BUN":a("Cloudflare-Workers")?"CLOUDFLARE":a("Deno/")?"DENO":a("Node.js/")?"NODE":r.Bun&&"string"==typeof Bun.version?"BUN":r.Deno&&"object"==typeof Deno.version?"DENO":"process"===i(r.process)?"NODE":r.window&&r.document?"BROWSER":"REST"},function(t,e,n){"use strict";var r=n(42),o=Math.floor,i=function(t,e){var n=t.length;if(n<8)for(var a=1,u,c;a<n;){for(c=a,u=t[a];c&&e(t[c-1],u)>0;)t[c]=t[--c];c!==a++&&(t[c]=u)}else for(var s=o(n/2),l=i(r(t,0,s),e),f=i(r(t,s),e),p=l.length,h=f.length,d=0,g=0;d<p||g<h;)t[d+g]=d<p&&g<h?e(l[d],f[g])<=0?l[d++]:f[g++]:d<p?l[d++]:f[g++];return t};t.exports=i},function(t,e,n){"use strict";var r,o=n(45).match(/AppleWebKit\/(\d+)\./);t.exports=!!o&&+o[1]},function(t,e,n){"use strict";t.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},function(t,e,n){"use strict";t.exports=Math.sign||function t(e){var n=+e;return 0===n||n!=n?n:n<0?-1:1}},function(t,e,n){"use strict";var r=n(3),o=n(36),i=n(14),a=n(145),u=n(25),c=r(a),s=r("".slice),l=Math.ceil,f=function(t){return function(e,n,r){var a=i(u(e)),f=o(n),p=a.length,h=void 0===r?" ":i(r),d,g;return f<=p||""===h?a:((g=c(h,l((d=f-p)/h.length))).length>d&&(g=s(g,0,d)),t?a+g:g+a)}};t.exports={start:f(!1),end:f(!0)}},function(t,e,n){"use strict";var r=n(35),o=n(14),i=n(25),a=RangeError;t.exports=function t(e){var n=o(i(this)),u="",c=r(e);if(c<0||c===1/0)throw new a("Wrong number of repetitions");for(;c>0;(c>>>=1)&&(n+=n))1&c&&(u+=n);return u}},function(t,e,n){"use strict";var r=n(2),o=n(7),i=n(34),a=n(147),u=Object.isExtensible,c=r((function(){u(1)}));t.exports=c||a?function t(e){return!!o(e)&&((!a||"ArrayBuffer"!==i(e))&&(!u||u(e)))}:u},function(t,e,n){"use strict";var r=n(2);t.exports=r((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}}))},function(t,e,n){"use strict";var r=n(3);t.exports=r(1.1.valueOf)},function(t,e,n){"use strict";var r=n(7),o=Math.floor;t.exports=Number.isInteger||function t(e){return!r(e)&&isFinite(e)&&o(e)===e}},function(t,e,n){"use strict";var r=n(8),o=n(151),i=n(60),a,u=n(9)("species");t.exports=function(t,e){var n=r(t).constructor,a;return void 0===n||i(a=r(n)[u])?e:o(a)}},function(t,e,n){"use strict";var r=n(89),o=n(63),i=TypeError;t.exports=function(t){if(r(t))return t;throw new i(o(t)+" is not a constructor")}},function(t,e,n){"use strict";t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},function(t,e,n){"use strict";var r=n(8);t.exports=function(){var t=r(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}},function(t,e,n){"use strict";var r=n(2),o,i=n(4).RegExp,a=r((function(){var t=i("a","y");return t.lastIndex=2,null!==t.exec("abcd")})),u=a||r((function(){return!i("a","y").sticky})),c=a||r((function(){var t=i("^r","gy");return t.lastIndex=2,null!==t.exec("str")}));t.exports={BROKEN_CARET:c,MISSED_STICKY:u,UNSUPPORTED_Y:a}},function(t,e,n){"use strict";var r=n(10),o=n(3),i=n(14),a=n(153),u=n(154),c=n(72),s=n(41),l=n(23).get,f=n(208),p=n(209),h=c("native-string-replace",String.prototype.replace),d=RegExp.prototype.exec,g=d,v=o("".charAt),m=o("".indexOf),y=o("".replace),b=o("".slice),x=(k=/b*/g,r(d,w=/a/,"a"),r(d,k,"a"),0!==w.lastIndex||0!==k.lastIndex),w,k,S=u.BROKEN_CARET,E=void 0!==/()??/.exec("")[1],O;(x||E||S||f||p)&&(g=function t(e){var n=this,o=l(n),u=i(e),c=o.raw,f,p,w,k,O,A,T;if(c)return c.lastIndex=n.lastIndex,f=r(g,c,u),n.lastIndex=c.lastIndex,f;var C=o.groups,P=S&&n.sticky,R=r(a,n),L=n.source,j=0,I=u;if(P&&(R=y(R,"y",""),-1===m(R,"g")&&(R+="g"),I=b(u,n.lastIndex),n.lastIndex>0&&(!n.multiline||n.multiline&&"\n"!==v(u,n.lastIndex-1))&&(L="(?: "+L+")",I=" "+I,j++),p=new RegExp("^(?:"+L+")",R)),E&&(p=new RegExp("^"+L+"$(?!\\s)",R)),x&&(w=n.lastIndex),k=r(d,P?p:n,I),P?k?(k.input=b(k.input,j),k[0]=b(k[0],j),k.index=n.lastIndex,n.lastIndex+=k[0].length):n.lastIndex=0:x&&k&&(n.lastIndex=n.global?k.index+k[0].length:w),E&&k&&k.length>1&&r(h,k[0],p,(function(){for(O=1;O<arguments.length-2;O++)void 0===arguments[O]&&(k[O]=void 0)})),k&&C)for(k.groups=A=s(null),O=0;O<C.length;O++)A[(T=C[O])[0]]=k[T[1]];return k}),t.exports=g},function(t,e,n){"use strict";var r=n(206),o=TypeError;t.exports=function(t){if(r(t))throw new o("The method doesn't accept regular expressions");return t}},function(t,e,n){"use strict";var r,o=n(9)("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[o]=!1,"/./"[t](e)}catch(t){}}return!1}},function(t,e,n){"use strict";var r=n(116).charAt;t.exports=function(t,e,n){return e+(n?r(t,e).length:1)}},function(t,e,n){"use strict";var r=n(74).PROPER,o=n(2),i=n(112),a="\u200b\x85\u180e";t.exports=function(t){return o((function(){return!!i[t]()||a[t]()!==a||r&&i[t].name!==t}))}},function(t,e,n){"use strict";var r=n(4),o=n(2),i=n(105),a=n(12).NATIVE_ARRAY_BUFFER_VIEWS,u=r.ArrayBuffer,c=r.Int8Array;t.exports=!a||!o((function(){c(1)}))||!o((function(){new c(-1)}))||!i((function(t){new c,new c(null),new c(1.5),new c(t)}),!0)||o((function(){return 1!==new c(new u(2),1,void 0).length}))},function(t,e,n){"use strict";var r=n(4),o=n(49),i=n(11),a=n(139),u=n(45),c=n(42),s=n(96),l=r.Function,f=/MSIE .\./.test(u)||"BUN"===a&&((p=r.Bun.version.split(".")).length<3||"0"===p[0]&&(p[1]<3||"3"===p[1]&&"0"===p[2])),p;t.exports=function(t,e){var n=e?2:1;return f?function(r,a){var u=s(arguments.length,1)>n,f=i(r)?r:l(r),p=u?c(arguments,n):[],h=u?function(){o(f,this,p)}:f;return e?t(h,a):t(h)}:t}},function(t,e,n){"use strict";var r=Object.prototype.hasOwnProperty,o=Object.prototype.toString,i=Object.defineProperty,a=Object.getOwnPropertyDescriptor,u=function t(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===o.call(e)},c=function t(e){if(!e||"[object Object]"!==o.call(e))return!1;var n=r.call(e,"constructor"),i=e.constructor&&e.constructor.prototype&&r.call(e.constructor.prototype,"isPrototypeOf"),a;if(e.constructor&&!n&&!i)return!1;for(a in e);return void 0===a||r.call(e,a)},s=function t(e,n){i&&"__proto__"===n.name?i(e,n.name,{enumerable:!0,configurable:!0,value:n.newValue,writable:!0}):e[n.name]=n.newValue},l=function t(e,n){if("__proto__"===n){if(!r.call(e,n))return;if(a)return a(e,n).value}return e[n]};t.exports=function t(){var e,n,r,o,i,a,f=arguments[0],p=1,h=arguments.length,d=!1;for("boolean"==typeof f&&(d=f,f=arguments[1]||{},p=2),(null==f||"object"!=typeof f&&"function"!=typeof f)&&(f={});p<h;++p)if(null!=(e=arguments[p]))for(n in e)r=l(f,n),f!==(o=l(e,n))&&(d&&o&&(c(o)||(i=u(o)))?(i?(i=!1,a=r&&u(r)?r:[]):a=r&&c(r)?r:{},s(f,{name:n,newValue:t(d,a,o)})):void 0!==o&&s(f,{name:n,newValue:o}));return f}},function(t,e,n){var r=n(506);t.exports=b,t.exports.parse=i,t.exports.compile=u,t.exports.tokensToFunction=l,t.exports.tokensToRegExp=y;var o=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function i(t,e){for(var n=[],r=0,i=0,u="",c=e&&e.delimiter||"/",s;null!=(s=o.exec(t));){var l=s[0],f=s[1],h=s.index;if(u+=t.slice(i,h),i=h+l.length,f)u+=f[1];else{var d=t[i],g=s[2],v=s[3],m=s[4],y=s[5],b=s[6],x=s[7];u&&(n.push(u),u="");var w=null!=g&&null!=d&&d!==g,k="+"===b||"*"===b,S="?"===b||"*"===b,E=g||c,O=m||y,A=g||("string"==typeof n[n.length-1]?n[n.length-1]:"");n.push({name:v||r++,prefix:g||"",delimiter:E,optional:S,repeat:k,partial:w,asterisk:!!x,pattern:O?p(O):x?".*":a(E,A)})}}return i<t.length&&(u+=t.substr(i)),u&&n.push(u),n}function a(t,e){return!e||e.indexOf(t)>-1?"[^"+f(t)+"]+?":f(e)+"|(?:(?!"+f(e)+")[^"+f(t)+"])+?"}function u(t,e){return l(i(t,e),e)}function c(t){return encodeURI(t).replace(/[\/?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}))}function s(t){return encodeURI(t).replace(/[?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}))}function l(t,e){for(var n=new Array(t.length),o=0;o<t.length;o++)"object"==typeof t[o]&&(n[o]=new RegExp("^(?:"+t[o].pattern+")$",d(e)));return function(e,o){for(var i="",a=e||{},u,l=(o||{}).pretty?c:encodeURIComponent,f=0;f<t.length;f++){var p=t[f];if("string"!=typeof p){var h=a[p.name],d;if(null==h){if(p.optional){p.partial&&(i+=p.prefix);continue}throw new TypeError('Expected "'+p.name+'" to be defined')}if(r(h)){if(!p.repeat)throw new TypeError('Expected "'+p.name+'" to not repeat, but received `'+JSON.stringify(h)+"`");if(0===h.length){if(p.optional)continue;throw new TypeError('Expected "'+p.name+'" to not be empty')}for(var g=0;g<h.length;g++){if(d=l(h[g]),!n[f].test(d))throw new TypeError('Expected all "'+p.name+'" to match "'+p.pattern+'", but received `'+JSON.stringify(d)+"`");i+=(0===g?p.prefix:p.delimiter)+d}}else{if(d=p.asterisk?s(h):l(h),!n[f].test(d))throw new TypeError('Expected "'+p.name+'" to match "'+p.pattern+'", but received "'+d+'"');i+=p.prefix+d}}else i+=p}return i}}function f(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function p(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function h(t,e){return t.keys=e,t}function d(t){return t&&t.sensitive?"":"i"}function g(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)e.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return h(t,e)}function v(t,e,n){for(var r=[],o=0;o<t.length;o++)r.push(b(t[o],e,n).source);var i;return h(new RegExp("(?:"+r.join("|")+")",d(n)),e)}function m(t,e,n){return y(i(t,n),e,n)}function y(t,e,n){r(e)||(n=e||n,e=[]);for(var o=(n=n||{}).strict,i=!1!==n.end,a="",u=0;u<t.length;u++){var c=t[u];if("string"==typeof c)a+=f(c);else{var s=f(c.prefix),l="(?:"+c.pattern+")";e.push(c),c.repeat&&(l+="(?:"+s+l+")*"),a+=l=c.optional?c.partial?s+"("+l+")?":"(?:"+s+"("+l+"))?":s+"("+l+")"}}var p=f(n.delimiter||"/"),g=a.slice(-p.length)===p;return o||(a=(g?a.slice(0,-p.length):a)+"(?:"+p+"(?=$))?"),a+=i?"$":o&&g?"":"(?="+p+"|$)",h(new RegExp("^"+a,d(n)),e)}function b(t,e,n){return r(e)||(n=e||n,e=[]),n=n||{},t instanceof RegExp?g(t,e):r(t)?v(t,e,n):m(t,e,n)}},,,function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){"use strict";var r=n(71);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,e,n){"use strict";var r=n(10),o=n(11),i=n(7),a=TypeError;t.exports=function(t,e){var n,u;if("string"===e&&o(n=t.toString)&&!i(u=r(n,t)))return u;if(o(n=t.valueOf)&&!i(u=r(n,t)))return u;if("string"!==e&&o(n=t.toString)&&!i(u=r(n,t)))return u;throw new a("Can't convert object to primitive value")}},function(t,e,n){"use strict";var r=n(6),o=n(2),i=n(101);t.exports=!r&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,e,n){"use strict";var r=n(6),o=n(2);t.exports=r&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},function(t,e,n){"use strict";var r=n(4),o=n(11),i=r.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},function(t,e,n){"use strict";var r=n(3),o=n(13),i=n(28),a=n(85).indexOf,u=n(84),c=r([].push);t.exports=function(t,e){var n=i(t),r=0,s=[],l;for(l in n)!o(u,l)&&o(n,l)&&c(s,l);for(;e.length>r;)o(n,l=e[r++])&&(~a(s,l)||c(s,l));return s}},function(t,e,n){"use strict";var r=Math.ceil,o=Math.floor;t.exports=Math.trunc||function t(e){var n=+e;return(n>0?o:r)(n)}},function(t,e,n){"use strict";var r=n(26);t.exports=r("document","documentElement")},function(t,e,n){"use strict";var r=n(9);e.f=r},function(t,e,n){"use strict";var r=n(10),o=n(26),i=n(9),a=n(18);t.exports=function(){var t=o("Symbol"),e=t&&t.prototype,n=e&&e.valueOf,u=i("toPrimitive");e&&!e[u]&&a(e,u,(function(t){return r(n,this)}),{arity:1})}},function(t,e,n){"use strict";var r=n(71);t.exports=r&&!!Symbol.for&&!!Symbol.keyFor},function(t,e,n){"use strict";var r=n(15),o=n(54),i=n(19),a=n(134),u=Math.min;t.exports=[].copyWithin||function t(e,n){var c=r(this),s=i(c),l=o(e,s),f=o(n,s),p=arguments.length>2?arguments[2]:void 0,h=u((void 0===p?s:o(p,s))-f,s-l),d=1;for(f<l&&l<f+h&&(d=-1,f+=h-1,l+=h-1);h-- >0;)f in c?c[l]=c[f]:a(c,l),l+=d,f+=d;return c}},function(t,e,n){"use strict";var r=n(55),o=n(19),i=n(133),a=n(47),u=function(t,e,n,c,s,l,f,p){for(var h=s,d=0,g=!!f&&a(f,p),v,m;d<c;)d in n&&(v=g?g(n[d],d,e):n[d],l>0&&r(v)?(m=o(v),h=u(t,e,v,m,h,l-1)-1):(i(h+1),t[h]=v),h++),d++;return h};t.exports=u},function(t,e,n){"use strict";var r=n(22).forEach,o,i=n(50)("forEach");t.exports=i?[].forEach:function t(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},function(t,e,n){"use strict";var r=n(47),o=n(10),i=n(15),a=n(272),u=n(136),c=n(89),s=n(19),l=n(65),f=n(104),p=n(92),h=Array;t.exports=function t(e){var n=i(e),d=c(this),g=arguments.length,v=g>1?arguments[1]:void 0,m=void 0!==v;m&&(v=r(v,g>2?arguments[2]:void 0));var y=p(n),b=0,x,w,k,S,E,O;if(!y||this===h&&u(y))for(x=s(n),w=d?new this(x):h(x);x>b;b++)O=m?v(n[b],b):n[b],l(w,b,O);else for(w=d?new this:[],E=(S=f(n,y)).next;!(k=o(E,S)).done;b++)O=m?a(S,v,[k.value,b],!0):k.value,l(w,b,O);return w.length=b,w}},function(t,e,n){"use strict";var r=n(10),o=n(8),i=n(62);t.exports=function(t,e,n){var a,u;o(t);try{if(!(a=i(t,"return"))){if("throw"===e)throw n;return n}a=r(a,t)}catch(t){u=!0,a=t}if("throw"===e)throw n;if(u)throw a;return o(a),n}},function(t,e,n){"use strict";var r=n(184).IteratorPrototype,o=n(41),i=n(52),a=n(37),u=n(91),c=function(){return this};t.exports=function(t,e,n,s){var l=e+" Iterator";return t.prototype=o(r,{next:i(+!s,n)}),a(t,l,!1,!0),u[l]=c,t}},function(t,e,n){"use strict";var r=n(2),o=n(11),i=n(7),a=n(41),u=n(44),c=n(18),s=n(9),l=n(27),f=s("iterator"),p=!1,h,d,g,v;[].keys&&("next"in(g=[].keys())?(d=u(u(g)))!==Object.prototype&&(h=d):p=!0),!i(h)||r((function(){var t={};return h[f].call(t)!==t}))?h={}:l&&(h=a(h)),o(h[f])||c(h,f,(function(){return this})),t.exports={IteratorPrototype:h,BUGGY_SAFARI_ITERATORS:p}},function(t,e,n){"use strict";var r=n(277),o=String,i=TypeError;t.exports=function(t){if(r(t))return t;throw new i("Can't set "+o(t)+" as a prototype")}},function(t,e,n){"use strict";var r=n(49),o=n(28),i=n(35),a=n(19),u=n(50),c=Math.min,s=[].lastIndexOf,l=!!s&&1/[1].lastIndexOf(1,-0)<0,f=u("lastIndexOf"),p=l||!f;t.exports=p?function t(e){if(l)return r(s,this,arguments)||0;var n=o(this),u=a(n);if(0===u)return-1;var f=u-1;for(arguments.length>1&&(f=c(f,i(arguments[1]))),f<0&&(f=u+f);f>=0;f--)if(f in n&&n[f]===e)return f||0;return-1}:s},function(t,e,n){"use strict";var r,o=n(45).match(/firefox\/(\d+)/i);t.exports=!!o&&+o[1]},function(t,e,n){"use strict";var r=n(45);t.exports=/MSIE|Trident/.test(r)},function(t,e,n){"use strict";var r=n(35),o=n(36),i=RangeError;t.exports=function(t){if(void 0===t)return 0;var e=r(t),n=o(e);if(e!==n)throw new i("Wrong length or index");return n}},function(t,e,n){"use strict";var r=n(294),o=1.1920928955078125e-7,i=34028234663852886e22,a=11754943508222875e-54;t.exports=Math.fround||function t(e){return r(e,o,i,a)}},function(t,e,n){"use strict";var r=n(3),o=n(21),i=n(7),a=n(13),u=n(42),c=n(82),s=Function,l=r([].concat),f=r([].join),p={},h=function(t,e,n){if(!a(p,e)){for(var r=[],o=0;o<e;o++)r[o]="a["+o+"]";p[e]=s("C,a","return new C("+f(r,",")+")")}return p[e](t,n)};t.exports=c?s.bind:function t(e){var n=o(this),r=n.prototype,a=u(arguments,1),c=function t(){var r=l(a,u(arguments));return this instanceof c?h(n,r.length,r):n.apply(e,r)};return i(r)&&(c.prototype=r),c}},function(t,e,n){"use strict";var r=n(41),o=n(43),i=n(94),a=n(47),u=n(58),c=n(60),s=n(78),l=n(137),f=n(107),p=n(76),h=n(6),d=n(66).fastKey,g=n(23),v=g.set,m=g.getterFor;t.exports={getConstructor:function(t,e,n,l){var f=t((function(t,o){u(t,p),v(t,{type:e,index:r(null),first:null,last:null,size:0}),h||(t.size=0),c(o)||s(o,t[l],{that:t,AS_ENTRIES:n})})),p=f.prototype,g=m(e),y=function(t,e,n){var r=g(t),o=b(t,e),i,a;return o?o.value=n:(r.last=o={index:a=d(e,!0),key:e,value:n,previous:i=r.last,next:null,removed:!1},r.first||(r.first=o),i&&(i.next=o),h?r.size++:t.size++,"F"!==a&&(r.index[a]=o)),t},b=function(t,e){var n=g(t),r=d(e),o;if("F"!==r)return n.index[r];for(o=n.first;o;o=o.next)if(o.key===e)return o};return i(p,{clear:function t(){for(var e=this,n=g(this),o=n.first;o;)o.removed=!0,o.previous&&(o.previous=o.previous.next=null),o=o.next;n.first=n.last=null,n.index=r(null),h?n.size=0:this.size=0},delete:function(t){var e=this,n=g(this),r=b(this,t);if(r){var o=r.next,i=r.previous;delete n.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),n.first===r&&(n.first=o),n.last===r&&(n.last=i),h?n.size--:this.size--}return!!r},forEach:function t(e){for(var n=g(this),r=a(e,arguments.length>1?arguments[1]:void 0),o;o=o?o.next:n.first;)for(r(o.value,o.key,this);o&&o.removed;)o=o.previous},has:function t(e){return!!b(this,e)}}),i(p,n?{get:function t(e){var n=b(this,e);return n&&n.value},set:function t(e,n){return y(this,0===e?0:e,n)}}:{add:function t(e){return y(this,e=0===e?0:e,e)}}),h&&o(p,"size",{configurable:!0,get:function(){return g(this).size}}),f},setStrong:function(t,e,n){var r=e+" Iterator",o=m(e),i=m(r);l(t,e,(function(t,e){v(this,{type:r,target:t,state:o(t),kind:e,last:null})}),(function(){for(var t=i(this),e=t.kind,n=t.last;n&&n.removed;)n=n.previous;return t.target&&(t.last=n=n?n.next:t.state.first)?f("keys"===e?n.key:"values"===e?n.value:[n.key,n.value],!1):(t.target=null,f(void 0,!0))}),n?"entries":"values",!n,!0),p(e)}}},function(t,e,n){"use strict";var r=Math.log;t.exports=Math.log1p||function t(e){var n=+e;return n>-1e-8&&n<1e-8?n-n*n/2:r(1+n)}},function(t,e,n){"use strict";var r=n(4),o=n(2),i=n(3),a=n(14),u=n(79).trim,c=n(112),s=i("".charAt),l=r.parseFloat,f=r.Symbol,p=f&&f.iterator,h=1/l(c+"-0")!=-1/0||p&&!o((function(){l(Object(p))}));t.exports=h?function t(e){var n=u(a(e)),r=l(n);return 0===r&&"-"===s(n,0)?-0:r}:l},function(t,e,n){"use strict";var r=n(4),o=n(2),i=n(3),a=n(14),u=n(79).trim,c=n(112),s=r.parseInt,l=r.Symbol,f=l&&l.iterator,p=/^[+-]?0x/i,h=i(p.exec),d=8!==s(c+"08")||22!==s(c+"0x16")||f&&!o((function(){s(Object(f))}));t.exports=d?function t(e,n){var r=u(a(e));return s(r,n>>>0||(h(p,r)?16:10))}:s},function(t,e,n){"use strict";var r=n(6),o=n(3),i=n(10),a=n(2),u=n(87),c=n(103),s=n(99),l=n(15),f=n(83),p=Object.assign,h=Object.defineProperty,d=o([].concat);t.exports=!p||a((function(){if(r&&1!==p({b:1},p(h({},"a",{enumerable:!0,get:function(){h(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol("assign detection"),o="abcdefghijklmnopqrst";return t[n]=7,o.split("").forEach((function(t){e[t]=t})),7!==p({},t)[n]||u(p({},e)).join("")!==o}))?function t(e,n){for(var o=l(e),a=arguments.length,p=1,h=c.f,g=s.f;a>p;)for(var v=f(arguments[p++]),m=h?d(u(v),h(v)):u(v),y=m.length,b=0,x;y>b;)x=m[b++],r&&!i(g,v,x)||(o[x]=v[x]);return o}:p},function(t,e,n){"use strict";var r=n(6),o=n(2),i=n(3),a=n(44),u=n(87),c=n(28),s,l=i(n(99).f),f=i([].push),p=r&&o((function(){var t=Object.create(null);return t[2]=2,!l(t,2)})),h=function(t){return function(e){for(var n=c(e),o=u(n),i=p&&null===a(n),s=o.length,h=0,d=[],g;s>h;)g=o[h++],r&&!(i?g in n:l(n,g))||f(d,t?[g,n[g]]:n[g]);return d}};t.exports={entries:h(!0),values:h(!1)}},function(t,e,n){"use strict";t.exports=Object.is||function t(e,n){return e===n?0!==e||1/e==1/n:e!=e&&n!=n}},function(t,e,n){"use strict";var r=n(45);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(r)},function(t,e,n){"use strict";var r=n(4),o=n(201),i=n(47),a=n(114).set,u=n(202),c=n(199),s=n(377),l=n(378),f=n(93),p=r.MutationObserver||r.WebKitMutationObserver,h=r.document,d=r.process,g=r.Promise,v=o("queueMicrotask"),m,y,b,x,w;if(!v){var k=new u,S=function(){var t,e;for(f&&(t=d.domain)&&t.exit();e=k.get();)try{e()}catch(t){throw k.head&&m(),t}t&&t.enter()};c||f||l||!p||!h?!s&&g&&g.resolve?((x=g.resolve(void 0)).constructor=g,w=i(x.then,x),m=function(){w(S)}):f?m=function(){d.nextTick(S)}:(a=i(a,r),m=function(){a(S)}):(y=!0,b=h.createTextNode(""),new p(S).observe(b,{characterData:!0}),m=function(){b.data=y=!y}),v=function(t){k.head||m(),k.add(t)}}t.exports=v},function(t,e,n){"use strict";var r=n(4),o=n(6),i=Object.getOwnPropertyDescriptor;t.exports=function(t){if(!o)return r[t];var e=i(r,t);return e&&e.value}},function(t,e,n){"use strict";var r=function(){this.head=null,this.tail=null};r.prototype={add:function(t){var e={item:t,next:null},n=this.tail;n?n.next=e:this.head=e,this.tail=e},get:function(){var t=this.head,e;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}},t.exports=r},function(t,e,n){"use strict";var r=n(80),o=n(105),i=n(97).CONSTRUCTOR;t.exports=i||!o((function(t){r.all(t).then(void 0,(function(){}))}))},function(t,e,n){"use strict";var r=n(8),o=n(7),i=n(98);t.exports=function(t,e){if(r(t),o(e)&&e.constructor===t)return e;var n=i.f(t),a;return(0,n.resolve)(e),n.promise}},function(t,e,n){"use strict";var r=n(13);t.exports=function(t){return void 0!==t&&(r(t,"value")||r(t,"writable"))}},function(t,e,n){"use strict";var r=n(7),o=n(34),i,a=n(9)("match");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[a])?!!e:"RegExp"===o(t))}},function(t,e,n){"use strict";var r=n(4),o=n(2),i=r.RegExp,a=!o((function(){var t=!0;try{i(".","d")}catch(e){t=!1}var e={},n="",r=t?"dgimsy":"gimsy",o=function(t,r){Object.defineProperty(e,t,{get:function(){return n+=r,!0}})},a={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"},u;for(var c in t&&(a.hasIndices="d"),a)o(c,a[c]);return Object.getOwnPropertyDescriptor(i.prototype,"flags").get.call(e)!==r||n!==r}));t.exports={correct:a}},function(t,e,n){"use strict";var r=n(2),o,i=n(4).RegExp;t.exports=r((function(){var t=i(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)}))},function(t,e,n){"use strict";var r=n(2),o,i=n(4).RegExp;t.exports=r((function(){var t=i("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},function(t,e,n){"use strict";var r=n(0),o=n(155);r({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},function(t,e,n){"use strict";var r=n(0),o=n(3),i=n(54),a=RangeError,u=String.fromCharCode,c=String.fromCodePoint,s=o([].join),l;r({target:"String",stat:!0,arity:1,forced:!!c&&1!==c.length},{fromCodePoint:function t(e){for(var n=[],r=arguments.length,o=0,c;r>o;){if(c=+arguments[o++],i(c,1114111)!==c)throw new a(c+" is not a valid code point");n[o]=c<65536?u(c):u(55296+((c-=65536)>>10),c%1024+56320)}return s(n,"")}})},function(t,e,n){"use strict";var r=n(116).charAt,o=n(14),i=n(23),a=n(137),u=n(107),c="String Iterator",s=i.set,l=i.getterFor(c);a(String,"String",(function(t){s(this,{type:c,string:o(t),index:0})}),(function t(){var e=l(this),n=e.string,o=e.index,i;return o>=n.length?u(void 0,!0):(i=r(n,o),e.index+=i.length,u(i,!1))}))},function(t,e,n){"use strict";var r=n(45);t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(r)},function(t,e,n){"use strict";var r=n(79).end,o=n(159);t.exports=o("trimEnd")?function t(){return r(this)}:"".trimEnd},function(t,e,n){"use strict";var r=n(79).start,o=n(159);t.exports=o("trimStart")?function t(){return r(this)}:"".trimStart},function(t,e,n){"use strict";var r=n(437),o=RangeError;t.exports=function(t,e){var n=r(t);if(n%e)throw new o("Wrong offset");return n}},function(t,e,n){"use strict";var r=n(47),o=n(10),i=n(151),a=n(15),u=n(19),c=n(104),s=n(92),l=n(136),f=n(439),p=n(12).aTypedArrayConstructor,h=n(218);t.exports=function t(e){var n=i(this),d=a(e),g=arguments.length,v=g>1?arguments[1]:void 0,m=void 0!==v,y=s(d),b,x,w,k,S,E,O,A;if(y&&!l(y))for(A=(O=c(d,y)).next,d=[];!(E=o(A,O)).done;)d.push(E.value);for(m&&g>2&&(v=r(v,arguments[2])),x=u(d),w=new(p(n))(x),k=f(w),b=0;x>b;b++)S=m?v(d[b],b):d[b],w[b]=k?h(S):+S;return w}},function(t,e,n){"use strict";var r=n(100),o=TypeError;t.exports=function(t){var e=r(t,"number");if("number"==typeof e)throw new o("Can't convert number to bigint");return BigInt(e)}},function(t,e,n){"use strict";var r=n(19);t.exports=function(t,e,n){for(var o=0,i=arguments.length>2?n:r(e),a=new t(i);i>o;)a[o]=e[o++];return a}},function(t,e,n){"use strict";var r=n(3),o=n(94),i=n(66).getWeakData,a=n(58),u=n(8),c=n(60),s=n(7),l=n(78),f=n(22),p=n(13),h=n(23),d=h.set,g=h.getterFor,v=f.find,m=f.findIndex,y=r([].splice),b=0,x=function(t){return t.frozen||(t.frozen=new w)},w=function(){this.entries=[]},k=function(t,e){return v(t.entries,(function(t){return t[0]===e}))};w.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 n=k(this,t);n?n[1]=e:this.entries.push([t,e])},delete:function(t){var e=m(this.entries,(function(e){return e[0]===t}));return~e&&y(this.entries,e,1),!!~e}},t.exports={getConstructor:function(t,e,n,r){var f=t((function(t,o){a(t,h),d(t,{type:e,id:b++,frozen:null}),c(o)||l(o,t[r],{that:t,AS_ENTRIES:n})})),h=f.prototype,v=g(e),m=function(t,e,n){var r=v(t),o=i(u(e),!0);return!0===o?x(r).set(e,n):o[r.id]=n,t};return o(h,{delete:function(t){var e=v(this);if(!s(t))return!1;var n=i(t);return!0===n?x(e).delete(t):n&&p(n,e.id)&&delete n[e.id]},has:function t(e){var n=v(this);if(!s(e))return!1;var r=i(e);return!0===r?x(n).has(e):r&&p(r,n.id)}}),o(h,n?{get:function t(e){var n=v(this);if(s(e)){var r=i(e);if(!0===r)return x(n).get(e);if(r)return r[n.id]}},set:function t(e,n){return m(this,e,n)}}:{add:function t(e){return m(this,e,!0)}}),f}}},function(t,e,n){"use strict";t.exports={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}},function(t,e,n){"use strict";var r,o=n(101)("span").classList,i=o&&o.constructor&&o.constructor.prototype;t.exports=i===Object.prototype?void 0:i},function(t,e,n){"use strict";var r=n(2),o=n(9),i=n(6),a=n(27),u=o("iterator");t.exports=!r((function(){var t=new URL("b?a=1&b=2&c=3","https://a"),e=t.searchParams,n=new URLSearchParams("a=1&a=2&b=3"),r="";return t.pathname="c%20d",e.forEach((function(t,n){e.delete("b"),r+=n+t})),n.delete("a",2),n.delete("b",void 0),a&&(!t.toJSON||!n.has("a",1)||n.has("a",2)||!n.has("a",void 0)||n.has("b"))||!e.size&&(a||!i)||!e.sort||"https://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[u]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("https://\u0442\u0435\u0441\u0442").host||"#%D0%B1"!==new URL("https://a#\u0431").hash||"a1c3"!==r||"x"!==new URL("https://x",void 0).host}))},function(t,e,n){"use strict";n(106),n(211);var r=n(0),o=n(4),i=n(201),a=n(26),u=n(10),c=n(3),s=n(6),l=n(223),f=n(18),p=n(43),h=n(94),d=n(37),g=n(183),v=n(23),m=n(58),y=n(11),b=n(13),x=n(47),w=n(48),k=n(8),S=n(7),E=n(14),O=n(41),A=n(52),T=n(104),C=n(92),P=n(107),R=n(96),L=n(9),j=n(140),I=L("iterator"),F="URLSearchParams",D="URLSearchParamsIterator",_=v.set,M=v.getterFor("URLSearchParams"),N=v.getterFor("URLSearchParamsIterator"),U=i("fetch"),q=i("Request"),B=i("Headers"),z=q&&q.prototype,H=B&&B.prototype,V=o.TypeError,$=o.encodeURIComponent,G=String.fromCharCode,W=a("String","fromCodePoint"),Y=parseInt,K=c("".charAt),J=c([].join),Q=c([].push),X=c("".replace),Z=c([].shift),tt=c([].splice),et=c("".split),nt=c("".slice),rt=c(/./.exec),ot=/\+/g,it="\ufffd",at=/^[0-9a-f]+$/i,ut=function(t,e){var n=nt(t,e,e+2);return rt(at,n)?Y(n,16):NaN},ct=function(t){for(var e=0,n=128;n>0&&0!=(t&n);n>>=1)e++;return e},st=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},lt=function(t){for(var e=(t=X(t,ot," ")).length,n="",r=0;r<e;){var o=K(t,r);if("%"===o){if("%"===K(t,r+1)||r+3>e){n+="%",r++;continue}var i=ut(t,r+1);if(i!=i){n+=o,r++;continue}r+=2;var a=ct(i);if(0===a)o=G(i);else{if(1===a||a>4){n+="\ufffd",r++;continue}for(var u=[i],c=1;c<a&&!(++r+3>e||"%"!==K(t,r));){var s=ut(t,r+1);if(s!=s){r+=3;break}if(s>191||s<128)break;Q(u,s),r+=2,c++}if(u.length!==a){n+="\ufffd";continue}var l=st(u);null===l?n+="\ufffd":o=W(l)}}n+=o,r++}return n},ft=/[!'()~]|%20/g,pt={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},ht=function(t){return pt[t]},dt=function(t){return X($(t),ft,ht)},gt=g((function t(e,n){_(this,{type:"URLSearchParamsIterator",target:M(e).entries,index:0,kind:n})}),"URLSearchParams",(function t(){var e=N(this),n=e.target,r=e.index++;if(!n||r>=n.length)return e.target=null,P(void 0,!0);var o=n[r];switch(e.kind){case"keys":return P(o.key,!1);case"values":return P(o.value,!1)}return P([o.key,o.value],!1)}),!0),vt=function(t){this.entries=[],this.url=null,void 0!==t&&(S(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===K(t,0)?nt(t,1):t:E(t)))};vt.prototype={type:"URLSearchParams",bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e=this.entries,n=C(t),r,o,i,a,c,s,l;if(n)for(o=(r=T(t,n)).next;!(i=u(o,r)).done;){if(c=(a=T(k(i.value))).next,(s=u(c,a)).done||(l=u(c,a)).done||!u(c,a).done)throw new V("Expected sequence with length 2");Q(e,{key:E(s.value),value:E(l.value)})}else for(var f in t)b(t,f)&&Q(e,{key:f,value:E(t[f])})},parseQuery:function(t){if(t)for(var e=this.entries,n=et(t,"&"),r=0,o,i;r<n.length;)(o=n[r++]).length&&(i=et(o,"="),Q(e,{key:lt(Z(i)),value:lt(J(i,"="))}))},serialize:function(){for(var t=this.entries,e=[],n=0,r;n<t.length;)r=t[n++],Q(e,dt(r.key)+"="+dt(r.value));return J(e,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var mt=function t(){m(this,yt);var e=arguments.length>0?arguments[0]:void 0,n=_(this,new vt(e));s||(this.size=n.entries.length)},yt=mt.prototype;if(h(yt,{append:function t(e,n){var r=M(this);R(arguments.length,2),Q(r.entries,{key:E(e),value:E(n)}),s||this.size++,r.updateURL()},delete:function(t){for(var e=M(this),n=R(arguments.length,1),r=e.entries,o=E(t),i=n<2?void 0:arguments[1],a=void 0===i?i:E(i),u=0;u<r.length;){var c=r[u];if(c.key!==o||void 0!==a&&c.value!==a)u++;else if(tt(r,u,1),void 0!==a)break}s||(this.size=r.length),e.updateURL()},get:function t(e){var n=M(this).entries;R(arguments.length,1);for(var r=E(e),o=0;o<n.length;o++)if(n[o].key===r)return n[o].value;return null},getAll:function t(e){var n=M(this).entries;R(arguments.length,1);for(var r=E(e),o=[],i=0;i<n.length;i++)n[i].key===r&&Q(o,n[i].value);return o},has:function t(e){for(var n=M(this).entries,r=R(arguments.length,1),o=E(e),i=r<2?void 0:arguments[1],a=void 0===i?i:E(i),u=0;u<n.length;){var c=n[u++];if(c.key===o&&(void 0===a||c.value===a))return!0}return!1},set:function t(e,n){var r=M(this);R(arguments.length,1);for(var o=r.entries,i=!1,a=E(e),u=E(n),c=0,l;c<o.length;c++)(l=o[c]).key===a&&(i?tt(o,c--,1):(i=!0,l.value=u));i||Q(o,{key:a,value:u}),s||(this.size=o.length),r.updateURL()},sort:function t(){var e=M(this);j(e.entries,(function(t,e){return t.key>e.key?1:-1})),e.updateURL()},forEach:function t(e){for(var n=M(this).entries,r=x(e,arguments.length>1?arguments[1]:void 0),o=0,i;o<n.length;)r((i=n[o++]).value,i.key,this)},keys:function t(){return new gt(this,"keys")},values:function t(){return new gt(this,"values")},entries:function t(){return new gt(this,"entries")}},{enumerable:!0}),f(yt,I,yt.entries,{name:"entries"}),f(yt,"toString",(function t(){return M(this).serialize()}),{enumerable:!0}),s&&p(yt,"size",{get:function t(){return M(this).entries.length},configurable:!0,enumerable:!0}),d(mt,"URLSearchParams"),r({global:!0,constructor:!0,forced:!l},{URLSearchParams:mt}),!l&&y(B)){var bt=c(H.has),xt=c(H.set),wt=function(t){if(S(t)){var e=t.body,n;if("URLSearchParams"===w(e))return n=t.headers?new B(t.headers):new B,bt(n,"content-type")||xt(n,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),O(t,{body:A(0,E(e)),headers:A(0,n)})}return t};if(y(U)&&r({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function t(e){return U(e,arguments.length>1?wt(arguments[1]):{})}}),y(q)){var kt=function t(e){return m(this,z),new q(e,arguments.length>1?wt(arguments[1]):{})};z.constructor=kt,kt.prototype=z,r({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:kt})}}t.exports={URLSearchParams:mt,getState:M}},function(t,e,n){"use strict";t.exports=n(507)},function(t,e,n){"use strict";function r(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE){0;try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(r)}catch(t){console.error(t)}}}r(),t.exports=n(495)},function(t,e){function n(t,e){if(null==t)return{};var n={};for(var r in t)if({}.hasOwnProperty.call(t,r)){if(-1!==e.indexOf(r))continue;n[r]=t[r]}return n}t.exports=n,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,n){"use strict";const r=n(496),o=n(497),i=n(498),a=n(499),u=t=>null==t;function c(t){switch(t.arrayFormat){case"index":return e=>(n,r)=>{const o=n.length;return void 0===r||t.skipNull&&null===r||t.skipEmptyString&&""===r?n:null===r?[...n,[f(e,t),"[",o,"]"].join("")]:[...n,[f(e,t),"[",f(o,t),"]=",f(r,t)].join("")]};case"bracket":return e=>(n,r)=>void 0===r||t.skipNull&&null===r||t.skipEmptyString&&""===r?n:null===r?[...n,[f(e,t),"[]"].join("")]:[...n,[f(e,t),"[]=",f(r,t)].join("")];case"comma":case"separator":return e=>(n,r)=>null==r||0===r.length?n:0===n.length?[[f(e,t),"=",f(r,t)].join("")]:[[n,f(r,t)].join(t.arrayFormatSeparator)];default:return e=>(n,r)=>void 0===r||t.skipNull&&null===r||t.skipEmptyString&&""===r?n:null===r?[...n,f(e,t)]:[...n,[f(e,t),"=",f(r,t)].join("")]}}function s(t){let e;switch(t.arrayFormat){case"index":return(t,n,r)=>{e=/\[(\d*)\]$/.exec(t),t=t.replace(/\[\d*\]$/,""),e?(void 0===r[t]&&(r[t]={}),r[t][e[1]]=n):r[t]=n};case"bracket":return(t,n,r)=>{e=/(\[\])$/.exec(t),t=t.replace(/\[\]$/,""),e?void 0!==r[t]?r[t]=[].concat(r[t],n):r[t]=[n]:r[t]=n};case"comma":case"separator":return(e,n,r)=>{const o="string"==typeof n&&n.includes(t.arrayFormatSeparator),i="string"==typeof n&&!o&&p(n,t).includes(t.arrayFormatSeparator);n=i?p(n,t):n;const a=o||i?n.split(t.arrayFormatSeparator).map(e=>p(e,t)):null===n?n:p(n,t);r[e]=a};default:return(t,e,n)=>{void 0!==n[t]?n[t]=[].concat(n[t],e):n[t]=e}}}function l(t){if("string"!=typeof t||1!==t.length)throw new TypeError("arrayFormatSeparator must be single character string")}function f(t,e){return e.encode?e.strict?r(t):encodeURIComponent(t):t}function p(t,e){return e.decode?o(t):t}function h(t){return Array.isArray(t)?t.sort():"object"==typeof t?h(Object.keys(t)).sort((t,e)=>Number(t)-Number(e)).map(e=>t[e]):t}function d(t){const e=t.indexOf("#");return-1!==e&&(t=t.slice(0,e)),t}function g(t){let e="";const n=t.indexOf("#");return-1!==n&&(e=t.slice(n)),e}function v(t){const e=(t=d(t)).indexOf("?");return-1===e?"":t.slice(e+1)}function m(t,e){return e.parseNumbers&&!Number.isNaN(Number(t))&&"string"==typeof t&&""!==t.trim()?t=Number(t):!e.parseBooleans||null===t||"true"!==t.toLowerCase()&&"false"!==t.toLowerCase()||(t="true"===t.toLowerCase()),t}function y(t,e){l((e=Object.assign({decode:!0,sort:!0,arrayFormat:"none",arrayFormatSeparator:",",parseNumbers:!1,parseBooleans:!1},e)).arrayFormatSeparator);const n=s(e),r=Object.create(null);if("string"!=typeof t)return r;if(!(t=t.trim().replace(/^[?#&]/,"")))return r;for(const o of t.split("&")){if(""===o)continue;let[t,a]=i(e.decode?o.replace(/\+/g," "):o,"=");a=void 0===a?null:["comma","separator"].includes(e.arrayFormat)?a:p(a,e),n(p(t,e),a,r)}for(const t of Object.keys(r)){const n=r[t];if("object"==typeof n&&null!==n)for(const t of Object.keys(n))n[t]=m(n[t],e);else r[t]=m(n,e)}return!1===e.sort?r:(!0===e.sort?Object.keys(r).sort():Object.keys(r).sort(e.sort)).reduce((t,e)=>{const n=r[e];return Boolean(n)&&"object"==typeof n&&!Array.isArray(n)?t[e]=h(n):t[e]=n,t},Object.create(null))}e.extract=v,e.parse=y,e.stringify=(t,e)=>{if(!t)return"";l((e=Object.assign({encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:","},e)).arrayFormatSeparator);const n=n=>e.skipNull&&u(t[n])||e.skipEmptyString&&""===t[n],r=c(e),o={};for(const e of Object.keys(t))n(e)||(o[e]=t[e]);const i=Object.keys(o);return!1!==e.sort&&i.sort(e.sort),i.map(n=>{const o=t[n];return void 0===o?"":null===o?f(n,e):Array.isArray(o)?o.reduce(r(n),[]).join("&"):f(n,e)+"="+f(o,e)}).filter(t=>t.length>0).join("&")},e.parseUrl=(t,e)=>{e=Object.assign({decode:!0},e);const[n,r]=i(t,"#");return Object.assign({url:n.split("?")[0]||"",query:y(v(t),e)},e&&e.parseFragmentIdentifier&&r?{fragmentIdentifier:p(r,e)}:{})},e.stringifyUrl=(t,n)=>{n=Object.assign({encode:!0,strict:!0},n);const r=d(t.url).split("?")[0]||"",o=e.extract(t.url),i=e.parse(o,{sort:!1}),a=Object.assign(i,t.query);let u=e.stringify(a,n);u&&(u="?"+u);let c=g(t.url);return t.fragmentIdentifier&&(c="#"+f(t.fragmentIdentifier,n)),`${r}${u}${c}`},e.pick=(t,n,r)=>{r=Object.assign({parseFragmentIdentifier:!0},r);const{url:o,query:i,fragmentIdentifier:u}=e.parseUrl(t,r);return e.stringifyUrl({url:o,query:a(i,n),fragmentIdentifier:u},r)},e.exclude=(t,n,r)=>{const o=Array.isArray(n)?t=>!n.includes(t):(t,e)=>!n(t,e);return e.pick(t,o,r)}},function(t,e,n){"use strict";t.exports=n(501)},function(t,e,n){var r=n(502);function o(t,e){var n=null,o;if(!t||"string"!=typeof t)return n;for(var i=r(t),a="function"==typeof e,u,c,s=0,l=i.length;s<l;s++)u=(o=i[s]).property,c=o.value,a?e(u,c,o):c&&(n||(n={}),n[u]=c);return n}t.exports=o},function(t,e,n){"use strict";var r=n(225),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},u={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},c={};function s(t){return r.isMemo(t)?u:c[t.$$typeof]||o}c[r.ForwardRef]=a,c[r.Memo]=u;var l=Object.defineProperty,f=Object.getOwnPropertyNames,p=Object.getOwnPropertySymbols,h=Object.getOwnPropertyDescriptor,d=Object.getPrototypeOf,g=Object.prototype;function v(t,e,n){if("string"!=typeof e){if(g){var r=d(e);r&&r!==g&&v(t,r,n)}var o=f(e);p&&(o=o.concat(p(e)));for(var a=s(t),u=s(e),c=0;c<o.length;++c){var m=o[c];if(!(i[m]||n&&n[m]||u&&u[m]||a&&a[m])){var y=h(e,m);try{l(t,m,y)}catch(t){}}}}return t}t.exports=v},,,,,,function(t,e,n){t.exports=n(508)},function(t,e,n){"use strict";n(239),n(241),n(242),n(243),n(247)},function(t,e,n){"use strict";var r=n(0),o=n(4),i=n(10),a=n(3),u=n(27),c=n(6),s=n(71),l=n(2),f=n(13),p=n(40),h=n(8),d=n(28),g=n(61),v=n(14),m=n(52),y=n(41),b=n(87),x=n(64),w=n(131),k=n(103),S=n(24),E=n(16),O=n(130),A=n(99),T=n(18),C=n(43),P=n(72),R=n(102),L=n(84),j=n(73),I=n(9),F=n(175),D=n(30),_=n(176),M=n(37),N=n(23),U=n(22).forEach,q=R("hidden"),B="Symbol",z="prototype",H=N.set,V=N.getterFor(B),$=Object[z],G=o.Symbol,W=G&&G[z],Y=o.RangeError,K=o.TypeError,J=o.QObject,Q=S.f,X=E.f,Z=w.f,tt=A.f,et=a([].push),nt=P("symbols"),rt=P("op-symbols"),ot=P("wks"),it=!J||!J[z]||!J[z].findChild,at=function(t,e,n){var r=Q($,e);r&&delete $[e],X(t,e,n),r&&t!==$&&X($,e,r)},ut=c&&l((function(){return 7!==y(X({},"a",{get:function(){return X(this,"a",{value:7}).a}})).a}))?at:X,ct=function(t,e){var n=nt[t]=y(W);return H(n,{type:B,tag:t,description:e}),c||(n.description=e),n},st=function t(e,n,r){e===$&&st(rt,n,r),h(e);var o=g(n);return h(r),f(nt,o)?(r.enumerable?(f(e,q)&&e[q][o]&&(e[q][o]=!1),r=y(r,{enumerable:m(0,!1)})):(f(e,q)||X(e,q,m(1,y(null))),e[q][o]=!0),ut(e,o,r)):X(e,o,r)},lt=function t(e,n){h(e);var r=d(n),o=b(r).concat(gt(r));return U(o,(function(t){c&&!i(pt,r,t)||st(e,t,r[t])})),e},ft=function t(e,n){return void 0===n?y(e):lt(y(e),n)},pt=function t(e){var n=g(e),r=i(tt,this,n);return!(this===$&&f(nt,n)&&!f(rt,n))&&(!(r||!f(this,n)||!f(nt,n)||f(this,q)&&this[q][n])||r)},ht=function t(e,n){var r=d(e),o=g(n);if(r!==$||!f(nt,o)||f(rt,o)){var i=Q(r,o);return!i||!f(nt,o)||f(r,q)&&r[q][o]||(i.enumerable=!0),i}},dt=function t(e){var n=Z(d(e)),r=[];return U(n,(function(t){f(nt,t)||f(L,t)||et(r,t)})),r},gt=function(t){var e=t===$,n=Z(e?rt:d(t)),r=[];return U(n,(function(t){!f(nt,t)||e&&!f($,t)||et(r,nt[t])})),r};s||(T(W=(G=function t(){if(p(W,this))throw new K("Symbol is not a constructor");var e=arguments.length&&void 0!==arguments[0]?v(arguments[0]):void 0,n=j(e),r=function(t){var e=void 0===this?o:this;e===$&&i(r,rt,t),f(e,q)&&f(e[q],n)&&(e[q][n]=!1);var a=m(1,t);try{ut(e,n,a)}catch(t){if(!(t instanceof Y))throw t;at(e,n,a)}};return c&&it&&ut($,n,{configurable:!0,set:r}),ct(n,e)})[z],"toString",(function t(){return V(this).tag})),T(G,"withoutSetter",(function(t){return ct(j(t),t)})),A.f=pt,E.f=st,O.f=lt,S.f=ht,x.f=w.f=dt,k.f=gt,F.f=function(t){return ct(I(t),t)},c&&(C(W,"description",{configurable:!0,get:function t(){return V(this).description}}),u||T($,"propertyIsEnumerable",pt,{unsafe:!0}))),r({global:!0,constructor:!0,wrap:!0,forced:!s,sham:!s},{Symbol:G}),U(b(ot),(function(t){D(t)})),r({target:B,stat:!0,forced:!s},{useSetter:function(){it=!0},useSimple:function(){it=!1}}),r({target:"Object",stat:!0,forced:!s,sham:!c},{create:ft,defineProperty:st,defineProperties:lt,getOwnPropertyDescriptor:ht}),r({target:"Object",stat:!0,forced:!s},{getOwnPropertyNames:dt}),_(),M(G,B),L[q]=!0},function(t,e,n){"use strict";var r=n(55),o=n(89),i=n(7),a,u=n(9)("species"),c=Array;t.exports=function(t){var e;return r(t)&&(e=t.constructor,(o(e)&&(e===c||r(e.prototype))||i(e)&&null===(e=e[u]))&&(e=void 0)),void 0===e?c:e}},function(t,e,n){"use strict";var r=n(0),o=n(26),i=n(13),a=n(14),u=n(72),c=n(177),s=u("string-to-symbol-registry"),l=u("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!c},{for:function(t){var e=a(t);if(i(s,e))return s[e];var n=o("Symbol")(e);return s[e]=n,l[n]=e,n}})},function(t,e,n){"use strict";var r=n(0),o=n(13),i=n(70),a=n(63),u=n(72),c=n(177),s=u("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!c},{keyFor:function t(e){if(!i(e))throw new TypeError(a(e)+" is not a symbol");if(o(s,e))return s[e]}})},function(t,e,n){"use strict";var r=n(0),o=n(26),i=n(49),a=n(10),u=n(3),c=n(2),s=n(55),l=n(11),f=n(244),p=n(70),h=n(34),d=n(14),g=n(42),v=n(245),m=n(73),y=n(71),b=n(246),x=String,w=o("JSON","stringify"),k=u(/./.exec),S=u("".charAt),E=u("".charCodeAt),O=u("".replace),A=u("".slice),T=u([].push),C=u(1.1.toString),P=/[\uD800-\uDFFF]/g,R=/^[\uD800-\uDBFF]$/,L=/^[\uDC00-\uDFFF]$/,j=m(),I=j.length,F=!y||c((function(){var t=o("Symbol")("stringify detection");return"[null]"!==w([t])||"{}"!==w({a:t})||"{}"!==w(Object(t))})),D=c((function(){return'"\\udf06\\ud834"'!==w("\udf06\ud834")||'"\\udead"'!==w("\udead")})),_=F?function(t,e){var n=g(arguments),r=N(e);if(l(r)||void 0!==t&&!p(t))return n[1]=function(t,e){if(l(r)&&(e=a(r,this,x(t),e)),!p(e))return e},i(w,null,n)}:w,M=function(t,e,n){var r=S(n,e-1),o=S(n,e+1);return k(R,t)&&!k(L,o)||k(L,t)&&!k(R,r)?"\\u"+C(E(t,0),16):t},N=function(t){if(l(t))return t;if(s(t)){for(var e=t.length,n=[],r=0;r<e;r++){var o=t[r];"string"==typeof o?T(n,o):"number"!=typeof o&&"Number"!==h(o)&&"String"!==h(o)||T(n,d(o))}var i=n.length,a=!0;return function(t,e){if(a)return a=!1,e;if(s(this))return e;for(var r=0;r<i;r++)if(n[r]===t)return e}}};w&&r({target:"JSON",stat:!0,arity:3,forced:F||D||!b},{stringify:function t(e,n,r){var o=N(n),i=[],u=_(e,(function(t,e){var n=l(o)?a(o,this,x(t),e):e;return!b&&f(n)?j+(T(i,n.rawJSON)-1):n}),r);if("string"!=typeof u)return u;if(D&&(u=O(u,P,M)),b)return u;for(var c="",s=u.length,p=0;p<s;p++){var h=S(u,p);if('"'===h){var d=v(u,++p).end-1,g=A(u,p,d);c+=A(g,0,I)===j?i[A(g,I)]:'"'+g+'"',p=d}else c+=h}return c}})},function(t,e,n){"use strict";var r=n(7),o=n(23).get;t.exports=function t(e){if(!r(e))return!1;var n=o(e);return!!n&&"RawJSON"===n.type}},function(t,e,n){"use strict";var r=n(3),o=n(13),i=SyntaxError,a=parseInt,u=String.fromCharCode,c=r("".charAt),s=r("".slice),l=r(/./.exec),f={'\\"':'"',"\\\\":"\\","\\/":"/","\\b":"\b","\\f":"\f","\\n":"\n","\\r":"\r","\\t":"\t"},p=/^[\da-f]{4}$/i,h=/^[\u0000-\u001F]$/;t.exports=function(t,e){for(var n=!0,r="";e<t.length;){var d=c(t,e);if("\\"===d){var g=s(t,e,e+2);if(o(f,g))r+=f[g],e+=2;else{if("\\u"!==g)throw new i('Unknown escape sequence: "'+g+'"');var v=s(t,e+=2,e+4);if(!l(p,v))throw new i("Bad Unicode escape at: "+e);r+=u(a(v,16)),e+=4}}else{if('"'===d){n=!1,e++;break}if(l(h,d))throw new i("Bad control character in string literal at: "+e);r+=d,e++}}if(n)throw new i("Unterminated string at: "+e);return{value:r,end:e}}},function(t,e,n){"use strict";var r=n(2);t.exports=!r((function(){var t="9007199254740993",e=JSON.rawJSON(t);return!JSON.isRawJSON(e)||JSON.stringify(e)!==t}))},function(t,e,n){"use strict";var r=n(0),o=n(71),i=n(2),a=n(103),u=n(15),c;r({target:"Object",stat:!0,forced:!o||i((function(){a.f(1)}))},{getOwnPropertySymbols:function t(e){var n=a.f;return n?n(u(e)):[]}})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(4),a=n(3),u=n(13),c=n(11),s=n(40),l=n(14),f=n(43),p=n(126),h=i.Symbol,d=h&&h.prototype;if(o&&c(h)&&(!("description"in d)||void 0!==h().description)){var g={},v=function t(){var e=arguments.length<1||void 0===arguments[0]?void 0:l(arguments[0]),n=s(d,this)?new h(e):void 0===e?h():h(e);return""===e&&(g[n]=!0),n};p(v,h),v.prototype=d,d.constructor=v;var m="Symbol(description detection)"===String(h("description detection")),y=a(d.valueOf),b=a(d.toString),x=/^Symbol\((.*)\)[^)]+$/,w=a("".replace),k=a("".slice);f(d,"description",{configurable:!0,get:function t(){var e=y(this);if(u(g,e))return"";var n=b(e),r=m?k(n,7,-1):w(n,x,"$1");return""===r?void 0:r}}),r({global:!0,constructor:!0,forced:!0},{Symbol:v})}},function(t,e,n){"use strict";var r;n(30)("asyncIterator")},function(t,e,n){"use strict";var r;n(30)("hasInstance")},function(t,e,n){"use strict";var r;n(30)("isConcatSpreadable")},function(t,e,n){"use strict";var r;n(30)("iterator")},function(t,e,n){"use strict";var r;n(30)("match")},function(t,e,n){"use strict";var r;n(30)("replace")},function(t,e,n){"use strict";var r;n(30)("search")},function(t,e,n){"use strict";var r;n(30)("species")},function(t,e,n){"use strict";var r;n(30)("split")},function(t,e,n){"use strict";var r=n(30),o=n(176);r("toPrimitive"),o()},function(t,e,n){"use strict";var r=n(26),o=n(30),i=n(37);o("toStringTag"),i(r("Symbol"),"Symbol")},function(t,e,n){"use strict";var r;n(30)("unscopables")},function(t,e,n){"use strict";var r=n(0),o=n(2),i=n(55),a=n(7),u=n(15),c=n(19),s=n(133),l=n(65),f=n(88),p=n(90),h=n(9),d=n(53),g=h("isConcatSpreadable"),v=d>=51||!o((function(){var t=[];return t[g]=!1,t.concat()[0]!==t})),m=function(t){if(!a(t))return!1;var e=t[g];return void 0!==e?!!e:i(t)},y;r({target:"Array",proto:!0,arity:1,forced:!v||!p("concat")},{concat:function t(e){var n=u(this),r=f(n,0),o=0,i,a,p,h,d;for(i=-1,p=arguments.length;i<p;i++)if(m(d=-1===i?n:arguments[i]))for(h=c(d),s(o+h),a=0;a<h;a++,o++)a in d&&l(r,o,d[a]);else s(o+1),l(r,o++,d);return r.length=o,r}})},function(t,e,n){"use strict";var r=n(0),o=n(178),i=n(56);r({target:"Array",proto:!0},{copyWithin:o}),i("copyWithin")},function(t,e,n){"use strict";var r=n(0),o=n(22).every,i,a;r({target:"Array",proto:!0,forced:!n(50)("every")},{every:function t(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0),o=n(135),i=n(56);r({target:"Array",proto:!0},{fill:o}),i("fill")},function(t,e,n){"use strict";var r=n(0),o=n(22).filter,i,a;r({target:"Array",proto:!0,forced:!n(90)("filter")},{filter:function t(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0),o=n(22).find,i=n(56),a="find",u=!0;a in[]&&Array(1)[a]((function(){u=!1})),r({target:"Array",proto:!0,forced:u},{find:function t(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),i(a)},function(t,e,n){"use strict";var r=n(0),o=n(22).findIndex,i=n(56),a="findIndex",u=!0;a in[]&&Array(1)[a]((function(){u=!1})),r({target:"Array",proto:!0,forced:u},{findIndex:function t(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),i(a)},function(t,e,n){"use strict";var r=n(0),o=n(179),i=n(15),a=n(19),u=n(35),c=n(88);r({target:"Array",proto:!0},{flat:function t(){var e=arguments.length?arguments[0]:void 0,n=i(this),r=a(n),s=c(n,0);return s.length=o(s,n,n,r,0,void 0===e?1:u(e)),s}})},function(t,e,n){"use strict";var r=n(0),o=n(179),i=n(21),a=n(15),u=n(19),c=n(88);r({target:"Array",proto:!0},{flatMap:function t(e){var n=a(this),r=u(n),s;return i(e),(s=c(n,0)).length=o(s,n,n,r,0,1,e,arguments.length>1?arguments[1]:void 0),s}})},function(t,e,n){"use strict";var r=n(0),o=n(180);r({target:"Array",proto:!0,forced:[].forEach!==o},{forEach:o})},function(t,e,n){"use strict";var r=n(0),o=n(181),i,a;r({target:"Array",stat:!0,forced:!n(105)((function(t){Array.from(t)}))},{from:o})},function(t,e,n){"use strict";var r=n(8),o=n(182);t.exports=function(t,e,n,i){try{return i?e(r(n)[0],n[1]):e(n)}catch(e){o(t,"throw",e)}}},function(t,e,n){"use strict";var r=n(0),o=n(85).includes,i=n(2),a=n(56),u;r({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function t(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),a("includes")},function(t,e,n){"use strict";var r=n(0),o=n(75),i=n(85).indexOf,a=n(50),u=o([].indexOf),c=!!u&&1/u([1],1,-0)<0,s;r({target:"Array",proto:!0,forced:c||!a("indexOf")},{indexOf:function t(e){var n=arguments.length>1?arguments[1]:void 0;return c?u(this,e,n)||0:i(this,e,n)}})},function(t,e,n){"use strict";var r,o;n(0)({target:"Array",stat:!0},{isArray:n(55)})},function(t,e,n){"use strict";var r=n(3),o=n(21);t.exports=function(t,e,n){try{return r(o(Object.getOwnPropertyDescriptor(t,e)[n]))}catch(t){}}},function(t,e,n){"use strict";var r=n(7);t.exports=function(t){return r(t)||null===t}},function(t,e,n){"use strict";var r=n(0),o=n(3),i=n(83),a=n(28),u=n(50),c=o([].join),s,l;r({target:"Array",proto:!0,forced:i!==Object||!u("join",",")},{join:function t(e){return c(a(this),void 0===e?",":e)}})},function(t,e,n){"use strict";var r=n(0),o=n(186);r({target:"Array",proto:!0,forced:o!==[].lastIndexOf},{lastIndexOf:o})},function(t,e,n){"use strict";var r=n(0),o=n(22).map,i,a;r({target:"Array",proto:!0,forced:!n(90)("map")},{map:function t(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0),o=n(2),i=n(89),a=n(65),u=Array,c;r({target:"Array",stat:!0,forced:o((function(){function t(){}return!(u.of.call(t)instanceof t)}))},{of:function t(){for(var e=0,n=arguments.length,r=new(i(this)?this:u)(n);n>e;)a(r,e,arguments[e++]);return r.length=n,r}})},function(t,e,n){"use strict";var r=n(0),o=n(108).left,i=n(50),a=n(53),u,c,s;r({target:"Array",proto:!0,forced:!n(93)&&a>79&&a<83||!i("reduce")},{reduce:function t(e){var n=arguments.length;return o(this,e,n,n>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0),o=n(108).right,i=n(50),a=n(53),u,c,s;r({target:"Array",proto:!0,forced:!n(93)&&a>79&&a<83||!i("reduceRight")},{reduceRight:function t(e){return o(this,e,arguments.length,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0),o=n(3),i=n(55),a=o([].reverse),u=[1,2];r({target:"Array",proto:!0,forced:String(u)===String(u.reverse())},{reverse:function t(){return i(this)&&(this.length=this.length),a(this)}})},function(t,e,n){"use strict";var r=n(0),o=n(55),i=n(89),a=n(7),u=n(54),c=n(19),s=n(28),l=n(65),f=n(9),p=n(90),h=n(42),d=p("slice"),g=f("species"),v=Array,m=Math.max;r({target:"Array",proto:!0,forced:!d},{slice:function t(e,n){var r=s(this),f=c(r),p=u(e,f),d=u(void 0===n?f:n,f),y,b,x;if(o(r)&&(y=r.constructor,(i(y)&&(y===v||o(y.prototype))||a(y)&&null===(y=y[g]))&&(y=void 0),y===v||void 0===y))return h(r,p,d);for(b=new(void 0===y?v:y)(m(d-p,0)),x=0;p<d;p++,x++)p in r&&l(b,x,r[p]);return b.length=x,b}})},function(t,e,n){"use strict";var r=n(0),o=n(22).some,i,a;r({target:"Array",proto:!0,forced:!n(50)("some")},{some:function t(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0),o=n(3),i=n(21),a=n(15),u=n(19),c=n(134),s=n(14),l=n(2),f=n(140),p=n(50),h=n(187),d=n(188),g=n(53),v=n(141),m=[],y=o(m.sort),b=o(m.push),x=l((function(){m.sort(void 0)})),w=l((function(){m.sort(null)})),k=p("sort"),S=!l((function(){if(g)return g<70;if(!(h&&h>3)){if(d)return!0;if(v)return v<603;var t="",e,n,r,o;for(e=65;e<76;e++){switch(n=String.fromCharCode(e),e){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(o=0;o<47;o++)m.push({k:n+o,v:r})}for(m.sort((function(t,e){return e.v-t.v})),o=0;o<m.length;o++)n=m[o].k.charAt(0),t.charAt(t.length-1)!==n&&(t+=n);return"DGBEFHACIJK"!==t}})),E,O=function(t){return function(e,n){return void 0===n?-1:void 0===e?1:void 0!==t?+t(e,n)||0:s(e)>s(n)?1:-1}};r({target:"Array",proto:!0,forced:x||!w||!k||!S},{sort:function t(e){void 0!==e&&i(e);var n=a(this);if(S)return void 0===e?y(n):y(n,e);var r=[],o=u(n),s,l;for(l=0;l<o;l++)l in n&&b(r,n[l]);for(f(r,O(e)),s=u(r),l=0;l<s;)n[l]=r[l++];for(;l<o;)c(n,l++);return n}})},function(t,e,n){"use strict";var r;n(76)("Array")},function(t,e,n){"use strict";var r=n(0),o=n(15),i=n(54),a=n(35),u=n(19),c=n(290),s=n(133),l=n(88),f=n(65),p=n(134),h,d=n(90)("splice"),g=Math.max,v=Math.min;r({target:"Array",proto:!0,forced:!d},{splice:function t(e,n){var r=o(this),h=u(r),d=i(e,h),m=arguments.length,y,b,x,w,k,S;for(0===m?y=b=0:1===m?(y=0,b=h-d):(y=m-2,b=v(g(a(n),0),h-d)),s(h+y-b),x=l(r,b),w=0;w<b;w++)(k=d+w)in r&&f(x,w,r[k]);if(x.length=b,y<b){for(w=d;w<h-b;w++)S=w+y,(k=w+b)in r?r[S]=r[k]:p(r,S);for(w=h;w>h-b+y;w--)p(r,w-1)}else if(y>b)for(w=h-b;w>d;w--)S=w+y-1,(k=w+b-1)in r?r[S]=r[k]:p(r,S);for(w=0;w<y;w++)r[w+d]=arguments[w+2];return c(r,h-b+y),x}})},function(t,e,n){"use strict";var r=n(6),o=n(55),i=TypeError,a=Object.getOwnPropertyDescriptor,u=r&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}();t.exports=u?function(t,e){if(o(t)&&!a(t,"length").writable)throw new i("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e}},function(t,e,n){"use strict";var r;n(56)("flat")},function(t,e,n){"use strict";var r;n(56)("flatMap")},function(t,e,n){"use strict";var r=n(0),o=n(4),i=n(109),a=n(76),u="ArrayBuffer",c=i[u],s;r({global:!0,constructor:!0,forced:o[u]!==c},{ArrayBuffer:c}),a(u)},function(t,e,n){"use strict";var r=n(143),o=n(295),i=Math.abs,a=2220446049250313e-31;t.exports=function(t,e,n,u){var c=+t,s=i(c),l=r(c);if(s<u)return l*o(s/u/e)*u*e;var f=(1+e/a)*s,p=f-(f-s);return p>n||p!=p?l*(1/0):l*p}},function(t,e,n){"use strict";var r,o=1/2220446049250313e-31;t.exports=function(t){return t+o-o}},function(t,e,n){"use strict";var r=Array,o=Math.abs,i=Math.pow,a=Math.floor,u=Math.log,c=Math.LN2,s=function(t,e,n){var s=r(n),l=8*n-e-1,f=(1<<l)-1,p=f>>1,h=23===e?i(2,-24)-i(2,-77):0,d=t<0||0===t&&1/t<0?1:0,g=0,v,m,y;for((t=o(t))!=t||t===1/0?(m=t!=t?1:0,v=f):(v=a(u(t)/c),t*(y=i(2,-v))<1&&(v--,y*=2),(t+=v+p>=1?h/y:h*i(2,1-p))*y>=2&&(v++,y/=2),v+p>=f?(m=0,v=f):v+p>=1?(m=(t*y-1)*i(2,e),v+=p):(m=t*i(2,p-1)*i(2,e),v=0));e>=8;)s[g++]=255&m,m/=256,e-=8;for(v=v<<e|m,l+=e;l>0;)s[g++]=255&v,v/=256,l-=8;return s[g-1]|=128*d,s},l=function(t,e){var n=t.length,r=8*n-e-1,o=(1<<r)-1,a=o>>1,u=r-7,c=n-1,s=t[c--],l=127&s,f;for(s>>=7;u>0;)l=256*l+t[c--],u-=8;for(f=l&(1<<-u)-1,l>>=-u,u+=e;u>0;)f=256*f+t[c--],u-=8;if(0===l)l=1-a;else{if(l===o)return f?NaN:s?-1/0:1/0;f+=i(2,e),l-=a}return(s?-1:1)*f*i(2,l-e)};t.exports={pack:s,unpack:l}},function(t,e,n){"use strict";var r=n(0),o=n(12),i;r({target:"ArrayBuffer",stat:!0,forced:!o.NATIVE_ARRAY_BUFFER_VIEWS},{isView:o.isView})},function(t,e,n){"use strict";var r=n(0),o=n(75),i=n(2),a=n(109),u=n(8),c=n(54),s=n(36),l=a.ArrayBuffer,f=a.DataView,p=f.prototype,h=o(l.prototype.slice),d=o(p.getUint8),g=o(p.setUint8),v;r({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:i((function(){return!new l(2).slice(1,void 0).byteLength}))},{slice:function t(e,n){if(h&&void 0===n)return h(u(this),e);for(var r=u(this).byteLength,o=c(e,r),i=c(void 0===n?r:n,r),a=new l(s(i-o)),p=new f(this),v=new f(a),m=0;o<i;)g(v,m++,d(p,o++));return a}})},function(t,e,n){"use strict";n(300)},function(t,e,n){"use strict";var r=n(0),o=n(109),i;r({global:!0,constructor:!0,forced:!n(142)},{DataView:o.DataView})},function(t,e,n){"use strict";var r=n(0),o=n(3),i=Date,a=o(i.prototype.getTime);r({target:"Date",stat:!0},{now:function t(){return a(new i)}})},function(t,e,n){"use strict";var r=n(0),o=n(303);r({target:"Date",proto:!0,forced:Date.prototype.toISOString!==o},{toISOString:o})},function(t,e,n){"use strict";var r=n(3),o=n(2),i=n(144).start,a=RangeError,u=isFinite,c=Math.abs,s=Date.prototype,l=s.toISOString,f=r(s.getTime),p=r(s.getUTCDate),h=r(s.getUTCFullYear),d=r(s.getUTCHours),g=r(s.getUTCMilliseconds),v=r(s.getUTCMinutes),m=r(s.getUTCMonth),y=r(s.getUTCSeconds);t.exports=o((function(){return"0385-07-25T07:06:39.999Z"!==l.call(new Date(-50000000000001))}))||!o((function(){l.call(new Date(NaN))}))?function t(){if(!u(f(this)))throw new a("Invalid time value");var e=this,n=h(this),r=g(this),o=n<0?"-":n>9999?"+":"";return o+i(c(n),o?6:4,0)+"-"+i(m(this)+1,2,0)+"-"+i(p(this),2,0)+"T"+i(d(this),2,0)+":"+i(v(this),2,0)+":"+i(y(this),2,0)+"."+i(r,3,0)+"Z"}:l},function(t,e,n){"use strict";var r=n(0),o=n(2),i=n(15),a=n(100),u;r({target:"Date",proto:!0,arity:1,forced:o((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}))},{toJSON:function t(e){var n=i(this),r=a(n,"number");return"number"!=typeof r||isFinite(r)?n.toISOString():null}})},function(t,e,n){"use strict";var r=n(13),o=n(18),i=n(306),a,u=n(9)("toPrimitive"),c=Date.prototype;r(c,u)||o(c,u,i)},function(t,e,n){"use strict";var r=n(8),o=n(168),i=TypeError;t.exports=function(t){if(r(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new i("Incorrect hint");return o(this,t)}},function(t,e,n){"use strict";var r=n(3),o=n(18),i=Date.prototype,a="Invalid Date",u="toString",c=r(i[u]),s=r(i.getTime);String(new Date(NaN))!==a&&o(i,u,(function t(){var e=s(this);return e==e?c(this):a}))},function(t,e,n){"use strict";var r=n(0),o=n(191);r({target:"Function",proto:!0,forced:Function.bind!==o},{bind:o})},function(t,e,n){"use strict";var r=n(11),o=n(7),i=n(16),a=n(40),u=n(9),c=n(124),s=u("hasInstance"),l=Function.prototype;s in l||i.f(l,s,{value:c((function(t){if(!r(this)||!o(t))return!1;var e=this.prototype;return o(e)?a(e,t):t instanceof this}),s)})},function(t,e,n){"use strict";var r=n(6),o=n(74).EXISTS,i=n(3),a=n(43),u=Function.prototype,c=i(u.toString),s=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,l=i(s.exec),f;r&&!o&&a(u,"name",{configurable:!0,get:function(){try{return l(s,c(this))[1]}catch(t){return""}}})},function(t,e,n){"use strict";var r=n(4),o;n(37)(r.JSON,"JSON",!0)},function(t,e,n){"use strict";n(313)},function(t,e,n){"use strict";var r,o;n(110)("Map",(function(t){return function e(){return t(this,arguments.length?arguments[0]:void 0)}}),n(192))},function(t,e,n){"use strict";var r=n(0),o=n(193),i=Math.acosh,a=Math.log,u=Math.sqrt,c=Math.LN2,s;r({target:"Math",stat:!0,forced:!i||710!==Math.floor(i(Number.MAX_VALUE))||i(1/0)!==1/0},{acosh:function t(e){var n=+e;return n<1?NaN:n>94906265.62425156?a(n)+c:o(n-1+u(n-1)*u(n+1))}})},function(t,e,n){"use strict";var r=n(0),o=Math.asinh,i=Math.log,a=Math.sqrt,u;function c(t){var e=+t;return isFinite(e)&&0!==e?e<0?-c(-e):i(e+a(e*e+1)):e}r({target:"Math",stat:!0,forced:!(o&&1/o(0)>0)},{asinh:c})},function(t,e,n){"use strict";var r=n(0),o=Math.atanh,i=Math.log,a;r({target:"Math",stat:!0,forced:!(o&&1/o(-0)<0)},{atanh:function t(e){var n=+e;return 0===n?n:i((1+n)/(1-n))/2}})},function(t,e,n){"use strict";var r=n(0),o=n(143),i=Math.abs,a=Math.pow;r({target:"Math",stat:!0},{cbrt:function t(e){var n=+e;return o(n)*a(i(n),1/3)}})},function(t,e,n){"use strict";var r=n(0),o=Math.floor,i=Math.log,a=Math.LOG2E;r({target:"Math",stat:!0},{clz32:function t(e){var n=e>>>0;return n?31-o(i(n+.5)*a):32}})},function(t,e,n){"use strict";var r=n(0),o=n(111),i=Math.cosh,a=Math.abs,u=Math.E,c;r({target:"Math",stat:!0,forced:!i||i(710)===1/0},{cosh:function t(e){var n=o(a(e)-1)+1;return(n+1/(n*u*u))*(u/2)}})},function(t,e,n){"use strict";var r=n(0),o=n(111);r({target:"Math",stat:!0,forced:o!==Math.expm1},{expm1:o})},function(t,e,n){"use strict";var r,o;n(0)({target:"Math",stat:!0},{fround:n(190)})},function(t,e,n){"use strict";var r=n(0),o=Math.hypot,i=Math.abs,a=Math.sqrt,u;r({target:"Math",stat:!0,arity:2,forced:!!o&&o(1/0,NaN)!==1/0},{hypot:function t(e,n){for(var r=0,o=0,u=arguments.length,c=0,s,l;o<u;)c<(s=i(arguments[o++]))?(r=r*(l=c/s)*l+1,c=s):r+=s>0?(l=s/c)*l:s;return c===1/0?1/0:c*a(r)}})},function(t,e,n){"use strict";var r=n(0),o=n(2),i=Math.imul,a;r({target:"Math",stat:!0,forced:o((function(){return-5!==i(4294967295,5)||2!==i.length}))},{imul:function t(e,n){var r=65535,o=+e,i=+n,a=65535&o,u=65535&i;return 0|a*u+((65535&o>>>16)*u+a*(65535&i>>>16)<<16>>>0)}})},function(t,e,n){"use strict";var r,o;n(0)({target:"Math",stat:!0},{log10:n(325)})},function(t,e,n){"use strict";var r=Math.log,o=Math.LOG10E;t.exports=Math.log10||function t(e){return r(e)*o}},function(t,e,n){"use strict";var r,o;n(0)({target:"Math",stat:!0},{log1p:n(193)})},function(t,e,n){"use strict";var r,o;n(0)({target:"Math",stat:!0},{log2:n(328)})},function(t,e,n){"use strict";var r=Math.log,o=Math.LN2;t.exports=Math.log2||function t(e){return r(e)/o}},function(t,e,n){"use strict";var r,o;n(0)({target:"Math",stat:!0},{sign:n(143)})},function(t,e,n){"use strict";var r=n(0),o=n(2),i=n(111),a=Math.abs,u=Math.exp,c=Math.E,s;r({target:"Math",stat:!0,forced:o((function(){return-2e-17!==Math.sinh(-2e-17)}))},{sinh:function t(e){var n=+e;return a(n)<1?(i(n)-i(-n))/2:(u(n-1)-u(-n-1))*(c/2)}})},function(t,e,n){"use strict";var r=n(0),o=n(111),i=Math.exp;r({target:"Math",stat:!0},{tanh:function t(e){var n=+e,r=o(n),a=o(-n);return r===1/0?1:a===1/0?-1:(r-a)/(i(n)+i(-n))}})},function(t,e,n){"use strict";var r;n(37)(Math,"Math",!0)},function(t,e,n){"use strict";var r,o;n(0)({target:"Math",stat:!0},{trunc:n(173)})},function(t,e,n){"use strict";var r=n(0),o=n(27),i=n(6),a=n(4),u=n(132),c=n(3),s=n(86),l=n(13),f=n(95),p=n(40),h=n(70),d=n(100),g=n(2),v=n(64).f,m=n(24).f,y=n(16).f,b=n(148),x=n(79).trim,w="Number",k=a[w],S=u[w],E=k.prototype,O=a.TypeError,A=c("".slice),T=c("".charCodeAt),C=function(t){var e=d(t,"number");return"bigint"==typeof e?e:P(e)},P=function(t){var e=d(t,"number"),n,r,o,i,a,u,c,s;if(h(e))throw new O("Cannot convert a Symbol value to a number");if("string"==typeof e&&e.length>2)if(e=x(e),43===(n=T(e,0))||45===n){if(88===(r=T(e,2))||120===r)return NaN}else if(48===n){switch(T(e,1)){case 66:case 98:o=2,i=49;break;case 79:case 111:o=8,i=55;break;default:return+e}for(u=(a=A(e,2)).length,c=0;c<u;c++)if((s=T(a,c))<48||s>i)return NaN;return parseInt(a,o)}return+e},R=s(w,!k(" 0o1")||!k("0b1")||k("+0x1")),L=function(t){return p(E,t)&&g((function(){b(t)}))},j=function t(e){var n=arguments.length<1?0:k(C(e));return L(this)?f(Object(n),this,j):n};j.prototype=E,R&&!o&&(E.constructor=j),r({global:!0,constructor:!0,wrap:!0,forced:R},{Number:j});var I=function(t,e){for(var n=i?v(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(","),r=0,o;n.length>r;r++)l(e,o=n[r])&&!l(t,o)&&y(t,o,m(e,o))};o&&S&&I(u[w],S),(R||o)&&I(u[w],k)},function(t,e,n){"use strict";var r;n(0)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)})},function(t,e,n){"use strict";var r,o;n(0)({target:"Number",stat:!0},{isFinite:n(337)})},function(t,e,n){"use strict";var r,o=n(4).isFinite;t.exports=Number.isFinite||function t(e){return"number"==typeof e&&o(e)}},function(t,e,n){"use strict";var r,o;n(0)({target:"Number",stat:!0},{isInteger:n(149)})},function(t,e,n){"use strict";var r;n(0)({target:"Number",stat:!0},{isNaN:function t(e){return e!=e}})},function(t,e,n){"use strict";var r=n(0),o=n(149),i=Math.abs;r({target:"Number",stat:!0},{isSafeInteger:function t(e){return o(e)&&i(e)<=9007199254740991}})},function(t,e,n){"use strict";var r;n(0)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991})},function(t,e,n){"use strict";var r;n(0)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991})},function(t,e,n){"use strict";var r=n(0),o=n(194);r({target:"Number",stat:!0,forced:Number.parseFloat!==o},{parseFloat:o})},function(t,e,n){"use strict";var r=n(0),o=n(195);r({target:"Number",stat:!0,forced:Number.parseInt!==o},{parseInt:o})},function(t,e,n){"use strict";var r=n(0),o=n(3),i=n(35),a=n(148),u=n(145),c=n(2),s=RangeError,l=String,f=Math.floor,p=o(u),h=o("".slice),d=o(1.1.toFixed),g=function(t,e,n){return 0===e?n:e%2==1?g(t,e-1,n*t):g(t*t,e/2,n)},v=function(t){for(var e=0,n=t;n>=4096;)e+=12,n/=4096;for(;n>=2;)e+=1,n/=2;return e},m=function(t,e,n){for(var r=-1,o=n;++r<6;)o+=e*t[r],t[r]=o%1e7,o=f(o/1e7)},y=function(t,e){for(var n=6,r=0;--n>=0;)r+=t[n],t[n]=f(r/e),r=r%e*1e7},b=function(t){for(var e=6,n="";--e>=0;)if(""!==n||0===e||0!==t[e]){var r=l(t[e]);n=""===n?r:n+p("0",7-r.length)+r}return n},x;r({target:"Number",proto:!0,forced:c((function(){return"0.000"!==d(8e-5,3)||"1"!==d(.9,0)||"1.25"!==d(1.255,2)||"1000000000000000128"!==d(0xde0b6b3a7640080,0)}))||!c((function(){d({})}))},{toFixed:function t(e){var n=a(this),r=i(e),o=[0,0,0,0,0,0],u="",c="0",f,d,x,w;if(r<0||r>20)throw new s("Incorrect fraction digits");if(n!=n)return"NaN";if(n<=-1e21||n>=1e21)return l(n);if(n<0&&(u="-",n=-n),n>1e-21)if(d=(f=v(n*g(2,69,1))-69)<0?n*g(2,-f,1):n/g(2,f,1),d*=4503599627370496,(f=52-f)>0){for(m(o,0,d),x=r;x>=7;)m(o,1e7,0),x-=7;for(m(o,g(10,x,1),0),x=f-1;x>=23;)y(o,1<<23),x-=23;y(o,1<<x),m(o,1,1),y(o,2),c=b(o)}else m(o,0,d),m(o,1<<-f,0),c=b(o)+p("0",r);return c=r>0?u+((w=c.length)<=r?"0."+p("0",r-w)+c:h(c,0,w-r)+"."+h(c,w-r)):u+c}})},function(t,e,n){"use strict";var r=n(0),o=n(3),i=n(2),a=n(148),u=o(1.1.toPrecision),c;r({target:"Number",proto:!0,forced:i((function(){return"1"!==u(1,void 0)}))||!i((function(){u({})}))},{toPrecision:function t(e){return void 0===e?u(a(this)):u(a(this),e)}})},function(t,e,n){"use strict";var r=n(0),o=n(196);r({target:"Object",stat:!0,arity:2,forced:Object.assign!==o},{assign:o})},function(t,e,n){"use strict";var r,o,i;n(0)({target:"Object",stat:!0,sham:!n(6)},{create:n(41)})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(113),a=n(21),u=n(15),c=n(16);o&&r({target:"Object",proto:!0,forced:i},{__defineGetter__:function t(e,n){c.f(u(this),e,{get:a(n),enumerable:!0,configurable:!0})}})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(130).f;r({target:"Object",stat:!0,forced:Object.defineProperties!==i,sham:!o},{defineProperties:i})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(16).f;r({target:"Object",stat:!0,forced:Object.defineProperty!==i,sham:!o},{defineProperty:i})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(113),a=n(21),u=n(15),c=n(16);o&&r({target:"Object",proto:!0,forced:i},{__defineSetter__:function t(e,n){c.f(u(this),e,{set:a(n),enumerable:!0,configurable:!0})}})},function(t,e,n){"use strict";var r=n(0),o=n(197).entries;r({target:"Object",stat:!0},{entries:function t(e){return o(e)}})},function(t,e,n){"use strict";var r=n(0),o=n(77),i=n(2),a=n(7),u=n(66).onFreeze,c=Object.freeze,s;r({target:"Object",stat:!0,forced:i((function(){c(1)})),sham:!o},{freeze:function t(e){return c&&a(e)?c(u(e)):e}})},function(t,e,n){"use strict";var r=n(0),o=n(78),i=n(65);r({target:"Object",stat:!0},{fromEntries:function t(e){var n={};return o(e,(function(t,e){i(n,t,e)}),{AS_ENTRIES:!0}),n}})},function(t,e,n){"use strict";var r=n(0),o=n(2),i=n(28),a=n(24).f,u=n(6),c;r({target:"Object",stat:!0,forced:!u||o((function(){a(1)})),sham:!u},{getOwnPropertyDescriptor:function t(e,n){return a(i(e),n)}})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(127),a=n(28),u=n(24),c=n(65);r({target:"Object",stat:!0,sham:!o},{getOwnPropertyDescriptors:function t(e){for(var n=a(e),r=u.f,o=i(n),s={},l=0,f,p;o.length>l;)void 0!==(p=r(n,f=o[l++]))&&c(s,f,p);return s}})},function(t,e,n){"use strict";var r=n(0),o=n(2),i=n(131).f,a;r({target:"Object",stat:!0,forced:o((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:i})},function(t,e,n){"use strict";var r=n(0),o=n(2),i=n(15),a=n(44),u=n(138),c;r({target:"Object",stat:!0,forced:o((function(){a(1)})),sham:!u},{getPrototypeOf:function t(e){return a(i(e))}})},function(t,e,n){"use strict";var r,o;n(0)({target:"Object",stat:!0},{is:n(198)})},function(t,e,n){"use strict";var r=n(0),o=n(146);r({target:"Object",stat:!0,forced:Object.isExtensible!==o},{isExtensible:o})},function(t,e,n){"use strict";var r=n(0),o=n(2),i=n(7),a=n(34),u=n(147),c=Object.isFrozen,s;r({target:"Object",stat:!0,forced:u||o((function(){c(1)}))},{isFrozen:function t(e){return!i(e)||(!(!u||"ArrayBuffer"!==a(e))||!!c&&c(e))}})},function(t,e,n){"use strict";var r=n(0),o=n(2),i=n(7),a=n(34),u=n(147),c=Object.isSealed,s;r({target:"Object",stat:!0,forced:u||o((function(){c(1)}))},{isSealed:function t(e){return!i(e)||(!(!u||"ArrayBuffer"!==a(e))||!!c&&c(e))}})},function(t,e,n){"use strict";var r=n(0),o=n(15),i=n(87),a,u;r({target:"Object",stat:!0,forced:n(2)((function(){i(1)}))},{keys:function t(e){return i(o(e))}})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(113),a=n(15),u=n(61),c=n(44),s=n(24).f;o&&r({target:"Object",proto:!0,forced:i},{__lookupGetter__:function t(e){var n=a(this),r=u(e),o;do{if(o=s(n,r))return o.get}while(n=c(n))}})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(113),a=n(15),u=n(61),c=n(44),s=n(24).f;o&&r({target:"Object",proto:!0,forced:i},{__lookupSetter__:function t(e){var n=a(this),r=u(e),o;do{if(o=s(n,r))return o.set}while(n=c(n))}})},function(t,e,n){"use strict";var r=n(0),o=n(7),i=n(66).onFreeze,a=n(77),u=n(2),c=Object.preventExtensions,s;r({target:"Object",stat:!0,forced:u((function(){c(1)})),sham:!a},{preventExtensions:function t(e){return c&&o(e)?c(i(e)):e}})},function(t,e,n){"use strict";var r=n(0),o=n(7),i=n(66).onFreeze,a=n(77),u=n(2),c=Object.seal,s;r({target:"Object",stat:!0,forced:u((function(){c(1)})),sham:!a},{seal:function t(e){return c&&o(e)?c(i(e)):e}})},function(t,e,n){"use strict";var r,o;n(0)({target:"Object",stat:!0},{setPrototypeOf:n(57)})},function(t,e,n){"use strict";var r=n(129),o=n(18),i=n(371);r||o(Object.prototype,"toString",i,{unsafe:!0})},function(t,e,n){"use strict";var r=n(129),o=n(48);t.exports=r?{}.toString:function t(){return"[object "+o(this)+"]"}},function(t,e,n){"use strict";var r=n(0),o=n(197).values;r({target:"Object",stat:!0},{values:function t(e){return o(e)}})},function(t,e,n){"use strict";var r=n(0),o=n(194);r({global:!0,forced:parseFloat!==o},{parseFloat:o})},function(t,e,n){"use strict";var r=n(0),o=n(195);r({global:!0,forced:parseInt!==o},{parseInt:o})},function(t,e,n){"use strict";n(376),n(380),n(381),n(382),n(383),n(384)},function(t,e,n){"use strict";var r=n(0),o=n(27),i=n(93),a=n(4),u=n(132),c=n(10),s=n(18),l=n(57),f=n(37),p=n(76),h=n(21),d=n(11),g=n(7),v=n(58),m=n(150),y=n(114).set,b=n(200),x=n(379),w=n(152),k=n(202),S=n(23),E=n(80),O=n(97),A=n(98),T="Promise",C=O.CONSTRUCTOR,P=O.REJECTION_EVENT,R=O.SUBCLASSING,L=S.getterFor(T),j=S.set,I=E&&E.prototype,F=E,D=I,_=a.TypeError,M=a.document,N=a.process,U=A.f,q=U,B=!!(M&&M.createEvent&&a.dispatchEvent),z="unhandledrejection",H="rejectionhandled",V=0,$=1,G=2,W=1,Y=2,K,J,Q,X,Z=function(t){var e;return!(!g(t)||!d(e=t.then))&&e},tt=function(t,e){var n=e.value,r=1===e.state,o=r?t.ok:t.fail,i=t.resolve,a=t.reject,u=t.domain,s,l,f;try{o?(r||(2===e.rejection&&it(e),e.rejection=1),!0===o?s=n:(u&&u.enter(),s=o(n),u&&(u.exit(),f=!0)),s===t.promise?a(new _("Promise-chain cycle")):(l=Z(s))?c(l,s,i,a):i(s)):a(n)}catch(t){u&&!f&&u.exit(),a(t)}},et=function(t,e){t.notified||(t.notified=!0,b((function(){for(var n=t.reactions,r;r=n.get();)tt(r,t);t.notified=!1,e&&!t.rejection&&rt(t)})))},nt=function(t,e,n){var r,o;B?((r=M.createEvent("Event")).promise=e,r.reason=n,r.initEvent(t,!1,!0),a.dispatchEvent(r)):r={promise:e,reason:n},!P&&(o=a["on"+t])?o(r):t===z&&x("Unhandled promise rejection",n)},rt=function(t){c(y,a,(function(){var e=t.facade,n=t.value,r,o;if(ot(t)&&(o=w((function(){i?N.emit("unhandledRejection",n,e):nt(z,e,n)})),t.rejection=i||ot(t)?2:1,o.error))throw o.value}))},ot=function(t){return 1!==t.rejection&&!t.parent},it=function(t){c(y,a,(function(){var e=t.facade;i?N.emit("rejectionHandled",e):nt(H,e,t.value)}))},at=function(t,e,n){return function(r){t(e,r,n)}},ut=function(t,e,n){t.done||(t.done=!0,n&&(t=n),t.value=e,t.state=2,et(t,!0))},ct=function(t,e,n){if(!t.done){t.done=!0,n&&(t=n);try{if(t.facade===e)throw new _("Promise can't be resolved itself");var r=Z(e);r?b((function(){var n={done:!1};try{c(r,e,at(ct,n,t),at(ut,n,t))}catch(e){ut(n,e,t)}})):(t.value=e,t.state=1,et(t,!1))}catch(e){ut({done:!1},e,t)}}};if(C&&(D=(F=function t(e){v(this,D),h(e),c(K,this);var n=L(this);try{e(at(ct,n),at(ut,n))}catch(t){ut(n,t)}}).prototype,(K=function t(e){j(this,{type:T,done:!1,notified:!1,parent:!1,reactions:new k,rejection:!1,state:0,value:null})}).prototype=s(D,"then",(function t(e,n){var r=L(this),o=U(m(this,F));return r.parent=!0,o.ok=!d(e)||e,o.fail=d(n)&&n,o.domain=i?N.domain:void 0,0===r.state?r.reactions.add(o):b((function(){tt(o,r)})),o.promise})),J=function(){var t=new K,e=L(t);this.promise=t,this.resolve=at(ct,e),this.reject=at(ut,e)},A.f=U=function(t){return t===F||t===Q?new J(t):q(t)},!o&&d(E)&&I!==Object.prototype)){X=I.then,R||s(I,"then",(function t(e,n){var r=this;return new F((function(t,e){c(X,r,t,e)})).then(e,n)}),{unsafe:!0});try{delete I.constructor}catch(t){}l&&l(I,D)}r({global:!0,constructor:!0,wrap:!0,forced:C},{Promise:F}),Q=u.Promise,f(F,T,!1,!0),p(T)},function(t,e,n){"use strict";var r=n(45);t.exports=/ipad|iphone|ipod/i.test(r)&&"undefined"!=typeof Pebble},function(t,e,n){"use strict";var r=n(45);t.exports=/web0s(?!.*chrome)/i.test(r)},function(t,e,n){"use strict";t.exports=function(t,e){try{1===arguments.length?console.error(t):console.error(t,e)}catch(t){}}},function(t,e,n){"use strict";var r=n(0),o=n(10),i=n(21),a=n(98),u=n(152),c=n(78),s;r({target:"Promise",stat:!0,forced:n(203)},{all:function t(e){var n=this,r=a.f(n),s=r.resolve,l=r.reject,f=u((function(){var t=i(n.resolve),r=[],a=0,u=1;c(e,(function(e){var i=a++,c=!1;u++,o(t,n,e).then((function(t){c||(c=!0,r[i]=t,--u||s(r))}),l)})),--u||s(r)}));return f.error&&l(f.value),r.promise}})},function(t,e,n){"use strict";var r=n(0),o=n(27),i=n(97).CONSTRUCTOR,a=n(80),u=n(26),c=n(11),s=n(18),l=a&&a.prototype;if(r({target:"Promise",proto:!0,forced:i,real:!0},{catch:function(t){return this.then(void 0,t)}}),!o&&c(a)){var f=u("Promise").prototype.catch;l.catch!==f&&s(l,"catch",f,{unsafe:!0})}},function(t,e,n){"use strict";var r=n(0),o=n(10),i=n(21),a=n(98),u=n(152),c=n(78),s;r({target:"Promise",stat:!0,forced:n(203)},{race:function t(e){var n=this,r=a.f(n),s=r.reject,l=u((function(){var t=i(n.resolve);c(e,(function(e){o(t,n,e).then(r.resolve,s)}))}));return l.error&&s(l.value),r.promise}})},function(t,e,n){"use strict";var r=n(0),o=n(98),i;r({target:"Promise",stat:!0,forced:n(97).CONSTRUCTOR},{reject:function t(e){var n=o.f(this),r;return(0,n.reject)(e),n.promise}})},function(t,e,n){"use strict";var r=n(0),o=n(26),i=n(27),a=n(80),u=n(97).CONSTRUCTOR,c=n(204),s=o("Promise"),l=i&&!u;r({target:"Promise",stat:!0,forced:i||u},{resolve:function t(e){return c(l&&this===s?a:this,e)}})},function(t,e,n){"use strict";var r=n(0),o=n(27),i=n(80),a=n(2),u=n(26),c=n(11),s=n(150),l=n(204),f=n(18),p=i&&i.prototype,h;if(r({target:"Promise",proto:!0,real:!0,forced:!!i&&a((function(){p.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var e=s(this,u("Promise")),n=c(t);return this.then(n?function(n){return l(e,t()).then((function(){return n}))}:t,n?function(n){return l(e,t()).then((function(){throw n}))}:t)}}),!o&&c(i)){var d=u("Promise").prototype.finally;p.finally!==d&&f(p,"finally",d,{unsafe:!0})}},function(t,e,n){"use strict";var r=n(0),o=n(49),i=n(21),a=n(8),u,c;r({target:"Reflect",stat:!0,forced:!n(2)((function(){Reflect.apply((function(){}))}))},{apply:function t(e,n,r){return o(i(e),n,a(r))}})},function(t,e,n){"use strict";var r=n(0),o=n(26),i=n(49),a=n(191),u=n(151),c=n(8),s=n(7),l=n(41),f=n(2),p=o("Reflect","construct"),h=Object.prototype,d=[].push,g=f((function(){function t(){}return!(p((function(){}),[],t)instanceof t)})),v=!f((function(){p((function(){}))})),m=g||v;r({target:"Reflect",stat:!0,forced:m,sham:m},{construct:function t(e,n){u(e),c(n);var r=arguments.length<3?e:u(arguments[2]);if(v&&!g)return p(e,n,r);if(e===r){switch(n.length){case 0:return new e;case 1:return new e(n[0]);case 2:return new e(n[0],n[1]);case 3:return new e(n[0],n[1],n[2]);case 4:return new e(n[0],n[1],n[2],n[3])}var o=[null];return i(d,o,n),new(i(a,e,o))}var f=r.prototype,m=l(s(f)?f:h),y=i(e,m,n);return s(y)?y:m}})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(8),a=n(61),u=n(16),c,s;r({target:"Reflect",stat:!0,forced:n(2)((function(){Reflect.defineProperty(u.f({},1,{value:1}),1,{value:2})})),sham:!o},{defineProperty:function t(e,n,r){i(e);var o=a(n);i(r);try{return u.f(e,o,r),!0}catch(t){return!1}}})},function(t,e,n){"use strict";var r=n(0),o=n(8),i=n(24).f;r({target:"Reflect",stat:!0},{deleteProperty:function t(e,n){var r=i(o(e),n);return!(r&&!r.configurable)&&delete e[n]}})},function(t,e,n){"use strict";var r=n(0),o=n(10),i=n(7),a=n(8),u=n(205),c=n(24),s=n(44);function l(t,e){var n=arguments.length<3?t:arguments[2],r,f;return a(t)===n?t[e]:(r=c.f(t,e))?u(r)?r.value:void 0===r.get?void 0:o(r.get,n):i(f=s(t))?l(f,e,n):void 0}r({target:"Reflect",stat:!0},{get:l})},function(t,e,n){"use strict";var r=n(0),o=n(6),i=n(8),a=n(24);r({target:"Reflect",stat:!0,sham:!o},{getOwnPropertyDescriptor:function t(e,n){return a.f(i(e),n)}})},function(t,e,n){"use strict";var r=n(0),o=n(8),i=n(44),a;r({target:"Reflect",stat:!0,sham:!n(138)},{getPrototypeOf:function t(e){return i(o(e))}})},function(t,e,n){"use strict";var r;n(0)({target:"Reflect",stat:!0},{has:function t(e,n){return n in e}})},function(t,e,n){"use strict";var r=n(0),o=n(8),i=n(146);r({target:"Reflect",stat:!0},{isExtensible:function t(e){return o(e),i(e)}})},function(t,e,n){"use strict";var r,o;n(0)({target:"Reflect",stat:!0},{ownKeys:n(127)})},function(t,e,n){"use strict";var r=n(0),o=n(26),i=n(8),a;r({target:"Reflect",stat:!0,sham:!n(77)},{preventExtensions:function t(e){i(e);try{var n=o("Object","preventExtensions");return n&&n(e),!0}catch(t){return!1}}})},function(t,e,n){"use strict";var r=n(0),o=n(10),i=n(8),a=n(7),u=n(205),c=n(2),s=n(16),l=n(24),f=n(44),p=n(52),h;function d(t,e,n){var r=arguments.length<4?t:arguments[3],c=l.f(i(t),e),h,g,v;if(!c){if(a(g=f(t)))return d(g,e,n,r);c=p(0)}if(u(c)){if(!1===c.writable||!a(r))return!1;if(h=l.f(r,e)){if(h.get||h.set||!1===h.writable)return!1;h.value=n,s.f(r,e,h)}else s.f(r,e,p(0,n))}else{if(void 0===(v=c.set))return!1;o(v,r,n)}return!0}r({target:"Reflect",stat:!0,forced:c((function(){var t=function(){},e=s.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)}))},{set:d})},function(t,e,n){"use strict";var r=n(0),o=n(8),i=n(185),a=n(57);a&&r({target:"Reflect",stat:!0},{setPrototypeOf:function t(e,n){o(e),i(n);try{return a(e,n),!0}catch(t){return!1}}})},function(t,e,n){"use strict";var r=n(6),o=n(4),i=n(3),a=n(86),u=n(95),c=n(46),s=n(41),l=n(64).f,f=n(40),p=n(206),h=n(14),d=n(115),g=n(154),v=n(400),m=n(18),y=n(2),b=n(13),x=n(23).enforce,w=n(76),k=n(9),S=n(208),E=n(209),O=k("match"),A=o.RegExp,T=A.prototype,C=o.SyntaxError,P=i(T.exec),R=i("".charAt),L=i("".replace),j=i("".indexOf),I=i("".slice),F=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,D=/a/g,_=/a/g,M=new A(D)!==D,N=g.MISSED_STICKY,U=g.UNSUPPORTED_Y,q=r&&(!M||N||S||E||y((function(){return _[O]=!1,A(D)!==D||A(_)===_||"/a/i"!==String(A(D,"i"))}))),B=function(t){for(var e=t.length,n=0,r="",o=!1,i;n<=e;n++)"\\"!==(i=R(t,n))?o||"."!==i?("["===i?o=!0:"]"===i&&(o=!1),r+=i):r+="[\\s\\S]":r+=i+R(t,++n);return r},z=function(t){for(var e=t.length,n=0,r="",o=[],i=s(null),a=!1,u=!1,c=0,l="",f;n<=e;n++){if("\\"===(f=R(t,n)))f+=R(t,++n);else if("]"===f)a=!1;else if(!a)switch(!0){case"["===f:a=!0;break;case"("===f:if(r+=f,"?:"===I(t,n+1,n+3))continue;P(F,I(t,n+1))&&(n+=2,u=!0),c++;continue;case">"===f&&u:if(""===l||b(i,l))throw new C("Invalid capture group name");i[l]=!0,o[o.length]=[l,c],u=!1,l="";continue}u?l+=f:r+=f}return[r,o]};if(a("RegExp",q)){for(var H=function t(e,n){var r=f(T,this),o=p(e),i=void 0===n,a=[],s=e,l,g,v,m,y,b;if(!r&&o&&i&&e.constructor===H)return e;if((o||f(T,e))&&(e=e.source,i&&(n=d(s))),e=void 0===e?"":h(e),n=void 0===n?"":h(n),s=e,S&&"dotAll"in D&&(g=!!n&&j(n,"s")>-1)&&(n=L(n,/s/g,"")),l=n,N&&"sticky"in D&&(v=!!n&&j(n,"y")>-1)&&U&&(n=L(n,/y/g,"")),E&&(e=(m=z(e))[0],a=m[1]),y=u(A(e,n),r?this:T,H),(g||v||a.length)&&(b=x(y),g&&(b.dotAll=!0,b.raw=H(B(e),l)),v&&(b.sticky=!0),a.length&&(b.groups=a)),e!==s)try{c(y,"source",""===s?"(?:)":s)}catch(t){}return y},V=l(A),$=0;V.length>$;)v(H,A,V[$++]);T.constructor=H,H.prototype=T,m(o,"RegExp",H,{constructor:!0})}w("RegExp")},function(t,e,n){"use strict";var r=n(16).f;t.exports=function(t,e,n){n in t||r(t,n,{configurable:!0,get:function(){return e[n]},set:function(t){e[n]=t}})}},function(t,e,n){"use strict";var r=n(6),o=n(43),i=n(207),a=n(153);r&&!i.correct&&(o(RegExp.prototype,"flags",{configurable:!0,get:a}),i.correct=!0)},function(t,e,n){"use strict";var r=n(74).PROPER,o=n(18),i=n(8),a=n(14),u=n(2),c=n(115),s="toString",l=RegExp.prototype,f=l[s],p=u((function(){return"/a/b"!==f.call({source:"a",flags:"b"})})),h=r&&f.name!==s;(p||h)&&o(l,s,(function t(){var e=i(this),n,r;return"/"+a(e.source)+"/"+a(c(e))}),{unsafe:!0})},function(t,e,n){"use strict";n(404)},function(t,e,n){"use strict";var r,o;n(110)("Set",(function(t){return function e(){return t(this,arguments.length?arguments[0]:void 0)}}),n(192))},function(t,e,n){"use strict";var r=n(0),o=n(116).codeAt;r({target:"String",proto:!0},{codePointAt:function t(e){return o(this,e)}})},function(t,e,n){"use strict";var r=n(0),o=n(75),i=n(24).f,a=n(36),u=n(14),c=n(156),s=n(25),l=n(157),f=n(27),p=o("".slice),h=Math.min,d=l("endsWith"),g,v;r({target:"String",proto:!0,forced:!!(f||d||(v=i(String.prototype,"endsWith"),!v||v.writable))&&!d},{endsWith:function t(e){var n=u(s(this));c(e);var r=arguments.length>1?arguments[1]:void 0,o=n.length,i=void 0===r?o:h(a(r),o),l=u(e);return p(n,i-l.length,i)===l}})},function(t,e,n){"use strict";var r=n(0),o=n(3),i=n(156),a=n(25),u=n(14),c=n(157),s=o("".indexOf);r({target:"String",proto:!0,forced:!c("includes")},{includes:function t(e){return!!~s(u(a(this)),u(i(e)),arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(10),o=n(3),i=n(117),a=n(8),u=n(7),c=n(36),s=n(14),l=n(25),f=n(62),p=n(158),h=n(115),d=n(118),g=o("".indexOf);i("match",(function(t,e,n){return[function e(n){var o=l(this),i=u(n)?f(n,t):void 0;return i?r(i,n,o):new RegExp(n)[t](s(o))},function(t){var r=a(this),o=s(t),i=n(e,r,o);if(i.done)return i.value;var u=s(h(r));if(-1===g(u,"g"))return d(r,o);var l=-1!==g(u,"u");r.lastIndex=0;for(var f=[],v=0,m;null!==(m=d(r,o));){var y=s(m[0]);f[v]=y,""===y&&(r.lastIndex=p(o,c(r.lastIndex),l)),v++}return 0===v?null:f}]}))},function(t,e,n){"use strict";var r=n(0),o=n(144).end,i;r({target:"String",proto:!0,forced:n(213)},{padEnd:function t(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0),o=n(144).start,i;r({target:"String",proto:!0,forced:n(213)},{padStart:function t(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){"use strict";var r=n(0),o=n(3),i=n(28),a=n(15),u=n(14),c=n(19),s=o([].push),l=o([].join);r({target:"String",stat:!0},{raw:function t(e){var n=i(a(e).raw),r=c(n);if(!r)return"";for(var o=arguments.length,f=[],p=0;;){if(s(f,u(n[p++])),p===r)return l(f,"");p<o&&s(f,u(arguments[p]))}}})},function(t,e,n){"use strict";var r,o;n(0)({target:"String",proto:!0},{repeat:n(145)})},function(t,e,n){"use strict";var r=n(49),o=n(10),i=n(3),a=n(117),u=n(2),c=n(8),s=n(11),l=n(7),f=n(35),p=n(36),h=n(14),d=n(25),g=n(158),v=n(62),m=n(414),y=n(115),b=n(118),x,w=n(9)("replace"),k=Math.max,S=Math.min,E=i([].concat),O=i([].push),A=i("".indexOf),T=i("".slice),C=function(t){return void 0===t?t:String(t)},P="$0"==="a".replace(/./,"$0"),R=!!/./[w]&&""===/./[w]("a","$0"),L;a("replace",(function(t,e,n){var i=R?"$":"$0";return[function t(n,r){var i=d(this),a=l(n)?v(n,w):void 0;return a?o(a,n,i,r):o(e,h(i),n,r)},function(t,o){var a=c(this),u=h(t);if("string"==typeof o&&-1===A(o,i)&&-1===A(o,"$<")){var l=n(e,a,u,o);if(l.done)return l.value}var d=s(o);d||(o=h(o));var v=h(y(a)),x=-1!==A(v,"g"),w;x&&(w=-1!==A(v,"u"),a.lastIndex=0);for(var P=[],R;null!==(R=b(a,u))&&(O(P,R),x);){var L;""===h(R[0])&&(a.lastIndex=g(u,p(a.lastIndex),w))}for(var j="",I=0,F=0;F<P.length;F++){for(var D=h((R=P[F])[0]),_=k(S(f(R.index),u.length),0),M=[],N,U=1;U<R.length;U++)O(M,C(R[U]));var q=R.groups;if(d){var B=E([D],M,_,u);void 0!==q&&O(B,q),N=h(r(o,void 0,B))}else N=m(D,u,_,M,q,o);_>=I&&(j+=T(u,I,_)+N,I=_+D.length)}return j+T(u,I)}]}),!!u((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!P||R)},function(t,e,n){"use strict";var r=n(3),o=n(15),i=Math.floor,a=r("".charAt),u=r("".replace),c=r("".slice),s=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,l=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,e,n,r,f,p){var h=n+t.length,d=r.length,g=l;return void 0!==f&&(f=o(f),g=s),u(p,g,(function(o,u){var s;switch(a(u,0)){case"$":return"$";case"&":return t;case"`":return c(e,0,n);case"'":return c(e,h);case"<":s=f[c(u,1,-1)];break;default:var l=+u;if(0===l)return o;if(l>d){var p=i(l/10);return 0===p?o:p<=d?void 0===r[p-1]?a(u,1):r[p-1]+a(u,1):o}s=r[l-1]}return void 0===s?"":s}))}},function(t,e,n){"use strict";var r=n(10),o=n(117),i=n(8),a=n(7),u=n(25),c=n(198),s=n(14),l=n(62),f=n(118);o("search",(function(t,e,n){return[function e(n){var o=u(this),i=a(n)?l(n,t):void 0;return i?r(i,n,o):new RegExp(n)[t](s(o))},function(t){var r=i(this),o=s(t),a=n(e,r,o);if(a.done)return a.value;var u=r.lastIndex;c(u,0)||(r.lastIndex=0);var l=f(r,o);return c(r.lastIndex,u)||(r.lastIndex=u),null===l?-1:l.index}]}))},function(t,e,n){"use strict";var r=n(10),o=n(3),i=n(117),a=n(8),u=n(7),c=n(25),s=n(150),l=n(158),f=n(36),p=n(14),h=n(62),d=n(118),g=n(154),v=n(2),m=g.UNSUPPORTED_Y,y=4294967295,b=Math.min,x=o([].push),w=o("".slice),k=!v((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]})),S="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;i("split",(function(t,e,n){var o="0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:r(e,this,t,n)}:e;return[function e(n,i){var a=c(this),s=u(n)?h(n,t):void 0;return s?r(s,n,a,i):r(o,p(a),n,i)},function(t,r){var i=a(this),u=p(t);if(!S){var c=n(o,i,u,r,o!==e);if(c.done)return c.value}var h=s(i,RegExp),g=i.unicode,v=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(m?"g":"y"),y=new h(m?"^(?:"+i.source+")":i,v),k=void 0===r?4294967295:r>>>0;if(0===k)return[];if(0===u.length)return null===d(y,u)?[u]:[];for(var E=0,O=0,A=[];O<u.length;){y.lastIndex=m?0:O;var T=d(y,m?w(u,O):u),C;if(null===T||(C=b(f(y.lastIndex+(m?O:0)),u.length))===E)O=l(u,O,g);else{if(x(A,w(u,E,O)),A.length===k)return A;for(var P=1;P<=T.length-1;P++)if(x(A,T[P]),A.length===k)return A;O=E=C}}return x(A,w(u,E)),A}]}),S||!k,m)},function(t,e,n){"use strict";var r=n(0),o=n(75),i=n(24).f,a=n(36),u=n(14),c=n(156),s=n(25),l=n(157),f=n(27),p=o("".slice),h=Math.min,d=l("startsWith"),g,v;r({target:"String",proto:!0,forced:!!(f||d||(v=i(String.prototype,"startsWith"),!v||v.writable))&&!d},{startsWith:function t(e){var n=u(s(this));c(e);var r=a(h(arguments.length>1?arguments[1]:void 0,n.length)),o=u(e);return p(n,r,r+o.length)===o}})},function(t,e,n){"use strict";var r=n(0),o=n(79).trim,i;r({target:"String",proto:!0,forced:n(159)("trim")},{trim:function t(){return o(this)}})},function(t,e,n){"use strict";n(420);var r=n(0),o=n(214);r({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==o},{trimEnd:o})},function(t,e,n){"use strict";var r=n(0),o=n(214);r({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==o},{trimRight:o})},function(t,e,n){"use strict";n(422);var r=n(0),o=n(215);r({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==o},{trimStart:o})},function(t,e,n){"use strict";var r=n(0),o=n(215);r({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==o},{trimLeft:o})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("anchor")},{anchor:function t(e){return o(this,"a","name",e)}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("big")},{big:function t(){return o(this,"big","","")}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("blink")},{blink:function t(){return o(this,"blink","","")}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("bold")},{bold:function t(){return o(this,"b","","")}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("fixed")},{fixed:function t(){return o(this,"tt","","")}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("fontcolor")},{fontcolor:function t(e){return o(this,"font","color",e)}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("fontsize")},{fontsize:function t(e){return o(this,"font","size",e)}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("italics")},{italics:function t(){return o(this,"i","","")}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("link")},{link:function t(e){return o(this,"a","href",e)}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("small")},{small:function t(){return o(this,"small","","")}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("strike")},{strike:function t(){return o(this,"strike","","")}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("sub")},{sub:function t(){return o(this,"sub","","")}})},function(t,e,n){"use strict";var r=n(0),o=n(31),i;r({target:"String",proto:!0,forced:n(32)("sup")},{sup:function t(){return o(this,"sup","","")}})},function(t,e,n){"use strict";var r;n(51)("Float32",(function(t){return function e(n,r,o){return t(this,n,r,o)}}))},function(t,e,n){"use strict";var r=n(35),o=RangeError;t.exports=function(t){var e=r(t);if(e<0)throw new o("The argument can't be less than 0");return e}},function(t,e,n){"use strict";var r=Math.round;t.exports=function(t){var e=r(t);return e<0?0:e>255?255:255&e}},function(t,e,n){"use strict";var r=n(48);t.exports=function(t){var e=r(t);return"BigInt64Array"===e||"BigUint64Array"===e}},function(t,e,n){"use strict";var r;n(51)("Float64",(function(t){return function e(n,r,o){return t(this,n,r,o)}}))},function(t,e,n){"use strict";var r;n(51)("Int8",(function(t){return function e(n,r,o){return t(this,n,r,o)}}))},function(t,e,n){"use strict";var r;n(51)("Int16",(function(t){return function e(n,r,o){return t(this,n,r,o)}}))},function(t,e,n){"use strict";var r;n(51)("Int32",(function(t){return function e(n,r,o){return t(this,n,r,o)}}))},function(t,e,n){"use strict";var r;n(51)("Uint8",(function(t){return function e(n,r,o){return t(this,n,r,o)}}))},function(t,e,n){"use strict";var r;n(51)("Uint8",(function(t){return function e(n,r,o){return t(this,n,r,o)}}),!0)},function(t,e,n){"use strict";var r;n(51)("Uint16",(function(t){return function e(n,r,o){return t(this,n,r,o)}}))},function(t,e,n){"use strict";var r;n(51)("Uint32",(function(t){return function e(n,r,o){return t(this,n,r,o)}}))},function(t,e,n){"use strict";var r=n(3),o=n(12),i,a=r(n(178)),u=o.aTypedArray,c;(0,o.exportTypedArrayMethod)("copyWithin",(function t(e,n){return a(u(this),e,n,arguments.length>2?arguments[2]:void 0)}))},function(t,e,n){"use strict";var r=n(12),o=n(22).every,i=r.aTypedArray,a;(0,r.exportTypedArrayMethod)("every",(function t(e){return o(i(this),e,arguments.length>1?arguments[1]:void 0)}))},function(t,e,n){"use strict";var r=n(12),o=n(135),i=n(218),a=n(48),u=n(10),c=n(3),s=n(2),l=r.aTypedArray,f=r.exportTypedArrayMethod,p=c("".slice),h;f("fill",(function t(e){var n=arguments.length;l(this);var r="Big"===p(a(this),0,3)?i(e):+e;return u(o,this,r,n>1?arguments[1]:void 0,n>2?arguments[2]:void 0)}),s((function(){var t=0;return new Int8Array(2).fill({valueOf:function(){return t++}}),1!==t})))},function(t,e,n){"use strict";var r=n(12),o=n(22).filter,i=n(452),a=r.aTypedArray,u;(0,r.exportTypedArrayMethod)("filter",(function t(e){var n=o(a(this),e,arguments.length>1?arguments[1]:void 0);return i(this,n)}))},function(t,e,n){"use strict";var r=n(219),o=n(12).getTypedArrayConstructor;t.exports=function(t,e){return r(o(t),e)}},function(t,e,n){"use strict";var r=n(12),o=n(22).find,i=r.aTypedArray,a;(0,r.exportTypedArrayMethod)("find",(function t(e){return o(i(this),e,arguments.length>1?arguments[1]:void 0)}))},function(t,e,n){"use strict";var r=n(12),o=n(22).findIndex,i=r.aTypedArray,a;(0,r.exportTypedArrayMethod)("findIndex",(function t(e){return o(i(this),e,arguments.length>1?arguments[1]:void 0)}))},function(t,e,n){"use strict";var r=n(12),o=n(22).forEach,i=r.aTypedArray,a;(0,r.exportTypedArrayMethod)("forEach",(function t(e){o(i(this),e,arguments.length>1?arguments[1]:void 0)}))},function(t,e,n){"use strict";var r=n(160),o,i;(0,n(12).exportTypedArrayStaticMethod)("from",n(217),r)},function(t,e,n){"use strict";var r=n(12),o=n(85).includes,i=r.aTypedArray,a;(0,r.exportTypedArrayMethod)("includes",(function t(e){return o(i(this),e,arguments.length>1?arguments[1]:void 0)}))},function(t,e,n){"use strict";var r=n(12),o=n(85).indexOf,i=r.aTypedArray,a;(0,r.exportTypedArrayMethod)("indexOf",(function t(e){return o(i(this),e,arguments.length>1?arguments[1]:void 0)}))},function(t,e,n){"use strict";var r=n(4),o=n(2),i=n(3),a=n(12),u=n(106),c,s=n(9)("iterator"),l=r.Uint8Array,f=i(u.values),p=i(u.keys),h=i(u.entries),d=a.aTypedArray,g=a.exportTypedArrayMethod,v=l&&l.prototype,m=!o((function(){v[s].call([1])})),y=!!v&&v.values&&v[s]===v.values&&"values"===v.values.name,b=function t(){return f(d(this))};g("entries",(function t(){return h(d(this))}),m),g("keys",(function t(){return p(d(this))}),m),g("values",b,m||!y,{name:"values"}),g(s,b,m||!y,{name:"values"})},function(t,e,n){"use strict";var r=n(12),o=n(3),i=r.aTypedArray,a=r.exportTypedArrayMethod,u=o([].join);a("join",(function t(e){return u(i(this),e)}))},function(t,e,n){"use strict";var r=n(12),o=n(49),i=n(186),a=r.aTypedArray,u;(0,r.exportTypedArrayMethod)("lastIndexOf",(function t(e){var n=arguments.length;return o(i,a(this),n>1?[e,arguments[1]]:[e])}))},function(t,e,n){"use strict";var r=n(12),o=n(22).map,i=r.aTypedArray,a=r.getTypedArrayConstructor,u;(0,r.exportTypedArrayMethod)("map",(function t(e){return o(i(this),e,arguments.length>1?arguments[1]:void 0,(function(t,e){return new(a(t))(e)}))}))},function(t,e,n){"use strict";var r=n(12),o=n(160),i=r.aTypedArrayConstructor,a;(0,r.exportTypedArrayStaticMethod)("of",(function t(){for(var e=0,n=arguments.length,r=new(i(this))(n);n>e;)r[e]=arguments[e++];return r}),o)},function(t,e,n){"use strict";var r=n(12),o=n(108).left,i=r.aTypedArray,a;(0,r.exportTypedArrayMethod)("reduce",(function t(e){var n=arguments.length;return o(i(this),e,n,n>1?arguments[1]:void 0)}))},function(t,e,n){"use strict";var r=n(12),o=n(108).right,i=r.aTypedArray,a;(0,r.exportTypedArrayMethod)("reduceRight",(function t(e){var n=arguments.length;return o(i(this),e,n,n>1?arguments[1]:void 0)}))},function(t,e,n){"use strict";var r=n(12),o=r.aTypedArray,i=r.exportTypedArrayMethod,a=Math.floor;i("reverse",(function t(){for(var e=this,n=o(this).length,r=a(n/2),i=0,u;i<r;)u=this[i],this[i++]=this[--n],this[n]=u;return this}))},function(t,e,n){"use strict";var r=n(4),o=n(10),i=n(12),a=n(19),u=n(216),c=n(15),s=n(2),l=r.RangeError,f=r.Int8Array,p=f&&f.prototype,h=p&&p.set,d=i.aTypedArray,g=i.exportTypedArrayMethod,v=!s((function(){var t=new Uint8ClampedArray(2);return o(h,t,{length:1,0:3},1),3!==t[1]})),m=v&&i.NATIVE_ARRAY_BUFFER_VIEWS&&s((function(){var t=new f(2);return t.set(1),t.set("2",1),0!==t[0]||2!==t[1]}));g("set",(function t(e){d(this);var n=u(arguments.length>1?arguments[1]:void 0,1),r=c(e);if(v)return o(h,this,r,n);var i=this.length,s=a(r),f=0;if(s+n>i)throw new l("Wrong length");for(;f<s;)this[n+f]=r[f++]}),!v||m)},function(t,e,n){"use strict";var r=n(12),o=n(2),i=n(42),a=r.aTypedArray,u=r.getTypedArrayConstructor,c,s;(0,r.exportTypedArrayMethod)("slice",(function t(e,n){for(var r=i(a(this),e,n),o=u(this),c=0,s=r.length,l=new o(s);s>c;)l[c]=r[c++];return l}),o((function(){new Int8Array(1).slice()})))},function(t,e,n){"use strict";var r=n(12),o=n(22).some,i=r.aTypedArray,a;(0,r.exportTypedArrayMethod)("some",(function t(e){return o(i(this),e,arguments.length>1?arguments[1]:void 0)}))},function(t,e,n){"use strict";var r=n(4),o=n(75),i=n(2),a=n(21),u=n(140),c=n(12),s=n(187),l=n(188),f=n(53),p=n(141),h=c.aTypedArray,d=c.exportTypedArrayMethod,g=r.Uint16Array,v=g&&o(g.prototype.sort),m=!(!v||i((function(){v(new g(2),null)}))&&i((function(){v(new g(2),{})}))),y=!!v&&!i((function(){if(f)return f<74;if(s)return s<67;if(l)return!0;if(p)return p<602;var t=new g(516),e=Array(516),n,r;for(n=0;n<516;n++)r=n%4,t[n]=515-n,e[n]=n-2*r+3;for(v(t,(function(t,e){return(t/4|0)-(e/4|0)})),n=0;n<516;n++)if(t[n]!==e[n])return!0})),b=function(t){return function(e,n){return void 0!==t?+t(e,n)||0:n!=n?-1:e!=e?1:0===e&&0===n?1/e>0&&1/n<0?1:-1:e>n}};d("sort",(function t(e){return void 0!==e&&a(e),y?v(this,e):u(h(this),b(e))}),!y||m)},function(t,e,n){"use strict";var r=n(12),o=n(36),i=n(54),a=r.aTypedArray,u=r.getTypedArrayConstructor,c;(0,r.exportTypedArrayMethod)("subarray",(function t(e,n){var r=a(this),c=r.length,s=i(e,c),l;return new(u(r))(r.buffer,r.byteOffset+s*r.BYTES_PER_ELEMENT,o((void 0===n?c:i(n,c))-s))}))},function(t,e,n){"use strict";var r=n(4),o=n(49),i=n(12),a=n(2),u=n(42),c=r.Int8Array,s=i.aTypedArray,l=i.exportTypedArrayMethod,f=[].toLocaleString,p=!!c&&a((function(){f.call(new c(1))})),h;l("toLocaleString",(function t(){return o(f,p?u(s(this)):s(this),u(arguments))}),a((function(){return[1,2].toLocaleString()!==new c([1,2]).toLocaleString()}))||!a((function(){c.prototype.toLocaleString.call([1,2])})))},function(t,e,n){"use strict";var r=n(12).exportTypedArrayMethod,o=n(2),i=n(4),a=n(3),u=i.Uint8Array,c=u&&u.prototype||{},s=[].toString,l=a([].join);o((function(){s.call({})}))&&(s=function t(){return l(this)});var f=c.toString!==s;r("toString",s,f)},function(t,e,n){"use strict";n(475)},function(t,e,n){"use strict";var r=n(77),o=n(4),i=n(3),a=n(94),u=n(66),c=n(110),s=n(220),l=n(7),f=n(23).enforce,p=n(2),h=n(171),d=Object,g=Array.isArray,v=d.isExtensible,m=d.isFrozen,y=d.isSealed,b=d.freeze,x=d.seal,w=!o.ActiveXObject&&"ActiveXObject"in o,k,S=function(t){return function e(){return t(this,arguments.length?arguments[0]:void 0)}},E=c("WeakMap",S,s),O=E.prototype,A=i(O.set),T=function(){return r&&p((function(){var t=b([]);return A(new E,t,1),!m(t)}))};if(h)if(w){k=s.getConstructor(S,"WeakMap",!0),u.enable();var C=i(O.delete),P=i(O.has),R=i(O.get);a(O,{delete:function(t){if(l(t)&&!v(t)){var e=f(this);return e.frozen||(e.frozen=new k),C(this,t)||e.frozen.delete(t)}return C(this,t)},has:function t(e){if(l(e)&&!v(e)){var n=f(this);return n.frozen||(n.frozen=new k),P(this,e)||n.frozen.has(e)}return P(this,e)},get:function t(e){if(l(e)&&!v(e)){var n=f(this);return n.frozen||(n.frozen=new k),P(this,e)?R(this,e):n.frozen.get(e)}return R(this,e)},set:function t(e,n){if(l(e)&&!v(e)){var r=f(this);r.frozen||(r.frozen=new k),P(this,e)?A(this,e,n):r.frozen.set(e,n)}else A(this,e,n);return this}})}else T()&&a(O,{set:function t(e,n){var r;return g(e)&&(m(e)?r=b:y(e)&&(r=x)),A(this,e,n),r&&r(e),this}})},function(t,e,n){"use strict";n(477)},function(t,e,n){"use strict";var r,o;n(110)("WeakSet",(function(t){return function e(){return t(this,arguments.length?arguments[0]:void 0)}}),n(220))},function(t,e,n){"use strict";var r=n(4),o=n(221),i=n(222),a=n(180),u=n(46),c=function(t){if(t&&t.forEach!==a)try{u(t,"forEach",a)}catch(e){t.forEach=a}};for(var s in o)o[s]&&c(r[s]&&r[s].prototype);c(i)},function(t,e,n){"use strict";var r=n(4),o=n(221),i=n(222),a=n(106),u=n(46),c=n(37),s,l=n(9)("iterator"),f=a.values,p=function(t,e){if(t){if(t[l]!==f)try{u(t,l,f)}catch(e){t[l]=f}if(c(t,e,!0),o[e])for(var n in a)if(t[n]!==a[n])try{u(t,n,a[n])}catch(e){t[n]=a[n]}}};for(var h in o)p(r[h]&&r[h].prototype,h);p(i,"DOMTokenList")},function(t,e,n){"use strict";n(481),n(482)},function(t,e,n){"use strict";var r=n(0),o=n(4),i=n(114).clear;r({global:!0,bind:!0,enumerable:!0,forced:o.clearImmediate!==i},{clearImmediate:i})},function(t,e,n){"use strict";var r=n(0),o=n(4),i=n(114).set,a=n(161),u=o.setImmediate?a(i,!1):i;r({global:!0,bind:!0,enumerable:!0,forced:o.setImmediate!==u},{setImmediate:u})},function(t,e,n){"use strict";var r=n(0),o=n(4),i=n(200),a=n(21),u=n(96),c=n(2),s=n(6),l;r({global:!0,enumerable:!0,dontCallGetSet:!0,forced:c((function(){return s&&1!==Object.getOwnPropertyDescriptor(o,"queueMicrotask").value.length}))},{queueMicrotask:function t(e){u(arguments.length,1),i(a(e))}})},function(t,e,n){"use strict";n(485),n(486)},function(t,e,n){"use strict";var r=n(0),o=n(4),i,a=n(161)(o.setInterval,!0);r({global:!0,bind:!0,forced:o.setInterval!==a},{setInterval:a})},function(t,e,n){"use strict";var r=n(0),o=n(4),i,a=n(161)(o.setTimeout,!0);r({global:!0,bind:!0,forced:o.setTimeout!==a},{setTimeout:a})},function(t,e,n){"use strict";n(488)},function(t,e,n){"use strict";n(212);var r=n(0),o=n(6),i=n(223),a=n(4),u=n(47),c=n(3),s=n(18),l=n(43),f=n(58),p=n(13),h=n(196),d=n(181),g=n(42),v=n(116).codeAt,m=n(489),y=n(14),b=n(37),x=n(96),w=n(224),k=n(23),S=k.set,E=k.getterFor("URL"),O=w.URLSearchParams,A=w.getState,T=a.URL,C=a.TypeError,P=a.parseInt,R=Math.floor,L=Math.pow,j=c("".charAt),I=c(/./.exec),F=c([].join),D=c(1.1.toString),_=c([].pop),M=c([].push),N=c("".replace),U=c([].shift),q=c("".split),B=c("".slice),z=c("".toLowerCase),H=c([].unshift),V="Invalid authority",$="Invalid scheme",G="Invalid host",W="Invalid port",Y=/[a-z]/i,K=/[\d+-.a-z]/i,J=/\d/,Q=/^0x/i,X=/^[0-7]+$/,Z=/^\d+$/,tt=/^[\da-f]+$/i,et=/[\0\t\n\r #%/:<>?@[\\\]^|]/,nt=/[\0\t\n\r #/:<>?@[\\\]^|]/,rt=/^[\u0000-\u0020]+/,ot=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,it=/[\t\n\r]/g,at,ut=function(t){var e=q(t,"."),n,r,o,i,a,u,c;if(e.length&&""===e[e.length-1]&&e.length--,(n=e.length)>4)return t;for(r=[],o=0;o<n;o++){if(""===(i=e[o]))return t;if(a=10,i.length>1&&"0"===j(i,0)&&(a=I(Q,i)?16:8,i=B(i,8===a?1:2)),""===i)u=0;else{if(!I(10===a?Z:8===a?X:tt,i))return t;u=P(i,a)}M(r,u)}for(o=0;o<n;o++)if(u=r[o],o===n-1){if(u>=L(256,5-n))return null}else if(u>255)return null;for(c=_(r),o=0;o<r.length;o++)c+=r[o]*L(256,3-o);return c},ct=function(t){var e=[0,0,0,0,0,0,0,0],n=0,r=null,o=0,i,a,u,c,s,l,f,p=function(){return j(t,o)};if(":"===p()){if(":"!==j(t,1))return;o+=2,r=++n}for(;p();){if(8===n)return;if(":"!==p()){for(i=a=0;a<4&&I(tt,p());)i=16*i+P(p(),16),o++,a++;if("."===p()){if(0===a)return;if(o-=a,n>6)return;for(u=0;p();){if(c=null,u>0){if(!("."===p()&&u<4))return;o++}if(!I(J,p()))return;for(;I(J,p());){if(s=P(p(),10),null===c)c=s;else{if(0===c)return;c=10*c+s}if(c>255)return;o++}e[n]=256*e[n]+c,2!==++u&&4!==u||n++}if(4!==u)return;break}if(":"===p()){if(o++,!p())return}else if(p())return;e[n++]=i}else{if(null!==r)return;o++,r=++n}}if(null!==r)for(l=n-r,n=7;0!==n&&l>0;)f=e[n],e[n--]=e[r+l-1],e[r+--l]=f;else if(8!==n)return;return e},st=function(t){for(var e=null,n=1,r=null,o=0,i=0;i<8;i++)0!==t[i]?(o>n&&(e=r,n=o),r=null,o=0):(null===r&&(r=i),++o);return o>n?r:e},lt=function(t){var e,n,r,o;if("number"==typeof t){for(e=[],n=0;n<4;n++)H(e,t%256),t=R(t/256);return F(e,".")}if("object"==typeof t){for(e="",r=st(t),n=0;n<8;n++)o&&0===t[n]||(o&&(o=!1),r===n?(e+=n?":":"::",o=!0):(e+=D(t[n],16),n<7&&(e+=":")));return"["+e+"]"}return t},ft={},pt=h({},ft,{" ":1,'"':1,"<":1,">":1,"`":1}),ht=h({},pt,{"#":1,"?":1,"{":1,"}":1}),dt=h({},ht,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),gt=function(t,e){var n=v(t,0);return n>32&&n<127&&!p(e,t)?t:encodeURIComponent(t)},vt={ftp:21,file:null,http:80,https:443,ws:80,wss:443},mt=function(t,e){var n;return 2===t.length&&I(Y,j(t,0))&&(":"===(n=j(t,1))||!e&&"|"===n)},yt=function(t){var e;return t.length>1&&mt(B(t,0,2))&&(2===t.length||"/"===(e=j(t,2))||"\\"===e||"?"===e||"#"===e)},bt=function(t){return"."===t||"%2e"===z(t)},xt=function(t){return".."===(t=z(t))||"%2e."===t||".%2e"===t||"%2e%2e"===t},wt={},kt={},St={},Et={},Ot={},At={},Tt={},Ct={},Pt={},Rt={},Lt={},jt={},It={},Ft={},Dt={},_t={},Mt={},Nt={},Ut={},qt={},Bt={},zt=function(t,e,n){var r=y(t),o,i,a;if(e){if(i=this.parse(r))throw new C(i);this.searchParams=null}else{if(void 0!==n&&(o=new zt(n,!0)),i=this.parse(r,null,o))throw new C(i);(a=A(new O)).bindURL(this),this.searchParams=a}};zt.prototype={type:"URL",parse:function(t,e,n){var r=this,o=e||wt,i=0,a="",u=!1,c=!1,s=!1,l,f,h,v;for(t=y(t),e||(r.scheme="",r.username="",r.password="",r.host=null,r.port=null,r.path=[],r.query=null,r.fragment=null,r.cannotBeABaseURL=!1,t=N(t,rt,""),t=N(t,ot,"$1")),t=N(t,it,""),l=d(t);i<=l.length;){switch(f=l[i],o){case wt:if(!f||!I(Y,f)){if(e)return $;o=St;continue}a+=z(f),o=kt;break;case kt:if(f&&(I(K,f)||"+"===f||"-"===f||"."===f))a+=z(f);else{if(":"!==f){if(e)return $;a="",o=St,i=0;continue}if(e&&(r.isSpecial()!==p(vt,a)||"file"===a&&(r.includesCredentials()||null!==r.port)||"file"===r.scheme&&!r.host))return;if(r.scheme=a,e)return void(r.isSpecial()&&vt[r.scheme]===r.port&&(r.port=null));a="","file"===r.scheme?o=Ft:r.isSpecial()&&n&&n.scheme===r.scheme?o=Et:r.isSpecial()?o=Ct:"/"===l[i+1]?(o=Ot,i++):(r.cannotBeABaseURL=!0,M(r.path,""),o=Ut)}break;case St:if(!n||n.cannotBeABaseURL&&"#"!==f)return $;if(n.cannotBeABaseURL&&"#"===f){r.scheme=n.scheme,r.path=g(n.path),r.query=n.query,r.fragment="",r.cannotBeABaseURL=!0,o=Bt;break}o="file"===n.scheme?Ft:At;continue;case Et:if("/"!==f||"/"!==l[i+1]){o=At;continue}o=Pt,i++;break;case Ot:if("/"===f){o=Rt;break}o=Nt;continue;case At:if(r.scheme=n.scheme,f===at)r.username=n.username,r.password=n.password,r.host=n.host,r.port=n.port,r.path=g(n.path),r.query=n.query;else if("/"===f||"\\"===f&&r.isSpecial())o=Tt;else if("?"===f)r.username=n.username,r.password=n.password,r.host=n.host,r.port=n.port,r.path=g(n.path),r.query="",o=qt;else{if("#"!==f){r.username=n.username,r.password=n.password,r.host=n.host,r.port=n.port,r.path=g(n.path),r.path.length--,o=Nt;continue}r.username=n.username,r.password=n.password,r.host=n.host,r.port=n.port,r.path=g(n.path),r.query=n.query,r.fragment="",o=Bt}break;case Tt:if(!r.isSpecial()||"/"!==f&&"\\"!==f){if("/"!==f){r.username=n.username,r.password=n.password,r.host=n.host,r.port=n.port,o=Nt;continue}o=Rt}else o=Pt;break;case Ct:if(o=Pt,"/"!==f||"/"!==j(a,i+1))continue;i++;break;case Pt:if("/"!==f&&"\\"!==f){o=Rt;continue}break;case Rt:if("@"===f){u&&(a="%40"+a),u=!0,h=d(a);for(var m=0;m<h.length;m++){var b=h[m];if(":"!==b||s){var x=gt(b,dt);s?r.password+=x:r.username+=x}else s=!0}a=""}else if(f===at||"/"===f||"?"===f||"#"===f||"\\"===f&&r.isSpecial()){if(u&&""===a)return V;i-=d(a).length+1,a="",o=Lt}else a+=f;break;case Lt:case jt:if(e&&"file"===r.scheme){o=_t;continue}if(":"!==f||c){if(f===at||"/"===f||"?"===f||"#"===f||"\\"===f&&r.isSpecial()){if(r.isSpecial()&&""===a)return G;if(e&&""===a&&(r.includesCredentials()||null!==r.port))return;if(v=r.parseHost(a))return v;if(a="",o=Mt,e)return;continue}"["===f?c=!0:"]"===f&&(c=!1),a+=f}else{if(""===a)return G;if(v=r.parseHost(a))return v;if(a="",o=It,e===jt)return}break;case It:if(!I(J,f)){if(f===at||"/"===f||"?"===f||"#"===f||"\\"===f&&r.isSpecial()||e){if(""!==a){var w=P(a,10);if(w>65535)return W;r.port=r.isSpecial()&&w===vt[r.scheme]?null:w,a=""}if(e)return;o=Mt;continue}return W}a+=f;break;case Ft:if(r.scheme="file","/"===f||"\\"===f)o=Dt;else{if(!n||"file"!==n.scheme){o=Nt;continue}switch(f){case at:r.host=n.host,r.path=g(n.path),r.query=n.query;break;case"?":r.host=n.host,r.path=g(n.path),r.query="",o=qt;break;case"#":r.host=n.host,r.path=g(n.path),r.query=n.query,r.fragment="",o=Bt;break;default:yt(F(g(l,i),""))||(r.host=n.host,r.path=g(n.path),r.shortenPath()),o=Nt;continue}}break;case Dt:if("/"===f||"\\"===f){o=_t;break}n&&"file"===n.scheme&&!yt(F(g(l,i),""))&&(mt(n.path[0],!0)?M(r.path,n.path[0]):r.host=n.host),o=Nt;continue;case _t:if(f===at||"/"===f||"\\"===f||"?"===f||"#"===f){if(!e&&mt(a))o=Nt;else if(""===a){if(r.host="",e)return;o=Mt}else{if(v=r.parseHost(a))return v;if("localhost"===r.host&&(r.host=""),e)return;a="",o=Mt}continue}a+=f;break;case Mt:if(r.isSpecial()){if(o=Nt,"/"!==f&&"\\"!==f)continue}else if(e||"?"!==f)if(e||"#"!==f){if(f!==at&&(o=Nt,"/"!==f))continue}else r.fragment="",o=Bt;else r.query="",o=qt;break;case Nt:if(f===at||"/"===f||"\\"===f&&r.isSpecial()||!e&&("?"===f||"#"===f)){if(xt(a)?(r.shortenPath(),"/"===f||"\\"===f&&r.isSpecial()||M(r.path,"")):bt(a)?"/"===f||"\\"===f&&r.isSpecial()||M(r.path,""):("file"===r.scheme&&!r.path.length&&mt(a)&&(r.host&&(r.host=""),a=j(a,0)+":"),M(r.path,a)),a="","file"===r.scheme&&(f===at||"?"===f||"#"===f))for(;r.path.length>1&&""===r.path[0];)U(r.path);"?"===f?(r.query="",o=qt):"#"===f&&(r.fragment="",o=Bt)}else a+=gt(f,ht);break;case Ut:"?"===f?(r.query="",o=qt):"#"===f?(r.fragment="",o=Bt):f!==at&&(r.path[0]+=gt(f,ft));break;case qt:e||"#"!==f?f!==at&&("'"===f&&r.isSpecial()?r.query+="%27":r.query+="#"===f?"%23":gt(f,ft)):(r.fragment="",o=Bt);break;case Bt:f!==at&&(r.fragment+=gt(f,pt))}i++}},parseHost:function(t){var e,n,r;if("["===j(t,0)){if("]"!==j(t,t.length-1))return G;if(!(e=ct(B(t,1,-1))))return G;this.host=e}else if(this.isSpecial()){if(t=m(t),I(et,t))return G;if(null===(e=ut(t)))return G;this.host=e}else{if(I(nt,t))return G;for(e="",n=d(t),r=0;r<n.length;r++)e+=gt(n[r],ft);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"===this.scheme},includesCredentials:function(){return""!==this.username||""!==this.password},isSpecial:function(){return p(vt,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"===this.scheme&&1===e&&mt(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,n=t.username,r=t.password,o=t.host,i=t.port,a=t.path,u=t.query,c=t.fragment,s=e+":";return null!==o?(s+="//",t.includesCredentials()&&(s+=n+(r?":"+r:"")+"@"),s+=lt(o),null!==i&&(s+=":"+i)):"file"===e&&(s+="//"),s+=t.cannotBeABaseURL?a[0]:a.length?"/"+F(a,"/"):"",null!==u&&(s+="?"+u),null!==c&&(s+="#"+c),s},setHref:function(t){var e=this.parse(t);if(e)throw new C(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"===t)try{return new Ht(t.path[0]).origin}catch(t){return"null"}return"file"!==t&&this.isSpecial()?t+"://"+lt(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(y(t)+":",wt)},getUsername:function(){return this.username},setUsername:function(t){var e=d(y(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var n=0;n<e.length;n++)this.username+=gt(e[n],dt)}},getPassword:function(){return this.password},setPassword:function(t){var e=d(y(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var n=0;n<e.length;n++)this.password+=gt(e[n],dt)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?lt(t):lt(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,Lt)},getHostname:function(){var t=this.host;return null===t?"":lt(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,jt)},getPort:function(){var t=this.port;return null===t?"":y(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""===(t=y(t))?this.port=null:this.parse(t,It))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+F(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,Mt))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""===(t=y(t))?this.query=null:("?"===j(t,0)&&(t=B(t,1)),this.query="",this.parse(t,qt)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!==(t=y(t))?("#"===j(t,0)&&(t=B(t,1)),this.fragment="",this.parse(t,Bt)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var Ht=function t(e){var n=f(this,Vt),r=x(arguments.length,1)>1?arguments[1]:void 0,i=S(n,new zt(e,!1,r));o||(n.href=i.serialize(),n.origin=i.getOrigin(),n.protocol=i.getProtocol(),n.username=i.getUsername(),n.password=i.getPassword(),n.host=i.getHost(),n.hostname=i.getHostname(),n.port=i.getPort(),n.pathname=i.getPathname(),n.search=i.getSearch(),n.searchParams=i.getSearchParams(),n.hash=i.getHash())},Vt=Ht.prototype,$t=function(t,e){return{get:function(){return E(this)[t]()},set:e&&function(t){return E(this)[e](t)},configurable:!0,enumerable:!0}};if(o&&(l(Vt,"href",$t("serialize","setHref")),l(Vt,"origin",$t("getOrigin")),l(Vt,"protocol",$t("getProtocol","setProtocol")),l(Vt,"username",$t("getUsername","setUsername")),l(Vt,"password",$t("getPassword","setPassword")),l(Vt,"host",$t("getHost","setHost")),l(Vt,"hostname",$t("getHostname","setHostname")),l(Vt,"port",$t("getPort","setPort")),l(Vt,"pathname",$t("getPathname","setPathname")),l(Vt,"search",$t("getSearch","setSearch")),l(Vt,"searchParams",$t("getSearchParams")),l(Vt,"hash",$t("getHash","setHash"))),s(Vt,"toJSON",(function t(){return E(this).serialize()}),{enumerable:!0}),s(Vt,"toString",(function t(){return E(this).serialize()}),{enumerable:!0}),T){var Gt=T.createObjectURL,Wt=T.revokeObjectURL;Gt&&s(Ht,"createObjectURL",u(Gt,T)),Wt&&s(Ht,"revokeObjectURL",u(Wt,T))}b(Ht,"URL"),r({global:!0,constructor:!0,forced:!i,sham:!o},{URL:Ht})},function(t,e,n){"use strict";var r=n(3),o=2147483647,i=36,a=1,u=26,c=38,s=700,l=72,f=128,p="-",h=/[^\0-\u007E]/,d=/[.\u3002\uFF0E\uFF61]/g,g="Overflow: input needs wider integers to process",v=35,m=RangeError,y=r(d.exec),b=Math.floor,x=String.fromCharCode,w=r("".charCodeAt),k=r([].join),S=r([].push),E=r("".replace),O=r("".split),A=r("".toLowerCase),T=function(t){for(var e=[],n=0,r=t.length;n<r;){var o=w(t,n++);if(o>=55296&&o<=56319&&n<r){var i=w(t,n++);56320==(64512&i)?S(e,((1023&o)<<10)+(1023&i)+65536):(S(e,o),n--)}else S(e,o)}return e},C=function(t){return t+22+75*(t<26)},P=function(t,e,n){var r=0;for(t=n?b(t/700):t>>1,t+=b(t/e);t>455;)t=b(t/35),r+=36;return b(r+36*t/(t+38))},R=function(t){var e=[],n=(t=T(t)).length,r=128,i=0,a=72,u,c;for(u=0;u<t.length;u++)(c=t[u])<128&&S(e,x(c));var s=e.length,l=s;for(s&&S(e,"-");l<n;){var f=o;for(u=0;u<t.length;u++)(c=t[u])>=r&&c<f&&(f=c);var p=l+1;if(f-r>b((o-i)/p))throw new m(g);for(i+=(f-r)*p,r=f,u=0;u<t.length;u++){if((c=t[u])<r&&++i>o)throw new m(g);if(c===r){for(var h=i,d=36;;){var v=d<=a?1:d>=a+26?26:d-a;if(h<v)break;var y=h-v,w=36-v;S(e,x(C(v+y%w))),h=b(y/w),d+=36}S(e,x(C(h))),a=P(i,p,l===s),i=0,l++}}i++,r++}return k(e,"")};t.exports=function(t){var e=[],n=O(E(A(t),d,"."),"."),r,o;for(r=0;r<n.length;r++)o=n[r],S(e,y(h,o)?"xn--"+R(o):o);return k(e,".")}},function(t,e,n){"use strict";var r=n(0),o=n(10);r({target:"URL",proto:!0,enumerable:!0},{toJSON:function t(){return o(URL.prototype.toString,this)}})},function(t,e,n){"use strict";n(224)},function(t,e,n){var r=function(t){"use strict";var e=Object.prototype,n=e.hasOwnProperty,r=Object.defineProperty||function(t,e,n){t[e]=n.value},o,i="function"==typeof Symbol?Symbol:{},a=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function s(t,e,n){return Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{s({},"")}catch(t){s=function(t,e,n){return t[e]=n}}function l(t,e,n,o){var i=e&&e.prototype instanceof m?e:m,a=Object.create(i.prototype),u=new R(o||[]);return r(a,"_invoke",{value:A(t,n,u)}),a}function f(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p="suspendedStart",h="suspendedYield",d="executing",g="completed",v={};function m(){}function y(){}function b(){}var x={};s(x,a,(function(){return this}));var w=Object.getPrototypeOf,k=w&&w(w(L([])));k&&k!==e&&n.call(k,a)&&(x=k);var S=b.prototype=m.prototype=Object.create(x);function E(t){["next","throw","return"].forEach((function(e){s(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function o(r,i,a,u){var c=f(t[r],t,i);if("throw"!==c.type){var s=c.arg,l=s.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,u)}),(function(t){o("throw",t,a,u)})):e.resolve(l).then((function(t){s.value=t,a(s)}),(function(t){return o("throw",t,a,u)}))}u(c.arg)}var i;function a(t,n){function r(){return new e((function(e,r){o(t,n,e,r)}))}return i=i?i.then(r,r):r()}r(this,"_invoke",{value:a})}function A(t,e,n){var r="suspendedStart";return function o(i,a){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===i)throw a;return j()}for(n.method=i,n.arg=a;;){var u=n.delegate;if(u){var c=T(u,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("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var s=f(t,e,n);if("normal"===s.type){if(r=n.done?"completed":"suspendedYield",s.arg===v)continue;return{value:s.arg,done:n.done}}"throw"===s.type&&(r="completed",n.method="throw",n.arg=s.arg)}}}function T(t,e){var n=e.method,r=t.iterator[n];if(void 0===r)return e.delegate=null,"throw"===n&&t.iterator.return&&(e.method="return",e.arg=void 0,T(t,e),"throw"===e.method)||"return"!==n&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+n+"' method")),v;var o=f(r,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,v;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,v):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,v)}function C(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 R(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(C,this),this.reset(!0)}function L(t){if(t){var e=t[a];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,o=function e(){for(;++r<t.length;)if(n.call(t,r))return e.value=t[r],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}return{next:j}}function j(){return{value:void 0,done:!0}}return y.prototype=b,r(S,"constructor",{value:b,configurable:!0}),r(b,"constructor",{value:y,configurable:!0}),y.displayName=s(b,c,"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,s(t,c,"GeneratorFunction")),t.prototype=Object.create(S),t},t.awrap=function(t){return{__await:t}},E(O.prototype),s(O.prototype,u,(function(){return this})),t.AsyncIterator=O,t.async=function(e,n,r,o,i){void 0===i&&(i=Promise);var a=new O(l(e,n,r,o),i);return t.isGeneratorFunction(n)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},E(S),s(S,c,"Generator"),s(S,a,(function(){return this})),s(S,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),n=[];for(var r in e)n.push(r);return n.reverse(),function t(){for(;n.length;){var r=n.pop();if(r in e)return t.value=r,t.done=!1,t}return t.done=!0,t}},t.values=L,R.prototype={constructor:R,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(P),!t)for(var e in this)"t"===e.charAt(0)&&n.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t,e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function r(n,r){return a.type="throw",a.arg=t,e.next=n,r&&(e.method="next",e.arg=void 0),!!r}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var u=n.call(i,"catchLoc"),c=n.call(i,"finallyLoc");if(u&&c){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(u){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;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,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 n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),P(n),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var r=n.completion;if("throw"===r.type){var o=r.arg;P(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,n){return this.delegate={iterator:L(t),resultName:e,nextLoc:n},"next"===this.method&&(this.arg=void 0),v}},t}(t.exports);try{regeneratorRuntime=r}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=r:Function("r","regeneratorRuntime = r")(r)}},function(t,e,n){"use strict";(function(t){
9
+ /**
10
+ * @license React
11
+ * react.production.js
12
+ *
13
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
14
+ *
15
+ * This source code is licensed under the MIT license found in the
16
+ * LICENSE file in the root directory of this source tree.
17
+ */
18
+ var n=Symbol.for("react.transitional.element"),r=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),u=Symbol.for("react.consumer"),c=Symbol.for("react.context"),s=Symbol.for("react.forward_ref"),l=Symbol.for("react.suspense"),f=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),h=Symbol.for("react.activity"),d=Symbol.iterator;function g(t){return null===t||"object"!=typeof t?null:"function"==typeof(t=d&&t[d]||t["@@iterator"])?t:null}var v={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},m=Object.assign,y={};function b(t,e,n){this.props=t,this.context=e,this.refs=y,this.updater=n||v}function x(){}function w(t,e,n){this.props=t,this.context=e,this.refs=y,this.updater=n||v}b.prototype.isReactComponent={},b.prototype.setState=function(t,e){if("object"!=typeof t&&"function"!=typeof t&&null!=t)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,t,e,"setState")},b.prototype.forceUpdate=function(t){this.updater.enqueueForceUpdate(this,t,"forceUpdate")},x.prototype=b.prototype;var k=w.prototype=new x;k.constructor=w,m(k,b.prototype),k.isPureReactComponent=!0;var S=Array.isArray;function E(){}var O={H:null,A:null,T:null,S:null},A=Object.prototype.hasOwnProperty;function T(t,e,r){var o=r.ref;return{$$typeof:n,type:t,key:e,ref:void 0!==o?o:null,props:r}}function C(t,e){return T(t.type,e,t.props)}function P(t){return"object"==typeof t&&null!==t&&t.$$typeof===n}function R(t){var e={"=":"=0",":":"=2"};return"$"+t.replace(/[=:]/g,(function(t){return e[t]}))}var L=/\/+/g;function j(t,e){return"object"==typeof t&&null!==t&&null!=t.key?R(""+t.key):e.toString(36)}function I(t){switch(t.status){case"fulfilled":return t.value;case"rejected":throw t.reason;default:switch("string"==typeof t.status?t.then(E,E):(t.status="pending",t.then((function(e){"pending"===t.status&&(t.status="fulfilled",t.value=e)}),(function(e){"pending"===t.status&&(t.status="rejected",t.reason=e)}))),t.status){case"fulfilled":return t.value;case"rejected":throw t.reason}}throw t}function F(t,e,o,i,a){var u=typeof t;"undefined"!==u&&"boolean"!==u||(t=null);var c=!1;if(null===t)c=!0;else switch(u){case"bigint":case"string":case"number":c=!0;break;case"object":switch(t.$$typeof){case n:case r:c=!0;break;case p:return F((c=t._init)(t._payload),e,o,i,a)}}if(c)return a=a(t),c=""===i?"."+j(t,0):i,S(a)?(o="",null!=c&&(o=c.replace(L,"$&/")+"/"),F(a,e,o,"",(function(t){return t}))):null!=a&&(P(a)&&(a=C(a,o+(null==a.key||t&&t.key===a.key?"":(""+a.key).replace(L,"$&/")+"/")+c)),e.push(a)),1;c=0;var s=""===i?".":i+":";if(S(t))for(var l=0;l<t.length;l++)c+=F(i=t[l],e,o,u=s+j(i,l),a);else if("function"==typeof(l=g(t)))for(t=l.call(t),l=0;!(i=t.next()).done;)c+=F(i=i.value,e,o,u=s+j(i,l++),a);else if("object"===u){if("function"==typeof t.then)return F(I(t),e,o,i,a);throw e=String(t),Error("Objects are not valid as a React child (found: "+("[object Object]"===e?"object with keys {"+Object.keys(t).join(", ")+"}":e)+"). If you meant to render a collection of children, use an array instead.")}return c}function D(t,e,n){if(null==t)return t;var r=[],o=0;return F(t,r,"","",(function(t){return e.call(n,t,o++)})),r}function _(t){if(-1===t._status){var e=t._result;(e=e()).then((function(e){0!==t._status&&-1!==t._status||(t._status=1,t._result=e)}),(function(e){0!==t._status&&-1!==t._status||(t._status=2,t._result=e)})),-1===t._status&&(t._status=0,t._result=e)}if(1===t._status)return t._result.default;throw t._result}var M="function"==typeof reportError?reportError:function(e){if("object"==typeof window&&"function"==typeof window.ErrorEvent){var n=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:"object"==typeof e&&null!==e&&"string"==typeof e.message?String(e.message):String(e),error:e});if(!window.dispatchEvent(n))return}else if("object"==typeof t&&"function"==typeof t.emit)return void t.emit("uncaughtException",e);console.error(e)},N={map:D,forEach:function(t,e,n){D(t,(function(){e.apply(this,arguments)}),n)},count:function(t){var e=0;return D(t,(function(){e++})),e},toArray:function(t){return D(t,(function(t){return t}))||[]},only:function(t){if(!P(t))throw Error("React.Children.only expected to receive a single React element child.");return t}};e.Activity=h,e.Children=N,e.Component=b,e.Fragment=o,e.Profiler=a,e.PureComponent=w,e.StrictMode=i,e.Suspense=l,e.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=O,e.__COMPILER_RUNTIME={__proto__:null,c:function(t){return O.H.useMemoCache(t)}},e.cache=function(t){return function(){return t.apply(null,arguments)}},e.cacheSignal=function(){return null},e.cloneElement=function(t,e,n){if(null==t)throw Error("The argument must be a React element, but you passed "+t+".");var r=m({},t.props),o=t.key;if(null!=e)for(i in void 0!==e.key&&(o=""+e.key),e)!A.call(e,i)||"key"===i||"__self"===i||"__source"===i||"ref"===i&&void 0===e.ref||(r[i]=e[i]);var i=arguments.length-2;if(1===i)r.children=n;else if(1<i){for(var a=Array(i),u=0;u<i;u++)a[u]=arguments[u+2];r.children=a}return T(t.type,o,r)},e.createContext=function(t){return(t={$$typeof:c,_currentValue:t,_currentValue2:t,_threadCount:0,Provider:null,Consumer:null}).Provider=t,t.Consumer={$$typeof:u,_context:t},t},e.createElement=function(t,e,n){var r,o={},i=null;if(null!=e)for(r in void 0!==e.key&&(i=""+e.key),e)A.call(e,r)&&"key"!==r&&"__self"!==r&&"__source"!==r&&(o[r]=e[r]);var a=arguments.length-2;if(1===a)o.children=n;else if(1<a){for(var u=Array(a),c=0;c<a;c++)u[c]=arguments[c+2];o.children=u}if(t&&t.defaultProps)for(r in a=t.defaultProps)void 0===o[r]&&(o[r]=a[r]);return T(t,i,o)},e.createRef=function(){return{current:null}},e.forwardRef=function(t){return{$$typeof:s,render:t}},e.isValidElement=P,e.lazy=function(t){return{$$typeof:p,_payload:{_status:-1,_result:t},_init:_}},e.memo=function(t,e){return{$$typeof:f,type:t,compare:void 0===e?null:e}},e.startTransition=function(t){var e=O.T,n={};O.T=n;try{var r=t(),o=O.S;null!==o&&o(n,r),"object"==typeof r&&null!==r&&"function"==typeof r.then&&r.then(E,M)}catch(t){M(t)}finally{null!==e&&null!==n.types&&(e.types=n.types),O.T=e}},e.unstable_useCacheRefresh=function(){return O.H.useCacheRefresh()},e.use=function(t){return O.H.use(t)},e.useActionState=function(t,e,n){return O.H.useActionState(t,e,n)},e.useCallback=function(t,e){return O.H.useCallback(t,e)},e.useContext=function(t){return O.H.useContext(t)},e.useDebugValue=function(){},e.useDeferredValue=function(t,e){return O.H.useDeferredValue(t,e)},e.useEffect=function(t,e){return O.H.useEffect(t,e)},e.useEffectEvent=function(t){return O.H.useEffectEvent(t)},e.useId=function(){return O.H.useId()},e.useImperativeHandle=function(t,e,n){return O.H.useImperativeHandle(t,e,n)},e.useInsertionEffect=function(t,e){return O.H.useInsertionEffect(t,e)},e.useLayoutEffect=function(t,e){return O.H.useLayoutEffect(t,e)},e.useMemo=function(t,e){return O.H.useMemo(t,e)},e.useOptimistic=function(t,e){return O.H.useOptimistic(t,e)},e.useReducer=function(t,e,n){return O.H.useReducer(t,e,n)},e.useRef=function(t){return O.H.useRef(t)},e.useState=function(t){return O.H.useState(t)},e.useSyncExternalStore=function(t,e,n){return O.H.useSyncExternalStore(t,e,n)},e.useTransition=function(){return O.H.useTransition()},e.version="19.2.1"}).call(this,n(494))},function(t,e){var n=t.exports={},r,o;function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function u(t){if(r===setTimeout)return setTimeout(t,0);if((r===i||!r)&&setTimeout)return r=setTimeout,setTimeout(t,0);try{return r(t,0)}catch(e){try{return r.call(null,t,0)}catch(e){return r.call(this,t,0)}}}function c(t){if(o===clearTimeout)return clearTimeout(t);if((o===a||!o)&&clearTimeout)return o=clearTimeout,clearTimeout(t);try{return o(t)}catch(e){try{return o.call(null,t)}catch(e){return o.call(this,t)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:i}catch(t){r=i}try{o="function"==typeof clearTimeout?clearTimeout:a}catch(t){o=a}}();var s=[],l=!1,f,p=-1;function h(){l&&f&&(l=!1,f.length?s=f.concat(s):p=-1,s.length&&d())}function d(){if(!l){var t=u(h);l=!0;for(var e=s.length;e;){for(f=s,s=[];++p<e;)f&&f[p].run();p=-1,e=s.length}f=null,l=!1,c(t)}}function g(t,e){this.fun=t,this.array=e}function v(){}n.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];s.push(new g(t,e)),1!==s.length||l||u(d)},g.prototype.run=function(){this.fun.apply(null,this.array)},n.title="browser",n.browser=!0,n.env={},n.argv=[],n.version="",n.versions={},n.on=v,n.addListener=v,n.once=v,n.off=v,n.removeListener=v,n.removeAllListeners=v,n.emit=v,n.prependListener=v,n.prependOnceListener=v,n.listeners=function(t){return[]},n.binding=function(t){throw new Error("process.binding is not supported")},n.cwd=function(){return"/"},n.chdir=function(t){throw new Error("process.chdir is not supported")},n.umask=function(){return 0}},function(t,e,n){"use strict";
19
+ /**
20
+ * @license React
21
+ * react-dom.production.js
22
+ *
23
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
24
+ *
25
+ * This source code is licensed under the MIT license found in the
26
+ * LICENSE file in the root directory of this source tree.
27
+ */var r=n(1);function o(t){var e="https://react.dev/errors/"+t;if(1<arguments.length){e+="?args[]="+encodeURIComponent(arguments[1]);for(var n=2;n<arguments.length;n++)e+="&args[]="+encodeURIComponent(arguments[n])}return"Minified React error #"+t+"; visit "+e+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function i(){}var a={d:{f:i,r:function(){throw Error(o(522))},D:i,C:i,L:i,m:i,X:i,S:i,M:i},p:0,findDOMNode:null},u=Symbol.for("react.portal");function c(t,e,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:u,key:null==r?null:""+r,children:t,containerInfo:e,implementation:n}}var s=r.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;function l(t,e){return"font"===t?"":"string"==typeof e?"use-credentials"===e?e:"":void 0}e.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=a,e.createPortal=function(t,e){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType)throw Error(o(299));return c(t,e,null,n)},e.flushSync=function(t){var e=s.T,n=a.p;try{if(s.T=null,a.p=2,t)return t()}finally{s.T=e,a.p=n,a.d.f()}},e.preconnect=function(t,e){"string"==typeof t&&(e?e="string"==typeof(e=e.crossOrigin)?"use-credentials"===e?e:"":void 0:e=null,a.d.C(t,e))},e.prefetchDNS=function(t){"string"==typeof t&&a.d.D(t)},e.preinit=function(t,e){if("string"==typeof t&&e&&"string"==typeof e.as){var n=e.as,r=l(n,e.crossOrigin),o="string"==typeof e.integrity?e.integrity:void 0,i="string"==typeof e.fetchPriority?e.fetchPriority:void 0;"style"===n?a.d.S(t,"string"==typeof e.precedence?e.precedence:void 0,{crossOrigin:r,integrity:o,fetchPriority:i}):"script"===n&&a.d.X(t,{crossOrigin:r,integrity:o,fetchPriority:i,nonce:"string"==typeof e.nonce?e.nonce:void 0})}},e.preinitModule=function(t,e){if("string"==typeof t)if("object"==typeof e&&null!==e){if(null==e.as||"script"===e.as){var n=l(e.as,e.crossOrigin);a.d.M(t,{crossOrigin:n,integrity:"string"==typeof e.integrity?e.integrity:void 0,nonce:"string"==typeof e.nonce?e.nonce:void 0})}}else null==e&&a.d.M(t)},e.preload=function(t,e){if("string"==typeof t&&"object"==typeof e&&null!==e&&"string"==typeof e.as){var n=e.as,r=l(n,e.crossOrigin);a.d.L(t,n,{crossOrigin:r,integrity:"string"==typeof e.integrity?e.integrity:void 0,nonce:"string"==typeof e.nonce?e.nonce:void 0,type:"string"==typeof e.type?e.type:void 0,fetchPriority:"string"==typeof e.fetchPriority?e.fetchPriority:void 0,referrerPolicy:"string"==typeof e.referrerPolicy?e.referrerPolicy:void 0,imageSrcSet:"string"==typeof e.imageSrcSet?e.imageSrcSet:void 0,imageSizes:"string"==typeof e.imageSizes?e.imageSizes:void 0,media:"string"==typeof e.media?e.media:void 0})}},e.preloadModule=function(t,e){if("string"==typeof t)if(e){var n=l(e.as,e.crossOrigin);a.d.m(t,{as:"string"==typeof e.as&&"script"!==e.as?e.as:void 0,crossOrigin:n,integrity:"string"==typeof e.integrity?e.integrity:void 0})}else a.d.m(t)},e.requestFormReset=function(t){a.d.r(t)},e.unstable_batchedUpdates=function(t,e){return t(e)},e.useFormState=function(t,e,n){return s.H.useFormState(t,e,n)},e.useFormStatus=function(){return s.H.useHostTransitionStatus()},e.version="19.2.1"},function(t,e,n){"use strict";t.exports=t=>encodeURIComponent(t).replace(/[!'()*]/g,t=>"%"+t.charCodeAt(0).toString(16).toUpperCase())},function(t,e,n){"use strict";var r="%[a-f0-9]{2}",o=new RegExp("("+r+")|([^%]+?)","gi"),i=new RegExp("("+r+")+","gi");function a(t,e){try{return[decodeURIComponent(t.join(""))]}catch(t){}if(1===t.length)return t;e=e||1;var n=t.slice(0,e),r=t.slice(e);return Array.prototype.concat.call([],a(n),a(r))}function u(t){try{return decodeURIComponent(t)}catch(r){for(var e=t.match(o)||[],n=1;n<e.length;n++)e=(t=a(e,n).join("")).match(o)||[];return t}}function c(t){for(var e={"%FE%FF":"\ufffd\ufffd","%FF%FE":"\ufffd\ufffd"},n=i.exec(t);n;){try{e[n[0]]=decodeURIComponent(n[0])}catch(t){var r=u(n[0]);r!==n[0]&&(e[n[0]]=r)}n=i.exec(t)}e["%C2"]="\ufffd";for(var o=Object.keys(e),a=0;a<o.length;a++){var c=o[a];t=t.replace(new RegExp(c,"g"),e[c])}return t}t.exports=function(t){if("string"!=typeof t)throw new TypeError("Expected `encodedURI` to be of type `string`, got `"+typeof t+"`");try{return t=t.replace(/\+/g," "),decodeURIComponent(t)}catch(e){return c(t)}}},function(t,e,n){"use strict";t.exports=(t,e)=>{if("string"!=typeof t||"string"!=typeof e)throw new TypeError("Expected the arguments to be of type `string`");if(""===e)return[t];const n=t.indexOf(e);return-1===n?[t]:[t.slice(0,n),t.slice(n+e.length)]}},function(t,e,n){"use strict";t.exports=function(t,e){for(var n={},r=Object.keys(t),o=Array.isArray(e),i=0;i<r.length;i++){var a=r[i],u=t[a];(o?-1!==e.indexOf(a):e(a,u,t))&&(n[a]=u)}return n}},function(t,e){function n(e,r){return t.exports=n=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},t.exports.__esModule=!0,t.exports.default=t.exports,n(e,r)}t.exports=n,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,n){"use strict";
28
+ /** @license React v17.0.2
29
+ * react-is.production.min.js
30
+ *
31
+ * Copyright (c) Facebook, Inc. and its affiliates.
32
+ *
33
+ * This source code is licensed under the MIT license found in the
34
+ * LICENSE file in the root directory of this source tree.
35
+ */var r=60103,o=60106,i=60107,a=60108,u=60114,c=60109,s=60110,l=60112,f=60113,p=60120,h=60115,d=60116,g=60121,v=60122,m=60117,y=60129,b=60131;if("function"==typeof Symbol&&Symbol.for){var x=Symbol.for;r=x("react.element"),o=x("react.portal"),i=x("react.fragment"),a=x("react.strict_mode"),u=x("react.profiler"),c=x("react.provider"),s=x("react.context"),l=x("react.forward_ref"),f=x("react.suspense"),p=x("react.suspense_list"),h=x("react.memo"),d=x("react.lazy"),g=x("react.block"),v=x("react.server.block"),m=x("react.fundamental"),y=x("react.debug_trace_mode"),b=x("react.legacy_hidden")}function w(t){if("object"==typeof t&&null!==t){var e=t.$$typeof;switch(e){case r:switch(t=t.type){case i:case u:case a:case f:case p:return t;default:switch(t=t&&t.$$typeof){case s:case l:case d:case h:case c:return t;default:return e}}case o:return e}}}var k=c,S=r,E=l,O=i,A=d,T=h,C=o,P=u,R=a,L=f;e.ContextConsumer=s,e.ContextProvider=k,e.Element=S,e.ForwardRef=E,e.Fragment=O,e.Lazy=A,e.Memo=T,e.Portal=C,e.Profiler=P,e.StrictMode=R,e.Suspense=L,e.isAsyncMode=function(){return!1},e.isConcurrentMode=function(){return!1},e.isContextConsumer=function(t){return w(t)===s},e.isContextProvider=function(t){return w(t)===c},e.isElement=function(t){return"object"==typeof t&&null!==t&&t.$$typeof===r},e.isForwardRef=function(t){return w(t)===l},e.isFragment=function(t){return w(t)===i},e.isLazy=function(t){return w(t)===d},e.isMemo=function(t){return w(t)===h},e.isPortal=function(t){return w(t)===o},e.isProfiler=function(t){return w(t)===u},e.isStrictMode=function(t){return w(t)===a},e.isSuspense=function(t){return w(t)===f},e.isValidElementType=function(t){return"string"==typeof t||"function"==typeof t||t===i||t===u||t===y||t===a||t===f||t===p||t===b||"object"==typeof t&&null!==t&&(t.$$typeof===d||t.$$typeof===h||t.$$typeof===c||t.$$typeof===s||t.$$typeof===l||t.$$typeof===m||t.$$typeof===g||t[0]===v)},e.typeOf=w},function(t,e){var n=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,r=/\n/g,o=/^\s*/,i=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,a=/^:\s*/,u=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,c=/^[;\s]*/,s=/^\s+|\s+$/g,l="\n",f="/",p="*",h="",d="comment",g="declaration";function v(t){return t?t.replace(s,""):""}t.exports=function(t,e){if("string"!=typeof t)throw new TypeError("First argument must be a string");if(!t)return[];e=e||{};var s=1,l=1;function f(t){var e=t.match(r);e&&(s+=e.length);var n=t.lastIndexOf("\n");l=~n?t.length-n:l+t.length}function p(){var t={line:s,column:l};return function(e){return e.position=new h(t),y(),e}}function h(t){this.start=t,this.end={line:s,column:l},this.source=e.source}h.prototype.content=t;var d=[];function g(n){var r=new Error(e.source+":"+s+":"+l+": "+n);if(r.reason=n,r.filename=e.source,r.line=s,r.column=l,r.source=t,!e.silent)throw r;d.push(r)}function m(e){var n=e.exec(t);if(n){var r=n[0];return f(r),t=t.slice(r.length),n}}function y(){m(o)}function b(t){var e;for(t=t||[];e=x();)!1!==e&&t.push(e);return t}function x(){var e=p();if("/"==t.charAt(0)&&"*"==t.charAt(1)){for(var n=2;""!=t.charAt(n)&&("*"!=t.charAt(n)||"/"!=t.charAt(n+1));)++n;if(n+=2,""===t.charAt(n-1))return g("End of comment missing");var r=t.slice(2,n-2);return l+=2,f(r),t=t.slice(n),l+=2,e({type:"comment",comment:r})}}function w(){var t=p(),e=m(i);if(e){if(x(),!m(a))return g("property missing ':'");var r=m(u),o=t({type:"declaration",property:v(e[0].replace(n,"")),value:r?v(r[0].replace(n,"")):""});return m(c),o}}function k(){var t=[],e;for(b(t);e=w();)!1!==e&&(t.push(e),b(t));return t}return y(),k()}},function(t,e,n){"use strict";var r=n(504);function o(){}function i(){}i.resetWarningCache=o,t.exports=function(){function t(t,e,n,o,i,a){if(a!==r){var u=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw u.name="Invariant Violation",u}}function e(){return t}t.isRequired=t;var n={array:t,bigint:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,elementType:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e,checkPropTypes:i,resetWarningCache:o};return n.PropTypes=n,n}},function(t,e,n){"use strict";var r="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";t.exports=r},function(t,e,n){},function(t,e){t.exports=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)}},function(t,e,n){"use strict";
36
+ /** @license React v16.13.1
37
+ * react-is.production.min.js
38
+ *
39
+ * Copyright (c) Facebook, Inc. and its affiliates.
40
+ *
41
+ * This source code is licensed under the MIT license found in the
42
+ * LICENSE file in the root directory of this source tree.
43
+ */var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,i=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,u=r?Symbol.for("react.strict_mode"):60108,c=r?Symbol.for("react.profiler"):60114,s=r?Symbol.for("react.provider"):60109,l=r?Symbol.for("react.context"):60110,f=r?Symbol.for("react.async_mode"):60111,p=r?Symbol.for("react.concurrent_mode"):60111,h=r?Symbol.for("react.forward_ref"):60112,d=r?Symbol.for("react.suspense"):60113,g=r?Symbol.for("react.suspense_list"):60120,v=r?Symbol.for("react.memo"):60115,m=r?Symbol.for("react.lazy"):60116,y=r?Symbol.for("react.block"):60121,b=r?Symbol.for("react.fundamental"):60117,x=r?Symbol.for("react.responder"):60118,w=r?Symbol.for("react.scope"):60119;function k(t){if("object"==typeof t&&null!==t){var e=t.$$typeof;switch(e){case o:switch(t=t.type){case f:case p:case a:case c:case u:case d:return t;default:switch(t=t&&t.$$typeof){case l:case h:case m:case v:case s:return t;default:return e}}case i:return e}}}function S(t){return k(t)===p}e.AsyncMode=f,e.ConcurrentMode=p,e.ContextConsumer=l,e.ContextProvider=s,e.Element=o,e.ForwardRef=h,e.Fragment=a,e.Lazy=m,e.Memo=v,e.Portal=i,e.Profiler=c,e.StrictMode=u,e.Suspense=d,e.isAsyncMode=function(t){return S(t)||k(t)===f},e.isConcurrentMode=S,e.isContextConsumer=function(t){return k(t)===l},e.isContextProvider=function(t){return k(t)===s},e.isElement=function(t){return"object"==typeof t&&null!==t&&t.$$typeof===o},e.isForwardRef=function(t){return k(t)===h},e.isFragment=function(t){return k(t)===a},e.isLazy=function(t){return k(t)===m},e.isMemo=function(t){return k(t)===v},e.isPortal=function(t){return k(t)===i},e.isProfiler=function(t){return k(t)===c},e.isStrictMode=function(t){return k(t)===u},e.isSuspense=function(t){return k(t)===d},e.isValidElementType=function(t){return"string"==typeof t||"function"==typeof t||t===a||t===p||t===c||t===u||t===d||t===g||"object"==typeof t&&null!==t&&(t.$$typeof===m||t.$$typeof===v||t.$$typeof===s||t.$$typeof===l||t.$$typeof===h||t.$$typeof===b||t.$$typeof===x||t.$$typeof===w||t.$$typeof===y)},e.typeOf=k},function(t,e,n){"use strict";n.r(e);var r={};n.r(r),n.d(r,"document",(function(){return cu})),n.d(r,"contentInitial",(function(){return su})),n.d(r,"flowInitial",(function(){return lu})),n.d(r,"flow",(function(){return fu})),n.d(r,"string",(function(){return pu})),n.d(r,"text",(function(){return hu})),n.d(r,"insideSpan",(function(){return du})),n.d(r,"attentionMarkers",(function(){return gu})),n.d(r,"disable",(function(){return vu}));var o={};n.r(o),n.d(o,"boolean",(function(){return Xc})),n.d(o,"booleanish",(function(){return Zc})),n.d(o,"overloadedBoolean",(function(){return ts})),n.d(o,"number",(function(){return es})),n.d(o,"spaceSeparated",(function(){return ns})),n.d(o,"commaSeparated",(function(){return rs})),n.d(o,"commaOrSpaceSeparated",(function(){return os}));var i=n(238),a=n(248),u=n(249),c=n(250),s=n(251),l=n(252),f=n(253),p=n(254),h=n(255),d=n(256),g=n(257),v=n(258),m=n(259),y=n(260),b=n(261),x=n(262),w=n(263),k=n(264),S=n(265),E=n(266),O=n(267),A=n(268),T=n(269),C=n(270),P=n(271),R=n(273),L=n(274),j=n(275),I=n(106),F=n(278),D=n(279),_=n(280),M=n(281),N=n(282),U=n(283),q=n(284),B=n(285),z=n(286),H=n(287),V=n(288),$=n(289),G=n(291),W=n(292),Y=n(293),K=n(297),J=n(298),Q=n(299),X=n(301),Z=n(302),tt=n(304),et=n(305),nt=n(307),rt=n(308),ot=n(309),it=n(310),at=n(311),ut=n(312),ct=n(314),st=n(315),lt=n(316),ft=n(317),pt=n(318),ht=n(319),dt=n(320),gt=n(321),vt=n(322),mt=n(323),yt=n(324),bt=n(326),xt=n(327),wt=n(329),kt=n(330),St=n(331),Et=n(332),Ot=n(333),At=n(334),Tt=n(335),Ct=n(336),Pt=n(338),Rt=n(339),Lt=n(340),jt=n(341),It=n(342),Ft=n(343),Dt=n(344),_t=n(345),Mt=n(346),Nt=n(347),Ut=n(348),qt=n(349),Bt=n(350),zt=n(351),Ht=n(352),Vt=n(353),$t=n(354),Gt=n(355),Wt=n(356),Yt=n(357),Kt=n(358),Jt=n(359),Qt=n(360),Xt=n(361),Zt=n(362),te=n(363),ee=n(364),ne=n(365),re=n(366),oe=n(367),ie=n(368),ae=n(369),ue=n(370),ce=n(372),se=n(373),le=n(374),fe=n(375),pe=n(385),he=n(386),de=n(387),ge=n(388),ve=n(389),me=n(390),ye=n(391),be=n(392),xe=n(393),we=n(394),ke=n(395),Se=n(396),Ee=n(397),Oe=n(398),Ae=n(399),Te=n(210),Ce=n(401),Pe=n(402),Re=n(403),Le=n(405),je=n(406),Ie=n(211),Fe=n(407),De=n(212),_e=n(408),Me=n(409),Ne=n(410),Ue=n(411),qe=n(412),Be=n(413),ze=n(415),He=n(416),Ve=n(417),$e=n(418),Ge=n(419),We=n(421),Ye=n(423),Ke=n(424),Je=n(425),Qe=n(426),Xe=n(427),Ze=n(428),tn=n(429),en=n(430),nn=n(431),rn=n(432),on=n(433),an=n(434),un=n(435),cn=n(436),sn=n(440),ln=n(441),fn=n(442),pn=n(443),hn=n(444),dn=n(445),gn=n(446),vn=n(447),mn=n(448),yn=n(449),bn=n(450),xn=n(451),wn=n(453),kn=n(454),Sn=n(455),En=n(456),On=n(457),An=n(458),Tn=n(459),Cn=n(460),Pn=n(461),Rn=n(462),Ln=n(463),jn=n(464),In=n(465),Fn=n(466),Dn=n(467),_n=n(468),Mn=n(469),Nn=n(470),Un=n(471),qn=n(472),Bn=n(473),zn=n(474),Hn=n(476),Vn=n(478),$n=n(479),Gn=n(480),Wn=n(483),Yn=n(484),Kn=n(487),Jn=n(490),Qn=n(491),Xn=n(492),Zn=n(1),tr=n.n(Zn),er=n(226),nr=n.n(er),rr,or=[{demoKey:".dumi",demos:[]},{demoKey:"src",demos:[]}],ir,ar=[],ur=n(227),cr=n.n(ur),sr=n(120),lr=n.n(sr),fr=n(17),pr=n(38),hr=n(29),dr=n(20),gr=n(67),vr=n(33),mr=function(t){function e(){for(var e,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(e=t.call.apply(t,[this].concat(r))||this).history=Object(hr.a)(e.props),e}var n;return Object(pr.a)(e,t),e.prototype.render=function t(){return tr.a.createElement(fr.b,{history:this.history,children:this.props.children})},e}(tr.a.Component);var yr=function(t){function e(){for(var e,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(e=t.call.apply(t,[this].concat(r))||this).history=Object(hr.b)(e.props),e}var n;return Object(pr.a)(e,t),e.prototype.render=function t(){return tr.a.createElement(fr.b,{history:this.history,children:this.props.children})},e}(tr.a.Component);var br=function t(e,n){return"function"==typeof e?e(n):e},xr=function t(e,n){return"string"==typeof e?Object(hr.c)(e,null,null,n):e},wr=function t(e){return e},kr=tr.a.forwardRef;function Sr(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}void 0===kr&&(kr=wr);var Er=kr((function(t,e){var n=t.innerRef,r=t.navigate,o=t.onClick,i=Object(gr.a)(t,["innerRef","navigate","onClick"]),a=i.target,u=Object(dr.a)({},i,{onClick:function t(e){try{o&&o(e)}catch(t){throw e.preventDefault(),t}e.defaultPrevented||0!==e.button||a&&"_self"!==a||Sr(e)||(e.preventDefault(),r())}});return u.ref=wr!==kr&&e||n,tr.a.createElement("a",u)}));var Or=kr((function(t,e){var n=t.component,r=void 0===n?Er:n,o=t.replace,i=t.to,a=t.innerRef,u=Object(gr.a)(t,["component","replace","to","innerRef"]);return tr.a.createElement(fr.d.Consumer,null,(function(t){t||Object(vr.a)(!1);var n=t.history,c=xr(br(i,t.location),t.location),s=c?n.createHref(c):"",l=Object(dr.a)({},u,{href:s,navigate:function e(){var r=br(i,t.location),a=Object(hr.e)(t.location)===Object(hr.e)(xr(r)),u;(o||a?n.replace:n.push)(r)}});return wr!==kr?l.ref=e||a:l.innerRef=a,tr.a.createElement(r,l)}))})),Ar,Tr,Cr=function t(e){return e},Pr=tr.a.forwardRef;function Rr(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return e.filter((function(t){return t})).join(" ")}void 0===Pr&&(Pr=Cr);var Lr=Pr((function(t,e){var n=t["aria-current"],r=void 0===n?"page":n,o=t.activeClassName,i=void 0===o?"active":o,a=t.activeStyle,u=t.className,c=t.exact,s=t.isActive,l=t.location,f=t.sensitive,p=t.strict,h=t.style,d=t.to,g=t.innerRef,v=Object(gr.a)(t,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","sensitive","strict","style","to","innerRef"]);return tr.a.createElement(fr.d.Consumer,null,(function(t){t||Object(vr.a)(!1);var n=l||t.location,o=xr(br(d,n),n),m=o.pathname,y=m&&m.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),b=y?Object(fr.e)(n.pathname,{path:y,exact:c,sensitive:f,strict:p}):null,x=!!(s?s(b,n):b),w="function"==typeof u?u(x):u,k="function"==typeof h?h(x):h;x&&(w=Rr(w,i),k=Object(dr.a)({},k,a));var S=Object(dr.a)({"aria-current":x&&r||null,className:w,style:k,to:o},v);return Cr!==Pr?S.ref=e||g:S.innerRef=g,tr.a.createElement(Or,S)}))})),jr,Ir=n(228),Fr=n(81),Dr=n.n(Fr),_r=n(121),Mr=n.n(_r),Nr=function(t){function e(e){var n;return(n=t.call(this,e)||this).handleChange=function(){n.setState((function(t){return{check:!t.check}}))},n.state={check:!1},n}var n;return Dr()(e,t),e.prototype.render=function t(){var e=this.props,n=e.filename,r=e.children,o=e.highlightedCode,i=e.highlightedStyle,a=this.state.check;return r?tr.a.createElement("div",{className:Mr.a.codeBox},n&&r&&tr.a.createElement("div",{className:Mr.a.demo},tr.a.createElement("div",{id:n},r)),tr.a.createElement("div",{className:Mr.a.actions},tr.a.createElement("button",{type:"button",title:"Close editor",onClick:this.handleChange},tr.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"15",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},tr.a.createElement("polyline",{points:"16 18 22 12 16 6"}),tr.a.createElement("polyline",{points:"8 6 2 12 8 18"})))),tr.a.createElement("div",{className:"markdown code-wrapper",style:{display:a?"block":"none"}},o&&tr.a.createElement("div",{className:"highlight"},tr.a.createElement("pre",null,tr.a.createElement("code",{lang:"jsx",dangerouslySetInnerHTML:{__html:o}}))),i&&tr.a.createElement("div",{className:"highlight"},tr.a.createElement("pre",null,tr.a.createElement("code",{lang:"css",dangerouslySetInnerHTML:{__html:i}}))))):null},e}(tr.a.Component),Ur=n(119),qr=n.n(Ur);function Br(t){return t&&"object"==typeof t?"position"in t||"type"in t?Hr(t.position):"start"in t||"end"in t?Hr(t):"line"in t||"column"in t?zr(t):"":""}function zr(t){return Vr(t&&t.line)+":"+Vr(t&&t.column)}function Hr(t){return zr(t&&t.start)+"-"+zr(t&&t.end)}function Vr(t){return t&&"number"==typeof t?t:1}class $r extends Error{constructor(t,e,n){const r=[null,null];let o={start:{line:null,column:null},end:{line:null,column:null}};if(super(),"string"==typeof e&&(n=e,e=void 0),"string"==typeof n){const t=n.indexOf(":");-1===t?r[1]=n:(r[0]=n.slice(0,t),r[1]=n.slice(t+1))}e&&("type"in e||"position"in e?e.position&&(o=e.position):"start"in e||"end"in e?o=e:("line"in e||"column"in e)&&(o.start=e)),this.name=Br(e)||"1:1",this.message="object"==typeof t?t.message:t,this.stack="","object"==typeof t&&t.stack&&(this.stack=t.stack),this.reason=this.message,this.fatal,this.line=o.start.line,this.column=o.start.column,this.position=o,this.source=r[0],this.ruleId=r[1],this.file,this.actual,this.expected,this.url,this.note}}$r.prototype.file="",$r.prototype.name="",$r.prototype.reason="",$r.prototype.message="",$r.prototype.stack="",$r.prototype.fatal=null,$r.prototype.column=null,$r.prototype.line=null,$r.prototype.source=null,$r.prototype.ruleId=null,$r.prototype.position=null;const Gr={basename:Wr,dirname:Yr,extname:Kr,join:Jr,sep:"/"};function Wr(t,e){if(void 0!==e&&"string"!=typeof e)throw new TypeError('"ext" argument must be a string');Zr(t);let n=0,r=-1,o=t.length,i;if(void 0===e||0===e.length||e.length>t.length){for(;o--;)if(47===t.charCodeAt(o)){if(i){n=o+1;break}}else r<0&&(i=!0,r=o+1);return r<0?"":t.slice(n,r)}if(e===t)return"";let a=-1,u=e.length-1;for(;o--;)if(47===t.charCodeAt(o)){if(i){n=o+1;break}}else a<0&&(i=!0,a=o+1),u>-1&&(t.charCodeAt(o)===e.charCodeAt(u--)?u<0&&(r=o):(u=-1,r=a));return n===r?r=a:r<0&&(r=t.length),t.slice(n,r)}function Yr(t){if(Zr(t),0===t.length)return".";let e=-1,n=t.length,r;for(;--n;)if(47===t.charCodeAt(n)){if(r){e=n;break}}else r||(r=!0);return e<0?47===t.charCodeAt(0)?"/":".":1===e&&47===t.charCodeAt(0)?"//":t.slice(0,e)}function Kr(t){Zr(t);let e=t.length,n=-1,r=0,o=-1,i=0,a;for(;e--;){const u=t.charCodeAt(e);if(47!==u)n<0&&(a=!0,n=e+1),46===u?o<0?o=e:1!==i&&(i=1):o>-1&&(i=-1);else if(a){r=e+1;break}}return o<0||n<0||0===i||1===i&&o===n-1&&o===r+1?"":t.slice(o,n)}function Jr(...t){let e=-1,n;for(;++e<t.length;)Zr(t[e]),t[e]&&(n=void 0===n?t[e]:n+"/"+t[e]);return void 0===n?".":Qr(n)}function Qr(t){Zr(t);const e=47===t.charCodeAt(0);let n=Xr(t,!e);return 0!==n.length||e||(n="."),n.length>0&&47===t.charCodeAt(t.length-1)&&(n+="/"),e?"/"+n:n}function Xr(t,e){let n="",r=0,o=-1,i=0,a=-1,u,c;for(;++a<=t.length;){if(a<t.length)u=t.charCodeAt(a);else{if(47===u)break;u=47}if(47===u){if(o===a-1||1===i);else if(o!==a-1&&2===i){if(n.length<2||2!==r||46!==n.charCodeAt(n.length-1)||46!==n.charCodeAt(n.length-2))if(n.length>2){if(c=n.lastIndexOf("/"),c!==n.length-1){c<0?(n="",r=0):(n=n.slice(0,c),r=n.length-1-n.lastIndexOf("/")),o=a,i=0;continue}}else if(n.length>0){n="",r=0,o=a,i=0;continue}e&&(n=n.length>0?n+"/..":"..",r=2)}else n.length>0?n+="/"+t.slice(o+1,a):n=t.slice(o+1,a),r=a-o-1;o=a,i=0}else 46===u&&i>-1?i++:i=-1}return n}function Zr(t){if("string"!=typeof t)throw new TypeError("Path must be a string. Received "+JSON.stringify(t))}const to={cwd:eo};function eo(){return"/"}function no(t){return null!==t&&"object"==typeof t&&t.href&&t.origin}function ro(t){if("string"==typeof t)t=new URL(t);else if(!no(t)){const e=new TypeError('The "path" argument must be of type string or an instance of URL. Received `'+t+"`");throw e.code="ERR_INVALID_ARG_TYPE",e}if("file:"!==t.protocol){const t=new TypeError("The URL must be of scheme file");throw t.code="ERR_INVALID_URL_SCHEME",t}return oo(t)}function oo(t){if(""!==t.hostname){const t=new TypeError('File URL host must be "localhost" or empty on darwin');throw t.code="ERR_INVALID_FILE_URL_HOST",t}const e=t.pathname;let n=-1;for(;++n<e.length;)if(37===e.charCodeAt(n)&&50===e.charCodeAt(n+1)){const t=e.charCodeAt(n+2);if(70===t||102===t){const t=new TypeError("File URL path must not include encoded / characters");throw t.code="ERR_INVALID_FILE_URL_PATH",t}}return decodeURIComponent(e)}const io=["history","path","basename","stem","extname","dirname"];class ao{constructor(t){let e;e=t?"string"==typeof t||lo(t)?{value:t}:no(t)?{path:t}:t:{},this.data={},this.messages=[],this.history=[],this.cwd=to.cwd(),this.value,this.stored,this.result,this.map;let n=-1,r;for(;++n<io.length;){const t=io[n];t in e&&void 0!==e[t]&&null!==e[t]&&(this[t]="history"===t?[...e[t]]:e[t])}for(r in e)io.includes(r)||(this[r]=e[r])}get path(){return this.history[this.history.length-1]}set path(t){no(t)&&(t=ro(t)),co(t,"path"),this.path!==t&&this.history.push(t)}get dirname(){return"string"==typeof this.path?Gr.dirname(this.path):void 0}set dirname(t){so(this.basename,"dirname"),this.path=Gr.join(t||"",this.basename)}get basename(){return"string"==typeof this.path?Gr.basename(this.path):void 0}set basename(t){co(t,"basename"),uo(t,"basename"),this.path=Gr.join(this.dirname||"",t)}get extname(){return"string"==typeof this.path?Gr.extname(this.path):void 0}set extname(t){if(uo(t,"extname"),so(this.dirname,"extname"),t){if(46!==t.charCodeAt(0))throw new Error("`extname` must start with `.`");if(t.includes(".",1))throw new Error("`extname` cannot contain multiple dots")}this.path=Gr.join(this.dirname,this.stem+(t||""))}get stem(){return"string"==typeof this.path?Gr.basename(this.path,this.extname):void 0}set stem(t){co(t,"stem"),uo(t,"stem"),this.path=Gr.join(this.dirname||"",t+(this.extname||""))}toString(t){return(this.value||"").toString(t||void 0)}message(t,e,n){const r=new $r(t,e,n);return this.path&&(r.name=this.path+":"+r.name,r.file=this.path),r.fatal=!1,this.messages.push(r),r}info(t,e,n){const r=this.message(t,e,n);return r.fatal=null,r}fail(t,e,n){const r=this.message(t,e,n);throw r.fatal=!0,r}}function uo(t,e){if(t&&t.includes(Gr.sep))throw new Error("`"+e+"` cannot be a path: did not expect `"+Gr.sep+"`")}function co(t,e){if(!t)throw new Error("`"+e+"` cannot be empty")}function so(t,e){if(!t)throw new Error("Setting `"+e+"` requires `path` to be set too")}function lo(t){return qr()(t)}function fo(t){if(t)throw t}var po=n(162),ho=n.n(po);function go(t){if("object"!=typeof t||null===t)return!1;const e=Object.getPrototypeOf(t);return!(null!==e&&e!==Object.prototype&&null!==Object.getPrototypeOf(e)||Symbol.toStringTag in t||Symbol.iterator in t)}function vo(){const t=[],e={run:n,use:r};return e;function n(...e){let n=-1;const r=e.pop();if("function"!=typeof r)throw new TypeError("Expected function as last argument, not "+r);function o(i,...a){const u=t[++n];let c=-1;if(i)r(i);else{for(;++c<e.length;)null!==a[c]&&void 0!==a[c]||(a[c]=e[c]);e=a,u?mo(u,o)(...a):r(null,...a)}}o(null,...e)}function r(n){if("function"!=typeof n)throw new TypeError("Expected `middelware` to be a function, not "+n);return t.push(n),e}}function mo(t,e){let n;return r;function r(...e){const r=t.length>e.length;let a;r&&e.push(o);try{a=t.apply(this,e)}catch(t){const e=t;if(r&&n)throw e;return o(e)}r||(a&&a.then&&"function"==typeof a.then?a.then(i,o):a instanceof Error?o(a):i(a))}function o(t,...r){n||(n=!0,e(t,...r))}function i(t){o(null,t)}}const yo=xo().freeze(),bo={}.hasOwnProperty;function xo(){const t=vo(),e=[];let n={},r,o=-1;return i.data=a,i.Parser=void 0,i.Compiler=void 0,i.freeze=u,i.attachers=e,i.use=c,i.parse=s,i.stringify=l,i.run=f,i.runSync=p,i.process=h,i.processSync=d,i;function i(){const t=xo();let r=-1;for(;++r<e.length;)t.use(...e[r]);return t.data(ho()(!0,{},n)),t}function a(t,e){return"string"==typeof t?2===arguments.length?(Oo("data",r),n[t]=e,i):bo.call(n,t)&&n[t]||null:t?(Oo("data",r),n=t,i):n}function u(){if(r)return i;for(;++o<e.length;){const[n,...r]=e[o];if(!1===r[0])continue;!0===r[0]&&(r[0]=void 0);const a=n.call(i,...r);"function"==typeof a&&t.use(a)}return r=!0,o=Number.POSITIVE_INFINITY,i}function c(t,...o){let a;if(Oo("use",r),null==t);else if("function"==typeof t)l(t,...o);else{if("object"!=typeof t)throw new TypeError("Expected usable value, not `"+t+"`");Array.isArray(t)?s(t):c(t)}return a&&(n.settings=Object.assign(n.settings||{},a)),i;function u(t){if("function"==typeof t)l(t);else{if("object"!=typeof t)throw new TypeError("Expected usable value, not `"+t+"`");if(Array.isArray(t)){const[e,...n]=t;l(e,...n)}else c(t)}}function c(t){s(t.plugins),t.settings&&(a=Object.assign(a||{},t.settings))}function s(t){let e=-1;if(null==t);else{if(!Array.isArray(t))throw new TypeError("Expected a list of plugins, not `"+t+"`");for(;++e<t.length;){const n=undefined;u(t[e])}}}function l(t,n){let r=-1,o;for(;++r<e.length;)if(e[r][0]===t){o=e[r];break}o?(go(o[1])&&go(n)&&(n=ho()(!0,o[1],n)),o[1]=n):e.push([...arguments])}}function s(t){i.freeze();const e=Co(t),n=i.Parser;return So("parse",n),wo(n,"parse")?new n(String(e),e).parse():n(String(e),e)}function l(t,e){i.freeze();const n=Co(e),r=i.Compiler;return Eo("stringify",r),Ao(t),wo(r,"compile")?new r(t,n).compile():r(t,n)}function f(e,n,r){if(Ao(e),i.freeze(),r||"function"!=typeof n||(r=n,n=void 0),!r)return new Promise(o);function o(o,i){function a(t,n,a){n=n||e,t?i(t):o?o(n):r(null,n,a)}t.run(e,Co(n),a)}o(null,r)}function p(t,e){let n,r;return i.run(t,e,o),To("runSync","run",r),n;function o(t,e){fo(t),n=e,r=!0}}function h(t,e){if(i.freeze(),So("process",i.Parser),Eo("process",i.Compiler),!e)return new Promise(n);function n(n,r){const o=Co(t);function a(t,o){t||!o?r(t):n?n(o):e(null,o)}i.run(i.parse(o),o,(t,e,n)=>{if(!t&&e&&n){const r=i.stringify(e,n);null==r||(Ro(r)?n.value=r:n.result=r),a(t,n)}else a(t)})}n(null,e)}function d(t){let e;i.freeze(),So("processSync",i.Parser),Eo("processSync",i.Compiler);const n=Co(t);return i.process(n,r),To("processSync","process",e),n;function r(t){e=!0,fo(t)}}}function wo(t,e){return"function"==typeof t&&t.prototype&&(ko(t.prototype)||e in t.prototype)}function ko(t){let e;for(e in t)if(bo.call(t,e))return!0;return!1}function So(t,e){if("function"!=typeof e)throw new TypeError("Cannot `"+t+"` without `Parser`")}function Eo(t,e){if("function"!=typeof e)throw new TypeError("Cannot `"+t+"` without `Compiler`")}function Oo(t,e){if(e)throw new Error("Cannot call `"+t+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function Ao(t){if(!go(t)||"string"!=typeof t.type)throw new TypeError("Expected node, got `"+t+"`")}function To(t,e,n){if(!n)throw new Error("`"+t+"` finished async. Use `"+e+"` instead")}function Co(t){return Po(t)?t:new ao(t)}function Po(t){return Boolean(t&&"object"==typeof t&&"message"in t&&"messages"in t)}function Ro(t){return"string"==typeof t||qr()(t)}const Lo={};function jo(t,e){const n=e||Lo,r=undefined,o=undefined;return Io(t,"boolean"!=typeof n.includeImageAlt||n.includeImageAlt,"boolean"!=typeof n.includeHtml||n.includeHtml)}function Io(t,e,n){if(Do(t)){if("value"in t)return"html"!==t.type||n?t.value:"";if(e&&"alt"in t&&t.alt)return t.alt;if("children"in t)return Fo(t.children,e,n)}return Array.isArray(t)?Fo(t,e,n):""}function Fo(t,e,n){const r=[];let o=-1;for(;++o<t.length;)r[o]=Io(t[o],e,n);return r.join("")}function Do(t){return Boolean(t&&"object"==typeof t)}function _o(t,e,n,r){const o=t.length;let i=0,a;if(e=e<0?-e>o?0:o+e:e>o?o:e,n=n>0?n:0,r.length<1e4)a=Array.from(r),a.unshift(e,n),t.splice(...a);else for(n&&t.splice(e,n);i<r.length;)a=r.slice(i,i+1e4),a.unshift(e,0),t.splice(...a),i+=1e4,e+=1e4}function Mo(t,e){return t.length>0?(_o(t,t.length,0,e),t):e}const No={}.hasOwnProperty;function Uo(t){const e={};let n=-1;for(;++n<t.length;)qo(e,t[n]);return e}function qo(t,e){let n;for(n in e){const r=undefined,o=(No.call(t,n)?t[n]:void 0)||(t[n]={}),i=e[n];let a;if(i)for(a in i){No.call(o,a)||(o[a]=[]);const t=i[a];Bo(o[a],Array.isArray(t)?t:t?[t]:[])}}}function Bo(t,e){let n=-1;const r=[];for(;++n<e.length;)("after"===e[n].add?t:r).push(e[n]);_o(t,0,0,r)}function zo(t){const e={};let n=-1;for(;++n<t.length;)Ho(e,t[n]);return e}function Ho(t,e){let n;for(n in e){const r=undefined,o=(No.call(t,n)?t[n]:void 0)||(t[n]={}),i=e[n];let a;if(i)for(a in i)o[a]=i[a]}}const Vo=/[!-\/:-@\[-`\{-~\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061D-\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1B7D\u1B7E\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u2E52-\u2E5D\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]/,$o=ri(/[A-Za-z]/),Go=ri(/[\dA-Za-z]/),Wo=ri(/[#-'*+\--9=?A-Z^-~]/);function Yo(t){return null!==t&&(t<32||127===t)}const Ko=ri(/\d/),Jo=ri(/[\dA-Fa-f]/),Qo=ri(/[!-/:-@[-`{-~]/);function Xo(t){return null!==t&&t<-2}function Zo(t){return null!==t&&(t<0||32===t)}function ti(t){return-2===t||-1===t||32===t}const ei=ri(Vo),ni=ri(/\s/);function ri(t){return e;function e(e){return null!==e&&t.test(String.fromCharCode(e))}}function oi(t,e,n,r){const o=r?r-1:Number.POSITIVE_INFINITY;let i=0;return a;function a(r){return ti(r)?(t.enter(n),u(r)):e(r)}function u(r){return ti(r)&&i++<o?(t.consume(r),u):(t.exit(n),e(r))}}const ii={tokenize:ai};function ai(t){const e=t.attempt(this.parser.constructs.contentInitial,r,o);let n;return e;function r(n){if(null!==n)return t.enter("lineEnding"),t.consume(n),t.exit("lineEnding"),oi(t,e,"linePrefix");t.consume(n)}function o(e){return t.enter("paragraph"),i(e)}function i(e){const r=t.enter("chunkText",{contentType:"text",previous:n});return n&&(n.next=r),n=r,a(e)}function a(e){return null===e?(t.exit("chunkText"),t.exit("paragraph"),void t.consume(e)):Xo(e)?(t.consume(e),t.exit("chunkText"),i):(t.consume(e),a)}}const ui={tokenize:si},ci={tokenize:li};function si(t){const e=this,n=[];let r=0,o,i,a;return u;function u(o){if(r<n.length){const i=n[r];return e.containerState=i[1],t.attempt(i[0].continuation,c,s)(o)}return s(o)}function c(t){if(r++,e.containerState._closeFlow){e.containerState._closeFlow=void 0,o&&y();const n=e.events.length;let i=n,a;for(;i--;)if("exit"===e.events[i][0]&&"chunkFlow"===e.events[i][1].type){a=e.events[i][1].end;break}m(r);let u=n;for(;u<e.events.length;)e.events[u][1].end=Object.assign({},a),u++;return _o(e.events,i+1,0,e.events.slice(n)),e.events.length=u,s(t)}return u(t)}function s(i){if(r===n.length){if(!o)return p(i);if(o.currentConstruct&&o.currentConstruct.concrete)return d(i);e.interrupt=Boolean(o.currentConstruct&&!o._gfmTableDynamicInterruptHack)}return e.containerState={},t.check(ci,l,f)(i)}function l(t){return o&&y(),m(r),p(t)}function f(t){return e.parser.lazy[e.now().line]=r!==n.length,a=e.now().offset,d(t)}function p(n){return e.containerState={},t.attempt(ci,h,d)(n)}function h(t){return r++,n.push([e.currentConstruct,e.containerState]),p(t)}function d(n){return null===n?(o&&y(),m(0),void t.consume(n)):(o=o||e.parser.flow(e.now()),t.enter("chunkFlow",{contentType:"flow",previous:i,_tokenizer:o}),g(n))}function g(n){return null===n?(v(t.exit("chunkFlow"),!0),m(0),void t.consume(n)):Xo(n)?(t.consume(n),v(t.exit("chunkFlow")),r=0,e.interrupt=void 0,u):(t.consume(n),g)}function v(t,n){const u=e.sliceStream(t);if(n&&u.push(null),t.previous=i,i&&(i.next=t),i=t,o.defineSkip(t.start),o.write(u),e.parser.lazy[t.start.line]){let t=o.events.length;for(;t--;)if(o.events[t][1].start.offset<a&&(!o.events[t][1].end||o.events[t][1].end.offset>a))return;const n=e.events.length;let i=n,u,c;for(;i--;)if("exit"===e.events[i][0]&&"chunkFlow"===e.events[i][1].type){if(u){c=e.events[i][1].end;break}u=!0}for(m(r),t=n;t<e.events.length;)e.events[t][1].end=Object.assign({},c),t++;_o(e.events,i+1,0,e.events.slice(n)),e.events.length=t}}function m(r){let o=n.length;for(;o-- >r;){const r=n[o];e.containerState=r[1],r[0].exit.call(e,t)}n.length=r}function y(){o.write([null]),i=void 0,o=void 0,e.containerState._closeFlow=void 0}}function li(t,e,n){return oi(t,t.attempt(this.parser.constructs.document,e,n),"linePrefix",this.parser.constructs.disable.null.includes("codeIndented")?void 0:4)}const fi={tokenize:pi,partial:!0};function pi(t,e,n){return r;function r(e){return ti(e)?oi(t,o,"linePrefix")(e):o(e)}function o(t){return null===t||Xo(t)?e(t):n(t)}}function hi(t){const e={};let n=-1,r,o,i,a,u,c,s;for(;++n<t.length;){for(;n in e;)n=e[n];if(r=t[n],n&&"chunkFlow"===r[1].type&&"listItemPrefix"===t[n-1][1].type&&(c=r[1]._tokenizer.events,i=0,i<c.length&&"lineEndingBlank"===c[i][1].type&&(i+=2),i<c.length&&"content"===c[i][1].type))for(;++i<c.length&&"content"!==c[i][1].type;)"chunkText"===c[i][1].type&&(c[i][1]._isInFirstContentOfListItem=!0,i++);if("enter"===r[0])r[1].contentType&&(Object.assign(e,di(t,n)),n=e[n],s=!0);else if(r[1]._container){for(i=n,o=void 0;i--&&(a=t[i],"lineEnding"===a[1].type||"lineEndingBlank"===a[1].type);)"enter"===a[0]&&(o&&(t[o][1].type="lineEndingBlank"),a[1].type="lineEnding",o=i);o&&(r[1].end=Object.assign({},t[o][1].start),u=t.slice(o,n),u.unshift(r),_o(t,o,n-o+1,u))}}return!s}function di(t,e){const n=t[e][1],r=t[e][2];let o=e-1;const i=[],a=n._tokenizer||r.parser[n.contentType](n.start),u=a.events,c=[],s={};let l,f,p=-1,h=n,d=0,g=0;const v=[g];for(;h;){for(;t[++o][1]!==h;);i.push(o),h._tokenizer||(l=r.sliceStream(h),h.next||l.push(null),f&&a.defineSkip(h.start),h._isInFirstContentOfListItem&&(a._gfmTasklistFirstContentOfListItem=!0),a.write(l),h._isInFirstContentOfListItem&&(a._gfmTasklistFirstContentOfListItem=void 0)),f=h,h=h.next}for(h=n;++p<u.length;)"exit"===u[p][0]&&"enter"===u[p-1][0]&&u[p][1].type===u[p-1][1].type&&u[p][1].start.line!==u[p][1].end.line&&(g=p+1,v.push(g),h._tokenizer=void 0,h.previous=void 0,h=h.next);for(a.events=[],h?(h._tokenizer=void 0,h.previous=void 0):v.pop(),p=v.length;p--;){const e=u.slice(v[p],v[p+1]),n=i.pop();c.unshift([n,n+e.length-1]),_o(t,n,2,e)}for(p=-1;++p<c.length;)s[d+c[p][0]]=d+c[p][1],d+=c[p][1]-c[p][0]-1;return s}const gi={tokenize:yi,resolve:mi},vi={tokenize:bi,partial:!0};function mi(t){return hi(t),t}function yi(t,e){let n;return r;function r(e){return t.enter("content"),n=t.enter("chunkContent",{contentType:"content"}),o(e)}function o(e){return null===e?i(e):Xo(e)?t.check(vi,a,i)(e):(t.consume(e),o)}function i(n){return t.exit("chunkContent"),t.exit("content"),e(n)}function a(e){return t.consume(e),t.exit("chunkContent"),n.next=t.enter("chunkContent",{contentType:"content",previous:n}),n=n.next,o}}function bi(t,e,n){const r=this;return o;function o(e){return t.exit("chunkContent"),t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),oi(t,i,"linePrefix")}function i(o){if(null===o||Xo(o))return n(o);const i=r.events[r.events.length-1];return!r.parser.constructs.disable.null.includes("codeIndented")&&i&&"linePrefix"===i[1].type&&i[2].sliceSerialize(i[1],!0).length>=4?e(o):t.interrupt(r.parser.constructs.flow,n,e)(o)}}const xi={tokenize:wi};function wi(t){const e=this,n=t.attempt(fi,r,t.attempt(this.parser.constructs.flowInitial,o,oi(t,t.attempt(this.parser.constructs.flow,o,t.attempt(gi,o)),"linePrefix")));return n;function r(r){if(null!==r)return t.enter("lineEndingBlank"),t.consume(r),t.exit("lineEndingBlank"),e.currentConstruct=void 0,n;t.consume(r)}function o(r){if(null!==r)return t.enter("lineEnding"),t.consume(r),t.exit("lineEnding"),e.currentConstruct=void 0,n;t.consume(r)}}const ki={resolveAll:Ai()},Si=Oi("string"),Ei=Oi("text");function Oi(t){return{tokenize:e,resolveAll:Ai("text"===t?Ti:void 0)};function e(e){const n=this,r=this.parser.constructs[t],o=e.attempt(r,i,a);return i;function i(t){return c(t)?o(t):a(t)}function a(t){if(null!==t)return e.enter("data"),e.consume(t),u;e.consume(t)}function u(t){return c(t)?(e.exit("data"),o(t)):(e.consume(t),u)}function c(t){if(null===t)return!0;const e=r[t];let o=-1;if(e)for(;++o<e.length;){const t=e[o];if(!t.previous||t.previous.call(n,n.previous))return!0}return!1}}}function Ai(t){return e;function e(e,n){let r=-1,o;for(;++r<=e.length;)void 0===o?e[r]&&"data"===e[r][1].type&&(o=r,r++):e[r]&&"data"===e[r][1].type||(r!==o+2&&(e[o][1].end=e[r-1][1].end,e.splice(o+2,r-o-2),r=o+2),o=void 0);return t?t(e,n):e}}function Ti(t,e){let n=0;for(;++n<=t.length;)if((n===t.length||"lineEnding"===t[n][1].type)&&"data"===t[n-1][1].type){const r=t[n-1][1],o=e.sliceStream(r);let i=o.length,a=-1,u=0,c;for(;i--;){const t=o[i];if("string"==typeof t){for(a=t.length;32===t.charCodeAt(a-1);)u++,a--;if(a)break;a=-1}else if(-2===t)c=!0,u++;else if(-1!==t){i++;break}}if(u){const o={type:n===t.length||c||u<2?"lineSuffix":"hardBreakTrailing",start:{line:r.end.line,column:r.end.column-u,offset:r.end.offset-u,_index:r.start._index+i,_bufferIndex:i?a:r.start._bufferIndex+a},end:Object.assign({},r.end)};r.end=Object.assign({},o.start),r.start.offset===r.end.offset?Object.assign(r,o):(t.splice(n,0,["enter",o,e],["exit",o,e]),n+=2)}n++}return t}function Ci(t,e,n){const r=[];let o=-1;for(;++o<t.length;){const i=t[o].resolveAll;i&&!r.includes(i)&&(e=i(e,n),r.push(i))}return e}function Pi(t,e,n){let r=Object.assign(n?Object.assign({},n):{line:1,column:1,offset:0},{_index:0,_bufferIndex:-1});const o={},i=[];let a=[],u=[],c=!0;const s={consume:x,enter:w,exit:k,attempt:O(S),check:O(E),interrupt:O(E,{interrupt:!0})},l={previous:null,code:null,containerState:{},events:[],parser:t,sliceStream:g,sliceSerialize:d,now:v,defineSkip:m,write:h};let f=e.tokenize.call(l,s),p;return e.resolveAll&&i.push(e),l;function h(t){return a=Mo(a,t),y(),null!==a[a.length-1]?[]:(A(e,0),l.events=Ci(i,l.events,l),l.events)}function d(t,e){return Li(g(t),e)}function g(t){return Ri(a,t)}function v(){const{line:t,column:e,offset:n,_index:o,_bufferIndex:i}=r;return{line:t,column:e,offset:n,_index:o,_bufferIndex:i}}function m(t){o[t.line]=t.column,C()}function y(){let t;for(;r._index<a.length;){const e=a[r._index];if("string"==typeof e)for(t=r._index,r._bufferIndex<0&&(r._bufferIndex=0);r._index===t&&r._bufferIndex<e.length;)b(e.charCodeAt(r._bufferIndex));else b(e)}}function b(t){c=void 0,p=t,f=f(t)}function x(t){Xo(t)?(r.line++,r.column=1,r.offset+=-3===t?2:1,C()):-1!==t&&(r.column++,r.offset++),r._bufferIndex<0?r._index++:(r._bufferIndex++,r._bufferIndex===a[r._index].length&&(r._bufferIndex=-1,r._index++)),l.previous=t,c=!0}function w(t,e){const n=e||{};return n.type=t,n.start=v(),l.events.push(["enter",n,l]),u.push(n),n}function k(t){const e=u.pop();return e.end=v(),l.events.push(["exit",e,l]),e}function S(t,e){A(t,e.from)}function E(t,e){e.restore()}function O(t,e){return n;function n(n,r,o){let i,a,u,f;return Array.isArray(n)?h(n):"tokenize"in n?h([n]):p(n);function p(t){return e;function e(e){const n=null!==e&&t[e],r=null!==e&&t.null,o=undefined;return h([...Array.isArray(n)?n:n?[n]:[],...Array.isArray(r)?r:r?[r]:[]])(e)}}function h(t){return i=t,a=0,0===t.length?o:d(t[a])}function d(t){return n;function n(n){return f=T(),u=t,t.partial||(l.currentConstruct=t),t.name&&l.parser.constructs.disable.null.includes(t.name)?v(n):t.tokenize.call(e?Object.assign(Object.create(l),e):l,s,g,v)(n)}}function g(e){return c=!0,t(u,f),r}function v(t){return c=!0,f.restore(),++a<i.length?d(i[a]):o}}}function A(t,e){t.resolveAll&&!i.includes(t)&&i.push(t),t.resolve&&_o(l.events,e,l.events.length-e,t.resolve(l.events.slice(e),l)),t.resolveTo&&(l.events=t.resolveTo(l.events,l))}function T(){const t=v(),e=l.previous,n=l.currentConstruct,o=l.events.length,i=Array.from(u);return{restore:a,from:o};function a(){r=t,l.previous=e,l.currentConstruct=n,l.events.length=o,u=i,C()}}function C(){r.line in o&&r.column<2&&(r.column=o[r.line],r.offset+=o[r.line]-1)}}function Ri(t,e){const n=e.start._index,r=e.start._bufferIndex,o=e.end._index,i=e.end._bufferIndex;let a;if(n===o)a=[t[n].slice(r,i)];else{if(a=t.slice(n,o),r>-1){const t=a[0];"string"==typeof t?a[0]=t.slice(r):a.shift()}i>0&&a.push(t[o].slice(0,i))}return a}function Li(t,e){let n=-1;const r=[];let o;for(;++n<t.length;){const i=t[n];let a;if("string"==typeof i)a=i;else switch(i){case-5:a="\r";break;case-4:a="\n";break;case-3:a="\r\n";break;case-2:a=e?" ":"\t";break;case-1:if(!e&&o)continue;a=" ";break;default:a=String.fromCharCode(i)}o=-2===i,r.push(a)}return r.join("")}const ji={name:"thematicBreak",tokenize:Ii};function Ii(t,e,n){let r=0,o;return i;function i(e){return t.enter("thematicBreak"),a(e)}function a(t){return o=t,u(t)}function u(i){return i===o?(t.enter("thematicBreakSequence"),c(i)):r>=3&&(null===i||Xo(i))?(t.exit("thematicBreak"),e(i)):n(i)}function c(e){return e===o?(t.consume(e),r++,c):(t.exit("thematicBreakSequence"),ti(e)?oi(t,u,"whitespace")(e):u(e))}}const Fi={name:"list",tokenize:Mi,continuation:{tokenize:Ni},exit:qi},Di={tokenize:Bi,partial:!0},_i={tokenize:Ui,partial:!0};function Mi(t,e,n){const r=this,o=r.events[r.events.length-1];let i=o&&"linePrefix"===o[1].type?o[2].sliceSerialize(o[1],!0).length:0,a=0;return u;function u(e){const o=r.containerState.type||(42===e||43===e||45===e?"listUnordered":"listOrdered");if("listUnordered"===o?!r.containerState.marker||e===r.containerState.marker:Ko(e)){if(r.containerState.type||(r.containerState.type=o,t.enter(o,{_container:!0})),"listUnordered"===o)return t.enter("listItemPrefix"),42===e||45===e?t.check(ji,n,s)(e):s(e);if(!r.interrupt||49===e)return t.enter("listItemPrefix"),t.enter("listItemValue"),c(e)}return n(e)}function c(e){return Ko(e)&&++a<10?(t.consume(e),c):(!r.interrupt||a<2)&&(r.containerState.marker?e===r.containerState.marker:41===e||46===e)?(t.exit("listItemValue"),s(e)):n(e)}function s(e){return t.enter("listItemMarker"),t.consume(e),t.exit("listItemMarker"),r.containerState.marker=r.containerState.marker||e,t.check(fi,r.interrupt?n:l,t.attempt(Di,p,f))}function l(t){return r.containerState.initialBlankLine=!0,i++,p(t)}function f(e){return ti(e)?(t.enter("listItemPrefixWhitespace"),t.consume(e),t.exit("listItemPrefixWhitespace"),p):n(e)}function p(n){return r.containerState.size=i+r.sliceSerialize(t.exit("listItemPrefix"),!0).length,e(n)}}function Ni(t,e,n){const r=this;return r.containerState._closeFlow=void 0,t.check(fi,o,i);function o(n){return r.containerState.furtherBlankLines=r.containerState.furtherBlankLines||r.containerState.initialBlankLine,oi(t,e,"listItemIndent",r.containerState.size+1)(n)}function i(n){return r.containerState.furtherBlankLines||!ti(n)?(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,a(n)):(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,t.attempt(_i,e,a)(n))}function a(o){return r.containerState._closeFlow=!0,r.interrupt=void 0,oi(t,t.attempt(Fi,e,n),"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(o)}}function Ui(t,e,n){const r=this;return oi(t,o,"listItemIndent",r.containerState.size+1);function o(t){const o=r.events[r.events.length-1];return o&&"listItemIndent"===o[1].type&&o[2].sliceSerialize(o[1],!0).length===r.containerState.size?e(t):n(t)}}function qi(t){t.exit(this.containerState.type)}function Bi(t,e,n){const r=this;return oi(t,o,"listItemPrefixWhitespace",r.parser.constructs.disable.null.includes("codeIndented")?void 0:5);function o(t){const o=r.events[r.events.length-1];return!ti(t)&&o&&"listItemPrefixWhitespace"===o[1].type?e(t):n(t)}}const zi={name:"blockQuote",tokenize:Hi,continuation:{tokenize:Vi},exit:$i};function Hi(t,e,n){const r=this;return o;function o(e){if(62===e){const n=r.containerState;return n.open||(t.enter("blockQuote",{_container:!0}),n.open=!0),t.enter("blockQuotePrefix"),t.enter("blockQuoteMarker"),t.consume(e),t.exit("blockQuoteMarker"),i}return n(e)}function i(n){return ti(n)?(t.enter("blockQuotePrefixWhitespace"),t.consume(n),t.exit("blockQuotePrefixWhitespace"),t.exit("blockQuotePrefix"),e):(t.exit("blockQuotePrefix"),e(n))}}function Vi(t,e,n){const r=this;return o;function o(e){return ti(e)?oi(t,i,"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(e):i(e)}function i(r){return t.attempt(zi,e,n)(r)}}function $i(t){t.exit("blockQuote")}function Gi(t,e,n,r,o,i,a,u,c){const s=c||Number.POSITIVE_INFINITY;let l=0;return f;function f(e){return 60===e?(t.enter(r),t.enter(o),t.enter(i),t.consume(e),t.exit(i),p):null===e||32===e||41===e||Yo(e)?n(e):(t.enter(r),t.enter(a),t.enter(u),t.enter("chunkString",{contentType:"string"}),g(e))}function p(n){return 62===n?(t.enter(i),t.consume(n),t.exit(i),t.exit(o),t.exit(r),e):(t.enter(u),t.enter("chunkString",{contentType:"string"}),h(n))}function h(e){return 62===e?(t.exit("chunkString"),t.exit(u),p(e)):null===e||60===e||Xo(e)?n(e):(t.consume(e),92===e?d:h)}function d(e){return 60===e||62===e||92===e?(t.consume(e),h):h(e)}function g(o){return l||null!==o&&41!==o&&!Zo(o)?l<s&&40===o?(t.consume(o),l++,g):41===o?(t.consume(o),l--,g):null===o||32===o||40===o||Yo(o)?n(o):(t.consume(o),92===o?v:g):(t.exit("chunkString"),t.exit(u),t.exit(a),t.exit(r),e(o))}function v(e){return 40===e||41===e||92===e?(t.consume(e),g):g(e)}}function Wi(t,e,n,r,o,i){const a=this;let u=0,c;return s;function s(e){return t.enter(r),t.enter(o),t.consume(e),t.exit(o),t.enter(i),l}function l(s){return u>999||null===s||91===s||93===s&&!c||94===s&&!u&&"_hiddenFootnoteSupport"in a.parser.constructs?n(s):93===s?(t.exit(i),t.enter(o),t.consume(s),t.exit(o),t.exit(r),e):Xo(s)?(t.enter("lineEnding"),t.consume(s),t.exit("lineEnding"),l):(t.enter("chunkString",{contentType:"string"}),f(s))}function f(e){return null===e||91===e||93===e||Xo(e)||u++>999?(t.exit("chunkString"),l(e)):(t.consume(e),c||(c=!ti(e)),92===e?p:f)}function p(e){return 91===e||92===e||93===e?(t.consume(e),u++,f):f(e)}}function Yi(t,e,n,r,o,i){let a;return u;function u(e){return 34===e||39===e||40===e?(t.enter(r),t.enter(o),t.consume(e),t.exit(o),a=40===e?41:e,c):n(e)}function c(n){return n===a?(t.enter(o),t.consume(n),t.exit(o),t.exit(r),e):(t.enter(i),s(n))}function s(e){return e===a?(t.exit(i),c(a)):null===e?n(e):Xo(e)?(t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),oi(t,s,"linePrefix")):(t.enter("chunkString",{contentType:"string"}),l(e))}function l(e){return e===a||null===e||Xo(e)?(t.exit("chunkString"),s(e)):(t.consume(e),92===e?f:l)}function f(e){return e===a||92===e?(t.consume(e),l):l(e)}}function Ki(t,e){let n;return r;function r(o){return Xo(o)?(t.enter("lineEnding"),t.consume(o),t.exit("lineEnding"),n=!0,r):ti(o)?oi(t,r,n?"linePrefix":"lineSuffix")(o):e(o)}}function Ji(t){return t.replace(/[\t\n\r ]+/g," ").replace(/^ | $/g,"").toLowerCase().toUpperCase()}const Qi=undefined,Xi={tokenize:ta,partial:!0};function Zi(t,e,n){const r=this;let o;return i;function i(e){return t.enter("definition"),a(e)}function a(e){return Wi.call(r,t,u,n,"definitionLabel","definitionLabelMarker","definitionLabelString")(e)}function u(e){return o=Ji(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)),58===e?(t.enter("definitionMarker"),t.consume(e),t.exit("definitionMarker"),c):n(e)}function c(e){return Zo(e)?Ki(t,s)(e):s(e)}function s(e){return Gi(t,l,n,"definitionDestination","definitionDestinationLiteral","definitionDestinationLiteralMarker","definitionDestinationRaw","definitionDestinationString")(e)}function l(e){return t.attempt(Xi,f,f)(e)}function f(e){return ti(e)?oi(t,p,"whitespace")(e):p(e)}function p(i){return null===i||Xo(i)?(t.exit("definition"),r.parser.defined.push(o),e(i)):n(i)}}function ta(t,e,n){return r;function r(e){return Zo(e)?Ki(t,o)(e):n(e)}function o(e){return Yi(t,i,n,"definitionTitle","definitionTitleMarker","definitionTitleString")(e)}function i(e){return ti(e)?oi(t,a,"whitespace")(e):a(e)}function a(t){return null===t||Xo(t)?e(t):n(t)}}const ea={name:"codeIndented",tokenize:ra},na={tokenize:oa,partial:!0};function ra(t,e,n){const r=this;return o;function o(e){return t.enter("codeIndented"),oi(t,i,"linePrefix",5)(e)}function i(t){const e=r.events[r.events.length-1];return e&&"linePrefix"===e[1].type&&e[2].sliceSerialize(e[1],!0).length>=4?a(t):n(t)}function a(e){return null===e?c(e):Xo(e)?t.attempt(na,a,c)(e):(t.enter("codeFlowValue"),u(e))}function u(e){return null===e||Xo(e)?(t.exit("codeFlowValue"),a(e)):(t.consume(e),u)}function c(n){return t.exit("codeIndented"),e(n)}}function oa(t,e,n){const r=this;return o;function o(e){return r.parser.lazy[r.now().line]?n(e):Xo(e)?(t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),o):oi(t,i,"linePrefix",5)(e)}function i(t){const i=r.events[r.events.length-1];return i&&"linePrefix"===i[1].type&&i[2].sliceSerialize(i[1],!0).length>=4?e(t):Xo(t)?o(t):n(t)}}const ia=undefined;function aa(t,e){let n=t.length-2,r=3,o,i;return"whitespace"===t[r][1].type&&(r+=2),n-2>r&&"whitespace"===t[n][1].type&&(n-=2),"atxHeadingSequence"===t[n][1].type&&(r===n-1||n-4>r&&"whitespace"===t[n-2][1].type)&&(n-=r+1===n?2:4),n>r&&(o={type:"atxHeadingText",start:t[r][1].start,end:t[n][1].end},i={type:"chunkText",start:t[r][1].start,end:t[n][1].end,contentType:"text"},_o(t,r,n-r+1,[["enter",o,e],["enter",i,e],["exit",i,e],["exit",o,e]])),t}function ua(t,e,n){let r=0;return o;function o(e){return t.enter("atxHeading"),i(e)}function i(e){return t.enter("atxHeadingSequence"),a(e)}function a(e){return 35===e&&r++<6?(t.consume(e),a):null===e||Zo(e)?(t.exit("atxHeadingSequence"),u(e)):n(e)}function u(n){return 35===n?(t.enter("atxHeadingSequence"),c(n)):null===n||Xo(n)?(t.exit("atxHeading"),e(n)):ti(n)?oi(t,u,"whitespace")(n):(t.enter("atxHeadingText"),s(n))}function c(e){return 35===e?(t.consume(e),c):(t.exit("atxHeadingSequence"),u(e))}function s(e){return null===e||35===e||Zo(e)?(t.exit("atxHeadingText"),u(e)):(t.consume(e),s)}}const ca={name:"setextUnderline",tokenize:la,resolveTo:sa};function sa(t,e){let n=t.length,r,o,i;for(;n--;)if("enter"===t[n][0]){if("content"===t[n][1].type){r=n;break}"paragraph"===t[n][1].type&&(o=n)}else"content"===t[n][1].type&&t.splice(n,1),i||"definition"!==t[n][1].type||(i=n);const a={type:"setextHeading",start:Object.assign({},t[o][1].start),end:Object.assign({},t[t.length-1][1].end)};return t[o][1].type="setextHeadingText",i?(t.splice(o,0,["enter",a,e]),t.splice(i+1,0,["exit",t[r][1],e]),t[r][1].end=Object.assign({},t[i][1].end)):t[r][1]=a,t.push(["exit",a,e]),t}function la(t,e,n){const r=this;let o;return i;function i(e){let i=r.events.length,u;for(;i--;)if("lineEnding"!==r.events[i][1].type&&"linePrefix"!==r.events[i][1].type&&"content"!==r.events[i][1].type){u="paragraph"===r.events[i][1].type;break}return r.parser.lazy[r.now().line]||!r.interrupt&&!u?n(e):(t.enter("setextHeadingLine"),o=e,a(e))}function a(e){return t.enter("setextHeadingLineSequence"),u(e)}function u(e){return e===o?(t.consume(e),u):(t.exit("setextHeadingLineSequence"),ti(e)?oi(t,c,"lineSuffix")(e):c(e))}function c(r){return null===r||Xo(r)?(t.exit("setextHeadingLine"),e(r)):n(r)}}const fa=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],pa=["pre","script","style","textarea"],ha=undefined,da={tokenize:ba,partial:!0},ga={tokenize:ya,partial:!0};function va(t){let e=t.length;for(;e--&&("enter"!==t[e][0]||"htmlFlow"!==t[e][1].type););return e>1&&"linePrefix"===t[e-2][1].type&&(t[e][1].start=t[e-2][1].start,t[e+1][1].start=t[e-2][1].start,t.splice(e-2,2)),t}function ma(t,e,n){const r=this;let o,i,a,u,c;return s;function s(t){return l(t)}function l(e){return t.enter("htmlFlow"),t.enter("htmlFlowData"),t.consume(e),f}function f(u){return 33===u?(t.consume(u),p):47===u?(t.consume(u),i=!0,g):63===u?(t.consume(u),o=3,r.interrupt?e:_):$o(u)?(t.consume(u),a=String.fromCharCode(u),v):n(u)}function p(i){return 45===i?(t.consume(i),o=2,h):91===i?(t.consume(i),o=5,u=0,d):$o(i)?(t.consume(i),o=4,r.interrupt?e:_):n(i)}function h(o){return 45===o?(t.consume(o),r.interrupt?e:_):n(o)}function d(o){const i="CDATA[";return o===i.charCodeAt(u++)?(t.consume(o),u===i.length?r.interrupt?e:C:d):n(o)}function g(e){return $o(e)?(t.consume(e),a=String.fromCharCode(e),v):n(e)}function v(u){if(null===u||47===u||62===u||Zo(u)){const c=47===u,s=a.toLowerCase();return c||i||!pa.includes(s)?fa.includes(a.toLowerCase())?(o=6,c?(t.consume(u),m):r.interrupt?e(u):C(u)):(o=7,r.interrupt&&!r.parser.lazy[r.now().line]?n(u):i?y(u):b(u)):(o=1,r.interrupt?e(u):C(u))}return 45===u||Go(u)?(t.consume(u),a+=String.fromCharCode(u),v):n(u)}function m(o){return 62===o?(t.consume(o),r.interrupt?e:C):n(o)}function y(e){return ti(e)?(t.consume(e),y):A(e)}function b(e){return 47===e?(t.consume(e),A):58===e||95===e||$o(e)?(t.consume(e),x):ti(e)?(t.consume(e),b):A(e)}function x(e){return 45===e||46===e||58===e||95===e||Go(e)?(t.consume(e),x):w(e)}function w(e){return 61===e?(t.consume(e),k):ti(e)?(t.consume(e),w):b(e)}function k(e){return null===e||60===e||61===e||62===e||96===e?n(e):34===e||39===e?(t.consume(e),c=e,S):ti(e)?(t.consume(e),k):E(e)}function S(e){return e===c?(t.consume(e),c=null,O):null===e||Xo(e)?n(e):(t.consume(e),S)}function E(e){return null===e||34===e||39===e||47===e||60===e||61===e||62===e||96===e||Zo(e)?w(e):(t.consume(e),E)}function O(t){return 47===t||62===t||ti(t)?b(t):n(t)}function A(e){return 62===e?(t.consume(e),T):n(e)}function T(e){return null===e||Xo(e)?C(e):ti(e)?(t.consume(e),T):n(e)}function C(e){return 45===e&&2===o?(t.consume(e),j):60===e&&1===o?(t.consume(e),I):62===e&&4===o?(t.consume(e),M):63===e&&3===o?(t.consume(e),_):93===e&&5===o?(t.consume(e),D):!Xo(e)||6!==o&&7!==o?null===e||Xo(e)?(t.exit("htmlFlowData"),P(e)):(t.consume(e),C):(t.exit("htmlFlowData"),t.check(da,N,P)(e))}function P(e){return t.check(ga,R,N)(e)}function R(e){return t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),L}function L(e){return null===e||Xo(e)?P(e):(t.enter("htmlFlowData"),C(e))}function j(e){return 45===e?(t.consume(e),_):C(e)}function I(e){return 47===e?(t.consume(e),a="",F):C(e)}function F(e){if(62===e){const n=a.toLowerCase();return pa.includes(n)?(t.consume(e),M):C(e)}return $o(e)&&a.length<8?(t.consume(e),a+=String.fromCharCode(e),F):C(e)}function D(e){return 93===e?(t.consume(e),_):C(e)}function _(e){return 62===e?(t.consume(e),M):45===e&&2===o?(t.consume(e),_):C(e)}function M(e){return null===e||Xo(e)?(t.exit("htmlFlowData"),N(e)):(t.consume(e),M)}function N(n){return t.exit("htmlFlow"),e(n)}}function ya(t,e,n){const r=this;return o;function o(e){return Xo(e)?(t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),i):n(e)}function i(t){return r.parser.lazy[r.now().line]?n(t):e(t)}}function ba(t,e,n){return r;function r(r){return t.enter("lineEnding"),t.consume(r),t.exit("lineEnding"),t.attempt(fi,e,n)}}const xa={tokenize:Sa,partial:!0},wa={name:"codeFenced",tokenize:ka,concrete:!0};function ka(t,e,n){const r=this,o={tokenize:w,partial:!0};let i=0,a=0,u;return c;function c(t){return s(t)}function s(e){const n=r.events[r.events.length-1];return i=n&&"linePrefix"===n[1].type?n[2].sliceSerialize(n[1],!0).length:0,u=e,t.enter("codeFenced"),t.enter("codeFencedFence"),t.enter("codeFencedFenceSequence"),l(e)}function l(e){return e===u?(a++,t.consume(e),l):a<3?n(e):(t.exit("codeFencedFenceSequence"),ti(e)?oi(t,f,"whitespace")(e):f(e))}function f(n){return null===n||Xo(n)?(t.exit("codeFencedFence"),r.interrupt?e(n):t.check(xa,g,x)(n)):(t.enter("codeFencedFenceInfo"),t.enter("chunkString",{contentType:"string"}),p(n))}function p(e){return null===e||Xo(e)?(t.exit("chunkString"),t.exit("codeFencedFenceInfo"),f(e)):ti(e)?(t.exit("chunkString"),t.exit("codeFencedFenceInfo"),oi(t,h,"whitespace")(e)):96===e&&e===u?n(e):(t.consume(e),p)}function h(e){return null===e||Xo(e)?f(e):(t.enter("codeFencedFenceMeta"),t.enter("chunkString",{contentType:"string"}),d(e))}function d(e){return null===e||Xo(e)?(t.exit("chunkString"),t.exit("codeFencedFenceMeta"),f(e)):96===e&&e===u?n(e):(t.consume(e),d)}function g(e){return t.attempt(o,x,v)(e)}function v(e){return t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),m}function m(e){return i>0&&ti(e)?oi(t,y,"linePrefix",i+1)(e):y(e)}function y(e){return null===e||Xo(e)?t.check(xa,g,x)(e):(t.enter("codeFlowValue"),b(e))}function b(e){return null===e||Xo(e)?(t.exit("codeFlowValue"),y(e)):(t.consume(e),b)}function x(n){return t.exit("codeFenced"),e(n)}function w(t,e,n){let o=0;return i;function i(e){return t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),c}function c(e){return t.enter("codeFencedFence"),ti(e)?oi(t,s,"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(e):s(e)}function s(e){return e===u?(t.enter("codeFencedFenceSequence"),l(e)):n(e)}function l(e){return e===u?(o++,t.consume(e),l):o>=a?(t.exit("codeFencedFenceSequence"),ti(e)?oi(t,f,"whitespace")(e):f(e)):n(e)}function f(r){return null===r||Xo(r)?(t.exit("codeFencedFence"),e(r)):n(r)}}}function Sa(t,e,n){const r=this;return o;function o(e){return null===e?n(e):(t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),i)}function i(t){return r.parser.lazy[r.now().line]?n(t):e(t)}}const Ea={AElig:"\xc6",AMP:"&",Aacute:"\xc1",Abreve:"\u0102",Acirc:"\xc2",Acy:"\u0410",Afr:"\ud835\udd04",Agrave:"\xc0",Alpha:"\u0391",Amacr:"\u0100",And:"\u2a53",Aogon:"\u0104",Aopf:"\ud835\udd38",ApplyFunction:"\u2061",Aring:"\xc5",Ascr:"\ud835\udc9c",Assign:"\u2254",Atilde:"\xc3",Auml:"\xc4",Backslash:"\u2216",Barv:"\u2ae7",Barwed:"\u2306",Bcy:"\u0411",Because:"\u2235",Bernoullis:"\u212c",Beta:"\u0392",Bfr:"\ud835\udd05",Bopf:"\ud835\udd39",Breve:"\u02d8",Bscr:"\u212c",Bumpeq:"\u224e",CHcy:"\u0427",COPY:"\xa9",Cacute:"\u0106",Cap:"\u22d2",CapitalDifferentialD:"\u2145",Cayleys:"\u212d",Ccaron:"\u010c",Ccedil:"\xc7",Ccirc:"\u0108",Cconint:"\u2230",Cdot:"\u010a",Cedilla:"\xb8",CenterDot:"\xb7",Cfr:"\u212d",Chi:"\u03a7",CircleDot:"\u2299",CircleMinus:"\u2296",CirclePlus:"\u2295",CircleTimes:"\u2297",ClockwiseContourIntegral:"\u2232",CloseCurlyDoubleQuote:"\u201d",CloseCurlyQuote:"\u2019",Colon:"\u2237",Colone:"\u2a74",Congruent:"\u2261",Conint:"\u222f",ContourIntegral:"\u222e",Copf:"\u2102",Coproduct:"\u2210",CounterClockwiseContourIntegral:"\u2233",Cross:"\u2a2f",Cscr:"\ud835\udc9e",Cup:"\u22d3",CupCap:"\u224d",DD:"\u2145",DDotrahd:"\u2911",DJcy:"\u0402",DScy:"\u0405",DZcy:"\u040f",Dagger:"\u2021",Darr:"\u21a1",Dashv:"\u2ae4",Dcaron:"\u010e",Dcy:"\u0414",Del:"\u2207",Delta:"\u0394",Dfr:"\ud835\udd07",DiacriticalAcute:"\xb4",DiacriticalDot:"\u02d9",DiacriticalDoubleAcute:"\u02dd",DiacriticalGrave:"`",DiacriticalTilde:"\u02dc",Diamond:"\u22c4",DifferentialD:"\u2146",Dopf:"\ud835\udd3b",Dot:"\xa8",DotDot:"\u20dc",DotEqual:"\u2250",DoubleContourIntegral:"\u222f",DoubleDot:"\xa8",DoubleDownArrow:"\u21d3",DoubleLeftArrow:"\u21d0",DoubleLeftRightArrow:"\u21d4",DoubleLeftTee:"\u2ae4",DoubleLongLeftArrow:"\u27f8",DoubleLongLeftRightArrow:"\u27fa",DoubleLongRightArrow:"\u27f9",DoubleRightArrow:"\u21d2",DoubleRightTee:"\u22a8",DoubleUpArrow:"\u21d1",DoubleUpDownArrow:"\u21d5",DoubleVerticalBar:"\u2225",DownArrow:"\u2193",DownArrowBar:"\u2913",DownArrowUpArrow:"\u21f5",DownBreve:"\u0311",DownLeftRightVector:"\u2950",DownLeftTeeVector:"\u295e",DownLeftVector:"\u21bd",DownLeftVectorBar:"\u2956",DownRightTeeVector:"\u295f",DownRightVector:"\u21c1",DownRightVectorBar:"\u2957",DownTee:"\u22a4",DownTeeArrow:"\u21a7",Downarrow:"\u21d3",Dscr:"\ud835\udc9f",Dstrok:"\u0110",ENG:"\u014a",ETH:"\xd0",Eacute:"\xc9",Ecaron:"\u011a",Ecirc:"\xca",Ecy:"\u042d",Edot:"\u0116",Efr:"\ud835\udd08",Egrave:"\xc8",Element:"\u2208",Emacr:"\u0112",EmptySmallSquare:"\u25fb",EmptyVerySmallSquare:"\u25ab",Eogon:"\u0118",Eopf:"\ud835\udd3c",Epsilon:"\u0395",Equal:"\u2a75",EqualTilde:"\u2242",Equilibrium:"\u21cc",Escr:"\u2130",Esim:"\u2a73",Eta:"\u0397",Euml:"\xcb",Exists:"\u2203",ExponentialE:"\u2147",Fcy:"\u0424",Ffr:"\ud835\udd09",FilledSmallSquare:"\u25fc",FilledVerySmallSquare:"\u25aa",Fopf:"\ud835\udd3d",ForAll:"\u2200",Fouriertrf:"\u2131",Fscr:"\u2131",GJcy:"\u0403",GT:">",Gamma:"\u0393",Gammad:"\u03dc",Gbreve:"\u011e",Gcedil:"\u0122",Gcirc:"\u011c",Gcy:"\u0413",Gdot:"\u0120",Gfr:"\ud835\udd0a",Gg:"\u22d9",Gopf:"\ud835\udd3e",GreaterEqual:"\u2265",GreaterEqualLess:"\u22db",GreaterFullEqual:"\u2267",GreaterGreater:"\u2aa2",GreaterLess:"\u2277",GreaterSlantEqual:"\u2a7e",GreaterTilde:"\u2273",Gscr:"\ud835\udca2",Gt:"\u226b",HARDcy:"\u042a",Hacek:"\u02c7",Hat:"^",Hcirc:"\u0124",Hfr:"\u210c",HilbertSpace:"\u210b",Hopf:"\u210d",HorizontalLine:"\u2500",Hscr:"\u210b",Hstrok:"\u0126",HumpDownHump:"\u224e",HumpEqual:"\u224f",IEcy:"\u0415",IJlig:"\u0132",IOcy:"\u0401",Iacute:"\xcd",Icirc:"\xce",Icy:"\u0418",Idot:"\u0130",Ifr:"\u2111",Igrave:"\xcc",Im:"\u2111",Imacr:"\u012a",ImaginaryI:"\u2148",Implies:"\u21d2",Int:"\u222c",Integral:"\u222b",Intersection:"\u22c2",InvisibleComma:"\u2063",InvisibleTimes:"\u2062",Iogon:"\u012e",Iopf:"\ud835\udd40",Iota:"\u0399",Iscr:"\u2110",Itilde:"\u0128",Iukcy:"\u0406",Iuml:"\xcf",Jcirc:"\u0134",Jcy:"\u0419",Jfr:"\ud835\udd0d",Jopf:"\ud835\udd41",Jscr:"\ud835\udca5",Jsercy:"\u0408",Jukcy:"\u0404",KHcy:"\u0425",KJcy:"\u040c",Kappa:"\u039a",Kcedil:"\u0136",Kcy:"\u041a",Kfr:"\ud835\udd0e",Kopf:"\ud835\udd42",Kscr:"\ud835\udca6",LJcy:"\u0409",LT:"<",Lacute:"\u0139",Lambda:"\u039b",Lang:"\u27ea",Laplacetrf:"\u2112",Larr:"\u219e",Lcaron:"\u013d",Lcedil:"\u013b",Lcy:"\u041b",LeftAngleBracket:"\u27e8",LeftArrow:"\u2190",LeftArrowBar:"\u21e4",LeftArrowRightArrow:"\u21c6",LeftCeiling:"\u2308",LeftDoubleBracket:"\u27e6",LeftDownTeeVector:"\u2961",LeftDownVector:"\u21c3",LeftDownVectorBar:"\u2959",LeftFloor:"\u230a",LeftRightArrow:"\u2194",LeftRightVector:"\u294e",LeftTee:"\u22a3",LeftTeeArrow:"\u21a4",LeftTeeVector:"\u295a",LeftTriangle:"\u22b2",LeftTriangleBar:"\u29cf",LeftTriangleEqual:"\u22b4",LeftUpDownVector:"\u2951",LeftUpTeeVector:"\u2960",LeftUpVector:"\u21bf",LeftUpVectorBar:"\u2958",LeftVector:"\u21bc",LeftVectorBar:"\u2952",Leftarrow:"\u21d0",Leftrightarrow:"\u21d4",LessEqualGreater:"\u22da",LessFullEqual:"\u2266",LessGreater:"\u2276",LessLess:"\u2aa1",LessSlantEqual:"\u2a7d",LessTilde:"\u2272",Lfr:"\ud835\udd0f",Ll:"\u22d8",Lleftarrow:"\u21da",Lmidot:"\u013f",LongLeftArrow:"\u27f5",LongLeftRightArrow:"\u27f7",LongRightArrow:"\u27f6",Longleftarrow:"\u27f8",Longleftrightarrow:"\u27fa",Longrightarrow:"\u27f9",Lopf:"\ud835\udd43",LowerLeftArrow:"\u2199",LowerRightArrow:"\u2198",Lscr:"\u2112",Lsh:"\u21b0",Lstrok:"\u0141",Lt:"\u226a",Map:"\u2905",Mcy:"\u041c",MediumSpace:"\u205f",Mellintrf:"\u2133",Mfr:"\ud835\udd10",MinusPlus:"\u2213",Mopf:"\ud835\udd44",Mscr:"\u2133",Mu:"\u039c",NJcy:"\u040a",Nacute:"\u0143",Ncaron:"\u0147",Ncedil:"\u0145",Ncy:"\u041d",NegativeMediumSpace:"\u200b",NegativeThickSpace:"\u200b",NegativeThinSpace:"\u200b",NegativeVeryThinSpace:"\u200b",NestedGreaterGreater:"\u226b",NestedLessLess:"\u226a",NewLine:"\n",Nfr:"\ud835\udd11",NoBreak:"\u2060",NonBreakingSpace:"\xa0",Nopf:"\u2115",Not:"\u2aec",NotCongruent:"\u2262",NotCupCap:"\u226d",NotDoubleVerticalBar:"\u2226",NotElement:"\u2209",NotEqual:"\u2260",NotEqualTilde:"\u2242\u0338",NotExists:"\u2204",NotGreater:"\u226f",NotGreaterEqual:"\u2271",NotGreaterFullEqual:"\u2267\u0338",NotGreaterGreater:"\u226b\u0338",NotGreaterLess:"\u2279",NotGreaterSlantEqual:"\u2a7e\u0338",NotGreaterTilde:"\u2275",NotHumpDownHump:"\u224e\u0338",NotHumpEqual:"\u224f\u0338",NotLeftTriangle:"\u22ea",NotLeftTriangleBar:"\u29cf\u0338",NotLeftTriangleEqual:"\u22ec",NotLess:"\u226e",NotLessEqual:"\u2270",NotLessGreater:"\u2278",NotLessLess:"\u226a\u0338",NotLessSlantEqual:"\u2a7d\u0338",NotLessTilde:"\u2274",NotNestedGreaterGreater:"\u2aa2\u0338",NotNestedLessLess:"\u2aa1\u0338",NotPrecedes:"\u2280",NotPrecedesEqual:"\u2aaf\u0338",NotPrecedesSlantEqual:"\u22e0",NotReverseElement:"\u220c",NotRightTriangle:"\u22eb",NotRightTriangleBar:"\u29d0\u0338",NotRightTriangleEqual:"\u22ed",NotSquareSubset:"\u228f\u0338",NotSquareSubsetEqual:"\u22e2",NotSquareSuperset:"\u2290\u0338",NotSquareSupersetEqual:"\u22e3",NotSubset:"\u2282\u20d2",NotSubsetEqual:"\u2288",NotSucceeds:"\u2281",NotSucceedsEqual:"\u2ab0\u0338",NotSucceedsSlantEqual:"\u22e1",NotSucceedsTilde:"\u227f\u0338",NotSuperset:"\u2283\u20d2",NotSupersetEqual:"\u2289",NotTilde:"\u2241",NotTildeEqual:"\u2244",NotTildeFullEqual:"\u2247",NotTildeTilde:"\u2249",NotVerticalBar:"\u2224",Nscr:"\ud835\udca9",Ntilde:"\xd1",Nu:"\u039d",OElig:"\u0152",Oacute:"\xd3",Ocirc:"\xd4",Ocy:"\u041e",Odblac:"\u0150",Ofr:"\ud835\udd12",Ograve:"\xd2",Omacr:"\u014c",Omega:"\u03a9",Omicron:"\u039f",Oopf:"\ud835\udd46",OpenCurlyDoubleQuote:"\u201c",OpenCurlyQuote:"\u2018",Or:"\u2a54",Oscr:"\ud835\udcaa",Oslash:"\xd8",Otilde:"\xd5",Otimes:"\u2a37",Ouml:"\xd6",OverBar:"\u203e",OverBrace:"\u23de",OverBracket:"\u23b4",OverParenthesis:"\u23dc",PartialD:"\u2202",Pcy:"\u041f",Pfr:"\ud835\udd13",Phi:"\u03a6",Pi:"\u03a0",PlusMinus:"\xb1",Poincareplane:"\u210c",Popf:"\u2119",Pr:"\u2abb",Precedes:"\u227a",PrecedesEqual:"\u2aaf",PrecedesSlantEqual:"\u227c",PrecedesTilde:"\u227e",Prime:"\u2033",Product:"\u220f",Proportion:"\u2237",Proportional:"\u221d",Pscr:"\ud835\udcab",Psi:"\u03a8",QUOT:'"',Qfr:"\ud835\udd14",Qopf:"\u211a",Qscr:"\ud835\udcac",RBarr:"\u2910",REG:"\xae",Racute:"\u0154",Rang:"\u27eb",Rarr:"\u21a0",Rarrtl:"\u2916",Rcaron:"\u0158",Rcedil:"\u0156",Rcy:"\u0420",Re:"\u211c",ReverseElement:"\u220b",ReverseEquilibrium:"\u21cb",ReverseUpEquilibrium:"\u296f",Rfr:"\u211c",Rho:"\u03a1",RightAngleBracket:"\u27e9",RightArrow:"\u2192",RightArrowBar:"\u21e5",RightArrowLeftArrow:"\u21c4",RightCeiling:"\u2309",RightDoubleBracket:"\u27e7",RightDownTeeVector:"\u295d",RightDownVector:"\u21c2",RightDownVectorBar:"\u2955",RightFloor:"\u230b",RightTee:"\u22a2",RightTeeArrow:"\u21a6",RightTeeVector:"\u295b",RightTriangle:"\u22b3",RightTriangleBar:"\u29d0",RightTriangleEqual:"\u22b5",RightUpDownVector:"\u294f",RightUpTeeVector:"\u295c",RightUpVector:"\u21be",RightUpVectorBar:"\u2954",RightVector:"\u21c0",RightVectorBar:"\u2953",Rightarrow:"\u21d2",Ropf:"\u211d",RoundImplies:"\u2970",Rrightarrow:"\u21db",Rscr:"\u211b",Rsh:"\u21b1",RuleDelayed:"\u29f4",SHCHcy:"\u0429",SHcy:"\u0428",SOFTcy:"\u042c",Sacute:"\u015a",Sc:"\u2abc",Scaron:"\u0160",Scedil:"\u015e",Scirc:"\u015c",Scy:"\u0421",Sfr:"\ud835\udd16",ShortDownArrow:"\u2193",ShortLeftArrow:"\u2190",ShortRightArrow:"\u2192",ShortUpArrow:"\u2191",Sigma:"\u03a3",SmallCircle:"\u2218",Sopf:"\ud835\udd4a",Sqrt:"\u221a",Square:"\u25a1",SquareIntersection:"\u2293",SquareSubset:"\u228f",SquareSubsetEqual:"\u2291",SquareSuperset:"\u2290",SquareSupersetEqual:"\u2292",SquareUnion:"\u2294",Sscr:"\ud835\udcae",Star:"\u22c6",Sub:"\u22d0",Subset:"\u22d0",SubsetEqual:"\u2286",Succeeds:"\u227b",SucceedsEqual:"\u2ab0",SucceedsSlantEqual:"\u227d",SucceedsTilde:"\u227f",SuchThat:"\u220b",Sum:"\u2211",Sup:"\u22d1",Superset:"\u2283",SupersetEqual:"\u2287",Supset:"\u22d1",THORN:"\xde",TRADE:"\u2122",TSHcy:"\u040b",TScy:"\u0426",Tab:"\t",Tau:"\u03a4",Tcaron:"\u0164",Tcedil:"\u0162",Tcy:"\u0422",Tfr:"\ud835\udd17",Therefore:"\u2234",Theta:"\u0398",ThickSpace:"\u205f\u200a",ThinSpace:"\u2009",Tilde:"\u223c",TildeEqual:"\u2243",TildeFullEqual:"\u2245",TildeTilde:"\u2248",Topf:"\ud835\udd4b",TripleDot:"\u20db",Tscr:"\ud835\udcaf",Tstrok:"\u0166",Uacute:"\xda",Uarr:"\u219f",Uarrocir:"\u2949",Ubrcy:"\u040e",Ubreve:"\u016c",Ucirc:"\xdb",Ucy:"\u0423",Udblac:"\u0170",Ufr:"\ud835\udd18",Ugrave:"\xd9",Umacr:"\u016a",UnderBar:"_",UnderBrace:"\u23df",UnderBracket:"\u23b5",UnderParenthesis:"\u23dd",Union:"\u22c3",UnionPlus:"\u228e",Uogon:"\u0172",Uopf:"\ud835\udd4c",UpArrow:"\u2191",UpArrowBar:"\u2912",UpArrowDownArrow:"\u21c5",UpDownArrow:"\u2195",UpEquilibrium:"\u296e",UpTee:"\u22a5",UpTeeArrow:"\u21a5",Uparrow:"\u21d1",Updownarrow:"\u21d5",UpperLeftArrow:"\u2196",UpperRightArrow:"\u2197",Upsi:"\u03d2",Upsilon:"\u03a5",Uring:"\u016e",Uscr:"\ud835\udcb0",Utilde:"\u0168",Uuml:"\xdc",VDash:"\u22ab",Vbar:"\u2aeb",Vcy:"\u0412",Vdash:"\u22a9",Vdashl:"\u2ae6",Vee:"\u22c1",Verbar:"\u2016",Vert:"\u2016",VerticalBar:"\u2223",VerticalLine:"|",VerticalSeparator:"\u2758",VerticalTilde:"\u2240",VeryThinSpace:"\u200a",Vfr:"\ud835\udd19",Vopf:"\ud835\udd4d",Vscr:"\ud835\udcb1",Vvdash:"\u22aa",Wcirc:"\u0174",Wedge:"\u22c0",Wfr:"\ud835\udd1a",Wopf:"\ud835\udd4e",Wscr:"\ud835\udcb2",Xfr:"\ud835\udd1b",Xi:"\u039e",Xopf:"\ud835\udd4f",Xscr:"\ud835\udcb3",YAcy:"\u042f",YIcy:"\u0407",YUcy:"\u042e",Yacute:"\xdd",Ycirc:"\u0176",Ycy:"\u042b",Yfr:"\ud835\udd1c",Yopf:"\ud835\udd50",Yscr:"\ud835\udcb4",Yuml:"\u0178",ZHcy:"\u0416",Zacute:"\u0179",Zcaron:"\u017d",Zcy:"\u0417",Zdot:"\u017b",ZeroWidthSpace:"\u200b",Zeta:"\u0396",Zfr:"\u2128",Zopf:"\u2124",Zscr:"\ud835\udcb5",aacute:"\xe1",abreve:"\u0103",ac:"\u223e",acE:"\u223e\u0333",acd:"\u223f",acirc:"\xe2",acute:"\xb4",acy:"\u0430",aelig:"\xe6",af:"\u2061",afr:"\ud835\udd1e",agrave:"\xe0",alefsym:"\u2135",aleph:"\u2135",alpha:"\u03b1",amacr:"\u0101",amalg:"\u2a3f",amp:"&",and:"\u2227",andand:"\u2a55",andd:"\u2a5c",andslope:"\u2a58",andv:"\u2a5a",ang:"\u2220",ange:"\u29a4",angle:"\u2220",angmsd:"\u2221",angmsdaa:"\u29a8",angmsdab:"\u29a9",angmsdac:"\u29aa",angmsdad:"\u29ab",angmsdae:"\u29ac",angmsdaf:"\u29ad",angmsdag:"\u29ae",angmsdah:"\u29af",angrt:"\u221f",angrtvb:"\u22be",angrtvbd:"\u299d",angsph:"\u2222",angst:"\xc5",angzarr:"\u237c",aogon:"\u0105",aopf:"\ud835\udd52",ap:"\u2248",apE:"\u2a70",apacir:"\u2a6f",ape:"\u224a",apid:"\u224b",apos:"'",approx:"\u2248",approxeq:"\u224a",aring:"\xe5",ascr:"\ud835\udcb6",ast:"*",asymp:"\u2248",asympeq:"\u224d",atilde:"\xe3",auml:"\xe4",awconint:"\u2233",awint:"\u2a11",bNot:"\u2aed",backcong:"\u224c",backepsilon:"\u03f6",backprime:"\u2035",backsim:"\u223d",backsimeq:"\u22cd",barvee:"\u22bd",barwed:"\u2305",barwedge:"\u2305",bbrk:"\u23b5",bbrktbrk:"\u23b6",bcong:"\u224c",bcy:"\u0431",bdquo:"\u201e",becaus:"\u2235",because:"\u2235",bemptyv:"\u29b0",bepsi:"\u03f6",bernou:"\u212c",beta:"\u03b2",beth:"\u2136",between:"\u226c",bfr:"\ud835\udd1f",bigcap:"\u22c2",bigcirc:"\u25ef",bigcup:"\u22c3",bigodot:"\u2a00",bigoplus:"\u2a01",bigotimes:"\u2a02",bigsqcup:"\u2a06",bigstar:"\u2605",bigtriangledown:"\u25bd",bigtriangleup:"\u25b3",biguplus:"\u2a04",bigvee:"\u22c1",bigwedge:"\u22c0",bkarow:"\u290d",blacklozenge:"\u29eb",blacksquare:"\u25aa",blacktriangle:"\u25b4",blacktriangledown:"\u25be",blacktriangleleft:"\u25c2",blacktriangleright:"\u25b8",blank:"\u2423",blk12:"\u2592",blk14:"\u2591",blk34:"\u2593",block:"\u2588",bne:"=\u20e5",bnequiv:"\u2261\u20e5",bnot:"\u2310",bopf:"\ud835\udd53",bot:"\u22a5",bottom:"\u22a5",bowtie:"\u22c8",boxDL:"\u2557",boxDR:"\u2554",boxDl:"\u2556",boxDr:"\u2553",boxH:"\u2550",boxHD:"\u2566",boxHU:"\u2569",boxHd:"\u2564",boxHu:"\u2567",boxUL:"\u255d",boxUR:"\u255a",boxUl:"\u255c",boxUr:"\u2559",boxV:"\u2551",boxVH:"\u256c",boxVL:"\u2563",boxVR:"\u2560",boxVh:"\u256b",boxVl:"\u2562",boxVr:"\u255f",boxbox:"\u29c9",boxdL:"\u2555",boxdR:"\u2552",boxdl:"\u2510",boxdr:"\u250c",boxh:"\u2500",boxhD:"\u2565",boxhU:"\u2568",boxhd:"\u252c",boxhu:"\u2534",boxminus:"\u229f",boxplus:"\u229e",boxtimes:"\u22a0",boxuL:"\u255b",boxuR:"\u2558",boxul:"\u2518",boxur:"\u2514",boxv:"\u2502",boxvH:"\u256a",boxvL:"\u2561",boxvR:"\u255e",boxvh:"\u253c",boxvl:"\u2524",boxvr:"\u251c",bprime:"\u2035",breve:"\u02d8",brvbar:"\xa6",bscr:"\ud835\udcb7",bsemi:"\u204f",bsim:"\u223d",bsime:"\u22cd",bsol:"\\",bsolb:"\u29c5",bsolhsub:"\u27c8",bull:"\u2022",bullet:"\u2022",bump:"\u224e",bumpE:"\u2aae",bumpe:"\u224f",bumpeq:"\u224f",cacute:"\u0107",cap:"\u2229",capand:"\u2a44",capbrcup:"\u2a49",capcap:"\u2a4b",capcup:"\u2a47",capdot:"\u2a40",caps:"\u2229\ufe00",caret:"\u2041",caron:"\u02c7",ccaps:"\u2a4d",ccaron:"\u010d",ccedil:"\xe7",ccirc:"\u0109",ccups:"\u2a4c",ccupssm:"\u2a50",cdot:"\u010b",cedil:"\xb8",cemptyv:"\u29b2",cent:"\xa2",centerdot:"\xb7",cfr:"\ud835\udd20",chcy:"\u0447",check:"\u2713",checkmark:"\u2713",chi:"\u03c7",cir:"\u25cb",cirE:"\u29c3",circ:"\u02c6",circeq:"\u2257",circlearrowleft:"\u21ba",circlearrowright:"\u21bb",circledR:"\xae",circledS:"\u24c8",circledast:"\u229b",circledcirc:"\u229a",circleddash:"\u229d",cire:"\u2257",cirfnint:"\u2a10",cirmid:"\u2aef",cirscir:"\u29c2",clubs:"\u2663",clubsuit:"\u2663",colon:":",colone:"\u2254",coloneq:"\u2254",comma:",",commat:"@",comp:"\u2201",compfn:"\u2218",complement:"\u2201",complexes:"\u2102",cong:"\u2245",congdot:"\u2a6d",conint:"\u222e",copf:"\ud835\udd54",coprod:"\u2210",copy:"\xa9",copysr:"\u2117",crarr:"\u21b5",cross:"\u2717",cscr:"\ud835\udcb8",csub:"\u2acf",csube:"\u2ad1",csup:"\u2ad0",csupe:"\u2ad2",ctdot:"\u22ef",cudarrl:"\u2938",cudarrr:"\u2935",cuepr:"\u22de",cuesc:"\u22df",cularr:"\u21b6",cularrp:"\u293d",cup:"\u222a",cupbrcap:"\u2a48",cupcap:"\u2a46",cupcup:"\u2a4a",cupdot:"\u228d",cupor:"\u2a45",cups:"\u222a\ufe00",curarr:"\u21b7",curarrm:"\u293c",curlyeqprec:"\u22de",curlyeqsucc:"\u22df",curlyvee:"\u22ce",curlywedge:"\u22cf",curren:"\xa4",curvearrowleft:"\u21b6",curvearrowright:"\u21b7",cuvee:"\u22ce",cuwed:"\u22cf",cwconint:"\u2232",cwint:"\u2231",cylcty:"\u232d",dArr:"\u21d3",dHar:"\u2965",dagger:"\u2020",daleth:"\u2138",darr:"\u2193",dash:"\u2010",dashv:"\u22a3",dbkarow:"\u290f",dblac:"\u02dd",dcaron:"\u010f",dcy:"\u0434",dd:"\u2146",ddagger:"\u2021",ddarr:"\u21ca",ddotseq:"\u2a77",deg:"\xb0",delta:"\u03b4",demptyv:"\u29b1",dfisht:"\u297f",dfr:"\ud835\udd21",dharl:"\u21c3",dharr:"\u21c2",diam:"\u22c4",diamond:"\u22c4",diamondsuit:"\u2666",diams:"\u2666",die:"\xa8",digamma:"\u03dd",disin:"\u22f2",div:"\xf7",divide:"\xf7",divideontimes:"\u22c7",divonx:"\u22c7",djcy:"\u0452",dlcorn:"\u231e",dlcrop:"\u230d",dollar:"$",dopf:"\ud835\udd55",dot:"\u02d9",doteq:"\u2250",doteqdot:"\u2251",dotminus:"\u2238",dotplus:"\u2214",dotsquare:"\u22a1",doublebarwedge:"\u2306",downarrow:"\u2193",downdownarrows:"\u21ca",downharpoonleft:"\u21c3",downharpoonright:"\u21c2",drbkarow:"\u2910",drcorn:"\u231f",drcrop:"\u230c",dscr:"\ud835\udcb9",dscy:"\u0455",dsol:"\u29f6",dstrok:"\u0111",dtdot:"\u22f1",dtri:"\u25bf",dtrif:"\u25be",duarr:"\u21f5",duhar:"\u296f",dwangle:"\u29a6",dzcy:"\u045f",dzigrarr:"\u27ff",eDDot:"\u2a77",eDot:"\u2251",eacute:"\xe9",easter:"\u2a6e",ecaron:"\u011b",ecir:"\u2256",ecirc:"\xea",ecolon:"\u2255",ecy:"\u044d",edot:"\u0117",ee:"\u2147",efDot:"\u2252",efr:"\ud835\udd22",eg:"\u2a9a",egrave:"\xe8",egs:"\u2a96",egsdot:"\u2a98",el:"\u2a99",elinters:"\u23e7",ell:"\u2113",els:"\u2a95",elsdot:"\u2a97",emacr:"\u0113",empty:"\u2205",emptyset:"\u2205",emptyv:"\u2205",emsp13:"\u2004",emsp14:"\u2005",emsp:"\u2003",eng:"\u014b",ensp:"\u2002",eogon:"\u0119",eopf:"\ud835\udd56",epar:"\u22d5",eparsl:"\u29e3",eplus:"\u2a71",epsi:"\u03b5",epsilon:"\u03b5",epsiv:"\u03f5",eqcirc:"\u2256",eqcolon:"\u2255",eqsim:"\u2242",eqslantgtr:"\u2a96",eqslantless:"\u2a95",equals:"=",equest:"\u225f",equiv:"\u2261",equivDD:"\u2a78",eqvparsl:"\u29e5",erDot:"\u2253",erarr:"\u2971",escr:"\u212f",esdot:"\u2250",esim:"\u2242",eta:"\u03b7",eth:"\xf0",euml:"\xeb",euro:"\u20ac",excl:"!",exist:"\u2203",expectation:"\u2130",exponentiale:"\u2147",fallingdotseq:"\u2252",fcy:"\u0444",female:"\u2640",ffilig:"\ufb03",fflig:"\ufb00",ffllig:"\ufb04",ffr:"\ud835\udd23",filig:"\ufb01",fjlig:"fj",flat:"\u266d",fllig:"\ufb02",fltns:"\u25b1",fnof:"\u0192",fopf:"\ud835\udd57",forall:"\u2200",fork:"\u22d4",forkv:"\u2ad9",fpartint:"\u2a0d",frac12:"\xbd",frac13:"\u2153",frac14:"\xbc",frac15:"\u2155",frac16:"\u2159",frac18:"\u215b",frac23:"\u2154",frac25:"\u2156",frac34:"\xbe",frac35:"\u2157",frac38:"\u215c",frac45:"\u2158",frac56:"\u215a",frac58:"\u215d",frac78:"\u215e",frasl:"\u2044",frown:"\u2322",fscr:"\ud835\udcbb",gE:"\u2267",gEl:"\u2a8c",gacute:"\u01f5",gamma:"\u03b3",gammad:"\u03dd",gap:"\u2a86",gbreve:"\u011f",gcirc:"\u011d",gcy:"\u0433",gdot:"\u0121",ge:"\u2265",gel:"\u22db",geq:"\u2265",geqq:"\u2267",geqslant:"\u2a7e",ges:"\u2a7e",gescc:"\u2aa9",gesdot:"\u2a80",gesdoto:"\u2a82",gesdotol:"\u2a84",gesl:"\u22db\ufe00",gesles:"\u2a94",gfr:"\ud835\udd24",gg:"\u226b",ggg:"\u22d9",gimel:"\u2137",gjcy:"\u0453",gl:"\u2277",glE:"\u2a92",gla:"\u2aa5",glj:"\u2aa4",gnE:"\u2269",gnap:"\u2a8a",gnapprox:"\u2a8a",gne:"\u2a88",gneq:"\u2a88",gneqq:"\u2269",gnsim:"\u22e7",gopf:"\ud835\udd58",grave:"`",gscr:"\u210a",gsim:"\u2273",gsime:"\u2a8e",gsiml:"\u2a90",gt:">",gtcc:"\u2aa7",gtcir:"\u2a7a",gtdot:"\u22d7",gtlPar:"\u2995",gtquest:"\u2a7c",gtrapprox:"\u2a86",gtrarr:"\u2978",gtrdot:"\u22d7",gtreqless:"\u22db",gtreqqless:"\u2a8c",gtrless:"\u2277",gtrsim:"\u2273",gvertneqq:"\u2269\ufe00",gvnE:"\u2269\ufe00",hArr:"\u21d4",hairsp:"\u200a",half:"\xbd",hamilt:"\u210b",hardcy:"\u044a",harr:"\u2194",harrcir:"\u2948",harrw:"\u21ad",hbar:"\u210f",hcirc:"\u0125",hearts:"\u2665",heartsuit:"\u2665",hellip:"\u2026",hercon:"\u22b9",hfr:"\ud835\udd25",hksearow:"\u2925",hkswarow:"\u2926",hoarr:"\u21ff",homtht:"\u223b",hookleftarrow:"\u21a9",hookrightarrow:"\u21aa",hopf:"\ud835\udd59",horbar:"\u2015",hscr:"\ud835\udcbd",hslash:"\u210f",hstrok:"\u0127",hybull:"\u2043",hyphen:"\u2010",iacute:"\xed",ic:"\u2063",icirc:"\xee",icy:"\u0438",iecy:"\u0435",iexcl:"\xa1",iff:"\u21d4",ifr:"\ud835\udd26",igrave:"\xec",ii:"\u2148",iiiint:"\u2a0c",iiint:"\u222d",iinfin:"\u29dc",iiota:"\u2129",ijlig:"\u0133",imacr:"\u012b",image:"\u2111",imagline:"\u2110",imagpart:"\u2111",imath:"\u0131",imof:"\u22b7",imped:"\u01b5",in:"\u2208",incare:"\u2105",infin:"\u221e",infintie:"\u29dd",inodot:"\u0131",int:"\u222b",intcal:"\u22ba",integers:"\u2124",intercal:"\u22ba",intlarhk:"\u2a17",intprod:"\u2a3c",iocy:"\u0451",iogon:"\u012f",iopf:"\ud835\udd5a",iota:"\u03b9",iprod:"\u2a3c",iquest:"\xbf",iscr:"\ud835\udcbe",isin:"\u2208",isinE:"\u22f9",isindot:"\u22f5",isins:"\u22f4",isinsv:"\u22f3",isinv:"\u2208",it:"\u2062",itilde:"\u0129",iukcy:"\u0456",iuml:"\xef",jcirc:"\u0135",jcy:"\u0439",jfr:"\ud835\udd27",jmath:"\u0237",jopf:"\ud835\udd5b",jscr:"\ud835\udcbf",jsercy:"\u0458",jukcy:"\u0454",kappa:"\u03ba",kappav:"\u03f0",kcedil:"\u0137",kcy:"\u043a",kfr:"\ud835\udd28",kgreen:"\u0138",khcy:"\u0445",kjcy:"\u045c",kopf:"\ud835\udd5c",kscr:"\ud835\udcc0",lAarr:"\u21da",lArr:"\u21d0",lAtail:"\u291b",lBarr:"\u290e",lE:"\u2266",lEg:"\u2a8b",lHar:"\u2962",lacute:"\u013a",laemptyv:"\u29b4",lagran:"\u2112",lambda:"\u03bb",lang:"\u27e8",langd:"\u2991",langle:"\u27e8",lap:"\u2a85",laquo:"\xab",larr:"\u2190",larrb:"\u21e4",larrbfs:"\u291f",larrfs:"\u291d",larrhk:"\u21a9",larrlp:"\u21ab",larrpl:"\u2939",larrsim:"\u2973",larrtl:"\u21a2",lat:"\u2aab",latail:"\u2919",late:"\u2aad",lates:"\u2aad\ufe00",lbarr:"\u290c",lbbrk:"\u2772",lbrace:"{",lbrack:"[",lbrke:"\u298b",lbrksld:"\u298f",lbrkslu:"\u298d",lcaron:"\u013e",lcedil:"\u013c",lceil:"\u2308",lcub:"{",lcy:"\u043b",ldca:"\u2936",ldquo:"\u201c",ldquor:"\u201e",ldrdhar:"\u2967",ldrushar:"\u294b",ldsh:"\u21b2",le:"\u2264",leftarrow:"\u2190",leftarrowtail:"\u21a2",leftharpoondown:"\u21bd",leftharpoonup:"\u21bc",leftleftarrows:"\u21c7",leftrightarrow:"\u2194",leftrightarrows:"\u21c6",leftrightharpoons:"\u21cb",leftrightsquigarrow:"\u21ad",leftthreetimes:"\u22cb",leg:"\u22da",leq:"\u2264",leqq:"\u2266",leqslant:"\u2a7d",les:"\u2a7d",lescc:"\u2aa8",lesdot:"\u2a7f",lesdoto:"\u2a81",lesdotor:"\u2a83",lesg:"\u22da\ufe00",lesges:"\u2a93",lessapprox:"\u2a85",lessdot:"\u22d6",lesseqgtr:"\u22da",lesseqqgtr:"\u2a8b",lessgtr:"\u2276",lesssim:"\u2272",lfisht:"\u297c",lfloor:"\u230a",lfr:"\ud835\udd29",lg:"\u2276",lgE:"\u2a91",lhard:"\u21bd",lharu:"\u21bc",lharul:"\u296a",lhblk:"\u2584",ljcy:"\u0459",ll:"\u226a",llarr:"\u21c7",llcorner:"\u231e",llhard:"\u296b",lltri:"\u25fa",lmidot:"\u0140",lmoust:"\u23b0",lmoustache:"\u23b0",lnE:"\u2268",lnap:"\u2a89",lnapprox:"\u2a89",lne:"\u2a87",lneq:"\u2a87",lneqq:"\u2268",lnsim:"\u22e6",loang:"\u27ec",loarr:"\u21fd",lobrk:"\u27e6",longleftarrow:"\u27f5",longleftrightarrow:"\u27f7",longmapsto:"\u27fc",longrightarrow:"\u27f6",looparrowleft:"\u21ab",looparrowright:"\u21ac",lopar:"\u2985",lopf:"\ud835\udd5d",loplus:"\u2a2d",lotimes:"\u2a34",lowast:"\u2217",lowbar:"_",loz:"\u25ca",lozenge:"\u25ca",lozf:"\u29eb",lpar:"(",lparlt:"\u2993",lrarr:"\u21c6",lrcorner:"\u231f",lrhar:"\u21cb",lrhard:"\u296d",lrm:"\u200e",lrtri:"\u22bf",lsaquo:"\u2039",lscr:"\ud835\udcc1",lsh:"\u21b0",lsim:"\u2272",lsime:"\u2a8d",lsimg:"\u2a8f",lsqb:"[",lsquo:"\u2018",lsquor:"\u201a",lstrok:"\u0142",lt:"<",ltcc:"\u2aa6",ltcir:"\u2a79",ltdot:"\u22d6",lthree:"\u22cb",ltimes:"\u22c9",ltlarr:"\u2976",ltquest:"\u2a7b",ltrPar:"\u2996",ltri:"\u25c3",ltrie:"\u22b4",ltrif:"\u25c2",lurdshar:"\u294a",luruhar:"\u2966",lvertneqq:"\u2268\ufe00",lvnE:"\u2268\ufe00",mDDot:"\u223a",macr:"\xaf",male:"\u2642",malt:"\u2720",maltese:"\u2720",map:"\u21a6",mapsto:"\u21a6",mapstodown:"\u21a7",mapstoleft:"\u21a4",mapstoup:"\u21a5",marker:"\u25ae",mcomma:"\u2a29",mcy:"\u043c",mdash:"\u2014",measuredangle:"\u2221",mfr:"\ud835\udd2a",mho:"\u2127",micro:"\xb5",mid:"\u2223",midast:"*",midcir:"\u2af0",middot:"\xb7",minus:"\u2212",minusb:"\u229f",minusd:"\u2238",minusdu:"\u2a2a",mlcp:"\u2adb",mldr:"\u2026",mnplus:"\u2213",models:"\u22a7",mopf:"\ud835\udd5e",mp:"\u2213",mscr:"\ud835\udcc2",mstpos:"\u223e",mu:"\u03bc",multimap:"\u22b8",mumap:"\u22b8",nGg:"\u22d9\u0338",nGt:"\u226b\u20d2",nGtv:"\u226b\u0338",nLeftarrow:"\u21cd",nLeftrightarrow:"\u21ce",nLl:"\u22d8\u0338",nLt:"\u226a\u20d2",nLtv:"\u226a\u0338",nRightarrow:"\u21cf",nVDash:"\u22af",nVdash:"\u22ae",nabla:"\u2207",nacute:"\u0144",nang:"\u2220\u20d2",nap:"\u2249",napE:"\u2a70\u0338",napid:"\u224b\u0338",napos:"\u0149",napprox:"\u2249",natur:"\u266e",natural:"\u266e",naturals:"\u2115",nbsp:"\xa0",nbump:"\u224e\u0338",nbumpe:"\u224f\u0338",ncap:"\u2a43",ncaron:"\u0148",ncedil:"\u0146",ncong:"\u2247",ncongdot:"\u2a6d\u0338",ncup:"\u2a42",ncy:"\u043d",ndash:"\u2013",ne:"\u2260",neArr:"\u21d7",nearhk:"\u2924",nearr:"\u2197",nearrow:"\u2197",nedot:"\u2250\u0338",nequiv:"\u2262",nesear:"\u2928",nesim:"\u2242\u0338",nexist:"\u2204",nexists:"\u2204",nfr:"\ud835\udd2b",ngE:"\u2267\u0338",nge:"\u2271",ngeq:"\u2271",ngeqq:"\u2267\u0338",ngeqslant:"\u2a7e\u0338",nges:"\u2a7e\u0338",ngsim:"\u2275",ngt:"\u226f",ngtr:"\u226f",nhArr:"\u21ce",nharr:"\u21ae",nhpar:"\u2af2",ni:"\u220b",nis:"\u22fc",nisd:"\u22fa",niv:"\u220b",njcy:"\u045a",nlArr:"\u21cd",nlE:"\u2266\u0338",nlarr:"\u219a",nldr:"\u2025",nle:"\u2270",nleftarrow:"\u219a",nleftrightarrow:"\u21ae",nleq:"\u2270",nleqq:"\u2266\u0338",nleqslant:"\u2a7d\u0338",nles:"\u2a7d\u0338",nless:"\u226e",nlsim:"\u2274",nlt:"\u226e",nltri:"\u22ea",nltrie:"\u22ec",nmid:"\u2224",nopf:"\ud835\udd5f",not:"\xac",notin:"\u2209",notinE:"\u22f9\u0338",notindot:"\u22f5\u0338",notinva:"\u2209",notinvb:"\u22f7",notinvc:"\u22f6",notni:"\u220c",notniva:"\u220c",notnivb:"\u22fe",notnivc:"\u22fd",npar:"\u2226",nparallel:"\u2226",nparsl:"\u2afd\u20e5",npart:"\u2202\u0338",npolint:"\u2a14",npr:"\u2280",nprcue:"\u22e0",npre:"\u2aaf\u0338",nprec:"\u2280",npreceq:"\u2aaf\u0338",nrArr:"\u21cf",nrarr:"\u219b",nrarrc:"\u2933\u0338",nrarrw:"\u219d\u0338",nrightarrow:"\u219b",nrtri:"\u22eb",nrtrie:"\u22ed",nsc:"\u2281",nsccue:"\u22e1",nsce:"\u2ab0\u0338",nscr:"\ud835\udcc3",nshortmid:"\u2224",nshortparallel:"\u2226",nsim:"\u2241",nsime:"\u2244",nsimeq:"\u2244",nsmid:"\u2224",nspar:"\u2226",nsqsube:"\u22e2",nsqsupe:"\u22e3",nsub:"\u2284",nsubE:"\u2ac5\u0338",nsube:"\u2288",nsubset:"\u2282\u20d2",nsubseteq:"\u2288",nsubseteqq:"\u2ac5\u0338",nsucc:"\u2281",nsucceq:"\u2ab0\u0338",nsup:"\u2285",nsupE:"\u2ac6\u0338",nsupe:"\u2289",nsupset:"\u2283\u20d2",nsupseteq:"\u2289",nsupseteqq:"\u2ac6\u0338",ntgl:"\u2279",ntilde:"\xf1",ntlg:"\u2278",ntriangleleft:"\u22ea",ntrianglelefteq:"\u22ec",ntriangleright:"\u22eb",ntrianglerighteq:"\u22ed",nu:"\u03bd",num:"#",numero:"\u2116",numsp:"\u2007",nvDash:"\u22ad",nvHarr:"\u2904",nvap:"\u224d\u20d2",nvdash:"\u22ac",nvge:"\u2265\u20d2",nvgt:">\u20d2",nvinfin:"\u29de",nvlArr:"\u2902",nvle:"\u2264\u20d2",nvlt:"<\u20d2",nvltrie:"\u22b4\u20d2",nvrArr:"\u2903",nvrtrie:"\u22b5\u20d2",nvsim:"\u223c\u20d2",nwArr:"\u21d6",nwarhk:"\u2923",nwarr:"\u2196",nwarrow:"\u2196",nwnear:"\u2927",oS:"\u24c8",oacute:"\xf3",oast:"\u229b",ocir:"\u229a",ocirc:"\xf4",ocy:"\u043e",odash:"\u229d",odblac:"\u0151",odiv:"\u2a38",odot:"\u2299",odsold:"\u29bc",oelig:"\u0153",ofcir:"\u29bf",ofr:"\ud835\udd2c",ogon:"\u02db",ograve:"\xf2",ogt:"\u29c1",ohbar:"\u29b5",ohm:"\u03a9",oint:"\u222e",olarr:"\u21ba",olcir:"\u29be",olcross:"\u29bb",oline:"\u203e",olt:"\u29c0",omacr:"\u014d",omega:"\u03c9",omicron:"\u03bf",omid:"\u29b6",ominus:"\u2296",oopf:"\ud835\udd60",opar:"\u29b7",operp:"\u29b9",oplus:"\u2295",or:"\u2228",orarr:"\u21bb",ord:"\u2a5d",order:"\u2134",orderof:"\u2134",ordf:"\xaa",ordm:"\xba",origof:"\u22b6",oror:"\u2a56",orslope:"\u2a57",orv:"\u2a5b",oscr:"\u2134",oslash:"\xf8",osol:"\u2298",otilde:"\xf5",otimes:"\u2297",otimesas:"\u2a36",ouml:"\xf6",ovbar:"\u233d",par:"\u2225",para:"\xb6",parallel:"\u2225",parsim:"\u2af3",parsl:"\u2afd",part:"\u2202",pcy:"\u043f",percnt:"%",period:".",permil:"\u2030",perp:"\u22a5",pertenk:"\u2031",pfr:"\ud835\udd2d",phi:"\u03c6",phiv:"\u03d5",phmmat:"\u2133",phone:"\u260e",pi:"\u03c0",pitchfork:"\u22d4",piv:"\u03d6",planck:"\u210f",planckh:"\u210e",plankv:"\u210f",plus:"+",plusacir:"\u2a23",plusb:"\u229e",pluscir:"\u2a22",plusdo:"\u2214",plusdu:"\u2a25",pluse:"\u2a72",plusmn:"\xb1",plussim:"\u2a26",plustwo:"\u2a27",pm:"\xb1",pointint:"\u2a15",popf:"\ud835\udd61",pound:"\xa3",pr:"\u227a",prE:"\u2ab3",prap:"\u2ab7",prcue:"\u227c",pre:"\u2aaf",prec:"\u227a",precapprox:"\u2ab7",preccurlyeq:"\u227c",preceq:"\u2aaf",precnapprox:"\u2ab9",precneqq:"\u2ab5",precnsim:"\u22e8",precsim:"\u227e",prime:"\u2032",primes:"\u2119",prnE:"\u2ab5",prnap:"\u2ab9",prnsim:"\u22e8",prod:"\u220f",profalar:"\u232e",profline:"\u2312",profsurf:"\u2313",prop:"\u221d",propto:"\u221d",prsim:"\u227e",prurel:"\u22b0",pscr:"\ud835\udcc5",psi:"\u03c8",puncsp:"\u2008",qfr:"\ud835\udd2e",qint:"\u2a0c",qopf:"\ud835\udd62",qprime:"\u2057",qscr:"\ud835\udcc6",quaternions:"\u210d",quatint:"\u2a16",quest:"?",questeq:"\u225f",quot:'"',rAarr:"\u21db",rArr:"\u21d2",rAtail:"\u291c",rBarr:"\u290f",rHar:"\u2964",race:"\u223d\u0331",racute:"\u0155",radic:"\u221a",raemptyv:"\u29b3",rang:"\u27e9",rangd:"\u2992",range:"\u29a5",rangle:"\u27e9",raquo:"\xbb",rarr:"\u2192",rarrap:"\u2975",rarrb:"\u21e5",rarrbfs:"\u2920",rarrc:"\u2933",rarrfs:"\u291e",rarrhk:"\u21aa",rarrlp:"\u21ac",rarrpl:"\u2945",rarrsim:"\u2974",rarrtl:"\u21a3",rarrw:"\u219d",ratail:"\u291a",ratio:"\u2236",rationals:"\u211a",rbarr:"\u290d",rbbrk:"\u2773",rbrace:"}",rbrack:"]",rbrke:"\u298c",rbrksld:"\u298e",rbrkslu:"\u2990",rcaron:"\u0159",rcedil:"\u0157",rceil:"\u2309",rcub:"}",rcy:"\u0440",rdca:"\u2937",rdldhar:"\u2969",rdquo:"\u201d",rdquor:"\u201d",rdsh:"\u21b3",real:"\u211c",realine:"\u211b",realpart:"\u211c",reals:"\u211d",rect:"\u25ad",reg:"\xae",rfisht:"\u297d",rfloor:"\u230b",rfr:"\ud835\udd2f",rhard:"\u21c1",rharu:"\u21c0",rharul:"\u296c",rho:"\u03c1",rhov:"\u03f1",rightarrow:"\u2192",rightarrowtail:"\u21a3",rightharpoondown:"\u21c1",rightharpoonup:"\u21c0",rightleftarrows:"\u21c4",rightleftharpoons:"\u21cc",rightrightarrows:"\u21c9",rightsquigarrow:"\u219d",rightthreetimes:"\u22cc",ring:"\u02da",risingdotseq:"\u2253",rlarr:"\u21c4",rlhar:"\u21cc",rlm:"\u200f",rmoust:"\u23b1",rmoustache:"\u23b1",rnmid:"\u2aee",roang:"\u27ed",roarr:"\u21fe",robrk:"\u27e7",ropar:"\u2986",ropf:"\ud835\udd63",roplus:"\u2a2e",rotimes:"\u2a35",rpar:")",rpargt:"\u2994",rppolint:"\u2a12",rrarr:"\u21c9",rsaquo:"\u203a",rscr:"\ud835\udcc7",rsh:"\u21b1",rsqb:"]",rsquo:"\u2019",rsquor:"\u2019",rthree:"\u22cc",rtimes:"\u22ca",rtri:"\u25b9",rtrie:"\u22b5",rtrif:"\u25b8",rtriltri:"\u29ce",ruluhar:"\u2968",rx:"\u211e",sacute:"\u015b",sbquo:"\u201a",sc:"\u227b",scE:"\u2ab4",scap:"\u2ab8",scaron:"\u0161",sccue:"\u227d",sce:"\u2ab0",scedil:"\u015f",scirc:"\u015d",scnE:"\u2ab6",scnap:"\u2aba",scnsim:"\u22e9",scpolint:"\u2a13",scsim:"\u227f",scy:"\u0441",sdot:"\u22c5",sdotb:"\u22a1",sdote:"\u2a66",seArr:"\u21d8",searhk:"\u2925",searr:"\u2198",searrow:"\u2198",sect:"\xa7",semi:";",seswar:"\u2929",setminus:"\u2216",setmn:"\u2216",sext:"\u2736",sfr:"\ud835\udd30",sfrown:"\u2322",sharp:"\u266f",shchcy:"\u0449",shcy:"\u0448",shortmid:"\u2223",shortparallel:"\u2225",shy:"\xad",sigma:"\u03c3",sigmaf:"\u03c2",sigmav:"\u03c2",sim:"\u223c",simdot:"\u2a6a",sime:"\u2243",simeq:"\u2243",simg:"\u2a9e",simgE:"\u2aa0",siml:"\u2a9d",simlE:"\u2a9f",simne:"\u2246",simplus:"\u2a24",simrarr:"\u2972",slarr:"\u2190",smallsetminus:"\u2216",smashp:"\u2a33",smeparsl:"\u29e4",smid:"\u2223",smile:"\u2323",smt:"\u2aaa",smte:"\u2aac",smtes:"\u2aac\ufe00",softcy:"\u044c",sol:"/",solb:"\u29c4",solbar:"\u233f",sopf:"\ud835\udd64",spades:"\u2660",spadesuit:"\u2660",spar:"\u2225",sqcap:"\u2293",sqcaps:"\u2293\ufe00",sqcup:"\u2294",sqcups:"\u2294\ufe00",sqsub:"\u228f",sqsube:"\u2291",sqsubset:"\u228f",sqsubseteq:"\u2291",sqsup:"\u2290",sqsupe:"\u2292",sqsupset:"\u2290",sqsupseteq:"\u2292",squ:"\u25a1",square:"\u25a1",squarf:"\u25aa",squf:"\u25aa",srarr:"\u2192",sscr:"\ud835\udcc8",ssetmn:"\u2216",ssmile:"\u2323",sstarf:"\u22c6",star:"\u2606",starf:"\u2605",straightepsilon:"\u03f5",straightphi:"\u03d5",strns:"\xaf",sub:"\u2282",subE:"\u2ac5",subdot:"\u2abd",sube:"\u2286",subedot:"\u2ac3",submult:"\u2ac1",subnE:"\u2acb",subne:"\u228a",subplus:"\u2abf",subrarr:"\u2979",subset:"\u2282",subseteq:"\u2286",subseteqq:"\u2ac5",subsetneq:"\u228a",subsetneqq:"\u2acb",subsim:"\u2ac7",subsub:"\u2ad5",subsup:"\u2ad3",succ:"\u227b",succapprox:"\u2ab8",succcurlyeq:"\u227d",succeq:"\u2ab0",succnapprox:"\u2aba",succneqq:"\u2ab6",succnsim:"\u22e9",succsim:"\u227f",sum:"\u2211",sung:"\u266a",sup1:"\xb9",sup2:"\xb2",sup3:"\xb3",sup:"\u2283",supE:"\u2ac6",supdot:"\u2abe",supdsub:"\u2ad8",supe:"\u2287",supedot:"\u2ac4",suphsol:"\u27c9",suphsub:"\u2ad7",suplarr:"\u297b",supmult:"\u2ac2",supnE:"\u2acc",supne:"\u228b",supplus:"\u2ac0",supset:"\u2283",supseteq:"\u2287",supseteqq:"\u2ac6",supsetneq:"\u228b",supsetneqq:"\u2acc",supsim:"\u2ac8",supsub:"\u2ad4",supsup:"\u2ad6",swArr:"\u21d9",swarhk:"\u2926",swarr:"\u2199",swarrow:"\u2199",swnwar:"\u292a",szlig:"\xdf",target:"\u2316",tau:"\u03c4",tbrk:"\u23b4",tcaron:"\u0165",tcedil:"\u0163",tcy:"\u0442",tdot:"\u20db",telrec:"\u2315",tfr:"\ud835\udd31",there4:"\u2234",therefore:"\u2234",theta:"\u03b8",thetasym:"\u03d1",thetav:"\u03d1",thickapprox:"\u2248",thicksim:"\u223c",thinsp:"\u2009",thkap:"\u2248",thksim:"\u223c",thorn:"\xfe",tilde:"\u02dc",times:"\xd7",timesb:"\u22a0",timesbar:"\u2a31",timesd:"\u2a30",tint:"\u222d",toea:"\u2928",top:"\u22a4",topbot:"\u2336",topcir:"\u2af1",topf:"\ud835\udd65",topfork:"\u2ada",tosa:"\u2929",tprime:"\u2034",trade:"\u2122",triangle:"\u25b5",triangledown:"\u25bf",triangleleft:"\u25c3",trianglelefteq:"\u22b4",triangleq:"\u225c",triangleright:"\u25b9",trianglerighteq:"\u22b5",tridot:"\u25ec",trie:"\u225c",triminus:"\u2a3a",triplus:"\u2a39",trisb:"\u29cd",tritime:"\u2a3b",trpezium:"\u23e2",tscr:"\ud835\udcc9",tscy:"\u0446",tshcy:"\u045b",tstrok:"\u0167",twixt:"\u226c",twoheadleftarrow:"\u219e",twoheadrightarrow:"\u21a0",uArr:"\u21d1",uHar:"\u2963",uacute:"\xfa",uarr:"\u2191",ubrcy:"\u045e",ubreve:"\u016d",ucirc:"\xfb",ucy:"\u0443",udarr:"\u21c5",udblac:"\u0171",udhar:"\u296e",ufisht:"\u297e",ufr:"\ud835\udd32",ugrave:"\xf9",uharl:"\u21bf",uharr:"\u21be",uhblk:"\u2580",ulcorn:"\u231c",ulcorner:"\u231c",ulcrop:"\u230f",ultri:"\u25f8",umacr:"\u016b",uml:"\xa8",uogon:"\u0173",uopf:"\ud835\udd66",uparrow:"\u2191",updownarrow:"\u2195",upharpoonleft:"\u21bf",upharpoonright:"\u21be",uplus:"\u228e",upsi:"\u03c5",upsih:"\u03d2",upsilon:"\u03c5",upuparrows:"\u21c8",urcorn:"\u231d",urcorner:"\u231d",urcrop:"\u230e",uring:"\u016f",urtri:"\u25f9",uscr:"\ud835\udcca",utdot:"\u22f0",utilde:"\u0169",utri:"\u25b5",utrif:"\u25b4",uuarr:"\u21c8",uuml:"\xfc",uwangle:"\u29a7",vArr:"\u21d5",vBar:"\u2ae8",vBarv:"\u2ae9",vDash:"\u22a8",vangrt:"\u299c",varepsilon:"\u03f5",varkappa:"\u03f0",varnothing:"\u2205",varphi:"\u03d5",varpi:"\u03d6",varpropto:"\u221d",varr:"\u2195",varrho:"\u03f1",varsigma:"\u03c2",varsubsetneq:"\u228a\ufe00",varsubsetneqq:"\u2acb\ufe00",varsupsetneq:"\u228b\ufe00",varsupsetneqq:"\u2acc\ufe00",vartheta:"\u03d1",vartriangleleft:"\u22b2",vartriangleright:"\u22b3",vcy:"\u0432",vdash:"\u22a2",vee:"\u2228",veebar:"\u22bb",veeeq:"\u225a",vellip:"\u22ee",verbar:"|",vert:"|",vfr:"\ud835\udd33",vltri:"\u22b2",vnsub:"\u2282\u20d2",vnsup:"\u2283\u20d2",vopf:"\ud835\udd67",vprop:"\u221d",vrtri:"\u22b3",vscr:"\ud835\udccb",vsubnE:"\u2acb\ufe00",vsubne:"\u228a\ufe00",vsupnE:"\u2acc\ufe00",vsupne:"\u228b\ufe00",vzigzag:"\u299a",wcirc:"\u0175",wedbar:"\u2a5f",wedge:"\u2227",wedgeq:"\u2259",weierp:"\u2118",wfr:"\ud835\udd34",wopf:"\ud835\udd68",wp:"\u2118",wr:"\u2240",wreath:"\u2240",wscr:"\ud835\udccc",xcap:"\u22c2",xcirc:"\u25ef",xcup:"\u22c3",xdtri:"\u25bd",xfr:"\ud835\udd35",xhArr:"\u27fa",xharr:"\u27f7",xi:"\u03be",xlArr:"\u27f8",xlarr:"\u27f5",xmap:"\u27fc",xnis:"\u22fb",xodot:"\u2a00",xopf:"\ud835\udd69",xoplus:"\u2a01",xotime:"\u2a02",xrArr:"\u27f9",xrarr:"\u27f6",xscr:"\ud835\udccd",xsqcup:"\u2a06",xuplus:"\u2a04",xutri:"\u25b3",xvee:"\u22c1",xwedge:"\u22c0",yacute:"\xfd",yacy:"\u044f",ycirc:"\u0177",ycy:"\u044b",yen:"\xa5",yfr:"\ud835\udd36",yicy:"\u0457",yopf:"\ud835\udd6a",yscr:"\ud835\udcce",yucy:"\u044e",yuml:"\xff",zacute:"\u017a",zcaron:"\u017e",zcy:"\u0437",zdot:"\u017c",zeetrf:"\u2128",zeta:"\u03b6",zfr:"\ud835\udd37",zhcy:"\u0436",zigrarr:"\u21dd",zopf:"\ud835\udd6b",zscr:"\ud835\udccf",zwj:"\u200d",zwnj:"\u200c"},Oa={}.hasOwnProperty;function Aa(t){return!!Oa.call(Ea,t)&&Ea[t]}const Ta={name:"characterReference",tokenize:Ca};function Ca(t,e,n){const r=this;let o=0,i,a;return u;function u(e){return t.enter("characterReference"),t.enter("characterReferenceMarker"),t.consume(e),t.exit("characterReferenceMarker"),c}function c(e){return 35===e?(t.enter("characterReferenceMarkerNumeric"),t.consume(e),t.exit("characterReferenceMarkerNumeric"),s):(t.enter("characterReferenceValue"),i=31,a=Go,l(e))}function s(e){return 88===e||120===e?(t.enter("characterReferenceMarkerHexadecimal"),t.consume(e),t.exit("characterReferenceMarkerHexadecimal"),t.enter("characterReferenceValue"),i=6,a=Jo,l):(t.enter("characterReferenceValue"),i=7,a=Ko,l(e))}function l(u){if(59===u&&o){const o=t.exit("characterReferenceValue");return a!==Go||Aa(r.sliceSerialize(o))?(t.enter("characterReferenceMarker"),t.consume(u),t.exit("characterReferenceMarker"),t.exit("characterReference"),e):n(u)}return a(u)&&o++<i?(t.consume(u),l):n(u)}}const Pa={name:"characterEscape",tokenize:Ra};function Ra(t,e,n){return r;function r(e){return t.enter("characterEscape"),t.enter("escapeMarker"),t.consume(e),t.exit("escapeMarker"),o}function o(r){return Qo(r)?(t.enter("characterEscapeValue"),t.consume(r),t.exit("characterEscapeValue"),t.exit("characterEscape"),e):n(r)}}const La={name:"lineEnding",tokenize:ja};function ja(t,e){return n;function n(n){return t.enter("lineEnding"),t.consume(n),t.exit("lineEnding"),oi(t,e,"linePrefix")}}const Ia={name:"labelEnd",tokenize:Ua,resolveTo:Na,resolveAll:Ma},Fa={tokenize:qa},Da={tokenize:Ba},_a={tokenize:za};function Ma(t){let e=-1;for(;++e<t.length;){const n=t[e][1];"labelImage"!==n.type&&"labelLink"!==n.type&&"labelEnd"!==n.type||(t.splice(e+1,"labelImage"===n.type?4:2),n.type="data",e++)}return t}function Na(t,e){let n=t.length,r=0,o,i,a,u;for(;n--;)if(o=t[n][1],i){if("link"===o.type||"labelLink"===o.type&&o._inactive)break;"enter"===t[n][0]&&"labelLink"===o.type&&(o._inactive=!0)}else if(a){if("enter"===t[n][0]&&("labelImage"===o.type||"labelLink"===o.type)&&!o._balanced&&(i=n,"labelLink"!==o.type)){r=2;break}}else"labelEnd"===o.type&&(a=n);const c={type:"labelLink"===t[i][1].type?"link":"image",start:Object.assign({},t[i][1].start),end:Object.assign({},t[t.length-1][1].end)},s={type:"label",start:Object.assign({},t[i][1].start),end:Object.assign({},t[a][1].end)},l={type:"labelText",start:Object.assign({},t[i+r+2][1].end),end:Object.assign({},t[a-2][1].start)};return u=[["enter",c,e],["enter",s,e]],u=Mo(u,t.slice(i+1,i+r+3)),u=Mo(u,[["enter",l,e]]),u=Mo(u,Ci(e.parser.constructs.insideSpan.null,t.slice(i+r+4,a-3),e)),u=Mo(u,[["exit",l,e],t[a-2],t[a-1],["exit",s,e]]),u=Mo(u,t.slice(a+1)),u=Mo(u,[["exit",c,e]]),_o(t,i,t.length,u),t}function Ua(t,e,n){const r=this;let o=r.events.length,i,a;for(;o--;)if(("labelImage"===r.events[o][1].type||"labelLink"===r.events[o][1].type)&&!r.events[o][1]._balanced){i=r.events[o][1];break}return u;function u(e){return i?i._inactive?f(e):(a=r.parser.defined.includes(Ji(r.sliceSerialize({start:i.end,end:r.now()}))),t.enter("labelEnd"),t.enter("labelMarker"),t.consume(e),t.exit("labelMarker"),t.exit("labelEnd"),c):n(e)}function c(e){return 40===e?t.attempt(Fa,l,a?l:f)(e):91===e?t.attempt(Da,l,a?s:f)(e):a?l(e):f(e)}function s(e){return t.attempt(_a,l,f)(e)}function l(t){return e(t)}function f(t){return i._balanced=!0,n(t)}}function qa(t,e,n){return r;function r(e){return t.enter("resource"),t.enter("resourceMarker"),t.consume(e),t.exit("resourceMarker"),o}function o(e){return Zo(e)?Ki(t,i)(e):i(e)}function i(e){return 41===e?l(e):Gi(t,a,u,"resourceDestination","resourceDestinationLiteral","resourceDestinationLiteralMarker","resourceDestinationRaw","resourceDestinationString",32)(e)}function a(e){return Zo(e)?Ki(t,c)(e):l(e)}function u(t){return n(t)}function c(e){return 34===e||39===e||40===e?Yi(t,s,n,"resourceTitle","resourceTitleMarker","resourceTitleString")(e):l(e)}function s(e){return Zo(e)?Ki(t,l)(e):l(e)}function l(r){return 41===r?(t.enter("resourceMarker"),t.consume(r),t.exit("resourceMarker"),t.exit("resource"),e):n(r)}}function Ba(t,e,n){const r=this;return o;function o(e){return Wi.call(r,t,i,a,"reference","referenceMarker","referenceString")(e)}function i(t){return r.parser.defined.includes(Ji(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)))?e(t):n(t)}function a(t){return n(t)}}function za(t,e,n){return r;function r(e){return t.enter("reference"),t.enter("referenceMarker"),t.consume(e),t.exit("referenceMarker"),o}function o(r){return 93===r?(t.enter("referenceMarker"),t.consume(r),t.exit("referenceMarker"),t.exit("reference"),e):n(r)}}const Ha=undefined;function Va(t,e,n){const r=this;return o;function o(e){return t.enter("labelImage"),t.enter("labelImageMarker"),t.consume(e),t.exit("labelImageMarker"),i}function i(e){return 91===e?(t.enter("labelMarker"),t.consume(e),t.exit("labelMarker"),t.exit("labelImage"),a):n(e)}function a(t){return 94===t&&"_hiddenFootnoteSupport"in r.parser.constructs?n(t):e(t)}}function $a(t){return null===t||Zo(t)||ni(t)?1:ei(t)?2:void 0}const Ga={name:"attention",tokenize:Ya,resolveAll:Wa};function Wa(t,e){let n=-1,r,o,i,a,u,c,s,l;for(;++n<t.length;)if("enter"===t[n][0]&&"attentionSequence"===t[n][1].type&&t[n][1]._close)for(r=n;r--;)if("exit"===t[r][0]&&"attentionSequence"===t[r][1].type&&t[r][1]._open&&e.sliceSerialize(t[r][1]).charCodeAt(0)===e.sliceSerialize(t[n][1]).charCodeAt(0)){if((t[r][1]._close||t[n][1]._open)&&(t[n][1].end.offset-t[n][1].start.offset)%3&&!((t[r][1].end.offset-t[r][1].start.offset+t[n][1].end.offset-t[n][1].start.offset)%3))continue;c=t[r][1].end.offset-t[r][1].start.offset>1&&t[n][1].end.offset-t[n][1].start.offset>1?2:1;const f=Object.assign({},t[r][1].end),p=Object.assign({},t[n][1].start);Ka(f,-c),Ka(p,c),a={type:c>1?"strongSequence":"emphasisSequence",start:f,end:Object.assign({},t[r][1].end)},u={type:c>1?"strongSequence":"emphasisSequence",start:Object.assign({},t[n][1].start),end:p},i={type:c>1?"strongText":"emphasisText",start:Object.assign({},t[r][1].end),end:Object.assign({},t[n][1].start)},o={type:c>1?"strong":"emphasis",start:Object.assign({},a.start),end:Object.assign({},u.end)},t[r][1].end=Object.assign({},a.start),t[n][1].start=Object.assign({},u.end),s=[],t[r][1].end.offset-t[r][1].start.offset&&(s=Mo(s,[["enter",t[r][1],e],["exit",t[r][1],e]])),s=Mo(s,[["enter",o,e],["enter",a,e],["exit",a,e],["enter",i,e]]),s=Mo(s,Ci(e.parser.constructs.insideSpan.null,t.slice(r+1,n),e)),s=Mo(s,[["exit",i,e],["enter",u,e],["exit",u,e],["exit",o,e]]),t[n][1].end.offset-t[n][1].start.offset?(l=2,s=Mo(s,[["enter",t[n][1],e],["exit",t[n][1],e]])):l=0,_o(t,r-1,n-r+3,s),n=r+s.length-l-2;break}for(n=-1;++n<t.length;)"attentionSequence"===t[n][1].type&&(t[n][1].type="data");return t}function Ya(t,e){const n=this.parser.constructs.attentionMarkers.null,r=this.previous,o=$a(r);let i;return a;function a(e){return i=e,t.enter("attentionSequence"),u(e)}function u(a){if(a===i)return t.consume(a),u;const c=t.exit("attentionSequence"),s=$a(a),l=!s||2===s&&o||n.includes(a),f=!o||2===o&&s||n.includes(r);return c._open=Boolean(42===i?l:l&&(o||!f)),c._close=Boolean(42===i?f:f&&(s||!l)),e(a)}}function Ka(t,e){t.column+=e,t.offset+=e,t._bufferIndex+=e}const Ja=undefined;function Qa(t,e,n){let r=0;return o;function o(e){return t.enter("autolink"),t.enter("autolinkMarker"),t.consume(e),t.exit("autolinkMarker"),t.enter("autolinkProtocol"),i}function i(e){return $o(e)?(t.consume(e),a):s(e)}function a(t){return 43===t||45===t||46===t||Go(t)?(r=1,u(t)):s(t)}function u(e){return 58===e?(t.consume(e),r=0,c):(43===e||45===e||46===e||Go(e))&&r++<32?(t.consume(e),u):(r=0,s(e))}function c(r){return 62===r?(t.exit("autolinkProtocol"),t.enter("autolinkMarker"),t.consume(r),t.exit("autolinkMarker"),t.exit("autolink"),e):null===r||32===r||60===r||Yo(r)?n(r):(t.consume(r),c)}function s(e){return 64===e?(t.consume(e),l):Wo(e)?(t.consume(e),s):n(e)}function l(t){return Go(t)?f(t):n(t)}function f(n){return 46===n?(t.consume(n),r=0,l):62===n?(t.exit("autolinkProtocol").type="autolinkEmail",t.enter("autolinkMarker"),t.consume(n),t.exit("autolinkMarker"),t.exit("autolink"),e):p(n)}function p(e){if((45===e||Go(e))&&r++<63){const n=45===e?p:f;return t.consume(e),n}return n(e)}}const Xa=undefined;function Za(t,e,n){const r=this;let o,i,a;return u;function u(e){return t.enter("htmlText"),t.enter("htmlTextData"),t.consume(e),c}function c(e){return 33===e?(t.consume(e),s):47===e?(t.consume(e),w):63===e?(t.consume(e),b):$o(e)?(t.consume(e),E):n(e)}function s(e){return 45===e?(t.consume(e),l):91===e?(t.consume(e),i=0,d):$o(e)?(t.consume(e),y):n(e)}function l(e){return 45===e?(t.consume(e),h):n(e)}function f(e){return null===e?n(e):45===e?(t.consume(e),p):Xo(e)?(a=f,I(e)):(t.consume(e),f)}function p(e){return 45===e?(t.consume(e),h):f(e)}function h(t){return 62===t?j(t):45===t?p(t):f(t)}function d(e){const r="CDATA[";return e===r.charCodeAt(i++)?(t.consume(e),i===r.length?g:d):n(e)}function g(e){return null===e?n(e):93===e?(t.consume(e),v):Xo(e)?(a=g,I(e)):(t.consume(e),g)}function v(e){return 93===e?(t.consume(e),m):g(e)}function m(e){return 62===e?j(e):93===e?(t.consume(e),m):g(e)}function y(e){return null===e||62===e?j(e):Xo(e)?(a=y,I(e)):(t.consume(e),y)}function b(e){return null===e?n(e):63===e?(t.consume(e),x):Xo(e)?(a=b,I(e)):(t.consume(e),b)}function x(t){return 62===t?j(t):b(t)}function w(e){return $o(e)?(t.consume(e),k):n(e)}function k(e){return 45===e||Go(e)?(t.consume(e),k):S(e)}function S(e){return Xo(e)?(a=S,I(e)):ti(e)?(t.consume(e),S):j(e)}function E(e){return 45===e||Go(e)?(t.consume(e),E):47===e||62===e||Zo(e)?O(e):n(e)}function O(e){return 47===e?(t.consume(e),j):58===e||95===e||$o(e)?(t.consume(e),A):Xo(e)?(a=O,I(e)):ti(e)?(t.consume(e),O):j(e)}function A(e){return 45===e||46===e||58===e||95===e||Go(e)?(t.consume(e),A):T(e)}function T(e){return 61===e?(t.consume(e),C):Xo(e)?(a=T,I(e)):ti(e)?(t.consume(e),T):O(e)}function C(e){return null===e||60===e||61===e||62===e||96===e?n(e):34===e||39===e?(t.consume(e),o=e,P):Xo(e)?(a=C,I(e)):ti(e)?(t.consume(e),C):(t.consume(e),R)}function P(e){return e===o?(t.consume(e),o=void 0,L):null===e?n(e):Xo(e)?(a=P,I(e)):(t.consume(e),P)}function R(e){return null===e||34===e||39===e||60===e||61===e||96===e?n(e):47===e||62===e||Zo(e)?O(e):(t.consume(e),R)}function L(t){return 47===t||62===t||Zo(t)?O(t):n(t)}function j(r){return 62===r?(t.consume(r),t.exit("htmlTextData"),t.exit("htmlText"),e):n(r)}function I(e){return t.exit("htmlTextData"),t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),F}function F(e){return ti(e)?oi(t,D,"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(e):D(e)}function D(e){return t.enter("htmlTextData"),a(e)}}const tu=undefined;function eu(t,e,n){const r=this;return o;function o(e){return t.enter("labelLink"),t.enter("labelMarker"),t.consume(e),t.exit("labelMarker"),t.exit("labelLink"),i}function i(t){return 94===t&&"_hiddenFootnoteSupport"in r.parser.constructs?n(t):e(t)}}const nu=undefined;function ru(t,e,n){return r;function r(e){return t.enter("hardBreakEscape"),t.consume(e),o}function o(r){return Xo(r)?(t.exit("hardBreakEscape"),e(r)):n(r)}}const ou=undefined;function iu(t){let e=t.length-4,n=3,r,o;if(!("lineEnding"!==t[n][1].type&&"space"!==t[n][1].type||"lineEnding"!==t[e][1].type&&"space"!==t[e][1].type))for(r=n;++r<e;)if("codeTextData"===t[r][1].type){t[n][1].type="codeTextPadding",t[e][1].type="codeTextPadding",n+=2,e-=2;break}for(r=n-1,e++;++r<=e;)void 0===o?r!==e&&"lineEnding"!==t[r][1].type&&(o=r):r!==e&&"lineEnding"!==t[r][1].type||(t[o][1].type="codeTextData",r!==o+2&&(t[o][1].end=t[r-1][1].end,t.splice(o+2,r-o-2),e-=r-o-2,r=o+2),o=void 0);return t}function au(t){return 96!==t||"characterEscape"===this.events[this.events.length-1][1].type}function uu(t,e,n){const r=this;let o=0,i,a;return u;function u(e){return t.enter("codeText"),t.enter("codeTextSequence"),c(e)}function c(e){return 96===e?(t.consume(e),o++,c):(t.exit("codeTextSequence"),s(e))}function s(e){return null===e?n(e):32===e?(t.enter("space"),t.consume(e),t.exit("space"),s):96===e?(a=t.enter("codeTextSequence"),i=0,f(e)):Xo(e)?(t.enter("lineEnding"),t.consume(e),t.exit("lineEnding"),s):(t.enter("codeTextData"),l(e))}function l(e){return null===e||32===e||96===e||Xo(e)?(t.exit("codeTextData"),s(e)):(t.consume(e),l)}function f(n){return 96===n?(t.consume(n),i++,f):i===o?(t.exit("codeTextSequence"),t.exit("codeText"),e(n)):(a.type="codeTextData",l(n))}}const cu={42:Fi,43:Fi,45:Fi,48:Fi,49:Fi,50:Fi,51:Fi,52:Fi,53:Fi,54:Fi,55:Fi,56:Fi,57:Fi,62:zi},su={91:{name:"definition",tokenize:Zi}},lu={[-2]:ea,[-1]:ea,32:ea},fu={35:{name:"headingAtx",tokenize:ua,resolve:aa},42:ji,45:[ca,ji],60:{name:"htmlFlow",tokenize:ma,resolveTo:va,concrete:!0},61:ca,95:ji,96:wa,126:wa},pu={38:Ta,92:Pa},hu={[-5]:La,[-4]:La,[-3]:La,33:{name:"labelStartImage",tokenize:Va,resolveAll:Ia.resolveAll},38:Ta,42:Ga,60:[{name:"autolink",tokenize:Qa},{name:"htmlText",tokenize:Za}],91:{name:"labelStartLink",tokenize:eu,resolveAll:Ia.resolveAll},92:[{name:"hardBreakEscape",tokenize:ru},Pa],93:Ia,95:Ga,96:{name:"codeText",tokenize:uu,resolve:iu,previous:au}},du={null:[Ga,ki]},gu={null:[42,95]},vu={null:[]};function mu(t){const e=undefined,n=undefined,o={defined:[],lazy:{},constructs:Uo([r,...(t||{}).extensions||[]]),content:i(ii),document:i(ui),flow:i(xi),string:i(Si),text:i(Ei)};return o;function i(t){return e;function e(e){return Pi(o,t,e)}}}const yu=/[\0\t\n\r]/g;function bu(){let t=1,e="",n=!0,r;return o;function o(o,i,a){const u=[];let c,s,l,f,p;for(o=e+o.toString(i),l=0,e="",n&&(65279===o.charCodeAt(0)&&l++,n=void 0);l<o.length;){if(yu.lastIndex=l,c=yu.exec(o),f=c&&void 0!==c.index?c.index:o.length,p=o.charCodeAt(f),!c){e=o.slice(l);break}if(10===p&&l===f&&r)u.push(-3),r=void 0;else switch(r&&(u.push(-5),r=void 0),l<f&&(u.push(o.slice(l,f)),t+=f-l),p){case 0:u.push(65533),t++;break;case 9:for(s=4*Math.ceil(t/4),u.push(-2);t++<s;)u.push(-1);break;case 10:u.push(-4),t=1;break;default:r=!0,t=1}l=f+1}return a&&(r&&u.push(-5),e&&u.push(e),u.push(null)),u}}function xu(t){for(;!hi(t););return t}function wu(t,e){const n=Number.parseInt(t,e);return n<9||11===n||n>13&&n<32||n>126&&n<160||n>55295&&n<57344||n>64975&&n<65008||65535==(65535&n)||65534==(65535&n)||n>1114111?"\ufffd":String.fromCharCode(n)}const ku=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function Su(t){return t.replace(ku,Eu)}function Eu(t,e,n){if(e)return e;const r=undefined;if(35===n.charCodeAt(0)){const t=n.charCodeAt(1),e=120===t||88===t;return wu(n.slice(e?2:1),e?16:10)}return Aa(n)||t}const Ou={}.hasOwnProperty,Au=function(t,e,n){return"string"!=typeof e&&(n=e,e=void 0),Tu(n)(xu(mu(n).document().write(bu()(t,e,!0))))};function Tu(t){const e={transforms:[],canContainEols:["emphasis","fragment","heading","paragraph","strong"],enter:{autolink:u(nt),autolinkProtocol:T,autolinkEmail:T,atxHeading:u(X),blockQuote:u(W),characterEscape:T,characterReference:T,codeFenced:u(Y),codeFencedFenceInfo:c,codeFencedFenceMeta:c,codeIndented:u(Y,c),codeText:u(K,c),codeTextData:T,data:T,codeFlowValue:T,definition:u(J),definitionDestinationString:c,definitionLabelString:c,definitionTitleString:c,emphasis:u(Q),hardBreakEscape:u(Z),hardBreakTrailing:u(Z),htmlFlow:u(tt,c),htmlFlowData:T,htmlText:u(tt,c),htmlTextData:T,image:u(et),label:c,link:u(nt),listItem:u(ot),listItemValue:d,listOrdered:u(rt,h),listUnordered:u(rt),paragraph:u(it),reference:B,referenceString:c,resourceDestinationString:c,resourceTitleString:c,setextHeading:u(X),strong:u(at),thematicBreak:u(ct)},exit:{atxHeading:l(),atxHeadingSequence:S,autolink:l(),autolinkEmail:G,autolinkProtocol:$,blockQuote:l(),characterEscapeValue:C,characterReferenceMarkerHexadecimal:H,characterReferenceMarkerNumeric:H,characterReferenceValue:V,codeFenced:l(y),codeFencedFence:m,codeFencedFenceInfo:g,codeFencedFenceMeta:v,codeFlowValue:C,codeIndented:l(b),codeText:l(I),codeTextData:C,data:C,definition:l(),definitionDestinationString:k,definitionLabelString:x,definitionTitleString:w,emphasis:l(),hardBreakEscape:l(R),hardBreakTrailing:l(R),htmlFlow:l(L),htmlFlowData:C,htmlText:l(j),htmlTextData:C,image:l(D),label:M,labelText:_,lineEnding:P,link:l(F),listItem:l(),listOrdered:l(),listUnordered:l(),paragraph:l(),referenceString:z,resourceDestinationString:N,resourceTitleString:U,resource:q,setextHeading:l(A),setextHeadingLineSequence:O,setextHeadingText:E,strong:l(),thematicBreak:l()}};Pu(e,(t||{}).mdastExtensions||[]);const n={};return r;function r(t){let n={type:"root",children:[]};const r={stack:[n],tokenStack:[],config:e,enter:s,exit:f,buffer:c,resume:p,setData:i,getData:a},u=[];let l=-1;for(;++l<t.length;)if("listOrdered"===t[l][1].type||"listUnordered"===t[l][1].type)if("enter"===t[l][0])u.push(l);else{const e=undefined;l=o(t,u.pop(),l)}for(l=-1;++l<t.length;){const n=e[t[l][0]];Ou.call(n,t[l][1].type)&&n[t[l][1].type].call(Object.assign({sliceSerialize:t[l][2].sliceSerialize},r),t[l][1])}if(r.tokenStack.length>0){const t=r.tokenStack[r.tokenStack.length-1],e=undefined;(t[1]||Lu).call(r,void 0,t[0])}for(n.position={start:Cu(t.length>0?t[0][1].start:{line:1,column:1,offset:0}),end:Cu(t.length>0?t[t.length-2][1].end:{line:1,column:1,offset:0})},l=-1;++l<e.transforms.length;)n=e.transforms[l](n)||n;return n}function o(t,e,n){let r=e-1,o=-1,i=!1,a,u,c,s;for(;++r<=n;){const e=t[r];if("listUnordered"===e[1].type||"listOrdered"===e[1].type||"blockQuote"===e[1].type?("enter"===e[0]?o++:o--,s=void 0):"lineEndingBlank"===e[1].type?"enter"===e[0]&&(!a||s||o||c||(c=r),s=void 0):"linePrefix"===e[1].type||"listItemValue"===e[1].type||"listItemMarker"===e[1].type||"listItemPrefix"===e[1].type||"listItemPrefixWhitespace"===e[1].type||(s=void 0),!o&&"enter"===e[0]&&"listItemPrefix"===e[1].type||-1===o&&"exit"===e[0]&&("listUnordered"===e[1].type||"listOrdered"===e[1].type)){if(a){let o=r;for(u=void 0;o--;){const e=t[o];if("lineEnding"===e[1].type||"lineEndingBlank"===e[1].type){if("exit"===e[0])continue;u&&(t[u][1].type="lineEndingBlank",i=!0),e[1].type="lineEnding",u=o}else if("linePrefix"!==e[1].type&&"blockQuotePrefix"!==e[1].type&&"blockQuotePrefixWhitespace"!==e[1].type&&"blockQuoteMarker"!==e[1].type&&"listItemIndent"!==e[1].type)break}c&&(!u||c<u)&&(a._spread=!0),a.end=Object.assign({},u?t[u][1].start:e[1].end),t.splice(u||r,0,["exit",a,e[2]]),r++,n++}"listItemPrefix"===e[1].type&&(a={type:"listItem",_spread:!1,start:Object.assign({},e[1].start),end:void 0},t.splice(r,0,["enter",a,e[2]]),r++,n++,c=void 0,s=!0)}}return t[e][1]._spread=i,n}function i(t,e){n[t]=e}function a(t){return n[t]}function u(t,e){return n;function n(n){s.call(this,t(n),n),e&&e.call(this,n)}}function c(){this.stack.push({type:"fragment",children:[]})}function s(t,e,n){const r=undefined;return this.stack[this.stack.length-1].children.push(t),this.stack.push(t),this.tokenStack.push([e,n]),t.position={start:Cu(e.start)},t}function l(t){return e;function e(e){t&&t.call(this,e),f.call(this,e)}}function f(t,e){const n=this.stack.pop(),r=this.tokenStack.pop();if(!r)throw new Error("Cannot close `"+t.type+"` ("+Br({start:t.start,end:t.end})+"): it\u2019s not open");if(r[0].type!==t.type)if(e)e.call(this,t,r[0]);else{const e=undefined;(r[1]||Lu).call(this,t,r[0])}return n.position.end=Cu(t.end),n}function p(){return jo(this.stack.pop())}function h(){i("expectingFirstListItemValue",!0)}function d(t){if(a("expectingFirstListItemValue")){const e=undefined;this.stack[this.stack.length-2].start=Number.parseInt(this.sliceSerialize(t),10),i("expectingFirstListItemValue")}}function g(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].lang=t}function v(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].meta=t}function m(){a("flowCodeInside")||(this.buffer(),i("flowCodeInside",!0))}function y(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].value=t.replace(/^(\r?\n|\r)|(\r?\n|\r)$/g,""),i("flowCodeInside")}function b(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].value=t.replace(/(\r?\n|\r)$/g,"")}function x(t){const e=this.resume(),n=this.stack[this.stack.length-1];n.label=e,n.identifier=Ji(this.sliceSerialize(t)).toLowerCase()}function w(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].title=t}function k(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].url=t}function S(t){const e=this.stack[this.stack.length-1];if(!e.depth){const n=this.sliceSerialize(t).length;e.depth=n}}function E(){i("setextHeadingSlurpLineEnding",!0)}function O(t){const e=undefined;this.stack[this.stack.length-1].depth=61===this.sliceSerialize(t).charCodeAt(0)?1:2}function A(){i("setextHeadingSlurpLineEnding")}function T(t){const e=this.stack[this.stack.length-1];let n=e.children[e.children.length-1];n&&"text"===n.type||(n={type:"text",value:""},n.position={start:Cu(t.start)},e.children.push(n)),this.stack.push(n)}function C(t){const e=this.stack.pop();e.value+=this.sliceSerialize(t),e.position.end=Cu(t.end)}function P(t){const n=this.stack[this.stack.length-1];if(a("atHardBreak")){const e=undefined;return n.children[n.children.length-1].position.end=Cu(t.end),void i("atHardBreak")}!a("setextHeadingSlurpLineEnding")&&e.canContainEols.includes(n.type)&&(T.call(this,t),C.call(this,t))}function R(){i("atHardBreak",!0)}function L(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].value=t}function j(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].value=t}function I(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].value=t}function F(){const t=this.stack[this.stack.length-1];if(a("inReference")){const e=a("referenceType")||"shortcut";t.type+="Reference",t.referenceType=e,delete t.url,delete t.title}else delete t.identifier,delete t.label;i("referenceType")}function D(){const t=this.stack[this.stack.length-1];if(a("inReference")){const e=a("referenceType")||"shortcut";t.type+="Reference",t.referenceType=e,delete t.url,delete t.title}else delete t.identifier,delete t.label;i("referenceType")}function _(t){const e=this.sliceSerialize(t),n=this.stack[this.stack.length-2];n.label=Su(e),n.identifier=Ji(e).toLowerCase()}function M(){const t=this.stack[this.stack.length-1],e=this.resume(),n=this.stack[this.stack.length-1];if(i("inReference",!0),"link"===n.type){const e=t.children;n.children=e}else n.alt=e}function N(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].url=t}function U(){const t=this.resume(),e=undefined;this.stack[this.stack.length-1].title=t}function q(){i("inReference")}function B(){i("referenceType","collapsed")}function z(t){const e=this.resume(),n=this.stack[this.stack.length-1];n.label=e,n.identifier=Ji(this.sliceSerialize(t)).toLowerCase(),i("referenceType","full")}function H(t){i("characterReferenceType",t.type)}function V(t){const e=this.sliceSerialize(t),n=a("characterReferenceType");let r;if(n)r=wu(e,"characterReferenceMarkerNumeric"===n?10:16),i("characterReferenceType");else{const t=undefined;r=Aa(e)}const o=this.stack.pop();o.value+=r,o.position.end=Cu(t.end)}function $(t){C.call(this,t);const e=undefined;this.stack[this.stack.length-1].url=this.sliceSerialize(t)}function G(t){C.call(this,t);const e=undefined;this.stack[this.stack.length-1].url="mailto:"+this.sliceSerialize(t)}function W(){return{type:"blockquote",children:[]}}function Y(){return{type:"code",lang:null,meta:null,value:""}}function K(){return{type:"inlineCode",value:""}}function J(){return{type:"definition",identifier:"",label:null,title:null,url:""}}function Q(){return{type:"emphasis",children:[]}}function X(){return{type:"heading",depth:void 0,children:[]}}function Z(){return{type:"break"}}function tt(){return{type:"html",value:""}}function et(){return{type:"image",title:null,url:"",alt:null}}function nt(){return{type:"link",title:null,url:"",children:[]}}function rt(t){return{type:"list",ordered:"listOrdered"===t.type,start:null,spread:t._spread,children:[]}}function ot(t){return{type:"listItem",spread:t._spread,checked:null,children:[]}}function it(){return{type:"paragraph",children:[]}}function at(){return{type:"strong",children:[]}}function ut(){return{type:"text",value:""}}function ct(){return{type:"thematicBreak"}}}function Cu(t){return{line:t.line,column:t.column,offset:t.offset}}function Pu(t,e){let n=-1;for(;++n<e.length;){const r=e[n];Array.isArray(r)?Pu(t,r):Ru(t,r)}}function Ru(t,e){let n;for(n in e)if(Ou.call(e,n))if("canContainEols"===n){const r=e[n];r&&t[n].push(...r)}else if("transforms"===n){const r=e[n];r&&t[n].push(...r)}else if("enter"===n||"exit"===n){const r=e[n];r&&Object.assign(t[n],r)}}function Lu(t,e){throw t?new Error("Cannot close `"+t.type+"` ("+Br({start:t.start,end:t.end})+"): a different token (`"+e.type+"`, "+Br({start:e.start,end:e.end})+") is open"):new Error("Cannot close document, a token (`"+e.type+"`, "+Br({start:e.start,end:e.end})+") is still open")}function ju(t){const e=e=>{const n=this.data("settings");return Au(e,Object.assign({},n,t,{extensions:this.data("micromarkExtensions")||[],mdastExtensions:this.data("fromMarkdownExtensions")||[]}))};Object.assign(this,{Parser:e})}const Iu=function(t,e,n){const r={type:String(t)};return null!=n||"string"!=typeof e&&!Array.isArray(e)?Object.assign(r,e):n=e,Array.isArray(n)?r.children=n:null!=n&&(r.value=String(n)),r},Fu=function t(e,n,r,o,i){const a=Du(n);if(null!=r&&("number"!=typeof r||r<0||r===Number.POSITIVE_INFINITY))throw new Error("Expected positive finite index");if(!(null==o||t(o)&&o.children))throw new Error("Expected parent node");if(null==o!=(null==r))throw new Error("Expected both parent and index");return!(!e||!e.type||"string"!=typeof e.type)&&Boolean(a.call(i,e,r,o))},Du=function(t){if(null==t)return qu;if("string"==typeof t)return Nu(t);if("object"==typeof t)return Array.isArray(t)?_u(t):Mu(t);if("function"==typeof t)return Uu(t);throw new Error("Expected function, string, or object as test")};function _u(t){const e=[];let n=-1;for(;++n<t.length;)e[n]=Du(t[n]);return Uu(r);function r(...t){let n=-1;for(;++n<e.length;)if(e[n].call(this,...t))return!0;return!1}}function Mu(t){return Uu(e);function e(e){let n;for(n in t)if(e[n]!==t[n])return!1;return!0}}function Nu(t){return Uu(e);function e(e){return e&&e.type===t}}function Uu(t){return e;function e(e,...n){return Boolean(e&&"object"==typeof e&&"type"in e&&Boolean(t.call(this,e,...n)))}}function qu(){return!0}function Bu(t){return t}const zu=!0,Hu=!1,Vu="skip",$u=function(t,e,n,r){"function"==typeof e&&"function"!=typeof n&&(r=n,n=e,e=null);const o=Du(e),i=r?-1:1;function a(t,u,c){const s=t&&"object"==typeof t?t:{};if("string"==typeof s.type){const e="string"==typeof s.tagName?s.tagName:"string"==typeof s.name?s.name:void 0;Object.defineProperty(l,"name",{value:"node ("+t.type+(e?"<"+e+">":"")+")"})}return l;function l(){let s=[],l,f,p;if((!e||o(t,u,c[c.length-1]||null))&&(s=Gu(n(t,c)),!1===s[0]))return s;if(t.children&&s[0]!==Vu)for(f=(r?t.children.length:-1)+i,p=c.concat(t);f>-1&&f<t.children.length;){if(l=a(t.children[f],f,p)(),!1===l[0])return l;f="number"==typeof l[1]?l[1]:f+i}return s}}a(t,void 0,[])()};function Gu(t){return Array.isArray(t)?t:"number"==typeof t?[!0,t]:[t]}const Wu=function(t,e,n,r){function o(t,e){const r=e[e.length-1];return n(t,r?r.children.indexOf(t):null,r)}"function"==typeof e&&"function"!=typeof n&&(r=n,n=e,e=null),$u(t,e,o,r)},Yu=Qu("start"),Ku=Qu("end");function Ju(t){return{start:Yu(t),end:Ku(t)}}function Qu(t){return e;function e(e){const n=e&&e.position&&e.position[t]||{};return{line:n.line||null,column:n.column||null,offset:n.offset>-1?n.offset:null}}}function Xu(t){return!(t&&t.position&&t.position.start&&t.position.start.line&&t.position.start.column&&t.position.end&&t.position.end.line&&t.position.end.column)}const Zu={}.hasOwnProperty;function tc(t){const e=Object.create(null);if(!t||!t.type)throw new Error("mdast-util-definitions expected node");return Wu(t,"definition",t=>{const n=ec(t.identifier);n&&!Zu.call(e,n)&&(e[n]=t)}),n;function n(t){const n=ec(t);return n&&Zu.call(e,n)?e[n]:null}}function ec(t){return String(t||"").toUpperCase()}const nc={}.hasOwnProperty;function rc(t,e){const n=e.data||{};return"value"in e&&!(nc.call(n,"hName")||nc.call(n,"hProperties")||nc.call(n,"hChildren"))?t.augment(e,Iu("text",e.value)):t(e,"div",ac(t,e))}function oc(t,e,n){const r=e&&e.type;let o;if(!r)throw new Error("Expected node, got `"+e+"`");return o=nc.call(t.handlers,r)?t.handlers[r]:t.passThrough&&t.passThrough.includes(r)?ic:t.unknownHandler,("function"==typeof o?o:rc)(t,e,n)}function ic(t,e){return"children"in e?{...e,children:ac(t,e)}:e}function ac(t,e){const n=[];if("children"in e){const r=e.children;let o=-1;for(;++o<r.length;){const i=oc(t,r[o],e);if(i){if(o&&"break"===r[o-1].type&&(Array.isArray(i)||"text"!==i.type||(i.value=i.value.replace(/^\s+/,"")),!Array.isArray(i)&&"element"===i.type)){const t=i.children[0];t&&"text"===t.type&&(t.value=t.value.replace(/^\s+/,""))}Array.isArray(i)?n.push(...i):n.push(i)}}}return n}function uc(t,e){return t(e,"hr")}function cc(t,e){const n=[];let r=-1;for(e&&n.push(Iu("text","\n"));++r<t.length;)r&&n.push(Iu("text","\n")),n.push(t[r]);return e&&t.length>0&&n.push(Iu("text","\n")),n}function sc(t,e){const n={},r=e.ordered?"ol":"ul",o=ac(t,e);let i=-1;for("number"==typeof e.start&&1!==e.start&&(n.start=e.start);++i<o.length;){const t=o[i];if("element"===t.type&&"li"===t.tagName&&t.properties&&Array.isArray(t.properties.className)&&t.properties.className.includes("task-list-item")){n.className=["contains-task-list"];break}}return t(e,r,n,cc(o,!0))}function lc(t){const e=t.footnoteById,n=t.footnoteOrder;let r=-1;const o=[];for(;++r<n.length;){const t=e[n[r].toUpperCase()];if(!t)continue;const i=String(r+1),a=[...t.children],u={type:"link",url:"#fnref"+i,data:{hProperties:{className:["footnote-back"],role:"doc-backlink"}},children:[{type:"text",value:"\u21a9"}]},c=a[a.length-1];c&&"paragraph"===c.type?c.children.push(u):a.push(u),o.push({type:"listItem",data:{hProperties:{id:"fn"+i,role:"doc-endnote"}},children:a,position:t.position})}return 0===o.length?null:t(null,"section",{className:["footnotes"],role:"doc-endnotes"},cc([uc(t),sc(t,{type:"list",ordered:!0,children:o})],!0))}function fc(t,e){return t(e,"blockquote",cc(ac(t,e),!0))}function pc(t,e){return[t(e,"br"),Iu("text","\n")]}function hc(t,e){const n=e.value?e.value+"\n":"",r=e.lang&&e.lang.match(/^[^ \t]+(?=[ \t]|$)/),o={};r&&(o.className=["language-"+r]);const i=t(e,"code",o,[Iu("text",n)]);return e.meta&&(i.data={meta:e.meta}),t(e.position,"pre",[i])}function dc(t,e){return t(e,"del",ac(t,e))}function gc(t,e){return t(e,"em",ac(t,e))}function vc(t,e){const n=t.footnoteOrder,r=String(e.identifier),o=n.indexOf(r),i=String(-1===o?n.push(r):o+1);return t(e,"a",{href:"#fn"+i,className:["footnote-ref"],id:"fnref"+i,role:"doc-noteref"},[t(e.position,"sup",[Iu("text",i)])])}function mc(t,e){const n=t.footnoteById,r=t.footnoteOrder;let o=1;for(;o in n;)o++;const i=String(o);return r.push(i),n[i]={type:"footnoteDefinition",identifier:i,children:[{type:"paragraph",children:e.children}],position:e.position},vc(t,{type:"footnoteReference",identifier:i,position:e.position})}function yc(t,e){return t(e,"h"+e.depth,ac(t,e))}function bc(t,e){return t.dangerous?t.augment(e,Iu("raw",e.value)):null}var xc=n(59),wc=n.n(xc);function kc(t,e){const n=e.referenceType;let r="]";if("collapsed"===n?r+="[]":"full"===n&&(r+="["+(e.label||e.identifier)+"]"),"imageReference"===e.type)return Iu("text","!["+e.alt+r);const o=ac(t,e),i=o[0];i&&"text"===i.type?i.value="["+i.value:o.unshift(Iu("text","["));const a=o[o.length-1];return a&&"text"===a.type?a.value+=r:o.push(Iu("text",r)),o}function Sc(t,e){const n=t.definition(e.identifier);if(!n)return kc(t,e);const r={src:wc()(n.url||""),alt:e.alt};return null!==n.title&&void 0!==n.title&&(r.title=n.title),t(e,"img",r)}function Ec(t,e){const n={src:wc()(e.url),alt:e.alt};return null!==e.title&&void 0!==e.title&&(n.title=e.title),t(e,"img",n)}function Oc(t,e){return t(e,"code",[Iu("text",e.value.replace(/\r?\n|\r/g," "))])}function Ac(t,e){const n=t.definition(e.identifier);if(!n)return kc(t,e);const r={href:wc()(n.url||"")};return null!==n.title&&void 0!==n.title&&(r.title=n.title),t(e,"a",r,ac(t,e))}function Tc(t,e){const n={href:wc()(e.url)};return null!==e.title&&void 0!==e.title&&(n.title=e.title),t(e,"a",n,ac(t,e))}function Cc(t,e,n){const r=ac(t,e),o=n?Pc(n):Rc(e),i={},a=[];if("boolean"==typeof e.checked){let n;r[0]&&"element"===r[0].type&&"p"===r[0].tagName?n=r[0]:(n=t(null,"p",[]),r.unshift(n)),n.children.length>0&&n.children.unshift(Iu("text"," ")),n.children.unshift(t(null,"input",{type:"checkbox",checked:e.checked,disabled:!0})),i.className=["task-list-item"]}let u=-1;for(;++u<r.length;){const t=r[u];(o||0!==u||"element"!==t.type||"p"!==t.tagName)&&a.push(Iu("text","\n")),"element"!==t.type||"p"!==t.tagName||o?a.push(t):a.push(...t.children)}const c=r[r.length-1];return!c||!o&&"tagName"in c&&"p"===c.tagName||a.push(Iu("text","\n")),t(e,"li",i,a)}function Pc(t){let e=t.spread;const n=t.children;let r=-1;for(;!e&&++r<n.length;)e=Rc(n[r]);return Boolean(e)}function Rc(t){const e=t.spread;return null==e?t.children.length>1:e}function Lc(t,e){return t(e,"p",ac(t,e))}function jc(t,e){return t.augment(e,Iu("root",cc(ac(t,e))))}function Ic(t,e){return t(e,"strong",ac(t,e))}function Fc(t,e){const n=e.children;let r=-1;const o=e.align||[],i=[];for(;++r<n.length;){const a=n[r].children,u=0===r?"th":"td";let c=e.align?o.length:a.length;const s=[];for(;c--;){const e=a[c];s[c]=t(e,u,{align:o[c]},e?ac(t,e):[])}i[r]=t(n[r],"tr",cc(s,!0))}return t(e,"table",cc([t(i[0].position,"thead",cc([i[0]],!0))].concat(i[1]?t({start:Yu(i[1]),end:Ku(i[i.length-1])},"tbody",cc(i.slice(1),!0)):[]),!0))}function Dc(t,e){return t.augment(e,Iu("text",String(e.value).replace(/[ \t]*(\r?\n|\r)[ \t]*/g,"$1")))}const _c={blockquote:fc,break:pc,code:hc,delete:dc,emphasis:gc,footnoteReference:vc,footnote:mc,heading:yc,html:bc,imageReference:Sc,image:Ec,inlineCode:Oc,linkReference:Ac,link:Tc,listItem:Cc,list:sc,paragraph:Lc,root:jc,strong:Ic,table:Fc,text:Dc,thematicBreak:uc,toml:Mc,yaml:Mc,definition:Mc,footnoteDefinition:Mc};function Mc(){return null}const Nc={}.hasOwnProperty;function Uc(t,e){const n=e||{},r=n.allowDangerousHtml||!1,o={};return a.dangerous=r,a.definition=tc(t),a.footnoteById=o,a.footnoteOrder=[],a.augment=i,a.handlers={..._c,...n.handlers},a.unknownHandler=n.unknownHandler,a.passThrough=n.passThrough,Wu(t,"footnoteDefinition",t=>{const e=String(t.identifier).toUpperCase();Nc.call(o,e)||(o[e]=t)}),a;function i(t,e){if(t&&"data"in t&&t.data){const n=t.data;n.hName&&("element"!==e.type&&(e={type:"element",tagName:"",properties:{},children:[]}),e.tagName=n.hName),"element"===e.type&&n.hProperties&&(e.properties={...e.properties,...n.hProperties}),"children"in e&&e.children&&n.hChildren&&(e.children=n.hChildren)}if(t){const n="type"in t?t:{position:t};Xu(n)||(e.position={start:Yu(n),end:Ku(n)})}return e}function a(t,e,n,r){return Array.isArray(n)&&(r=n,n={}),i(t,{type:"element",tagName:e,properties:n||{},children:r||[]})}}function qc(t,e){const n=Uc(t,e),r=oc(n,t,null),o=lc(n);return o&&r.children.push(Iu("text","\n"),o),Array.isArray(r)?{type:"root",children:r}:r}const Bc=undefined;var zc=function(t,e){return t&&"run"in t?Hc(t,e):Vc(t)};function Hc(t,e){return(n,r,o)=>{t.run(qc(n,e),r,t=>{o(t)})}}function Vc(t){return e=>qc(e,t)}var $c=n(5),Gc=n.n($c);class Wc{constructor(t,e,n){this.property=t,this.normal=e,n&&(this.space=n)}}function Yc(t,e){const n={},r={};let o=-1;for(;++o<t.length;)Object.assign(n,t[o].property),Object.assign(r,t[o].normal);return new Wc(n,r,e)}function Kc(t){return t.toLowerCase()}Wc.prototype.property={},Wc.prototype.normal={},Wc.prototype.space=null;class Jc{constructor(t,e){this.property=t,this.attribute=e}}Jc.prototype.space=null,Jc.prototype.boolean=!1,Jc.prototype.booleanish=!1,Jc.prototype.overloadedBoolean=!1,Jc.prototype.number=!1,Jc.prototype.commaSeparated=!1,Jc.prototype.spaceSeparated=!1,Jc.prototype.commaOrSpaceSeparated=!1,Jc.prototype.mustUseProperty=!1,Jc.prototype.defined=!1;let Qc=0;const Xc=is(),Zc=is(),ts=is(),es=is(),ns=is(),rs=is(),os=is();function is(){return 2**++Qc}const as=Object.keys(o);class us extends Jc{constructor(t,e,n,r){let i=-1;if(super(t,e),cs(this,"space",r),"number"==typeof n)for(;++i<as.length;){const t=as[i];cs(this,as[i],(n&o[t])===o[t])}}}function cs(t,e,n){n&&(t[e]=n)}us.prototype.defined=!0;const ss={}.hasOwnProperty;function ls(t){const e={},n={};let r;for(r in t.properties)if(ss.call(t.properties,r)){const o=t.properties[r],i=new us(r,t.transform(t.attributes||{},r),o,t.space);t.mustUseProperty&&t.mustUseProperty.includes(r)&&(i.mustUseProperty=!0),e[r]=i,n[Kc(r)]=r,n[Kc(i.attribute)]=r}return new Wc(e,n,t.space)}const fs=ls({space:"xlink",transform:(t,e)=>"xlink:"+e.slice(5).toLowerCase(),properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null}}),ps=ls({space:"xml",transform:(t,e)=>"xml:"+e.slice(3).toLowerCase(),properties:{xmlLang:null,xmlBase:null,xmlSpace:null}});function hs(t,e){return e in t?t[e]:e}function ds(t,e){return hs(t,e.toLowerCase())}const gs=ls({space:"xmlns",attributes:{xmlnsxlink:"xmlns:xlink"},transform:ds,properties:{xmlns:null,xmlnsXLink:null}}),vs=ls({transform:(t,e)=>"role"===e?e:"aria-"+e.slice(4).toLowerCase(),properties:{ariaActiveDescendant:null,ariaAtomic:Zc,ariaAutoComplete:null,ariaBusy:Zc,ariaChecked:Zc,ariaColCount:es,ariaColIndex:es,ariaColSpan:es,ariaControls:ns,ariaCurrent:null,ariaDescribedBy:ns,ariaDetails:null,ariaDisabled:Zc,ariaDropEffect:ns,ariaErrorMessage:null,ariaExpanded:Zc,ariaFlowTo:ns,ariaGrabbed:Zc,ariaHasPopup:null,ariaHidden:Zc,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:ns,ariaLevel:es,ariaLive:null,ariaModal:Zc,ariaMultiLine:Zc,ariaMultiSelectable:Zc,ariaOrientation:null,ariaOwns:ns,ariaPlaceholder:null,ariaPosInSet:es,ariaPressed:Zc,ariaReadOnly:Zc,ariaRelevant:null,ariaRequired:Zc,ariaRoleDescription:ns,ariaRowCount:es,ariaRowIndex:es,ariaRowSpan:es,ariaSelected:Zc,ariaSetSize:es,ariaSort:null,ariaValueMax:es,ariaValueMin:es,ariaValueNow:es,ariaValueText:null,role:null}}),ms=ls({space:"html",attributes:{acceptcharset:"accept-charset",classname:"class",htmlfor:"for",httpequiv:"http-equiv"},transform:ds,mustUseProperty:["checked","multiple","muted","selected"],properties:{abbr:null,accept:rs,acceptCharset:ns,accessKey:ns,action:null,allow:null,allowFullScreen:Xc,allowPaymentRequest:Xc,allowUserMedia:Xc,alt:null,as:null,async:Xc,autoCapitalize:null,autoComplete:ns,autoFocus:Xc,autoPlay:Xc,blocking:ns,capture:null,charSet:null,checked:Xc,cite:null,className:ns,cols:es,colSpan:null,content:null,contentEditable:Zc,controls:Xc,controlsList:ns,coords:es|rs,crossOrigin:null,data:null,dateTime:null,decoding:null,default:Xc,defer:Xc,dir:null,dirName:null,disabled:Xc,download:ts,draggable:Zc,encType:null,enterKeyHint:null,fetchPriority:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:Xc,formTarget:null,headers:ns,height:es,hidden:Xc,high:es,href:null,hrefLang:null,htmlFor:ns,httpEquiv:ns,id:null,imageSizes:null,imageSrcSet:null,inert:Xc,inputMode:null,integrity:null,is:null,isMap:Xc,itemId:null,itemProp:ns,itemRef:ns,itemScope:Xc,itemType:ns,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:Xc,low:es,manifest:null,max:null,maxLength:es,media:null,method:null,min:null,minLength:es,multiple:Xc,muted:Xc,name:null,nonce:null,noModule:Xc,noValidate:Xc,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforeMatch:null,onBeforePrint:null,onBeforeToggle:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextLost:null,onContextMenu:null,onContextRestored:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onScrollEnd:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:Xc,optimum:es,pattern:null,ping:ns,placeholder:null,playsInline:Xc,popover:null,popoverTarget:null,popoverTargetAction:null,poster:null,preload:null,readOnly:Xc,referrerPolicy:null,rel:ns,required:Xc,reversed:Xc,rows:es,rowSpan:es,sandbox:ns,scope:null,scoped:Xc,seamless:Xc,selected:Xc,shadowRootClonable:Xc,shadowRootDelegatesFocus:Xc,shadowRootMode:null,shape:null,size:es,sizes:null,slot:null,span:es,spellCheck:Zc,src:null,srcDoc:null,srcLang:null,srcSet:null,start:es,step:null,style:null,tabIndex:es,target:null,title:null,translate:null,type:null,typeMustMatch:Xc,useMap:null,value:Zc,width:es,wrap:null,writingSuggestions:null,align:null,aLink:null,archive:ns,axis:null,background:null,bgColor:null,border:es,borderColor:null,bottomMargin:es,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:Xc,declare:Xc,event:null,face:null,frame:null,frameBorder:null,hSpace:es,leftMargin:es,link:null,longDesc:null,lowSrc:null,marginHeight:es,marginWidth:es,noResize:Xc,noHref:Xc,noShade:Xc,noWrap:Xc,object:null,profile:null,prompt:null,rev:null,rightMargin:es,rules:null,scheme:null,scrolling:Zc,standby:null,summary:null,text:null,topMargin:es,valueType:null,version:null,vAlign:null,vLink:null,vSpace:es,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:Xc,disableRemotePlayback:Xc,prefix:null,property:null,results:es,security:null,unselectable:null}}),ys=ls({space:"svg",attributes:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",className:"class",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",crossOrigin:"crossorigin",dataType:"datatype",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",hrefLang:"hreflang",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",horizOriginY:"horiz-origin-y",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",navDown:"nav-down",navDownLeft:"nav-down-left",navDownRight:"nav-down-right",navLeft:"nav-left",navNext:"nav-next",navPrev:"nav-prev",navRight:"nav-right",navUp:"nav-up",navUpLeft:"nav-up-left",navUpRight:"nav-up-right",onAbort:"onabort",onActivate:"onactivate",onAfterPrint:"onafterprint",onBeforePrint:"onbeforeprint",onBegin:"onbegin",onCancel:"oncancel",onCanPlay:"oncanplay",onCanPlayThrough:"oncanplaythrough",onChange:"onchange",onClick:"onclick",onClose:"onclose",onCopy:"oncopy",onCueChange:"oncuechange",onCut:"oncut",onDblClick:"ondblclick",onDrag:"ondrag",onDragEnd:"ondragend",onDragEnter:"ondragenter",onDragExit:"ondragexit",onDragLeave:"ondragleave",onDragOver:"ondragover",onDragStart:"ondragstart",onDrop:"ondrop",onDurationChange:"ondurationchange",onEmptied:"onemptied",onEnd:"onend",onEnded:"onended",onError:"onerror",onFocus:"onfocus",onFocusIn:"onfocusin",onFocusOut:"onfocusout",onHashChange:"onhashchange",onInput:"oninput",onInvalid:"oninvalid",onKeyDown:"onkeydown",onKeyPress:"onkeypress",onKeyUp:"onkeyup",onLoad:"onload",onLoadedData:"onloadeddata",onLoadedMetadata:"onloadedmetadata",onLoadStart:"onloadstart",onMessage:"onmessage",onMouseDown:"onmousedown",onMouseEnter:"onmouseenter",onMouseLeave:"onmouseleave",onMouseMove:"onmousemove",onMouseOut:"onmouseout",onMouseOver:"onmouseover",onMouseUp:"onmouseup",onMouseWheel:"onmousewheel",onOffline:"onoffline",onOnline:"ononline",onPageHide:"onpagehide",onPageShow:"onpageshow",onPaste:"onpaste",onPause:"onpause",onPlay:"onplay",onPlaying:"onplaying",onPopState:"onpopstate",onProgress:"onprogress",onRateChange:"onratechange",onRepeat:"onrepeat",onReset:"onreset",onResize:"onresize",onScroll:"onscroll",onSeeked:"onseeked",onSeeking:"onseeking",onSelect:"onselect",onShow:"onshow",onStalled:"onstalled",onStorage:"onstorage",onSubmit:"onsubmit",onSuspend:"onsuspend",onTimeUpdate:"ontimeupdate",onToggle:"ontoggle",onUnload:"onunload",onVolumeChange:"onvolumechange",onWaiting:"onwaiting",onZoom:"onzoom",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",referrerPolicy:"referrerpolicy",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDashArray:"stroke-dasharray",strokeDashOffset:"stroke-dashoffset",strokeLineCap:"stroke-linecap",strokeLineJoin:"stroke-linejoin",strokeMiterLimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",tabIndex:"tabindex",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",transformOrigin:"transform-origin",typeOf:"typeof",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",playbackOrder:"playbackorder",timelineBegin:"timelinebegin"},transform:hs,properties:{about:os,accentHeight:es,accumulate:null,additive:null,alignmentBaseline:null,alphabetic:es,amplitude:es,arabicForm:null,ascent:es,attributeName:null,attributeType:null,azimuth:es,bandwidth:null,baselineShift:null,baseFrequency:null,baseProfile:null,bbox:null,begin:null,bias:es,by:null,calcMode:null,capHeight:es,className:ns,clip:null,clipPath:null,clipPathUnits:null,clipRule:null,color:null,colorInterpolation:null,colorInterpolationFilters:null,colorProfile:null,colorRendering:null,content:null,contentScriptType:null,contentStyleType:null,crossOrigin:null,cursor:null,cx:null,cy:null,d:null,dataType:null,defaultAction:null,descent:es,diffuseConstant:es,direction:null,display:null,dur:null,divisor:es,dominantBaseline:null,download:Xc,dx:null,dy:null,edgeMode:null,editable:null,elevation:es,enableBackground:null,end:null,event:null,exponent:es,externalResourcesRequired:null,fill:null,fillOpacity:es,fillRule:null,filter:null,filterRes:null,filterUnits:null,floodColor:null,floodOpacity:null,focusable:null,focusHighlight:null,fontFamily:null,fontSize:null,fontSizeAdjust:null,fontStretch:null,fontStyle:null,fontVariant:null,fontWeight:null,format:null,fr:null,from:null,fx:null,fy:null,g1:rs,g2:rs,glyphName:rs,glyphOrientationHorizontal:null,glyphOrientationVertical:null,glyphRef:null,gradientTransform:null,gradientUnits:null,handler:null,hanging:es,hatchContentUnits:null,hatchUnits:null,height:null,href:null,hrefLang:null,horizAdvX:es,horizOriginX:es,horizOriginY:es,id:null,ideographic:es,imageRendering:null,initialVisibility:null,in:null,in2:null,intercept:es,k:es,k1:es,k2:es,k3:es,k4:es,kernelMatrix:os,kernelUnitLength:null,keyPoints:null,keySplines:null,keyTimes:null,kerning:null,lang:null,lengthAdjust:null,letterSpacing:null,lightingColor:null,limitingConeAngle:es,local:null,markerEnd:null,markerMid:null,markerStart:null,markerHeight:null,markerUnits:null,markerWidth:null,mask:null,maskContentUnits:null,maskUnits:null,mathematical:null,max:null,media:null,mediaCharacterEncoding:null,mediaContentEncodings:null,mediaSize:es,mediaTime:null,method:null,min:null,mode:null,name:null,navDown:null,navDownLeft:null,navDownRight:null,navLeft:null,navNext:null,navPrev:null,navRight:null,navUp:null,navUpLeft:null,navUpRight:null,numOctaves:null,observer:null,offset:null,onAbort:null,onActivate:null,onAfterPrint:null,onBeforePrint:null,onBegin:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnd:null,onEnded:null,onError:null,onFocus:null,onFocusIn:null,onFocusOut:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadStart:null,onMessage:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onMouseWheel:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRepeat:null,onReset:null,onResize:null,onScroll:null,onSeeked:null,onSeeking:null,onSelect:null,onShow:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnload:null,onVolumeChange:null,onWaiting:null,onZoom:null,opacity:null,operator:null,order:null,orient:null,orientation:null,origin:null,overflow:null,overlay:null,overlinePosition:es,overlineThickness:es,paintOrder:null,panose1:null,path:null,pathLength:es,patternContentUnits:null,patternTransform:null,patternUnits:null,phase:null,ping:ns,pitch:null,playbackOrder:null,pointerEvents:null,points:null,pointsAtX:es,pointsAtY:es,pointsAtZ:es,preserveAlpha:null,preserveAspectRatio:null,primitiveUnits:null,propagate:null,property:os,r:null,radius:null,referrerPolicy:null,refX:null,refY:null,rel:os,rev:os,renderingIntent:null,repeatCount:null,repeatDur:null,requiredExtensions:os,requiredFeatures:os,requiredFonts:os,requiredFormats:os,resource:null,restart:null,result:null,rotate:null,rx:null,ry:null,scale:null,seed:null,shapeRendering:null,side:null,slope:null,snapshotTime:null,specularConstant:es,specularExponent:es,spreadMethod:null,spacing:null,startOffset:null,stdDeviation:null,stemh:null,stemv:null,stitchTiles:null,stopColor:null,stopOpacity:null,strikethroughPosition:es,strikethroughThickness:es,string:null,stroke:null,strokeDashArray:os,strokeDashOffset:null,strokeLineCap:null,strokeLineJoin:null,strokeMiterLimit:es,strokeOpacity:es,strokeWidth:null,style:null,surfaceScale:es,syncBehavior:null,syncBehaviorDefault:null,syncMaster:null,syncTolerance:null,syncToleranceDefault:null,systemLanguage:os,tabIndex:es,tableValues:null,target:null,targetX:es,targetY:es,textAnchor:null,textDecoration:null,textRendering:null,textLength:null,timelineBegin:null,title:null,transformBehavior:null,type:null,typeOf:os,to:null,transform:null,transformOrigin:null,u1:null,u2:null,underlinePosition:es,underlineThickness:es,unicode:null,unicodeBidi:null,unicodeRange:null,unitsPerEm:es,values:null,vAlphabetic:es,vMathematical:es,vectorEffect:null,vHanging:es,vIdeographic:es,version:null,vertAdvY:es,vertOriginX:es,vertOriginY:es,viewBox:null,viewTarget:null,visibility:null,width:null,widths:null,wordSpacing:null,writingMode:null,x:null,x1:null,x2:null,xChannelSelector:null,xHeight:es,y:null,y1:null,y2:null,yChannelSelector:null,z:null,zoomAndPan:null}}),bs=Yc([ps,fs,gs,vs,ms],"html"),xs=Yc([ps,fs,gs,vs,ys],"svg");function ws(t){if(t.allowedElements&&t.disallowedElements)throw new TypeError("Only one of `allowedElements` and `disallowedElements` should be defined");if(t.allowedElements||t.disallowedElements||t.allowElement)return e=>{Wu(e,"element",(e,n,r)=>{const o=r;let i;if(t.allowedElements?i=!t.allowedElements.includes(e.tagName):t.disallowedElements&&(i=t.disallowedElements.includes(e.tagName)),!i&&t.allowElement&&"number"==typeof n&&(i=!t.allowElement(e,n,o)),i&&"number"==typeof n)return t.unwrapDisallowed&&e.children?o.children.splice(n,1,...e.children):o.children.splice(n,1),n})}}const ks=["http","https","mailto","tel"];function Ss(t){const e=(t||"").trim(),n=e.charAt(0);if("#"===n||"/"===n)return e;const r=e.indexOf(":");if(-1===r)return e;let o=-1;for(;++o<ks.length;){const t=ks[o];if(r===t.length&&e.slice(0,t.length).toLowerCase()===t)return e}return o=e.indexOf("?"),-1!==o&&r>o?e:(o=e.indexOf("#"),-1!==o&&r>o?e:"javascript:void(0)")}var Es=n(229),Os=n.n(Es);function As(t){const e=t&&"object"==typeof t&&"text"===t.type?t.value||"":t;return"string"==typeof e&&""===e.replace(/[ \t\n\f\r]/g,"")}const Ts=/^data[-\w.:]+$/i,Cs=/-[a-z]/g,Ps=/[A-Z]/g;function Rs(t,e){const n=Kc(e);let r=e,o=Jc;if(n in t.normal)return t.property[t.normal[n]];if(n.length>4&&"data"===n.slice(0,4)&&Ts.test(e)){if("-"===e.charAt(4)){const t=e.slice(5).replace(Cs,js);r="data"+t.charAt(0).toUpperCase()+t.slice(1)}else{const t=e.slice(4);if(!Cs.test(t)){let n=t.replace(Ps,Ls);"-"!==n.charAt(0)&&(n="-"+n),e="data"+n}}o=us}return new o(r,e)}function Ls(t){return"-"+t.toLowerCase()}function js(t){return t.charAt(1).toUpperCase()}const Is={classId:"classID",dataType:"datatype",itemId:"itemID",strokeDashArray:"strokeDasharray",strokeDashOffset:"strokeDashoffset",strokeLineCap:"strokeLinecap",strokeLineJoin:"strokeLinejoin",strokeMiterLimit:"strokeMiterlimit",typeOf:"typeof",xLinkActuate:"xlinkActuate",xLinkArcRole:"xlinkArcrole",xLinkHref:"xlinkHref",xLinkRole:"xlinkRole",xLinkShow:"xlinkShow",xLinkTitle:"xlinkTitle",xLinkType:"xlinkType",xmlnsXLink:"xmlnsXlink"};function Fs(t){const e=String(t||"").trim();return e?e.split(/[ \t\n\r\f]+/g):[]}function Ds(t){return t.join(" ").trim()}function _s(t){const e=[],n=String(t||"");let r=n.indexOf(","),o=0,i=!1;for(;!i;){-1===r&&(r=n.length,i=!0);const t=n.slice(o,r).trim();!t&&i||e.push(t),o=r+1,r=n.indexOf(",",o)}return e}function Ms(t,e){const n=e||{},r=undefined;return(""===t[t.length-1]?[...t,""]:t).join((n.padRight?" ":"")+","+(!1===n.padLeft?"":" ")).trim()}var Ns=n(230),Us=n.n(Ns);const qs={}.hasOwnProperty,Bs=new Set(["table","thead","tbody","tfoot","tr"]);function zs(t,e){const n=[];let r=-1,o;for(;++r<e.children.length;)o=e.children[r],"element"===o.type?n.push(Hs(t,o,r,e)):"text"===o.type?"element"===e.type&&Bs.has(e.tagName)&&As(o)||n.push(o.value):"raw"!==o.type||t.options.skipHtml||n.push(o.value);return n}function Hs(t,e,n,r){const o=t.options,i=t.schema,a=e.tagName,u={};let c=i,s;if("html"===i.space&&"svg"===a&&(c=xs,t.schema=c),e.properties)for(s in e.properties)qs.call(e.properties,s)&&Gs(u,s,e.properties[s],t);"ol"!==a&&"ul"!==a||t.listDepth++;const l=zs(t,e);"ol"!==a&&"ul"!==a||t.listDepth--,t.schema=i;const f=e.position||{start:{line:null,column:null,offset:null},end:{line:null,column:null,offset:null}},p=o.components&&qs.call(o.components,a)?o.components[a]:a,h="string"==typeof p||p===tr.a.Fragment;if(!Os.a.isValidElementType(p))throw new TypeError(`Component for name \`${a}\` not defined or is not renderable`);if(u.key=[a,f.start.line,f.start.column,n].join("-"),"a"===a&&o.linkTarget&&(u.target="function"==typeof o.linkTarget?o.linkTarget(String(u.href||""),e.children,"string"==typeof u.title?u.title:null):o.linkTarget),"a"===a&&o.transformLinkUri&&(u.href=o.transformLinkUri(String(u.href||""),e.children,"string"==typeof u.title?u.title:null)),h||"code"!==a||"element"!==r.type||"pre"===r.tagName||(u.inline=!0),h||"h1"!==a&&"h2"!==a&&"h3"!==a&&"h4"!==a&&"h5"!==a&&"h6"!==a||(u.level=Number.parseInt(a.charAt(1),10)),"img"===a&&o.transformImageUri&&(u.src=o.transformImageUri(String(u.src||""),String(u.alt||""),"string"==typeof u.title?u.title:null)),!h&&"li"===a&&"element"===r.type){const t=Vs(e);u.checked=t&&t.properties?Boolean(t.properties.checked):null,u.index=$s(r,e),u.ordered="ol"===r.tagName}return h||"ol"!==a&&"ul"!==a||(u.ordered="ol"===a,u.depth=t.listDepth),"td"!==a&&"th"!==a||(u.align&&(u.style||(u.style={}),u.style.textAlign=u.align,delete u.align),h||(u.isHeader="th"===a)),h||"tr"!==a||"element"!==r.type||(u.isHeader=Boolean("thead"===r.tagName)),o.sourcePos&&(u["data-sourcepos"]=Ks(f)),!h&&o.rawSourcePos&&(u.sourcePosition=e.position),!h&&o.includeElementIndex&&(u.index=$s(r,e),u.siblingCount=$s(r)),h||(u.node=e),l.length>0?tr.a.createElement(p,u,l):tr.a.createElement(p,u)}function Vs(t){let e=-1;for(;++e<t.children.length;){const n=t.children[e];if("element"===n.type&&"input"===n.tagName)return n}return null}function $s(t,e){let n=-1,r=0;for(;++n<t.children.length&&t.children[n]!==e;)"element"===t.children[n].type&&r++;return r}function Gs(t,e,n,r){const o=Rs(r.schema,e);let i=n;null!=i&&i==i&&(Array.isArray(i)&&(i=o.commaSeparated?Ms(i):Ds(i)),"style"===o.property&&"string"==typeof i&&(i=Ws(i)),o.space&&o.property?t[qs.call(Is,o.property)?Is[o.property]:o.property]=i:o.attribute&&(t[o.attribute]=i))}function Ws(t){const e={};try{Us()(t,n)}catch{}return e;function n(t,n){const r="-ms-"===t.slice(0,4)?"ms-"+t.slice(4):t;e[r.replace(/-([a-z])/g,Ys)]=n}}function Ys(t,e){return e.toUpperCase()}function Ks(t){return[t.start.line,":",t.start.column,"-",t.end.line,":",t.end.column].map(t=>String(t)).join("")}const Js={}.hasOwnProperty,Qs="https://github.com/remarkjs/react-markdown/blob/main/changelog.md",Xs={renderers:{to:"components",id:"change-renderers-to-components"},astPlugins:{id:"remove-buggy-html-in-markdown-parser"},allowDangerousHtml:{id:"remove-buggy-html-in-markdown-parser"},escapeHtml:{id:"remove-buggy-html-in-markdown-parser"},source:{to:"children",id:"change-source-to-children"},allowNode:{to:"allowElement",id:"replace-allownode-allowedtypes-and-disallowedtypes"},allowedTypes:{to:"allowedElements",id:"replace-allownode-allowedtypes-and-disallowedtypes"},disallowedTypes:{to:"disallowedElements",id:"replace-allownode-allowedtypes-and-disallowedtypes"},includeNodeIndex:{to:"includeElementIndex",id:"change-includenodeindex-to-includeelementindex"}};function Zs(t){for(const e in Xs)if(Js.call(Xs,e)&&Js.call(t,e)){const t=Xs[e];console.warn(`[react-markdown] Warning: please ${t.to?`use \`${t.to}\` instead of`:"remove"} \`${e}\` (see <${Qs}#${t.id}> for more info)`),delete Xs[e]}const e=yo().use(ju).use(t.remarkPlugins||t.plugins||[]).use(zc,{allowDangerousHtml:!0}).use(t.rehypePlugins||[]).use(ws,t),n=new ao;"string"==typeof t.children?n.value=t.children:void 0!==t.children&&null!==t.children&&console.warn(`[react-markdown] Warning: please pass a string as \`children\` (not: \`${t.children}\`)`);const r=e.runSync(e.parse(n),n);if("root"!==r.type)throw new TypeError("Expected a `root` node");let o=tr.a.createElement(tr.a.Fragment,{},zs({options:t,schema:bs,listDepth:0},r));return t.className&&(o=tr.a.createElement("div",{className:t.className},o)),o}function tl(t){var e=t.data,n=void 0===e?{}:e,r=n.displayName,o=n.description,i=n.props;return console.log(n),tr.a.createElement("div",{className:"markdown"},tr.a.createElement("h3",null,r),tr.a.createElement("p",null,o),tr.a.createElement("table",null,tr.a.createElement("thead",null,tr.a.createElement("tr",null,tr.a.createElement("th",null,"\u5c5e\u6027\u540d"),tr.a.createElement("th",null,"\u63cf\u8ff0"),tr.a.createElement("th",null,"\u7c7b\u578b"),tr.a.createElement("th",null,"\u5fc5\u586b"),tr.a.createElement("th",null,"\u9ed8\u8ba4\u503c"))),tr.a.createElement("tbody",null,Object.keys(i).map((function(t){var e,n,r;return tr.a.createElement("tr",{key:t},tr.a.createElement("td",null,t),tr.a.createElement("td",null,tr.a.createElement(Zs,null,i[t].description)),tr.a.createElement("td",null,(null===(e=i[t].type)||void 0===e?void 0:e.raw)||(null===(n=i[t].type)||void 0===n?void 0:n.name)),tr.a.createElement("td",null,i[t].required&&"\u2713"),tr.a.createElement("td",null,null===(r=i[t].defaultValue)||void 0===r?void 0:r.value))})))))}Zs.defaultProps={transformLinkUri:Ss},Zs.propTypes={children:Gc.a.string,className:Gc.a.string,allowElement:Gc.a.func,allowedElements:Gc.a.arrayOf(Gc.a.string),disallowedElements:Gc.a.arrayOf(Gc.a.string),unwrapDisallowed:Gc.a.bool,remarkPlugins:Gc.a.arrayOf(Gc.a.oneOfType([Gc.a.object,Gc.a.func,Gc.a.arrayOf(Gc.a.oneOfType([Gc.a.object,Gc.a.func]))])),rehypePlugins:Gc.a.arrayOf(Gc.a.oneOfType([Gc.a.object,Gc.a.func,Gc.a.arrayOf(Gc.a.oneOfType([Gc.a.object,Gc.a.func]))])),sourcePos:Gc.a.bool,rawSourcePos:Gc.a.bool,skipHtml:Gc.a.bool,includeElementIndex:Gc.a.bool,transformLinkUri:Gc.a.oneOfType([Gc.a.func,Gc.a.bool]),linkTarget:Gc.a.oneOfType([Gc.a.func,Gc.a.string]),transformImageUri:Gc.a.func,components:Gc.a.object};var el=n(505),nl=function t(e){var n=e.data,r=e.children,o=n.filename,i=n.meta,a=n.highlightedCode,u=n.highlightedStyle,c=n.markdownContent,s=n.readme,l=n.reactDocs,f=c||"",p=f.match(/<style>([\s\S]*?)<\/style>/);if(p){var h=p[1],d=h.split("}").map((function(t){var e=t;return"."===t[0]&&(e="#"+o+" "+e),""+e})).join("}");f=f.replace(h,d)}return tr.a.createElement("div",null,ol(i),rl(s),tr.a.createElement("div",{className:"preview"},il(f),tr.a.createElement(Nr,{filename:o,highlightedCode:a,highlightedStyle:u},r)),null==l?void 0:l.map((function(t){return tr.a.createElement(tl,{key:t.filename,data:t})})))};function rl(t){return void 0===t&&(t=void 0),t?il(t):null}function ol(t){return t?tr.a.createElement("div",{className:"meta"},tr.a.createElement("ul",{className:"meta-list"},t.map((function(t){return tr.a.createElement("li",{className:"meta-item"},t.key,": ",t.value)})))):null}function il(t){return tr.a.createElement("div",{className:"markdown",dangerouslySetInnerHTML:{__html:t}})}var al=n(68),ul=n.n(al),cl=function(t){function e(e){var n;return(n=t.call(this,e)||this).handleChange=function(t){var e=t.target.value||"",r=n.props.items.filter((function(t){var n=Array.isArray(t)?t[0]:t,r=(n.demoKey||n.title).toLocaleLowerCase(),o=e.toLocaleLowerCase();return r.includes(o)}));n.setState({value:e,menus:r})},n.state={value:"",menus:e.items},n}var n;return Dr()(e,t),e.prototype.render=function t(){var e=this.props.matchedFilename,n=this.state,r=n.value,o=n.menus;return tr.a.createElement("div",{className:ul.a.sidebar},tr.a.createElement("div",{className:ul.a.searchbox,style:{display:"none"}},tr.a.createElement("input",{type:"text",className:ul.a.input,placeholder:"Type to search...",value:r,onChange:this.handleChange})),tr.a.createElement("dl",{className:ul.a.menuList},o.map((function(t,n){var r=Array.isArray(t)?t[0]:t;return tr.a.createElement("dt",{className:ul.a.item+(e===(r.demoKey||r.filename)?" "+ul.a.selected:""),key:(r.demoKey||r.filename)+"-"+n},tr.a.createElement(Or,{to:"?demo="+(r.demoKey||r.filename)},r.demoKey||r.title))}))))},e}(tr.a.Component),sl=n(69),ll=n.n(sl),fl=function t(e){var n=e.demos,r=e.children,o=e.matchedFilename;return tr.a.createElement("div",null,tr.a.createElement("div",{className:ll.a.nav},"Docs"),tr.a.createElement("div",{className:ll.a.container},tr.a.createElement(cl,{items:n,matchedFilename:o}),tr.a.createElement("div",{className:ll.a.main},r)))},pl=function(t){function e(e){var n;return(n=t.call(this,e)||this).handleChangeHash=function(){setTimeout((function(){n.setState({currentHash:window.location.hash})}),0)},n.state={currentHash:window.location.hash},n}var n;return Dr()(e,t),e.prototype.render=function t(){var e=this,n=this.props,r=n.demos,o=n.children,i=n.reactDocs,a=this.state.currentHash;return tr.a.createElement("div",null,tr.a.createElement("div",{className:ll.a.layout},o),tr.a.createElement("ul",{className:ll.a.fixNav},r.map((function(t){return tr.a.createElement("li",{key:t.filename,className:a.replace("#container_","")===t.filename?ll.a.selected:""},tr.a.createElement("a",{href:"#container_"+t.filename,onClick:e.handleChangeHash},t.title||t.filename))})),i&&i.length>0&&tr.a.createElement("li",null,tr.a.createElement("a",{href:"#container_api",onClick:this.handleChangeHash},"API"))))},e}(tr.a.Component),hl=["demoData"],dl=function t(e){var n=e.demoData,r=e.readmeData,o=e.reactDocs,i,a=((r?[].concat(r,n):n)||[]).sort((function(t,e){return t.order-e.order})),u=!(!o||!o.length);return tr.a.createElement(pl,{demos:a,reactDocs:o},a.map((function(t){var e=t.component;return tr.a.createElement("div",{key:t.filename},tr.a.createElement("a",{name:"container_"+t.filename}),t.title&&"readme"!==t.filename&&tr.a.createElement("h3",null,t.title),tr.a.createElement(nl,{data:t},"function"==typeof e&&tr.a.createElement(e,null)))})),u&&tr.a.createElement("div",null,tr.a.createElement("h2",null,"API"),tr.a.createElement("a",{name:"container_api"}),o.map((function(t){return tr.a.createElement(tl,{key:t.filename,data:t})}))))},gl=function t(e){var n=e.location,r=e.demoData,o=e.readmeData,i,a=Ir.parse(n&&n.search).demo,u=r.find((function(t){return t[0]&&t[0].demoKey===a}));return tr.a.createElement(fl,{demos:[].concat(o,r),matchedFilename:a},u?tr.a.createElement(dl,{demoData:u}):tr.a.createElement(nl,{data:o}))},vl=function t(e){var n=function t(n){return tr.a.createElement(gl,lr()({},e,n))};return tr.a.createElement(mr,null,tr.a.createElement(fr.c,null,tr.a.createElement(fr.a,{path:"/",render:n})))},ml,yl=function t(e){var n=e.demoData,r=cr()(e,hl),o;return n.length>1?tr.a.createElement(vl,lr()({},r,{demoData:n})):tr.a.createElement(dl,lr()({},r,{demoData:n[0]}))};function bl(t){return(bl="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})(t)}function xl(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function wl(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?xl(Object(n),!0).forEach((function(e){kl(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):xl(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function kl(t,e,n){return(e=Sl(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Sl(t){var e=El(t,"string");return"symbol"==bl(e)?e:e+""}function El(t,e){if("object"!=bl(t)||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=bl(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}var Ol={},Al=or.map((function(t){var e;return t.demos.map((function(t){return wl(wl({},t),{},{component:Ol["".concat(t.demoKey,"_").concat(t.filename)]})}))})),Tl={meta:{},readme:'<h1>dc-material<a id="user-content-dc-material" name="dc-material" class="anchor" aria-hidden="true" href="#dc-material"><span class="octicon octicon-link"></span></a></h1><p>\u4e00\u4e2a\u9762\u5411 PC \u7684\u4e1a\u52a1\u7ec4\u4ef6\u5e93</p>\n<h2>\u8c03\u8bd5<a id="user-content-\u8c03\u8bd5" name="\u8c03\u8bd5" class="anchor" aria-hidden="true" href="#\u8c03\u8bd5"><span class="octicon octicon-link"></span></a></h2><p>\u542f\u52a8\u8c03\u8bd5</p>\n\n <div class="markdown">\n <div class="highlight highlight-jsx">\n <pre><code language="jsx">npm run lowcode<span class="token operator">:</span>dev # \u6253\u5f00\u5f00\u53d1\u73af\u5883\uff0c\u8fd0\u884c\u6240\u6709\u7ec4\u4ef6</code></pre>\n </div>\n </div>\n<p>\u6784\u5efa</p>\n\n <div class="markdown">\n <div class="highlight highlight-jsx">\n <pre><code language="jsx">npm run lowcode<span class="token operator">:</span>build</code></pre>\n </div>\n </div>\n'},Cl=wl({readme:Tl.readme||void 0,href:"/?demo=readme",filename:"readme",title:Tl.title||"Readme",order:0},Tl.meta),Pl={};nr.a.render(tr.a.createElement(yl,{readmeData:Cl,demoData:Al,env:"production",templateProps:Pl,reactDocs:ar}),document.getElementById("root"))}]);