homebridge-config-ui-x 5.11.1 → 5.11.2-alpha.1

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 (245) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/core/auth/auth.controller.d.ts +4 -0
  3. package/dist/core/config/config.interfaces.d.ts +14 -0
  4. package/dist/core/config/config.service.d.ts +6 -0
  5. package/dist/core/config/config.service.js +8 -0
  6. package/dist/core/config/config.service.js.map +1 -1
  7. package/dist/core/config/config.startup.js +48 -17
  8. package/dist/core/config/config.startup.js.map +1 -1
  9. package/dist/core/feature-flags/feature-flags.registry.js +5 -0
  10. package/dist/core/feature-flags/feature-flags.registry.js.map +1 -1
  11. package/dist/core/homebridge-ipc/homebridge-ipc.service.js +1 -0
  12. package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
  13. package/dist/core/spa/spa-html.service.d.ts +5 -0
  14. package/dist/core/spa/spa-html.service.js +32 -0
  15. package/dist/core/spa/spa-html.service.js.map +1 -0
  16. package/dist/core/spa/spa.filter.d.ts +3 -0
  17. package/dist/core/spa/spa.filter.js +22 -2
  18. package/dist/core/spa/spa.filter.js.map +1 -1
  19. package/dist/core/ssl/ssl-cert-generator.service.d.ts +15 -0
  20. package/dist/core/ssl/ssl-cert-generator.service.js +125 -0
  21. package/dist/core/ssl/ssl-cert-generator.service.js.map +1 -0
  22. package/dist/globalDefaults.js +3 -0
  23. package/dist/globalDefaults.js.map +1 -1
  24. package/dist/main.js +18 -4
  25. package/dist/main.js.map +1 -1
  26. package/dist/modules/accessories/accessories.controller.d.ts +1 -1
  27. package/dist/modules/accessories/accessories.interfaces.d.ts +94 -0
  28. package/dist/modules/accessories/accessories.interfaces.js +2 -0
  29. package/dist/modules/accessories/accessories.interfaces.js.map +1 -0
  30. package/dist/modules/accessories/accessories.module.js +2 -0
  31. package/dist/modules/accessories/accessories.module.js.map +1 -1
  32. package/dist/modules/accessories/accessories.service.d.ts +21 -3
  33. package/dist/modules/accessories/accessories.service.js +280 -17
  34. package/dist/modules/accessories/accessories.service.js.map +1 -1
  35. package/dist/modules/child-bridges/child-bridges.interfaces.d.ts +9 -0
  36. package/dist/modules/config-editor/config-editor.controller.d.ts +4 -0
  37. package/dist/modules/config-editor/config-editor.controller.js +64 -0
  38. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  39. package/dist/modules/config-editor/config-editor.service.d.ts +6 -1
  40. package/dist/modules/config-editor/config-editor.service.js +45 -1
  41. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  42. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +1 -1
  43. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  44. package/dist/modules/plugins/plugins.service.js +15 -0
  45. package/dist/modules/plugins/plugins.service.js.map +1 -1
  46. package/dist/modules/server/server.controller.d.ts +50 -0
  47. package/dist/modules/server/server.controller.js +201 -2
  48. package/dist/modules/server/server.controller.js.map +1 -1
  49. package/dist/modules/server/server.service.d.ts +48 -0
  50. package/dist/modules/server/server.service.js +502 -14
  51. package/dist/modules/server/server.service.js.map +1 -1
  52. package/dist/modules/status/status.gateway.d.ts +2 -0
  53. package/dist/modules/status/status.interfaces.d.ts +11 -0
  54. package/dist/modules/status/status.service.d.ts +4 -1
  55. package/dist/modules/status/status.service.js +21 -2
  56. package/dist/modules/status/status.service.js.map +1 -1
  57. package/docs/matter-todo.md +15 -0
  58. package/docs/ssl-upload-pr.md +103 -0
  59. package/package.json +3 -1
  60. package/public/3rdpartylicenses.txt +558 -636
  61. package/public/assets/matter.svg +8 -0
  62. package/public/assets/plugin-ui-utils/ui.js +3 -0
  63. package/public/assets/plugin-ui-utils/ui.js.map +1 -1
  64. package/public/chunk-2AZ4IAJX.js +1 -0
  65. package/public/chunk-2W47TKRP.js +8 -0
  66. package/public/chunk-32NSGOWJ.js +1 -0
  67. package/public/chunk-3AXKQX7N.js +1 -0
  68. package/public/chunk-3ND4FTJL.js +1 -0
  69. package/public/chunk-3SLVSNU6.js +1 -0
  70. package/public/chunk-4FBWT2PG.js +1 -0
  71. package/public/chunk-4HRXISNZ.js +1 -0
  72. package/public/chunk-4KYVPUTG.js +1 -0
  73. package/public/chunk-56AT4EBV.js +1 -0
  74. package/public/chunk-5INR7MRZ.js +1 -0
  75. package/public/chunk-5IRYX3WN.js +1 -0
  76. package/public/chunk-5N6BZ66K.js +1 -0
  77. package/public/chunk-5USVC2CC.js +3 -0
  78. package/public/chunk-6G6325AZ.js +1 -0
  79. package/public/chunk-6IPZ57S4.js +1 -0
  80. package/public/chunk-74KAKFTX.js +1 -0
  81. package/public/chunk-77KQMZKD.js +1 -0
  82. package/public/chunk-7IMDRRHF.js +50 -0
  83. package/public/chunk-7MHPXFPT.js +1 -0
  84. package/public/chunk-A2VBYQGU.js +1 -0
  85. package/public/chunk-AASDOQGB.js +1 -0
  86. package/public/chunk-AM2AGROH.js +68 -0
  87. package/public/chunk-AU6YJ4VB.js +1 -0
  88. package/public/chunk-B2R3BKIF.js +1 -0
  89. package/public/chunk-B4AJQJMI.js +1 -0
  90. package/public/chunk-BCAWAC5S.js +19 -0
  91. package/public/chunk-BMH5GPEB.js +1 -0
  92. package/public/{chunk-KI6BE77G.js → chunk-BMOLDRJ3.js} +1 -1
  93. package/public/chunk-BOVXKVZC.js +1 -0
  94. package/public/chunk-BRUFPV4S.js +1 -0
  95. package/public/chunk-C2W3HONU.js +1 -0
  96. package/public/chunk-CAB2VD3D.js +1 -0
  97. package/public/chunk-CB6OGKHG.js +1 -0
  98. package/public/chunk-CBSLCVSR.js +1 -0
  99. package/public/chunk-CQHE4TU3.js +1 -0
  100. package/public/chunk-CYSSAU76.js +1 -0
  101. package/public/chunk-CZBBUBTH.js +1 -0
  102. package/public/chunk-E2INCMIB.js +1 -0
  103. package/public/chunk-F344NE7H.js +2 -0
  104. package/public/{chunk-75KR2TK6.js → chunk-FARCNAHH.js} +1 -1
  105. package/public/chunk-FDD3SM5M.js +1 -0
  106. package/public/chunk-FJCRSYAB.js +1 -0
  107. package/public/{chunk-BKCIVF4W.js → chunk-FL4D5IR7.js} +52 -2
  108. package/public/chunk-FNIVJEH2.js +1 -0
  109. package/public/chunk-FOAHTHQO.js +1 -0
  110. package/public/chunk-FW2NZE2W.js +1 -0
  111. package/public/chunk-GAI5J4YQ.js +5 -0
  112. package/public/chunk-GHNACZX3.js +1 -0
  113. package/public/chunk-GIPFJVAC.js +1 -0
  114. package/public/chunk-GQMGUEFI.js +1 -0
  115. package/public/chunk-GRUJENQH.js +1 -0
  116. package/public/chunk-GV5JF2YJ.js +16 -0
  117. package/public/chunk-GWQFQK2F.js +2 -0
  118. package/public/{chunk-OMFNURQZ.js → chunk-H7F7H5MW.js} +1 -1
  119. package/public/chunk-HRBBCSGX.js +1 -0
  120. package/public/chunk-I7UZENUE.js +1 -0
  121. package/public/chunk-IIAESTI5.js +1 -0
  122. package/public/chunk-IUXXJEPG.js +1 -0
  123. package/public/chunk-JEWURKW3.js +1 -0
  124. package/public/chunk-JH5W4II7.js +1 -0
  125. package/public/chunk-JLNKCN3A.js +1 -0
  126. package/public/chunk-JTGLNZVD.js +1 -0
  127. package/public/chunk-KSP343GE.js +1 -0
  128. package/public/chunk-KTE7SASZ.js +1 -0
  129. package/public/chunk-KTLG6VZT.js +1 -0
  130. package/public/chunk-L2BEQFIA.js +1 -0
  131. package/public/chunk-L6LSM43U.js +1 -0
  132. package/public/chunk-MKCBNPFH.js +1 -0
  133. package/public/chunk-MKFXR7SP.js +1 -0
  134. package/public/chunk-MW6H5Z5G.js +2 -0
  135. package/public/chunk-MYJVEYXW.js +1 -0
  136. package/public/chunk-NDBIOJ3K.js +1 -0
  137. package/public/chunk-NMM246IB.js +1 -0
  138. package/public/chunk-NPWYNB2M.js +1 -0
  139. package/public/chunk-O6MJC7P2.js +1 -0
  140. package/public/chunk-OB3JM574.js +1 -0
  141. package/public/chunk-OKQK5WGA.js +1 -0
  142. package/public/{chunk-RKUILXRL.js → chunk-OWEBBEZA.js} +1 -1
  143. package/public/chunk-OYHGZQRR.js +1 -0
  144. package/public/chunk-QB4JVFF7.js +1 -0
  145. package/public/chunk-QIW6VVBV.js +1 -0
  146. package/public/chunk-QPYSLZDC.js +5 -0
  147. package/public/chunk-QRWK7JO5.js +1 -0
  148. package/public/chunk-R24RQS2V.js +3 -0
  149. package/public/chunk-R3PJ6UT3.js +4 -0
  150. package/public/chunk-RRYSODYJ.js +1 -0
  151. package/public/chunk-SIIM6WZ6.js +12 -0
  152. package/public/chunk-TCWZ7ASJ.js +1 -0
  153. package/public/chunk-TNQQAZ6Z.js +1 -0
  154. package/public/chunk-TWVOLPMB.js +1 -0
  155. package/public/chunk-TXOHSX6R.js +1 -0
  156. package/public/chunk-UR2DRSIX.js +1 -0
  157. package/public/chunk-UTCW7GEG.js +1 -0
  158. package/public/chunk-UXXY7XNH.js +1 -0
  159. package/public/chunk-VHK6V2IY.js +1 -0
  160. package/public/chunk-VNSIIEIM.js +1 -0
  161. package/public/chunk-VQBGFNDB.js +1 -0
  162. package/public/chunk-VTSSBPGB.js +4 -0
  163. package/public/chunk-VVINUJOQ.js +1 -0
  164. package/public/chunk-W2OS6MJH.js +1 -0
  165. package/public/chunk-W546I2QX.js +1 -0
  166. package/public/chunk-X6NYM4NC.js +1 -0
  167. package/public/chunk-XEOYEVJE.js +1 -0
  168. package/public/chunk-XM3BXRQJ.js +1 -0
  169. package/public/chunk-YI2ZMXIQ.js +1 -0
  170. package/public/chunk-YJWJIJMQ.js +1 -0
  171. package/public/chunk-ZAKTSIL5.js +1 -0
  172. package/public/chunk-ZCGZM7LU.js +1 -0
  173. package/public/chunk-ZPXACREZ.js +4 -0
  174. package/public/index.html +2 -2
  175. package/public/main-HATN2V6Z.js +1 -0
  176. package/public/media/matter-P563JGDL.svg +8 -0
  177. package/public/polyfills-34U4WL3Z.js +1 -0
  178. package/public/styles-CT2LPGES.css +1 -0
  179. package/scripts/extract-plugin-alias.js +53 -2
  180. package/public/chunk-23BCCFJ5.js +0 -1
  181. package/public/chunk-2WBRY5UH.js +0 -1
  182. package/public/chunk-3BW6ZOEY.js +0 -1
  183. package/public/chunk-3F6KNL45.js +0 -5
  184. package/public/chunk-42GW3RJL.js +0 -1
  185. package/public/chunk-5GRM2PNI.js +0 -8
  186. package/public/chunk-66LEC5UY.js +0 -1
  187. package/public/chunk-66QXUNEP.js +0 -1
  188. package/public/chunk-6LTVSYZW.js +0 -1
  189. package/public/chunk-6VK3QZGU.js +0 -1
  190. package/public/chunk-73C4I43L.js +0 -1
  191. package/public/chunk-7OASQ2AG.js +0 -1
  192. package/public/chunk-7WU4X6RM.js +0 -1
  193. package/public/chunk-ADWZU2CD.js +0 -1
  194. package/public/chunk-AJFDU7Z7.js +0 -1
  195. package/public/chunk-APNLFZE3.js +0 -1
  196. package/public/chunk-B6MBMYJR.js +0 -1
  197. package/public/chunk-BKFWDZA6.js +0 -1
  198. package/public/chunk-BON2K2BD.js +0 -2
  199. package/public/chunk-BROGM6SY.js +0 -3
  200. package/public/chunk-CA3TZ6PQ.js +0 -1
  201. package/public/chunk-EH36LHRK.js +0 -1
  202. package/public/chunk-EI7FRBF5.js +0 -1
  203. package/public/chunk-END7FY3E.js +0 -4
  204. package/public/chunk-FIMBNRF3.js +0 -1
  205. package/public/chunk-FYJ5B755.js +0 -1
  206. package/public/chunk-GYXHUBV3.js +0 -1
  207. package/public/chunk-HIUHYFSQ.js +0 -1
  208. package/public/chunk-I6OSTXHH.js +0 -1
  209. package/public/chunk-IEAPUTEM.js +0 -4
  210. package/public/chunk-IT6PLC4W.js +0 -1
  211. package/public/chunk-IYHUB3D3.js +0 -1
  212. package/public/chunk-JCCE2HYA.js +0 -1
  213. package/public/chunk-JMI4ETRQ.js +0 -4
  214. package/public/chunk-K27TBISE.js +0 -16
  215. package/public/chunk-KGF7IKOW.js +0 -1
  216. package/public/chunk-KIQBLIB2.js +0 -8
  217. package/public/chunk-MAY7B34T.js +0 -1
  218. package/public/chunk-MCMS4UYL.js +0 -1
  219. package/public/chunk-MMBLECEN.js +0 -1
  220. package/public/chunk-MNWNSJ2K.js +0 -5
  221. package/public/chunk-NK5MY45D.js +0 -1
  222. package/public/chunk-OOM2PIRM.js +0 -5
  223. package/public/chunk-ORRSUOEI.js +0 -1
  224. package/public/chunk-QSG34JA4.js +0 -1
  225. package/public/chunk-QXD4RXA4.js +0 -1
  226. package/public/chunk-R7Q4CXAE.js +0 -1
  227. package/public/chunk-RMH5OYGC.js +0 -1
  228. package/public/chunk-SIVMM2JG.js +0 -1
  229. package/public/chunk-SMWVFNSN.js +0 -1
  230. package/public/chunk-U5K3GAHN.js +0 -1
  231. package/public/chunk-UUDMBNOI.js +0 -1
  232. package/public/chunk-V5LQ5DCH.js +0 -1
  233. package/public/chunk-VAYELJWR.js +0 -50
  234. package/public/chunk-VIRYWO5H.js +0 -40
  235. package/public/chunk-WYUCIHNO.js +0 -1
  236. package/public/chunk-XDFBUXFD.js +0 -1
  237. package/public/chunk-XX2HF46Y.js +0 -1
  238. package/public/chunk-YY4RH27F.js +0 -1
  239. package/public/chunk-ZCLW5Y7D.js +0 -19
  240. package/public/chunk-ZOOWBXGT.js +0 -1
  241. package/public/chunk-ZPKW4S77.js +0 -2
  242. package/public/chunk-ZXUIFQS4.js +0 -51
  243. package/public/main-BAQKIXE4.js +0 -1
  244. package/public/polyfills-5KWHJ7II.js +0 -2
  245. package/public/styles-7EFV5QBG.css +0 -1
@@ -0,0 +1,4 @@
1
+ import{a as Y,b as K}from"./chunk-B4AJQJMI.js";function I(e){return typeof e=="function"}function Lt(e){let n=e(r=>{Error.call(r),r.stack=new Error().stack});return n.prototype=Object.create(Error.prototype),n.prototype.constructor=n,n}var Er=Lt(e=>function(n){e(this),this.message=n?`${n.length} errors occurred during unsubscription:
2
+ ${n.map((r,o)=>`${o+1}) ${r.toString()}`).join(`
3
+ `)}`:"",this.name="UnsubscriptionError",this.errors=n});function at(e,t){if(e){let n=e.indexOf(t);0<=n&&e.splice(n,1)}}var $=class e{constructor(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let t;if(!this.closed){this.closed=!0;let{_parentage:n}=this;if(n)if(this._parentage=null,Array.isArray(n))for(let i of n)i.remove(this);else n.remove(this);let{initialTeardown:r}=this;if(I(r))try{r()}catch(i){t=i instanceof Er?i.errors:[i]}let{_finalizers:o}=this;if(o){this._finalizers=null;for(let i of o)try{qc(i)}catch(s){t=t??[],s instanceof Er?t=[...t,...s.errors]:t.push(s)}}if(t)throw new Er(t)}}add(t){var n;if(t&&t!==this)if(this.closed)qc(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=(n=this._finalizers)!==null&&n!==void 0?n:[]).push(t)}}_hasParent(t){let{_parentage:n}=this;return n===t||Array.isArray(n)&&n.includes(t)}_addParent(t){let{_parentage:n}=this;this._parentage=Array.isArray(n)?(n.push(t),n):n?[n,t]:t}_removeParent(t){let{_parentage:n}=this;n===t?this._parentage=null:Array.isArray(n)&&at(n,t)}remove(t){let{_finalizers:n}=this;n&&at(n,t),t instanceof e&&t._removeParent(this)}};$.EMPTY=(()=>{let e=new $;return e.closed=!0,e})();var Ei=$.EMPTY;function Dr(e){return e instanceof $||e&&"closed"in e&&I(e.remove)&&I(e.add)&&I(e.unsubscribe)}function qc(e){I(e)?e():e.unsubscribe()}var fe={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1};var Ft={setTimeout(e,t,...n){let{delegate:r}=Ft;return r?.setTimeout?r.setTimeout(e,t,...n):setTimeout(e,t,...n)},clearTimeout(e){let{delegate:t}=Ft;return(t?.clearTimeout||clearTimeout)(e)},delegate:void 0};function Cr(e){Ft.setTimeout(()=>{let{onUnhandledError:t}=fe;if(t)t(e);else throw e})}function Pe(){}var Wc=Di("C",void 0,void 0);function Gc(e){return Di("E",void 0,e)}function zc(e){return Di("N",e,void 0)}function Di(e,t,n){return{kind:e,value:t,error:n}}var ct=null;function jt(e){if(fe.useDeprecatedSynchronousErrorHandling){let t=!ct;if(t&&(ct={errorThrown:!1,error:null}),e(),t){let{errorThrown:n,error:r}=ct;if(ct=null,n)throw r}}else e()}function Qc(e){fe.useDeprecatedSynchronousErrorHandling&&ct&&(ct.errorThrown=!0,ct.error=e)}var lt=class extends ${constructor(t){super(),this.isStopped=!1,t?(this.destination=t,Dr(t)&&t.add(this)):this.destination=uh}static create(t,n,r){return new pe(t,n,r)}next(t){this.isStopped?bi(zc(t),this):this._next(t)}error(t){this.isStopped?bi(Gc(t),this):(this.isStopped=!0,this._error(t))}complete(){this.isStopped?bi(Wc,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(t){this.destination.next(t)}_error(t){try{this.destination.error(t)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}},ch=Function.prototype.bind;function Ci(e,t){return ch.call(e,t)}var Ti=class{constructor(t){this.partialObserver=t}next(t){let{partialObserver:n}=this;if(n.next)try{n.next(t)}catch(r){br(r)}}error(t){let{partialObserver:n}=this;if(n.error)try{n.error(t)}catch(r){br(r)}else br(t)}complete(){let{partialObserver:t}=this;if(t.complete)try{t.complete()}catch(n){br(n)}}},pe=class extends lt{constructor(t,n,r){super();let o;if(I(t)||!t)o={next:t??void 0,error:n??void 0,complete:r??void 0};else{let i;this&&fe.useDeprecatedNextContext?(i=Object.create(t),i.unsubscribe=()=>this.unsubscribe(),o={next:t.next&&Ci(t.next,i),error:t.error&&Ci(t.error,i),complete:t.complete&&Ci(t.complete,i)}):o=t}this.destination=new Ti(o)}};function br(e){fe.useDeprecatedSynchronousErrorHandling?Qc(e):Cr(e)}function lh(e){throw e}function bi(e,t){let{onStoppedNotification:n}=fe;n&&Ft.setTimeout(()=>n(e,t))}var uh={closed:!0,next:Pe,error:lh,complete:Pe};var Vt=typeof Symbol=="function"&&Symbol.observable||"@@observable";function J(e){return e}function dh(...e){return wi(e)}function wi(e){return e.length===0?J:e.length===1?e[0]:function(n){return e.reduce((r,o)=>o(r),n)}}var _=(()=>{class e{constructor(n){n&&(this._subscribe=n)}lift(n){let r=new e;return r.source=this,r.operator=n,r}subscribe(n,r,o){let i=ph(n)?n:new pe(n,r,o);return jt(()=>{let{operator:s,source:a}=this;i.add(s?s.call(i,a):a?this._subscribe(i):this._trySubscribe(i))}),i}_trySubscribe(n){try{return this._subscribe(n)}catch(r){n.error(r)}}forEach(n,r){return r=Zc(r),new r((o,i)=>{let s=new pe({next:a=>{try{n(a)}catch(c){i(c),s.unsubscribe()}},error:i,complete:o});this.subscribe(s)})}_subscribe(n){var r;return(r=this.source)===null||r===void 0?void 0:r.subscribe(n)}[Vt](){return this}pipe(...n){return wi(n)(this)}toPromise(n){return n=Zc(n),new n((r,o)=>{let i;this.subscribe(s=>i=s,s=>o(s),()=>r(i))})}}return e.create=t=>new e(t),e})();function Zc(e){var t;return(t=e??fe.Promise)!==null&&t!==void 0?t:Promise}function fh(e){return e&&I(e.next)&&I(e.error)&&I(e.complete)}function ph(e){return e&&e instanceof lt||fh(e)&&Dr(e)}var Yc=Lt(e=>function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var re=(()=>{class e extends _{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(n){let r=new Tr(this,this);return r.operator=n,r}_throwIfClosed(){if(this.closed)throw new Yc}next(n){jt(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(let r of this.currentObservers)r.next(n)}})}error(n){jt(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=n;let{observers:r}=this;for(;r.length;)r.shift().error(n)}})}complete(){jt(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;let{observers:n}=this;for(;n.length;)n.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var n;return((n=this.observers)===null||n===void 0?void 0:n.length)>0}_trySubscribe(n){return this._throwIfClosed(),super._trySubscribe(n)}_subscribe(n){return this._throwIfClosed(),this._checkFinalizedStatuses(n),this._innerSubscribe(n)}_innerSubscribe(n){let{hasError:r,isStopped:o,observers:i}=this;return r||o?Ei:(this.currentObservers=null,i.push(n),new $(()=>{this.currentObservers=null,at(i,n)}))}_checkFinalizedStatuses(n){let{hasError:r,thrownError:o,isStopped:i}=this;r?n.error(o):i&&n.complete()}asObservable(){let n=new _;return n.source=this,n}}return e.create=(t,n)=>new Tr(t,n),e})(),Tr=class extends re{constructor(t,n){super(),this.destination=t,this.source=n}next(t){var n,r;(r=(n=this.destination)===null||n===void 0?void 0:n.next)===null||r===void 0||r.call(n,t)}error(t){var n,r;(r=(n=this.destination)===null||n===void 0?void 0:n.error)===null||r===void 0||r.call(n,t)}complete(){var t,n;(n=(t=this.destination)===null||t===void 0?void 0:t.complete)===null||n===void 0||n.call(t)}_subscribe(t){var n,r;return(r=(n=this.source)===null||n===void 0?void 0:n.subscribe(t))!==null&&r!==void 0?r:Ei}};var Le=Lt(e=>function(){e(this),this.name="EmptyError",this.message="no elements in sequence"});function hh(e,t){let n=typeof t=="object";return new Promise((r,o)=>{let i=new pe({next:s=>{r(s),i.unsubscribe()},error:o,complete:()=>{n?r(t.defaultValue):o(new Le)}});e.subscribe(i)})}var wr=class extends ${constructor(t,n){super()}schedule(t,n=0){return this}};var vn={setInterval(e,t,...n){let{delegate:r}=vn;return r?.setInterval?r.setInterval(e,t,...n):setInterval(e,t,...n)},clearInterval(e){let{delegate:t}=vn;return(t?.clearInterval||clearInterval)(e)},delegate:void 0};var Ht=class extends wr{constructor(t,n){super(t,n),this.scheduler=t,this.work=n,this.pending=!1}schedule(t,n=0){var r;if(this.closed)return this;this.state=t;let o=this.id,i=this.scheduler;return o!=null&&(this.id=this.recycleAsyncId(i,o,n)),this.pending=!0,this.delay=n,this.id=(r=this.id)!==null&&r!==void 0?r:this.requestAsyncId(i,this.id,n),this}requestAsyncId(t,n,r=0){return vn.setInterval(t.flush.bind(t,this),r)}recycleAsyncId(t,n,r=0){if(r!=null&&this.delay===r&&this.pending===!1)return n;n!=null&&vn.clearInterval(n)}execute(t,n){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;let r=this._execute(t,n);if(r)return r;this.pending===!1&&this.id!=null&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(t,n){let r=!1,o;try{this.work(t)}catch(i){r=!0,o=i||new Error("Scheduled action threw falsy error")}if(r)return this.unsubscribe(),o}unsubscribe(){if(!this.closed){let{id:t,scheduler:n}=this,{actions:r}=n;this.work=this.state=this.scheduler=null,this.pending=!1,at(r,this),t!=null&&(this.id=this.recycleAsyncId(n,t,null)),this.delay=null,super.unsubscribe()}}};var In={now(){return(In.delegate||Date).now()},delegate:void 0};var Bt=class e{constructor(t,n=e.now){this.schedulerActionCtor=t,this.now=n}schedule(t,n=0,r){return new this.schedulerActionCtor(this,t).schedule(r,n)}};Bt.now=In.now;var $t=class extends Bt{constructor(t,n=Bt.now){super(t,n),this.actions=[],this._active=!1}flush(t){let{actions:n}=this;if(this._active){n.push(t);return}let r;this._active=!0;do if(r=t.execute(t.state,t.delay))break;while(t=n.shift());if(this._active=!1,r){for(;t=n.shift();)t.unsubscribe();throw r}}};var Fe=new $t(Ht),Kc=Fe;function _r(e){return e&&I(e.schedule)}function Jc(e){return e instanceof Date&&!isNaN(e)}function ut(e=0,t,n=Kc){let r=-1;return t!=null&&(_r(t)?n=t:r=t),new _(o=>{let i=Jc(e)?+e-n.now():e;i<0&&(i=0);let s=0;return n.schedule(function(){o.closed||(o.next(s++),0<=r?this.schedule(void 0,r):o.complete())},i)})}function gh(e){return I(e?.lift)}function C(e){return t=>{if(gh(t))return t.lift(function(n){try{return e(n,this)}catch(r){this.error(r)}});throw new TypeError("Unable to lift unknown Observable type")}}function D(e,t,n,r,o){return new _i(e,t,n,r,o)}var _i=class extends lt{constructor(t,n,r,o,i,s){super(t),this.onFinalize=i,this.shouldUnsubscribe=s,this._next=n?function(a){try{n(a)}catch(c){t.error(c)}}:super._next,this._error=o?function(a){try{o(a)}catch(c){t.error(c)}finally{this.unsubscribe()}}:super._error,this._complete=r?function(){try{r()}catch(a){t.error(a)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var t;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){let{closed:n}=this;super.unsubscribe(),!n&&((t=this.onFinalize)===null||t===void 0||t.call(this))}}};function Xc(e,t=Fe){return C((n,r)=>{let o=null,i=null,s=null,a=()=>{if(o){o.unsubscribe(),o=null;let l=i;i=null,r.next(l)}};function c(){let l=s+e,u=t.now();if(u<l){o=this.schedule(void 0,l-u),r.add(o);return}a()}n.subscribe(D(r,l=>{i=l,s=t.now(),o||(o=t.schedule(c,e),r.add(o))},()=>{a(),r.complete()},void 0,()=>{i=o=null}))})}var je=new _(e=>e.complete());function Ut(e){return e<=0?()=>je:C((t,n)=>{let r=0;t.subscribe(D(n,o=>{++r<=e&&(n.next(o),e<=r&&n.complete())}))})}var qt={schedule(e){let t=requestAnimationFrame,n=cancelAnimationFrame,{delegate:r}=qt;r&&(t=r.requestAnimationFrame,n=r.cancelAnimationFrame);let o=t(i=>{n=void 0,e(i)});return new $(()=>n?.(o))},requestAnimationFrame(...e){let{delegate:t}=qt;return(t?.requestAnimationFrame||requestAnimationFrame)(...e)},cancelAnimationFrame(...e){let{delegate:t}=qt;return(t?.cancelAnimationFrame||cancelAnimationFrame)(...e)},delegate:void 0};var En=class extends re{constructor(t){super(),this._value=t}get value(){return this.getValue()}_subscribe(t){let n=super._subscribe(t);return!n.closed&&t.next(this._value),n}getValue(){let{hasError:t,thrownError:n,_value:r}=this;if(t)throw n;return this._throwIfClosed(),r}next(t){super.next(this._value=t)}};var Mr=class extends re{constructor(t=1/0,n=1/0,r=In){super(),this._bufferSize=t,this._windowTime=n,this._timestampProvider=r,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=n===1/0,this._bufferSize=Math.max(1,t),this._windowTime=Math.max(1,n)}next(t){let{isStopped:n,_buffer:r,_infiniteTimeWindow:o,_timestampProvider:i,_windowTime:s}=this;n||(r.push(t),!o&&r.push(i.now()+s)),this._trimBuffer(),super.next(t)}_subscribe(t){this._throwIfClosed(),this._trimBuffer();let n=this._innerSubscribe(t),{_infiniteTimeWindow:r,_buffer:o}=this,i=o.slice();for(let s=0;s<i.length&&!t.closed;s+=r?1:2)t.next(i[s]);return this._checkFinalizedStatuses(t),n}_trimBuffer(){let{_bufferSize:t,_timestampProvider:n,_buffer:r,_infiniteTimeWindow:o}=this,i=(o?1:2)*t;if(t<1/0&&i<r.length&&r.splice(0,r.length-i),!o){let s=n.now(),a=0;for(let c=1;c<r.length&&r[c]<=s;c+=2)a=c;a&&r.splice(0,a+1)}}};var Nr=class extends Ht{constructor(t,n){super(t,n),this.scheduler=t,this.work=n}requestAsyncId(t,n,r=0){return r!==null&&r>0?super.requestAsyncId(t,n,r):(t.actions.push(this),t._scheduled||(t._scheduled=qt.requestAnimationFrame(()=>t.flush(void 0))))}recycleAsyncId(t,n,r=0){var o;if(r!=null?r>0:this.delay>0)return super.recycleAsyncId(t,n,r);let{actions:i}=t;n!=null&&n===t._scheduled&&((o=i[i.length-1])===null||o===void 0?void 0:o.id)!==n&&(qt.cancelAnimationFrame(n),t._scheduled=void 0)}};var Sr=class extends $t{flush(t){this._active=!0;let n;t?n=t.id:(n=this._scheduled,this._scheduled=void 0);let{actions:r}=this,o;t=t||r.shift();do if(o=t.execute(t.state,t.delay))break;while((t=r[0])&&t.id===n&&r.shift());if(this._active=!1,o){for(;(t=r[0])&&t.id===n&&r.shift();)t.unsubscribe();throw o}}};var mh=new Sr(Nr);function Mi(e){return e[e.length-1]}function Ye(e){return I(Mi(e))?e.pop():void 0}function be(e){return _r(Mi(e))?e.pop():void 0}function el(e,t){return typeof Mi(e)=="number"?e.pop():t}function nl(e,t,n,r){function o(i){return i instanceof n?i:new n(function(s){s(i)})}return new(n||(n=Promise))(function(i,s){function a(u){try{l(r.next(u))}catch(d){s(d)}}function c(u){try{l(r.throw(u))}catch(d){s(d)}}function l(u){u.done?i(u.value):o(u.value).then(a,c)}l((r=r.apply(e,t||[])).next())})}function tl(e){var t=typeof Symbol=="function"&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function dt(e){return this instanceof dt?(this.v=e,this):new dt(e)}function rl(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=n.apply(e,t||[]),o,i=[];return o=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),a("next"),a("throw"),a("return",s),o[Symbol.asyncIterator]=function(){return this},o;function s(f){return function(h){return Promise.resolve(h).then(f,d)}}function a(f,h){r[f]&&(o[f]=function(y){return new Promise(function(S,T){i.push([f,y,S,T])>1||c(f,y)})},h&&(o[f]=h(o[f])))}function c(f,h){try{l(r[f](h))}catch(y){p(i[0][3],y)}}function l(f){f.value instanceof dt?Promise.resolve(f.value.v).then(u,d):p(i[0][2],f)}function u(f){c("next",f)}function d(f){c("throw",f)}function p(f,h){f(h),i.shift(),i.length&&c(i[0][0],i[0][1])}}function ol(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof tl=="function"?tl(e):e[Symbol.iterator](),n={},r("next"),r("throw"),r("return"),n[Symbol.asyncIterator]=function(){return this},n);function r(i){n[i]=e[i]&&function(s){return new Promise(function(a,c){s=e[i](s),o(a,c,s.done,s.value)})}}function o(i,s,a,c){Promise.resolve(c).then(function(l){i({value:l,done:a})},s)}}var Wt=e=>e&&typeof e.length=="number"&&typeof e!="function";function xr(e){return I(e?.then)}function Ar(e){return I(e[Vt])}function Rr(e){return Symbol.asyncIterator&&I(e?.[Symbol.asyncIterator])}function Or(e){return new TypeError(`You provided ${e!==null&&typeof e=="object"?"an invalid object":`'${e}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}function yh(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var kr=yh();function Pr(e){return I(e?.[kr])}function Lr(e){return rl(this,arguments,function*(){let n=e.getReader();try{for(;;){let{value:r,done:o}=yield dt(n.read());if(o)return yield dt(void 0);yield yield dt(r)}}finally{n.releaseLock()}})}function Fr(e){return I(e?.getReader)}function N(e){if(e instanceof _)return e;if(e!=null){if(Ar(e))return vh(e);if(Wt(e))return Ih(e);if(xr(e))return Eh(e);if(Rr(e))return il(e);if(Pr(e))return Dh(e);if(Fr(e))return Ch(e)}throw Or(e)}function vh(e){return new _(t=>{let n=e[Vt]();if(I(n.subscribe))return n.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function Ih(e){return new _(t=>{for(let n=0;n<e.length&&!t.closed;n++)t.next(e[n]);t.complete()})}function Eh(e){return new _(t=>{e.then(n=>{t.closed||(t.next(n),t.complete())},n=>t.error(n)).then(null,Cr)})}function Dh(e){return new _(t=>{for(let n of e)if(t.next(n),t.closed)return;t.complete()})}function il(e){return new _(t=>{bh(e,t).catch(n=>t.error(n))})}function Ch(e){return il(Lr(e))}function bh(e,t){var n,r,o,i;return nl(this,void 0,void 0,function*(){try{for(n=ol(e);r=yield n.next(),!r.done;){let s=r.value;if(t.next(s),t.closed)return}}catch(s){o={error:s}}finally{try{r&&!r.done&&(i=n.return)&&(yield i.call(n))}finally{if(o)throw o.error}}t.complete()})}function ne(e,t,n,r=0,o=!1){let i=t.schedule(function(){n(),o?e.add(this.schedule(null,r)):this.unsubscribe()},r);if(e.add(i),!o)return i}function jr(e,t=0){return C((n,r)=>{n.subscribe(D(r,o=>ne(r,e,()=>r.next(o),t),()=>ne(r,e,()=>r.complete(),t),o=>ne(r,e,()=>r.error(o),t)))})}function Vr(e,t=0){return C((n,r)=>{r.add(e.schedule(()=>n.subscribe(r),t))})}function sl(e,t){return N(e).pipe(Vr(t),jr(t))}function al(e,t){return N(e).pipe(Vr(t),jr(t))}function cl(e,t){return new _(n=>{let r=0;return t.schedule(function(){r===e.length?n.complete():(n.next(e[r++]),n.closed||this.schedule())})})}function ll(e,t){return new _(n=>{let r;return ne(n,t,()=>{r=e[kr](),ne(n,t,()=>{let o,i;try{({value:o,done:i}=r.next())}catch(s){n.error(s);return}i?n.complete():n.next(o)},0,!0)}),()=>I(r?.return)&&r.return()})}function Hr(e,t){if(!e)throw new Error("Iterable cannot be null");return new _(n=>{ne(n,t,()=>{let r=e[Symbol.asyncIterator]();ne(n,t,()=>{r.next().then(o=>{o.done?n.complete():n.next(o.value)})},0,!0)})})}function ul(e,t){return Hr(Lr(e),t)}function dl(e,t){if(e!=null){if(Ar(e))return sl(e,t);if(Wt(e))return cl(e,t);if(xr(e))return al(e,t);if(Rr(e))return Hr(e,t);if(Pr(e))return ll(e,t);if(Fr(e))return ul(e,t)}throw Or(e)}function Te(e,t){return t?dl(e,t):N(e)}function Ni(...e){let t=be(e);return Te(e,t)}function Th(e,t){let n=I(e)?e:()=>e,r=o=>o.error(n());return new _(t?o=>t.schedule(r,0,o):r)}function wh(e){return!!e&&(e instanceof _||I(e.lift)&&I(e.subscribe))}function _h(e,t){let n=typeof t=="object";return new Promise((r,o)=>{let i=!1,s;e.subscribe({next:a=>{s=a,i=!0},error:o,complete:()=>{i?r(s):n?r(t.defaultValue):o(new Le)}})})}function Ve(e,t){return C((n,r)=>{let o=0;n.subscribe(D(r,i=>{r.next(e.call(t,i,o++))}))})}var{isArray:Mh}=Array;function Nh(e,t){return Mh(t)?e(...t):e(t)}function Gt(e){return Ve(t=>Nh(e,t))}var{isArray:Sh}=Array,{getPrototypeOf:xh,prototype:Ah,keys:Rh}=Object;function Br(e){if(e.length===1){let t=e[0];if(Sh(t))return{args:t,keys:null};if(Oh(t)){let n=Rh(t);return{args:n.map(r=>t[r]),keys:n}}}return{args:e,keys:null}}function Oh(e){return e&&typeof e=="object"&&xh(e)===Ah}function $r(e,t){return e.reduce((n,r,o)=>(n[r]=t[o],n),{})}function kh(...e){let t=be(e),n=Ye(e),{args:r,keys:o}=Br(e);if(r.length===0)return Te([],t);let i=new _(Ph(r,t,o?s=>$r(o,s):J));return n?i.pipe(Gt(n)):i}function Ph(e,t,n=J){return r=>{fl(t,()=>{let{length:o}=e,i=new Array(o),s=o,a=o;for(let c=0;c<o;c++)fl(t,()=>{let l=Te(e[c],t),u=!1;l.subscribe(D(r,d=>{i[c]=d,u||(u=!0,a--),a||r.next(n(i.slice()))},()=>{--s||r.complete()}))},r)},r)}}function fl(e,t,n){e?ne(n,e,t):t()}function pl(e,t,n,r,o,i,s,a){let c=[],l=0,u=0,d=!1,p=()=>{d&&!c.length&&!l&&t.complete()},f=y=>l<r?h(y):c.push(y),h=y=>{i&&t.next(y),l++;let S=!1;N(n(y,u++)).subscribe(D(t,T=>{o?.(T),i?f(T):t.next(T)},()=>{S=!0},void 0,()=>{if(S)try{for(l--;c.length&&l<r;){let T=c.shift();s?ne(t,s,()=>h(T)):h(T)}p()}catch(T){t.error(T)}}))};return e.subscribe(D(t,f,()=>{d=!0,p()})),()=>{a?.()}}function he(e,t,n=1/0){return I(t)?he((r,o)=>Ve((i,s)=>t(r,i,o,s))(N(e(r,o))),n):(typeof t=="number"&&(n=t),C((r,o)=>pl(r,o,e,n)))}function Dn(e=1/0){return he(J,e)}function hl(){return Dn(1)}function Ke(...e){return hl()(Te(e,be(e)))}function Lh(e){return new _(t=>{N(e()).subscribe(t)})}function Fh(...e){let t=Ye(e),{args:n,keys:r}=Br(e),o=new _(i=>{let{length:s}=n;if(!s){i.complete();return}let a=new Array(s),c=s,l=s;for(let u=0;u<s;u++){let d=!1;N(n[u]).subscribe(D(i,p=>{d||(d=!0,l--),a[u]=p},()=>c--,void 0,()=>{(!c||!d)&&(l||i.next(r?$r(r,a):a),i.complete())}))}});return t?o.pipe(Gt(t)):o}var jh=["addListener","removeListener"],Vh=["addEventListener","removeEventListener"],Hh=["on","off"];function Si(e,t,n,r){if(I(n)&&(r=n,n=void 0),r)return Si(e,t,n).pipe(Gt(r));let[o,i]=Uh(e)?Vh.map(s=>a=>e[s](t,a,n)):Bh(e)?jh.map(gl(e,t)):$h(e)?Hh.map(gl(e,t)):[];if(!o&&Wt(e))return he(s=>Si(s,t,n))(N(e));if(!o)throw new TypeError("Invalid event target");return new _(s=>{let a=(...c)=>s.next(1<c.length?c:c[0]);return o(a),()=>i(a)})}function gl(e,t){return n=>r=>e[n](t,r)}function Bh(e){return I(e.addListener)&&I(e.removeListener)}function $h(e){return I(e.on)&&I(e.off)}function Uh(e){return I(e.addEventListener)&&I(e.removeEventListener)}function qh(e=0,t=Fe){return e<0&&(e=0),ut(e,e,t)}function Wh(...e){let t=be(e),n=el(e,1/0),r=e;return r.length?r.length===1?N(r[0]):Dn(n)(Te(r,t)):je}var{isArray:Gh}=Array;function Ur(e){return e.length===1&&Gh(e[0])?e[0]:e}function Cn(e,t){return C((n,r)=>{let o=0;n.subscribe(D(r,i=>e.call(t,i,o++)&&r.next(i)))})}function zh(...e){return e=Ur(e),e.length===1?N(e[0]):new _(Qh(e))}function Qh(e){return t=>{let n=[];for(let r=0;n&&!t.closed&&r<e.length;r++)n.push(N(e[r]).subscribe(D(t,o=>{if(n){for(let i=0;i<n.length;i++)i!==r&&n[i].unsubscribe();n=null}t.next(o)})))}}function Zh(...e){let t=Ye(e),n=Ur(e);return n.length?new _(r=>{let o=n.map(()=>[]),i=n.map(()=>!1);r.add(()=>{o=i=null});for(let s=0;!r.closed&&s<n.length;s++)N(n[s]).subscribe(D(r,a=>{if(o[s].push(a),o.every(c=>c.length)){let c=o.map(l=>l.shift());r.next(t?t(...c):c),o.some((l,u)=>!l.length&&i[u])&&r.complete()}},()=>{i[s]=!0,!o[s].length&&r.complete()}));return()=>{o=i=null}}):je}function ml(e){return C((t,n)=>{let r=!1,o=null,i=null,s=!1,a=()=>{if(i?.unsubscribe(),i=null,r){r=!1;let l=o;o=null,n.next(l)}s&&n.complete()},c=()=>{i=null,s&&n.complete()};t.subscribe(D(n,l=>{r=!0,o=l,i||N(e(l)).subscribe(i=D(n,a,c))},()=>{s=!0,(!r||!i||i.closed)&&n.complete()}))})}function Yh(e,t=Fe){return ml(()=>ut(e,t))}function yl(e){return C((t,n)=>{let r=null,o=!1,i;r=t.subscribe(D(n,void 0,void 0,s=>{i=N(e(s,yl(e)(t))),r?(r.unsubscribe(),r=null,i.subscribe(n)):o=!0})),o&&(r.unsubscribe(),r=null,i.subscribe(n))})}function Kh(e,t){return I(t)?he(e,t,1):he(e,1)}function vl(e){return C((t,n)=>{let r=!1;t.subscribe(D(n,o=>{r=!0,n.next(o)},()=>{r||n.next(e),n.complete()}))})}function Il(){return C((e,t)=>{e.subscribe(D(t,Pe))})}function El(e){return Ve(()=>e)}function xi(e,t){return t?n=>Ke(t.pipe(Ut(1),Il()),n.pipe(xi(e))):he((n,r)=>N(e(n,r)).pipe(Ut(1),El(n)))}function Jh(e,t=Fe){let n=ut(e,t);return xi(()=>n)}function Xh(e,t=J){return e=e??eg,C((n,r)=>{let o,i=!0;n.subscribe(D(r,s=>{let a=t(s);(i||!e(o,a))&&(i=!1,o=a,r.next(s))}))})}function eg(e,t){return e===t}function Dl(e=tg){return C((t,n)=>{let r=!1;t.subscribe(D(n,o=>{r=!0,n.next(o)},()=>r?n.complete():n.error(e())))})}function tg(){return new Le}function ng(...e){return t=>Ke(t,Ni(...e))}function rg(e){return C((t,n)=>{try{t.subscribe(n)}finally{n.add(e)}})}function og(e,t){let n=arguments.length>=2;return r=>r.pipe(e?Cn((o,i)=>e(o,i,r)):J,Ut(1),n?vl(t):Dl(()=>new Le))}function ig(e){return e<=0?()=>je:C((t,n)=>{let r=[];t.subscribe(D(n,o=>{r.push(o),e<r.length&&r.shift()},()=>{for(let o of r)n.next(o);n.complete()},void 0,()=>{r=null}))})}function Cl(e={}){let{connector:t=()=>new re,resetOnError:n=!0,resetOnComplete:r=!0,resetOnRefCountZero:o=!0}=e;return i=>{let s,a,c,l=0,u=!1,d=!1,p=()=>{a?.unsubscribe(),a=void 0},f=()=>{p(),s=c=void 0,u=d=!1},h=()=>{let y=s;f(),y?.unsubscribe()};return C((y,S)=>{l++,!d&&!u&&p();let T=c=c??t();S.add(()=>{l--,l===0&&!d&&!u&&(a=Ai(h,o))}),T.subscribe(S),!s&&l>0&&(s=new pe({next:Ce=>T.next(Ce),error:Ce=>{d=!0,p(),a=Ai(f,n,Ce),T.error(Ce)},complete:()=>{u=!0,p(),a=Ai(f,r),T.complete()}}),N(y).subscribe(s))})(i)}}function Ai(e,t,...n){if(t===!0){e();return}if(t===!1)return;let r=new pe({next:()=>{r.unsubscribe(),e()}});return N(t(...n)).subscribe(r)}function sg(e,t,n){let r,o=!1;return e&&typeof e=="object"?{bufferSize:r=1/0,windowTime:t=1/0,refCount:o=!1,scheduler:n}=e:r=e??1/0,Cl({connector:()=>new Mr(r,t,n),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:o})}function ag(e){return Cn((t,n)=>e<=n)}function cg(...e){let t=be(e);return C((n,r)=>{(t?Ke(e,n,t):Ke(e,n)).subscribe(r)})}function bl(e,t){return C((n,r)=>{let o=null,i=0,s=!1,a=()=>s&&!o&&r.complete();n.subscribe(D(r,c=>{o?.unsubscribe();let l=0,u=i++;N(e(c,u)).subscribe(o=D(r,d=>r.next(t?t(c,d,u,l++):d),()=>{o=null,a()}))},()=>{s=!0,a()}))})}function Tl(e){return C((t,n)=>{N(e).subscribe(D(n,()=>n.complete(),Pe)),!n.closed&&t.subscribe(n)})}function lg(e,t,n){let r=I(e)||t||n?{next:e,error:t,complete:n}:e;return r?C((o,i)=>{var s;(s=r.subscribe)===null||s===void 0||s.call(r);let a=!0;o.subscribe(D(i,c=>{var l;(l=r.next)===null||l===void 0||l.call(r,c),i.next(c)},()=>{var c;a=!1,(c=r.complete)===null||c===void 0||c.call(r),i.complete()},c=>{var l;a=!1,(l=r.error)===null||l===void 0||l.call(r,c),i.error(c)},()=>{var c,l;a&&((c=r.unsubscribe)===null||c===void 0||c.call(r)),(l=r.finalize)===null||l===void 0||l.call(r)}))}):J}function ug(...e){let t=Ye(e);return C((n,r)=>{let o=e.length,i=new Array(o),s=e.map(()=>!1),a=!1;for(let c=0;c<o;c++)N(e[c]).subscribe(D(r,l=>{i[c]=l,!a&&!s[c]&&(s[c]=!0,(a=s.every(J))&&(s=null))},Pe));n.subscribe(D(r,c=>{if(a){let l=[c,...i];r.next(t?t(...l):l)}}))})}var Q=null,qr=!1,Pi=1,dg=null,G=Symbol("SIGNAL");function v(e){let t=Q;return Q=e,t}function Gr(){return Q}var zt={version:0,lastCleanEpoch:0,dirty:!1,producers:void 0,producersTail:void 0,consumers:void 0,consumersTail:void 0,recomputing:!1,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,kind:"unknown",producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function bn(e){if(qr)throw new Error("");if(Q===null)return;Q.consumerOnSignalRead(e);let t=Q.producersTail;if(t!==void 0&&t.producer===e)return;let n,r=Q.recomputing;if(r&&(n=t!==void 0?t.nextProducer:Q.producers,n!==void 0&&n.producer===e)){Q.producersTail=n,n.lastReadVersion=e.version;return}let o=e.consumersTail;if(o!==void 0&&o.consumer===Q&&(!r||pg(o,Q)))return;let i=Zt(Q),s={producer:e,consumer:Q,nextProducer:n,prevConsumer:o,lastReadVersion:e.version,nextConsumer:void 0};Q.producersTail=s,t!==void 0?t.nextProducer=s:Q.producers=s,i&&Nl(e,s)}function wl(){Pi++}function Li(e){if(!(Zt(e)&&!e.dirty)&&!(!e.dirty&&e.lastCleanEpoch===Pi)){if(!e.producerMustRecompute(e)&&!wn(e)){ki(e);return}e.producerRecomputeValue(e),ki(e)}}function Fi(e){if(e.consumers===void 0)return;let t=qr;qr=!0;try{for(let n=e.consumers;n!==void 0;n=n.nextConsumer){let r=n.consumer;r.dirty||fg(r)}}finally{qr=t}}function ji(){return Q?.consumerAllowSignalWrites!==!1}function fg(e){e.dirty=!0,Fi(e),e.consumerMarkedDirty?.(e)}function ki(e){e.dirty=!1,e.lastCleanEpoch=Pi}function Qt(e){return e&&_l(e),v(e)}function _l(e){e.producersTail=void 0,e.recomputing=!0}function Tn(e,t){v(t),e&&Ml(e)}function Ml(e){e.recomputing=!1;let t=e.producersTail,n=t!==void 0?t.nextProducer:e.producers;if(n!==void 0){if(Zt(e))do n=Vi(n);while(n!==void 0);t!==void 0?t.nextProducer=void 0:e.producers=void 0}}function wn(e){for(let t=e.producers;t!==void 0;t=t.nextProducer){let n=t.producer,r=t.lastReadVersion;if(r!==n.version||(Li(n),r!==n.version))return!0}return!1}function ft(e){if(Zt(e)){let t=e.producers;for(;t!==void 0;)t=Vi(t)}e.producers=void 0,e.producersTail=void 0,e.consumers=void 0,e.consumersTail=void 0}function Nl(e,t){let n=e.consumersTail,r=Zt(e);if(n!==void 0?(t.nextConsumer=n.nextConsumer,n.nextConsumer=t):(t.nextConsumer=void 0,e.consumers=t),t.prevConsumer=n,e.consumersTail=t,!r)for(let o=e.producers;o!==void 0;o=o.nextProducer)Nl(o.producer,o)}function Vi(e){let t=e.producer,n=e.nextProducer,r=e.nextConsumer,o=e.prevConsumer;if(e.nextConsumer=void 0,e.prevConsumer=void 0,r!==void 0?r.prevConsumer=o:t.consumersTail=o,o!==void 0)o.nextConsumer=r;else if(t.consumers=r,!Zt(t)){let i=t.producers;for(;i!==void 0;)i=Vi(i)}return n}function Zt(e){return e.consumerIsAlwaysLive||e.consumers!==void 0}function Hi(e){dg?.(e)}function pg(e,t){let n=t.producersTail;if(n!==void 0){let r=t.producers;do{if(r===e)return!0;if(r===n)break;r=r.nextProducer}while(r!==void 0)}return!1}function Bi(e,t){return Object.is(e,t)}function _n(e,t){let n=Object.create(hg);n.computation=e,t!==void 0&&(n.equal=t);let r=()=>{if(Li(n),bn(n),n.value===Wr)throw n.error;return n.value};return r[G]=n,Hi(n),r}var Ri=Symbol("UNSET"),Oi=Symbol("COMPUTING"),Wr=Symbol("ERRORED"),hg=K(Y({},zt),{value:Ri,dirty:!0,error:null,equal:Bi,kind:"computed",producerMustRecompute(e){return e.value===Ri||e.value===Oi},producerRecomputeValue(e){if(e.value===Oi)throw new Error("");let t=e.value;e.value=Oi;let n=Qt(e),r,o=!1;try{r=e.computation(),v(null),o=t!==Ri&&t!==Wr&&r!==Wr&&e.equal(t,r)}catch(i){r=Wr,e.error=i}finally{Tn(e,n)}if(o){e.value=t;return}e.value=r,e.version++}});function gg(){throw new Error}var Sl=gg;function xl(e){Sl(e)}function $i(e){Sl=e}var mg=null;function Ui(e,t){let n=Object.create(zr);n.value=e,t!==void 0&&(n.equal=t);let r=()=>Al(n);return r[G]=n,Hi(n),[r,s=>Mn(n,s),s=>Rl(n,s)]}function Al(e){return bn(e),e.value}function Mn(e,t){ji()||xl(e),e.equal(e.value,t)||(e.value=t,yg(e))}function Rl(e,t){ji()||xl(e),Mn(e,t(e.value))}var zr=K(Y({},zt),{equal:Bi,value:void 0,kind:"signal"});function yg(e){e.version++,wl(),Fi(e),mg?.(e)}function qi(e){let t=v(null);try{return e()}finally{v(t)}}var Wi=K(Y({},zt),{consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!0,dirty:!0,kind:"effect"});function Gi(e){if(e.dirty=!1,e.version>0&&!wn(e))return;e.version++;let t=Qt(e);try{e.cleanup(),e.fn()}finally{Tn(e,t)}}var zi;function Qr(){return zi}function we(e){let t=zi;return zi=e,t}var Ol=Symbol("NotFound");function Yt(e){return e===Ol||e?.name==="\u0275NotFound"}var to="https://angular.dev/best-practices/security#preventing-cross-site-scripting-xss",M=class extends Error{code;constructor(t,n){super(kn(t,n)),this.code=t}};function vg(e){return`NG0${Math.abs(e)}`}function kn(e,t){return`${vg(e)}${t?": "+t:""}`}var Ne=globalThis;function A(e){for(let t in e)if(e[t]===A)return t;throw Error("")}function jl(e,t){for(let n in t)t.hasOwnProperty(n)&&!e.hasOwnProperty(n)&&(e[n]=t[n])}function $e(e){if(typeof e=="string")return e;if(Array.isArray(e))return`[${e.map($e).join(", ")}]`;if(e==null)return""+e;let t=e.overriddenName||e.name;if(t)return`${t}`;let n=e.toString();if(n==null)return""+n;let r=n.indexOf(`
4
+ `);return r>=0?n.slice(0,r):n}function no(e,t){return e?t?`${e} ${t}`:e:t||""}var Ig=A({__forward_ref__:A});function ro(e){return e.__forward_ref__=ro,e.toString=function(){return $e(this())},e}function U(e){return ss(e)?e():e}function ss(e){return typeof e=="function"&&e.hasOwnProperty(Ig)&&e.__forward_ref__===ro}function W(e){return{token:e.token,providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function Vl(e){return{providers:e.providers||[],imports:e.imports||[]}}function Pn(e){return Dg(e,oo)}function Eg(e){return Pn(e)!==null}function Dg(e,t){return e.hasOwnProperty(t)&&e[t]||null}function Cg(e){let t=e?.[oo]??null;return t||null}function Zi(e){return e&&e.hasOwnProperty(Yr)?e[Yr]:null}var oo=A({\u0275prov:A}),Yr=A({\u0275inj:A}),k=class{_desc;ngMetadataName="InjectionToken";\u0275prov;constructor(t,n){this._desc=t,this.\u0275prov=void 0,typeof n=="number"?this.__NG_ELEMENT_ID__=n:n!==void 0&&(this.\u0275prov=W({token:this,providedIn:n.providedIn||"root",factory:n.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}};function as(e){return e&&!!e.\u0275providers}var cs=A({\u0275cmp:A}),ls=A({\u0275dir:A}),us=A({\u0275pipe:A}),ds=A({\u0275mod:A}),Sn=A({\u0275fac:A}),yt=A({__NG_ELEMENT_ID__:A}),kl=A({__NG_ENV_ID__:A});function V(e){return typeof e=="string"?e:e==null?"":String(e)}function Hl(e){return typeof e=="function"?e.name||e.toString():typeof e=="object"&&e!=null&&typeof e.type=="function"?e.type.name||e.type.toString():V(e)}var Bl=A({ngErrorCode:A}),bg=A({ngErrorMessage:A}),Tg=A({ngTokenPath:A});function fs(e,t){return $l("",-200,t)}function io(e,t){throw new M(-201,!1)}function $l(e,t,n){let r=new M(t,e);return r[Bl]=t,r[bg]=e,n&&(r[Tg]=n),r}function wg(e){return e[Bl]}var Yi;function Ul(){return Yi}function X(e){let t=Yi;return Yi=e,t}function ps(e,t,n){let r=Pn(e);if(r&&r.providedIn=="root")return r.value===void 0?r.value=r.factory():r.value;if(n&8)return null;if(t!==void 0)return t;io(e,"Injector")}var _g={},pt=_g,Mg="__NG_DI_FLAG__",Ki=class{injector;constructor(t){this.injector=t}retrieve(t,n){let r=ht(n)||0;try{return this.injector.get(t,r&8?null:pt,r)}catch(o){if(Yt(o))return o;throw o}}};function Ng(e,t=0){let n=Qr();if(n===void 0)throw new M(-203,!1);if(n===null)return ps(e,void 0,t);{let r=Sg(t),o=n.retrieve(e,r);if(Yt(o)){if(r.optional)return null;throw o}return o}}function _e(e,t=0){return(Ul()||Ng)(U(e),t)}function w(e,t){return _e(e,ht(t))}function ht(e){return typeof e>"u"||typeof e=="number"?e:0|(e.optional&&8)|(e.host&&1)|(e.self&&2)|(e.skipSelf&&4)}function Sg(e){return{optional:!!(e&8),host:!!(e&1),self:!!(e&2),skipSelf:!!(e&4)}}function Ji(e){let t=[];for(let n=0;n<e.length;n++){let r=U(e[n]);if(Array.isArray(r)){if(r.length===0)throw new M(900,!1);let o,i=0;for(let s=0;s<r.length;s++){let a=r[s],c=xg(a);typeof c=="number"?c===-1?o=a.token:i|=c:o=a}t.push(_e(o,i))}else t.push(_e(r))}return t}function xg(e){return e[Mg]}function Je(e,t){let n=e.hasOwnProperty(Sn);return n?e[Sn]:null}function ql(e,t,n){if(e.length!==t.length)return!1;for(let r=0;r<e.length;r++){let o=e[r],i=t[r];if(n&&(o=n(o),i=n(i)),i!==o)return!1}return!0}function Wl(e){return e.flat(Number.POSITIVE_INFINITY)}function so(e,t){e.forEach(n=>Array.isArray(n)?so(n,t):t(n))}function hs(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function Ln(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function Gl(e,t){let n=[];for(let r=0;r<e;r++)n.push(t);return n}function zl(e,t,n,r){let o=e.length;if(o==t)e.push(n,r);else if(o===1)e.push(r,e[0]),e[0]=n;else{for(o--,e.push(e[o-1],e[o]);o>t;){let i=o-2;e[o]=e[i],o--}e[t]=n,e[t+1]=r}}function ao(e,t,n){let r=Jt(e,t);return r>=0?e[r|1]=n:(r=~r,zl(e,r,t,n)),r}function co(e,t){let n=Jt(e,t);if(n>=0)return e[n|1]}function Jt(e,t){return Ag(e,t,1)}function Ag(e,t,n){let r=0,o=e.length>>n;for(;o!==r;){let i=r+(o-r>>1),s=e[i<<n];if(t===s)return i<<n;s>t?o=i:r=i+1}return~(o<<n)}var ye={},Z=[],Fn=new k(""),gs=new k("",-1),ms=new k(""),xn=class{get(t,n=pt){if(n===pt){let o=$l("",-201);throw o.name="\u0275NotFound",o}return n}};function ys(e){return e[ds]||null}function We(e){return e[cs]||null}function lo(e){return e[ls]||null}function Ql(e){return e[us]||null}function vs(e){return{\u0275providers:e}}function Zl(...e){return{\u0275providers:Is(!0,e),\u0275fromNgModule:!0}}function Is(e,...t){let n=[],r=new Set,o,i=s=>{n.push(s)};return so(t,s=>{let a=s;Kr(a,i,[],r)&&(o||=[],o.push(a))}),o!==void 0&&Yl(o,i),n}function Yl(e,t){for(let n=0;n<e.length;n++){let{ngModule:r,providers:o}=e[n];Es(o,i=>{t(i,r)})}}function Kr(e,t,n,r){if(e=U(e),!e)return!1;let o=null,i=Zi(e),s=!i&&We(e);if(!i&&!s){let c=e.ngModule;if(i=Zi(c),i)o=c;else return!1}else{if(s&&!s.standalone)return!1;o=e}let a=r.has(o);if(s){if(a)return!1;if(r.add(o),s.dependencies){let c=typeof s.dependencies=="function"?s.dependencies():s.dependencies;for(let l of c)Kr(l,t,n,r)}}else if(i){if(i.imports!=null&&!a){r.add(o);let l;try{so(i.imports,u=>{Kr(u,t,n,r)&&(l||=[],l.push(u))})}finally{}l!==void 0&&Yl(l,t)}if(!a){let l=Je(o)||(()=>new o);t({provide:o,useFactory:l,deps:Z},o),t({provide:ms,useValue:o,multi:!0},o),t({provide:Fn,useValue:()=>_e(o),multi:!0},o)}let c=i.providers;if(c!=null&&!a){let l=e;Es(c,u=>{t(u,l)})}}else return!1;return o!==e&&e.providers!==void 0}function Es(e,t){for(let n of e)as(n)&&(n=n.\u0275providers),Array.isArray(n)?Es(n,t):t(n)}var Rg=A({provide:String,useValue:A});function Kl(e){return e!==null&&typeof e=="object"&&Rg in e}function Og(e){return!!(e&&e.useExisting)}function kg(e){return!!(e&&e.useFactory)}function gt(e){return typeof e=="function"}function Jl(e){return!!e.useClass}var Ds=new k(""),Zr={},Pl={},Qi;function Xt(){return Qi===void 0&&(Qi=new xn),Qi}var ge=class{},mt=class extends ge{parent;source;scopes;records=new Map;_ngOnDestroyHooks=new Set;_onDestroyHooks=[];get destroyed(){return this._destroyed}_destroyed=!1;injectorDefTypes;constructor(t,n,r,o){super(),this.parent=n,this.source=r,this.scopes=o,es(t,s=>this.processProvider(s)),this.records.set(gs,Kt(void 0,this)),o.has("environment")&&this.records.set(ge,Kt(void 0,this));let i=this.records.get(Ds);i!=null&&typeof i.value=="string"&&this.scopes.add(i.value),this.injectorDefTypes=new Set(this.get(ms,Z,{self:!0}))}retrieve(t,n){let r=ht(n)||0;try{return this.get(t,pt,r)}catch(o){if(Yt(o))return o;throw o}}destroy(){Nn(this),this._destroyed=!0;let t=v(null);try{for(let r of this._ngOnDestroyHooks)r.ngOnDestroy();let n=this._onDestroyHooks;this._onDestroyHooks=[];for(let r of n)r()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),v(t)}}onDestroy(t){return Nn(this),this._onDestroyHooks.push(t),()=>this.removeOnDestroy(t)}runInContext(t){Nn(this);let n=we(this),r=X(void 0),o;try{return t()}finally{we(n),X(r)}}get(t,n=pt,r){if(Nn(this),t.hasOwnProperty(kl))return t[kl](this);let o=ht(r),i,s=we(this),a=X(void 0);try{if(!(o&4)){let l=this.records.get(t);if(l===void 0){let u=Vg(t)&&Pn(t);u&&this.injectableDefInScope(u)?l=Kt(Xi(t),Zr):l=null,this.records.set(t,l)}if(l!=null)return this.hydrate(t,l,o)}let c=o&2?Xt():this.parent;return n=o&8&&n===pt?null:n,c.get(t,n)}catch(c){let l=wg(c);throw l===-200||l===-201?new M(l,null):c}finally{X(a),we(s)}}resolveInjectorInitializers(){let t=v(null),n=we(this),r=X(void 0),o;try{let i=this.get(Fn,Z,{self:!0});for(let s of i)s()}finally{we(n),X(r),v(t)}}toString(){let t=[],n=this.records;for(let r of n.keys())t.push($e(r));return`R3Injector[${t.join(", ")}]`}processProvider(t){t=U(t);let n=gt(t)?t:U(t&&t.provide),r=Lg(t);if(!gt(t)&&t.multi===!0){let o=this.records.get(n);o||(o=Kt(void 0,Zr,!0),o.factory=()=>Ji(o.multi),this.records.set(n,o)),n=t,o.multi.push(t)}this.records.set(n,r)}hydrate(t,n,r){let o=v(null);try{if(n.value===Pl)throw fs($e(t));return n.value===Zr&&(n.value=Pl,n.value=n.factory(void 0,r)),typeof n.value=="object"&&n.value&&jg(n.value)&&this._ngOnDestroyHooks.add(n.value),n.value}finally{v(o)}}injectableDefInScope(t){if(!t.providedIn)return!1;let n=U(t.providedIn);return typeof n=="string"?n==="any"||this.scopes.has(n):this.injectorDefTypes.has(n)}removeOnDestroy(t){let n=this._onDestroyHooks.indexOf(t);n!==-1&&this._onDestroyHooks.splice(n,1)}};function Xi(e){let t=Pn(e),n=t!==null?t.factory:Je(e);if(n!==null)return n;if(e instanceof k)throw new M(204,!1);if(e instanceof Function)return Pg(e);throw new M(204,!1)}function Pg(e){if(e.length>0)throw new M(204,!1);let n=Cg(e);return n!==null?()=>n.factory(e):()=>new e}function Lg(e){if(Kl(e))return Kt(void 0,e.useValue);{let t=Cs(e);return Kt(t,Zr)}}function Cs(e,t,n){let r;if(gt(e)){let o=U(e);return Je(o)||Xi(o)}else if(Kl(e))r=()=>U(e.useValue);else if(kg(e))r=()=>e.useFactory(...Ji(e.deps||[]));else if(Og(e))r=(o,i)=>_e(U(e.useExisting),i!==void 0&&i&8?8:void 0);else{let o=U(e&&(e.useClass||e.provide));if(Fg(e))r=()=>new o(...Ji(e.deps));else return Je(o)||Xi(o)}return r}function Nn(e){if(e.destroyed)throw new M(205,!1)}function Kt(e,t,n=!1){return{factory:e,value:t,multi:n?[]:void 0}}function Fg(e){return!!e.deps}function jg(e){return e!==null&&typeof e=="object"&&typeof e.ngOnDestroy=="function"}function Vg(e){return typeof e=="function"||typeof e=="object"&&e.ngMetadataName==="InjectionToken"}function es(e,t){for(let n of e)Array.isArray(n)?es(n,t):n&&as(n)?es(n.\u0275providers,t):t(n)}function uo(e,t){let n;e instanceof mt?(Nn(e),n=e):n=new Ki(e);let r,o=we(n),i=X(void 0);try{return t()}finally{we(o),X(i)}}function Xl(){return Ul()!==void 0||Qr()!=null}var se=0,m=1,E=2,q=3,ae=4,ee=5,vt=6,en=7,H=8,Ge=9,Se=10,O=11,tn=12,bs=13,It=14,te=15,tt=16,Et=17,xe=18,jn=19,Ts=20,Be=21,fo=22,Xe=23,oe=24,Dt=25,Ct=26,P=27,ws=1,_s=6,nt=7,Vn=8,bt=9,F=10;function Ae(e){return Array.isArray(e)&&typeof e[ws]=="object"}function ve(e){return Array.isArray(e)&&e[ws]===!0}function Ms(e){return(e.flags&4)!==0}function rt(e){return e.componentOffset>-1}function nn(e){return(e.flags&1)===1}function ce(e){return!!e.template}function rn(e){return(e[E]&512)!==0}function Tt(e){return(e[E]&256)===256}var Ns="svg",eu="math";function le(e){for(;Array.isArray(e);)e=e[se];return e}function Ss(e){for(;Array.isArray(e);){if(typeof e[ws]=="object")return e;e=e[se]}return null}function xs(e,t){return le(t[e])}function Ie(e,t){return le(t[e.index])}function Hn(e,t){return e.data[t]}function po(e,t){return e[t]}function As(e,t,n,r){n>=e.data.length&&(e.data[n]=null,e.blueprint[n]=null),t[n]=r}function ue(e,t){let n=t[e];return Ae(n)?n:n[se]}function tu(e){return(e[E]&4)===4}function ho(e){return(e[E]&128)===128}function nu(e){return ve(e[q])}function de(e,t){return t==null?null:e[t]}function Rs(e){e[Et]=0}function Os(e){e[E]&1024||(e[E]|=1024,ho(e)&&wt(e))}function ru(e,t){for(;e>0;)t=t[It],e--;return t}function Bn(e){return!!(e[E]&9216||e[oe]?.dirty)}function go(e){e[Se].changeDetectionScheduler?.notify(8),e[E]&64&&(e[E]|=1024),Bn(e)&&wt(e)}function wt(e){e[Se].changeDetectionScheduler?.notify(0);let t=et(e);for(;t!==null&&!(t[E]&8192||(t[E]|=8192,!ho(t)));)t=et(t)}function ks(e,t){if(Tt(e))throw new M(911,!1);e[Be]===null&&(e[Be]=[]),e[Be].push(t)}function ou(e,t){if(e[Be]===null)return;let n=e[Be].indexOf(t);n!==-1&&e[Be].splice(n,1)}function et(e){let t=e[q];return ve(t)?t[q]:t}function Ps(e){return e[en]??=[]}function Ls(e){return e.cleanup??=[]}function iu(e,t,n,r){let o=Ps(t);o.push(n),e.firstCreatePass&&Ls(e).push(r,o.length-1)}var b={lFrame:yu(null),bindingsEnabled:!0,skipHydrationRootTNode:null};var ts=!1;function su(){return b.lFrame.elementDepthCount}function au(){b.lFrame.elementDepthCount++}function Fs(){b.lFrame.elementDepthCount--}function mo(){return b.bindingsEnabled}function js(){return b.skipHydrationRootTNode!==null}function Vs(e){return b.skipHydrationRootTNode===e}function Hs(){b.skipHydrationRootTNode=null}function g(){return b.lFrame.lView}function L(){return b.lFrame.tView}function cu(e){return b.lFrame.contextLView=e,e[H]}function lu(e){return b.lFrame.contextLView=null,e}function B(){let e=Bs();for(;e!==null&&e.type===64;)e=e.parent;return e}function Bs(){return b.lFrame.currentTNode}function uu(){let e=b.lFrame,t=e.currentTNode;return e.isParent?t:t.parent}function on(e,t){let n=b.lFrame;n.currentTNode=e,n.isParent=t}function $s(){return b.lFrame.isParent}function Us(){b.lFrame.isParent=!1}function du(){return b.lFrame.contextLView}function qs(){return ts}function An(e){let t=ts;return ts=e,t}function Re(){let e=b.lFrame,t=e.bindingRootIndex;return t===-1&&(t=e.bindingRootIndex=e.tView.bindingStartIndex),t}function $n(){return b.lFrame.bindingIndex}function fu(e){return b.lFrame.bindingIndex=e}function Oe(){return b.lFrame.bindingIndex++}function _t(e){let t=b.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function pu(){return b.lFrame.inI18n}function hu(e,t){let n=b.lFrame;n.bindingIndex=n.bindingRootIndex=e,yo(t)}function gu(){return b.lFrame.currentDirectiveIndex}function yo(e){b.lFrame.currentDirectiveIndex=e}function Ws(e){let t=b.lFrame.currentDirectiveIndex;return t===-1?null:e[t]}function vo(){return b.lFrame.currentQueryIndex}function Un(e){b.lFrame.currentQueryIndex=e}function Hg(e){let t=e[m];return t.type===2?t.declTNode:t.type===1?e[ee]:null}function Gs(e,t,n){if(n&4){let o=t,i=e;for(;o=o.parent,o===null&&!(n&1);)if(o=Hg(i),o===null||(i=i[It],o.type&10))break;if(o===null)return!1;t=o,e=i}let r=b.lFrame=mu();return r.currentTNode=t,r.lView=e,!0}function Io(e){let t=mu(),n=e[m];b.lFrame=t,t.currentTNode=n.firstChild,t.lView=e,t.tView=n,t.contextLView=e,t.bindingIndex=n.bindingStartIndex,t.inI18n=!1}function mu(){let e=b.lFrame,t=e===null?null:e.child;return t===null?yu(e):t}function yu(e){let t={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null,inI18n:!1};return e!==null&&(e.child=t),t}function vu(){let e=b.lFrame;return b.lFrame=e.parent,e.currentTNode=null,e.lView=null,e}var zs=vu;function Eo(){let e=vu();e.isParent=!0,e.tView=null,e.selectedIndex=-1,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function Iu(e){return(b.lFrame.contextLView=ru(e,b.lFrame.contextLView))[H]}function ie(){return b.lFrame.selectedIndex}function ot(e){b.lFrame.selectedIndex=e}function sn(){let e=b.lFrame;return Hn(e.tView,e.selectedIndex)}function Eu(){b.lFrame.currentNamespace=Ns}function Du(){Bg()}function Bg(){b.lFrame.currentNamespace=null}function Cu(){return b.lFrame.currentNamespace}var bu=!0;function Do(){return bu}function qn(e){bu=e}function ns(e,t=null,n=null,r){let o=Qs(e,t,n,r);return o.resolveInjectorInitializers(),o}function Qs(e,t=null,n=null,r,o=new Set){let i=[n||Z,Zl(e)];return r=r||(typeof e=="object"?void 0:$e(e)),new mt(i,t||Xt(),r||null,o)}var me=class e{static THROW_IF_NOT_FOUND=pt;static NULL=new xn;static create(t,n){if(Array.isArray(t))return ns({name:""},n,t,"");{let r=t.name??"";return ns({name:r},t.parent,t.providers,r)}}static \u0275prov=W({token:e,providedIn:"any",factory:()=>_e(gs)});static __NG_ELEMENT_ID__=-1},Zs=new k(""),it=(()=>{class e{static __NG_ELEMENT_ID__=$g;static __NG_ENV_ID__=n=>n}return e})(),Jr=class extends it{_lView;constructor(t){super(),this._lView=t}get destroyed(){return Tt(this._lView)}onDestroy(t){let n=this._lView;return ks(n,t),()=>ou(n,t)}};function $g(){return new Jr(g())}var Tu=!1,Mt=(()=>{class e{taskId=0;pendingTasks=new Set;destroyed=!1;pendingTask=new En(!1);get hasPendingTasks(){return this.destroyed?!1:this.pendingTask.value}get hasPendingTasksObservable(){return this.destroyed?new _(n=>{n.next(!1),n.complete()}):this.pendingTask}add(){!this.hasPendingTasks&&!this.destroyed&&this.pendingTask.next(!0);let n=this.taskId++;return this.pendingTasks.add(n),n}has(n){return this.pendingTasks.has(n)}remove(n){this.pendingTasks.delete(n),this.pendingTasks.size===0&&this.hasPendingTasks&&this.pendingTask.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this.hasPendingTasks&&this.pendingTask.next(!1),this.destroyed=!0,this.pendingTask.unsubscribe()}static \u0275prov=W({token:e,providedIn:"root",factory:()=>new e})}return e})(),rs=class extends re{__isAsync;destroyRef=void 0;pendingTasks=void 0;constructor(t=!1){super(),this.__isAsync=t,Xl()&&(this.destroyRef=w(it,{optional:!0})??void 0,this.pendingTasks=w(Mt,{optional:!0})??void 0)}emit(t){let n=v(null);try{super.next(t)}finally{v(n)}}subscribe(t,n,r){let o=t,i=n||(()=>null),s=r;if(t&&typeof t=="object"){let c=t;o=c.next?.bind(c),i=c.error?.bind(c),s=c.complete?.bind(c)}this.__isAsync&&(i=this.wrapInTimeout(i),o&&(o=this.wrapInTimeout(o)),s&&(s=this.wrapInTimeout(s)));let a=super.subscribe({next:o,error:i,complete:s});return t instanceof $&&t.add(a),a}wrapInTimeout(t){return n=>{let r=this.pendingTasks?.add();setTimeout(()=>{try{t(n)}finally{r!==void 0&&this.pendingTasks?.remove(r)}})}}},He=rs;function Xr(...e){}function Ys(e){let t,n;function r(){e=Xr;try{n!==void 0&&typeof cancelAnimationFrame=="function"&&cancelAnimationFrame(n),t!==void 0&&clearTimeout(t)}catch{}}return t=setTimeout(()=>{e(),r()}),typeof requestAnimationFrame=="function"&&(n=requestAnimationFrame(()=>{e(),r()})),()=>r()}function Ks(e){return queueMicrotask(()=>e()),()=>{e=Xr}}var Js="isAngularZone",Rn=Js+"_ID",Ug=0,Me=class e{hasPendingMacrotasks=!1;hasPendingMicrotasks=!1;isStable=!0;onUnstable=new He(!1);onMicrotaskEmpty=new He(!1);onStable=new He(!1);onError=new He(!1);constructor(t){let{enableLongStackTrace:n=!1,shouldCoalesceEventChangeDetection:r=!1,shouldCoalesceRunChangeDetection:o=!1,scheduleInRootZone:i=Tu}=t;if(typeof Zone>"u")throw new M(908,!1);Zone.assertZonePatched();let s=this;s._nesting=0,s._outer=s._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(s._inner=s._inner.fork(new Zone.TaskTrackingZoneSpec)),n&&Zone.longStackTraceZoneSpec&&(s._inner=s._inner.fork(Zone.longStackTraceZoneSpec)),s.shouldCoalesceEventChangeDetection=!o&&r,s.shouldCoalesceRunChangeDetection=o,s.callbackScheduled=!1,s.scheduleInRootZone=i,Gg(s)}static isInAngularZone(){return typeof Zone<"u"&&Zone.current.get(Js)===!0}static assertInAngularZone(){if(!e.isInAngularZone())throw new M(909,!1)}static assertNotInAngularZone(){if(e.isInAngularZone())throw new M(909,!1)}run(t,n,r){return this._inner.run(t,n,r)}runTask(t,n,r,o){let i=this._inner,s=i.scheduleEventTask("NgZoneEvent: "+o,t,qg,Xr,Xr);try{return i.runTask(s,n,r)}finally{i.cancelTask(s)}}runGuarded(t,n,r){return this._inner.runGuarded(t,n,r)}runOutsideAngular(t){return this._outer.run(t)}},qg={};function Xs(e){if(e._nesting==0&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(()=>e.onStable.emit(null))}finally{e.isStable=!0}}}function Wg(e){if(e.isCheckStableRunning||e.callbackScheduled)return;e.callbackScheduled=!0;function t(){Ys(()=>{e.callbackScheduled=!1,os(e),e.isCheckStableRunning=!0,Xs(e),e.isCheckStableRunning=!1})}e.scheduleInRootZone?Zone.root.run(()=>{t()}):e._outer.run(()=>{t()}),os(e)}function Gg(e){let t=()=>{Wg(e)},n=Ug++;e._inner=e._inner.fork({name:"angular",properties:{[Js]:!0,[Rn]:n,[Rn+n]:!0},onInvokeTask:(r,o,i,s,a,c)=>{if(zg(c))return r.invokeTask(i,s,a,c);try{return Ll(e),r.invokeTask(i,s,a,c)}finally{(e.shouldCoalesceEventChangeDetection&&s.type==="eventTask"||e.shouldCoalesceRunChangeDetection)&&t(),Fl(e)}},onInvoke:(r,o,i,s,a,c,l)=>{try{return Ll(e),r.invoke(i,s,a,c,l)}finally{e.shouldCoalesceRunChangeDetection&&!e.callbackScheduled&&!Qg(c)&&t(),Fl(e)}},onHasTask:(r,o,i,s)=>{r.hasTask(i,s),o===i&&(s.change=="microTask"?(e._hasPendingMicrotasks=s.microTask,os(e),Xs(e)):s.change=="macroTask"&&(e.hasPendingMacrotasks=s.macroTask))},onHandleError:(r,o,i,s)=>(r.handleError(i,s),e.runOutsideAngular(()=>e.onError.emit(s)),!1)})}function os(e){e._hasPendingMicrotasks||(e.shouldCoalesceEventChangeDetection||e.shouldCoalesceRunChangeDetection)&&e.callbackScheduled===!0?e.hasPendingMicrotasks=!0:e.hasPendingMicrotasks=!1}function Ll(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function Fl(e){e._nesting--,Xs(e)}var On=class{hasPendingMicrotasks=!1;hasPendingMacrotasks=!1;isStable=!0;onUnstable=new He;onMicrotaskEmpty=new He;onStable=new He;onError=new He;run(t,n,r){return t.apply(n,r)}runGuarded(t,n,r){return t.apply(n,r)}runOutsideAngular(t){return t()}runTask(t,n,r,o){return t.apply(n,r)}};function zg(e){return wu(e,"__ignore_ng_zone__")}function Qg(e){return wu(e,"__scheduler_tick__")}function wu(e,t){return!Array.isArray(e)||e.length!==1?!1:e[0]?.data?.[t]===!0}var Ue=class{_console=console;handleError(t){this._console.error("ERROR",t)}},Nt=new k("",{factory:()=>{let e=w(Me),t=w(ge),n;return r=>{e.runOutsideAngular(()=>{t.destroyed&&!n?setTimeout(()=>{throw r}):(n??=t.get(Ue),n.handleError(r))})}}}),_u={provide:Fn,useValue:()=>{let e=w(Ue,{optional:!0})},multi:!0};function Co(e,t){let[n,r,o]=Ui(e,t?.equal),i=n,s=i[G];return i.set=r,i.update=o,i.asReadonly=ea.bind(i),i}function ea(){let e=this[G];if(e.readonlyFn===void 0){let t=()=>this();t[G]=e,e.readonlyFn=t}return e.readonlyFn}var Wn=(()=>{class e{view;node;constructor(n,r){this.view=n,this.node=r}static __NG_ELEMENT_ID__=Zg}return e})();function Zg(){return new Wn(g(),B())}var qe=class{},Gn=new k("",{factory:()=>!0});var ta=new k(""),na=(()=>{class e{internalPendingTasks=w(Mt);scheduler=w(qe);errorHandler=w(Nt);add(){let n=this.internalPendingTasks.add();return()=>{this.internalPendingTasks.has(n)&&(this.scheduler.notify(11),this.internalPendingTasks.remove(n))}}run(n){let r=this.add();n().catch(this.errorHandler).finally(r)}static \u0275prov=W({token:e,providedIn:"root",factory:()=>new e})}return e})(),bo=(()=>{class e{static \u0275prov=W({token:e,providedIn:"root",factory:()=>new is})}return e})(),is=class{dirtyEffectCount=0;queues=new Map;add(t){this.enqueue(t),this.schedule(t)}schedule(t){t.dirty&&this.dirtyEffectCount++}remove(t){let n=t.zone,r=this.queues.get(n);r.has(t)&&(r.delete(t),t.dirty&&this.dirtyEffectCount--)}enqueue(t){let n=t.zone;this.queues.has(n)||this.queues.set(n,new Set);let r=this.queues.get(n);r.has(t)||r.add(t)}flush(){for(;this.dirtyEffectCount>0;){let t=!1;for(let[n,r]of this.queues)n===null?t||=this.flushQueue(r):t||=n.run(()=>this.flushQueue(r));t||(this.dirtyEffectCount=0)}}flushQueue(t){let n=!1;for(let r of t)r.dirty&&(this.dirtyEffectCount--,n=!0,r.run());return n}},eo=class{[G];constructor(t){this[G]=t}destroy(){this[G].destroy()}};function Mu(e,t){let n=t?.injector??w(me),r=t?.manualCleanup!==!0?n.get(it):null,o,i=n.get(Wn,null,{optional:!0}),s=n.get(qe);return i!==null?(o=Jg(i.view,s,e),r instanceof Jr&&r._lView===i.view&&(r=null)):o=Xg(e,n.get(bo),s),o.injector=n,r!==null&&(o.onDestroyFns=[r.onDestroy(()=>o.destroy())]),new eo(o)}var Nu=K(Y({},Wi),{cleanupFns:void 0,zone:null,onDestroyFns:null,run(){let e=An(!1);try{Gi(this)}finally{An(e)}},cleanup(){if(!this.cleanupFns?.length)return;let e=v(null);try{for(;this.cleanupFns.length;)this.cleanupFns.pop()()}finally{this.cleanupFns=[],v(e)}}}),Yg=K(Y({},Nu),{consumerMarkedDirty(){this.scheduler.schedule(this),this.notifier.notify(12)},destroy(){if(ft(this),this.onDestroyFns!==null)for(let e of this.onDestroyFns)e();this.cleanup(),this.scheduler.remove(this)}}),Kg=K(Y({},Nu),{consumerMarkedDirty(){this.view[E]|=8192,wt(this.view),this.notifier.notify(13)},destroy(){if(ft(this),this.onDestroyFns!==null)for(let e of this.onDestroyFns)e();this.cleanup(),this.view[Xe]?.delete(this)}});function Jg(e,t,n){let r=Object.create(Kg);return r.view=e,r.zone=typeof Zone<"u"?Zone.current:null,r.notifier=t,r.fn=Su(r,n),e[Xe]??=new Set,e[Xe].add(r),r.consumerMarkedDirty(r),r}function Xg(e,t,n){let r=Object.create(Yg);return r.fn=Su(r,e),r.scheduler=t,r.notifier=n,r.zone=typeof Zone<"u"?Zone.current:null,r.scheduler.add(r),r.notifier.notify(12),r}function Su(e,t){return()=>{t(n=>(e.cleanupFns??=[]).push(n))}}function ra(e){return qi(e)}function ar(e){return{toString:e}.toString()}function sm(e){return typeof e=="function"}function ld(e,t,n,r){t!==null?t.applyValueToInputSignal(t,r):e[n]=r}var Oo=class{previousValue;currentValue;firstChange;constructor(t,n,r){this.previousValue=t,this.currentValue=n,this.firstChange=r}isFirstChange(){return this.firstChange}},am=(()=>{let e=()=>ud;return e.ngInherit=!0,e})();function ud(e){return e.type.prototype.ngOnChanges&&(e.setInput=lm),cm}function cm(){let e=fd(this),t=e?.current;if(t){let n=e.previous;if(n===ye)e.previous=t;else for(let r in t)n[r]=t[r];e.current=null,this.ngOnChanges(t)}}function lm(e,t,n,r,o){let i=this.declaredInputs[r],s=fd(e)||um(e,{previous:ye,current:null}),a=s.current||(s.current={}),c=s.previous,l=c[i];a[i]=new Oo(l&&l.currentValue,n,c===ye),ld(e,t,o,n)}var dd="__ngSimpleChanges__";function fd(e){return e[dd]||null}function um(e,t){return e[dd]=t}var xu=[];var R=function(e,t=null,n){for(let r=0;r<xu.length;r++){let o=xu[r];o(e,t,n)}},x=(function(e){return e[e.TemplateCreateStart=0]="TemplateCreateStart",e[e.TemplateCreateEnd=1]="TemplateCreateEnd",e[e.TemplateUpdateStart=2]="TemplateUpdateStart",e[e.TemplateUpdateEnd=3]="TemplateUpdateEnd",e[e.LifecycleHookStart=4]="LifecycleHookStart",e[e.LifecycleHookEnd=5]="LifecycleHookEnd",e[e.OutputStart=6]="OutputStart",e[e.OutputEnd=7]="OutputEnd",e[e.BootstrapApplicationStart=8]="BootstrapApplicationStart",e[e.BootstrapApplicationEnd=9]="BootstrapApplicationEnd",e[e.BootstrapComponentStart=10]="BootstrapComponentStart",e[e.BootstrapComponentEnd=11]="BootstrapComponentEnd",e[e.ChangeDetectionStart=12]="ChangeDetectionStart",e[e.ChangeDetectionEnd=13]="ChangeDetectionEnd",e[e.ChangeDetectionSyncStart=14]="ChangeDetectionSyncStart",e[e.ChangeDetectionSyncEnd=15]="ChangeDetectionSyncEnd",e[e.AfterRenderHooksStart=16]="AfterRenderHooksStart",e[e.AfterRenderHooksEnd=17]="AfterRenderHooksEnd",e[e.ComponentStart=18]="ComponentStart",e[e.ComponentEnd=19]="ComponentEnd",e[e.DeferBlockStateStart=20]="DeferBlockStateStart",e[e.DeferBlockStateEnd=21]="DeferBlockStateEnd",e[e.DynamicComponentStart=22]="DynamicComponentStart",e[e.DynamicComponentEnd=23]="DynamicComponentEnd",e[e.HostBindingsUpdateStart=24]="HostBindingsUpdateStart",e[e.HostBindingsUpdateEnd=25]="HostBindingsUpdateEnd",e})(x||{});function dm(e,t,n){let{ngOnChanges:r,ngOnInit:o,ngDoCheck:i}=t.type.prototype;if(r){let s=ud(t);(n.preOrderHooks??=[]).push(e,s),(n.preOrderCheckHooks??=[]).push(e,s)}o&&(n.preOrderHooks??=[]).push(0-e,o),i&&((n.preOrderHooks??=[]).push(e,i),(n.preOrderCheckHooks??=[]).push(e,i))}function pd(e,t){for(let n=t.directiveStart,r=t.directiveEnd;n<r;n++){let i=e.data[n].type.prototype,{ngAfterContentInit:s,ngAfterContentChecked:a,ngAfterViewInit:c,ngAfterViewChecked:l,ngOnDestroy:u}=i;s&&(e.contentHooks??=[]).push(-n,s),a&&((e.contentHooks??=[]).push(n,a),(e.contentCheckHooks??=[]).push(n,a)),c&&(e.viewHooks??=[]).push(-n,c),l&&((e.viewHooks??=[]).push(n,l),(e.viewCheckHooks??=[]).push(n,l)),u!=null&&(e.destroyHooks??=[]).push(n,u)}}function No(e,t,n){hd(e,t,3,n)}function So(e,t,n,r){(e[E]&3)===n&&hd(e,t,n,r)}function oa(e,t){let n=e[E];(n&3)===t&&(n&=16383,n+=1,e[E]=n)}function hd(e,t,n,r){let o=r!==void 0?e[Et]&65535:0,i=r??-1,s=t.length-1,a=0;for(let c=o;c<s;c++)if(typeof t[c+1]=="number"){if(a=t[c],r!=null&&a>=r)break}else t[c]<0&&(e[Et]+=65536),(a<i||i==-1)&&(fm(e,n,t,c),e[Et]=(e[Et]&4294901760)+c+2),c++}function Au(e,t){R(x.LifecycleHookStart,e,t);let n=v(null);try{t.call(e)}finally{v(n),R(x.LifecycleHookEnd,e,t)}}function fm(e,t,n,r){let o=n[r]<0,i=n[r+1],s=o?-n[r]:n[r],a=e[s];o?e[E]>>14<e[Et]>>16&&(e[E]&3)===t&&(e[E]+=16384,Au(a,i)):Au(a,i)}var cn=-1,xt=class{factory;name;injectImpl;resolving=!1;canSeeViewProviders;multi;componentProviders;index;providerFactory;constructor(t,n,r,o){this.factory=t,this.name=o,this.canSeeViewProviders=n,this.injectImpl=r}};function pm(e){return(e.flags&8)!==0}function hm(e){return(e.flags&16)!==0}function gm(e,t,n){let r=0;for(;r<n.length;){let o=n[r];if(typeof o=="number"){if(o!==0)break;r++;let i=n[r++],s=n[r++],a=n[r++];e.setAttribute(t,s,a,i)}else{let i=o,s=n[++r];mm(i)?e.setProperty(t,i,s):e.setAttribute(t,i,s),r++}}return r}function gd(e){return e===3||e===4||e===6}function mm(e){return e.charCodeAt(0)===64}function ln(e,t){if(!(t===null||t.length===0))if(e===null||e.length===0)e=t.slice();else{let n=-1;for(let r=0;r<t.length;r++){let o=t[r];typeof o=="number"?n=o:n===0||(n===-1||n===2?Ru(e,n,o,null,t[++r]):Ru(e,n,o,null,null))}}return e}function Ru(e,t,n,r,o){let i=0,s=e.length;if(t===-1)s=-1;else for(;i<e.length;){let a=e[i++];if(typeof a=="number"){if(a===t){s=-1;break}else if(a>t){s=i-1;break}}}for(;i<e.length;){let a=e[i];if(typeof a=="number")break;if(a===n){o!==null&&(e[i+1]=o);return}i++,o!==null&&i++}s!==-1&&(e.splice(s,0,t),i=s+1),e.splice(i++,0,n),o!==null&&e.splice(i++,0,o)}function md(e){return e!==cn}function ko(e){return e&32767}function ym(e){return e>>16}function Po(e,t){let n=ym(e),r=t;for(;n>0;)r=r[It],n--;return r}var ha=!0;function Lo(e){let t=ha;return ha=e,t}var vm=256,yd=vm-1,vd=5,Im=0,ke={};function Em(e,t,n){let r;typeof n=="string"?r=n.charCodeAt(0)||0:n.hasOwnProperty(yt)&&(r=n[yt]),r==null&&(r=n[yt]=Im++);let o=r&yd,i=1<<o;t.data[e+(o>>vd)]|=i}function Fo(e,t){let n=Id(e,t);if(n!==-1)return n;let r=t[m];r.firstCreatePass&&(e.injectorIndex=t.length,ia(r.data,e),ia(t,null),ia(r.blueprint,null));let o=Ka(e,t),i=e.injectorIndex;if(md(o)){let s=ko(o),a=Po(o,t),c=a[m].data;for(let l=0;l<8;l++)t[i+l]=a[s+l]|c[s+l]}return t[i+8]=o,i}function ia(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Id(e,t){return e.injectorIndex===-1||e.parent&&e.parent.injectorIndex===e.injectorIndex||t[e.injectorIndex+8]===null?-1:e.injectorIndex}function Ka(e,t){if(e.parent&&e.parent.injectorIndex!==-1)return e.parent.injectorIndex;let n=0,r=null,o=t;for(;o!==null;){if(r=Td(o),r===null)return cn;if(n++,o=o[It],r.injectorIndex!==-1)return r.injectorIndex|n<<16}return cn}function ga(e,t,n){Em(e,t,n)}function Dm(e,t){if(t==="class")return e.classes;if(t==="style")return e.styles;let n=e.attrs;if(n){let r=n.length,o=0;for(;o<r;){let i=n[o];if(gd(i))break;if(i===0)o=o+2;else if(typeof i=="number")for(o++;o<r&&typeof n[o]=="string";)o++;else{if(i===t)return n[o+1];o=o+2}}}return null}function Ed(e,t,n){if(n&8||e!==void 0)return e;io(t,"NodeInjector")}function Dd(e,t,n,r){if(n&8&&r===void 0&&(r=null),(n&3)===0){let o=e[Ge],i=X(void 0);try{return o?o.get(t,r,n&8):ps(t,r,n&8)}finally{X(i)}}return Ed(r,t,n)}function Cd(e,t,n,r=0,o){if(e!==null){if(t[E]&2048&&!(r&2)){let s=_m(e,t,n,r,ke);if(s!==ke)return s}let i=bd(e,t,n,r,ke);if(i!==ke)return i}return Dd(t,n,r,o)}function bd(e,t,n,r,o){let i=bm(n);if(typeof i=="function"){if(!Gs(t,e,r))return r&1?Ed(o,n,r):Dd(t,n,r,o);try{let s;if(s=i(r),s==null&&!(r&8))io(n);else return s}finally{zs()}}else if(typeof i=="number"){let s=null,a=Id(e,t),c=cn,l=r&1?t[te][ee]:null;for((a===-1||r&4)&&(c=a===-1?Ka(e,t):t[a+8],c===cn||!ku(r,!1)?a=-1:(s=t[m],a=ko(c),t=Po(c,t)));a!==-1;){let u=t[m];if(Ou(i,a,u.data)){let d=Cm(a,t,n,s,r,l);if(d!==ke)return d}c=t[a+8],c!==cn&&ku(r,t[m].data[a+8]===l)&&Ou(i,a,t)?(s=u,a=ko(c),t=Po(c,t)):a=-1}}return o}function Cm(e,t,n,r,o,i){let s=t[m],a=s.data[e+8],c=r==null?rt(a)&&ha:r!=s&&(a.type&3)!==0,l=o&1&&i===a,u=xo(a,s,n,c,l);return u!==null?Kn(t,s,u,a,o):ke}function xo(e,t,n,r,o){let i=e.providerIndexes,s=t.data,a=i&1048575,c=e.directiveStart,l=e.directiveEnd,u=i>>20,d=r?a:a+u,p=o?a+u:l;for(let f=d;f<p;f++){let h=s[f];if(f<c&&n===h||f>=c&&h.type===n)return f}if(o){let f=s[c];if(f&&ce(f)&&f.type===n)return c}return null}function Kn(e,t,n,r,o){let i=e[n],s=t.data;if(i instanceof xt){let a=i;if(a.resolving){let f=Hl(s[n]);throw fs(f)}let c=Lo(a.canSeeViewProviders);a.resolving=!0;let l=s[n].type||s[n],u,d=a.injectImpl?X(a.injectImpl):null,p=Gs(e,r,0);try{i=e[n]=a.factory(void 0,o,s,e,r),t.firstCreatePass&&n>=r.directiveStart&&dm(n,s[n],t)}finally{d!==null&&X(d),Lo(c),a.resolving=!1,zs()}}return i}function bm(e){if(typeof e=="string")return e.charCodeAt(0)||0;let t=e.hasOwnProperty(yt)?e[yt]:void 0;return typeof t=="number"?t>=0?t&yd:Tm:t}function Ou(e,t,n){let r=1<<e;return!!(n[t+(e>>vd)]&r)}function ku(e,t){return!(e&2)&&!(e&1&&t)}var St=class{_tNode;_lView;constructor(t,n){this._tNode=t,this._lView=n}get(t,n,r){return Cd(this._tNode,this._lView,t,ht(r),n)}};function Tm(){return new St(B(),g())}function wm(e){return ar(()=>{let t=e.prototype.constructor,n=t[Sn]||ma(t),r=Object.prototype,o=Object.getPrototypeOf(e.prototype).constructor;for(;o&&o!==r;){let i=o[Sn]||ma(o);if(i&&i!==n)return i;o=Object.getPrototypeOf(o)}return i=>new i})}function ma(e){return ss(e)?()=>{let t=ma(U(e));return t&&t()}:Je(e)}function _m(e,t,n,r,o){let i=e,s=t;for(;i!==null&&s!==null&&s[E]&2048&&!rn(s);){let a=bd(i,s,n,r|2,ke);if(a!==ke)return a;let c=i.parent;if(!c){let l=s[Ts];if(l){let u=l.get(n,ke,r);if(u!==ke)return u}c=Td(s),s=s[It]}i=c}return o}function Td(e){let t=e[m],n=t.type;return n===2?t.declTNode:n===1?e[ee]:null}function wd(e){return Dm(B(),e)}function Mm(){return hn(B(),g())}function hn(e,t){return new cr(Ie(e,t))}var cr=(()=>{class e{nativeElement;constructor(n){this.nativeElement=n}static __NG_ELEMENT_ID__=Mm}return e})();function _d(e){return e instanceof cr?e.nativeElement:e}function Nm(){return this._results[Symbol.iterator]()}var jo=class{_emitDistinctChangesOnly;dirty=!0;_onDirty=void 0;_results=[];_changesDetected=!1;_changes=void 0;length=0;first=void 0;last=void 0;get changes(){return this._changes??=new re}constructor(t=!1){this._emitDistinctChangesOnly=t}get(t){return this._results[t]}map(t){return this._results.map(t)}filter(t){return this._results.filter(t)}find(t){return this._results.find(t)}reduce(t,n){return this._results.reduce(t,n)}forEach(t){this._results.forEach(t)}some(t){return this._results.some(t)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(t,n){this.dirty=!1;let r=Wl(t);(this._changesDetected=!ql(this._results,r,n))&&(this._results=r,this.length=r.length,this.last=r[this.length-1],this.first=r[0])}notifyOnChanges(){this._changes!==void 0&&(this._changesDetected||!this._emitDistinctChangesOnly)&&this._changes.next(this)}onDirty(t){this._onDirty=t}setDirty(){this.dirty=!0,this._onDirty?.()}destroy(){this._changes!==void 0&&(this._changes.complete(),this._changes.unsubscribe())}[Symbol.iterator]=Nm};function Md(e){return(e.flags&128)===128}var Ja=(function(e){return e[e.OnPush=0]="OnPush",e[e.Default=1]="Default",e})(Ja||{}),Nd=new Map,Sm=0;function xm(){return Sm++}function Am(e){Nd.set(e[jn],e)}function ya(e){Nd.delete(e[jn])}var Pu="__ngContext__";function un(e,t){Ae(t)?(e[Pu]=t[jn],Am(t)):e[Pu]=t}function Sd(e){return Ad(e[tn])}function xd(e){return Ad(e[ae])}function Ad(e){for(;e!==null&&!ve(e);)e=e[ae];return e}var va;function Rm(e){va=e}function Rd(){if(va!==void 0)return va;if(typeof document<"u")return document;throw new M(210,!1)}var Om=new k("",{factory:()=>km}),km="ng";var Od=new k(""),Pm=new k("",{providedIn:"platform",factory:()=>"unknown"}),Lm=new k(""),Fm=new k("",{factory:()=>w(Zs).body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null}),kd={breakpoints:[16,32,48,64,96,128,256,384,640,750,828,1080,1200,1920,2048,3840],placeholderResolution:30,disableImageSizeWarning:!1,disableImageLazyLoadWarning:!1},jm=new k("",{factory:()=>kd});var Pd="r";var Ld="di";var Fd=!1,jd=new k("",{factory:()=>Fd});var Vm=(e,t,n,r)=>{};function Hm(e,t,n,r){Vm(e,t,n,r)}function ei(e){return(e.flags&32)===32}var Bm=()=>null;function Vd(e,t,n=!1){return Bm(e,t,n)}function Hd(e,t){let n=e.contentQueries;if(n!==null){let r=v(null);try{for(let o=0;o<n.length;o+=2){let i=n[o],s=n[o+1];if(s!==-1){let a=e.data[s];Un(i),a.contentQueries(2,t[s],s)}}}finally{v(r)}}}function Ia(e,t,n){Un(0);let r=v(null);try{t(e,n)}finally{v(r)}}function Xa(e,t,n){if(Ms(t)){let r=v(null);try{let o=t.directiveStart,i=t.directiveEnd;for(let s=o;s<i;s++){let a=e.data[s];if(a.contentQueries){let c=n[s];a.contentQueries(1,c,s)}}}finally{v(r)}}}var At=(function(e){return e[e.Emulated=0]="Emulated",e[e.None=2]="None",e[e.ShadowDom=3]="ShadowDom",e[e.ExperimentalIsolatedShadowDom=4]="ExperimentalIsolatedShadowDom",e})(At||{}),To;function Bd(){if(To===void 0&&(To=null,Ne.trustedTypes))try{To=Ne.trustedTypes.createPolicy("angular",{createHTML:e=>e,createScript:e=>e,createScriptURL:e=>e})}catch{}return To}function ti(e){return Bd()?.createHTML(e)||e}function $m(e){return Bd()?.createScriptURL(e)||e}var wo;function $d(){if(wo===void 0&&(wo=null,Ne.trustedTypes))try{wo=Ne.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:e=>e,createScript:e=>e,createScriptURL:e=>e})}catch{}return wo}function Lu(e){return $d()?.createHTML(e)||e}function Fu(e){return $d()?.createScriptURL(e)||e}var ze=class{changingThisBreaksApplicationSecurity;constructor(t){this.changingThisBreaksApplicationSecurity=t}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${to})`}},Ea=class extends ze{getTypeName(){return"HTML"}},Da=class extends ze{getTypeName(){return"Style"}},Ca=class extends ze{getTypeName(){return"Script"}},ba=class extends ze{getTypeName(){return"URL"}},Ta=class extends ze{getTypeName(){return"ResourceURL"}};function gn(e){return e instanceof ze?e.changingThisBreaksApplicationSecurity:e}function ni(e,t){let n=Ud(e);if(n!=null&&n!==t){if(n==="ResourceURL"&&t==="URL")return!0;throw new Error(`Required a safe ${t}, got a ${n} (see ${to})`)}return n===t}function Ud(e){return e instanceof ze&&e.getTypeName()||null}function Um(e){return new Ea(e)}function qm(e){return new Da(e)}function Wm(e){return new Ca(e)}function Gm(e){return new ba(e)}function zm(e){return new Ta(e)}function Qm(e){let t=new _a(e);return Zm()?new wa(t):t}var wa=class{inertDocumentHelper;constructor(t){this.inertDocumentHelper=t}getInertBodyElement(t){t="<body><remove></remove>"+t;try{let n=new window.DOMParser().parseFromString(ti(t),"text/html").body;return n===null?this.inertDocumentHelper.getInertBodyElement(t):(n.firstChild?.remove(),n)}catch{return null}}},_a=class{defaultDoc;inertDocument;constructor(t){this.defaultDoc=t,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(t){let n=this.inertDocument.createElement("template");return n.innerHTML=ti(t),n}};function Zm(){try{return!!new window.DOMParser().parseFromString(ti(""),"text/html")}catch{return!1}}var Ym=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function ec(e){return e=String(e),e.match(Ym)?e:"unsafe:"+e}function Qe(e){let t={};for(let n of e.split(","))t[n]=!0;return t}function lr(...e){let t={};for(let n of e)for(let r in n)n.hasOwnProperty(r)&&(t[r]=!0);return t}var qd=Qe("area,br,col,hr,img,wbr"),Wd=Qe("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Gd=Qe("rp,rt"),Km=lr(Gd,Wd),Jm=lr(Wd,Qe("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),Xm=lr(Gd,Qe("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),ju=lr(qd,Jm,Xm,Km),zd=Qe("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),ey=Qe("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),ty=Qe("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext"),ny=lr(zd,ey,ty),ry=Qe("script,style,template"),Ma=class{sanitizedSomething=!1;buf=[];sanitizeChildren(t){let n=t.firstChild,r=!0,o=[];for(;n;){if(n.nodeType===Node.ELEMENT_NODE?r=this.startElement(n):n.nodeType===Node.TEXT_NODE?this.chars(n.nodeValue):this.sanitizedSomething=!0,r&&n.firstChild){o.push(n),n=sy(n);continue}for(;n;){n.nodeType===Node.ELEMENT_NODE&&this.endElement(n);let i=iy(n);if(i){n=i;break}n=o.pop()}}return this.buf.join("")}startElement(t){let n=Vu(t).toLowerCase();if(!ju.hasOwnProperty(n))return this.sanitizedSomething=!0,!ry.hasOwnProperty(n);this.buf.push("<"),this.buf.push(n);let r=t.attributes;for(let o=0;o<r.length;o++){let i=r.item(o),s=i.name,a=s.toLowerCase();if(!ny.hasOwnProperty(a)){this.sanitizedSomething=!0;continue}let c=i.value;zd[a]&&(c=ec(c)),this.buf.push(" ",s,'="',Hu(c),'"')}return this.buf.push(">"),!0}endElement(t){let n=Vu(t).toLowerCase();ju.hasOwnProperty(n)&&!qd.hasOwnProperty(n)&&(this.buf.push("</"),this.buf.push(n),this.buf.push(">"))}chars(t){this.buf.push(Hu(t))}};function oy(e,t){return(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}function iy(e){let t=e.nextSibling;if(t&&e!==t.previousSibling)throw Qd(t);return t}function sy(e){let t=e.firstChild;if(t&&oy(e,t))throw Qd(t);return t}function Vu(e){let t=e.nodeName;return typeof t=="string"?t:"FORM"}function Qd(e){return new Error(`Failed to sanitize html because the element is clobbered: ${e.outerHTML}`)}var ay=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,cy=/([^\#-~ |!])/g;function Hu(e){return e.replace(/&/g,"&amp;").replace(ay,function(t){let n=t.charCodeAt(0),r=t.charCodeAt(1);return"&#"+((n-55296)*1024+(r-56320)+65536)+";"}).replace(cy,function(t){return"&#"+t.charCodeAt(0)+";"}).replace(/</g,"&lt;").replace(/>/g,"&gt;")}var _o;function Zd(e,t){let n=null;try{_o=_o||Qm(e);let r=t?String(t):"";n=_o.getInertBodyElement(r);let o=5,i=r;do{if(o===0)throw new Error("Failed to sanitize html because the input is unstable");o--,r=i,i=n.innerHTML,n=_o.getInertBodyElement(r)}while(r!==i);let a=new Ma().sanitizeChildren(Bu(n)||n);return ti(a)}finally{if(n){let r=Bu(n)||n;for(;r.firstChild;)r.firstChild.remove()}}}function Bu(e){return"content"in e&&ly(e)?e.content:null}function ly(e){return e.nodeType===Node.ELEMENT_NODE&&e.nodeName==="TEMPLATE"}var ur=(function(e){return e[e.NONE=0]="NONE",e[e.HTML=1]="HTML",e[e.STYLE=2]="STYLE",e[e.SCRIPT=3]="SCRIPT",e[e.URL=4]="URL",e[e.RESOURCE_URL=5]="RESOURCE_URL",e})(ur||{});function uy(e){let t=tc();return t?Lu(t.sanitize(ur.HTML,e)||""):ni(e,"HTML")?Lu(gn(e)):Zd(Rd(),V(e))}function Yd(e){let t=tc();return t?t.sanitize(ur.URL,e)||"":ni(e,"URL")?gn(e):ec(V(e))}function Kd(e){let t=tc();if(t)return Fu(t.sanitize(ur.RESOURCE_URL,e)||"");if(ni(e,"ResourceURL"))return Fu(gn(e));throw new M(904,!1)}function dy(e){return $m(e[0])}function fy(e,t){return t==="src"&&(e==="embed"||e==="frame"||e==="iframe"||e==="media"||e==="script")||t==="href"&&(e==="base"||e==="link")?Kd:Yd}function py(e,t,n){return fy(t,n)(e)}function tc(){let e=g();return e&&e[Se].sanitizer}var hy=/^>|^->|<!--|-->|--!>|<!-$/g,gy=/(<|>)/g,my="\u200B$1\u200B";function yy(e){return e.replace(hy,t=>t.replace(gy,my))}function vy(e){return e.ownerDocument.defaultView}function Jd(e){return e instanceof Function?e():e}function Iy(e,t,n){let r=e.length;for(;;){let o=e.indexOf(t,n);if(o===-1)return o;if(o===0||e.charCodeAt(o-1)<=32){let i=t.length;if(o+i===r||e.charCodeAt(o+i)<=32)return o}n=o+1}}var Xd="ng-template";function Ey(e,t,n,r){let o=0;if(r){for(;o<t.length&&typeof t[o]=="string";o+=2)if(t[o]==="class"&&Iy(t[o+1].toLowerCase(),n,0)!==-1)return!0}else if(nc(e))return!1;if(o=t.indexOf(1,o),o>-1){let i;for(;++o<t.length&&typeof(i=t[o])=="string";)if(i.toLowerCase()===n)return!0}return!1}function nc(e){return e.type===4&&e.value!==Xd}function Dy(e,t,n){let r=e.type===4&&!n?Xd:e.value;return t===r}function Cy(e,t,n){let r=4,o=e.attrs,i=o!==null?wy(o):0,s=!1;for(let a=0;a<t.length;a++){let c=t[a];if(typeof c=="number"){if(!s&&!Ee(r)&&!Ee(c))return!1;if(s&&Ee(c))continue;s=!1,r=c|r&1;continue}if(!s)if(r&4){if(r=2|r&1,c!==""&&!Dy(e,c,n)||c===""&&t.length===1){if(Ee(r))return!1;s=!0}}else if(r&8){if(o===null||!Ey(e,o,c,n)){if(Ee(r))return!1;s=!0}}else{let l=t[++a],u=by(c,o,nc(e),n);if(u===-1){if(Ee(r))return!1;s=!0;continue}if(l!==""){let d;if(u>i?d="":d=o[u+1].toLowerCase(),r&2&&l!==d){if(Ee(r))return!1;s=!0}}}}return Ee(r)||s}function Ee(e){return(e&1)===0}function by(e,t,n,r){if(t===null)return-1;let o=0;if(r||!n){let i=!1;for(;o<t.length;){let s=t[o];if(s===e)return o;if(s===3||s===6)i=!0;else if(s===1||s===2){let a=t[++o];for(;typeof a=="string";)a=t[++o];continue}else{if(s===4)break;if(s===0){o+=4;continue}}o+=i?1:2}return-1}else return _y(t,e)}function ef(e,t,n=!1){for(let r=0;r<t.length;r++)if(Cy(e,t[r],n))return!0;return!1}function Ty(e){let t=e.attrs;if(t!=null){let n=t.indexOf(5);if((n&1)===0)return t[n+1]}return null}function wy(e){for(let t=0;t<e.length;t++){let n=e[t];if(gd(n))return t}return e.length}function _y(e,t){let n=e.indexOf(4);if(n>-1)for(n++;n<e.length;){let r=e[n];if(typeof r=="number")return-1;if(r===t)return n;n++}return-1}function My(e,t){e:for(let n=0;n<t.length;n++){let r=t[n];if(e.length===r.length){for(let o=0;o<e.length;o++)if(e[o]!==r[o])continue e;return!0}}return!1}function $u(e,t){return e?":not("+t.trim()+")":t}function Ny(e){let t=e[0],n=1,r=2,o="",i=!1;for(;n<e.length;){let s=e[n];if(typeof s=="string")if(r&2){let a=e[++n];o+="["+s+(a.length>0?'="'+a+'"':"")+"]"}else r&8?o+="."+s:r&4&&(o+=" "+s);else o!==""&&!Ee(s)&&(t+=$u(i,o),o=""),r=s,i=i||!Ee(r);n++}return o!==""&&(t+=$u(i,o)),t}function Sy(e){return e.map(Ny).join(",")}function xy(e){let t=[],n=[],r=1,o=2;for(;r<e.length;){let i=e[r];if(typeof i=="string")o===2?i!==""&&t.push(i,e[++r]):o===8&&n.push(i);else{if(!Ee(o))break;o=i}r++}return n.length&&t.push(1,...n),t}var j={};function Ay(e,t){return e.createText(t)}function Ry(e,t,n){e.setValue(t,n)}function Oy(e,t){return e.createComment(yy(t))}function tf(e,t,n){return e.createElement(t,n)}function Vo(e,t,n,r,o){e.insertBefore(t,n,r,o)}function nf(e,t,n){e.appendChild(t,n)}function Uu(e,t,n,r,o){r!==null?Vo(e,t,n,r,o):nf(e,t,n)}function rf(e,t,n,r){e.removeChild(null,t,n,r)}function ky(e,t,n){e.setAttribute(t,"style",n)}function Py(e,t,n){n===""?e.removeAttribute(t,"class"):e.setAttribute(t,"class",n)}function of(e,t,n){let{mergedAttrs:r,classes:o,styles:i}=n;r!==null&&gm(e,t,r),o!==null&&Py(e,t,o),i!==null&&ky(e,t,i)}function rc(e,t,n,r,o,i,s,a,c,l,u){let d=P+r,p=d+o,f=Ly(d,p),h=typeof l=="function"?l():l;return f[m]={type:e,blueprint:f,template:n,queries:null,viewQuery:a,declTNode:t,data:f.slice().fill(null,d),bindingStartIndex:d,expandoStartIndex:p,hostBindingOpCodes:null,firstCreatePass:!0,firstUpdatePass:!0,staticViewQueries:!1,staticContentQueries:!1,preOrderHooks:null,preOrderCheckHooks:null,contentHooks:null,contentCheckHooks:null,viewHooks:null,viewCheckHooks:null,destroyHooks:null,cleanup:null,contentQueries:null,components:null,directiveRegistry:typeof i=="function"?i():i,pipeRegistry:typeof s=="function"?s():s,firstChild:null,schemas:c,consts:h,incompleteFirstPass:!1,ssrId:u}}function Ly(e,t){let n=[];for(let r=0;r<t;r++)n.push(r<e?null:j);return n}function Fy(e){let t=e.tView;return t===null||t.incompleteFirstPass?e.tView=rc(1,null,e.template,e.decls,e.vars,e.directiveDefs,e.pipeDefs,e.viewQuery,e.schemas,e.consts,e.id):t}function oc(e,t,n,r,o,i,s,a,c,l,u){let d=t.blueprint.slice();return d[se]=o,d[E]=r|4|128|8|64|1024,(l!==null||e&&e[E]&2048)&&(d[E]|=2048),Rs(d),d[q]=d[It]=e,d[H]=n,d[Se]=s||e&&e[Se],d[O]=a||e&&e[O],d[Ge]=c||e&&e[Ge]||null,d[ee]=i,d[jn]=xm(),d[vt]=u,d[Ts]=l,d[te]=t.type==2?e[te]:d,d}function jy(e,t,n){let r=Ie(t,e),o=Fy(n),i=e[Se].rendererFactory,s=ic(e,oc(e,o,null,sf(n),r,t,null,i.createRenderer(r,n),null,null,null));return e[t.index]=s}function sf(e){let t=16;return e.signals?t=4096:e.onPush&&(t=64),t}function af(e,t,n,r){if(n===0)return-1;let o=t.length;for(let i=0;i<n;i++)t.push(r),e.blueprint.push(r),e.data.push(null);return o}function ic(e,t){return e[tn]?e[bs][ae]=t:e[tn]=t,e[bs]=t,t}function Vy(e=1){cf(L(),g(),ie()+e,!1)}function cf(e,t,n,r){if(!r)if((t[E]&3)===3){let i=e.preOrderCheckHooks;i!==null&&No(t,i,n)}else{let i=e.preOrderHooks;i!==null&&So(t,i,0,n)}ot(n)}var ri=(function(e){return e[e.None=0]="None",e[e.SignalBased=1]="SignalBased",e[e.HasDecoratorInputTransform=2]="HasDecoratorInputTransform",e})(ri||{});function Na(e,t,n,r){let o=v(null);try{let[i,s,a]=e.inputs[n],c=null;(s&ri.SignalBased)!==0&&(c=t[i][G]),c!==null&&c.transformFn!==void 0?r=c.transformFn(r):a!==null&&(r=a.call(t,r)),e.setInput!==null?e.setInput(t,c,r,n,i):ld(t,c,i,r)}finally{v(o)}}var Ho=(function(e){return e[e.Important=1]="Important",e[e.DashCase=2]="DashCase",e})(Ho||{}),Hy;function sc(e,t){return Hy(e,t)}var Jn=new Set,oi=(function(e){return e[e.CHANGE_DETECTION=0]="CHANGE_DETECTION",e[e.AFTER_NEXT_RENDER=1]="AFTER_NEXT_RENDER",e})(oi||{}),dr=new k(""),qu=new Set;function Ze(e){qu.has(e)||(qu.add(e),performance?.mark?.("mark_feature_usage",{detail:{feature:e}}))}var ac=(()=>{class e{impl=null;execute(){this.impl?.execute()}static \u0275prov=W({token:e,providedIn:"root",factory:()=>new e})}return e})(),lf=[0,1,2,3],uf=(()=>{class e{ngZone=w(Me);scheduler=w(qe);errorHandler=w(Ue,{optional:!0});sequences=new Set;deferredRegistrations=new Set;executing=!1;constructor(){w(dr,{optional:!0})}execute(){let n=this.sequences.size>0;n&&R(x.AfterRenderHooksStart),this.executing=!0;for(let r of lf)for(let o of this.sequences)if(!(o.erroredOrDestroyed||!o.hooks[r]))try{o.pipelinedValue=this.ngZone.runOutsideAngular(()=>this.maybeTrace(()=>{let i=o.hooks[r];return i(o.pipelinedValue)},o.snapshot))}catch(i){o.erroredOrDestroyed=!0,this.errorHandler?.handleError(i)}this.executing=!1;for(let r of this.sequences)r.afterRun(),r.once&&(this.sequences.delete(r),r.destroy());for(let r of this.deferredRegistrations)this.sequences.add(r);this.deferredRegistrations.size>0&&this.scheduler.notify(7),this.deferredRegistrations.clear(),n&&R(x.AfterRenderHooksEnd)}register(n){let{view:r}=n;r!==void 0?((r[Dt]??=[]).push(n),wt(r),r[E]|=8192):this.executing?this.deferredRegistrations.add(n):this.addSequence(n)}addSequence(n){this.sequences.add(n),this.scheduler.notify(7)}unregister(n){this.executing&&this.sequences.has(n)?(n.erroredOrDestroyed=!0,n.pipelinedValue=void 0,n.once=!0):(this.sequences.delete(n),this.deferredRegistrations.delete(n))}maybeTrace(n,r){return r?r.run(oi.AFTER_NEXT_RENDER,n):n()}static \u0275prov=W({token:e,providedIn:"root",factory:()=>new e})}return e})(),Bo=class{impl;hooks;view;once;snapshot;erroredOrDestroyed=!1;pipelinedValue=void 0;unregisterOnDestroy;constructor(t,n,r,o,i,s=null){this.impl=t,this.hooks=n,this.view=r,this.once=o,this.snapshot=s,this.unregisterOnDestroy=i?.onDestroy(()=>this.destroy())}afterRun(){this.erroredOrDestroyed=!1,this.pipelinedValue=void 0,this.snapshot?.dispose(),this.snapshot=null}destroy(){this.impl.unregister(this),this.unregisterOnDestroy?.();let t=this.view?.[Dt];t&&(this.view[Dt]=t.filter(n=>n!==this))}};function By(e,t){let n=t?.injector??w(me);return Ze("NgAfterRender"),df(e,n,t,!1)}function $y(e,t){let n=t?.injector??w(me);return Ze("NgAfterNextRender"),df(e,n,t,!0)}function Uy(e){return e instanceof Function?[void 0,void 0,e,void 0]:[e.earlyRead,e.write,e.mixedReadWrite,e.read]}function df(e,t,n,r){let o=t.get(ac);o.impl??=t.get(uf);let i=t.get(dr,null,{optional:!0}),s=n?.manualCleanup!==!0?t.get(it):null,a=t.get(Wn,null,{optional:!0}),c=new Bo(o.impl,Uy(e),a?.view,r,s,i?.snapshot(null));return o.impl.register(c),c}var ff=new k("",{factory:()=>({queue:new Set,isScheduled:!1,scheduler:null})});function pf(e,t,n){let r=e.get(ff);if(Array.isArray(t))for(let o of t)r.queue.add(o),n?.detachedLeaveAnimationFns?.push(o);else r.queue.add(t),n?.detachedLeaveAnimationFns?.push(t);r.scheduler&&r.scheduler(e)}function qy(e,t){let n=e.get(ff);if(t.detachedLeaveAnimationFns){for(let r of t.detachedLeaveAnimationFns)n.queue.delete(r);t.detachedLeaveAnimationFns=void 0}}function Wy(e,t){for(let[n,r]of t)pf(e,r.animateFns)}function Wu(e,t,n,r){let o=e?.[Ct]?.enter;t!==null&&o&&o.has(n.index)&&Wy(r,o)}function an(e,t,n,r,o,i,s,a){if(o!=null){let c,l=!1;ve(o)?c=o:Ae(o)&&(l=!0,o=o[se]);let u=le(o);e===0&&r!==null?(Wu(a,r,i,n),s==null?nf(t,r,u):Vo(t,r,u,s||null,!0)):e===1&&r!==null?(Wu(a,r,i,n),Vo(t,r,u,s||null,!0)):e===2?Gu(a,i,n,d=>{rf(t,u,l,d)}):e===3&&Gu(a,i,n,()=>{t.destroyNode(u)}),c!=null&&nv(t,e,n,c,i,r,s)}}function Gy(e,t){hf(e,t),t[se]=null,t[ee]=null}function zy(e,t,n,r,o,i){r[se]=o,r[ee]=t,si(e,r,n,1,o,i)}function hf(e,t){t[Se].changeDetectionScheduler?.notify(9),si(e,t,t[O],2,null,null)}function Qy(e){let t=e[tn];if(!t)return sa(e[m],e);for(;t;){let n=null;if(Ae(t))n=t[tn];else{let r=t[F];r&&(n=r)}if(!n){for(;t&&!t[ae]&&t!==e;)Ae(t)&&sa(t[m],t),t=t[q];t===null&&(t=e),Ae(t)&&sa(t[m],t),n=t&&t[ae]}t=n}}function cc(e,t){let n=e[bt],r=n.indexOf(t);n.splice(r,1)}function ii(e,t){if(Tt(t))return;let n=t[O];n.destroyNode&&si(e,t,n,3,null,null),Qy(t)}function sa(e,t){if(Tt(t))return;let n=v(null);try{t[E]&=-129,t[E]|=256,t[oe]&&ft(t[oe]),Ky(e,t),Yy(e,t),t[m].type===1&&t[O].destroy();let r=t[tt];if(r!==null&&ve(t[q])){r!==t[q]&&cc(r,t);let o=t[xe];o!==null&&o.detachView(e)}ya(t)}finally{v(n)}}function Gu(e,t,n,r){let o=e?.[Ct];if(o==null||o.leave==null||!o.leave.has(t.index))return r(!1);e&&Jn.add(e),pf(n,()=>{if(o.leave&&o.leave.has(t.index)){let s=o.leave.get(t.index),a=[];if(s){for(let c=0;c<s.animateFns.length;c++){let l=s.animateFns[c],{promise:u}=l();a.push(u)}o.detachedLeaveAnimationFns=void 0}o.running=Promise.allSettled(a),Zy(e,r)}else e&&Jn.delete(e),r(!1)},o)}function Zy(e,t){let n=e[Ct]?.running;if(n){n.then(()=>{e[Ct].running=void 0,Jn.delete(e),t(!0)});return}t(!1)}function Yy(e,t){let n=e.cleanup,r=t[en];if(n!==null)for(let s=0;s<n.length-1;s+=2)if(typeof n[s]=="string"){let a=n[s+3];a>=0?r[a]():r[-a].unsubscribe(),s+=2}else{let a=r[n[s+1]];n[s].call(a)}r!==null&&(t[en]=null);let o=t[Be];if(o!==null){t[Be]=null;for(let s=0;s<o.length;s++){let a=o[s];a()}}let i=t[Xe];if(i!==null){t[Xe]=null;for(let s of i)s.destroy()}}function Ky(e,t){let n;if(e!=null&&(n=e.destroyHooks)!=null)for(let r=0;r<n.length;r+=2){let o=t[n[r]];if(!(o instanceof xt)){let i=n[r+1];if(Array.isArray(i))for(let s=0;s<i.length;s+=2){let a=o[i[s]],c=i[s+1];R(x.LifecycleHookStart,a,c);try{c.call(a)}finally{R(x.LifecycleHookEnd,a,c)}}else{R(x.LifecycleHookStart,o,i);try{i.call(o)}finally{R(x.LifecycleHookEnd,o,i)}}}}}function gf(e,t,n){return Jy(e,t.parent,n)}function Jy(e,t,n){let r=t;for(;r!==null&&r.type&168;)t=r,r=t.parent;if(r===null)return n[se];if(rt(r)){let{encapsulation:o}=e.data[r.directiveStart+r.componentOffset];if(o===At.None||o===At.Emulated)return null}return Ie(r,n)}function mf(e,t,n){return ev(e,t,n)}function Xy(e,t,n){return e.type&40?Ie(e,n):null}var ev=Xy,zu;function lc(e,t,n,r){let o=gf(e,r,t),i=t[O],s=r.parent||t[ee],a=mf(s,r,t);if(o!=null)if(Array.isArray(n))for(let c=0;c<n.length;c++)Uu(i,o,n[c],a,!1);else Uu(i,o,n,a,!1);zu!==void 0&&zu(i,r,t,n,o)}function Qn(e,t){if(t!==null){let n=t.type;if(n&3)return Ie(t,e);if(n&4)return Sa(-1,e[t.index]);if(n&8){let r=t.child;if(r!==null)return Qn(e,r);{let o=e[t.index];return ve(o)?Sa(-1,o):le(o)}}else{if(n&128)return Qn(e,t.next);if(n&32)return sc(t,e)()||le(e[t.index]);{let r=yf(e,t);if(r!==null){if(Array.isArray(r))return r[0];let o=et(e[te]);return Qn(o,r)}else return Qn(e,t.next)}}}return null}function yf(e,t){if(t!==null){let r=e[te][ee],o=t.projection;return r.projection[o]}return null}function Sa(e,t){let n=F+e+1;if(n<t.length){let r=t[n],o=r[m].firstChild;if(o!==null)return Qn(r,o)}return t[nt]}function uc(e,t,n,r,o,i,s){for(;n!=null;){let a=r[Ge];if(n.type===128){n=n.next;continue}let c=r[n.index],l=n.type;if(s&&t===0&&(c&&un(le(c),r),n.flags|=2),!ei(n))if(l&8)uc(e,t,n.child,r,o,i,!1),an(t,e,a,o,c,n,i,r);else if(l&32){let u=sc(n,r),d;for(;d=u();)an(t,e,a,o,d,n,i,r);an(t,e,a,o,c,n,i,r)}else l&16?vf(e,t,r,n,o,i):an(t,e,a,o,c,n,i,r);n=s?n.projectionNext:n.next}}function si(e,t,n,r,o,i){uc(n,r,e.firstChild,t,o,i,!1)}function tv(e,t,n){let r=t[O],o=gf(e,n,t),i=n.parent||t[ee],s=mf(i,n,t);vf(r,0,t,n,o,s)}function vf(e,t,n,r,o,i){let s=n[te],c=s[ee].projection[r.projection];if(Array.isArray(c))for(let l=0;l<c.length;l++){let u=c[l];an(t,e,n[Ge],o,u,r,i,n)}else{let l=c,u=s[q];Md(r)&&(l.flags|=128),uc(e,t,l,u,o,i,!0)}}function nv(e,t,n,r,o,i,s){let a=r[nt],c=le(r);a!==c&&an(t,e,n,i,a,o,s);for(let l=F;l<r.length;l++){let u=r[l];si(u[m],u,e,t,i,a)}}function rv(e,t,n,r,o){if(t)o?e.addClass(n,r):e.removeClass(n,r);else{let i=r.indexOf("-")===-1?void 0:Ho.DashCase;o==null?e.removeStyle(n,r,i):(typeof o=="string"&&o.endsWith("!important")&&(o=o.slice(0,-10),i|=Ho.Important),e.setStyle(n,r,o,i))}}function If(e,t,n,r,o){let i=ie(),s=r&2;try{ot(-1),s&&t.length>P&&cf(e,t,P,!1);let a=s?x.TemplateUpdateStart:x.TemplateCreateStart;R(a,o,n),n(r,o)}finally{ot(i);let a=s?x.TemplateUpdateEnd:x.TemplateCreateEnd;R(a,o,n)}}function ai(e,t,n){lv(e,t,n),(n.flags&64)===64&&uv(e,t,n)}function mn(e,t,n=Ie){let r=t.localNames;if(r!==null){let o=t.index+1;for(let i=0;i<r.length;i+=2){let s=r[i+1],a=s===-1?n(t,e):e[s];e[o++]=a}}}function ov(e,t,n,r){let i=r.get(jd,Fd)||n===At.ShadowDom||n===At.ExperimentalIsolatedShadowDom,s=e.selectRootElement(t,i);return iv(s),s}function iv(e){sv(e)}var sv=()=>null;function av(e){return e==="class"?"className":e==="for"?"htmlFor":e==="formaction"?"formAction":e==="innerHtml"?"innerHTML":e==="readonly"?"readOnly":e==="tabindex"?"tabIndex":e}function Ef(e,t,n,r,o,i){let s=t[m];if(pc(e,s,t,n,r)){rt(e)&&cv(t,e.index);return}e.type&3&&(n=av(n)),dc(e,t,n,r,o,i)}function dc(e,t,n,r,o,i){if(e.type&3){let s=Ie(e,t);r=i!=null?i(r,e.value||"",n):r,o.setProperty(s,n,r)}else e.type&12}function cv(e,t){let n=ue(t,e);n[E]&16||(n[E]|=64)}function lv(e,t,n){let r=n.directiveStart,o=n.directiveEnd;rt(n)&&jy(t,n,e.data[r+n.componentOffset]),e.firstCreatePass||Fo(n,t);let i=n.initialInputs;for(let s=r;s<o;s++){let a=e.data[s],c=Kn(t,e,s,n);if(un(c,t),i!==null&&hv(t,s-r,c,a,n,i),ce(a)){let l=ue(n.index,t);l[H]=Kn(t,e,s,n)}}}function uv(e,t,n){let r=n.directiveStart,o=n.directiveEnd,i=n.index,s=gu();try{ot(i);for(let a=r;a<o;a++){let c=e.data[a],l=t[a];yo(a),(c.hostBindings!==null||c.hostVars!==0||c.hostAttrs!==null)&&dv(c,l)}}finally{ot(-1),yo(s)}}function dv(e,t){e.hostBindings!==null&&e.hostBindings(1,t)}function fc(e,t){let n=e.directiveRegistry,r=null;if(n)for(let o=0;o<n.length;o++){let i=n[o];ef(t,i.selectors,!1)&&(r??=[],ce(i)?r.unshift(i):r.push(i))}return r}function fv(e,t,n,r,o,i){let s=Ie(e,t);pv(t[O],s,i,e.value,n,r,o)}function pv(e,t,n,r,o,i,s){if(i==null)e.removeAttribute(t,o,n);else{let a=s==null?V(i):s(i,r||"",o);e.setAttribute(t,o,a,n)}}function hv(e,t,n,r,o,i){let s=i[t];if(s!==null)for(let a=0;a<s.length;a+=2){let c=s[a],l=s[a+1];Na(r,n,c,l)}}function ci(e,t,n,r,o){let i=P+n,s=t[m],a=o(s,t,e,r,n);t[i]=a,on(e,!0);let c=e.type===2;return c?(of(t[O],a,e),(su()===0||nn(e))&&un(a,t),au()):un(a,t),Do()&&(!c||!ei(e))&&lc(s,t,a,e),e}function li(e){let t=e;return $s()?Us():(t=t.parent,on(t,!1)),t}function gv(e,t,n){return(e===null||ce(e))&&(n=Ss(n[t.index])),n[O]}function mv(e,t){let n=e[Ge];if(!n)return;let r;try{r=n.get(Nt,null)}catch{r=null}r?.(t)}function pc(e,t,n,r,o){let i=e.inputs?.[r],s=e.hostDirectiveInputs?.[r],a=!1;if(s)for(let c=0;c<s.length;c+=2){let l=s[c],u=s[c+1],d=t.data[l];Na(d,n[l],u,o),a=!0}if(i)for(let c of i){let l=n[c],u=t.data[c];Na(u,l,r,o),a=!0}return a}function yv(e,t){let n=ue(t,e),r=n[m];vv(r,n);let o=n[se];o!==null&&n[vt]===null&&(n[vt]=Vd(o,n[Ge])),R(x.ComponentStart);try{hc(r,n,n[H])}finally{R(x.ComponentEnd,n[H])}}function vv(e,t){for(let n=t.length;n<e.blueprint.length;n++)t.push(e.blueprint[n])}function hc(e,t,n){Io(t);try{let r=e.viewQuery;r!==null&&Ia(1,r,n);let o=e.template;o!==null&&If(e,t,o,1,n),e.firstCreatePass&&(e.firstCreatePass=!1),t[xe]?.finishViewCreation(e),e.staticContentQueries&&Hd(e,t),e.staticViewQueries&&Ia(2,e.viewQuery,n);let i=e.components;i!==null&&Iv(t,i)}catch(r){throw e.firstCreatePass&&(e.incompleteFirstPass=!0,e.firstCreatePass=!1),r}finally{t[E]&=-5,Eo()}}function Iv(e,t){for(let n=0;n<t.length;n++)yv(e,t[n])}function fr(e,t,n,r){let o=v(null);try{let i=t.tView,a=e[E]&4096?4096:16,c=oc(e,i,n,a,null,t,null,null,r?.injector??null,r?.embeddedViewInjector??null,r?.dehydratedView??null),l=e[t.index];c[tt]=l;let u=e[xe];return u!==null&&(c[xe]=u.createEmbeddedView(i)),hc(i,c,n),c}finally{v(o)}}function dn(e,t){return!t||t.firstChild===null||Md(e)}function Xn(e,t,n,r,o=!1){for(;n!==null;){if(n.type===128){n=o?n.projectionNext:n.next;continue}let i=t[n.index];i!==null&&r.push(le(i)),ve(i)&&Df(i,r);let s=n.type;if(s&8)Xn(e,t,n.child,r);else if(s&32){let a=sc(n,t),c;for(;c=a();)r.push(c)}else if(s&16){let a=yf(t,n);if(Array.isArray(a))r.push(...a);else{let c=et(t[te]);Xn(c[m],c,a,r,!0)}}n=o?n.projectionNext:n.next}return r}function Df(e,t){for(let n=F;n<e.length;n++){let r=e[n],o=r[m].firstChild;o!==null&&Xn(r[m],r,o,t)}e[nt]!==e[se]&&t.push(e[nt])}function Cf(e){if(e[Dt]!==null){for(let t of e[Dt])t.impl.addSequence(t);e[Dt].length=0}}var bf=[];function Ev(e){return e[oe]??Dv(e)}function Dv(e){let t=bf.pop()??Object.create(bv);return t.lView=e,t}function Cv(e){e.lView[oe]!==e&&(e.lView=null,bf.push(e))}var bv=K(Y({},zt),{consumerIsAlwaysLive:!0,kind:"template",consumerMarkedDirty:e=>{wt(e.lView)},consumerOnSignalRead(){this.lView[oe]=this}});function Tv(e){let t=e[oe]??Object.create(wv);return t.lView=e,t}var wv=K(Y({},zt),{consumerIsAlwaysLive:!0,kind:"template",consumerMarkedDirty:e=>{let t=et(e.lView);for(;t&&!Tf(t[m]);)t=et(t);t&&Os(t)},consumerOnSignalRead(){this.lView[oe]=this}});function Tf(e){return e.type!==2}function wf(e){if(e[Xe]===null)return;let t=!0;for(;t;){let n=!1;for(let r of e[Xe])r.dirty&&(n=!0,r.zone===null||Zone.current===r.zone?r.run():r.zone.run(()=>r.run()));t=n&&!!(e[E]&8192)}}var _v=100;function _f(e,t=0){let r=e[Se].rendererFactory,o=!1;o||r.begin?.();try{Mv(e,t)}finally{o||r.end?.()}}function Mv(e,t){let n=qs();try{An(!0),xa(e,t);let r=0;for(;Bn(e);){if(r===_v)throw new M(103,!1);r++,xa(e,1)}}finally{An(n)}}function Nv(e,t,n,r){if(Tt(t))return;let o=t[E],i=!1,s=!1;Io(t);let a=!0,c=null,l=null;i||(Tf(e)?(l=Ev(t),c=Qt(l)):Gr()===null?(a=!1,l=Tv(t),c=Qt(l)):t[oe]&&(ft(t[oe]),t[oe]=null));try{Rs(t),fu(e.bindingStartIndex),n!==null&&If(e,t,n,2,r);let u=(o&3)===3;if(!i)if(u){let f=e.preOrderCheckHooks;f!==null&&No(t,f,null)}else{let f=e.preOrderHooks;f!==null&&So(t,f,0,null),oa(t,0)}if(s||Sv(t),wf(t),Mf(t,0),e.contentQueries!==null&&Hd(e,t),!i)if(u){let f=e.contentCheckHooks;f!==null&&No(t,f)}else{let f=e.contentHooks;f!==null&&So(t,f,1),oa(t,1)}Av(e,t);let d=e.components;d!==null&&Sf(t,d,0);let p=e.viewQuery;if(p!==null&&Ia(2,p,r),!i)if(u){let f=e.viewCheckHooks;f!==null&&No(t,f)}else{let f=e.viewHooks;f!==null&&So(t,f,2),oa(t,2)}if(e.firstUpdatePass===!0&&(e.firstUpdatePass=!1),t[fo]){for(let f of t[fo])f();t[fo]=null}i||(Cf(t),t[E]&=-73)}catch(u){throw i||wt(t),u}finally{l!==null&&(Tn(l,c),a&&Cv(l)),Eo()}}function Mf(e,t){for(let n=Sd(e);n!==null;n=xd(n))for(let r=F;r<n.length;r++){let o=n[r];Nf(o,t)}}function Sv(e){for(let t=Sd(e);t!==null;t=xd(t)){if(!(t[E]&2))continue;let n=t[bt];for(let r=0;r<n.length;r++){let o=n[r];Os(o)}}}function xv(e,t,n){R(x.ComponentStart);let r=ue(t,e);try{Nf(r,n)}finally{R(x.ComponentEnd,r[H])}}function Nf(e,t){ho(e)&&xa(e,t)}function xa(e,t){let r=e[m],o=e[E],i=e[oe],s=!!(t===0&&o&16);if(s||=!!(o&64&&t===0),s||=!!(o&1024),s||=!!(i?.dirty&&wn(i)),s||=!1,i&&(i.dirty=!1),e[E]&=-9217,s)Nv(r,e,r.template,e[H]);else if(o&8192){let a=v(null);try{wf(e),Mf(e,1);let c=r.components;c!==null&&Sf(e,c,1),Cf(e)}finally{v(a)}}}function Sf(e,t,n){for(let r=0;r<t.length;r++)xv(e,t[r],n)}function Av(e,t){let n=e.hostBindingOpCodes;if(n!==null)try{for(let r=0;r<n.length;r++){let o=n[r];if(o<0)ot(~o);else{let i=o,s=n[++r],a=n[++r];hu(s,i);let c=t[i];R(x.HostBindingsUpdateStart,c);try{a(2,c)}finally{R(x.HostBindingsUpdateEnd,c)}}}}finally{ot(-1)}}function gc(e,t){let n=qs()?64:1088;for(e[Se].changeDetectionScheduler?.notify(t);e;){e[E]|=n;let r=et(e);if(rn(e)&&!r)return e;e=r}return null}function xf(e,t,n,r){return[e,!0,0,t,null,r,null,n,null,null]}function Af(e,t){let n=F+t;if(n<e.length)return e[n]}function pr(e,t,n,r=!0){let o=t[m];if(Rv(o,t,e,n),r){let s=Sa(n,e),a=t[O],c=a.parentNode(e[nt]);c!==null&&zy(o,e[ee],a,t,c,s)}let i=t[vt];i!==null&&i.firstChild!==null&&(i.firstChild=null)}function Rf(e,t){let n=er(e,t);return n!==void 0&&ii(n[m],n),n}function er(e,t){if(e.length<=F)return;let n=F+t,r=e[n];if(r){let o=r[tt];o!==null&&o!==e&&cc(o,r),t>0&&(e[n-1][ae]=r[ae]);let i=Ln(e,F+t);Gy(r[m],r);let s=i[xe];s!==null&&s.detachView(i[m]),r[q]=null,r[ae]=null,r[E]&=-129}return r}function Rv(e,t,n,r){let o=F+r,i=n.length;r>0&&(n[o-1][ae]=t),r<i-F?(t[ae]=n[o],hs(n,F+r,t)):(n.push(t),t[ae]=null),t[q]=n;let s=t[tt];s!==null&&n!==s&&Of(s,t);let a=t[xe];a!==null&&a.insertView(e),go(t),t[E]|=128}function Of(e,t){let n=e[bt],r=t[q];if(Ae(r))e[E]|=2;else{let o=r[q][te];t[te]!==o&&(e[E]|=2)}n===null?e[bt]=[t]:n.push(t)}var st=class{_lView;_cdRefInjectingView;_appRef=null;_attachedToViewContainer=!1;exhaustive;get rootNodes(){let t=this._lView,n=t[m];return Xn(n,t,n.firstChild,[])}constructor(t,n){this._lView=t,this._cdRefInjectingView=n}get context(){return this._lView[H]}set context(t){this._lView[H]=t}get destroyed(){return Tt(this._lView)}destroy(){if(this._appRef)this._appRef.detachView(this);else if(this._attachedToViewContainer){let t=this._lView[q];if(ve(t)){let n=t[Vn],r=n?n.indexOf(this):-1;r>-1&&(er(t,r),Ln(n,r))}this._attachedToViewContainer=!1}ii(this._lView[m],this._lView)}onDestroy(t){ks(this._lView,t)}markForCheck(){gc(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[E]&=-129}reattach(){go(this._lView),this._lView[E]|=128}detectChanges(){this._lView[E]|=1024,_f(this._lView)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new M(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;let t=rn(this._lView),n=this._lView[tt];n!==null&&!t&&cc(n,this._lView),hf(this._lView[m],this._lView)}attachToAppRef(t){if(this._attachedToViewContainer)throw new M(902,!1);this._appRef=t;let n=rn(this._lView),r=this._lView[tt];r!==null&&!n&&Of(r,this._lView),go(this._lView)}};var tr=(()=>{class e{_declarationLView;_declarationTContainer;elementRef;static __NG_ELEMENT_ID__=Ov;constructor(n,r,o){this._declarationLView=n,this._declarationTContainer=r,this.elementRef=o}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(n,r){return this.createEmbeddedViewImpl(n,r)}createEmbeddedViewImpl(n,r,o){let i=fr(this._declarationLView,this._declarationTContainer,n,{embeddedViewInjector:r,dehydratedView:o});return new st(i)}}return e})();function Ov(){return ui(B(),g())}function ui(e,t){return e.type&4?new tr(t,e,hn(e,t)):null}function yn(e,t,n,r,o){let i=e.data[t];if(i===null)i=kv(e,t,n,r,o),pu()&&(i.flags|=32);else if(i.type&64){i.type=n,i.value=r,i.attrs=o;let s=uu();i.injectorIndex=s===null?-1:s.injectorIndex}return on(i,!0),i}function kv(e,t,n,r,o){let i=Bs(),s=$s(),a=s?i:i&&i.parent,c=e.data[t]=Lv(e,a,n,t,r,o);return Pv(e,c,i,s),c}function Pv(e,t,n,r){e.firstChild===null&&(e.firstChild=t),n!==null&&(r?n.child==null&&t.parent!==null&&(n.child=t):n.next===null&&(n.next=t,t.prev=n))}function Lv(e,t,n,r,o,i){let s=t?t.injectorIndex:-1,a=0;return js()&&(a|=128),{type:n,index:r,insertBeforeIndex:null,injectorIndex:s,directiveStart:-1,directiveEnd:-1,directiveStylingLast:-1,componentOffset:-1,fieldIndex:-1,customControlIndex:-1,propertyBindings:null,flags:a,providerIndexes:0,value:o,attrs:i,mergedAttrs:null,localNames:null,initialInputs:null,inputs:null,hostDirectiveInputs:null,outputs:null,hostDirectiveOutputs:null,directiveToIndex:null,tView:null,next:null,prev:null,projectionNext:null,child:null,parent:t,projection:null,styles:null,stylesWithoutHost:null,residualStyles:void 0,classes:null,classesWithoutHost:null,residualClasses:void 0,classBindings:0,styleBindings:0}}function Fv(e){let t=e[_s]??[],r=e[q][O],o=[];for(let i of t)i.data[Ld]!==void 0?o.push(i):jv(i,r);e[_s]=o}function jv(e,t){let n=0,r=e.firstChild;if(r){let o=e.data[Pd];for(;n<o;){let i=r.nextSibling;rf(t,r,!1),r=i,n++}}}var Vv=()=>null,Hv=()=>null;function $o(e,t){return Vv(e,t)}function kf(e,t,n){return Hv(e,t,n)}var Pf=class{},di=class{},Aa=class{resolveComponentFactory(t){throw new M(917,!1)}},hr=class{static NULL=new Aa},nr=class{},Bv=(()=>{class e{destroyNode=null;static __NG_ELEMENT_ID__=()=>$v()}return e})();function $v(){let e=g(),t=B(),n=ue(t.index,e);return(Ae(n)?n:e)[O]}var Lf=(()=>{class e{static \u0275prov=W({token:e,providedIn:"root",factory:()=>null})}return e})();var Ao={},Ra=class{injector;parentInjector;constructor(t,n){this.injector=t,this.parentInjector=n}get(t,n,r){let o=this.injector.get(t,Ao,r);return o!==Ao||n===Ao?o:this.parentInjector.get(t,n,r)}};function Uo(e,t,n){let r=n?e.styles:null,o=n?e.classes:null,i=0;if(t!==null)for(let s=0;s<t.length;s++){let a=t[s];if(typeof a=="number")i=a;else if(i==1)o=no(o,a);else if(i==2){let c=a,l=t[++s];r=no(r,c+": "+l+";")}}n?e.styles=r:e.stylesWithoutHost=r,n?e.classes=o:e.classesWithoutHost=o}function gr(e,t=0){let n=g();if(n===null)return _e(e,t);let r=B();return Cd(r,n,U(e),t)}function Uv(){let e="invalid";throw new Error(e)}function Ff(e,t,n,r,o){let i=r===null?null:{"":-1},s=o(e,n);if(s!==null){let a=s,c=null,l=null;for(let u of s)if(u.resolveHostDirectives!==null){[a,c,l]=u.resolveHostDirectives(s);break}Gv(e,t,n,a,i,c,l)}i!==null&&r!==null&&qv(n,r,i)}function qv(e,t,n){let r=e.localNames=[];for(let o=0;o<t.length;o+=2){let i=n[t[o+1]];if(i==null)throw new M(-301,!1);r.push(t[o],i)}}function Wv(e,t,n){t.componentOffset=n,(e.components??=[]).push(t.index)}function Gv(e,t,n,r,o,i,s){let a=r.length,c=!1;for(let p=0;p<a;p++){let f=r[p];!c&&ce(f)&&(c=!0,Wv(e,n,p)),ga(Fo(n,t),e,f.type)}Jv(n,e.data.length,a);for(let p=0;p<a;p++){let f=r[p];f.providersResolver&&f.providersResolver(f)}let l=!1,u=!1,d=af(e,t,a,null);a>0&&(n.directiveToIndex=new Map);for(let p=0;p<a;p++){let f=r[p];if(n.mergedAttrs=ln(n.mergedAttrs,f.hostAttrs),Qv(e,n,t,d,f),Kv(d,f,o),s!==null&&s.has(f)){let[y,S]=s.get(f);n.directiveToIndex.set(f.type,[d,y+n.directiveStart,S+n.directiveStart])}else(i===null||!i.has(f))&&n.directiveToIndex.set(f.type,d);f.contentQueries!==null&&(n.flags|=4),(f.hostBindings!==null||f.hostAttrs!==null||f.hostVars!==0)&&(n.flags|=64);let h=f.type.prototype;!l&&(h.ngOnChanges||h.ngOnInit||h.ngDoCheck)&&((e.preOrderHooks??=[]).push(n.index),l=!0),!u&&(h.ngOnChanges||h.ngDoCheck)&&((e.preOrderCheckHooks??=[]).push(n.index),u=!0),d++}zv(e,n,i)}function zv(e,t,n){for(let r=t.directiveStart;r<t.directiveEnd;r++){let o=e.data[r];if(n===null||!n.has(o))Qu(0,t,o,r),Qu(1,t,o,r),Yu(t,r,!1);else{let i=n.get(o);Zu(0,t,i,r),Zu(1,t,i,r),Yu(t,r,!0)}}}function Qu(e,t,n,r){let o=e===0?n.inputs:n.outputs;for(let i in o)if(o.hasOwnProperty(i)){let s;e===0?s=t.inputs??={}:s=t.outputs??={},s[i]??=[],s[i].push(r),jf(t,i)}}function Zu(e,t,n,r){let o=e===0?n.inputs:n.outputs;for(let i in o)if(o.hasOwnProperty(i)){let s=o[i],a;e===0?a=t.hostDirectiveInputs??={}:a=t.hostDirectiveOutputs??={},a[s]??=[],a[s].push(r,i),jf(t,s)}}function jf(e,t){t==="class"?e.flags|=8:t==="style"&&(e.flags|=16)}function Yu(e,t,n){let{attrs:r,inputs:o,hostDirectiveInputs:i}=e;if(r===null||!n&&o===null||n&&i===null||nc(e)){e.initialInputs??=[],e.initialInputs.push(null);return}let s=null,a=0;for(;a<r.length;){let c=r[a];if(c===0){a+=4;continue}else if(c===5){a+=2;continue}else if(typeof c=="number")break;if(!n&&o.hasOwnProperty(c)){let l=o[c];for(let u of l)if(u===t){s??=[],s.push(c,r[a+1]);break}}else if(n&&i.hasOwnProperty(c)){let l=i[c];for(let u=0;u<l.length;u+=2)if(l[u]===t){s??=[],s.push(l[u+1],r[a+1]);break}}a+=2}e.initialInputs??=[],e.initialInputs.push(s)}function Qv(e,t,n,r,o){e.data[r]=o;let i=o.factory||(o.factory=Je(o.type,!0)),s=new xt(i,ce(o),gr,null);e.blueprint[r]=s,n[r]=s,Zv(e,t,r,af(e,n,o.hostVars,j),o)}function Zv(e,t,n,r,o){let i=o.hostBindings;if(i){let s=e.hostBindingOpCodes;s===null&&(s=e.hostBindingOpCodes=[]);let a=~t.index;Yv(s)!=a&&s.push(a),s.push(n,r,i)}}function Yv(e){let t=e.length;for(;t>0;){let n=e[--t];if(typeof n=="number"&&n<0)return n}return 0}function Kv(e,t,n){if(n){if(t.exportAs)for(let r=0;r<t.exportAs.length;r++)n[t.exportAs[r]]=e;ce(t)&&(n[""]=e)}}function Jv(e,t,n){e.flags|=1,e.directiveStart=t,e.directiveEnd=t+n,e.providerIndexes=t}function mc(e,t,n,r,o,i,s,a){let c=t[m],l=c.consts,u=de(l,s),d=yn(c,e,n,r,u);return i&&Ff(c,t,d,de(l,a),o),d.mergedAttrs=ln(d.mergedAttrs,d.attrs),d.attrs!==null&&Uo(d,d.attrs,!1),d.mergedAttrs!==null&&Uo(d,d.mergedAttrs,!0),c.queries!==null&&c.queries.elementStart(c,d),d}function yc(e,t){pd(e,t),Ms(t)&&e.queries.elementEnd(t)}function Vf(e,t,n,r,o,i){let s=t.consts,a=de(s,o),c=yn(t,e,n,r,a);if(c.mergedAttrs=ln(c.mergedAttrs,c.attrs),i!=null){let l=de(s,i);c.localNames=[];for(let u=0;u<l.length;u+=2)c.localNames.push(l[u],-1)}return c.attrs!==null&&Uo(c,c.attrs,!1),c.mergedAttrs!==null&&Uo(c,c.mergedAttrs,!0),t.queries!==null&&t.queries.elementStart(t,c),c}function vc(e){return fi(e)?Array.isArray(e)||!(e instanceof Map)&&Symbol.iterator in e:!1}function Hf(e,t){if(Array.isArray(e))for(let n=0;n<e.length;n++)t(e[n]);else{let n=e[Symbol.iterator](),r;for(;!(r=n.next()).done;)t(r.value)}}function fi(e){return e!==null&&(typeof e=="function"||typeof e=="object")}function kt(e,t,n){return e[t]=n}function Ic(e,t){return e[t]}function z(e,t,n){if(n===j)return!1;let r=e[t];return Object.is(r,n)?!1:(e[t]=n,!0)}function rr(e,t,n,r){let o=z(e,t,n);return z(e,t+1,r)||o}function Ec(e,t,n,r,o){let i=rr(e,t,n,r);return z(e,t+2,o)||i}function mr(e,t,n,r,o,i){let s=rr(e,t,n,r);return rr(e,t+2,o,i)||s}function Ro(e,t,n){return function r(o){let i=rt(e)?ue(e.index,t):t;gc(i,5);let s=t[H],a=Ku(t,s,n,o),c=r.__ngNextListenerFn__;for(;c;)a=Ku(t,s,c,o)&&a,c=c.__ngNextListenerFn__;return a}}function Ku(e,t,n,r){let o=v(null);try{return R(x.OutputStart,t,n),n(r)!==!1}catch(i){return mv(e,i),!1}finally{R(x.OutputEnd,t,n),v(o)}}function Bf(e,t,n,r,o,i,s,a){let c=nn(e),l=!1,u=null;if(!r&&c&&(u=eI(t,n,i,e.index)),u!==null){let d=u.__ngLastListenerFn__||u;d.__ngNextListenerFn__=s,u.__ngLastListenerFn__=s,l=!0}else{let d=Ie(e,n),p=r?r(d):d;Hm(n,p,i,a);let f=o.listen(p,i,a);if(!Xv(i)){let h=r?y=>r(le(y[e.index])):e.index;$f(h,t,n,i,a,f,!1)}}return l}function Xv(e){return e.startsWith("animation")||e.startsWith("transition")}function eI(e,t,n,r){let o=e.cleanup;if(o!=null)for(let i=0;i<o.length-1;i+=2){let s=o[i];if(s===n&&o[i+1]===r){let a=t[en],c=o[i+2];return a&&a.length>c?a[c]:null}typeof s=="string"&&(i+=2)}return null}function $f(e,t,n,r,o,i,s){let a=t.firstCreatePass?Ls(t):null,c=Ps(n),l=c.length;c.push(o,i),a&&a.push(r,e,l,(l+1)*(s?-1:1))}function Ju(e,t,n,r,o,i){let s=t[n],a=t[m],l=a.data[n].outputs[r],d=s[l].subscribe(i);$f(e.index,a,t,o,i,d,!0)}var Oa=Symbol("BINDING");var qo=class extends hr{ngModule;constructor(t){super(),this.ngModule=t}resolveComponentFactory(t){let n=We(t);return new Rt(n,this.ngModule)}};function tI(e){return Object.keys(e).map(t=>{let[n,r,o]=e[t],i={propName:n,templateName:t,isSignal:(r&ri.SignalBased)!==0};return o&&(i.transform=o),i})}function nI(e){return Object.keys(e).map(t=>({propName:e[t],templateName:t}))}function rI(e,t,n){let r=t instanceof ge?t:t?.injector;return r&&e.getStandaloneInjector!==null&&(r=e.getStandaloneInjector(r)||r),r?new Ra(n,r):n}function oI(e){let t=e.get(nr,null);if(t===null)throw new M(407,!1);let n=e.get(Lf,null),r=e.get(qe,null);return{rendererFactory:t,sanitizer:n,changeDetectionScheduler:r,ngReflect:!1}}function iI(e,t){let n=Uf(e);return tf(t,n,n==="svg"?Ns:n==="math"?eu:null)}function Uf(e){return(e.selectors[0][0]||"div").toLowerCase()}var Rt=class extends di{componentDef;ngModule;selector;componentType;ngContentSelectors;isBoundToModule;cachedInputs=null;cachedOutputs=null;get inputs(){return this.cachedInputs??=tI(this.componentDef.inputs),this.cachedInputs}get outputs(){return this.cachedOutputs??=nI(this.componentDef.outputs),this.cachedOutputs}constructor(t,n){super(),this.componentDef=t,this.ngModule=n,this.componentType=t.type,this.selector=Sy(t.selectors),this.ngContentSelectors=t.ngContentSelectors??[],this.isBoundToModule=!!n}create(t,n,r,o,i,s){R(x.DynamicComponentStart);let a=v(null);try{let c=this.componentDef,l=sI(r,c,s,i),u=rI(c,o||this.ngModule,t),d=oI(u),p=d.rendererFactory.createRenderer(null,c),f=r?ov(p,r,c.encapsulation,u):iI(c,p),h=s?.some(Xu)||i?.some(T=>typeof T!="function"&&T.bindings.some(Xu)),y=oc(null,l,null,512|sf(c),null,null,d,p,u,null,Vd(f,u,!0));y[P]=f,Io(y);let S=null;try{let T=mc(P,y,2,"#host",()=>l.directiveRegistry,!0,0);of(p,f,T),un(f,y),ai(l,y,T),Xa(l,T,y),yc(l,T),n!==void 0&&cI(T,this.ngContentSelectors,n),S=ue(T.index,y),y[H]=S[H],hc(l,y,null)}catch(T){throw S!==null&&ya(S),ya(y),T}finally{R(x.DynamicComponentEnd),Eo()}return new Wo(this.componentType,y,!!h)}finally{v(a)}}};function sI(e,t,n,r){let o=e?["ng-version","21.0.1"]:xy(t.selectors[0]),i=null,s=null,a=0;if(n)for(let u of n)a+=u[Oa].requiredVars,u.create&&(u.targetIdx=0,(i??=[]).push(u)),u.update&&(u.targetIdx=0,(s??=[]).push(u));if(r)for(let u=0;u<r.length;u++){let d=r[u];if(typeof d!="function")for(let p of d.bindings){a+=p[Oa].requiredVars;let f=u+1;p.create&&(p.targetIdx=f,(i??=[]).push(p)),p.update&&(p.targetIdx=f,(s??=[]).push(p))}}let c=[t];if(r)for(let u of r){let d=typeof u=="function"?u:u.type,p=lo(d);c.push(p)}return rc(0,null,aI(i,s),1,a,c,null,null,null,[o],null)}function aI(e,t){return!e&&!t?null:n=>{if(n&1&&e)for(let r of e)r.create();if(n&2&&t)for(let r of t)r.update()}}function Xu(e){let t=e[Oa].kind;return t==="input"||t==="twoWay"}var Wo=class extends Pf{_rootLView;_hasInputBindings;instance;hostView;changeDetectorRef;componentType;location;previousInputValues=null;_tNode;constructor(t,n,r){super(),this._rootLView=n,this._hasInputBindings=r,this._tNode=Hn(n[m],P),this.location=hn(this._tNode,n),this.instance=ue(this._tNode.index,n)[H],this.hostView=this.changeDetectorRef=new st(n,void 0),this.componentType=t}setInput(t,n){this._hasInputBindings;let r=this._tNode;if(this.previousInputValues??=new Map,this.previousInputValues.has(t)&&Object.is(this.previousInputValues.get(t),n))return;let o=this._rootLView,i=pc(r,o[m],o,t,n);this.previousInputValues.set(t,n);let s=ue(r.index,o);gc(s,1)}get injector(){return new St(this._tNode,this._rootLView)}destroy(){this.hostView.destroy()}onDestroy(t){this.hostView.onDestroy(t)}};function cI(e,t,n){let r=e.projection=[];for(let o=0;o<t.length;o++){let i=n[o];r.push(i!=null&&i.length?Array.from(i):null)}}var pi=(()=>{class e{static __NG_ELEMENT_ID__=lI}return e})();function lI(){let e=B();return Wf(e,g())}var uI=pi,qf=class extends uI{_lContainer;_hostTNode;_hostLView;constructor(t,n,r){super(),this._lContainer=t,this._hostTNode=n,this._hostLView=r}get element(){return hn(this._hostTNode,this._hostLView)}get injector(){return new St(this._hostTNode,this._hostLView)}get parentInjector(){let t=Ka(this._hostTNode,this._hostLView);if(md(t)){let n=Po(t,this._hostLView),r=ko(t),o=n[m].data[r+8];return new St(o,n)}else return new St(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(t){let n=ed(this._lContainer);return n!==null&&n[t]||null}get length(){return this._lContainer.length-F}createEmbeddedView(t,n,r){let o,i;typeof r=="number"?o=r:r!=null&&(o=r.index,i=r.injector);let s=$o(this._lContainer,t.ssrId),a=t.createEmbeddedViewImpl(n||{},i,s);return this.insertImpl(a,o,dn(this._hostTNode,s)),a}createComponent(t,n,r,o,i,s,a){let c=t&&!sm(t),l;if(c)l=n;else{let S=n||{};l=S.index,r=S.injector,o=S.projectableNodes,i=S.environmentInjector||S.ngModuleRef,s=S.directives,a=S.bindings}let u=c?t:new Rt(We(t)),d=r||this.parentInjector;if(!i&&u.ngModule==null){let T=(c?d:this.parentInjector).get(ge,null);T&&(i=T)}let p=We(u.componentType??{}),f=$o(this._lContainer,p?.id??null),h=f?.firstChild??null,y=u.create(d,o,h,i,s,a);return this.insertImpl(y.hostView,l,dn(this._hostTNode,f)),y}insert(t,n){return this.insertImpl(t,n,!0)}insertImpl(t,n,r){let o=t._lView;if(nu(o)){let a=this.indexOf(t);if(a!==-1)this.detach(a);else{let c=o[q],l=new qf(c,c[ee],c[q]);l.detach(l.indexOf(t))}}let i=this._adjustIndex(n),s=this._lContainer;return pr(s,o,i,r),t.attachToViewContainerRef(),hs(aa(s),i,t),t}move(t,n){return this.insert(t,n)}indexOf(t){let n=ed(this._lContainer);return n!==null?n.indexOf(t):-1}remove(t){let n=this._adjustIndex(t,-1),r=er(this._lContainer,n);r&&(Ln(aa(this._lContainer),n),ii(r[m],r))}detach(t){let n=this._adjustIndex(t,-1),r=er(this._lContainer,n);return r&&Ln(aa(this._lContainer),n)!=null?new st(r):null}_adjustIndex(t,n=0){return t??this.length+n}};function ed(e){return e[Vn]}function aa(e){return e[Vn]||(e[Vn]=[])}function Wf(e,t){let n,r=t[e.index];return ve(r)?n=r:(n=xf(r,t,null,e),t[e.index]=n,ic(t,n)),fI(n,t,e,r),new qf(n,e,t)}function dI(e,t){let n=e[O],r=n.createComment(""),o=Ie(t,e),i=n.parentNode(o);return Vo(n,i,r,n.nextSibling(o),!1),r}var fI=gI,pI=()=>!1;function hI(e,t,n){return pI(e,t,n)}function gI(e,t,n,r){if(e[nt])return;let o;n.type&8?o=le(r):o=dI(t,n),e[nt]=o}var ka=class e{queryList;matches=null;constructor(t){this.queryList=t}clone(){return new e(this.queryList)}setDirty(){this.queryList.setDirty()}},Pa=class e{queries;constructor(t=[]){this.queries=t}createEmbeddedView(t){let n=t.queries;if(n!==null){let r=t.contentQueries!==null?t.contentQueries[0]:n.length,o=[];for(let i=0;i<r;i++){let s=n.getByIndex(i),a=this.queries[s.indexInDeclarationView];o.push(a.clone())}return new e(o)}return null}insertView(t){this.dirtyQueriesWithMatches(t)}detachView(t){this.dirtyQueriesWithMatches(t)}finishViewCreation(t){this.dirtyQueriesWithMatches(t)}dirtyQueriesWithMatches(t){for(let n=0;n<this.queries.length;n++)Cc(t,n).matches!==null&&this.queries[n].setDirty()}},Go=class{flags;read;predicate;constructor(t,n,r=null){this.flags=n,this.read=r,typeof t=="string"?this.predicate=DI(t):this.predicate=t}},La=class e{queries;constructor(t=[]){this.queries=t}elementStart(t,n){for(let r=0;r<this.queries.length;r++)this.queries[r].elementStart(t,n)}elementEnd(t){for(let n=0;n<this.queries.length;n++)this.queries[n].elementEnd(t)}embeddedTView(t){let n=null;for(let r=0;r<this.length;r++){let o=n!==null?n.length:0,i=this.getByIndex(r).embeddedTView(t,o);i&&(i.indexInDeclarationView=r,n!==null?n.push(i):n=[i])}return n!==null?new e(n):null}template(t,n){for(let r=0;r<this.queries.length;r++)this.queries[r].template(t,n)}getByIndex(t){return this.queries[t]}get length(){return this.queries.length}track(t){this.queries.push(t)}},Fa=class e{metadata;matches=null;indexInDeclarationView=-1;crossesNgTemplate=!1;_declarationNodeIndex;_appliesToNextNode=!0;constructor(t,n=-1){this.metadata=t,this._declarationNodeIndex=n}elementStart(t,n){this.isApplyingToNode(n)&&this.matchTNode(t,n)}elementEnd(t){this._declarationNodeIndex===t.index&&(this._appliesToNextNode=!1)}template(t,n){this.elementStart(t,n)}embeddedTView(t,n){return this.isApplyingToNode(t)?(this.crossesNgTemplate=!0,this.addMatch(-t.index,n),new e(this.metadata)):null}isApplyingToNode(t){if(this._appliesToNextNode&&(this.metadata.flags&1)!==1){let n=this._declarationNodeIndex,r=t.parent;for(;r!==null&&r.type&8&&r.index!==n;)r=r.parent;return n===(r!==null?r.index:-1)}return this._appliesToNextNode}matchTNode(t,n){let r=this.metadata.predicate;if(Array.isArray(r))for(let o=0;o<r.length;o++){let i=r[o];this.matchTNodeWithReadOption(t,n,mI(n,i)),this.matchTNodeWithReadOption(t,n,xo(n,t,i,!1,!1))}else r===tr?n.type&4&&this.matchTNodeWithReadOption(t,n,-1):this.matchTNodeWithReadOption(t,n,xo(n,t,r,!1,!1))}matchTNodeWithReadOption(t,n,r){if(r!==null){let o=this.metadata.read;if(o!==null)if(o===cr||o===pi||o===tr&&n.type&4)this.addMatch(n.index,-2);else{let i=xo(n,t,o,!1,!1);i!==null&&this.addMatch(n.index,i)}else this.addMatch(n.index,r)}}addMatch(t,n){this.matches===null?this.matches=[t,n]:this.matches.push(t,n)}};function mI(e,t){let n=e.localNames;if(n!==null){for(let r=0;r<n.length;r+=2)if(n[r]===t)return n[r+1]}return null}function yI(e,t){return e.type&11?hn(e,t):e.type&4?ui(e,t):null}function vI(e,t,n,r){return n===-1?yI(t,e):n===-2?II(e,t,r):Kn(e,e[m],n,t)}function II(e,t,n){if(n===cr)return hn(t,e);if(n===tr)return ui(t,e);if(n===pi)return Wf(t,e)}function Gf(e,t,n,r){let o=t[xe].queries[r];if(o.matches===null){let i=e.data,s=n.matches,a=[];for(let c=0;s!==null&&c<s.length;c+=2){let l=s[c];if(l<0)a.push(null);else{let u=i[l];a.push(vI(t,u,s[c+1],n.metadata.read))}}o.matches=a}return o.matches}function ja(e,t,n,r){let o=e.queries.getByIndex(n),i=o.matches;if(i!==null){let s=Gf(e,t,o,n);for(let a=0;a<i.length;a+=2){let c=i[a];if(c>0)r.push(s[a/2]);else{let l=i[a+1],u=t[-c];for(let d=F;d<u.length;d++){let p=u[d];p[tt]===p[q]&&ja(p[m],p,l,r)}if(u[bt]!==null){let d=u[bt];for(let p=0;p<d.length;p++){let f=d[p];ja(f[m],f,l,r)}}}}}return r}function Dc(e,t){return e[xe].queries[t].queryList}function zf(e,t,n){let r=new jo((n&4)===4);return iu(e,t,r,r.destroy),(t[xe]??=new Pa).queries.push(new ka(r))-1}function Qf(e,t,n){let r=L();return r.firstCreatePass&&(Zf(r,new Go(e,t,n),-1),(t&2)===2&&(r.staticViewQueries=!0)),zf(r,g(),t)}function EI(e,t,n,r){let o=L();if(o.firstCreatePass){let i=B();Zf(o,new Go(t,n,r),i.index),CI(o,e),(n&2)===2&&(o.staticContentQueries=!0)}return zf(o,g(),n)}function DI(e){return e.split(",").map(t=>t.trim())}function Zf(e,t,n){e.queries===null&&(e.queries=new La),e.queries.track(new Fa(t,n))}function CI(e,t){let n=e.contentQueries||(e.contentQueries=[]),r=n.length?n[n.length-1]:-1;t!==r&&n.push(e.queries.length-1,t)}function Cc(e,t){return e.queries.getByIndex(t)}function Yf(e,t){let n=e[m],r=Cc(n,t);return r.crossesNgTemplate?ja(n,e,t,[]):Gf(n,e,r,t)}function Kf(e,t,n){let r,o=_n(()=>{r._dirtyCounter();let i=TI(r,e);if(t&&i===void 0)throw new M(-951,!1);return i});return r=o[G],r._dirtyCounter=Co(0),r._flatValue=void 0,o}function Jf(e){return Kf(!0,!1,e)}function Xf(e){return Kf(!0,!0,e)}function bI(e,t){let n=e[G];n._lView=g(),n._queryIndex=t,n._queryList=Dc(n._lView,t),n._queryList.onDirty(()=>n._dirtyCounter.update(r=>r+1))}function TI(e,t){let n=e._lView,r=e._queryIndex;if(n===void 0||r===void 0||n[E]&4)return t?void 0:Z;let o=Dc(n,r),i=Yf(n,r);return o.reset(i,_d),t?o.first:o._changesDetected||e._flatValue===void 0?e._flatValue=o.toArray():e._flatValue}var fn=class{},ep=class{};var zo=class extends fn{ngModuleType;_parent;_bootstrapComponents=[];_r3Injector;instance;destroyCbs=[];componentFactoryResolver=new qo(this);constructor(t,n,r,o=!0){super(),this.ngModuleType=t,this._parent=n;let i=ys(t);this._bootstrapComponents=Jd(i.bootstrap),this._r3Injector=Qs(t,n,[{provide:fn,useValue:this},{provide:hr,useValue:this.componentFactoryResolver},...r],$e(t),new Set(["environment"])),o&&this.resolveInjectorInitializers()}resolveInjectorInitializers(){this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(this.ngModuleType)}get injector(){return this._r3Injector}destroy(){let t=this._r3Injector;!t.destroyed&&t.destroy(),this.destroyCbs.forEach(n=>n()),this.destroyCbs=null}onDestroy(t){this.destroyCbs.push(t)}},Qo=class extends ep{moduleType;constructor(t){super(),this.moduleType=t}create(t){return new zo(this.moduleType,t,[])}};var or=class extends fn{injector;componentFactoryResolver=new qo(this);instance=null;constructor(t){super();let n=new mt([...t.providers,{provide:fn,useValue:this},{provide:hr,useValue:this.componentFactoryResolver}],t.parent||Xt(),t.debugName,new Set(["environment"]));this.injector=n,t.runEnvironmentInitializers&&n.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(t){this.injector.onDestroy(t)}};function tp(e,t,n=null){return new or({providers:e,parent:t,debugName:n,runEnvironmentInitializers:!0}).injector}var wI=(()=>{class e{_injector;cachedInjectors=new Map;constructor(n){this._injector=n}getOrCreateStandaloneInjector(n){if(!n.standalone)return null;if(!this.cachedInjectors.has(n)){let r=Is(!1,n.type),o=r.length>0?tp([r],this._injector,`Standalone[${n.type.name}]`):null;this.cachedInjectors.set(n,o)}return this.cachedInjectors.get(n)}ngOnDestroy(){try{for(let n of this.cachedInjectors.values())n!==null&&n.destroy()}finally{this.cachedInjectors.clear()}}static \u0275prov=W({token:e,providedIn:"environment",factory:()=>new e(_e(ge))})}return e})();function _I(e){return ar(()=>{let t=np(e),n=K(Y({},t),{decls:e.decls,vars:e.vars,template:e.template,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,onPush:e.changeDetection===Ja.OnPush,directiveDefs:null,pipeDefs:null,dependencies:t.standalone&&e.dependencies||null,getStandaloneInjector:t.standalone?o=>o.get(wI).getOrCreateStandaloneInjector(n):null,getExternalStyles:null,signals:e.signals??!1,data:e.data||{},encapsulation:e.encapsulation||At.Emulated,styles:e.styles||Z,_:null,schemas:e.schemas||null,tView:null,id:""});t.standalone&&Ze("NgStandalone"),rp(n);let r=e.dependencies;return n.directiveDefs=td(r,MI),n.pipeDefs=td(r,Ql),n.id=OI(n),n})}function MI(e){return We(e)||lo(e)}function NI(e){return ar(()=>({type:e.type,bootstrap:e.bootstrap||Z,declarations:e.declarations||Z,imports:e.imports||Z,exports:e.exports||Z,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null}))}function SI(e,t){if(e==null)return ye;let n={};for(let r in e)if(e.hasOwnProperty(r)){let o=e[r],i,s,a,c;Array.isArray(o)?(a=o[0],i=o[1],s=o[2]??i,c=o[3]||null):(i=o,s=o,a=ri.None,c=null),n[i]=[r,a,c],t[i]=s}return n}function xI(e){if(e==null)return ye;let t={};for(let n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}function AI(e){return ar(()=>{let t=np(e);return rp(t),t})}function RI(e){return{type:e.type,name:e.name,factory:null,pure:e.pure!==!1,standalone:e.standalone??!0,onDestroy:e.type.prototype.ngOnDestroy||null}}function np(e){let t={};return{type:e.type,providersResolver:null,factory:null,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:t,inputConfig:e.inputs||ye,exportAs:e.exportAs||null,standalone:e.standalone??!0,signals:e.signals===!0,selectors:e.selectors||Z,viewQuery:e.viewQuery||null,features:e.features||null,setInput:null,resolveHostDirectives:null,hostDirectives:null,inputs:SI(e.inputs,t),outputs:xI(e.outputs),debugInfo:null}}function rp(e){e.features?.forEach(t=>t(e))}function td(e,t){return e?()=>{let n=typeof e=="function"?e():e,r=[];for(let o of n){let i=t(o);i!==null&&r.push(i)}return r}:null}function OI(e){let t=0,n=typeof e.consts=="function"?"":e.consts,r=[e.selectors,e.ngContentSelectors,e.hostVars,e.hostAttrs,n,e.vars,e.decls,e.encapsulation,e.standalone,e.signals,e.exportAs,JSON.stringify(e.inputs),JSON.stringify(e.outputs),Object.getOwnPropertyNames(e.type.prototype),!!e.contentQueries,!!e.viewQuery];for(let i of r.join("|"))t=Math.imul(31,t)+i.charCodeAt(0)<<0;return t+=2147483648,"c"+t}function kI(e){let t=n=>{let r=Array.isArray(e);n.hostDirectives===null?(n.resolveHostDirectives=PI,n.hostDirectives=r?e.map(Va):[e]):r?n.hostDirectives.unshift(...e.map(Va)):n.hostDirectives.unshift(e)};return t.ngInherit=!0,t}function PI(e){let t=[],n=!1,r=null,o=null;for(let i=0;i<e.length;i++){let s=e[i];if(s.hostDirectives!==null){let a=t.length;r??=new Map,o??=new Map,op(s,t,r),o.set(s,[a,t.length-1])}i===0&&ce(s)&&(n=!0,t.push(s))}for(let i=n?1:0;i<e.length;i++)t.push(e[i]);return[t,r,o]}function op(e,t,n){if(e.hostDirectives!==null)for(let r of e.hostDirectives)if(typeof r=="function"){let o=r();for(let i of o)nd(Va(i),t,n)}else nd(r,t,n)}function nd(e,t,n){let r=lo(e.directive);LI(r.declaredInputs,e.inputs),op(r,t,n),n.set(r,e),t.push(r)}function Va(e){return typeof e=="function"?{directive:U(e),inputs:ye,outputs:ye}:{directive:U(e.directive),inputs:rd(e.inputs),outputs:rd(e.outputs)}}function rd(e){if(e===void 0||e.length===0)return ye;let t={};for(let n=0;n<e.length;n+=2)t[e[n]]=e[n+1];return t}function LI(e,t){for(let n in t)if(t.hasOwnProperty(n)){let r=t[n],o=e[n];e[r]=o}}function FI(e){return Object.getPrototypeOf(e.prototype).constructor}function ip(e){let t=FI(e.type),n=!0,r=[e];for(;t;){let o;if(ce(e))o=t.\u0275cmp||t.\u0275dir;else{if(t.\u0275cmp)throw new M(903,!1);o=t.\u0275dir}if(o){if(n){r.push(o);let s=e;s.inputs=ca(e.inputs),s.declaredInputs=ca(e.declaredInputs),s.outputs=ca(e.outputs);let a=o.hostBindings;a&&$I(e,a);let c=o.viewQuery,l=o.contentQueries;if(c&&HI(e,c),l&&BI(e,l),jI(e,o),jl(e.outputs,o.outputs),ce(o)&&o.data.animation){let u=e.data;u.animation=(u.animation||[]).concat(o.data.animation)}}let i=o.features;if(i)for(let s=0;s<i.length;s++){let a=i[s];a&&a.ngInherit&&a(e),a===ip&&(n=!1)}}t=Object.getPrototypeOf(t)}VI(r)}function jI(e,t){for(let n in t.inputs){if(!t.inputs.hasOwnProperty(n)||e.inputs.hasOwnProperty(n))continue;let r=t.inputs[n];r!==void 0&&(e.inputs[n]=r,e.declaredInputs[n]=t.declaredInputs[n])}}function VI(e){let t=0,n=null;for(let r=e.length-1;r>=0;r--){let o=e[r];o.hostVars=t+=o.hostVars,o.hostAttrs=ln(o.hostAttrs,n=ln(n,o.hostAttrs))}}function ca(e){return e===ye?{}:e===Z?[]:e}function HI(e,t){let n=e.viewQuery;n?e.viewQuery=(r,o)=>{t(r,o),n(r,o)}:e.viewQuery=t}function BI(e,t){let n=e.contentQueries;n?e.contentQueries=(r,o,i)=>{t(r,o,i),n(r,o,i)}:e.contentQueries=t}function $I(e,t){let n=e.hostBindings;n?e.hostBindings=(r,o)=>{t(r,o),n(r,o)}:e.hostBindings=t}function sp(e,t,n,r,o,i,s,a){if(n.firstCreatePass){e.mergedAttrs=ln(e.mergedAttrs,e.attrs);let u=e.tView=rc(2,e,o,i,s,n.directiveRegistry,n.pipeRegistry,null,n.schemas,n.consts,null);n.queries!==null&&(n.queries.template(n,e),u.queries=n.queries.embeddedTView(e))}a&&(e.flags|=a),on(e,!1);let c=qI(n,t,e,r);Do()&&lc(n,t,c,e),un(c,t);let l=xf(c,t,c,e);t[r+P]=l,ic(t,l),hI(l,e,t)}function UI(e,t,n,r,o,i,s,a,c,l,u){let d=n+P,p;return t.firstCreatePass?(p=yn(t,d,4,s||null,a||null),mo()&&Ff(t,e,p,de(t.consts,l),fc),pd(t,p)):p=t.data[d],sp(p,e,t,n,r,o,i,c),nn(p)&&ai(t,e,p),l!=null&&mn(e,p,u),p}function ir(e,t,n,r,o,i,s,a,c,l,u){let d=n+P,p;if(t.firstCreatePass){if(p=yn(t,d,4,s||null,a||null),l!=null){let f=de(t.consts,l);p.localNames=[];for(let h=0;h<f.length;h+=2)p.localNames.push(f[h],-1)}}else p=t.data[d];return sp(p,e,t,n,r,o,i,c),l!=null&&mn(e,p,u),p}function ap(e,t,n,r,o,i,s,a){let c=g(),l=L(),u=de(l.consts,i);return UI(c,l,e,t,n,r,o,u,void 0,s,a),ap}var qI=WI;function WI(e,t,n,r){return qn(!0),t[O].createComment("")}var GI=(()=>{class e{log(n){console.log(n)}warn(n){console.warn(n)}static \u0275fac=function(r){return new(r||e)};static \u0275prov=W({token:e,factory:e.\u0275fac,providedIn:"platform"})}return e})();function cp(e){return typeof e=="function"&&e[G]!==void 0}function bc(e){return cp(e)&&typeof e.set=="function"}var lp=new k("");function Tc(e){return!!e&&typeof e.then=="function"}function up(e){return!!e&&typeof e.subscribe=="function"}var dp=new k("");var wc=(()=>{class e{resolve;reject;initialized=!1;done=!1;donePromise=new Promise((n,r)=>{this.resolve=n,this.reject=r});appInits=w(dp,{optional:!0})??[];injector=w(me);constructor(){}runInitializers(){if(this.initialized)return;let n=[];for(let o of this.appInits){let i=uo(this.injector,o);if(Tc(i))n.push(i);else if(up(i)){let s=new Promise((a,c)=>{i.subscribe({complete:a,error:c})});n.push(s)}}let r=()=>{this.done=!0,this.resolve()};Promise.all(n).then(()=>{r()}).catch(o=>{this.reject(o)}),n.length===0&&r(),this.initialized=!0}static \u0275fac=function(r){return new(r||e)};static \u0275prov=W({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),fp=new k("");function pp(){$i(()=>{let e="";throw new M(600,e)})}function hp(e){return e.isBoundToModule}var zI=10;var hi=(()=>{class e{_runningTick=!1;_destroyed=!1;_destroyListeners=[];_views=[];internalErrorHandler=w(Nt);afterRenderManager=w(ac);zonelessEnabled=w(Gn);rootEffectScheduler=w(bo);dirtyFlags=0;tracingSnapshot=null;allTestViews=new Set;autoDetectTestViews=new Set;includeAllTestViews=!1;afterTick=new re;get allViews(){return[...(this.includeAllTestViews?this.allTestViews:this.autoDetectTestViews).keys(),...this._views]}get destroyed(){return this._destroyed}componentTypes=[];components=[];internalPendingTask=w(Mt);get isStable(){return this.internalPendingTask.hasPendingTasksObservable.pipe(Ve(n=>!n))}constructor(){w(dr,{optional:!0})}whenStable(){let n;return new Promise(r=>{n=this.isStable.subscribe({next:o=>{o&&r()}})}).finally(()=>{n.unsubscribe()})}_injector=w(ge);_rendererFactory=null;get injector(){return this._injector}bootstrap(n,r){return this.bootstrapImpl(n,r)}bootstrapImpl(n,r,o=me.NULL){return this._injector.get(Me).run(()=>{R(x.BootstrapComponentStart);let s=n instanceof di;if(!this._injector.get(wc).done){let h="";throw new M(405,h)}let c;s?c=n:c=this._injector.get(hr).resolveComponentFactory(n),this.componentTypes.push(c.componentType);let l=hp(c)?void 0:this._injector.get(fn),u=r||c.selector,d=c.create(o,[],u,l),p=d.location.nativeElement,f=d.injector.get(lp,null);return f?.registerApplication(p),d.onDestroy(()=>{this.detachView(d.hostView),Zn(this.components,d),f?.unregisterApplication(p)}),this._loadComponent(d),R(x.BootstrapComponentEnd,d),d})}tick(){this.zonelessEnabled||(this.dirtyFlags|=1),this._tick()}_tick(){R(x.ChangeDetectionStart),this.tracingSnapshot!==null?this.tracingSnapshot.run(oi.CHANGE_DETECTION,this.tickImpl):this.tickImpl()}tickImpl=()=>{if(this._runningTick)throw R(x.ChangeDetectionEnd),new M(101,!1);let n=v(null);try{this._runningTick=!0,this.synchronize()}finally{this._runningTick=!1,this.tracingSnapshot?.dispose(),this.tracingSnapshot=null,v(n),this.afterTick.next(),R(x.ChangeDetectionEnd)}};synchronize(){this._rendererFactory===null&&!this._injector.destroyed&&(this._rendererFactory=this._injector.get(nr,null,{optional:!0}));let n=0;for(;this.dirtyFlags!==0&&n++<zI;){R(x.ChangeDetectionSyncStart);try{this.synchronizeOnce()}finally{R(x.ChangeDetectionSyncEnd)}}}synchronizeOnce(){this.dirtyFlags&16&&(this.dirtyFlags&=-17,this.rootEffectScheduler.flush());let n=!1;if(this.dirtyFlags&7){let r=!!(this.dirtyFlags&1);this.dirtyFlags&=-8,this.dirtyFlags|=8;for(let{_lView:o}of this.allViews){if(!r&&!Bn(o))continue;let i=r&&!this.zonelessEnabled?0:1;_f(o,i),n=!0}if(this.dirtyFlags&=-5,this.syncDirtyFlagsWithViews(),this.dirtyFlags&23)return}n||(this._rendererFactory?.begin?.(),this._rendererFactory?.end?.()),this.dirtyFlags&8&&(this.dirtyFlags&=-9,this.afterRenderManager.execute()),this.syncDirtyFlagsWithViews()}syncDirtyFlagsWithViews(){if(this.allViews.some(({_lView:n})=>Bn(n))){this.dirtyFlags|=2;return}else this.dirtyFlags&=-8}attachView(n){let r=n;this._views.push(r),r.attachToAppRef(this)}detachView(n){let r=n;Zn(this._views,r),r.detachFromAppRef()}_loadComponent(n){this.attachView(n.hostView);try{this.tick()}catch(o){this.internalErrorHandler(o)}this.components.push(n),this._injector.get(fp,[]).forEach(o=>o(n))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(n=>n()),this._views.slice().forEach(n=>n.destroy())}finally{this._destroyed=!0,this._views=[],this._destroyListeners=[]}}onDestroy(n){return this._destroyListeners.push(n),()=>Zn(this._destroyListeners,n)}destroy(){if(this._destroyed)throw new M(406,!1);let n=this._injector;n.destroy&&!n.destroyed&&n.destroy()}get viewCount(){return this._views.length}static \u0275fac=function(r){return new(r||e)};static \u0275prov=W({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();function Zn(e,t){let n=e.indexOf(t);n>-1&&e.splice(n,1)}function gp(e,t,n,r){let o=g(),i=Oe();if(z(o,i,t)){let s=L(),a=sn();fv(a,o,e,t,n,r)}return gp}var fA=typeof document<"u"&&typeof document?.documentElement?.getAnimations=="function";var Ha=class{destroy(t){}updateValue(t,n){}swap(t,n){let r=Math.min(t,n),o=Math.max(t,n),i=this.detach(o);if(o-r>1){let s=this.detach(r);this.attach(r,i),this.attach(o,s)}else this.attach(r,i)}move(t,n){this.attach(n,this.detach(t))}};function la(e,t,n,r,o){return e===n&&Object.is(t,r)?1:Object.is(o(e,t),o(n,r))?-1:0}function QI(e,t,n,r){let o,i,s=0,a=e.length-1,c=void 0;if(Array.isArray(t)){v(r);let l=t.length-1;for(v(null);s<=a&&s<=l;){let u=e.at(s),d=t[s],p=la(s,u,s,d,n);if(p!==0){p<0&&e.updateValue(s,d),s++;continue}let f=e.at(a),h=t[l],y=la(a,f,l,h,n);if(y!==0){y<0&&e.updateValue(a,h),a--,l--;continue}let S=n(s,u),T=n(a,f),Ce=n(s,d);if(Object.is(Ce,T)){let Ii=n(l,h);Object.is(Ii,S)?(e.swap(s,a),e.updateValue(a,h),l--,a--):e.move(a,s),e.updateValue(s,d),s++;continue}if(o??=new Zo,i??=id(e,s,a,n),Ba(e,o,s,Ce))e.updateValue(s,d),s++,a++;else if(i.has(Ce))o.set(S,e.detach(s)),a--;else{let Ii=e.create(s,t[s]);e.attach(s,Ii),s++,a++}}for(;s<=l;)od(e,o,n,s,t[s]),s++}else if(t!=null){v(r);let l=t[Symbol.iterator]();v(null);let u=l.next();for(;!u.done&&s<=a;){let d=e.at(s),p=u.value,f=la(s,d,s,p,n);if(f!==0)f<0&&e.updateValue(s,p),s++,u=l.next();else{o??=new Zo,i??=id(e,s,a,n);let h=n(s,p);if(Ba(e,o,s,h))e.updateValue(s,p),s++,a++,u=l.next();else if(!i.has(h))e.attach(s,e.create(s,p)),s++,a++,u=l.next();else{let y=n(s,d);o.set(y,e.detach(s)),a--}}}for(;!u.done;)od(e,o,n,e.length,u.value),u=l.next()}for(;s<=a;)e.destroy(e.detach(a--));o?.forEach(l=>{e.destroy(l)})}function Ba(e,t,n,r){return t!==void 0&&t.has(r)?(e.attach(n,t.get(r)),t.delete(r),!0):!1}function od(e,t,n,r,o){if(Ba(e,t,r,n(r,o)))e.updateValue(r,o);else{let i=e.create(r,o);e.attach(r,i)}}function id(e,t,n,r){let o=new Set;for(let i=t;i<=n;i++)o.add(r(i,e.at(i)));return o}var Zo=class{kvMap=new Map;_vMap=void 0;has(t){return this.kvMap.has(t)}delete(t){if(!this.has(t))return!1;let n=this.kvMap.get(t);return this._vMap!==void 0&&this._vMap.has(n)?(this.kvMap.set(t,this._vMap.get(n)),this._vMap.delete(n)):this.kvMap.delete(t),!0}get(t){return this.kvMap.get(t)}set(t,n){if(this.kvMap.has(t)){let r=this.kvMap.get(t);this._vMap===void 0&&(this._vMap=new Map);let o=this._vMap;for(;o.has(r);)r=o.get(r);o.set(r,n)}else this.kvMap.set(t,n)}forEach(t){for(let[n,r]of this.kvMap)if(t(r,n),this._vMap!==void 0){let o=this._vMap;for(;o.has(r);)r=o.get(r),t(r,n)}}};function ZI(e,t,n,r,o,i,s,a){Ze("NgControlFlow");let c=g(),l=L(),u=de(l.consts,i);return ir(c,l,e,t,n,r,o,u,256,s,a),_c}function _c(e,t,n,r,o,i,s,a){Ze("NgControlFlow");let c=g(),l=L(),u=de(l.consts,i);return ir(c,l,e,t,n,r,o,u,512,s,a),_c}function YI(e,t){Ze("NgControlFlow");let n=g(),r=Oe(),o=n[r]!==j?n[r]:-1,i=o!==-1?Yo(n,P+o):void 0,s=0;if(z(n,r,e)){let a=v(null);try{if(i!==void 0&&Rf(i,s),e!==-1){let c=P+e,l=Yo(n,c),u=Wa(n[m],c),d=kf(l,u,n),p=fr(n,u,t,{dehydratedView:d});pr(l,p,s,dn(u,d))}}finally{v(a)}}else if(i!==void 0){let a=Af(i,s);a!==void 0&&(a[H]=t)}}var $a=class{lContainer;$implicit;$index;constructor(t,n,r){this.lContainer=t,this.$implicit=n,this.$index=r}get $count(){return this.lContainer.length-F}};function KI(e){return e}function JI(e,t){return t}var Ua=class{hasEmptyBlock;trackByFn;liveCollection;constructor(t,n,r){this.hasEmptyBlock=t,this.trackByFn=n,this.liveCollection=r}};function XI(e,t,n,r,o,i,s,a,c,l,u,d,p){Ze("NgControlFlow");let f=g(),h=L(),y=c!==void 0,S=g(),T=a?s.bind(S[te][H]):s,Ce=new Ua(y,T);S[P+e]=Ce,ir(f,h,e+1,t,n,r,o,de(h.consts,i),256),y&&ir(f,h,e+2,c,l,u,d,de(h.consts,p),512)}var qa=class extends Ha{lContainer;hostLView;templateTNode;operationsCounter=void 0;needsIndexUpdate=!1;constructor(t,n,r){super(),this.lContainer=t,this.hostLView=n,this.templateTNode=r}get length(){return this.lContainer.length-F}at(t){return this.getLView(t)[H].$implicit}attach(t,n){let r=n[vt];this.needsIndexUpdate||=t!==this.length,pr(this.lContainer,n,t,dn(this.templateTNode,r)),tE(this.lContainer,t)}detach(t){return this.needsIndexUpdate||=t!==this.length-1,nE(this.lContainer,t),rE(this.lContainer,t)}create(t,n){let r=$o(this.lContainer,this.templateTNode.tView.ssrId),o=fr(this.hostLView,this.templateTNode,new $a(this.lContainer,n,t),{dehydratedView:r});return this.operationsCounter?.recordCreate(),o}destroy(t){ii(t[m],t),this.operationsCounter?.recordDestroy()}updateValue(t,n){this.getLView(t)[H].$implicit=n}reset(){this.needsIndexUpdate=!1,this.operationsCounter?.reset()}updateIndexes(){if(this.needsIndexUpdate)for(let t=0;t<this.length;t++)this.getLView(t)[H].$index=t}getLView(t){return oE(this.lContainer,t)}};function eE(e){let t=v(null),n=ie();try{let r=g(),o=r[m],i=r[n],s=n+1,a=Yo(r,s);if(i.liveCollection===void 0){let l=Wa(o,s);i.liveCollection=new qa(a,r,l)}else i.liveCollection.reset();let c=i.liveCollection;if(QI(c,e,i.trackByFn,t),c.updateIndexes(),i.hasEmptyBlock){let l=Oe(),u=c.length===0;if(z(r,l,u)){let d=n+2,p=Yo(r,d);if(u){let f=Wa(o,d),h=kf(p,f,r),y=fr(r,f,void 0,{dehydratedView:h});pr(p,y,0,dn(f,h))}else o.firstUpdatePass&&Fv(p),Rf(p,0)}}}finally{v(t)}}function Yo(e,t){return e[t]}function tE(e,t){if(e.length<=F)return;let n=F+t,r=e[n],o=r?r[Ct]:void 0;if(r&&o&&o.detachedLeaveAnimationFns&&o.detachedLeaveAnimationFns.length>0){let i=r[Ge];qy(i,o),Jn.delete(r),o.detachedLeaveAnimationFns=void 0}}function nE(e,t){if(e.length<=F)return;let n=F+t,r=e[n],o=r?r[Ct]:void 0;o&&o.leave&&o.leave.size>0&&(o.detachedLeaveAnimationFns=[])}function rE(e,t){return er(e,t)}function oE(e,t){return Af(e,t)}function Wa(e,t){return Hn(e,t)}function mp(e,t,n){let r=g(),o=Oe();if(z(r,o,t)){let i=L(),s=sn();Ef(s,r,e,t,r[O],n)}return mp}function Ga(e,t,n,r,o){pc(t,e,n,o?"class":"style",r)}function Mc(e,t,n,r){let o=g(),i=o[m],s=e+P,a=i.firstCreatePass?mc(s,o,2,t,fc,mo(),n,r):i.data[s];if(ci(a,o,e,t,Ip),nn(a)){let c=o[m];ai(c,o,a),Xa(c,a,o)}return r!=null&&mn(o,a),Mc}function Nc(){let e=L(),t=B(),n=li(t);return e.firstCreatePass&&yc(e,n),Vs(n)&&Hs(),Fs(),n.classesWithoutHost!=null&&pm(n)&&Ga(e,n,g(),n.classesWithoutHost,!0),n.stylesWithoutHost!=null&&hm(n)&&Ga(e,n,g(),n.stylesWithoutHost,!1),Nc}function yp(e,t,n,r){return Mc(e,t,n,r),Nc(),yp}function Sc(e,t,n,r){let o=g(),i=o[m],s=e+P,a=i.firstCreatePass?Vf(s,i,2,t,n,r):i.data[s];return ci(a,o,e,t,Ip),r!=null&&mn(o,a),Sc}function xc(){let e=B(),t=li(e);return Vs(t)&&Hs(),Fs(),xc}function vp(e,t,n,r){return Sc(e,t,n,r),xc(),vp}var Ip=(e,t,n,r,o)=>(qn(!0),tf(t[O],r,Cu()));function Ep(e,t,n){let r=g(),o=r[m],i=e+P,s=o.firstCreatePass?mc(i,r,8,"ng-container",fc,mo(),t,n):o.data[i];if(ci(s,r,e,"ng-container",bp),nn(s)){let a=r[m];ai(a,r,s),Xa(a,s,r)}return n!=null&&mn(r,s),Ep}function Ac(){let e=L(),t=B(),n=li(t);return e.firstCreatePass&&yc(e,n),Ac}function Rc(e,t,n){let r=g(),o=r[m],i=e+P,s=o.firstCreatePass?Vf(i,o,8,"ng-container",t,n):o.data[i];return ci(s,r,e,"ng-container",bp),n!=null&&mn(r,s),Rc}function Dp(){let e=B(),t=li(e);return Ac}function Cp(e,t,n){return Rc(e,t,n),Dp(),Cp}var bp=(e,t,n,r,o)=>(qn(!0),Oy(t[O],""));function iE(){return g()}function Tp(e,t,n){let r=g(),o=Oe();if(z(r,o,t)){let i=L(),s=sn();dc(s,r,e,t,r[O],n)}return Tp}function wp(e,t,n){let r=g(),o=Oe();if(z(r,o,t)){let i=L(),s=sn(),a=Ws(i.data),c=gv(a,s,r);dc(s,r,e,t,c,n)}return wp}var zn=void 0;function sE(e){let t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\.?/,"").length;return t===1&&n===0?1:5}var aE=["en",[["a","p"],["AM","PM"]],[["AM","PM"]],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],zn,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],zn,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm\u202Fa","h:mm:ss\u202Fa","h:mm:ss\u202Fa z","h:mm:ss\u202Fa zzzz"],["{1}, {0}",zn,zn,zn],[".",",",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",sE],Yn={};function cE(e,t,n){typeof t!="string"&&(n=t,t=e[Ko.LocaleId]),t=t.toLowerCase().replace(/_/g,"-"),Yn[t]=e,n&&(Yn[t][Ko.ExtraData]=n)}function lE(e){let t=uE(e),n=sd(t);if(n)return n;let r=t.split("-")[0];if(n=sd(r),n)return n;if(r==="en")return aE;throw new M(701,!1)}function sd(e){return e in Yn||(Yn[e]=Ne.ng&&Ne.ng.common&&Ne.ng.common.locales&&Ne.ng.common.locales[e]),Yn[e]}var Ko=(function(e){return e[e.LocaleId=0]="LocaleId",e[e.DayPeriodsFormat=1]="DayPeriodsFormat",e[e.DayPeriodsStandalone=2]="DayPeriodsStandalone",e[e.DaysFormat=3]="DaysFormat",e[e.DaysStandalone=4]="DaysStandalone",e[e.MonthsFormat=5]="MonthsFormat",e[e.MonthsStandalone=6]="MonthsStandalone",e[e.Eras=7]="Eras",e[e.FirstDayOfWeek=8]="FirstDayOfWeek",e[e.WeekendRange=9]="WeekendRange",e[e.DateFormat=10]="DateFormat",e[e.TimeFormat=11]="TimeFormat",e[e.DateTimeFormat=12]="DateTimeFormat",e[e.NumberSymbols=13]="NumberSymbols",e[e.NumberFormats=14]="NumberFormats",e[e.CurrencyCode=15]="CurrencyCode",e[e.CurrencySymbol=16]="CurrencySymbol",e[e.CurrencyName=17]="CurrencyName",e[e.Currencies=18]="Currencies",e[e.Directionality=19]="Directionality",e[e.PluralCase=20]="PluralCase",e[e.ExtraData=21]="ExtraData",e})(Ko||{});function uE(e){return e.toLowerCase().replace(/_/g,"-")}var yr="en-US";var dE=yr;function _p(e){typeof e=="string"&&(dE=e.toLowerCase().replace(/_/g,"-"))}function Mp(e,t,n){let r=g(),o=L(),i=B();return Sp(o,r,r[O],i,e,t,n),Mp}function Np(e,t,n){let r=g(),o=L(),i=B();return(i.type&3||n)&&Bf(i,o,r,n,r[O],e,t,Ro(i,r,t)),Np}function Sp(e,t,n,r,o,i,s){let a=!0,c=null;if((r.type&3||s)&&(c??=Ro(r,t,i),Bf(r,e,t,s,n,o,i,c)&&(a=!1)),a){let l=r.outputs?.[o],u=r.hostDirectiveOutputs?.[o];if(u&&u.length)for(let d=0;d<u.length;d+=2){let p=u[d],f=u[d+1];c??=Ro(r,t,i),Ju(r,t,p,f,o,c)}if(l&&l.length)for(let d of l)c??=Ro(r,t,i),Ju(r,t,d,o,o,c)}}function fE(e=1){return Iu(e)}function pE(e,t){let n=null,r=Ty(e);for(let o=0;o<t.length;o++){let i=t[o];if(i==="*"){n=o;continue}if(r===null?ef(e,i,!0):My(r,i))return o}return n}function hE(e){let t=g()[te][ee];if(!t.projection){let n=e?e.length:1,r=t.projection=Gl(n,null),o=r.slice(),i=t.child;for(;i!==null;){if(i.type!==128){let s=e?pE(i,e):0;s!==null&&(o[s]?o[s].projectionNext=i:r[s]=i,o[s]=i)}i=i.next}}}function gE(e,t=0,n,r,o,i){let s=g(),a=L(),c=r?e+1:null;c!==null&&ir(s,a,c,r,o,i,null,n);let l=yn(a,P+e,16,null,n||null);l.projection===null&&(l.projection=t),Us();let d=!s[vt]||js();s[te][ee].projection[l.projection]===null&&c!==null?mE(s,a,c):d&&!ei(l)&&tv(a,s,l)}function mE(e,t,n){let r=P+n,o=t.data[r],i=e[r],s=$o(i,o.tView.ssrId),a=fr(e,o,void 0,{dehydratedView:s});pr(i,a,0,dn(o,s))}function yE(e,t,n,r){EI(e,t,n,r)}function vE(e,t,n){Qf(e,t,n)}function IE(e){let t=g(),n=L(),r=vo();Un(r+1);let o=Cc(n,r);if(e.dirty&&tu(t)===((o.metadata.flags&2)===2)){if(o.matches===null)e.reset([]);else{let i=Yf(t,r);e.reset(i,_d),e.notifyOnChanges()}return!0}return!1}function EE(){return Dc(g(),vo())}function DE(e,t,n,r){bI(e,Qf(t,n,r))}function CE(e=1){Un(vo()+e)}function bE(e){let t=du();return po(t,P+e)}function Mo(e,t){return e<<17|t<<2}function Ot(e){return e>>17&32767}function TE(e){return(e&2)==2}function wE(e,t){return e&131071|t<<17}function za(e){return e|2}function pn(e){return(e&131068)>>2}function ua(e,t){return e&-131069|t<<2}function _E(e){return(e&1)===1}function Qa(e){return e|1}function ME(e,t,n,r,o,i){let s=i?t.classBindings:t.styleBindings,a=Ot(s),c=pn(s);e[r]=n;let l=!1,u;if(Array.isArray(n)){let d=n;u=d[1],(u===null||Jt(d,u)>0)&&(l=!0)}else u=n;if(o)if(c!==0){let p=Ot(e[a+1]);e[r+1]=Mo(p,a),p!==0&&(e[p+1]=ua(e[p+1],r)),e[a+1]=wE(e[a+1],r)}else e[r+1]=Mo(a,0),a!==0&&(e[a+1]=ua(e[a+1],r)),a=r;else e[r+1]=Mo(c,0),a===0?a=r:e[c+1]=ua(e[c+1],r),c=r;l&&(e[r+1]=za(e[r+1])),ad(e,u,r,!0),ad(e,u,r,!1),NE(t,u,e,r,i),s=Mo(a,c),i?t.classBindings=s:t.styleBindings=s}function NE(e,t,n,r,o){let i=o?e.residualClasses:e.residualStyles;i!=null&&typeof t=="string"&&Jt(i,t)>=0&&(n[r+1]=Qa(n[r+1]))}function ad(e,t,n,r){let o=e[n+1],i=t===null,s=r?Ot(o):pn(o),a=!1;for(;s!==0&&(a===!1||i);){let c=e[s],l=e[s+1];SE(c,t)&&(a=!0,e[s+1]=r?Qa(l):za(l)),s=r?Ot(l):pn(l)}a&&(e[n+1]=r?za(o):Qa(o))}function SE(e,t){return e===null||t==null||(Array.isArray(e)?e[1]:e)===t?!0:Array.isArray(e)&&typeof t=="string"?Jt(e,t)>=0:!1}var De={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function xE(e){return e.substring(De.key,De.keyEnd)}function AE(e){return RE(e),xp(e,Ap(e,0,De.textEnd))}function xp(e,t){let n=De.textEnd;return n===t?-1:(t=De.keyEnd=OE(e,De.key=t,n),Ap(e,t,n))}function RE(e){De.key=0,De.keyEnd=0,De.value=0,De.valueEnd=0,De.textEnd=e.length}function Ap(e,t,n){for(;t<n&&e.charCodeAt(t)<=32;)t++;return t}function OE(e,t,n){for(;t<n&&e.charCodeAt(t)>32;)t++;return t}function Rp(e,t,n){return kp(e,t,n,!1),Rp}function Op(e,t){return kp(e,t,null,!0),Op}function kE(e){LE($E,PE,e,!0)}function PE(e,t){for(let n=AE(t);n>=0;n=xp(t,n))ao(e,xE(t),!0)}function kp(e,t,n,r){let o=g(),i=L(),s=_t(2);if(i.firstUpdatePass&&Lp(i,e,s,r),t!==j&&z(o,s,t)){let a=i.data[ie()];Fp(i,a,o,o[O],e,o[s+1]=qE(t,n),r,s)}}function LE(e,t,n,r){let o=L(),i=_t(2);o.firstUpdatePass&&Lp(o,null,i,r);let s=g();if(n!==j&&z(s,i,n)){let a=o.data[ie()];if(jp(a,r)&&!Pp(o,i)){let c=r?a.classesWithoutHost:a.stylesWithoutHost;c!==null&&(n=no(c,n||"")),Ga(o,a,s,n,r)}else UE(o,a,s,s[O],s[i+1],s[i+1]=BE(e,t,n),r,i)}}function Pp(e,t){return t>=e.expandoStartIndex}function Lp(e,t,n,r){let o=e.data;if(o[n+1]===null){let i=o[ie()],s=Pp(e,n);jp(i,r)&&t===null&&!s&&(t=!1),t=FE(o,i,t,r),ME(o,i,t,n,s,r)}}function FE(e,t,n,r){let o=Ws(e),i=r?t.residualClasses:t.residualStyles;if(o===null)(r?t.classBindings:t.styleBindings)===0&&(n=da(null,e,t,n,r),n=sr(n,t.attrs,r),i=null);else{let s=t.directiveStylingLast;if(s===-1||e[s]!==o)if(n=da(o,e,t,n,r),i===null){let c=jE(e,t,r);c!==void 0&&Array.isArray(c)&&(c=da(null,e,t,c[1],r),c=sr(c,t.attrs,r),VE(e,t,r,c))}else i=HE(e,t,r)}return i!==void 0&&(r?t.residualClasses=i:t.residualStyles=i),n}function jE(e,t,n){let r=n?t.classBindings:t.styleBindings;if(pn(r)!==0)return e[Ot(r)]}function VE(e,t,n,r){let o=n?t.classBindings:t.styleBindings;e[Ot(o)]=r}function HE(e,t,n){let r,o=t.directiveEnd;for(let i=1+t.directiveStylingLast;i<o;i++){let s=e[i].hostAttrs;r=sr(r,s,n)}return sr(r,t.attrs,n)}function da(e,t,n,r,o){let i=null,s=n.directiveEnd,a=n.directiveStylingLast;for(a===-1?a=n.directiveStart:a++;a<s&&(i=t[a],r=sr(r,i.hostAttrs,o),i!==e);)a++;return e!==null&&(n.directiveStylingLast=a),r}function sr(e,t,n){let r=n?1:2,o=-1;if(t!==null)for(let i=0;i<t.length;i++){let s=t[i];typeof s=="number"?o=s:o===r&&(Array.isArray(e)||(e=e===void 0?[]:["",e]),ao(e,s,n?!0:t[++i]))}return e===void 0?null:e}function BE(e,t,n){if(n==null||n==="")return Z;let r=[],o=gn(n);if(Array.isArray(o))for(let i=0;i<o.length;i++)e(r,o[i],!0);else if(typeof o=="object")for(let i in o)o.hasOwnProperty(i)&&e(r,i,o[i]);else typeof o=="string"&&t(r,o);return r}function $E(e,t,n){let r=String(t);r!==""&&!r.includes(" ")&&ao(e,r,n)}function UE(e,t,n,r,o,i,s,a){o===j&&(o=Z);let c=0,l=0,u=0<o.length?o[0]:null,d=0<i.length?i[0]:null;for(;u!==null||d!==null;){let p=c<o.length?o[c+1]:void 0,f=l<i.length?i[l+1]:void 0,h=null,y;u===d?(c+=2,l+=2,p!==f&&(h=d,y=f)):d===null||u!==null&&u<d?(c+=2,h=u):(l+=2,h=d,y=f),h!==null&&Fp(e,t,n,r,h,y,s,a),u=c<o.length?o[c]:null,d=l<i.length?i[l]:null}}function Fp(e,t,n,r,o,i,s,a){if(!(t.type&3))return;let c=e.data,l=c[a+1],u=_E(l)?cd(c,t,n,o,pn(l),s):void 0;if(!Jo(u)){Jo(i)||TE(l)&&(i=cd(c,null,n,o,a,s));let d=xs(ie(),n);rv(r,s,d,o,i)}}function cd(e,t,n,r,o,i){let s=t===null,a;for(;o>0;){let c=e[o],l=Array.isArray(c),u=l?c[1]:c,d=u===null,p=n[o+1];p===j&&(p=d?Z:void 0);let f=d?co(p,r):u===r?p:void 0;if(l&&!Jo(f)&&(f=co(c,r)),Jo(f)&&(a=f,s))return a;let h=e[o+1];o=s?Ot(h):pn(h)}if(t!==null){let c=i?t.residualClasses:t.residualStyles;c!=null&&(a=co(c,r))}return a}function Jo(e){return e!==void 0}function qE(e,t){return e==null||e===""||(typeof t=="string"?e=e+t:typeof e=="object"&&(e=$e(gn(e)))),e}function jp(e,t){return(e.flags&(t?8:16))!==0}function WE(e,t=""){let n=g(),r=L(),o=e+P,i=r.firstCreatePass?yn(r,o,1,t,null):r.data[o],s=GE(r,n,i,t,e);n[o]=s,Do()&&lc(r,n,s,i),on(i,!1)}var GE=(e,t,n,r,o)=>(qn(!0),Ay(t[O],r));function Vp(e,t,n,r=""){return z(e,Oe(),n)?t+V(n)+r:j}function zE(e,t,n,r,o,i=""){let s=$n(),a=rr(e,s,n,o);return _t(2),a?t+V(n)+r+V(o)+i:j}function QE(e,t,n,r,o,i,s,a=""){let c=$n(),l=Ec(e,c,n,o,s);return _t(3),l?t+V(n)+r+V(o)+i+V(s)+a:j}function ZE(e,t,n,r,o,i,s,a,c,l=""){let u=$n(),d=mr(e,u,n,o,s,c);return _t(4),d?t+V(n)+r+V(o)+i+V(s)+a+V(c)+l:j}function YE(e,t,n,r,o,i,s,a,c,l,u,d=""){let p=$n(),f=mr(e,p,n,o,s,c);return f=z(e,p+4,u)||f,_t(5),f?t+V(n)+r+V(o)+i+V(s)+a+V(c)+l+V(u)+d:j}function Hp(e){return Oc("",e),Hp}function Oc(e,t,n){let r=g(),o=Vp(r,e,t,n);return o!==j&&vr(r,ie(),o),Oc}function Bp(e,t,n,r,o){let i=g(),s=zE(i,e,t,n,r,o);return s!==j&&vr(i,ie(),s),Bp}function $p(e,t,n,r,o,i,s){let a=g(),c=QE(a,e,t,n,r,o,i,s);return c!==j&&vr(a,ie(),c),$p}function Up(e,t,n,r,o,i,s,a,c){let l=g(),u=ZE(l,e,t,n,r,o,i,s,a,c);return u!==j&&vr(l,ie(),u),Up}function qp(e,t,n,r,o,i,s,a,c,l,u){let d=g(),p=YE(d,e,t,n,r,o,i,s,a,c,l,u);return p!==j&&vr(d,ie(),p),qp}function vr(e,t,n){let r=xs(t,e);Ry(e[O],r,n)}function Wp(e,t,n){bc(t)&&(t=t());let r=g(),o=Oe();if(z(r,o,t)){let i=L(),s=sn();Ef(s,r,e,t,r[O],n)}return Wp}function KE(e,t){let n=bc(e);return n&&e.set(t),n}function Gp(e,t){let n=g(),r=L(),o=B();return Sp(r,n,n[O],o,e,t),Gp}function JE(e){return z(g(),Oe(),e)?V(e):j}function XE(e,t,n=""){return Vp(g(),e,t,n)}function eD(e,t,n){let r=L();if(r.firstCreatePass){let o=ce(e);Za(n,r.data,r.blueprint,o,!0),Za(t,r.data,r.blueprint,o,!1)}}function Za(e,t,n,r,o){if(e=U(e),Array.isArray(e))for(let i=0;i<e.length;i++)Za(e[i],t,n,r,o);else{let i=L(),s=g(),a=B(),c=gt(e)?e:U(e.provide),l=Cs(e),u=a.providerIndexes&1048575,d=a.directiveStart,p=a.providerIndexes>>20;if(gt(e)||!e.multi){let f=new xt(l,o,gr,null),h=pa(c,t,o?u:u+p,d);h===-1?(ga(Fo(a,s),i,c),fa(i,e,t.length),t.push(c),a.directiveStart++,a.directiveEnd++,o&&(a.providerIndexes+=1048576),n.push(f),s.push(f)):(n[h]=f,s[h]=f)}else{let f=pa(c,t,u+p,d),h=pa(c,t,u,u+p),y=f>=0&&n[f],S=h>=0&&n[h];if(o&&!S||!o&&!y){ga(Fo(a,s),i,c);let T=rD(o?nD:tD,n.length,o,r,l,e);!o&&S&&(n[h].providerFactory=T),fa(i,e,t.length,0),t.push(c),a.directiveStart++,a.directiveEnd++,o&&(a.providerIndexes+=1048576),n.push(T),s.push(T)}else{let T=zp(n[o?h:f],l,!o&&r);fa(i,e,f>-1?f:h,T)}!o&&r&&S&&n[h].componentProviders++}}}function fa(e,t,n,r){let o=gt(t),i=Jl(t);if(o||i){let c=(i?U(t.useClass):t).prototype.ngOnDestroy;if(c){let l=e.destroyHooks||(e.destroyHooks=[]);if(!o&&t.multi){let u=l.indexOf(n);u===-1?l.push(n,[r,c]):l[u+1].push(r,c)}else l.push(n,c)}}}function zp(e,t,n){return n&&e.componentProviders++,e.multi.push(t)-1}function pa(e,t,n,r){for(let o=n;o<r;o++)if(t[o]===e)return o;return-1}function tD(e,t,n,r,o){return Ya(this.multi,[])}function nD(e,t,n,r,o){let i=this.multi,s;if(this.providerFactory){let a=this.providerFactory.componentProviders,c=Kn(r,r[m],this.providerFactory.index,o);s=c.slice(0,a),Ya(i,s);for(let l=a;l<c.length;l++)s.push(c[l])}else s=[],Ya(i,s);return s}function Ya(e,t){for(let n=0;n<e.length;n++){let r=e[n];t.push(r())}return t}function rD(e,t,n,r,o,i){let s=new xt(e,n,gr,null);return s.multi=[],s.index=t,s.componentProviders=0,zp(s,o,r&&!n),s}function oD(e,t=[]){return n=>{n.providersResolver=(r,o)=>eD(r,o?o(e):e,t)}}function iD(e,t,n){let r=Re()+e,o=g();return o[r]===j?kt(o,r,n?t.call(n):t()):Ic(o,r)}function sD(e,t,n,r){return Qp(g(),Re(),e,t,n,r)}function aD(e,t,n,r,o){return Zp(g(),Re(),e,t,n,r,o)}function cD(e,t,n,r,o,i){return fD(g(),Re(),e,t,n,r,o,i)}function lD(e,t,n,r,o,i,s){return pD(g(),Re(),e,t,n,r,o,i,s)}function uD(e,t,n,r,o,i,s,a){let c=Re()+e,l=g(),u=mr(l,c,n,r,o,i);return z(l,c+4,s)||u?kt(l,c+5,a?t.call(a,n,r,o,i,s):t(n,r,o,i,s)):Ic(l,c+5)}function dD(e,t,n,r,o,i,s,a,c,l){let u=Re()+e,d=g(),p=mr(d,u,n,r,o,i);return Ec(d,u+4,s,a,c)||p?kt(d,u+7,l?t.call(l,n,r,o,i,s,a,c):t(n,r,o,i,s,a,c)):Ic(d,u+7)}function gi(e,t){let n=e[t];return n===j?void 0:n}function Qp(e,t,n,r,o,i){let s=t+n;return z(e,s,o)?kt(e,s+1,i?r.call(i,o):r(o)):gi(e,s+1)}function Zp(e,t,n,r,o,i,s){let a=t+n;return rr(e,a,o,i)?kt(e,a+2,s?r.call(s,o,i):r(o,i)):gi(e,a+2)}function fD(e,t,n,r,o,i,s,a){let c=t+n;return Ec(e,c,o,i,s)?kt(e,c+3,a?r.call(a,o,i,s):r(o,i,s)):gi(e,c+3)}function pD(e,t,n,r,o,i,s,a,c){let l=t+n;return mr(e,l,o,i,s,a)?kt(e,l+4,c?r.call(c,o,i,s,a):r(o,i,s,a)):gi(e,l+4)}function hD(e,t){let n=L(),r,o=e+P;n.firstCreatePass?(r=gD(t,n.pipeRegistry),n.data[o]=r,r.onDestroy&&(n.destroyHooks??=[]).push(o,r.onDestroy)):r=n.data[o];let i=r.factory||(r.factory=Je(r.type,!0)),s,a=X(gr);try{let c=Lo(!1),l=i();return Lo(c),As(n,g(),o,l),l}finally{X(a)}}function gD(e,t){if(t)for(let n=t.length-1;n>=0;n--){let r=t[n];if(e===r.name)return r}}function mD(e,t,n){let r=e+P,o=g(),i=po(o,r);return Yp(o,r)?Qp(o,Re(),t,i.transform,n,i):i.transform(n)}function yD(e,t,n,r){let o=e+P,i=g(),s=po(i,o);return Yp(i,o)?Zp(i,Re(),t,s.transform,n,r,s):s.transform(n,r)}function Yp(e,t){return e[m].data[t].pure}function vD(e,t){return ui(e,t)}var Xo=class{ngModuleFactory;componentFactories;constructor(t,n){this.ngModuleFactory=t,this.componentFactories=n}},ID=(()=>{class e{compileModuleSync(n){return new Qo(n)}compileModuleAsync(n){return Promise.resolve(this.compileModuleSync(n))}compileModuleAndAllComponentsSync(n){let r=this.compileModuleSync(n),o=ys(n),i=Jd(o.declarations).reduce((s,a)=>{let c=We(a);return c&&s.push(new Rt(c)),s},[]);return new Xo(r,i)}compileModuleAndAllComponentsAsync(n){return Promise.resolve(this.compileModuleAndAllComponentsSync(n))}clearCache(){}clearCacheFor(n){}getModuleId(n){}static \u0275fac=function(r){return new(r||e)};static \u0275prov=W({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var Kp=(()=>{class e{applicationErrorHandler=w(Nt);appRef=w(hi);taskService=w(Mt);ngZone=w(Me);zonelessEnabled=w(Gn);tracing=w(dr,{optional:!0});zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run;schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}];subscriptions=new $;angularZoneId=this.zoneIsDefined?this.ngZone._inner?.get(Rn):null;scheduleInRootZone=!this.zonelessEnabled&&this.zoneIsDefined&&(w(ta,{optional:!0})??!1);cancelScheduledCallback=null;useMicrotaskScheduler=!1;runningTick=!1;pendingRenderTaskId=null;constructor(){this.subscriptions.add(this.appRef.afterTick.subscribe(()=>{this.runningTick||this.cleanup()})),this.subscriptions.add(this.ngZone.onUnstable.subscribe(()=>{this.runningTick||this.cleanup()}))}notify(n){if(!this.zonelessEnabled&&n===5)return;switch(n){case 0:{this.appRef.dirtyFlags|=2;break}case 3:case 2:case 4:case 5:case 1:{this.appRef.dirtyFlags|=4;break}case 6:{this.appRef.dirtyFlags|=2;break}case 12:{this.appRef.dirtyFlags|=16;break}case 13:{this.appRef.dirtyFlags|=2;break}case 11:break;case 9:case 8:case 7:case 10:default:this.appRef.dirtyFlags|=8}if(this.appRef.tracingSnapshot=this.tracing?.snapshot(this.appRef.tracingSnapshot)??null,!this.shouldScheduleTick())return;let r=this.useMicrotaskScheduler?Ks:Ys;this.pendingRenderTaskId=this.taskService.add(),this.scheduleInRootZone?this.cancelScheduledCallback=Zone.root.run(()=>r(()=>this.tick())):this.cancelScheduledCallback=this.ngZone.runOutsideAngular(()=>r(()=>this.tick()))}shouldScheduleTick(){return!(this.appRef.destroyed||this.pendingRenderTaskId!==null||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Zone.current.get(Rn+this.angularZoneId))}tick(){if(this.runningTick||this.appRef.destroyed)return;if(this.appRef.dirtyFlags===0){this.cleanup();return}!this.zonelessEnabled&&this.appRef.dirtyFlags&7&&(this.appRef.dirtyFlags|=1);let n=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick()},void 0,this.schedulerTickApplyArgs)}catch(r){this.taskService.remove(n),this.applicationErrorHandler(r)}finally{this.cleanup()}this.useMicrotaskScheduler=!0,Ks(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(n)})}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,this.pendingRenderTaskId!==null){let n=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(n)}}static \u0275fac=function(r){return new(r||e)};static \u0275prov=W({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();function ED(){return Ze("NgZoneless"),vs([...kc(),[]])}function kc(){return[{provide:qe,useExisting:Kp},{provide:Me,useClass:On},{provide:Gn,useValue:!0}]}function DD(){return typeof $localize<"u"&&$localize.locale||yr}var Pc=new k("",{factory:()=>w(Pc,{optional:!0,skipSelf:!0})||DD()});var mi=class{destroyed=!1;listeners=null;errorHandler=w(Ue,{optional:!0});destroyRef=w(it);constructor(){this.destroyRef.onDestroy(()=>{this.destroyed=!0,this.listeners=null})}subscribe(t){if(this.destroyed)throw new M(953,!1);return(this.listeners??=[]).push(t),{unsubscribe:()=>{let n=this.listeners?.indexOf(t);n!==void 0&&n!==-1&&this.listeners?.splice(n,1)}}}emit(t){if(this.destroyed){console.warn(kn(953,!1));return}if(this.listeners===null)return;let n=v(null);try{for(let r of this.listeners)try{r(t)}catch(o){this.errorHandler?.handleError(o)}}finally{v(n)}}};function CD(e,t){return _n(e,t?.equal)}var oh=Symbol("InputSignalNode#UNSET"),TD=K(Y({},zr),{transformFn:void 0,applyValueToInputSignal(e,t){Mn(e,t)}});function ih(e,t){let n=Object.create(TD);n.value=e,n.transformFn=t?.transform;function r(){if(bn(n),n.value===oh){let o=null;throw new M(-950,o)}return n.value}return r[G]=n,r}var Jp=class{attributeName;constructor(t){this.attributeName=t}__NG_ELEMENT_ID__=()=>wd(this.attributeName);toString(){return`HostAttributeToken ${this.attributeName}`}};function $L(e){return new mi}function Xp(e,t){return ih(e,t)}function wD(e){return ih(oh,e)}var UL=(Xp.required=wD,Xp);function eh(e,t){return Jf(t)}function _D(e,t){return Xf(t)}var qL=(eh.required=_D,eh);var Lc=new k(""),MD=new k("");function Ir(e){return!e.moduleRef}function ND(e){let t=Ir(e)?e.r3Injector:e.moduleRef.injector,n=t.get(Me);return n.run(()=>{Ir(e)?e.r3Injector.resolveInjectorInitializers():e.moduleRef.resolveInjectorInitializers();let r=t.get(Nt),o;if(n.runOutsideAngular(()=>{o=n.onError.subscribe({next:r})}),Ir(e)){let i=()=>t.destroy(),s=e.platformInjector.get(Lc);s.add(i),t.onDestroy(()=>{o.unsubscribe(),s.delete(i)})}else{let i=()=>e.moduleRef.destroy(),s=e.platformInjector.get(Lc);s.add(i),e.moduleRef.onDestroy(()=>{Zn(e.allPlatformModules,e.moduleRef),o.unsubscribe(),s.delete(i)})}return xD(r,n,()=>{let i=t.get(Mt),s=i.add(),a=t.get(wc);return a.runInitializers(),a.donePromise.then(()=>{let c=t.get(Pc,yr);if(_p(c||yr),!t.get(MD,!0))return Ir(e)?t.get(hi):(e.allPlatformModules.push(e.moduleRef),e.moduleRef);if(Ir(e)){let u=t.get(hi);return e.rootComponent!==void 0&&u.bootstrap(e.rootComponent),u}else return SD?.(e.moduleRef,e.allPlatformModules),e.moduleRef}).finally(()=>void i.remove(s))})})}var SD;function xD(e,t,n){try{let r=n();return Tc(r)?r.catch(o=>{throw t.runOutsideAngular(()=>e(o)),o}):r}catch(r){throw t.runOutsideAngular(()=>e(r)),r}}var yi=null;function AD(e=[],t){return me.create({name:t,providers:[{provide:Ds,useValue:"platform"},{provide:Lc,useValue:new Set([()=>yi=null])},...e]})}function RD(e=[]){if(yi)return yi;let t=AD(e);return yi=t,pp(),OD(t),t}function OD(e){let t=e.get(Od,null);uo(e,()=>{t?.forEach(n=>n())})}function WL(){return!1}var GL=(()=>{class e{static __NG_ELEMENT_ID__=kD}return e})();function kD(e){return PD(B(),g(),(e&16)===16)}function PD(e,t,n){if(rt(e)&&!n){let r=ue(e.index,t);return new st(r,r)}else if(e.type&175){let r=t[te];return new st(r,t)}return null}var Fc=class{constructor(){}supports(t){return vc(t)}create(t){return new jc(t)}},LD=(e,t)=>t,jc=class{length=0;collection;_linkedRecords=null;_unlinkedRecords=null;_previousItHead=null;_itHead=null;_itTail=null;_additionsHead=null;_additionsTail=null;_movesHead=null;_movesTail=null;_removalsHead=null;_removalsTail=null;_identityChangesHead=null;_identityChangesTail=null;_trackByFn;constructor(t){this._trackByFn=t||LD}forEachItem(t){let n;for(n=this._itHead;n!==null;n=n._next)t(n)}forEachOperation(t){let n=this._itHead,r=this._removalsHead,o=0,i=null;for(;n||r;){let s=!r||n&&n.currentIndex<th(r,o,i)?n:r,a=th(s,o,i),c=s.currentIndex;if(s===r)o--,r=r._nextRemoved;else if(n=n._next,s.previousIndex==null)o++;else{i||(i=[]);let l=a-o,u=c-o;if(l!=u){for(let p=0;p<l;p++){let f=p<i.length?i[p]:i[p]=0,h=f+p;u<=h&&h<l&&(i[p]=f+1)}let d=s.previousIndex;i[d]=u-l}}a!==c&&t(s,a,c)}}forEachPreviousItem(t){let n;for(n=this._previousItHead;n!==null;n=n._nextPrevious)t(n)}forEachAddedItem(t){let n;for(n=this._additionsHead;n!==null;n=n._nextAdded)t(n)}forEachMovedItem(t){let n;for(n=this._movesHead;n!==null;n=n._nextMoved)t(n)}forEachRemovedItem(t){let n;for(n=this._removalsHead;n!==null;n=n._nextRemoved)t(n)}forEachIdentityChange(t){let n;for(n=this._identityChangesHead;n!==null;n=n._nextIdentityChange)t(n)}diff(t){if(t==null&&(t=[]),!vc(t))throw new M(900,!1);return this.check(t)?this:null}onDestroy(){}check(t){this._reset();let n=this._itHead,r=!1,o,i,s;if(Array.isArray(t)){this.length=t.length;for(let a=0;a<this.length;a++)i=t[a],s=this._trackByFn(a,i),n===null||!Object.is(n.trackById,s)?(n=this._mismatch(n,i,s,a),r=!0):(r&&(n=this._verifyReinsertion(n,i,s,a)),Object.is(n.item,i)||this._addIdentityChange(n,i)),n=n._next}else o=0,Hf(t,a=>{s=this._trackByFn(o,a),n===null||!Object.is(n.trackById,s)?(n=this._mismatch(n,a,s,o),r=!0):(r&&(n=this._verifyReinsertion(n,a,s,o)),Object.is(n.item,a)||this._addIdentityChange(n,a)),n=n._next,o++}),this.length=o;return this._truncate(n),this.collection=t,this.isDirty}get isDirty(){return this._additionsHead!==null||this._movesHead!==null||this._removalsHead!==null||this._identityChangesHead!==null}_reset(){if(this.isDirty){let t;for(t=this._previousItHead=this._itHead;t!==null;t=t._next)t._nextPrevious=t._next;for(t=this._additionsHead;t!==null;t=t._nextAdded)t.previousIndex=t.currentIndex;for(this._additionsHead=this._additionsTail=null,t=this._movesHead;t!==null;t=t._nextMoved)t.previousIndex=t.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(t,n,r,o){let i;return t===null?i=this._itTail:(i=t._prev,this._remove(t)),t=this._unlinkedRecords===null?null:this._unlinkedRecords.get(r,null),t!==null?(Object.is(t.item,n)||this._addIdentityChange(t,n),this._reinsertAfter(t,i,o)):(t=this._linkedRecords===null?null:this._linkedRecords.get(r,o),t!==null?(Object.is(t.item,n)||this._addIdentityChange(t,n),this._moveAfter(t,i,o)):t=this._addAfter(new Vc(n,r),i,o)),t}_verifyReinsertion(t,n,r,o){let i=this._unlinkedRecords===null?null:this._unlinkedRecords.get(r,null);return i!==null?t=this._reinsertAfter(i,t._prev,o):t.currentIndex!=o&&(t.currentIndex=o,this._addToMoves(t,o)),t}_truncate(t){for(;t!==null;){let n=t._next;this._addToRemovals(this._unlink(t)),t=n}this._unlinkedRecords!==null&&this._unlinkedRecords.clear(),this._additionsTail!==null&&(this._additionsTail._nextAdded=null),this._movesTail!==null&&(this._movesTail._nextMoved=null),this._itTail!==null&&(this._itTail._next=null),this._removalsTail!==null&&(this._removalsTail._nextRemoved=null),this._identityChangesTail!==null&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(t,n,r){this._unlinkedRecords!==null&&this._unlinkedRecords.remove(t);let o=t._prevRemoved,i=t._nextRemoved;return o===null?this._removalsHead=i:o._nextRemoved=i,i===null?this._removalsTail=o:i._prevRemoved=o,this._insertAfter(t,n,r),this._addToMoves(t,r),t}_moveAfter(t,n,r){return this._unlink(t),this._insertAfter(t,n,r),this._addToMoves(t,r),t}_addAfter(t,n,r){return this._insertAfter(t,n,r),this._additionsTail===null?this._additionsTail=this._additionsHead=t:this._additionsTail=this._additionsTail._nextAdded=t,t}_insertAfter(t,n,r){let o=n===null?this._itHead:n._next;return t._next=o,t._prev=n,o===null?this._itTail=t:o._prev=t,n===null?this._itHead=t:n._next=t,this._linkedRecords===null&&(this._linkedRecords=new vi),this._linkedRecords.put(t),t.currentIndex=r,t}_remove(t){return this._addToRemovals(this._unlink(t))}_unlink(t){this._linkedRecords!==null&&this._linkedRecords.remove(t);let n=t._prev,r=t._next;return n===null?this._itHead=r:n._next=r,r===null?this._itTail=n:r._prev=n,t}_addToMoves(t,n){return t.previousIndex===n||(this._movesTail===null?this._movesTail=this._movesHead=t:this._movesTail=this._movesTail._nextMoved=t),t}_addToRemovals(t){return this._unlinkedRecords===null&&(this._unlinkedRecords=new vi),this._unlinkedRecords.put(t),t.currentIndex=null,t._nextRemoved=null,this._removalsTail===null?(this._removalsTail=this._removalsHead=t,t._prevRemoved=null):(t._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=t),t}_addIdentityChange(t,n){return t.item=n,this._identityChangesTail===null?this._identityChangesTail=this._identityChangesHead=t:this._identityChangesTail=this._identityChangesTail._nextIdentityChange=t,t}},Vc=class{item;trackById;currentIndex=null;previousIndex=null;_nextPrevious=null;_prev=null;_next=null;_prevDup=null;_nextDup=null;_prevRemoved=null;_nextRemoved=null;_nextAdded=null;_nextMoved=null;_nextIdentityChange=null;constructor(t,n){this.item=t,this.trackById=n}},Hc=class{_head=null;_tail=null;add(t){this._head===null?(this._head=this._tail=t,t._nextDup=null,t._prevDup=null):(this._tail._nextDup=t,t._prevDup=this._tail,t._nextDup=null,this._tail=t)}get(t,n){let r;for(r=this._head;r!==null;r=r._nextDup)if((n===null||n<=r.currentIndex)&&Object.is(r.trackById,t))return r;return null}remove(t){let n=t._prevDup,r=t._nextDup;return n===null?this._head=r:n._nextDup=r,r===null?this._tail=n:r._prevDup=n,this._head===null}},vi=class{map=new Map;put(t){let n=t.trackById,r=this.map.get(n);r||(r=new Hc,this.map.set(n,r)),r.add(t)}get(t,n){let r=t,o=this.map.get(r);return o?o.get(t,n):null}remove(t){let n=t.trackById;return this.map.get(n).remove(t)&&this.map.delete(n),t}get isEmpty(){return this.map.size===0}clear(){this.map.clear()}};function th(e,t,n){let r=e.previousIndex;if(r===null)return r;let o=0;return n&&r<n.length&&(o=n[r]),r+t+o}var Bc=class{constructor(){}supports(t){return t instanceof Map||fi(t)}create(){return new $c}},$c=class{_records=new Map;_mapHead=null;_appendAfter=null;_previousMapHead=null;_changesHead=null;_changesTail=null;_additionsHead=null;_additionsTail=null;_removalsHead=null;_removalsTail=null;get isDirty(){return this._additionsHead!==null||this._changesHead!==null||this._removalsHead!==null}forEachItem(t){let n;for(n=this._mapHead;n!==null;n=n._next)t(n)}forEachPreviousItem(t){let n;for(n=this._previousMapHead;n!==null;n=n._nextPrevious)t(n)}forEachChangedItem(t){let n;for(n=this._changesHead;n!==null;n=n._nextChanged)t(n)}forEachAddedItem(t){let n;for(n=this._additionsHead;n!==null;n=n._nextAdded)t(n)}forEachRemovedItem(t){let n;for(n=this._removalsHead;n!==null;n=n._nextRemoved)t(n)}diff(t){if(!t)t=new Map;else if(!(t instanceof Map||fi(t)))throw new M(900,!1);return this.check(t)?this:null}onDestroy(){}check(t){this._reset();let n=this._mapHead;if(this._appendAfter=null,this._forEach(t,(r,o)=>{if(n&&n.key===o)this._maybeAddToChanges(n,r),this._appendAfter=n,n=n._next;else{let i=this._getOrCreateRecordForKey(o,r);n=this._insertBeforeOrAppend(n,i)}}),n){n._prev&&(n._prev._next=null),this._removalsHead=n;for(let r=n;r!==null;r=r._nextRemoved)r===this._mapHead&&(this._mapHead=null),this._records.delete(r.key),r._nextRemoved=r._next,r.previousValue=r.currentValue,r.currentValue=null,r._prev=null,r._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(t,n){if(t){let r=t._prev;return n._next=t,n._prev=r,t._prev=n,r&&(r._next=n),t===this._mapHead&&(this._mapHead=n),this._appendAfter=t,t}return this._appendAfter?(this._appendAfter._next=n,n._prev=this._appendAfter):this._mapHead=n,this._appendAfter=n,null}_getOrCreateRecordForKey(t,n){if(this._records.has(t)){let o=this._records.get(t);this._maybeAddToChanges(o,n);let i=o._prev,s=o._next;return i&&(i._next=s),s&&(s._prev=i),o._next=null,o._prev=null,o}let r=new Uc(t);return this._records.set(t,r),r.currentValue=n,this._addToAdditions(r),r}_reset(){if(this.isDirty){let t;for(this._previousMapHead=this._mapHead,t=this._previousMapHead;t!==null;t=t._next)t._nextPrevious=t._next;for(t=this._changesHead;t!==null;t=t._nextChanged)t.previousValue=t.currentValue;for(t=this._additionsHead;t!=null;t=t._nextAdded)t.previousValue=t.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(t,n){Object.is(n,t.currentValue)||(t.previousValue=t.currentValue,t.currentValue=n,this._addToChanges(t))}_addToAdditions(t){this._additionsHead===null?this._additionsHead=this._additionsTail=t:(this._additionsTail._nextAdded=t,this._additionsTail=t)}_addToChanges(t){this._changesHead===null?this._changesHead=this._changesTail=t:(this._changesTail._nextChanged=t,this._changesTail=t)}_forEach(t,n){t instanceof Map?t.forEach(n):Object.keys(t).forEach(r=>n(t[r],r))}},Uc=class{key;previousValue=null;currentValue=null;_nextPrevious=null;_next=null;_prev=null;_nextAdded=null;_nextRemoved=null;_nextChanged=null;constructor(t){this.key=t}};function nh(){return new FD([new Fc])}var FD=(()=>{class e{factories;static \u0275prov=W({token:e,providedIn:"root",factory:nh});constructor(n){this.factories=n}static create(n,r){if(r!=null){let o=r.factories.slice();n=n.concat(o)}return new e(n)}static extend(n){return{provide:e,useFactory:()=>{let r=w(e,{optional:!0,skipSelf:!0});return e.create(n,r||nh())}}}find(n){let r=this.factories.find(o=>o.supports(n));if(r!=null)return r;throw new M(901,!1)}}return e})();function rh(){return new jD([new Bc])}var jD=(()=>{class e{static \u0275prov=W({token:e,providedIn:"root",factory:rh});factories;constructor(n){this.factories=n}static create(n,r){if(r){let o=r.factories.slice();n=n.concat(o)}return new e(n)}static extend(n){return{provide:e,useFactory:()=>{let r=w(e,{optional:!0,skipSelf:!0});return e.create(n,r||rh())}}}find(n){let r=this.factories.find(o=>o.supports(n));if(r)return r;throw new M(901,!1)}}return e})();function zL(e){let{rootComponent:t,appProviders:n,platformProviders:r,platformRef:o}=e;R(x.BootstrapApplicationStart);try{let i=o?.injector??RD(r),s=[kc(),_u,...n||[]],a=new or({providers:s,parent:i,debugName:"",runEnvironmentInitializers:!1});return ND({r3Injector:a.injector,platformInjector:i,rootComponent:t})}catch(i){return Promise.reject(i)}finally{R(x.BootstrapApplicationEnd)}}function QL(e){return typeof e=="boolean"?e:e!=null&&e!=="false"}function ZL(e,t=NaN){return!isNaN(parseFloat(e))&&!isNaN(Number(e))?Number(e):t}function YL(e,t){let n=We(e),r=t.elementInjector||Xt();return new Rt(n).create(r,t.projectableNodes,t.hostElement,t.environmentInjector,t.directives,t.bindings)}var Pt=(function(e){return e[e.State=0]="State",e[e.Transition=1]="Transition",e[e.Sequence=2]="Sequence",e[e.Group=3]="Group",e[e.Animate=4]="Animate",e[e.Keyframes=5]="Keyframes",e[e.Style=6]="Style",e[e.Trigger=7]="Trigger",e[e.Reference=8]="Reference",e[e.AnimateChild=9]="AnimateChild",e[e.AnimateRef=10]="AnimateRef",e[e.Query=11]="Query",e[e.Stagger=12]="Stagger",e})(Pt||{}),nF="*";function rF(e,t){return{type:Pt.Trigger,name:e,definitions:t,options:{}}}function oF(e,t=null){return{type:Pt.Animate,styles:t,timings:e}}function iF(e,t=null){return{type:Pt.Sequence,steps:e,options:t}}function sF(e){return{type:Pt.Style,styles:e,offset:null}}function aF(e,t,n){return{type:Pt.State,name:e,styles:t,options:n}}function cF(e,t,n=null){return{type:Pt.Transition,expr:e,animation:t,options:n}}var sh=class{_onDoneFns=[];_onStartFns=[];_onDestroyFns=[];_originalOnDoneFns=[];_originalOnStartFns=[];_started=!1;_destroyed=!1;_finished=!1;_position=0;parentPlayer=null;totalTime;constructor(t=0,n=0){this.totalTime=t+n}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(t=>t()),this._onDoneFns=[])}onStart(t){this._originalOnStartFns.push(t),this._onStartFns.push(t)}onDone(t){this._originalOnDoneFns.push(t),this._onDoneFns.push(t)}onDestroy(t){this._onDestroyFns.push(t)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){queueMicrotask(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(t=>t()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(t=>t()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition(t){this._position=this.totalTime?t*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(t){let n=t=="start"?this._onStartFns:this._onDoneFns;n.forEach(r=>r()),n.length=0}},ah=class{_onDoneFns=[];_onStartFns=[];_finished=!1;_started=!1;_destroyed=!1;_onDestroyFns=[];parentPlayer=null;totalTime=0;players;constructor(t){this.players=t;let n=0,r=0,o=0,i=this.players.length;i==0?queueMicrotask(()=>this._onFinish()):this.players.forEach(s=>{s.onDone(()=>{++n==i&&this._onFinish()}),s.onDestroy(()=>{++r==i&&this._onDestroy()}),s.onStart(()=>{++o==i&&this._onStart()})}),this.totalTime=this.players.reduce((s,a)=>Math.max(s,a.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(t=>t()),this._onDoneFns=[])}init(){this.players.forEach(t=>t.init())}onStart(t){this._onStartFns.push(t)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(t=>t()),this._onStartFns=[])}onDone(t){this._onDoneFns.push(t)}onDestroy(t){this._onDestroyFns.push(t)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(t=>t.play())}pause(){this.players.forEach(t=>t.pause())}restart(){this.players.forEach(t=>t.restart())}finish(){this._onFinish(),this.players.forEach(t=>t.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(t=>t.destroy()),this._onDestroyFns.forEach(t=>t()),this._onDestroyFns=[])}reset(){this.players.forEach(t=>t.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(t){let n=t*this.totalTime;this.players.forEach(r=>{let o=r.totalTime?Math.min(1,n/r.totalTime):1;r.setPosition(o)})}getPosition(){let t=this.players.reduce((n,r)=>n===null||r.totalTime>n.totalTime?r:n,null);return t!=null?t.getPosition():0}beforeDestroy(){this.players.forEach(t=>{t.beforeDestroy&&t.beforeDestroy()})}triggerCallback(t){let n=t=="start"?this._onStartFns:this._onDoneFns;n.forEach(r=>r()),n.length=0}},lF="!";export{$ as a,dh as b,_ as c,re as d,En as e,mh as f,je as g,Te as h,Ni as i,Th as j,wh as k,Le as l,_h as m,hh as n,Ve as o,kh as p,he as q,Dn as r,Ke as s,Lh as t,Fh as u,Si as v,ut as w,qh as x,Wh as y,Cn as z,zh as A,Zh as B,Yh as C,yl as D,Kh as E,Xc as F,Ut as G,Jh as H,Xh as I,ng as J,rg as K,og as L,ig as M,sg as N,ag as O,cg as P,bl as Q,Tl as R,lg as S,ug as T,M as U,kn as V,ro as W,W as X,Vl as Y,Eg as Z,k as _,_e as $,w as aa,vs as ba,Zl as ca,Ds as da,ge as ea,uo as fa,cu as ga,lu as ha,Eu as ia,Du as ja,me as ka,Zs as la,it as ma,Mt as na,He as oa,Me as pa,Ue as qa,Nt as ra,Co as sa,qe as ta,na as ua,Mu as va,ra as wa,am as xa,wm as ya,wd as za,cr as Aa,Rm as Ba,Om as Ca,Od as Da,Pm as Ea,Lm as Fa,Fm as Ga,kd as Ha,jm as Ia,At as Ja,gn as Ka,ni as La,Um as Ma,qm as Na,Wm as Oa,Gm as Pa,zm as Qa,ec as Ra,Zd as Sa,ur as Ta,uy as Ua,Yd as Va,dy as Wa,py as Xa,vy as Ya,Vy as Za,Ho as _a,Jn as $a,dr as ab,Ze as bb,By as cb,$y as db,tr as eb,hr as fb,nr as gb,Bv as hb,gr as ib,Uv as jb,pi as kb,ep as lb,tp as mb,_I as nb,NI as ob,AI as pb,RI as qb,kI as rb,ip as sb,ap as tb,GI as ub,Tc as vb,fp as wb,hi as xb,gp as yb,ZI as zb,YI as Ab,KI as Bb,JI as Cb,XI as Db,eE as Eb,mp as Fb,Mc as Gb,Nc as Hb,yp as Ib,Sc as Jb,xc as Kb,vp as Lb,Ep as Mb,Ac as Nb,Rc as Ob,Dp as Pb,Cp as Qb,iE as Rb,Tp as Sb,wp as Tb,cE as Ub,lE as Vb,Ko as Wb,Mp as Xb,Np as Yb,fE as Zb,hE as _b,gE as $b,yE as ac,vE as bc,IE as cc,EE as dc,DE as ec,CE as fc,bE as gc,Rp as hc,Op as ic,kE as jc,WE as kc,Hp as lc,Oc as mc,Bp as nc,$p as oc,Up as pc,qp as qc,Wp as rc,KE as sc,Gp as tc,JE as uc,XE as vc,oD as wc,iD as xc,sD as yc,aD as zc,cD as Ac,lD as Bc,uD as Cc,dD as Dc,hD as Ec,mD as Fc,yD as Gc,vD as Hc,ID as Ic,ED as Jc,Pc as Kc,CD as Lc,Jp as Mc,$L as Nc,UL as Oc,qL as Pc,WL as Qc,GL as Rc,FD as Sc,jD as Tc,zL as Uc,QL as Vc,ZL as Wc,YL as Xc,Pt as Yc,nF as Zc,rF as _c,oF as $c,iF as ad,sF as bd,aF as cd,cF as dd,sh as ed,ah as fd,lF as gd};
package/public/index.html CHANGED
@@ -16,9 +16,9 @@
16
16
  <link rel="manifest" href="/assets/manifest.webmanifest"/>
17
17
  <meta name="theme-color" content="#140a33" media="(prefers-color-scheme: light)"/>
18
18
  <meta name="theme-color" content="#0f0f0f" media="(prefers-color-scheme: dark)"/>
19
- <link rel="stylesheet" href="styles-7EFV5QBG.css" crossorigin="use-credentials"></head>
19
+ <link rel="stylesheet" href="styles-CT2LPGES.css" crossorigin="use-credentials"></head>
20
20
 
21
21
  <body>
22
22
  <app-root></app-root>
23
- <link rel="modulepreload" href="chunk-RMH5OYGC.js"><link rel="modulepreload" href="chunk-IEAPUTEM.js"><link rel="modulepreload" href="chunk-XDFBUXFD.js"><link rel="modulepreload" href="chunk-AJFDU7Z7.js"><link rel="modulepreload" href="chunk-FIMBNRF3.js"><link rel="modulepreload" href="chunk-BKFWDZA6.js"><link rel="modulepreload" href="chunk-BROGM6SY.js"><link rel="modulepreload" href="chunk-ADWZU2CD.js"><link rel="modulepreload" href="chunk-EH36LHRK.js"><link rel="modulepreload" href="chunk-HIUHYFSQ.js"><script src="polyfills-5KWHJ7II.js" type="module" crossorigin="use-credentials"></script><script src="main-BAQKIXE4.js" type="module" crossorigin="use-credentials"></script></body>
23
+ <link rel="modulepreload" href="chunk-4HRXISNZ.js"><link rel="modulepreload" href="chunk-5USVC2CC.js"><link rel="modulepreload" href="chunk-QIW6VVBV.js"><link rel="modulepreload" href="chunk-ZCGZM7LU.js"><link rel="modulepreload" href="chunk-GWQFQK2F.js"><link rel="modulepreload" href="chunk-3SLVSNU6.js"><link rel="modulepreload" href="chunk-GAI5J4YQ.js"><link rel="modulepreload" href="chunk-ZAKTSIL5.js"><link rel="modulepreload" href="chunk-JLNKCN3A.js"><link rel="modulepreload" href="chunk-KTLG6VZT.js"><script src="polyfills-34U4WL3Z.js" type="module" crossorigin="use-credentials"></script><script src="main-HATN2V6Z.js" type="module" crossorigin="use-credentials"></script></body>
24
24
  </html>