@dnb/eufemia 9.12.4 → 9.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (197) hide show
  1. package/CHANGELOG.md +11 -10
  2. package/cjs/components/autocomplete/Autocomplete.js +9 -16
  3. package/cjs/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +4 -0
  4. package/cjs/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +3 -0
  5. package/cjs/components/button/style/themes/_button-mixins.scss +14 -5
  6. package/cjs/components/button/style/themes/dnb-button-theme-open-banking.css +10 -10
  7. package/cjs/components/button/style/themes/dnb-button-theme-ui.css +10 -10
  8. package/cjs/components/button/style/themes/dnb-button-theme-ui.scss +1 -0
  9. package/cjs/components/date-picker/DatePickerAddon.js +1 -1
  10. package/cjs/components/date-picker/DatePickerCalc.js +2 -0
  11. package/cjs/components/date-picker/DatePickerCalendar.js +2 -2
  12. package/cjs/components/date-picker/DatePickerFooter.js +2 -2
  13. package/cjs/components/date-picker/DatePickerInput.js +18 -21
  14. package/cjs/components/date-picker/DatePickerProvider.js +4 -18
  15. package/cjs/components/dropdown/Dropdown.js +2 -0
  16. package/cjs/components/form-status/FormStatus.js +2 -0
  17. package/cjs/components/global-error/GlobalError.js +2 -0
  18. package/cjs/components/global-status/GlobalStatus.d.ts +1 -1
  19. package/cjs/components/global-status/GlobalStatus.js +2 -0
  20. package/cjs/components/heading/Heading.js +2 -0
  21. package/cjs/components/heading/HeadingCounter.js +2 -0
  22. package/cjs/components/heading/HeadingHelpers.js +2 -0
  23. package/cjs/components/heading/HeadingProvider.js +2 -0
  24. package/cjs/components/icon/Icon.js +2 -0
  25. package/cjs/components/input/Input.js +2 -0
  26. package/cjs/components/input-masked/InputMasked.js +25 -29
  27. package/cjs/components/logo/Logo.js +2 -0
  28. package/cjs/components/modal/Modal.js +2 -0
  29. package/cjs/components/modal/ModalContent.js +7 -3
  30. package/cjs/components/number-format/NumberUtils.js +2 -0
  31. package/cjs/components/pagination/PaginationInfinity.js +2 -0
  32. package/cjs/components/pagination/PaginationProvider.js +2 -0
  33. package/cjs/components/progress-indicator/ProgressIndicator.js +2 -0
  34. package/cjs/components/progress-indicator/ProgressIndicatorCircular.js +2 -0
  35. package/cjs/components/progress-indicator/ProgressIndicatorLinear.js +2 -0
  36. package/cjs/components/slider/Slider.js +2 -0
  37. package/cjs/components/space/SpacingHelper.js +2 -0
  38. package/cjs/components/step-indicator/StepIndicator.js +2 -0
  39. package/cjs/components/tabs/Tabs.js +2 -0
  40. package/cjs/components/textarea/Textarea.js +2 -0
  41. package/cjs/components/tooltip/TooltipPortal.js +2 -0
  42. package/cjs/components/tooltip/TooltipWithEvents.js +2 -0
  43. package/cjs/elements/H.js +2 -0
  44. package/cjs/elements/Table.js +2 -0
  45. package/cjs/extensions/payment-card/PaymentCard.js +2 -0
  46. package/cjs/fragments/drawer-list/DrawerList.js +2 -0
  47. package/cjs/fragments/drawer-list/DrawerListHelpers.js +2 -0
  48. package/cjs/fragments/drawer-list/DrawerListPortal.js +2 -0
  49. package/cjs/fragments/drawer-list/DrawerListProvider.js +9 -1
  50. package/cjs/shared/AnimateHeight.js +2 -0
  51. package/cjs/shared/component-helper.js +2 -0
  52. package/cjs/style/stylis.js +2 -0
  53. package/cjs/style/themes/theme-open-banking/dnb-theme-open-banking.css +24 -20
  54. package/cjs/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +2 -2
  55. package/cjs/style/themes/theme-ui/dnb-theme-ui.css +14 -10
  56. package/cjs/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
  57. package/components/autocomplete/Autocomplete.js +8 -16
  58. package/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +4 -0
  59. package/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +3 -0
  60. package/components/button/style/themes/_button-mixins.scss +14 -5
  61. package/components/button/style/themes/dnb-button-theme-open-banking.css +10 -10
  62. package/components/button/style/themes/dnb-button-theme-ui.css +10 -10
  63. package/components/button/style/themes/dnb-button-theme-ui.scss +1 -0
  64. package/components/date-picker/DatePickerAddon.js +1 -1
  65. package/components/date-picker/DatePickerCalc.js +1 -0
  66. package/components/date-picker/DatePickerCalendar.js +2 -2
  67. package/components/date-picker/DatePickerFooter.js +2 -2
  68. package/components/date-picker/DatePickerInput.js +17 -21
  69. package/components/date-picker/DatePickerProvider.js +4 -18
  70. package/components/dropdown/Dropdown.js +1 -0
  71. package/components/form-status/FormStatus.js +1 -0
  72. package/components/global-error/GlobalError.js +1 -0
  73. package/components/global-status/GlobalStatus.d.ts +1 -1
  74. package/components/global-status/GlobalStatus.js +1 -0
  75. package/components/heading/Heading.js +2 -0
  76. package/components/heading/HeadingCounter.js +1 -0
  77. package/components/heading/HeadingHelpers.js +1 -0
  78. package/components/heading/HeadingProvider.js +1 -0
  79. package/components/icon/Icon.js +1 -0
  80. package/components/input/Input.js +1 -0
  81. package/components/input-masked/InputMasked.js +24 -29
  82. package/components/logo/Logo.js +2 -0
  83. package/components/modal/Modal.js +1 -0
  84. package/components/modal/ModalContent.js +6 -3
  85. package/components/number-format/NumberUtils.js +1 -0
  86. package/components/pagination/PaginationInfinity.js +1 -0
  87. package/components/pagination/PaginationProvider.js +1 -0
  88. package/components/progress-indicator/ProgressIndicator.js +1 -0
  89. package/components/progress-indicator/ProgressIndicatorCircular.js +2 -0
  90. package/components/progress-indicator/ProgressIndicatorLinear.js +2 -0
  91. package/components/slider/Slider.js +1 -0
  92. package/components/space/SpacingHelper.js +1 -0
  93. package/components/step-indicator/StepIndicator.js +1 -0
  94. package/components/tabs/Tabs.js +1 -0
  95. package/components/textarea/Textarea.js +2 -0
  96. package/components/tooltip/TooltipPortal.js +1 -0
  97. package/components/tooltip/TooltipWithEvents.js +2 -0
  98. package/elements/H.js +2 -0
  99. package/elements/Table.js +1 -0
  100. package/es/components/autocomplete/Autocomplete.js +5 -15
  101. package/es/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +4 -0
  102. package/es/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +3 -0
  103. package/es/components/button/style/themes/_button-mixins.scss +14 -5
  104. package/es/components/button/style/themes/dnb-button-theme-open-banking.css +10 -10
  105. package/es/components/button/style/themes/dnb-button-theme-ui.css +10 -10
  106. package/es/components/button/style/themes/dnb-button-theme-ui.scss +1 -0
  107. package/es/components/date-picker/DatePickerAddon.js +1 -1
  108. package/es/components/date-picker/DatePickerCalendar.js +2 -2
  109. package/es/components/date-picker/DatePickerFooter.js +2 -2
  110. package/es/components/date-picker/DatePickerInput.js +17 -21
  111. package/es/components/date-picker/DatePickerProvider.js +4 -14
  112. package/es/components/global-status/GlobalStatus.d.ts +1 -1
  113. package/es/components/input-masked/InputMasked.js +23 -27
  114. package/es/components/modal/ModalContent.js +5 -3
  115. package/es/fragments/drawer-list/DrawerListProvider.js +7 -1
  116. package/es/style/themes/theme-open-banking/dnb-theme-open-banking.css +24 -20
  117. package/es/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +2 -2
  118. package/es/style/themes/theme-ui/dnb-theme-ui.css +14 -10
  119. package/es/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
  120. package/esm/components/autocomplete/Autocomplete.js +8 -16
  121. package/esm/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.css +4 -0
  122. package/esm/components/autocomplete/style/themes/dnb-autocomplete-theme-ui.scss +3 -0
  123. package/esm/components/button/style/themes/_button-mixins.scss +14 -5
  124. package/esm/components/button/style/themes/dnb-button-theme-open-banking.css +10 -10
  125. package/esm/components/button/style/themes/dnb-button-theme-ui.css +10 -10
  126. package/esm/components/button/style/themes/dnb-button-theme-ui.scss +1 -0
  127. package/esm/components/date-picker/DatePickerAddon.js +1 -1
  128. package/esm/components/date-picker/DatePickerCalc.js +1 -0
  129. package/esm/components/date-picker/DatePickerCalendar.js +2 -2
  130. package/esm/components/date-picker/DatePickerFooter.js +2 -2
  131. package/esm/components/date-picker/DatePickerInput.js +17 -21
  132. package/esm/components/date-picker/DatePickerProvider.js +4 -18
  133. package/esm/components/dropdown/Dropdown.js +1 -0
  134. package/esm/components/form-status/FormStatus.js +1 -0
  135. package/esm/components/global-error/GlobalError.js +1 -0
  136. package/esm/components/global-status/GlobalStatus.d.ts +1 -1
  137. package/esm/components/global-status/GlobalStatus.js +1 -0
  138. package/esm/components/heading/Heading.js +2 -0
  139. package/esm/components/heading/HeadingCounter.js +1 -0
  140. package/esm/components/heading/HeadingHelpers.js +1 -0
  141. package/esm/components/heading/HeadingProvider.js +1 -0
  142. package/esm/components/icon/Icon.js +1 -0
  143. package/esm/components/input/Input.js +1 -0
  144. package/esm/components/input-masked/InputMasked.js +24 -29
  145. package/esm/components/logo/Logo.js +2 -0
  146. package/esm/components/modal/Modal.js +1 -0
  147. package/esm/components/modal/ModalContent.js +6 -3
  148. package/esm/components/number-format/NumberUtils.js +1 -0
  149. package/esm/components/pagination/PaginationInfinity.js +1 -0
  150. package/esm/components/pagination/PaginationProvider.js +1 -0
  151. package/esm/components/progress-indicator/ProgressIndicator.js +1 -0
  152. package/esm/components/progress-indicator/ProgressIndicatorCircular.js +2 -0
  153. package/esm/components/progress-indicator/ProgressIndicatorLinear.js +2 -0
  154. package/esm/components/slider/Slider.js +1 -0
  155. package/esm/components/space/SpacingHelper.js +1 -0
  156. package/esm/components/step-indicator/StepIndicator.js +1 -0
  157. package/esm/components/tabs/Tabs.js +1 -0
  158. package/esm/components/textarea/Textarea.js +2 -0
  159. package/esm/components/tooltip/TooltipPortal.js +1 -0
  160. package/esm/components/tooltip/TooltipWithEvents.js +2 -0
  161. package/esm/dnb-ui-basis.min.mjs +2 -2
  162. package/esm/dnb-ui-components.min.mjs +3 -3
  163. package/esm/dnb-ui-elements.min.mjs +3 -3
  164. package/esm/dnb-ui-extensions.min.mjs +4 -4
  165. package/esm/dnb-ui-lib.min.mjs +4 -4
  166. package/esm/dnb-ui-web-components.min.mjs +4 -4
  167. package/esm/elements/H.js +2 -0
  168. package/esm/elements/Table.js +1 -0
  169. package/esm/extensions/payment-card/PaymentCard.js +1 -0
  170. package/esm/fragments/drawer-list/DrawerList.js +1 -0
  171. package/esm/fragments/drawer-list/DrawerListHelpers.js +1 -0
  172. package/esm/fragments/drawer-list/DrawerListPortal.js +1 -0
  173. package/esm/fragments/drawer-list/DrawerListProvider.js +11 -3
  174. package/esm/shared/AnimateHeight.js +1 -0
  175. package/esm/shared/component-helper.js +1 -0
  176. package/esm/style/themes/theme-open-banking/dnb-theme-open-banking.css +24 -20
  177. package/esm/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +2 -2
  178. package/esm/style/themes/theme-ui/dnb-theme-ui.css +14 -10
  179. package/esm/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
  180. package/extensions/payment-card/PaymentCard.js +1 -0
  181. package/fragments/drawer-list/DrawerList.js +1 -0
  182. package/fragments/drawer-list/DrawerListHelpers.js +1 -0
  183. package/fragments/drawer-list/DrawerListPortal.js +1 -0
  184. package/fragments/drawer-list/DrawerListProvider.js +11 -3
  185. package/package.json +8 -8
  186. package/shared/AnimateHeight.js +1 -0
  187. package/shared/component-helper.js +1 -0
  188. package/style/themes/theme-open-banking/dnb-theme-open-banking.css +24 -20
  189. package/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +2 -2
  190. package/style/themes/theme-ui/dnb-theme-ui.css +14 -10
  191. package/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
  192. package/umd/dnb-ui-basis.min.js +3 -3
  193. package/umd/dnb-ui-components.min.js +4 -4
  194. package/umd/dnb-ui-elements.min.js +4 -4
  195. package/umd/dnb-ui-extensions.min.js +5 -5
  196. package/umd/dnb-ui-lib.min.js +5 -5
  197. package/umd/dnb-ui-web-components.min.js +5 -5
@@ -1,5 +1,5 @@
1
- import"react";var t="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};"function"==typeof t.setTimeout&&setTimeout,"function"==typeof t.clearTimeout&&clearTimeout;function e(t,e){this.fun=t,this.array=e}e.prototype.run=function(){this.fun.apply(null,this.array)};var n=t.performance||{};n.now||n.mozNow||n.msNow||n.oNow||n.webkitNow;new Date;var r=function(t){return t&&t.Math==Math&&t},o=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof o&&o)||function(){return this}()||Function("return this")(),i={},a=function(t){try{return!!t()}catch(t){return!0}},u=!a((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),c={},l={}.propertyIsEnumerable,s=Object.getOwnPropertyDescriptor,f=s&&!l.call({1:2},1);c.f=f?function(t){var e=s(this,t);return!!e&&e.enumerable}:l;var d,p,h=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},v={}.toString,y=function(t){return v.call(t).slice(8,-1)},g=y,m="".split,w=a((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==g(t)?m.call(t,""):Object(t)}:Object,b=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},x=w,S=b,E=function(t){return x(S(t))},O=function(t){return"object"==typeof t?null!==t:"function"==typeof t},k=o,A=function(t){return"function"==typeof t?t:void 0},j=function(t,e){return arguments.length<2?A(k[t]):k[t]&&k[t][e]},T=o,L=j("navigator","userAgent")||"",C=T.process,I=T.Deno,_=C&&C.versions||I&&I.version,P=_&&_.v8;P?p=(d=P.split("."))[0]<4?1:d[0]+d[1]:L&&(!(d=L.match(/Edge\/(\d+)/))||d[1]>=74)&&(d=L.match(/Chrome\/(\d+)/))&&(p=d[1]);var R=p&&+p,M=R,N=a,D=!!Object.getOwnPropertySymbols&&!N((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&M&&M<41})),F=D&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,$=j,G=F?function(t){return"symbol"==typeof t}:function(t){var e=$("Symbol");return"function"==typeof e&&Object(t)instanceof e},K=O,U={exports:{}},Y=o,z=function(t,e){try{Object.defineProperty(Y,t,{value:e,configurable:!0,writable:!0})}catch(n){Y[t]=e}return e},H=z,W=o["__core-js_shared__"]||H("__core-js_shared__",{}),B=W;(U.exports=function(t,e){return B[t]||(B[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.17.3",mode:"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"});var V=b,q=function(t){return Object(V(t))},X=q,J={}.hasOwnProperty,Q=Object.hasOwn||function(t,e){return J.call(X(t),e)},Z=0,tt=Math.random(),et=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++Z+tt).toString(36)},nt=o,rt=U.exports,ot=Q,it=et,at=D,ut=F,ct=rt("wks"),lt=nt.Symbol,st=ut?lt:lt&&lt.withoutSetter||it,ft=function(t){return ot(ct,t)&&(at||"string"==typeof ct[t])||(at&&ot(lt,t)?ct[t]=lt[t]:ct[t]=st("Symbol."+t)),ct[t]},dt=O,pt=G,ht=function(t,e){var n,r;if("string"===e&&"function"==typeof(n=t.toString)&&!K(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!K(r=n.call(t)))return r;if("string"!==e&&"function"==typeof(n=t.toString)&&!K(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")},vt=ft("toPrimitive"),yt=function(t,e){if(!dt(t)||pt(t))return t;var n,r=t[vt];if(void 0!==r){if(void 0===e&&(e="default"),n=r.call(t,e),!dt(n)||pt(n))return n;throw TypeError("Can't convert object to primitive value")}return void 0===e&&(e="number"),ht(t,e)},gt=G,mt=function(t){var e=yt(t,"string");return gt(e)?e:String(e)},wt=O,bt=o.document,xt=wt(bt)&&wt(bt.createElement),St=function(t){return xt?bt.createElement(t):{}},Et=St,Ot=!u&&!a((function(){return 7!=Object.defineProperty(Et("div"),"a",{get:function(){return 7}}).a})),kt=u,At=c,jt=h,Tt=E,Lt=mt,Ct=Q,It=Ot,_t=Object.getOwnPropertyDescriptor;i.f=kt?_t:function(t,e){if(t=Tt(t),e=Lt(e),It)try{return _t(t,e)}catch(t){}if(Ct(t,e))return jt(!At.f.call(t,e),t[e])};var Pt={},Rt=O,Mt=function(t){if(!Rt(t))throw TypeError(String(t)+" is not an object");return t},Nt=u,Dt=Ot,Ft=Mt,$t=mt,Gt=Object.defineProperty;Pt.f=Nt?Gt:function(t,e,n){if(Ft(t),e=$t(e),Ft(n),Dt)try{return Gt(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t};var Kt=Pt,Ut=h,Yt=u?function(t,e,n){return Kt.f(t,e,Ut(1,n))}:function(t,e,n){return t[e]=n,t},zt={exports:{}},Ht=W,Wt=Function.toString;"function"!=typeof Ht.inspectSource&&(Ht.inspectSource=function(t){return Wt.call(t)});var Bt,Vt,qt,Xt=Ht.inspectSource,Jt=Xt,Qt=o.WeakMap,Zt="function"==typeof Qt&&/native code/.test(Jt(Qt)),te=U.exports,ee=et,ne=te("keys"),re=function(t){return ne[t]||(ne[t]=ee(t))},oe={},ie=Zt,ae=O,ue=Yt,ce=Q,le=W,se=re,fe=oe,de=o.WeakMap;if(ie||le.state){var pe=le.state||(le.state=new de),he=pe.get,ve=pe.has,ye=pe.set;Bt=function(t,e){if(ve.call(pe,t))throw new TypeError("Object already initialized");return e.facade=t,ye.call(pe,t,e),e},Vt=function(t){return he.call(pe,t)||{}},qt=function(t){return ve.call(pe,t)}}else{var ge=se("state");fe[ge]=!0,Bt=function(t,e){if(ce(t,ge))throw new TypeError("Object already initialized");return e.facade=t,ue(t,ge,e),e},Vt=function(t){return ce(t,ge)?t[ge]:{}},qt=function(t){return ce(t,ge)}}var me={set:Bt,get:Vt,has:qt,enforce:function(t){return qt(t)?Vt(t):Bt(t,{})},getterFor:function(t){return function(e){var n;if(!ae(e)||(n=Vt(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}},we=o,be=Yt,xe=Q,Se=z,Ee=Xt,Oe=me.get,ke=me.enforce,Ae=String(String).split("String");(zt.exports=function(t,e,n,r){var o,i=!!r&&!!r.unsafe,a=!!r&&!!r.enumerable,u=!!r&&!!r.noTargetGet;"function"==typeof n&&("string"!=typeof e||xe(n,"name")||be(n,"name",e),(o=ke(n)).source||(o.source=Ae.join("string"==typeof e?e:""))),t!==we?(i?!u&&t[e]&&(a=!0):delete t[e],a?t[e]=n:be(t,e,n)):a?t[e]=n:Se(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&Oe(this).source||Ee(this)}));var je={},Te=Math.ceil,Le=Math.floor,Ce=function(t){return isNaN(t=+t)?0:(t>0?Le:Te)(t)},Ie=Ce,_e=Math.min,Pe=function(t){return t>0?_e(Ie(t),9007199254740991):0},Re=Ce,Me=Math.max,Ne=Math.min,De=function(t,e){var n=Re(t);return n<0?Me(n+e,0):Ne(n,e)},Fe=E,$e=Pe,Ge=De,Ke=function(t){return function(e,n,r){var o,i=Fe(e),a=$e(i.length),u=Ge(r,a);if(t&&n!=n){for(;a>u;)if((o=i[u++])!=o)return!0}else for(;a>u;u++)if((t||u in i)&&i[u]===n)return t||u||0;return!t&&-1}},Ue={includes:Ke(!0),indexOf:Ke(!1)},Ye=Q,ze=E,He=Ue.indexOf,We=oe,Be=function(t,e){var n,r=ze(t),o=0,i=[];for(n in r)!Ye(We,n)&&Ye(r,n)&&i.push(n);for(;e.length>o;)Ye(r,n=e[o++])&&(~He(i,n)||i.push(n));return i},Ve=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],qe=Be,Xe=Ve.concat("length","prototype");je.f=Object.getOwnPropertyNames||function(t){return qe(t,Xe)};var Je={};Je.f=Object.getOwnPropertySymbols;var Qe,Ze=je,tn=Je,en=Mt,nn=j("Reflect","ownKeys")||function(t){var e=Ze.f(en(t)),n=tn.f;return n?e.concat(n(t)):e},rn=Q,on=nn,an=i,un=Pt,cn=a,ln=/#|\.prototype\./,sn=function(t,e){var n=dn[fn(t)];return n==hn||n!=pn&&("function"==typeof e?cn(e):!!e)},fn=sn.normalize=function(t){return String(t).replace(ln,".").toLowerCase()},dn=sn.data={},pn=sn.NATIVE="N",hn=sn.POLYFILL="P",vn=sn,yn=o,gn=i.f,mn=Yt,wn=zt.exports,bn=z,xn=function(t,e){for(var n=on(e),r=un.f,o=an.f,i=0;i<n.length;i++){var a=n[i];rn(t,a)||r(t,a,o(e,a))}},Sn=vn,En=function(t,e){var n,r,o,i,a,u=t.target,c=t.global,l=t.stat;if(n=c?yn:l?yn[u]||bn(u,{}):(yn[u]||{}).prototype)for(r in e){if(i=e[r],o=t.noTargetGet?(a=gn(n,r))&&a.value:n[r],!Sn(c?r:u+(l?".":"#")+r,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;xn(i,o)}(t.sham||o&&o.sham)&&mn(i,"sham",!0),wn(n,r,i,t)}},On=y,kn=Array.isArray||function(t){return"Array"==On(t)},An=G,jn=function(t){if(An(t))throw TypeError("Cannot convert a Symbol value to a string");return String(t)},Tn=Be,Ln=Ve,Cn=Object.keys||function(t){return Tn(t,Ln)},In=Pt,_n=Mt,Pn=Cn,Rn=u?Object.defineProperties:function(t,e){_n(t);for(var n,r=Pn(e),o=r.length,i=0;o>i;)In.f(t,n=r[i++],e[n]);return t},Mn=j("document","documentElement"),Nn=Mt,Dn=Rn,Fn=Ve,$n=oe,Gn=Mn,Kn=St,Un=re("IE_PROTO"),Yn=function(){},zn=function(t){return"<script>"+t+"<\/script>"},Hn=function(t){t.write(zn("")),t.close();var e=t.parentWindow.Object;return t=null,e},Wn=function(){try{Qe=new ActiveXObject("htmlfile")}catch(t){}var t,e;Wn="undefined"!=typeof document?document.domain&&Qe?Hn(Qe):((e=Kn("iframe")).style.display="none",Gn.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write(zn("document.F=Object")),t.close(),t.F):Hn(Qe);for(var n=Fn.length;n--;)delete Wn.prototype[Fn[n]];return Wn()};$n[Un]=!0;var Bn=Object.create||function(t,e){var n;return null!==t?(Yn.prototype=Nn(t),n=new Yn,Yn.prototype=null,n[Un]=t):n=Wn(),void 0===e?n:Dn(n,e)},Vn={},qn=E,Xn=je.f,Jn={}.toString,Qn="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Vn.f=function(t){return Qn&&"[object Window]"==Jn.call(t)?function(t){try{return Xn(t)}catch(t){return Qn.slice()}}(t):Xn(qn(t))};var Zn={},tr=ft;Zn.f=tr;var er=o,nr=Q,rr=Zn,or=Pt.f,ir=Pt.f,ar=Q,ur=ft("toStringTag"),cr=function(t,e,n){t&&!ar(t=n?t:t.prototype,ur)&&ir(t,ur,{configurable:!0,value:e})},lr=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t},sr=lr,fr=function(t,e,n){if(sr(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}},dr=O,pr=kn,hr=ft("species"),vr=function(t){var e;return pr(t)&&("function"!=typeof(e=t.constructor)||e!==Array&&!pr(e.prototype)?dr(e)&&null===(e=e[hr])&&(e=void 0):e=void 0),void 0===e?Array:e},yr=function(t,e){return new(vr(t))(0===e?0:e)},gr=fr,mr=w,wr=q,br=Pe,xr=yr,Sr=[].push,Er=function(t){var e=1==t,n=2==t,r=3==t,o=4==t,i=6==t,a=7==t,u=5==t||i;return function(c,l,s,f){for(var d,p,h=wr(c),v=mr(h),y=gr(l,s,3),g=br(v.length),m=0,w=f||xr,b=e?w(c,g):n||a?w(c,0):void 0;g>m;m++)if((u||m in v)&&(p=y(d=v[m],m,h),t))if(e)b[m]=p;else if(p)switch(t){case 3:return!0;case 5:return d;case 6:return m;case 2:Sr.call(b,d)}else switch(t){case 4:return!1;case 7:Sr.call(b,d)}return i?-1:r||o?o:b}},Or={forEach:Er(0),map:Er(1),filter:Er(2),some:Er(3),every:Er(4),find:Er(5),findIndex:Er(6),filterReject:Er(7)},kr=En,Ar=o,jr=j,Tr=u,Lr=D,Cr=a,Ir=Q,_r=kn,Pr=O,Rr=G,Mr=Mt,Nr=q,Dr=E,Fr=mt,$r=jn,Gr=h,Kr=Bn,Ur=Cn,Yr=je,zr=Vn,Hr=Je,Wr=i,Br=Pt,Vr=c,qr=Yt,Xr=zt.exports,Jr=U.exports,Qr=oe,Zr=et,to=ft,eo=Zn,no=function(t){var e=er.Symbol||(er.Symbol={});nr(e,t)||or(e,t,{value:rr.f(t)})},ro=cr,oo=me,io=Or.forEach,ao=re("hidden"),uo=to("toPrimitive"),co=oo.set,lo=oo.getterFor("Symbol"),so=Object.prototype,fo=Ar.Symbol,po=jr("JSON","stringify"),ho=Wr.f,vo=Br.f,yo=zr.f,go=Vr.f,mo=Jr("symbols"),wo=Jr("op-symbols"),bo=Jr("string-to-symbol-registry"),xo=Jr("symbol-to-string-registry"),So=Jr("wks"),Eo=Ar.QObject,Oo=!Eo||!Eo.prototype||!Eo.prototype.findChild,ko=Tr&&Cr((function(){return 7!=Kr(vo({},"a",{get:function(){return vo(this,"a",{value:7}).a}})).a}))?function(t,e,n){var r=ho(so,e);r&&delete so[e],vo(t,e,n),r&&t!==so&&vo(so,e,r)}:vo,Ao=function(t,e){var n=mo[t]=Kr(fo.prototype);return co(n,{type:"Symbol",tag:t,description:e}),Tr||(n.description=e),n},jo=function(t,e,n){t===so&&jo(wo,e,n),Mr(t);var r=Fr(e);return Mr(n),Ir(mo,r)?(n.enumerable?(Ir(t,ao)&&t[ao][r]&&(t[ao][r]=!1),n=Kr(n,{enumerable:Gr(0,!1)})):(Ir(t,ao)||vo(t,ao,Gr(1,{})),t[ao][r]=!0),ko(t,r,n)):vo(t,r,n)},To=function(t,e){Mr(t);var n=Dr(e),r=Ur(n).concat(_o(n));return io(r,(function(e){Tr&&!Lo.call(n,e)||jo(t,e,n[e])})),t},Lo=function(t){var e=Fr(t),n=go.call(this,e);return!(this===so&&Ir(mo,e)&&!Ir(wo,e))&&(!(n||!Ir(this,e)||!Ir(mo,e)||Ir(this,ao)&&this[ao][e])||n)},Co=function(t,e){var n=Dr(t),r=Fr(e);if(n!==so||!Ir(mo,r)||Ir(wo,r)){var o=ho(n,r);return!o||!Ir(mo,r)||Ir(n,ao)&&n[ao][r]||(o.enumerable=!0),o}},Io=function(t){var e=yo(Dr(t)),n=[];return io(e,(function(t){Ir(mo,t)||Ir(Qr,t)||n.push(t)})),n},_o=function(t){var e=t===so,n=yo(e?wo:Dr(t)),r=[];return io(n,(function(t){!Ir(mo,t)||e&&!Ir(so,t)||r.push(mo[t])})),r};(Lr||(Xr((fo=function(){if(this instanceof fo)throw TypeError("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?$r(arguments[0]):void 0,e=Zr(t),n=function(t){this===so&&n.call(wo,t),Ir(this,ao)&&Ir(this[ao],e)&&(this[ao][e]=!1),ko(this,e,Gr(1,t))};return Tr&&Oo&&ko(so,e,{configurable:!0,set:n}),Ao(e,t)}).prototype,"toString",(function(){return lo(this).tag})),Xr(fo,"withoutSetter",(function(t){return Ao(Zr(t),t)})),Vr.f=Lo,Br.f=jo,Wr.f=Co,Yr.f=zr.f=Io,Hr.f=_o,eo.f=function(t){return Ao(to(t),t)},Tr&&(vo(fo.prototype,"description",{configurable:!0,get:function(){return lo(this).description}}),Xr(so,"propertyIsEnumerable",Lo,{unsafe:!0}))),kr({global:!0,wrap:!0,forced:!Lr,sham:!Lr},{Symbol:fo}),io(Ur(So),(function(t){no(t)})),kr({target:"Symbol",stat:!0,forced:!Lr},{for:function(t){var e=$r(t);if(Ir(bo,e))return bo[e];var n=fo(e);return bo[e]=n,xo[n]=e,n},keyFor:function(t){if(!Rr(t))throw TypeError(t+" is not a symbol");if(Ir(xo,t))return xo[t]},useSetter:function(){Oo=!0},useSimple:function(){Oo=!1}}),kr({target:"Object",stat:!0,forced:!Lr,sham:!Tr},{create:function(t,e){return void 0===e?Kr(t):To(Kr(t),e)},defineProperty:jo,defineProperties:To,getOwnPropertyDescriptor:Co}),kr({target:"Object",stat:!0,forced:!Lr},{getOwnPropertyNames:Io,getOwnPropertySymbols:_o}),kr({target:"Object",stat:!0,forced:Cr((function(){Hr.f(1)}))},{getOwnPropertySymbols:function(t){return Hr.f(Nr(t))}}),po)&&kr({target:"JSON",stat:!0,forced:!Lr||Cr((function(){var t=fo();return"[null]"!=po([t])||"{}"!=po({a:t})||"{}"!=po(Object(t))}))},{stringify:function(t,e,n){for(var r,o=[t],i=1;arguments.length>i;)o.push(arguments[i++]);if(r=e,(Pr(e)||void 0!==t)&&!Rr(t))return _r(e)||(e=function(t,e){if("function"==typeof r&&(e=r.call(this,t,e)),!Rr(e))return e}),o[1]=e,po.apply(null,o)}});fo.prototype[uo]||qr(fo.prototype,uo,fo.prototype.valueOf),ro(fo,"Symbol"),Qr[ao]=!0;var Po=En,Ro=a,Mo=E,No=i.f,Do=u,Fo=Ro((function(){No(1)}));Po({target:"Object",stat:!0,forced:!Do||Fo,sham:!Do},{getOwnPropertyDescriptor:function(t,e){return No(Mo(t),e)}});var $o=mt,Go=Pt,Ko=h,Uo=function(t,e,n){var r=$o(e);r in t?Go.f(t,r,Ko(0,n)):t[r]=n},Yo=nn,zo=E,Ho=i,Wo=Uo;function Bo(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Vo(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function qo(t,e,n){return e&&Vo(t.prototype,e),n&&Vo(t,n),t}function Xo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}En({target:"Object",stat:!0,sham:!u},{getOwnPropertyDescriptors:function(t){for(var e,n,r=zo(t),o=Ho.f,i=Yo(r),a={},u=0;i.length>u;)void 0!==(n=o(r,e=i[u++]))&&Wo(a,e,n);return a}});var Jo=Mt,Qo=function(){var t=Jo(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e},Zo={},ti=a,ei=o.RegExp;Zo.UNSUPPORTED_Y=ti((function(){var t=ei("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),Zo.BROKEN_CARET=ti((function(){var t=ei("^r","gy");return t.lastIndex=2,null!=t.exec("str")}));var ni=a,ri=o.RegExp,oi=ni((function(){var t=ri(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)})),ii=a,ai=o.RegExp,ui=ii((function(){var t=ai("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),ci=jn,li=Qo,si=Zo,fi=U.exports,di=Bn,pi=me.get,hi=oi,vi=ui,yi=RegExp.prototype.exec,gi=fi("native-string-replace",String.prototype.replace),mi=yi,wi=function(){var t=/a/,e=/b*/g;return yi.call(t,"a"),yi.call(e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),bi=si.UNSUPPORTED_Y||si.BROKEN_CARET,xi=void 0!==/()??/.exec("")[1];(wi||xi||bi||hi||vi)&&(mi=function(t){var e,n,r,o,i,a,u,c=this,l=pi(c),s=ci(t),f=l.raw;if(f)return f.lastIndex=c.lastIndex,e=mi.call(f,s),c.lastIndex=f.lastIndex,e;var d=l.groups,p=bi&&c.sticky,h=li.call(c),v=c.source,y=0,g=s;if(p&&(-1===(h=h.replace("y","")).indexOf("g")&&(h+="g"),g=s.slice(c.lastIndex),c.lastIndex>0&&(!c.multiline||c.multiline&&"\n"!==s.charAt(c.lastIndex-1))&&(v="(?: "+v+")",g=" "+g,y++),n=new RegExp("^(?:"+v+")",h)),xi&&(n=new RegExp("^"+v+"$(?!\\s)",h)),wi&&(r=c.lastIndex),o=yi.call(p?n:c,g),p?o?(o.input=o.input.slice(y),o[0]=o[0].slice(y),o.index=c.lastIndex,c.lastIndex+=o[0].length):c.lastIndex=0:wi&&o&&(c.lastIndex=c.global?o.index+o[0].length:r),xi&&o&&o.length>1&&gi.call(o[0],n,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)})),o&&d)for(o.groups=a=di(null),i=0;i<d.length;i++)a[(u=d[i])[0]]=o[u[1]];return o});var Si=mi;En({target:"RegExp",proto:!0,forced:/./.exec!==Si},{exec:Si});var Ei=zt.exports,Oi=Si,ki=a,Ai=ft,ji=Yt,Ti=Ai("species"),Li=RegExp.prototype,Ci=function(t,e,n,r){var o=Ai(t),i=!ki((function(){var e={};return e[o]=function(){return 7},7!=""[t](e)})),a=i&&!ki((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[Ti]=function(){return n},n.flags="",n[o]=/./[o]),n.exec=function(){return e=!0,null},n[o](""),!e}));if(!i||!a||n){var u=/./[o],c=e(o,""[t],(function(t,e,n,r,o){var a=e.exec;return a===Oi||a===Li.exec?i&&!o?{done:!0,value:u.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}}));Ei(String.prototype,t,c[0]),Ei(Li,o,c[1])}r&&ji(Li[o],"sham",!0)},Ii=Ce,_i=jn,Pi=b,Ri=function(t){return function(e,n){var r,o,i=_i(Pi(e)),a=Ii(n),u=i.length;return a<0||a>=u?t?"":void 0:(r=i.charCodeAt(a))<55296||r>56319||a+1===u||(o=i.charCodeAt(a+1))<56320||o>57343?t?i.charAt(a):r:t?i.slice(a,a+2):o-56320+(r-55296<<10)+65536}},Mi={codeAt:Ri(!1),charAt:Ri(!0)},Ni=Mi.charAt,Di=function(t,e,n){return e+(n?Ni(t,e).length:1)},Fi=y,$i=Si,Gi=function(t,e){var n=t.exec;if("function"==typeof n){var r=n.call(t,e);if("object"!=typeof r)throw TypeError("RegExp exec method returned something other than an Object or null");return r}if("RegExp"!==Fi(t))throw TypeError("RegExp#exec called on incompatible receiver");return $i.call(t,e)},Ki=Mt,Ui=Pe,Yi=jn,zi=b,Hi=Di,Wi=Gi;Ci("match",(function(t,e,n){return[function(e){var n=zi(this),r=null==e?void 0:e[t];return void 0!==r?r.call(e,n):new RegExp(e)[t](Yi(n))},function(t){var r=Ki(this),o=Yi(t),i=n(e,r,o);if(i.done)return i.value;if(!r.global)return Wi(r,o);var a=r.unicode;r.lastIndex=0;for(var u,c=[],l=0;null!==(u=Wi(r,o));){var s=Yi(u[0]);c[l]=s,""===s&&(r.lastIndex=Hi(o,Ui(r.lastIndex),a)),l++}return 0===l?null:c}]}));var Bi=O,Vi=Mt,qi=function(t){if(!Bi(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t},Xi=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(n,[]),e=n instanceof Array}catch(t){}return function(n,r){return Vi(n),qi(r),e?t.call(n,r):n.__proto__=r,n}}():void 0),Ji=O,Qi=Xi,Zi=O,ta=y,ea=ft("match"),na=function(t){var e;return Zi(t)&&(void 0!==(e=t[ea])?!!e:"RegExp"==ta(t))},ra=j,oa=Pt,ia=u,aa=ft("species"),ua=u,ca=o,la=vn,sa=function(t,e,n){var r,o;return Qi&&"function"==typeof(r=e.constructor)&&r!==n&&Ji(o=r.prototype)&&o!==n.prototype&&Qi(t,o),t},fa=Yt,da=Pt.f,pa=je.f,ha=na,va=jn,ya=Qo,ga=Zo,ma=zt.exports,wa=a,ba=Q,xa=me.enforce,Sa=function(t){var e=ra(t),n=oa.f;ia&&e&&!e[aa]&&n(e,aa,{configurable:!0,get:function(){return this}})},Ea=oi,Oa=ui,ka=ft("match"),Aa=ca.RegExp,ja=Aa.prototype,Ta=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,La=/a/g,Ca=/a/g,Ia=new Aa(La)!==La,_a=ga.UNSUPPORTED_Y,Pa=ua&&(!Ia||_a||Ea||Oa||wa((function(){return Ca[ka]=!1,Aa(La)!=La||Aa(Ca)==Ca||"/a/i"!=Aa(La,"i")})));if(la("RegExp",Pa)){for(var Ra=function(t,e){var n,r,o,i,a,u,c=this instanceof Ra,l=ha(t),s=void 0===e,f=[],d=t;if(!c&&l&&s&&t.constructor===Ra)return t;if((l||t instanceof Ra)&&(t=t.source,s&&(e="flags"in d?d.flags:ya.call(d))),t=void 0===t?"":va(t),e=void 0===e?"":va(e),d=t,Ea&&"dotAll"in La&&(r=!!e&&e.indexOf("s")>-1)&&(e=e.replace(/s/g,"")),n=e,_a&&"sticky"in La&&(o=!!e&&e.indexOf("y")>-1)&&(e=e.replace(/y/g,"")),Oa&&(i=function(t){for(var e,n=t.length,r=0,o="",i=[],a={},u=!1,c=!1,l=0,s="";r<=n;r++){if("\\"===(e=t.charAt(r)))e+=t.charAt(++r);else if("]"===e)u=!1;else if(!u)switch(!0){case"["===e:u=!0;break;case"("===e:Ta.test(t.slice(r+1))&&(r+=2,c=!0),o+=e,l++;continue;case">"===e&&c:if(""===s||ba(a,s))throw new SyntaxError("Invalid capture group name");a[s]=!0,i.push([s,l]),c=!1,s="";continue}c?s+=e:o+=e}return[o,i]}(t),t=i[0],f=i[1]),a=sa(Aa(t,e),c?this:ja,Ra),(r||o||f.length)&&(u=xa(a),r&&(u.dotAll=!0,u.raw=Ra(function(t){for(var e,n=t.length,r=0,o="",i=!1;r<=n;r++)"\\"!==(e=t.charAt(r))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+t.charAt(++r);return o}(t),n)),o&&(u.sticky=!0),f.length&&(u.groups=f)),t!==d)try{fa(a,"source",""===d?"(?:)":d)}catch(t){}return a},Ma=function(t){t in Ra||da(Ra,t,{configurable:!0,get:function(){return Aa[t]},set:function(e){Aa[t]=e}})},Na=pa(Aa),Da=0;Na.length>Da;)Ma(Na[Da++]);ja.constructor=Ra,Ra.prototype=ja,ma(ca,"RegExp",Ra)}Sa("RegExp");var Fa=zt.exports,$a=Mt,Ga=jn,Ka=a,Ua=Qo,Ya=RegExp.prototype,za=Ya.toString,Ha=Ka((function(){return"/a/b"!=za.call({source:"a",flags:"b"})})),Wa="toString"!=za.name;(Ha||Wa)&&Fa(RegExp.prototype,"toString",(function(){var t=$a(this),e=Ga(t.source),n=t.flags;return"/"+e+"/"+Ga(void 0===n&&t instanceof RegExp&&!("flags"in Ya)?Ua.call(t):n)}),{unsafe:!0});var Ba=St("span").classList,Va=Ba&&Ba.constructor&&Ba.constructor.prototype,qa=Va===Object.prototype?void 0:Va,Xa=a,Ja=function(t,e){var n=[][t];return!!n&&Xa((function(){n.call(null,e||function(){throw 1},1)}))},Qa=Or.forEach,Za=o,tu={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},eu=qa,nu=Ja("forEach")?[].forEach:function(t){return Qa(this,t,arguments.length>1?arguments[1]:void 0)},ru=Yt,ou=function(t){if(t&&t.forEach!==nu)try{ru(t,"forEach",nu)}catch(e){t.forEach=nu}};for(var iu in tu)ou(Za[iu]&&Za[iu].prototype);ou(eu);var au=u,uu=Cn,cu=E,lu=c.f,su=function(t){return function(e){for(var n,r=cu(e),o=uu(r),i=o.length,a=0,u=[];i>a;)n=o[a++],au&&!lu.call(r,n)||u.push(t?[n,r[n]]:r[n]);return u}},fu={entries:su(!0),values:su(!1)}.entries;En({target:"Object",stat:!0},{entries:function(t){return fu(t)}});var du=a,pu=R,hu=ft("species"),vu=function(t){return pu>=51||!du((function(){var e=[];return(e.constructor={})[hu]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},yu=Or.filter;En({target:"Array",proto:!0,forced:!vu("filter")},{filter:function(t){return yu(this,t,arguments.length>1?arguments[1]:void 0)}});var gu=Or.map;En({target:"Array",proto:!0,forced:!vu("map")},{map:function(t){return gu(this,t,arguments.length>1?arguments[1]:void 0)}});var mu=kn,wu=[].reverse,bu=[1,2];En({target:"Array",proto:!0,forced:String(bu)===String(bu.reverse())},{reverse:function(){return mu(this)&&(this.length=this.length),wu.call(this)}});var xu=Bn,Su=Pt,Eu=ft("unscopables"),Ou=Array.prototype;null==Ou[Eu]&&Su.f(Ou,Eu,{configurable:!0,value:xu(null)});var ku=Ue.includes,Au=function(t){Ou[Eu][t]=!0};En({target:"Array",proto:!0},{includes:function(t){return ku(this,t,arguments.length>1?arguments[1]:void 0)}}),Au("includes");var ju=na,Tu=ft("match"),Lu=function(t){if(ju(t))throw TypeError("The method doesn't accept regular expressions");return t},Cu=b,Iu=jn;En({target:"String",proto:!0,forced:!function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[Tu]=!1,"/./"[t](e)}catch(t){}}return!1}("includes")},{includes:function(t){return!!~Iu(Cu(this)).indexOf(Iu(Lu(t)),arguments.length>1?arguments[1]:void 0)}});var _u=En,Pu=a,Ru=O,Mu=Object.isFrozen;_u({target:"Object",stat:!0,forced:Pu((function(){Mu(1)}))},{isFrozen:function(t){return!Ru(t)||!!Mu&&Mu(t)}});var Nu=lr,Du=q,Fu=w,$u=Pe,Gu=function(t){return function(e,n,r,o){Nu(n);var i=Du(e),a=Fu(i),u=$u(i.length),c=t?u-1:0,l=t?-1:1;if(r<2)for(;;){if(c in a){o=a[c],c+=l;break}if(c+=l,t?c<0:u<=c)throw TypeError("Reduce of empty array with no initial value")}for(;t?c>=0:u>c;c+=l)c in a&&(o=n(o,a[c],c,i));return o}},Ku={left:Gu(!1),right:Gu(!0)},Uu="process"==y(o.process),Yu=Ku.left,zu=R,Hu=Uu;En({target:"Array",proto:!0,forced:!Ja("reduce")||!Hu&&zu>79&&zu<83},{reduce:function(t){return Yu(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}});var Wu=En,Bu=E,Vu=[].join,qu=w!=Object,Xu=Ja("join",",");Wu({target:"Array",proto:!0,forced:qu||!Xu},{join:function(t){return Vu.call(Bu(this),void 0===t?",":t)}});var Ju=q,Qu=Cn;En({target:"Object",stat:!0,forced:a((function(){Qu(1)}))},{keys:function(t){return Qu(Ju(t))}});var Zu=q,tc=Math.floor,ec="".replace,nc=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,rc=/\$([$&'`]|\d{1,2})/g,oc=Ci,ic=a,ac=Mt,uc=Ce,cc=Pe,lc=jn,sc=b,fc=Di,dc=function(t,e,n,r,o,i){var a=n+t.length,u=r.length,c=rc;return void 0!==o&&(o=Zu(o),c=nc),ec.call(i,c,(function(i,c){var l;switch(c.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,n);case"'":return e.slice(a);case"<":l=o[c.slice(1,-1)];break;default:var s=+c;if(0===s)return i;if(s>u){var f=tc(s/10);return 0===f?i:f<=u?void 0===r[f-1]?c.charAt(1):r[f-1]+c.charAt(1):i}l=r[s-1]}return void 0===l?"":l}))},pc=Gi,hc=ft("replace"),vc=Math.max,yc=Math.min,gc="$0"==="a".replace(/./,"$0"),mc=!!/./[hc]&&""===/./[hc]("a","$0");oc("replace",(function(t,e,n){var r=mc?"$":"$0";return[function(t,n){var r=sc(this),o=null==t?void 0:t[hc];return void 0!==o?o.call(t,r,n):e.call(lc(r),t,n)},function(t,o){var i=ac(this),a=lc(t);if("string"==typeof o&&-1===o.indexOf(r)&&-1===o.indexOf("$<")){var u=n(e,i,a,o);if(u.done)return u.value}var c="function"==typeof o;c||(o=lc(o));var l=i.global;if(l){var s=i.unicode;i.lastIndex=0}for(var f=[];;){var d=pc(i,a);if(null===d)break;if(f.push(d),!l)break;""===lc(d[0])&&(i.lastIndex=fc(a,cc(i.lastIndex),s))}for(var p,h="",v=0,y=0;y<f.length;y++){d=f[y];for(var g=lc(d[0]),m=vc(yc(uc(d.index),a.length),0),w=[],b=1;b<d.length;b++)w.push(void 0===(p=d[b])?p:String(p));var x=d.groups;if(c){var S=[g].concat(w,m,a);void 0!==x&&S.push(x);var E=lc(o.apply(void 0,S))}else E=dc(g,a,m,w,x,o);m>=v&&(h+=a.slice(v,m)+E,v=m+g.length)}return h+a.slice(v)}]}),!!ic((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!gc||mc);var wc=Mt,bc=lr,xc=ft("species"),Sc=Ci,Ec=na,Oc=Mt,kc=b,Ac=function(t,e){var n,r=wc(t).constructor;return void 0===r||null==(n=wc(r)[xc])?e:bc(n)},jc=Di,Tc=Pe,Lc=jn,Cc=Gi,Ic=Si,_c=a,Pc=Zo.UNSUPPORTED_Y,Rc=[].push,Mc=Math.min;Sc("split",(function(t,e,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var r=Lc(kc(this)),o=void 0===n?4294967295:n>>>0;if(0===o)return[];if(void 0===t)return[r];if(!Ec(t))return e.call(r,t,o);for(var i,a,u,c=[],l=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),s=0,f=new RegExp(t.source,l+"g");(i=Ic.call(f,r))&&!((a=f.lastIndex)>s&&(c.push(r.slice(s,i.index)),i.length>1&&i.index<r.length&&Rc.apply(c,i.slice(1)),u=i[0].length,s=a,c.length>=o));)f.lastIndex===i.index&&f.lastIndex++;return s===r.length?!u&&f.test("")||c.push(""):c.push(r.slice(s)),c.length>o?c.slice(0,o):c}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:e.call(this,t,n)}:e,[function(e,n){var o=kc(this),i=null==e?void 0:e[t];return void 0!==i?i.call(e,o,n):r.call(Lc(o),e,n)},function(t,o){var i=Oc(this),a=Lc(t),u=n(r,i,a,o,r!==e);if(u.done)return u.value;var c=Ac(i,RegExp),l=i.unicode,s=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(Pc?"g":"y"),f=new c(Pc?"^(?:"+i.source+")":i,s),d=void 0===o?4294967295:o>>>0;if(0===d)return[];if(0===a.length)return null===Cc(f,a)?[a]:[];for(var p=0,h=0,v=[];h<a.length;){f.lastIndex=Pc?0:h;var y,g=Cc(f,Pc?a.slice(h):a);if(null===g||(y=Mc(Tc(f.lastIndex+(Pc?h:0)),a.length))===p)h=jc(a,h,l);else{if(v.push(a.slice(p,h)),v.length===d)return v;for(var m=1;m<=g.length-1;m++)if(v.push(g[m]),v.length===d)return v;h=p=y}}return v.push(a.slice(p)),v}]}),!!_c((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]})),Pc);var Nc=En,Dc=O,Fc=kn,$c=De,Gc=Pe,Kc=E,Uc=Uo,Yc=ft,zc=vu("slice"),Hc=Yc("species"),Wc=[].slice,Bc=Math.max;Nc({target:"Array",proto:!0,forced:!zc},{slice:function(t,e){var n,r,o,i=Kc(this),a=Gc(i.length),u=$c(t,a),c=$c(void 0===e?a:e,a);if(Fc(i)&&("function"!=typeof(n=i.constructor)||n!==Array&&!Fc(n.prototype)?Dc(n)&&null===(n=n[Hc])&&(n=void 0):n=void 0,n===Array||void 0===n))return Wc.call(i,u,c);for(r=new(void 0===n?Array:n)(Bc(c-u,0)),o=0;u<c;u++,o++)u in i&&Uc(r,o,i[u]);return r.length=o,r}});var Vc={};Vc[ft("toStringTag")]="z";var qc="[object z]"===String(Vc),Xc=qc,Jc=y,Qc=ft("toStringTag"),Zc="Arguments"==Jc(function(){return arguments}()),tl=Xc?Jc:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),Qc))?n:Zc?Jc(e):"Object"==(r=Jc(e))&&"function"==typeof e.callee?"Arguments":r},el=tl,nl=qc?{}.toString:function(){return"[object "+el(this)+"]"},rl=qc,ol=zt.exports,il=nl;rl||ol(Object.prototype,"toString",il,{unsafe:!0});var al=Mt,ul=Mt,cl=function(t,e,n){var r,o;al(t);try{if(void 0===(r=t.return)){if("throw"===e)throw n;return n}r=r.call(t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return al(r),n},ll={},sl=ll,fl=ft("iterator"),dl=Array.prototype,pl=tl,hl=ll,vl=ft("iterator"),yl=function(t){if(null!=t)return t[vl]||t["@@iterator"]||hl[pl(t)]},gl=Mt,ml=yl,wl=fr,bl=q,xl=function(t,e,n,r){try{return r?e(ul(n)[0],n[1]):e(n)}catch(e){cl(t,"throw",e)}},Sl=function(t){return void 0!==t&&(sl.Array===t||dl[fl]===t)},El=Pe,Ol=Uo,kl=function(t,e){var n=arguments.length<2?ml(t):e;if("function"!=typeof n)throw TypeError(String(t)+" is not iterable");return gl(n.call(t))},Al=yl,jl=ft("iterator"),Tl=!1;try{var Ll=0,Cl={next:function(){return{done:!!Ll++}},return:function(){Tl=!0}};Cl[jl]=function(){return this},Array.from(Cl,(function(){throw 2}))}catch(t){}var Il=function(t){var e,n,r,o,i,a,u=bl(t),c="function"==typeof this?this:Array,l=arguments.length,s=l>1?arguments[1]:void 0,f=void 0!==s,d=Al(u),p=0;if(f&&(s=wl(s,l>2?arguments[2]:void 0,2)),null==d||c==Array&&Sl(d))for(n=new c(e=El(u.length));e>p;p++)a=f?s(u[p],p):u[p],Ol(n,p,a);else for(i=(o=kl(u,d)).next,n=new c;!(r=i.call(o)).done;p++)a=f?xl(o,s,[r.value,p],!0):r.value,Ol(n,p,a);return n.length=p,n},_l=function(t,e){if(!e&&!Tl)return!1;var n=!1;try{var r={};r[jl]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n};En({target:"Array",stat:!0,forced:!_l((function(t){Array.from(t)}))},{from:Il});var Pl,Rl,Ml,Nl=!a((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),Dl=Q,Fl=q,$l=Nl,Gl=re("IE_PROTO"),Kl=Object.prototype,Ul=$l?Object.getPrototypeOf:function(t){return t=Fl(t),Dl(t,Gl)?t[Gl]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?Kl:null},Yl=a,zl=Ul,Hl=Yt,Wl=ft("iterator"),Bl=!1;[].keys&&("next"in(Ml=[].keys())?(Rl=zl(zl(Ml)))!==Object.prototype&&(Pl=Rl):Bl=!0);var Vl=null==Pl||Yl((function(){var t={};return Pl[Wl].call(t)!==t}));Vl&&(Pl={}),"function"!=typeof Pl[Wl]&&Hl(Pl,Wl,(function(){return this}));var ql={IteratorPrototype:Pl,BUGGY_SAFARI_ITERATORS:Bl},Xl=ql.IteratorPrototype,Jl=Bn,Ql=h,Zl=cr,ts=ll,es=function(){return this},ns=En,rs=function(t,e,n){var r=e+" Iterator";return t.prototype=Jl(Xl,{next:Ql(1,n)}),Zl(t,r,!1),ts[r]=es,t},os=Ul,is=Xi,as=cr,us=Yt,cs=zt.exports,ls=ll,ss=ql.IteratorPrototype,fs=ql.BUGGY_SAFARI_ITERATORS,ds=ft("iterator"),ps=function(){return this},hs=Mi.charAt,vs=jn,ys=me,gs=function(t,e,n,r,o,i,a){rs(n,e,r);var u,c,l,s=function(t){if(t===o&&v)return v;if(!fs&&t in p)return p[t];switch(t){case"keys":case"values":case"entries":return function(){return new n(this,t)}}return function(){return new n(this)}},f=e+" Iterator",d=!1,p=t.prototype,h=p[ds]||p["@@iterator"]||o&&p[o],v=!fs&&h||s(o),y="Array"==e&&p.entries||h;if(y&&(u=os(y.call(new t)))!==Object.prototype&&u.next&&(os(u)!==ss&&(is?is(u,ss):"function"!=typeof u[ds]&&us(u,ds,ps)),as(u,f,!0)),"values"==o&&h&&"values"!==h.name&&(d=!0,v=function(){return h.call(this)}),p[ds]!==v&&us(p,ds,v),ls[e]=v,o)if(c={values:s("values"),keys:i?v:s("keys"),entries:s("entries")},a)for(l in c)(fs||d||!(l in p))&&cs(p,l,c[l]);else ns({target:e,proto:!0,forced:fs||d},c);return c},ms=ys.set,ws=ys.getterFor("String Iterator");gs(String,"String",(function(t){ms(this,{type:"String Iterator",string:vs(t),index:0})}),(function(){var t,e=ws(this),n=e.string,r=e.index;return r>=n.length?{value:void 0,done:!0}:(t=hs(n,r),e.index+=t.length,{value:t,done:!1})}));var bs=En,xs=a,Ss=kn,Es=O,Os=q,ks=Pe,As=Uo,js=yr,Ts=vu,Ls=R,Cs=ft("isConcatSpreadable"),Is=Ls>=51||!xs((function(){var t=[];return t[Cs]=!1,t.concat()[0]!==t})),_s=Ts("concat"),Ps=function(t){if(!Es(t))return!1;var e=t[Cs];return void 0!==e?!!e:Ss(t)};bs({target:"Array",proto:!0,forced:!Is||!_s},{concat:function(t){var e,n,r,o,i,a=Os(this),u=js(a,0),c=0;for(e=-1,r=arguments.length;e<r;e++)if(Ps(i=-1===e?a:arguments[e])){if(c+(o=ks(i.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n<o;n++,c++)n in i&&As(u,c,i[n])}else{if(c>=9007199254740991)throw TypeError("Maximum allowed index exceeded");As(u,c++,i)}return u.length=c,u}});var Rs=b,Ms=jn,Ns="[\t\n\v\f\r                 \u2028\u2029\ufeff]",Ds=RegExp("^"+Ns+Ns+"*"),Fs=RegExp(Ns+Ns+"*$"),$s=function(t){return function(e){var n=Ms(Rs(e));return 1&t&&(n=n.replace(Ds,"")),2&t&&(n=n.replace(Fs,"")),n}},Gs={start:$s(1),end:$s(2),trim:$s(3)},Ks=a,Us="\t\n\v\f\r                 \u2028\u2029\ufeff",Ys=Gs.trim;En({target:"String",proto:!0,forced:function(t){return Ks((function(){return!!Us[t]()||"​…᠎"!="​…᠎"[t]()||Us[t].name!==t}))}("trim")},{trim:function(){return Ys(this)}});var zs={exports:{}};!function(t,e){function n(t){if(t&&"object"==typeof t){var e=t.which||t.keyCode||t.charCode;e&&(t=e)}if("number"==typeof t)return a[t];var n,i=String(t);return(n=r[i.toLowerCase()])?n:(n=o[i.toLowerCase()])||(1===i.length?i.charCodeAt(0):void 0)}n.isEventKey=function(t,e){if(t&&"object"==typeof t){var n=t.which||t.keyCode||t.charCode;if(null==n)return!1;if("string"==typeof e){var i;if(i=r[e.toLowerCase()])return i===n;if(i=o[e.toLowerCase()])return i===n}else if("number"==typeof e)return e===n;return!1}};var r=(e=t.exports=n).code=e.codes={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,"pause/break":19,"caps lock":20,esc:27,space:32,"page up":33,"page down":34,end:35,home:36,left:37,up:38,right:39,down:40,insert:45,delete:46,command:91,"left command":91,"right command":93,"numpad *":106,"numpad +":107,"numpad -":109,"numpad .":110,"numpad /":111,"num lock":144,"scroll lock":145,"my computer":182,"my calculator":183,";":186,"=":187,",":188,"-":189,".":190,"/":191,"`":192,"[":219,"\\":220,"]":221,"'":222},o=e.aliases={windows:91,"⇧":16,"⌥":18,"⌃":17,"⌘":91,ctl:17,control:17,option:18,pause:19,break:19,caps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91};
1
+ import"react";var t="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};"function"==typeof t.setTimeout&&setTimeout,"function"==typeof t.clearTimeout&&clearTimeout;function e(t,e){this.fun=t,this.array=e}e.prototype.run=function(){this.fun.apply(null,this.array)};var n=t.performance||{};n.now||n.mozNow||n.msNow||n.oNow||n.webkitNow;new Date;var r=function(t){return t&&t.Math==Math&&t},o=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof o&&o)||function(){return this}()||Function("return this")(),i={},a=function(t){try{return!!t()}catch(t){return!0}},u=!a((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),c={},l={}.propertyIsEnumerable,s=Object.getOwnPropertyDescriptor,f=s&&!l.call({1:2},1);c.f=f?function(t){var e=s(this,t);return!!e&&e.enumerable}:l;var d,p,h=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},v={}.toString,y=function(t){return v.call(t).slice(8,-1)},g=y,m="".split,w=a((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==g(t)?m.call(t,""):Object(t)}:Object,b=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},x=w,S=b,E=function(t){return x(S(t))},O=function(t){return"object"==typeof t?null!==t:"function"==typeof t},A=o,k=function(t){return"function"==typeof t?t:void 0},j=function(t,e){return arguments.length<2?k(A[t]):A[t]&&A[t][e]},T=o,I=j("navigator","userAgent")||"",L=T.process,C=T.Deno,_=L&&L.versions||C&&C.version,P=_&&_.v8;P?p=(d=P.split("."))[0]<4?1:d[0]+d[1]:I&&(!(d=I.match(/Edge\/(\d+)/))||d[1]>=74)&&(d=I.match(/Chrome\/(\d+)/))&&(p=d[1]);var R=p&&+p,M=R,N=a,D=!!Object.getOwnPropertySymbols&&!N((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&M&&M<41})),F=D&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,$=j,G=F?function(t){return"symbol"==typeof t}:function(t){var e=$("Symbol");return"function"==typeof e&&Object(t)instanceof e},K=O,U={exports:{}},Y=o,z=function(t,e){try{Object.defineProperty(Y,t,{value:e,configurable:!0,writable:!0})}catch(n){Y[t]=e}return e},H=z,W=o["__core-js_shared__"]||H("__core-js_shared__",{}),B=W;(U.exports=function(t,e){return B[t]||(B[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.17.3",mode:"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"});var V=b,q=function(t){return Object(V(t))},X=q,J={}.hasOwnProperty,Q=Object.hasOwn||function(t,e){return J.call(X(t),e)},Z=0,tt=Math.random(),et=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++Z+tt).toString(36)},nt=o,rt=U.exports,ot=Q,it=et,at=D,ut=F,ct=rt("wks"),lt=nt.Symbol,st=ut?lt:lt&&lt.withoutSetter||it,ft=function(t){return ot(ct,t)&&(at||"string"==typeof ct[t])||(at&&ot(lt,t)?ct[t]=lt[t]:ct[t]=st("Symbol."+t)),ct[t]},dt=O,pt=G,ht=function(t,e){var n,r;if("string"===e&&"function"==typeof(n=t.toString)&&!K(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!K(r=n.call(t)))return r;if("string"!==e&&"function"==typeof(n=t.toString)&&!K(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")},vt=ft("toPrimitive"),yt=function(t,e){if(!dt(t)||pt(t))return t;var n,r=t[vt];if(void 0!==r){if(void 0===e&&(e="default"),n=r.call(t,e),!dt(n)||pt(n))return n;throw TypeError("Can't convert object to primitive value")}return void 0===e&&(e="number"),ht(t,e)},gt=G,mt=function(t){var e=yt(t,"string");return gt(e)?e:String(e)},wt=O,bt=o.document,xt=wt(bt)&&wt(bt.createElement),St=function(t){return xt?bt.createElement(t):{}},Et=St,Ot=!u&&!a((function(){return 7!=Object.defineProperty(Et("div"),"a",{get:function(){return 7}}).a})),At=u,kt=c,jt=h,Tt=E,It=mt,Lt=Q,Ct=Ot,_t=Object.getOwnPropertyDescriptor;i.f=At?_t:function(t,e){if(t=Tt(t),e=It(e),Ct)try{return _t(t,e)}catch(t){}if(Lt(t,e))return jt(!kt.f.call(t,e),t[e])};var Pt={},Rt=O,Mt=function(t){if(!Rt(t))throw TypeError(String(t)+" is not an object");return t},Nt=u,Dt=Ot,Ft=Mt,$t=mt,Gt=Object.defineProperty;Pt.f=Nt?Gt:function(t,e,n){if(Ft(t),e=$t(e),Ft(n),Dt)try{return Gt(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t};var Kt=Pt,Ut=h,Yt=u?function(t,e,n){return Kt.f(t,e,Ut(1,n))}:function(t,e,n){return t[e]=n,t},zt={exports:{}},Ht=W,Wt=Function.toString;"function"!=typeof Ht.inspectSource&&(Ht.inspectSource=function(t){return Wt.call(t)});var Bt,Vt,qt,Xt=Ht.inspectSource,Jt=Xt,Qt=o.WeakMap,Zt="function"==typeof Qt&&/native code/.test(Jt(Qt)),te=U.exports,ee=et,ne=te("keys"),re=function(t){return ne[t]||(ne[t]=ee(t))},oe={},ie=Zt,ae=O,ue=Yt,ce=Q,le=W,se=re,fe=oe,de=o.WeakMap;if(ie||le.state){var pe=le.state||(le.state=new de),he=pe.get,ve=pe.has,ye=pe.set;Bt=function(t,e){if(ve.call(pe,t))throw new TypeError("Object already initialized");return e.facade=t,ye.call(pe,t,e),e},Vt=function(t){return he.call(pe,t)||{}},qt=function(t){return ve.call(pe,t)}}else{var ge=se("state");fe[ge]=!0,Bt=function(t,e){if(ce(t,ge))throw new TypeError("Object already initialized");return e.facade=t,ue(t,ge,e),e},Vt=function(t){return ce(t,ge)?t[ge]:{}},qt=function(t){return ce(t,ge)}}var me={set:Bt,get:Vt,has:qt,enforce:function(t){return qt(t)?Vt(t):Bt(t,{})},getterFor:function(t){return function(e){var n;if(!ae(e)||(n=Vt(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}},we=o,be=Yt,xe=Q,Se=z,Ee=Xt,Oe=me.get,Ae=me.enforce,ke=String(String).split("String");(zt.exports=function(t,e,n,r){var o,i=!!r&&!!r.unsafe,a=!!r&&!!r.enumerable,u=!!r&&!!r.noTargetGet;"function"==typeof n&&("string"!=typeof e||xe(n,"name")||be(n,"name",e),(o=Ae(n)).source||(o.source=ke.join("string"==typeof e?e:""))),t!==we?(i?!u&&t[e]&&(a=!0):delete t[e],a?t[e]=n:be(t,e,n)):a?t[e]=n:Se(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&Oe(this).source||Ee(this)}));var je={},Te=Math.ceil,Ie=Math.floor,Le=function(t){return isNaN(t=+t)?0:(t>0?Ie:Te)(t)},Ce=Le,_e=Math.min,Pe=function(t){return t>0?_e(Ce(t),9007199254740991):0},Re=Le,Me=Math.max,Ne=Math.min,De=function(t,e){var n=Re(t);return n<0?Me(n+e,0):Ne(n,e)},Fe=E,$e=Pe,Ge=De,Ke=function(t){return function(e,n,r){var o,i=Fe(e),a=$e(i.length),u=Ge(r,a);if(t&&n!=n){for(;a>u;)if((o=i[u++])!=o)return!0}else for(;a>u;u++)if((t||u in i)&&i[u]===n)return t||u||0;return!t&&-1}},Ue={includes:Ke(!0),indexOf:Ke(!1)},Ye=Q,ze=E,He=Ue.indexOf,We=oe,Be=function(t,e){var n,r=ze(t),o=0,i=[];for(n in r)!Ye(We,n)&&Ye(r,n)&&i.push(n);for(;e.length>o;)Ye(r,n=e[o++])&&(~He(i,n)||i.push(n));return i},Ve=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],qe=Be,Xe=Ve.concat("length","prototype");je.f=Object.getOwnPropertyNames||function(t){return qe(t,Xe)};var Je={};Je.f=Object.getOwnPropertySymbols;var Qe,Ze=je,tn=Je,en=Mt,nn=j("Reflect","ownKeys")||function(t){var e=Ze.f(en(t)),n=tn.f;return n?e.concat(n(t)):e},rn=Q,on=nn,an=i,un=Pt,cn=a,ln=/#|\.prototype\./,sn=function(t,e){var n=dn[fn(t)];return n==hn||n!=pn&&("function"==typeof e?cn(e):!!e)},fn=sn.normalize=function(t){return String(t).replace(ln,".").toLowerCase()},dn=sn.data={},pn=sn.NATIVE="N",hn=sn.POLYFILL="P",vn=sn,yn=o,gn=i.f,mn=Yt,wn=zt.exports,bn=z,xn=function(t,e){for(var n=on(e),r=un.f,o=an.f,i=0;i<n.length;i++){var a=n[i];rn(t,a)||r(t,a,o(e,a))}},Sn=vn,En=function(t,e){var n,r,o,i,a,u=t.target,c=t.global,l=t.stat;if(n=c?yn:l?yn[u]||bn(u,{}):(yn[u]||{}).prototype)for(r in e){if(i=e[r],o=t.noTargetGet?(a=gn(n,r))&&a.value:n[r],!Sn(c?r:u+(l?".":"#")+r,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;xn(i,o)}(t.sham||o&&o.sham)&&mn(i,"sham",!0),wn(n,r,i,t)}},On=y,An=Array.isArray||function(t){return"Array"==On(t)},kn=G,jn=function(t){if(kn(t))throw TypeError("Cannot convert a Symbol value to a string");return String(t)},Tn=Be,In=Ve,Ln=Object.keys||function(t){return Tn(t,In)},Cn=Pt,_n=Mt,Pn=Ln,Rn=u?Object.defineProperties:function(t,e){_n(t);for(var n,r=Pn(e),o=r.length,i=0;o>i;)Cn.f(t,n=r[i++],e[n]);return t},Mn=j("document","documentElement"),Nn=Mt,Dn=Rn,Fn=Ve,$n=oe,Gn=Mn,Kn=St,Un=re("IE_PROTO"),Yn=function(){},zn=function(t){return"<script>"+t+"<\/script>"},Hn=function(t){t.write(zn("")),t.close();var e=t.parentWindow.Object;return t=null,e},Wn=function(){try{Qe=new ActiveXObject("htmlfile")}catch(t){}var t,e;Wn="undefined"!=typeof document?document.domain&&Qe?Hn(Qe):((e=Kn("iframe")).style.display="none",Gn.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write(zn("document.F=Object")),t.close(),t.F):Hn(Qe);for(var n=Fn.length;n--;)delete Wn.prototype[Fn[n]];return Wn()};$n[Un]=!0;var Bn=Object.create||function(t,e){var n;return null!==t?(Yn.prototype=Nn(t),n=new Yn,Yn.prototype=null,n[Un]=t):n=Wn(),void 0===e?n:Dn(n,e)},Vn={},qn=E,Xn=je.f,Jn={}.toString,Qn="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Vn.f=function(t){return Qn&&"[object Window]"==Jn.call(t)?function(t){try{return Xn(t)}catch(t){return Qn.slice()}}(t):Xn(qn(t))};var Zn={},tr=ft;Zn.f=tr;var er=o,nr=Q,rr=Zn,or=Pt.f,ir=Pt.f,ar=Q,ur=ft("toStringTag"),cr=function(t,e,n){t&&!ar(t=n?t:t.prototype,ur)&&ir(t,ur,{configurable:!0,value:e})},lr=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t},sr=lr,fr=function(t,e,n){if(sr(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}},dr=O,pr=An,hr=ft("species"),vr=function(t){var e;return pr(t)&&("function"!=typeof(e=t.constructor)||e!==Array&&!pr(e.prototype)?dr(e)&&null===(e=e[hr])&&(e=void 0):e=void 0),void 0===e?Array:e},yr=function(t,e){return new(vr(t))(0===e?0:e)},gr=fr,mr=w,wr=q,br=Pe,xr=yr,Sr=[].push,Er=function(t){var e=1==t,n=2==t,r=3==t,o=4==t,i=6==t,a=7==t,u=5==t||i;return function(c,l,s,f){for(var d,p,h=wr(c),v=mr(h),y=gr(l,s,3),g=br(v.length),m=0,w=f||xr,b=e?w(c,g):n||a?w(c,0):void 0;g>m;m++)if((u||m in v)&&(p=y(d=v[m],m,h),t))if(e)b[m]=p;else if(p)switch(t){case 3:return!0;case 5:return d;case 6:return m;case 2:Sr.call(b,d)}else switch(t){case 4:return!1;case 7:Sr.call(b,d)}return i?-1:r||o?o:b}},Or={forEach:Er(0),map:Er(1),filter:Er(2),some:Er(3),every:Er(4),find:Er(5),findIndex:Er(6),filterReject:Er(7)},Ar=En,kr=o,jr=j,Tr=u,Ir=D,Lr=a,Cr=Q,_r=An,Pr=O,Rr=G,Mr=Mt,Nr=q,Dr=E,Fr=mt,$r=jn,Gr=h,Kr=Bn,Ur=Ln,Yr=je,zr=Vn,Hr=Je,Wr=i,Br=Pt,Vr=c,qr=Yt,Xr=zt.exports,Jr=U.exports,Qr=oe,Zr=et,to=ft,eo=Zn,no=function(t){var e=er.Symbol||(er.Symbol={});nr(e,t)||or(e,t,{value:rr.f(t)})},ro=cr,oo=me,io=Or.forEach,ao=re("hidden"),uo=to("toPrimitive"),co=oo.set,lo=oo.getterFor("Symbol"),so=Object.prototype,fo=kr.Symbol,po=jr("JSON","stringify"),ho=Wr.f,vo=Br.f,yo=zr.f,go=Vr.f,mo=Jr("symbols"),wo=Jr("op-symbols"),bo=Jr("string-to-symbol-registry"),xo=Jr("symbol-to-string-registry"),So=Jr("wks"),Eo=kr.QObject,Oo=!Eo||!Eo.prototype||!Eo.prototype.findChild,Ao=Tr&&Lr((function(){return 7!=Kr(vo({},"a",{get:function(){return vo(this,"a",{value:7}).a}})).a}))?function(t,e,n){var r=ho(so,e);r&&delete so[e],vo(t,e,n),r&&t!==so&&vo(so,e,r)}:vo,ko=function(t,e){var n=mo[t]=Kr(fo.prototype);return co(n,{type:"Symbol",tag:t,description:e}),Tr||(n.description=e),n},jo=function(t,e,n){t===so&&jo(wo,e,n),Mr(t);var r=Fr(e);return Mr(n),Cr(mo,r)?(n.enumerable?(Cr(t,ao)&&t[ao][r]&&(t[ao][r]=!1),n=Kr(n,{enumerable:Gr(0,!1)})):(Cr(t,ao)||vo(t,ao,Gr(1,{})),t[ao][r]=!0),Ao(t,r,n)):vo(t,r,n)},To=function(t,e){Mr(t);var n=Dr(e),r=Ur(n).concat(_o(n));return io(r,(function(e){Tr&&!Io.call(n,e)||jo(t,e,n[e])})),t},Io=function(t){var e=Fr(t),n=go.call(this,e);return!(this===so&&Cr(mo,e)&&!Cr(wo,e))&&(!(n||!Cr(this,e)||!Cr(mo,e)||Cr(this,ao)&&this[ao][e])||n)},Lo=function(t,e){var n=Dr(t),r=Fr(e);if(n!==so||!Cr(mo,r)||Cr(wo,r)){var o=ho(n,r);return!o||!Cr(mo,r)||Cr(n,ao)&&n[ao][r]||(o.enumerable=!0),o}},Co=function(t){var e=yo(Dr(t)),n=[];return io(e,(function(t){Cr(mo,t)||Cr(Qr,t)||n.push(t)})),n},_o=function(t){var e=t===so,n=yo(e?wo:Dr(t)),r=[];return io(n,(function(t){!Cr(mo,t)||e&&!Cr(so,t)||r.push(mo[t])})),r};(Ir||(Xr((fo=function(){if(this instanceof fo)throw TypeError("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?$r(arguments[0]):void 0,e=Zr(t),n=function(t){this===so&&n.call(wo,t),Cr(this,ao)&&Cr(this[ao],e)&&(this[ao][e]=!1),Ao(this,e,Gr(1,t))};return Tr&&Oo&&Ao(so,e,{configurable:!0,set:n}),ko(e,t)}).prototype,"toString",(function(){return lo(this).tag})),Xr(fo,"withoutSetter",(function(t){return ko(Zr(t),t)})),Vr.f=Io,Br.f=jo,Wr.f=Lo,Yr.f=zr.f=Co,Hr.f=_o,eo.f=function(t){return ko(to(t),t)},Tr&&(vo(fo.prototype,"description",{configurable:!0,get:function(){return lo(this).description}}),Xr(so,"propertyIsEnumerable",Io,{unsafe:!0}))),Ar({global:!0,wrap:!0,forced:!Ir,sham:!Ir},{Symbol:fo}),io(Ur(So),(function(t){no(t)})),Ar({target:"Symbol",stat:!0,forced:!Ir},{for:function(t){var e=$r(t);if(Cr(bo,e))return bo[e];var n=fo(e);return bo[e]=n,xo[n]=e,n},keyFor:function(t){if(!Rr(t))throw TypeError(t+" is not a symbol");if(Cr(xo,t))return xo[t]},useSetter:function(){Oo=!0},useSimple:function(){Oo=!1}}),Ar({target:"Object",stat:!0,forced:!Ir,sham:!Tr},{create:function(t,e){return void 0===e?Kr(t):To(Kr(t),e)},defineProperty:jo,defineProperties:To,getOwnPropertyDescriptor:Lo}),Ar({target:"Object",stat:!0,forced:!Ir},{getOwnPropertyNames:Co,getOwnPropertySymbols:_o}),Ar({target:"Object",stat:!0,forced:Lr((function(){Hr.f(1)}))},{getOwnPropertySymbols:function(t){return Hr.f(Nr(t))}}),po)&&Ar({target:"JSON",stat:!0,forced:!Ir||Lr((function(){var t=fo();return"[null]"!=po([t])||"{}"!=po({a:t})||"{}"!=po(Object(t))}))},{stringify:function(t,e,n){for(var r,o=[t],i=1;arguments.length>i;)o.push(arguments[i++]);if(r=e,(Pr(e)||void 0!==t)&&!Rr(t))return _r(e)||(e=function(t,e){if("function"==typeof r&&(e=r.call(this,t,e)),!Rr(e))return e}),o[1]=e,po.apply(null,o)}});fo.prototype[uo]||qr(fo.prototype,uo,fo.prototype.valueOf),ro(fo,"Symbol"),Qr[ao]=!0;var Po=En,Ro=a,Mo=E,No=i.f,Do=u,Fo=Ro((function(){No(1)}));Po({target:"Object",stat:!0,forced:!Do||Fo,sham:!Do},{getOwnPropertyDescriptor:function(t,e){return No(Mo(t),e)}});var $o=mt,Go=Pt,Ko=h,Uo=function(t,e,n){var r=$o(e);r in t?Go.f(t,r,Ko(0,n)):t[r]=n},Yo=nn,zo=E,Ho=i,Wo=Uo;function Bo(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Vo(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function qo(t,e,n){return e&&Vo(t.prototype,e),n&&Vo(t,n),t}function Xo(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}En({target:"Object",stat:!0,sham:!u},{getOwnPropertyDescriptors:function(t){for(var e,n,r=zo(t),o=Ho.f,i=Yo(r),a={},u=0;i.length>u;)void 0!==(n=o(r,e=i[u++]))&&Wo(a,e,n);return a}});var Jo=Mt,Qo=function(){var t=Jo(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e},Zo={},ti=a,ei=o.RegExp;Zo.UNSUPPORTED_Y=ti((function(){var t=ei("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),Zo.BROKEN_CARET=ti((function(){var t=ei("^r","gy");return t.lastIndex=2,null!=t.exec("str")}));var ni=a,ri=o.RegExp,oi=ni((function(){var t=ri(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)})),ii=a,ai=o.RegExp,ui=ii((function(){var t=ai("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),ci=jn,li=Qo,si=Zo,fi=U.exports,di=Bn,pi=me.get,hi=oi,vi=ui,yi=RegExp.prototype.exec,gi=fi("native-string-replace",String.prototype.replace),mi=yi,wi=function(){var t=/a/,e=/b*/g;return yi.call(t,"a"),yi.call(e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),bi=si.UNSUPPORTED_Y||si.BROKEN_CARET,xi=void 0!==/()??/.exec("")[1];(wi||xi||bi||hi||vi)&&(mi=function(t){var e,n,r,o,i,a,u,c=this,l=pi(c),s=ci(t),f=l.raw;if(f)return f.lastIndex=c.lastIndex,e=mi.call(f,s),c.lastIndex=f.lastIndex,e;var d=l.groups,p=bi&&c.sticky,h=li.call(c),v=c.source,y=0,g=s;if(p&&(-1===(h=h.replace("y","")).indexOf("g")&&(h+="g"),g=s.slice(c.lastIndex),c.lastIndex>0&&(!c.multiline||c.multiline&&"\n"!==s.charAt(c.lastIndex-1))&&(v="(?: "+v+")",g=" "+g,y++),n=new RegExp("^(?:"+v+")",h)),xi&&(n=new RegExp("^"+v+"$(?!\\s)",h)),wi&&(r=c.lastIndex),o=yi.call(p?n:c,g),p?o?(o.input=o.input.slice(y),o[0]=o[0].slice(y),o.index=c.lastIndex,c.lastIndex+=o[0].length):c.lastIndex=0:wi&&o&&(c.lastIndex=c.global?o.index+o[0].length:r),xi&&o&&o.length>1&&gi.call(o[0],n,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)})),o&&d)for(o.groups=a=di(null),i=0;i<d.length;i++)a[(u=d[i])[0]]=o[u[1]];return o});var Si=mi;En({target:"RegExp",proto:!0,forced:/./.exec!==Si},{exec:Si});var Ei=zt.exports,Oi=Si,Ai=a,ki=ft,ji=Yt,Ti=ki("species"),Ii=RegExp.prototype,Li=function(t,e,n,r){var o=ki(t),i=!Ai((function(){var e={};return e[o]=function(){return 7},7!=""[t](e)})),a=i&&!Ai((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[Ti]=function(){return n},n.flags="",n[o]=/./[o]),n.exec=function(){return e=!0,null},n[o](""),!e}));if(!i||!a||n){var u=/./[o],c=e(o,""[t],(function(t,e,n,r,o){var a=e.exec;return a===Oi||a===Ii.exec?i&&!o?{done:!0,value:u.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}}));Ei(String.prototype,t,c[0]),Ei(Ii,o,c[1])}r&&ji(Ii[o],"sham",!0)},Ci=Le,_i=jn,Pi=b,Ri=function(t){return function(e,n){var r,o,i=_i(Pi(e)),a=Ci(n),u=i.length;return a<0||a>=u?t?"":void 0:(r=i.charCodeAt(a))<55296||r>56319||a+1===u||(o=i.charCodeAt(a+1))<56320||o>57343?t?i.charAt(a):r:t?i.slice(a,a+2):o-56320+(r-55296<<10)+65536}},Mi={codeAt:Ri(!1),charAt:Ri(!0)},Ni=Mi.charAt,Di=function(t,e,n){return e+(n?Ni(t,e).length:1)},Fi=y,$i=Si,Gi=function(t,e){var n=t.exec;if("function"==typeof n){var r=n.call(t,e);if("object"!=typeof r)throw TypeError("RegExp exec method returned something other than an Object or null");return r}if("RegExp"!==Fi(t))throw TypeError("RegExp#exec called on incompatible receiver");return $i.call(t,e)},Ki=Mt,Ui=Pe,Yi=jn,zi=b,Hi=Di,Wi=Gi;Li("match",(function(t,e,n){return[function(e){var n=zi(this),r=null==e?void 0:e[t];return void 0!==r?r.call(e,n):new RegExp(e)[t](Yi(n))},function(t){var r=Ki(this),o=Yi(t),i=n(e,r,o);if(i.done)return i.value;if(!r.global)return Wi(r,o);var a=r.unicode;r.lastIndex=0;for(var u,c=[],l=0;null!==(u=Wi(r,o));){var s=Yi(u[0]);c[l]=s,""===s&&(r.lastIndex=Hi(o,Ui(r.lastIndex),a)),l++}return 0===l?null:c}]}));var Bi=O,Vi=Mt,qi=function(t){if(!Bi(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t},Xi=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(n,[]),e=n instanceof Array}catch(t){}return function(n,r){return Vi(n),qi(r),e?t.call(n,r):n.__proto__=r,n}}():void 0),Ji=O,Qi=Xi,Zi=O,ta=y,ea=ft("match"),na=function(t){var e;return Zi(t)&&(void 0!==(e=t[ea])?!!e:"RegExp"==ta(t))},ra=j,oa=Pt,ia=u,aa=ft("species"),ua=u,ca=o,la=vn,sa=function(t,e,n){var r,o;return Qi&&"function"==typeof(r=e.constructor)&&r!==n&&Ji(o=r.prototype)&&o!==n.prototype&&Qi(t,o),t},fa=Yt,da=Pt.f,pa=je.f,ha=na,va=jn,ya=Qo,ga=Zo,ma=zt.exports,wa=a,ba=Q,xa=me.enforce,Sa=function(t){var e=ra(t),n=oa.f;ia&&e&&!e[aa]&&n(e,aa,{configurable:!0,get:function(){return this}})},Ea=oi,Oa=ui,Aa=ft("match"),ka=ca.RegExp,ja=ka.prototype,Ta=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,Ia=/a/g,La=/a/g,Ca=new ka(Ia)!==Ia,_a=ga.UNSUPPORTED_Y,Pa=ua&&(!Ca||_a||Ea||Oa||wa((function(){return La[Aa]=!1,ka(Ia)!=Ia||ka(La)==La||"/a/i"!=ka(Ia,"i")})));if(la("RegExp",Pa)){for(var Ra=function(t,e){var n,r,o,i,a,u,c=this instanceof Ra,l=ha(t),s=void 0===e,f=[],d=t;if(!c&&l&&s&&t.constructor===Ra)return t;if((l||t instanceof Ra)&&(t=t.source,s&&(e="flags"in d?d.flags:ya.call(d))),t=void 0===t?"":va(t),e=void 0===e?"":va(e),d=t,Ea&&"dotAll"in Ia&&(r=!!e&&e.indexOf("s")>-1)&&(e=e.replace(/s/g,"")),n=e,_a&&"sticky"in Ia&&(o=!!e&&e.indexOf("y")>-1)&&(e=e.replace(/y/g,"")),Oa&&(i=function(t){for(var e,n=t.length,r=0,o="",i=[],a={},u=!1,c=!1,l=0,s="";r<=n;r++){if("\\"===(e=t.charAt(r)))e+=t.charAt(++r);else if("]"===e)u=!1;else if(!u)switch(!0){case"["===e:u=!0;break;case"("===e:Ta.test(t.slice(r+1))&&(r+=2,c=!0),o+=e,l++;continue;case">"===e&&c:if(""===s||ba(a,s))throw new SyntaxError("Invalid capture group name");a[s]=!0,i.push([s,l]),c=!1,s="";continue}c?s+=e:o+=e}return[o,i]}(t),t=i[0],f=i[1]),a=sa(ka(t,e),c?this:ja,Ra),(r||o||f.length)&&(u=xa(a),r&&(u.dotAll=!0,u.raw=Ra(function(t){for(var e,n=t.length,r=0,o="",i=!1;r<=n;r++)"\\"!==(e=t.charAt(r))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+t.charAt(++r);return o}(t),n)),o&&(u.sticky=!0),f.length&&(u.groups=f)),t!==d)try{fa(a,"source",""===d?"(?:)":d)}catch(t){}return a},Ma=function(t){t in Ra||da(Ra,t,{configurable:!0,get:function(){return ka[t]},set:function(e){ka[t]=e}})},Na=pa(ka),Da=0;Na.length>Da;)Ma(Na[Da++]);ja.constructor=Ra,Ra.prototype=ja,ma(ca,"RegExp",Ra)}Sa("RegExp");var Fa=zt.exports,$a=Mt,Ga=jn,Ka=a,Ua=Qo,Ya=RegExp.prototype,za=Ya.toString,Ha=Ka((function(){return"/a/b"!=za.call({source:"a",flags:"b"})})),Wa="toString"!=za.name;(Ha||Wa)&&Fa(RegExp.prototype,"toString",(function(){var t=$a(this),e=Ga(t.source),n=t.flags;return"/"+e+"/"+Ga(void 0===n&&t instanceof RegExp&&!("flags"in Ya)?Ua.call(t):n)}),{unsafe:!0});var Ba=St("span").classList,Va=Ba&&Ba.constructor&&Ba.constructor.prototype,qa=Va===Object.prototype?void 0:Va,Xa=a,Ja=function(t,e){var n=[][t];return!!n&&Xa((function(){n.call(null,e||function(){throw 1},1)}))},Qa=Or.forEach,Za=o,tu={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},eu=qa,nu=Ja("forEach")?[].forEach:function(t){return Qa(this,t,arguments.length>1?arguments[1]:void 0)},ru=Yt,ou=function(t){if(t&&t.forEach!==nu)try{ru(t,"forEach",nu)}catch(e){t.forEach=nu}};for(var iu in tu)ou(Za[iu]&&Za[iu].prototype);ou(eu);var au=u,uu=Ln,cu=E,lu=c.f,su=function(t){return function(e){for(var n,r=cu(e),o=uu(r),i=o.length,a=0,u=[];i>a;)n=o[a++],au&&!lu.call(r,n)||u.push(t?[n,r[n]]:r[n]);return u}},fu={entries:su(!0),values:su(!1)}.entries;En({target:"Object",stat:!0},{entries:function(t){return fu(t)}});var du=a,pu=R,hu=ft("species"),vu=function(t){return pu>=51||!du((function(){var e=[];return(e.constructor={})[hu]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},yu=Or.filter;En({target:"Array",proto:!0,forced:!vu("filter")},{filter:function(t){return yu(this,t,arguments.length>1?arguments[1]:void 0)}});var gu=Or.map;En({target:"Array",proto:!0,forced:!vu("map")},{map:function(t){return gu(this,t,arguments.length>1?arguments[1]:void 0)}});var mu=An,wu=[].reverse,bu=[1,2];En({target:"Array",proto:!0,forced:String(bu)===String(bu.reverse())},{reverse:function(){return mu(this)&&(this.length=this.length),wu.call(this)}});var xu=Bn,Su=Pt,Eu=ft("unscopables"),Ou=Array.prototype;null==Ou[Eu]&&Su.f(Ou,Eu,{configurable:!0,value:xu(null)});var Au=Ue.includes,ku=function(t){Ou[Eu][t]=!0};En({target:"Array",proto:!0},{includes:function(t){return Au(this,t,arguments.length>1?arguments[1]:void 0)}}),ku("includes");var ju=na,Tu=ft("match"),Iu=function(t){if(ju(t))throw TypeError("The method doesn't accept regular expressions");return t},Lu=b,Cu=jn;En({target:"String",proto:!0,forced:!function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[Tu]=!1,"/./"[t](e)}catch(t){}}return!1}("includes")},{includes:function(t){return!!~Cu(Lu(this)).indexOf(Cu(Iu(t)),arguments.length>1?arguments[1]:void 0)}});var _u=En,Pu=a,Ru=O,Mu=Object.isFrozen;_u({target:"Object",stat:!0,forced:Pu((function(){Mu(1)}))},{isFrozen:function(t){return!Ru(t)||!!Mu&&Mu(t)}});var Nu=lr,Du=q,Fu=w,$u=Pe,Gu=function(t){return function(e,n,r,o){Nu(n);var i=Du(e),a=Fu(i),u=$u(i.length),c=t?u-1:0,l=t?-1:1;if(r<2)for(;;){if(c in a){o=a[c],c+=l;break}if(c+=l,t?c<0:u<=c)throw TypeError("Reduce of empty array with no initial value")}for(;t?c>=0:u>c;c+=l)c in a&&(o=n(o,a[c],c,i));return o}},Ku={left:Gu(!1),right:Gu(!0)},Uu="process"==y(o.process),Yu=Ku.left,zu=R,Hu=Uu;En({target:"Array",proto:!0,forced:!Ja("reduce")||!Hu&&zu>79&&zu<83},{reduce:function(t){return Yu(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}});var Wu=En,Bu=E,Vu=[].join,qu=w!=Object,Xu=Ja("join",",");Wu({target:"Array",proto:!0,forced:qu||!Xu},{join:function(t){return Vu.call(Bu(this),void 0===t?",":t)}});var Ju=q,Qu=Ln;En({target:"Object",stat:!0,forced:a((function(){Qu(1)}))},{keys:function(t){return Qu(Ju(t))}});var Zu=q,tc=Math.floor,ec="".replace,nc=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,rc=/\$([$&'`]|\d{1,2})/g,oc=Li,ic=a,ac=Mt,uc=Le,cc=Pe,lc=jn,sc=b,fc=Di,dc=function(t,e,n,r,o,i){var a=n+t.length,u=r.length,c=rc;return void 0!==o&&(o=Zu(o),c=nc),ec.call(i,c,(function(i,c){var l;switch(c.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,n);case"'":return e.slice(a);case"<":l=o[c.slice(1,-1)];break;default:var s=+c;if(0===s)return i;if(s>u){var f=tc(s/10);return 0===f?i:f<=u?void 0===r[f-1]?c.charAt(1):r[f-1]+c.charAt(1):i}l=r[s-1]}return void 0===l?"":l}))},pc=Gi,hc=ft("replace"),vc=Math.max,yc=Math.min,gc="$0"==="a".replace(/./,"$0"),mc=!!/./[hc]&&""===/./[hc]("a","$0");oc("replace",(function(t,e,n){var r=mc?"$":"$0";return[function(t,n){var r=sc(this),o=null==t?void 0:t[hc];return void 0!==o?o.call(t,r,n):e.call(lc(r),t,n)},function(t,o){var i=ac(this),a=lc(t);if("string"==typeof o&&-1===o.indexOf(r)&&-1===o.indexOf("$<")){var u=n(e,i,a,o);if(u.done)return u.value}var c="function"==typeof o;c||(o=lc(o));var l=i.global;if(l){var s=i.unicode;i.lastIndex=0}for(var f=[];;){var d=pc(i,a);if(null===d)break;if(f.push(d),!l)break;""===lc(d[0])&&(i.lastIndex=fc(a,cc(i.lastIndex),s))}for(var p,h="",v=0,y=0;y<f.length;y++){d=f[y];for(var g=lc(d[0]),m=vc(yc(uc(d.index),a.length),0),w=[],b=1;b<d.length;b++)w.push(void 0===(p=d[b])?p:String(p));var x=d.groups;if(c){var S=[g].concat(w,m,a);void 0!==x&&S.push(x);var E=lc(o.apply(void 0,S))}else E=dc(g,a,m,w,x,o);m>=v&&(h+=a.slice(v,m)+E,v=m+g.length)}return h+a.slice(v)}]}),!!ic((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!gc||mc);var wc=Mt,bc=lr,xc=ft("species"),Sc=function(t,e){var n,r=wc(t).constructor;return void 0===r||null==(n=wc(r)[xc])?e:bc(n)},Ec=Li,Oc=na,Ac=Mt,kc=b,jc=Sc,Tc=Di,Ic=Pe,Lc=jn,Cc=Gi,_c=Si,Pc=a,Rc=Zo.UNSUPPORTED_Y,Mc=[].push,Nc=Math.min;Ec("split",(function(t,e,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var r=Lc(kc(this)),o=void 0===n?4294967295:n>>>0;if(0===o)return[];if(void 0===t)return[r];if(!Oc(t))return e.call(r,t,o);for(var i,a,u,c=[],l=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),s=0,f=new RegExp(t.source,l+"g");(i=_c.call(f,r))&&!((a=f.lastIndex)>s&&(c.push(r.slice(s,i.index)),i.length>1&&i.index<r.length&&Mc.apply(c,i.slice(1)),u=i[0].length,s=a,c.length>=o));)f.lastIndex===i.index&&f.lastIndex++;return s===r.length?!u&&f.test("")||c.push(""):c.push(r.slice(s)),c.length>o?c.slice(0,o):c}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:e.call(this,t,n)}:e,[function(e,n){var o=kc(this),i=null==e?void 0:e[t];return void 0!==i?i.call(e,o,n):r.call(Lc(o),e,n)},function(t,o){var i=Ac(this),a=Lc(t),u=n(r,i,a,o,r!==e);if(u.done)return u.value;var c=jc(i,RegExp),l=i.unicode,s=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(Rc?"g":"y"),f=new c(Rc?"^(?:"+i.source+")":i,s),d=void 0===o?4294967295:o>>>0;if(0===d)return[];if(0===a.length)return null===Cc(f,a)?[a]:[];for(var p=0,h=0,v=[];h<a.length;){f.lastIndex=Rc?0:h;var y,g=Cc(f,Rc?a.slice(h):a);if(null===g||(y=Nc(Ic(f.lastIndex+(Rc?h:0)),a.length))===p)h=Tc(a,h,l);else{if(v.push(a.slice(p,h)),v.length===d)return v;for(var m=1;m<=g.length-1;m++)if(v.push(g[m]),v.length===d)return v;h=p=y}}return v.push(a.slice(p)),v}]}),!!Pc((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]})),Rc);var Dc=En,Fc=O,$c=An,Gc=De,Kc=Pe,Uc=E,Yc=Uo,zc=ft,Hc=vu("slice"),Wc=zc("species"),Bc=[].slice,Vc=Math.max;Dc({target:"Array",proto:!0,forced:!Hc},{slice:function(t,e){var n,r,o,i=Uc(this),a=Kc(i.length),u=Gc(t,a),c=Gc(void 0===e?a:e,a);if($c(i)&&("function"!=typeof(n=i.constructor)||n!==Array&&!$c(n.prototype)?Fc(n)&&null===(n=n[Wc])&&(n=void 0):n=void 0,n===Array||void 0===n))return Bc.call(i,u,c);for(r=new(void 0===n?Array:n)(Vc(c-u,0)),o=0;u<c;u++,o++)u in i&&Yc(r,o,i[u]);return r.length=o,r}});var qc={};qc[ft("toStringTag")]="z";var Xc="[object z]"===String(qc),Jc=Xc,Qc=y,Zc=ft("toStringTag"),tl="Arguments"==Qc(function(){return arguments}()),el=Jc?Qc:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),Zc))?n:tl?Qc(e):"Object"==(r=Qc(e))&&"function"==typeof e.callee?"Arguments":r},nl=el,rl=Xc?{}.toString:function(){return"[object "+nl(this)+"]"},ol=Xc,il=zt.exports,al=rl;ol||il(Object.prototype,"toString",al,{unsafe:!0});var ul,cl,ll,sl=!a((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),fl=Q,dl=q,pl=sl,hl=re("IE_PROTO"),vl=Object.prototype,yl=pl?Object.getPrototypeOf:function(t){return t=dl(t),fl(t,hl)?t[hl]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?vl:null},gl=a,ml=yl,wl=Yt,bl=ft("iterator"),xl=!1;[].keys&&("next"in(ll=[].keys())?(cl=ml(ml(ll)))!==Object.prototype&&(ul=cl):xl=!0);var Sl=null==ul||gl((function(){var t={};return ul[bl].call(t)!==t}));Sl&&(ul={}),"function"!=typeof ul[bl]&&wl(ul,bl,(function(){return this}));var El={IteratorPrototype:ul,BUGGY_SAFARI_ITERATORS:xl},Ol={},Al=El.IteratorPrototype,kl=Bn,jl=h,Tl=cr,Il=Ol,Ll=function(){return this},Cl=function(t,e,n){var r=e+" Iterator";return t.prototype=kl(Al,{next:jl(1,n)}),Tl(t,r,!1),Il[r]=Ll,t},_l=En,Pl=Cl,Rl=b,Ml=Pe,Nl=jn,Dl=lr,Fl=Mt,$l=na,Gl=Qo,Kl=Yt,Ul=a,Yl=Sc,zl=Di,Hl=me,Wl=ft("matchAll"),Bl=Hl.set,Vl=Hl.getterFor("RegExp String Iterator"),ql=RegExp.prototype,Xl=ql.exec,Jl="".matchAll,Ql=!!Jl&&!Ul((function(){"a".matchAll(/./)})),Zl=Pl((function(t,e,n,r){Bl(this,{type:"RegExp String Iterator",regexp:t,string:e,global:n,unicode:r,done:!1})}),"RegExp String",(function(){var t=Vl(this);if(t.done)return{value:void 0,done:!0};var e=t.regexp,n=t.string,r=function(t,e){var n,r=t.exec;if("function"==typeof r){if("object"!=typeof(n=r.call(t,e)))throw TypeError("Incorrect exec result");return n}return Xl.call(t,e)}(e,n);return null===r?{value:void 0,done:t.done=!0}:t.global?(""===Nl(r[0])&&(e.lastIndex=zl(n,Ml(e.lastIndex),t.unicode)),{value:r,done:!1}):(t.done=!0,{value:r,done:!1})})),ts=function(t){var e,n,r,o,i,a,u=Fl(this),c=Nl(t);return e=Yl(u,RegExp),void 0===(n=u.flags)&&u instanceof RegExp&&!("flags"in ql)&&(n=Gl.call(u)),r=void 0===n?"":Nl(n),o=new e(e===RegExp?u.source:u,r),i=!!~r.indexOf("g"),a=!!~r.indexOf("u"),o.lastIndex=Ml(u.lastIndex),new Zl(o,c,i,a)};_l({target:"String",proto:!0,forced:Ql},{matchAll:function(t){var e,n,r=Rl(this);if(null!=t){if($l(t)&&!~Nl(Rl("flags"in ql?t.flags:Gl.call(t))).indexOf("g"))throw TypeError("`.matchAll` does not allow non-global regexes");if(Ql)return Jl.apply(r,arguments);if(null!=(n=t[Wl]))return Dl(n).call(t,r)}else if(Ql)return Jl.apply(r,arguments);return e=Nl(r),new RegExp(t,"g")[Wl](e)}}),Wl in ql||Kl(ql,Wl,ts);var es=Mt,ns=Mt,rs=function(t,e,n){var r,o;es(t);try{if(void 0===(r=t.return)){if("throw"===e)throw n;return n}r=r.call(t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return es(r),n},os=Ol,is=ft("iterator"),as=Array.prototype,us=el,cs=Ol,ls=ft("iterator"),ss=function(t){if(null!=t)return t[ls]||t["@@iterator"]||cs[us(t)]},fs=Mt,ds=ss,ps=fr,hs=q,vs=function(t,e,n,r){try{return r?e(ns(n)[0],n[1]):e(n)}catch(e){rs(t,"throw",e)}},ys=function(t){return void 0!==t&&(os.Array===t||as[is]===t)},gs=Pe,ms=Uo,ws=function(t,e){var n=arguments.length<2?ds(t):e;if("function"!=typeof n)throw TypeError(String(t)+" is not iterable");return fs(n.call(t))},bs=ss,xs=ft("iterator"),Ss=!1;try{var Es=0,Os={next:function(){return{done:!!Es++}},return:function(){Ss=!0}};Os[xs]=function(){return this},Array.from(Os,(function(){throw 2}))}catch(t){}var As=function(t){var e,n,r,o,i,a,u=hs(t),c="function"==typeof this?this:Array,l=arguments.length,s=l>1?arguments[1]:void 0,f=void 0!==s,d=bs(u),p=0;if(f&&(s=ps(s,l>2?arguments[2]:void 0,2)),null==d||c==Array&&ys(d))for(n=new c(e=gs(u.length));e>p;p++)a=f?s(u[p],p):u[p],ms(n,p,a);else for(i=(o=ws(u,d)).next,n=new c;!(r=i.call(o)).done;p++)a=f?vs(o,s,[r.value,p],!0):r.value,ms(n,p,a);return n.length=p,n},ks=function(t,e){if(!e&&!Ss)return!1;var n=!1;try{var r={};r[xs]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n};En({target:"Array",stat:!0,forced:!ks((function(t){Array.from(t)}))},{from:As});var js=En,Ts=Cl,Is=yl,Ls=Xi,Cs=cr,_s=Yt,Ps=zt.exports,Rs=Ol,Ms=El.IteratorPrototype,Ns=El.BUGGY_SAFARI_ITERATORS,Ds=ft("iterator"),Fs=function(){return this},$s=Mi.charAt,Gs=jn,Ks=me,Us=function(t,e,n,r,o,i,a){Ts(n,e,r);var u,c,l,s=function(t){if(t===o&&v)return v;if(!Ns&&t in p)return p[t];switch(t){case"keys":case"values":case"entries":return function(){return new n(this,t)}}return function(){return new n(this)}},f=e+" Iterator",d=!1,p=t.prototype,h=p[Ds]||p["@@iterator"]||o&&p[o],v=!Ns&&h||s(o),y="Array"==e&&p.entries||h;if(y&&(u=Is(y.call(new t)))!==Object.prototype&&u.next&&(Is(u)!==Ms&&(Ls?Ls(u,Ms):"function"!=typeof u[Ds]&&_s(u,Ds,Fs)),Cs(u,f,!0)),"values"==o&&h&&"values"!==h.name&&(d=!0,v=function(){return h.call(this)}),p[Ds]!==v&&_s(p,Ds,v),Rs[e]=v,o)if(c={values:s("values"),keys:i?v:s("keys"),entries:s("entries")},a)for(l in c)(Ns||d||!(l in p))&&Ps(p,l,c[l]);else js({target:e,proto:!0,forced:Ns||d},c);return c},Ys=Ks.set,zs=Ks.getterFor("String Iterator");Us(String,"String",(function(t){Ys(this,{type:"String Iterator",string:Gs(t),index:0})}),(function(){var t,e=zs(this),n=e.string,r=e.index;return r>=n.length?{value:void 0,done:!0}:(t=$s(n,r),e.index+=t.length,{value:t,done:!1})}));var Hs=En,Ws=a,Bs=An,Vs=O,qs=q,Xs=Pe,Js=Uo,Qs=yr,Zs=vu,tf=R,ef=ft("isConcatSpreadable"),nf=tf>=51||!Ws((function(){var t=[];return t[ef]=!1,t.concat()[0]!==t})),rf=Zs("concat"),of=function(t){if(!Vs(t))return!1;var e=t[ef];return void 0!==e?!!e:Bs(t)};Hs({target:"Array",proto:!0,forced:!nf||!rf},{concat:function(t){var e,n,r,o,i,a=qs(this),u=Qs(a,0),c=0;for(e=-1,r=arguments.length;e<r;e++)if(of(i=-1===e?a:arguments[e])){if(c+(o=Xs(i.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n<o;n++,c++)n in i&&Js(u,c,i[n])}else{if(c>=9007199254740991)throw TypeError("Maximum allowed index exceeded");Js(u,c++,i)}return u.length=c,u}});var af=b,uf=jn,cf="[\t\n\v\f\r                 \u2028\u2029\ufeff]",lf=RegExp("^"+cf+cf+"*"),sf=RegExp(cf+cf+"*$"),ff=function(t){return function(e){var n=uf(af(e));return 1&t&&(n=n.replace(lf,"")),2&t&&(n=n.replace(sf,"")),n}},df={start:ff(1),end:ff(2),trim:ff(3)},pf=a,hf="\t\n\v\f\r                 \u2028\u2029\ufeff",vf=df.trim;En({target:"String",proto:!0,forced:function(t){return pf((function(){return!!hf[t]()||"​…᠎"!="​…᠎"[t]()||hf[t].name!==t}))}("trim")},{trim:function(){return vf(this)}});var yf={exports:{}};!function(t,e){function n(t){if(t&&"object"==typeof t){var e=t.which||t.keyCode||t.charCode;e&&(t=e)}if("number"==typeof t)return a[t];var n,i=String(t);return(n=r[i.toLowerCase()])?n:(n=o[i.toLowerCase()])||(1===i.length?i.charCodeAt(0):void 0)}n.isEventKey=function(t,e){if(t&&"object"==typeof t){var n=t.which||t.keyCode||t.charCode;if(null==n)return!1;if("string"==typeof e){var i;if(i=r[e.toLowerCase()])return i===n;if(i=o[e.toLowerCase()])return i===n}else if("number"==typeof e)return e===n;return!1}};var r=(e=t.exports=n).code=e.codes={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,"pause/break":19,"caps lock":20,esc:27,space:32,"page up":33,"page down":34,end:35,home:36,left:37,up:38,right:39,down:40,insert:45,delete:46,command:91,"left command":91,"right command":93,"numpad *":106,"numpad +":107,"numpad -":109,"numpad .":110,"numpad /":111,"num lock":144,"scroll lock":145,"my computer":182,"my calculator":183,";":186,"=":187,",":188,"-":189,".":190,"/":191,"`":192,"[":219,"\\":220,"]":221,"'":222},o=e.aliases={windows:91,"⇧":16,"⌥":18,"⌃":17,"⌘":91,ctl:17,control:17,option:18,pause:19,break:19,caps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91};
2
2
  /*!
3
3
  * Programatically add the following
4
4
  */
5
- for(i=97;i<123;i++)r[String.fromCharCode(i)]=i-32;for(var i=48;i<58;i++)r[i-48]=i;for(i=1;i<13;i++)r["f"+i]=i+111;for(i=0;i<10;i++)r["numpad "+i]=i+96;var a=e.names=e.title={};for(i in r)a[r[i]]=i;for(var u in o)r[u]=o[u]}(zs,zs.exports);var Hs,Ws=zs.exports,Bs={exports:{}};Hs=function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}return n.m=t,n.c=e,n.p="",n(0)}([function(t,e){t.exports=function(){if("undefined"==typeof document||"undefined"==typeof window)return{ask:function(){return"initial"},element:function(){return null},ignoreKeys:function(){},specificKeys:function(){},registerOnChange:function(){},unRegisterOnChange:function(){}};var t=document.documentElement,e=null,n="initial",r=n,o=Date.now(),i="false",a=["button","input","select","textarea"],u=[],c=[16,17,18,91,93],l=[],s={keydown:"keyboard",keyup:"keyboard",mousedown:"mouse",mousemove:"mouse",MSPointerDown:"pointer",MSPointerMove:"pointer",pointerdown:"pointer",pointermove:"pointer",touchstart:"touch",touchend:"touch"},f=!1,d={x:null,y:null},p={2:"touch",3:"touch",4:"mouse"},h=!1;try{var v=Object.defineProperty({},"passive",{get:function(){h=!0}});window.addEventListener("test",null,v)}catch(t){}var y=function(){var t=!!h&&{passive:!0};document.addEventListener("DOMContentLoaded",g),window.PointerEvent?(window.addEventListener("pointerdown",m),window.addEventListener("pointermove",b)):window.MSPointerEvent?(window.addEventListener("MSPointerDown",m),window.addEventListener("MSPointerMove",b)):(window.addEventListener("mousedown",m),window.addEventListener("mousemove",b),"ontouchstart"in window&&(window.addEventListener("touchstart",m,t),window.addEventListener("touchend",m))),window.addEventListener(A(),b,t),window.addEventListener("keydown",m),window.addEventListener("keyup",m),window.addEventListener("focusin",x),window.addEventListener("focusout",S)},g=function(){if(i=!(t.getAttribute("data-whatpersist")||"false"===document.body.getAttribute("data-whatpersist")))try{window.sessionStorage.getItem("what-input")&&(n=window.sessionStorage.getItem("what-input")),window.sessionStorage.getItem("what-intent")&&(r=window.sessionStorage.getItem("what-intent"))}catch(t){}w("input"),w("intent")},m=function(t){var e=t.which,o=s[t.type];"pointer"===o&&(o=O(t));var i=!l.length&&-1===c.indexOf(e),u=l.length&&-1!==l.indexOf(e),f="keyboard"===o&&e&&(i||u)||"mouse"===o||"touch"===o;if(k(o)&&(f=!1),f&&n!==o&&(E("input",n=o),w("input")),f&&r!==o){var d=document.activeElement;d&&d.nodeName&&(-1===a.indexOf(d.nodeName.toLowerCase())||"button"===d.nodeName.toLowerCase()&&!L(d,"form"))&&(E("intent",r=o),w("intent"))}},w=function(e){t.setAttribute("data-what"+e,"input"===e?n:r),j(e)},b=function(t){var e=s[t.type];"pointer"===e&&(e=O(t)),T(t),(!f&&!k(e)||f&&"wheel"===t.type||"mousewheel"===t.type||"DOMMouseScroll"===t.type)&&r!==e&&(E("intent",r=e),w("intent"))},x=function(n){n.target.nodeName?(e=n.target.nodeName.toLowerCase(),t.setAttribute("data-whatelement",e),n.target.classList&&n.target.classList.length&&t.setAttribute("data-whatclasses",n.target.classList.toString().replace(" ",","))):S()},S=function(){e=null,t.removeAttribute("data-whatelement"),t.removeAttribute("data-whatclasses")},E=function(t,e){if(i)try{window.sessionStorage.setItem("what-"+t,e)}catch(t){}},O=function(t){return"number"==typeof t.pointerType?p[t.pointerType]:"pen"===t.pointerType?"touch":t.pointerType},k=function(t){var e=Date.now(),r="mouse"===t&&"touch"===n&&e-o<200;return o=e,r},A=function(){return"onwheel"in document.createElement("div")?"wheel":void 0!==document.onmousewheel?"mousewheel":"DOMMouseScroll"},j=function(t){for(var e=0,o=u.length;e<o;e++)u[e].type===t&&u[e].fn.call(void 0,"input"===t?n:r)},T=function(t){d.x!==t.screenX||d.y!==t.screenY?(f=!1,d.x=t.screenX,d.y=t.screenY):f=!0},L=function(t,e){var n=window.Element.prototype;if(n.matches||(n.matches=n.msMatchesSelector||n.webkitMatchesSelector),n.closest)return t.closest(e);do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null};return"addEventListener"in window&&Array.prototype.indexOf&&(s[A()]="mouse",y()),{ask:function(t){return"intent"===t?r:n},element:function(){return e},ignoreKeys:function(t){c=t},specificKeys:function(t){l=t},registerOnChange:function(t,e){u.push({fn:t,type:e||"input"})},unRegisterOnChange:function(t){var e=function(t){for(var e=0,n=u.length;e<n;e++)if(u[e].fn===t)return e}(t);(e||0===e)&&u.splice(e,1)},clearStorage:function(){window.sessionStorage.clear()}}}()}])},Bs.exports=Hs();function Vs(){if("undefined"!=typeof document){var t=!1;try{t=document.documentElement.getAttribute("data-whatintent")}catch(t){}return"touch"===t}return!1}function qs(){var t=function t(){if("undefined"!=typeof document&&"undefined"!=typeof window&&"undefined"!=typeof navigator){try{"undefined"!=typeof window&&window.IS_TEST?document.documentElement.setAttribute("data-os","other"):null!==navigator.platform.match(new RegExp("Mac|iPad|iPhone|iPod"))?document.documentElement.setAttribute("data-os","mac"):null!==navigator.platform.match(new RegExp("Win"))?document.documentElement.setAttribute("data-os","win"):null!==navigator.platform.match(new RegExp("Linux"))&&document.documentElement.setAttribute("data-os","linux")}catch(t){Qs(t)}document.removeEventListener("DOMContentLoaded",t)}};"undefined"!=typeof document&&"loading"===document.readyState?document.addEventListener("DOMContentLoaded",t):t()}Bs.exports.specificKeys([9]),qs(),function(){function t(e,n){var r=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};Bo(this,t),Xo(this,"checkOutsideClick",(function(t){var e=t.event,n=t.ignoreElements,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;try{var o=e.target;if("HTML"===(null==o?void 0:o.tagName)&&(e.pageX>document.documentElement.clientWidth-40||e.pageY>document.documentElement.clientHeight-40))return;if(Xs(o))return;for(var i,a=0,u=n.length;a<u;++a)if(i=o,n[a])do{if(i===n[a])return;i=i&&i.parentNode}while(i);"function"==typeof r&&r()}catch(t){Qs(t)}})),this.handleClickOutside||"undefined"==typeof document||"undefined"==typeof window||(Array.isArray(e)||(e=[e]),this.handleClickOutside=function(t){r.checkOutsideClick({event:t,ignoreElements:e},(function(){return"function"==typeof n&&n({event:t})}))},document.addEventListener("mousedown",this.handleClickOutside),this.keydownCallback=function(t){"esc"===Ws(t)&&(window.removeEventListener("keydown",r.keydownCallback),"function"==typeof n&&n({event:t}))},window.addEventListener("keydown",this.keydownCallback),o.includedKeys&&(this.keyupCallback=function(t){var e=Ws(t);o.includedKeys.includes(e)&&"function"==typeof r.handleClickOutside&&r.handleClickOutside(t,(function(){r.keyupCallback&&window.removeEventListener("keyup",r.keyupCallback)}))},window.addEventListener("keyup",this.keyupCallback)))}qo(t,[{key:"remove",value:function(){this.handleClickOutside&&"undefined"!=typeof document&&(document.removeEventListener("mousedown",this.handleClickOutside),this.handleClickOutside=null),this.keydownCallback&&"undefined"!=typeof window&&(window.removeEventListener("keydown",this.keydownCallback),this.keydownCallback=null),this.keyupCallback&&"undefined"!=typeof window&&(window.removeEventListener("keyup",this.keyupCallback),this.keyupCallback=null)}}])}();var Xs=function(t){return t&&(t.scrollHeight>t.offsetHeight||t.scrollWidth>t.offsetWidth)&&Js(t)},Js=function(t){var e="undefined"!=typeof window?window.getComputedStyle(t):{};return/scroll|auto/i.test((e.overflow||"")+(e.overflowX||"")+(e.overflowY||""))},Qs=function(){};!function(){function t(){return Bo(this,t),this.bypassElement=null,this.bypassSelectors=[],this}qo(t,[{key:"setBypassElement",value:function(t){return t instanceof HTMLElement&&(this.bypassElement=t),this}},{key:"setBypassSelector",value:function(t){return Array.isArray(t)||(t=[t]),this.bypassSelectors=t,this}},{key:"activate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;this.nodesToInvalidate||this._runInvalidaiton(t)}},{key:"revert",value:function(){this._revertInvalidation(),this.nodesToInvalidate=null}},{key:"_runInvalidaiton",value:function(t){"undefined"!=typeof document&&(this.nodesToInvalidate=this.getNodesToInvalidate(t),Array.isArray(this.nodesToInvalidate)&&this.nodesToInvalidate.forEach((function(t){try{t&&void 0===t._orig_tabindex&&t.hasAttribute("tabindex")&&(t._orig_tabindex=t.getAttribute("tabindex")),t&&void 0===t._orig_ariahidden&&t.hasAttribute("aria-hidden")&&(t._orig_ariahidden=t.getAttribute("aria-hidden")),t.setAttribute("tabindex","-1"),t.setAttribute("aria-hidden","true")}catch(t){}})))}},{key:"_revertInvalidation",value:function(){this.nodesToInvalidate&&this.nodesToInvalidate.forEach((function(t){try{t&&void 0!==t._orig_tabindex?(t.setAttribute("tabindex",t._orig_tabindex),t._orig_tabindex=null,delete t._orig_tabindex):t.removeAttribute("tabindex"),t&&void 0!==t._orig_ariahidden?(t.setAttribute("aria-hidden",t._orig_ariahidden),t._orig_ariahidden=null,delete t._orig_ariahidden):t.removeAttribute("aria-hidden")}catch(t){}}))}},{key:"getNodesToInvalidate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if("undefined"!=typeof document){"string"==typeof t&&(t=document.querySelector(t));var e=this.bypassSelectors&&this.bypassSelectors.length>0?Array.from((this.bypassElement||document).querySelectorAll(this.bypassSelectors?this.bypassSelectors.map((function(t){return"".concat(t," *")})).join(", "):"*")):[],n=t?"*":"html *",r=this.bypassSelectors.map((function(t){return":not(".concat(t,")")})).join(""),o="".concat(n," ").concat(r,":not(script):not(style):not(path)");return Array.from((t||document.documentElement).querySelectorAll(o)).filter((function(t){return!e.includes(t)}))}}}])}();export{qs as defineNavigator,Vs as isTouchDevice};
5
+ for(i=97;i<123;i++)r[String.fromCharCode(i)]=i-32;for(var i=48;i<58;i++)r[i-48]=i;for(i=1;i<13;i++)r["f"+i]=i+111;for(i=0;i<10;i++)r["numpad "+i]=i+96;var a=e.names=e.title={};for(i in r)a[r[i]]=i;for(var u in o)r[u]=o[u]}(yf,yf.exports);var gf,mf=yf.exports,wf={exports:{}};gf=function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}return n.m=t,n.c=e,n.p="",n(0)}([function(t,e){t.exports=function(){if("undefined"==typeof document||"undefined"==typeof window)return{ask:function(){return"initial"},element:function(){return null},ignoreKeys:function(){},specificKeys:function(){},registerOnChange:function(){},unRegisterOnChange:function(){}};var t=document.documentElement,e=null,n="initial",r=n,o=Date.now(),i="false",a=["button","input","select","textarea"],u=[],c=[16,17,18,91,93],l=[],s={keydown:"keyboard",keyup:"keyboard",mousedown:"mouse",mousemove:"mouse",MSPointerDown:"pointer",MSPointerMove:"pointer",pointerdown:"pointer",pointermove:"pointer",touchstart:"touch",touchend:"touch"},f=!1,d={x:null,y:null},p={2:"touch",3:"touch",4:"mouse"},h=!1;try{var v=Object.defineProperty({},"passive",{get:function(){h=!0}});window.addEventListener("test",null,v)}catch(t){}var y=function(){var t=!!h&&{passive:!0};document.addEventListener("DOMContentLoaded",g),window.PointerEvent?(window.addEventListener("pointerdown",m),window.addEventListener("pointermove",b)):window.MSPointerEvent?(window.addEventListener("MSPointerDown",m),window.addEventListener("MSPointerMove",b)):(window.addEventListener("mousedown",m),window.addEventListener("mousemove",b),"ontouchstart"in window&&(window.addEventListener("touchstart",m,t),window.addEventListener("touchend",m))),window.addEventListener(k(),b,t),window.addEventListener("keydown",m),window.addEventListener("keyup",m),window.addEventListener("focusin",x),window.addEventListener("focusout",S)},g=function(){if(i=!(t.getAttribute("data-whatpersist")||"false"===document.body.getAttribute("data-whatpersist")))try{window.sessionStorage.getItem("what-input")&&(n=window.sessionStorage.getItem("what-input")),window.sessionStorage.getItem("what-intent")&&(r=window.sessionStorage.getItem("what-intent"))}catch(t){}w("input"),w("intent")},m=function(t){var e=t.which,o=s[t.type];"pointer"===o&&(o=O(t));var i=!l.length&&-1===c.indexOf(e),u=l.length&&-1!==l.indexOf(e),f="keyboard"===o&&e&&(i||u)||"mouse"===o||"touch"===o;if(A(o)&&(f=!1),f&&n!==o&&(E("input",n=o),w("input")),f&&r!==o){var d=document.activeElement;d&&d.nodeName&&(-1===a.indexOf(d.nodeName.toLowerCase())||"button"===d.nodeName.toLowerCase()&&!I(d,"form"))&&(E("intent",r=o),w("intent"))}},w=function(e){t.setAttribute("data-what"+e,"input"===e?n:r),j(e)},b=function(t){var e=s[t.type];"pointer"===e&&(e=O(t)),T(t),(!f&&!A(e)||f&&"wheel"===t.type||"mousewheel"===t.type||"DOMMouseScroll"===t.type)&&r!==e&&(E("intent",r=e),w("intent"))},x=function(n){n.target.nodeName?(e=n.target.nodeName.toLowerCase(),t.setAttribute("data-whatelement",e),n.target.classList&&n.target.classList.length&&t.setAttribute("data-whatclasses",n.target.classList.toString().replace(" ",","))):S()},S=function(){e=null,t.removeAttribute("data-whatelement"),t.removeAttribute("data-whatclasses")},E=function(t,e){if(i)try{window.sessionStorage.setItem("what-"+t,e)}catch(t){}},O=function(t){return"number"==typeof t.pointerType?p[t.pointerType]:"pen"===t.pointerType?"touch":t.pointerType},A=function(t){var e=Date.now(),r="mouse"===t&&"touch"===n&&e-o<200;return o=e,r},k=function(){return"onwheel"in document.createElement("div")?"wheel":void 0!==document.onmousewheel?"mousewheel":"DOMMouseScroll"},j=function(t){for(var e=0,o=u.length;e<o;e++)u[e].type===t&&u[e].fn.call(void 0,"input"===t?n:r)},T=function(t){d.x!==t.screenX||d.y!==t.screenY?(f=!1,d.x=t.screenX,d.y=t.screenY):f=!0},I=function(t,e){var n=window.Element.prototype;if(n.matches||(n.matches=n.msMatchesSelector||n.webkitMatchesSelector),n.closest)return t.closest(e);do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null};return"addEventListener"in window&&Array.prototype.indexOf&&(s[k()]="mouse",y()),{ask:function(t){return"intent"===t?r:n},element:function(){return e},ignoreKeys:function(t){c=t},specificKeys:function(t){l=t},registerOnChange:function(t,e){u.push({fn:t,type:e||"input"})},unRegisterOnChange:function(t){var e=function(t){for(var e=0,n=u.length;e<n;e++)if(u[e].fn===t)return e}(t);(e||0===e)&&u.splice(e,1)},clearStorage:function(){window.sessionStorage.clear()}}}()}])},wf.exports=gf();function bf(){if("undefined"!=typeof document){var t=!1;try{t=document.documentElement.getAttribute("data-whatintent")}catch(t){}return"touch"===t}return!1}function xf(){var t=function t(){if("undefined"!=typeof document&&"undefined"!=typeof window&&"undefined"!=typeof navigator){try{"undefined"!=typeof window&&window.IS_TEST?document.documentElement.setAttribute("data-os","other"):null!==navigator.platform.match(new RegExp("Mac|iPad|iPhone|iPod"))?document.documentElement.setAttribute("data-os","mac"):null!==navigator.platform.match(new RegExp("Win"))?document.documentElement.setAttribute("data-os","win"):null!==navigator.platform.match(new RegExp("Linux"))&&document.documentElement.setAttribute("data-os","linux")}catch(t){Of(t)}document.removeEventListener("DOMContentLoaded",t)}};"undefined"!=typeof document&&"loading"===document.readyState?document.addEventListener("DOMContentLoaded",t):t()}wf.exports.specificKeys([9]),xf(),function(){function t(e,n){var r=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};Bo(this,t),Xo(this,"checkOutsideClick",(function(t){var e=t.event,n=t.ignoreElements,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;try{var o=e.target;if("HTML"===(null==o?void 0:o.tagName)&&(e.pageX>document.documentElement.clientWidth-40||e.pageY>document.documentElement.clientHeight-40))return;if(Sf(o))return;for(var i,a=0,u=n.length;a<u;++a)if(i=o,n[a])do{if(i===n[a])return;i=i&&i.parentNode}while(i);"function"==typeof r&&r()}catch(t){Of(t)}})),this.handleClickOutside||"undefined"==typeof document||"undefined"==typeof window||(Array.isArray(e)||(e=[e]),this.handleClickOutside=function(t){r.checkOutsideClick({event:t,ignoreElements:e},(function(){return"function"==typeof n&&n({event:t})}))},document.addEventListener("mousedown",this.handleClickOutside),this.keydownCallback=function(t){"esc"===mf(t)&&(window.removeEventListener("keydown",r.keydownCallback),"function"==typeof n&&n({event:t}))},window.addEventListener("keydown",this.keydownCallback),o.includedKeys&&(this.keyupCallback=function(t){var e=mf(t);o.includedKeys.includes(e)&&"function"==typeof r.handleClickOutside&&r.handleClickOutside(t,(function(){r.keyupCallback&&window.removeEventListener("keyup",r.keyupCallback)}))},window.addEventListener("keyup",this.keyupCallback)))}qo(t,[{key:"remove",value:function(){this.handleClickOutside&&"undefined"!=typeof document&&(document.removeEventListener("mousedown",this.handleClickOutside),this.handleClickOutside=null),this.keydownCallback&&"undefined"!=typeof window&&(window.removeEventListener("keydown",this.keydownCallback),this.keydownCallback=null),this.keyupCallback&&"undefined"!=typeof window&&(window.removeEventListener("keyup",this.keyupCallback),this.keyupCallback=null)}}])}();var Sf=function(t){return t&&(t.scrollHeight>t.offsetHeight||t.scrollWidth>t.offsetWidth)&&Ef(t)},Ef=function(t){var e="undefined"!=typeof window?window.getComputedStyle(t):{};return/scroll|auto/i.test((e.overflow||"")+(e.overflowX||"")+(e.overflowY||""))},Of=function(){};!function(){function t(){return Bo(this,t),this.bypassElement=null,this.bypassSelectors=[],this}qo(t,[{key:"setBypassElement",value:function(t){return t instanceof HTMLElement&&(this.bypassElement=t),this}},{key:"setBypassSelector",value:function(t){return Array.isArray(t)||(t=[t]),this.bypassSelectors=t,this}},{key:"activate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;this.nodesToInvalidate||this._runInvalidaiton(t)}},{key:"revert",value:function(){this._revertInvalidation(),this.nodesToInvalidate=null}},{key:"_runInvalidaiton",value:function(t){"undefined"!=typeof document&&(this.nodesToInvalidate=this.getNodesToInvalidate(t),Array.isArray(this.nodesToInvalidate)&&this.nodesToInvalidate.forEach((function(t){try{t&&void 0===t._orig_tabindex&&t.hasAttribute("tabindex")&&(t._orig_tabindex=t.getAttribute("tabindex")),t&&void 0===t._orig_ariahidden&&t.hasAttribute("aria-hidden")&&(t._orig_ariahidden=t.getAttribute("aria-hidden")),t.setAttribute("tabindex","-1"),t.setAttribute("aria-hidden","true")}catch(t){}})))}},{key:"_revertInvalidation",value:function(){this.nodesToInvalidate&&this.nodesToInvalidate.forEach((function(t){try{t&&void 0!==t._orig_tabindex?(t.setAttribute("tabindex",t._orig_tabindex),t._orig_tabindex=null,delete t._orig_tabindex):t.removeAttribute("tabindex"),t&&void 0!==t._orig_ariahidden?(t.setAttribute("aria-hidden",t._orig_ariahidden),t._orig_ariahidden=null,delete t._orig_ariahidden):t.removeAttribute("aria-hidden")}catch(t){}}))}},{key:"getNodesToInvalidate",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if("undefined"!=typeof document){"string"==typeof t&&(t=document.querySelector(t));var e=this.bypassSelectors&&this.bypassSelectors.length>0?Array.from((this.bypassElement||document).querySelectorAll(this.bypassSelectors?this.bypassSelectors.map((function(t){return"".concat(t," *")})).join(", "):"*")):[],n=t?"*":"html *",r=this.bypassSelectors.map((function(t){return":not(".concat(t,")")})).join(""),o="".concat(n," ").concat(r,":not(script):not(style):not(path)");return Array.from((t||document.documentElement).querySelectorAll(o)).filter((function(t){return!e.includes(t)}))}}}])}();export{xf as defineNavigator,bf as isTouchDevice};