@frxjs/ngx-timeline 1.0.12 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bundles/frxjs-ngx-timeline.umd.js +701 -0
- package/bundles/frxjs-ngx-timeline.umd.js.map +1 -0
- package/esm2015/frxjs-ngx-timeline.js +8 -0
- package/esm2015/lib/components/index.js +3 -0
- package/esm2015/lib/components/ngx-timeline-event/ngx-timeline-event.component.js +55 -0
- package/esm2015/lib/components/ngx-timeline.component.js +146 -0
- package/esm2015/lib/models/NgxConfigObj.js +93 -0
- package/esm2015/lib/models/NgxTimelineEvent.js +6 -0
- package/esm2015/lib/models/index.js +3 -0
- package/esm2015/lib/ngx-timeline.module.js +23 -0
- package/esm2015/lib/pipes/index.js +2 -0
- package/esm2015/lib/pipes/ngx-date-pipe.js +28 -0
- package/esm2015/public-api.js +8 -0
- package/fesm2015/frxjs-ngx-timeline.js +349 -0
- package/fesm2015/frxjs-ngx-timeline.js.map +1 -0
- package/frxjs-ngx-timeline.d.ts +7 -0
- package/frxjs-ngx-timeline.metadata.json +1 -0
- package/{projects/ngx-timeline/src/lib/components/index.ts → lib/components/index.d.ts} +0 -0
- package/lib/components/ngx-timeline-event/ngx-timeline-event.component.d.ts +35 -0
- package/lib/components/ngx-timeline.component.d.ts +76 -0
- package/lib/models/NgxConfigObj.d.ts +59 -0
- package/lib/models/NgxTimelineEvent.d.ts +29 -0
- package/{projects/ngx-timeline/src/lib/models/index.ts → lib/models/index.d.ts} +0 -0
- package/lib/ngx-timeline.module.d.ts +2 -0
- package/{projects/ngx-timeline/src/lib/pipes/index.ts → lib/pipes/index.d.ts} +0 -0
- package/lib/pipes/ngx-date-pipe.d.ts +7 -0
- package/package.json +16 -51
- package/{projects/ngx-timeline/src/public-api.ts → public-api.d.ts} +0 -3
- package/.editorconfig +0 -16
- package/.github/workflows/CI-main.yml +0 -48
- package/angular.json +0 -178
- package/docs/3rdpartylicenses.txt +0 -268
- package/docs/assets/inter.png +0 -0
- package/docs/favicon.ico +0 -0
- package/docs/index.html +0 -13
- package/docs/main.6005a10000c87d7095d3.js +0 -1
- package/docs/polyfills.f8ddde825b13760c1743.js +0 -1
- package/docs/runtime.0e49e2b53282f40c8925.js +0 -1
- package/docs/styles.09e2c710755c8867a460.css +0 -0
- package/projects/demo-app/.browserslistrc +0 -17
- package/projects/demo-app/e2e/protractor.conf.js +0 -37
- package/projects/demo-app/e2e/src/app.e2e-spec.ts +0 -23
- package/projects/demo-app/e2e/src/app.po.ts +0 -11
- package/projects/demo-app/e2e/tsconfig.json +0 -13
- package/projects/demo-app/karma.conf.js +0 -44
- package/projects/demo-app/src/app/app.component.html +0 -90
- package/projects/demo-app/src/app/app.component.scss +0 -417
- package/projects/demo-app/src/app/app.component.spec.ts +0 -24
- package/projects/demo-app/src/app/app.component.ts +0 -147
- package/projects/demo-app/src/app/app.module.ts +0 -20
- package/projects/demo-app/src/assets/.gitkeep +0 -0
- package/projects/demo-app/src/assets/inter.png +0 -0
- package/projects/demo-app/src/environments/environment.prod.ts +0 -3
- package/projects/demo-app/src/environments/environment.ts +0 -16
- package/projects/demo-app/src/favicon.ico +0 -0
- package/projects/demo-app/src/index.html +0 -13
- package/projects/demo-app/src/main.ts +0 -12
- package/projects/demo-app/src/polyfills.ts +0 -63
- package/projects/demo-app/src/styles.scss +0 -1
- package/projects/demo-app/src/test.ts +0 -25
- package/projects/demo-app/tsconfig.app.json +0 -26
- package/projects/demo-app/tsconfig.spec.json +0 -18
- package/projects/demo-app/tslint.json +0 -17
- package/projects/ngx-timeline/README.md +0 -136
- package/projects/ngx-timeline/karma.conf.js +0 -44
- package/projects/ngx-timeline/ng-package.json +0 -7
- package/projects/ngx-timeline/package.json +0 -20
- package/projects/ngx-timeline/src/lib/components/ngx-timeline-event/ngx-timeline-event.component.html +0 -37
- package/projects/ngx-timeline/src/lib/components/ngx-timeline-event/ngx-timeline-event.component.scss +0 -197
- package/projects/ngx-timeline/src/lib/components/ngx-timeline-event/ngx-timeline-event.component.spec.ts +0 -89
- package/projects/ngx-timeline/src/lib/components/ngx-timeline-event/ngx-timeline-event.component.ts +0 -66
- package/projects/ngx-timeline/src/lib/components/ngx-timeline.component.html +0 -98
- package/projects/ngx-timeline/src/lib/components/ngx-timeline.component.spec.ts +0 -160
- package/projects/ngx-timeline/src/lib/components/ngx-timeline.component.ts +0 -187
- package/projects/ngx-timeline/src/lib/components/ngx-timeline.scss +0 -226
- package/projects/ngx-timeline/src/lib/models/NgxConfigObj.ts +0 -110
- package/projects/ngx-timeline/src/lib/models/NgxTimelineEvent.ts +0 -32
- package/projects/ngx-timeline/src/lib/ngx-timeline.module.ts +0 -21
- package/projects/ngx-timeline/src/lib/pipes/ngx-date-pipe.ts +0 -29
- package/projects/ngx-timeline/src/test.ts +0 -26
- package/projects/ngx-timeline/tsconfig.lib.json +0 -25
- package/projects/ngx-timeline/tsconfig.lib.prod.json +0 -10
- package/projects/ngx-timeline/tsconfig.spec.json +0 -17
- package/projects/ngx-timeline/tslint.json +0 -17
- package/tsconfig.json +0 -35
- package/tslint.json +0 -140
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{0:function(t,e,n){t.exports=n("hWqd")},"1IWC":function(t,e,n){var r,o,i;!function(s){if("object"==typeof t.exports){var u=s(0,e);void 0!==u&&(t.exports=u)}else o=[n,e],void 0===(i="function"==typeof(r=s)?r.apply(e,o):r)||(t.exports=i)}(function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=void 0;e.default=["it",[["m.","p."],["AM","PM"],n],n,[["D","L","M","M","G","V","S"],["dom","lun","mar","mer","gio","ven","sab"],["domenica","luned\xec","marted\xec","mercoled\xec","gioved\xec","venerd\xec","sabato"],["dom","lun","mar","mer","gio","ven","sab"]],n,[["G","F","M","A","M","G","L","A","S","O","N","D"],["gen","feb","mar","apr","mag","giu","lug","ago","set","ott","nov","dic"],["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"]],n,[["aC","dC"],["a.C.","d.C."],["avanti Cristo","dopo Cristo"]],1,[6,0],["dd/MM/yy","d MMM y","d MMMM y","EEEE d MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, {0}",n,"{1} {0}",n],[",",".",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","#,##0.00\xa0\xa4","#E0"],"EUR","\u20ac","euro",{BRL:[n,"R$"],BYN:[n,"Br"],EGP:[n,"\xa3E"],HKD:[n,"$"],JPY:[n,"\xa5"],KRW:[n,"\u20a9"],MXN:[n,"$"],NOK:[n,"NKr"],THB:["\u0e3f"],TWD:[n,"NT$"],USD:[n,"$"]},"ltr",function(t){var e=Math.floor(Math.abs(t)),n=t.toString().replace(/^[^.]*\.?/,"").length;return 1===e&&0===n?1:5}]})},"2Yyj":function(t,e,n){var r,o,i;!function(s){if("object"==typeof t.exports){var u=s(0,e);void 0!==u&&(t.exports=u)}else o=[n,e],void 0===(i="function"==typeof(r=s)?r.apply(e,o):r)||(t.exports=i)}(function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=void 0;e.default=["es",[["a.\xa0m.","p.\xa0m."],n,n],n,[["D","L","M","X","J","V","S"],["dom.","lun.","mar.","mi\xe9.","jue.","vie.","s\xe1b."],["domingo","lunes","martes","mi\xe9rcoles","jueves","viernes","s\xe1bado"],["DO","LU","MA","MI","JU","VI","SA"]],n,[["E","F","M","A","M","J","J","A","S","O","N","D"],["ene.","feb.","mar.","abr.","may.","jun.","jul.","ago.","sept.","oct.","nov.","dic."],["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"]],n,[["a. C.","d. C."],n,["antes de Cristo","despu\xe9s de Cristo"]],1,[6,0],["d/M/yy","d MMM y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y"],["H:mm","H:mm:ss","H:mm:ss z","H:mm:ss (zzzz)"],["{1} {0}",n,"{1}, {0}",n],[",",".",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0\xa0%","#,##0.00\xa0\xa4","#E0"],"EUR","\u20ac","euro",{AUD:[n,"$"],BRL:[n,"R$"],CNY:[n,"\xa5"],EGP:[],ESP:["\u20a7"],GBP:[n,"\xa3"],HKD:[n,"$"],ILS:[n,"\u20aa"],INR:[n,"\u20b9"],JPY:[n,"\xa5"],KRW:[n,"\u20a9"],MXN:[n,"$"],NZD:[n,"$"],RON:[n,"L"],THB:["\u0e3f"],TWD:[n,"NT$"],USD:["US$","$"],XAF:[],XCD:[n,"$"],XOF:[]},"ltr",function(t){return 1===t?1:5}]})},Hfs6:function(t,e,n){var r,o,i;!function(s){if("object"==typeof t.exports){var u=s(0,e);void 0!==u&&(t.exports=u)}else o=[n,e],void 0===(i="function"==typeof(r=s)?r.apply(e,o):r)||(t.exports=i)}(function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=void 0;e.default=["fr",[["AM","PM"],n,n],n,[["D","L","M","M","J","V","S"],["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],["di","lu","ma","me","je","ve","sa"]],n,[["J","F","M","A","M","J","J","A","S","O","N","D"],["janv.","f\xe9vr.","mars","avr.","mai","juin","juil.","ao\xfbt","sept.","oct.","nov.","d\xe9c."],["janvier","f\xe9vrier","mars","avril","mai","juin","juillet","ao\xfbt","septembre","octobre","novembre","d\xe9cembre"]],n,[["av. J.-C.","ap. J.-C."],n,["avant J\xe9sus-Christ","apr\xe8s J\xe9sus-Christ"]],1,[6,0],["dd/MM/y","d MMM y","d MMMM y","EEEE d MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1} {0}","{1} '\xe0' {0}",n,n],[",","\u202f",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0\xa0%","#,##0.00\xa0\xa4","#E0"],"EUR","\u20ac","euro",{ARS:["$AR","$"],AUD:["$AU","$"],BEF:["FB"],BMD:["$BM","$"],BND:["$BN","$"],BZD:["$BZ","$"],CAD:["$CA","$"],CLP:["$CL","$"],CNY:[n,"\xa5"],COP:["$CO","$"],CYP:["\xa3CY"],EGP:[n,"\xa3E"],FJD:["$FJ","$"],FKP:["\xa3FK","\xa3"],FRF:["F"],GBP:["\xa3GB","\xa3"],GIP:["\xa3GI","\xa3"],HKD:[n,"$"],IEP:["\xa3IE"],ILP:["\xa3IL"],ITL:["\u20a4IT"],JPY:[n,"\xa5"],KMF:[n,"FC"],LBP:["\xa3LB","\xa3L"],MTP:["\xa3MT"],MXN:["$MX","$"],NAD:["$NA","$"],NIO:[n,"$C"],NZD:["$NZ","$"],RHD:["$RH"],RON:[n,"L"],RWF:[n,"FR"],SBD:["$SB","$"],SGD:["$SG","$"],SRD:["$SR","$"],TOP:[n,"$T"],TTD:["$TT","$"],TWD:[n,"NT$"],USD:["$US","$"],UYU:["$UY","$"],WST:["$WS"],XCD:[n,"$"],XPF:["FCFP"],ZMW:[n,"Kw"]},"ltr",function(t){var e=Math.floor(Math.abs(t));return 0===e||1===e?1:5}]})},Q0DP:function(t,e){function n(t){return Promise.resolve().then(function(){var e=new Error("Cannot find module '"+t+"'");throw e.code="MODULE_NOT_FOUND",e})}n.keys=function(){return[]},n.resolve=n,t.exports=n,n.id="Q0DP"},VLs4:function(t,e,n){var r,o,i;!function(s){if("object"==typeof t.exports){var u=s(0,e);void 0!==u&&(t.exports=u)}else o=[n,e],void 0===(i="function"==typeof(r=s)?r.apply(e,o):r)||(t.exports=i)}(function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=void 0;e.default=["de",[["AM","PM"],n,n],n,[["S","M","D","M","D","F","S"],["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."],["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."]],[["S","M","D","M","D","F","S"],["So","Mo","Di","Mi","Do","Fr","Sa"],["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."]],[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan.","Feb.","M\xe4rz","Apr.","Mai","Juni","Juli","Aug.","Sept.","Okt.","Nov.","Dez."],["Januar","Februar","M\xe4rz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]],[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","M\xe4r","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],["Januar","Februar","M\xe4rz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]],[["v. Chr.","n. Chr."],n,n],1,[6,0],["dd.MM.yy","dd.MM.y","d. MMMM y","EEEE, d. MMMM y"],["HH:mm","HH:mm:ss","HH:mm:ss z","HH:mm:ss zzzz"],["{1}, {0}",n,"{1} 'um' {0}",n],[",",".",";","%","+","-","E","\xb7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0\xa0%","#,##0.00\xa0\xa4","#E0"],"EUR","\u20ac","Euro",{ATS:["\xf6S"],AUD:["AU$","$"],BGM:["BGK"],BGO:["BGJ"],CUC:[n,"Cub$"],DEM:["DM"],FKP:[n,"Fl\xa3"],GNF:[n,"F.G."],KMF:[n,"FC"],RON:[n,"L"],RWF:[n,"F.Rw"],SYP:[],THB:["\u0e3f"],TWD:["NT$"],XXX:[],ZMW:[n,"K"]},"ltr",function(t){var e=Math.floor(Math.abs(t)),n=t.toString().replace(/^[^.]*\.?/,"").length;return 1===e&&0===n?1:5}]})},hWqd:function(t,e,n){"use strict";function r(t){return"function"==typeof t}n.r(e);let o=!1;const i={Promise:void 0,set useDeprecatedSynchronousErrorHandling(t){if(t){const t=new Error;console.warn("DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \n"+t.stack)}else o&&console.log("RxJS: Back to a better error behavior. Thank you. <3");o=t},get useDeprecatedSynchronousErrorHandling(){return o}};function s(t){setTimeout(()=>{throw t},0)}const u={closed:!0,next(t){},error(t){if(i.useDeprecatedSynchronousErrorHandling)throw t;s(t)},complete(){}},l=(()=>Array.isArray||(t=>t&&"number"==typeof t.length))();function a(t){return null!==t&&"object"==typeof t}const c=(()=>{function t(t){return Error.call(this),this.message=t?`${t.length} errors occurred during unsubscription:\n${t.map((t,e)=>`${e+1}) ${t.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=t,this}return t.prototype=Object.create(Error.prototype),t})();let d=(()=>{class t{constructor(t){this.closed=!1,this._parentOrParents=null,this._subscriptions=null,t&&(this._ctorUnsubscribe=!0,this._unsubscribe=t)}unsubscribe(){let e;if(this.closed)return;let{_parentOrParents:n,_ctorUnsubscribe:o,_unsubscribe:i,_subscriptions:s}=this;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,n instanceof t)n.remove(this);else if(null!==n)for(let t=0;t<n.length;++t)n[t].remove(this);if(r(i)){o&&(this._unsubscribe=void 0);try{i.call(this)}catch(u){e=u instanceof c?h(u.errors):[u]}}if(l(s)){let t=-1,n=s.length;for(;++t<n;){const n=s[t];if(a(n))try{n.unsubscribe()}catch(u){e=e||[],u instanceof c?e=e.concat(h(u.errors)):e.push(u)}}}if(e)throw new c(e)}add(e){let n=e;if(!e)return t.EMPTY;switch(typeof e){case"function":n=new t(e);case"object":if(n===this||n.closed||"function"!=typeof n.unsubscribe)return n;if(this.closed)return n.unsubscribe(),n;if(!(n instanceof t)){const e=n;n=new t,n._subscriptions=[e]}break;default:throw new Error("unrecognized teardown "+e+" added to Subscription.")}let{_parentOrParents:r}=n;if(null===r)n._parentOrParents=this;else if(r instanceof t){if(r===this)return n;n._parentOrParents=[r,this]}else{if(-1!==r.indexOf(this))return n;r.push(this)}const o=this._subscriptions;return null===o?this._subscriptions=[n]:o.push(n),n}remove(t){const e=this._subscriptions;if(e){const n=e.indexOf(t);-1!==n&&e.splice(n,1)}}}return t.EMPTY=function(t){return t.closed=!0,t}(new t),t})();function h(t){return t.reduce((t,e)=>t.concat(e instanceof c?e.errors:e),[])}const f=(()=>"function"==typeof Symbol?Symbol("rxSubscriber"):"@@rxSubscriber_"+Math.random())();class p extends d{constructor(t,e,n){switch(super(),this.syncErrorValue=null,this.syncErrorThrown=!1,this.syncErrorThrowable=!1,this.isStopped=!1,arguments.length){case 0:this.destination=u;break;case 1:if(!t){this.destination=u;break}if("object"==typeof t){t instanceof p?(this.syncErrorThrowable=t.syncErrorThrowable,this.destination=t,t.add(this)):(this.syncErrorThrowable=!0,this.destination=new g(this,t));break}default:this.syncErrorThrowable=!0,this.destination=new g(this,t,e,n)}}[f](){return this}static create(t,e,n){const r=new p(t,e,n);return r.syncErrorThrowable=!1,r}next(t){this.isStopped||this._next(t)}error(t){this.isStopped||(this.isStopped=!0,this._error(t))}complete(){this.isStopped||(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe())}_next(t){this.destination.next(t)}_error(t){this.destination.error(t),this.unsubscribe()}_complete(){this.destination.complete(),this.unsubscribe()}_unsubscribeAndRecycle(){const{_parentOrParents:t}=this;return this._parentOrParents=null,this.unsubscribe(),this.closed=!1,this.isStopped=!1,this._parentOrParents=t,this}}class g extends p{constructor(t,e,n,o){let i;super(),this._parentSubscriber=t;let s=this;r(e)?i=e:e&&(i=e.next,n=e.error,o=e.complete,e!==u&&(s=Object.create(e),r(s.unsubscribe)&&this.add(s.unsubscribe.bind(s)),s.unsubscribe=this.unsubscribe.bind(this))),this._context=s,this._next=i,this._error=n,this._complete=o}next(t){if(!this.isStopped&&this._next){const{_parentSubscriber:e}=this;i.useDeprecatedSynchronousErrorHandling&&e.syncErrorThrowable?this.__tryOrSetError(e,this._next,t)&&this.unsubscribe():this.__tryOrUnsub(this._next,t)}}error(t){if(!this.isStopped){const{_parentSubscriber:e}=this,{useDeprecatedSynchronousErrorHandling:n}=i;if(this._error)n&&e.syncErrorThrowable?(this.__tryOrSetError(e,this._error,t),this.unsubscribe()):(this.__tryOrUnsub(this._error,t),this.unsubscribe());else if(e.syncErrorThrowable)n?(e.syncErrorValue=t,e.syncErrorThrown=!0):s(t),this.unsubscribe();else{if(this.unsubscribe(),n)throw t;s(t)}}}complete(){if(!this.isStopped){const{_parentSubscriber:t}=this;if(this._complete){const e=()=>this._complete.call(this._context);i.useDeprecatedSynchronousErrorHandling&&t.syncErrorThrowable?(this.__tryOrSetError(t,e),this.unsubscribe()):(this.__tryOrUnsub(e),this.unsubscribe())}else this.unsubscribe()}}__tryOrUnsub(t,e){try{t.call(this._context,e)}catch(n){if(this.unsubscribe(),i.useDeprecatedSynchronousErrorHandling)throw n;s(n)}}__tryOrSetError(t,e,n){if(!i.useDeprecatedSynchronousErrorHandling)throw new Error("bad call");try{e.call(this._context,n)}catch(r){return i.useDeprecatedSynchronousErrorHandling?(t.syncErrorValue=r,t.syncErrorThrown=!0,!0):(s(r),!0)}return!1}_unsubscribe(){const{_parentSubscriber:t}=this;this._context=null,this._parentSubscriber=null,t.unsubscribe()}}const m=(()=>"function"==typeof Symbol&&Symbol.observable||"@@observable")();function _(t){return t}let y=(()=>{class t{constructor(t){this._isScalar=!1,t&&(this._subscribe=t)}lift(e){const n=new t;return n.source=this,n.operator=e,n}subscribe(t,e,n){const{operator:r}=this,o=function(t,e,n){if(t){if(t instanceof p)return t;if(t[f])return t[f]()}return t||e||n?new p(t,e,n):new p(u)}(t,e,n);if(o.add(r?r.call(o,this.source):this.source||i.useDeprecatedSynchronousErrorHandling&&!o.syncErrorThrowable?this._subscribe(o):this._trySubscribe(o)),i.useDeprecatedSynchronousErrorHandling&&o.syncErrorThrowable&&(o.syncErrorThrowable=!1,o.syncErrorThrown))throw o.syncErrorValue;return o}_trySubscribe(t){try{return this._subscribe(t)}catch(e){i.useDeprecatedSynchronousErrorHandling&&(t.syncErrorThrown=!0,t.syncErrorValue=e),function(t){for(;t;){const{closed:e,destination:n,isStopped:r}=t;if(e||r)return!1;t=n&&n instanceof p?n:null}return!0}(t)?t.error(e):console.warn(e)}}forEach(t,e){return new(e=C(e))((e,n)=>{let r;r=this.subscribe(e=>{try{t(e)}catch(o){n(o),r&&r.unsubscribe()}},n,e)})}_subscribe(t){const{source:e}=this;return e&&e.subscribe(t)}[m](){return this}pipe(...t){return 0===t.length?this:(0===(e=t).length?_:1===e.length?e[0]:function(t){return e.reduce((t,e)=>e(t),t)})(this);var e}toPromise(t){return new(t=C(t))((t,e)=>{let n;this.subscribe(t=>n=t,t=>e(t),()=>t(n))})}}return t.create=e=>new t(e),t})();function C(t){if(t||(t=i.Promise||Promise),!t)throw new Error("no Promise impl found");return t}const v=(()=>{function t(){return Error.call(this),this.message="object unsubscribed",this.name="ObjectUnsubscribedError",this}return t.prototype=Object.create(Error.prototype),t})();class D extends d{constructor(t,e){super(),this.subject=t,this.subscriber=e,this.closed=!1}unsubscribe(){if(this.closed)return;this.closed=!0;const t=this.subject,e=t.observers;if(this.subject=null,!e||0===e.length||t.isStopped||t.closed)return;const n=e.indexOf(this.subscriber);-1!==n&&e.splice(n,1)}}class b extends p{constructor(t){super(t),this.destination=t}}let w=(()=>{class t extends y{constructor(){super(),this.observers=[],this.closed=!1,this.isStopped=!1,this.hasError=!1,this.thrownError=null}[f](){return new b(this)}lift(t){const e=new E(this,this);return e.operator=t,e}next(t){if(this.closed)throw new v;if(!this.isStopped){const{observers:e}=this,n=e.length,r=e.slice();for(let o=0;o<n;o++)r[o].next(t)}}error(t){if(this.closed)throw new v;this.hasError=!0,this.thrownError=t,this.isStopped=!0;const{observers:e}=this,n=e.length,r=e.slice();for(let o=0;o<n;o++)r[o].error(t);this.observers.length=0}complete(){if(this.closed)throw new v;this.isStopped=!0;const{observers:t}=this,e=t.length,n=t.slice();for(let r=0;r<e;r++)n[r].complete();this.observers.length=0}unsubscribe(){this.isStopped=!0,this.closed=!0,this.observers=null}_trySubscribe(t){if(this.closed)throw new v;return super._trySubscribe(t)}_subscribe(t){if(this.closed)throw new v;return this.hasError?(t.error(this.thrownError),d.EMPTY):this.isStopped?(t.complete(),d.EMPTY):(this.observers.push(t),new D(this,t))}asObservable(){const t=new y;return t.source=this,t}}return t.create=(t,e)=>new E(t,e),t})();class E extends w{constructor(t,e){super(),this.destination=t,this.source=e}next(t){const{destination:e}=this;e&&e.next&&e.next(t)}error(t){const{destination:e}=this;e&&e.error&&this.destination.error(t)}complete(){const{destination:t}=this;t&&t.complete&&this.destination.complete()}_subscribe(t){const{source:e}=this;return e?this.source.subscribe(t):d.EMPTY}}function A(t,e){return function(n){if("function"!=typeof t)throw new TypeError("argument is not a function. Are you looking for `mapTo()`?");return n.lift(new M(t,e))}}class M{constructor(t,e){this.project=t,this.thisArg=e}call(t,e){return e.subscribe(new O(t,this.project,this.thisArg))}}class O extends p{constructor(t,e,n){super(t),this.project=e,this.count=0,this.thisArg=n||this}_next(t){let e;try{e=this.project.call(this.thisArg,t,this.count++)}catch(n){return void this.destination.error(n)}this.destination.next(e)}}const x=t=>e=>{for(let n=0,r=t.length;n<r&&!e.closed;n++)e.next(t[n]);e.complete()};function F(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}const T=F(),P=t=>t&&"number"==typeof t.length&&"function"!=typeof t;function k(t){return!!t&&"function"!=typeof t.subscribe&&"function"==typeof t.then}const S=t=>{if(t&&"function"==typeof t[m])return r=t,t=>{const e=r[m]();if("function"!=typeof e.subscribe)throw new TypeError("Provided object does not correctly implement Symbol.observable");return e.subscribe(t)};if(P(t))return x(t);if(k(t))return n=t,t=>(n.then(e=>{t.closed||(t.next(e),t.complete())},e=>t.error(e)).then(null,s),t);if(t&&"function"==typeof t[T])return e=t,t=>{const n=e[T]();for(;;){let e;try{e=n.next()}catch(r){return t.error(r),t}if(e.done){t.complete();break}if(t.next(e.value),t.closed)break}return"function"==typeof n.return&&t.add(()=>{n.return&&n.return()}),t};{const e=a(t)?"an invalid object":`'${t}'`;throw new TypeError(`You provided ${e} where a stream was expected. You can provide an Observable, Promise, Array, or Iterable.`)}var e,n,r};function I(t,e){return new y(n=>{const r=new d;let o=0;return r.add(e.schedule(function(){o!==t.length?(n.next(t[o++]),n.closed||r.add(this.schedule())):n.complete()})),r})}function V(t,e){return e?function(t,e){if(null!=t){if(function(t){return t&&"function"==typeof t[m]}(t))return function(t,e){return new y(n=>{const r=new d;return r.add(e.schedule(()=>{const o=t[m]();r.add(o.subscribe({next(t){r.add(e.schedule(()=>n.next(t)))},error(t){r.add(e.schedule(()=>n.error(t)))},complete(){r.add(e.schedule(()=>n.complete()))}}))})),r})}(t,e);if(k(t))return function(t,e){return new y(n=>{const r=new d;return r.add(e.schedule(()=>t.then(t=>{r.add(e.schedule(()=>{n.next(t),r.add(e.schedule(()=>n.complete()))}))},t=>{r.add(e.schedule(()=>n.error(t)))}))),r})}(t,e);if(P(t))return I(t,e);if(function(t){return t&&"function"==typeof t[T]}(t)||"string"==typeof t)return function(t,e){if(!t)throw new Error("Iterable cannot be null");return new y(n=>{const r=new d;let o;return r.add(()=>{o&&"function"==typeof o.return&&o.return()}),r.add(e.schedule(()=>{o=t[T](),r.add(e.schedule(function(){if(n.closed)return;let t,e;try{const n=o.next();t=n.value,e=n.done}catch(r){return void n.error(r)}e?n.complete():(n.next(t),this.schedule())}))})),r})}(t,e)}throw new TypeError((null!==t&&typeof t||t)+" is not observable")}(t,e):t instanceof y?t:new y(S(t))}class N extends p{constructor(t){super(),this.parent=t}_next(t){this.parent.notifyNext(t)}_error(t){this.parent.notifyError(t),this.unsubscribe()}_complete(){this.parent.notifyComplete(),this.unsubscribe()}}class B extends p{notifyNext(t){this.destination.next(t)}notifyError(t){this.destination.error(t)}notifyComplete(){this.destination.complete()}}function j(t,e,n=Number.POSITIVE_INFINITY){return"function"==typeof e?r=>r.pipe(j((n,r)=>V(t(n,r)).pipe(A((t,o)=>e(n,t,r,o))),n)):("number"==typeof e&&(n=e),e=>e.lift(new R(t,n)))}class R{constructor(t,e=Number.POSITIVE_INFINITY){this.project=t,this.concurrent=e}call(t,e){return e.subscribe(new H(t,this.project,this.concurrent))}}class H extends B{constructor(t,e,n=Number.POSITIVE_INFINITY){super(t),this.project=e,this.concurrent=n,this.hasCompleted=!1,this.buffer=[],this.active=0,this.index=0}_next(t){this.active<this.concurrent?this._tryNext(t):this.buffer.push(t)}_tryNext(t){let e;const n=this.index++;try{e=this.project(t,n)}catch(r){return void this.destination.error(r)}this.active++,this._innerSub(e)}_innerSub(t){const e=new N(this),n=this.destination;n.add(e);const r=function(t,e){if(e.closed)return;if(t instanceof y)return t.subscribe(e);let n;try{n=S(t)(e)}catch(r){e.error(r)}return n}(t,e);r!==e&&n.add(r)}_complete(){this.hasCompleted=!0,0===this.active&&0===this.buffer.length&&this.destination.complete(),this.unsubscribe()}notifyNext(t){this.destination.next(t)}notifyComplete(){const t=this.buffer;this.active--,t.length>0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}function L(...t){let e=Number.POSITIVE_INFINITY,n=null,r=t[t.length-1];var o;return(o=r)&&"function"==typeof o.schedule?(n=t.pop(),t.length>1&&"number"==typeof t[t.length-1]&&(e=t.pop())):"number"==typeof r&&(e=t.pop()),null===n&&1===t.length&&t[0]instanceof y?t[0]:function(t=Number.POSITIVE_INFINITY){return j(_,t)}(e)(function(t,e){return e?I(t,e):new y(x(t))}(t,n))}function $(){return function(t){return t.lift(new z(t))}}class z{constructor(t){this.connectable=t}call(t,e){const{connectable:n}=this;n._refCount++;const r=new Y(t,n),o=e.subscribe(r);return r.closed||(r.connection=n.connect()),o}}class Y extends p{constructor(t,e){super(t),this.connectable=e}_unsubscribe(){const{connectable:t}=this;if(!t)return void(this.connection=null);this.connectable=null;const e=t._refCount;if(e<=0)return void(this.connection=null);if(t._refCount=e-1,e>1)return void(this.connection=null);const{connection:n}=this,r=t._connection;this.connection=null,!r||n&&r!==n||r.unsubscribe()}}class G extends y{constructor(t,e){super(),this.source=t,this.subjectFactory=e,this._refCount=0,this._isComplete=!1}_subscribe(t){return this.getSubject().subscribe(t)}getSubject(){const t=this._subject;return t&&!t.isStopped||(this._subject=this.subjectFactory()),this._subject}connect(){let t=this._connection;return t||(this._isComplete=!1,t=this._connection=new d,t.add(this.source.subscribe(new Z(this.getSubject(),this))),t.closed&&(this._connection=null,t=d.EMPTY)),t}refCount(){return $()(this)}}const U=(()=>{const t=G.prototype;return{operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:t._subscribe},_isComplete:{value:t._isComplete,writable:!0},getSubject:{value:t.getSubject},connect:{value:t.connect},refCount:{value:t.refCount}}})();class Z extends b{constructor(t,e){super(t),this.connectable=e}_error(t){this._unsubscribe(),super._error(t)}_complete(){this.connectable._isComplete=!0,this._unsubscribe(),super._complete()}_unsubscribe(){const t=this.connectable;if(t){this.connectable=null;const e=t._connection;t._refCount=0,t._subject=null,t._connection=null,e&&e.unsubscribe()}}}function W(){return new w}function J(t){for(let e in t)if(t[e]===J)return e;throw Error("Could not find renamed property on target object.")}function q(t,e){for(const n in e)e.hasOwnProperty(n)&&!t.hasOwnProperty(n)&&(t[n]=e[n])}function K(t){if("string"==typeof t)return t;if(Array.isArray(t))return"["+t.map(K).join(", ")+"]";if(null==t)return""+t;if(t.overriddenName)return""+t.overriddenName;if(t.name)return""+t.name;const e=t.toString();if(null==e)return""+e;const n=e.indexOf("\n");return-1===n?e:e.substring(0,n)}function Q(t,e){return null==t||""===t?null===e?"":e:null==e||""===e?t:t+" "+e}const X=J({__forward_ref__:J});function tt(t){return t.__forward_ref__=tt,t.toString=function(){return K(this())},t}function et(t){return nt(t)?t():t}function nt(t){return"function"==typeof t&&t.hasOwnProperty(X)&&t.__forward_ref__===tt}function rt(t){return{token:t.token,providedIn:t.providedIn||null,factory:t.factory,value:void 0}}function ot(t){return{factory:t.factory,providers:t.providers||[],imports:t.imports||[]}}function it(t){return st(t,lt)||st(t,ct)}function st(t,e){return t.hasOwnProperty(e)?t[e]:null}function ut(t){return t&&(t.hasOwnProperty(at)||t.hasOwnProperty(dt))?t[at]:null}const lt=J({"\u0275prov":J}),at=J({"\u0275inj":J}),ct=J({ngInjectableDef:J}),dt=J({ngInjectorDef:J});var ht=function(t){return t[t.Default=0]="Default",t[t.Host=1]="Host",t[t.Self=2]="Self",t[t.SkipSelf=4]="SkipSelf",t[t.Optional=8]="Optional",t}({});let ft;function pt(t){const e=ft;return ft=t,e}function gt(t,e,n){const r=it(t);if(r&&"root"==r.providedIn)return void 0===r.value?r.value=r.factory():r.value;if(n&ht.Optional)return null;if(void 0!==e)return e;throw new Error(`Injector: NOT_FOUND [${K(t)}]`)}function mt(t){return{toString:t}.toString()}var _t=function(t){return t[t.OnPush=0]="OnPush",t[t.Default=1]="Default",t}({}),yt=function(t){return t[t.Emulated=0]="Emulated",t[t.None=2]="None",t[t.ShadowDom=3]="ShadowDom",t}({});const Ct="undefined"!=typeof globalThis&&globalThis,vt="undefined"!=typeof window&&window,Dt="undefined"!=typeof self&&"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,bt="undefined"!=typeof global&&global,wt=Ct||bt||vt||Dt,Et={},At=[],Mt=J({"\u0275cmp":J}),Ot=J({"\u0275dir":J}),xt=J({"\u0275pipe":J}),Ft=J({"\u0275mod":J}),Tt=J({"\u0275loc":J}),Pt=J({"\u0275fac":J}),kt=J({__NG_ELEMENT_ID__:J});let St=0;function It(t){return mt(()=>{const e={},n={type:t.type,providersResolver:null,decls:t.decls,vars:t.vars,factory:null,template:t.template||null,consts:t.consts||null,ngContentSelectors:t.ngContentSelectors,hostBindings:t.hostBindings||null,hostVars:t.hostVars||0,hostAttrs:t.hostAttrs||null,contentQueries:t.contentQueries||null,declaredInputs:e,inputs:null,outputs:null,exportAs:t.exportAs||null,onPush:t.changeDetection===_t.OnPush,directiveDefs:null,pipeDefs:null,selectors:t.selectors||At,viewQuery:t.viewQuery||null,features:t.features||null,data:t.data||{},encapsulation:t.encapsulation||yt.Emulated,id:"c",styles:t.styles||At,_:null,setInput:null,schemas:t.schemas||null,tView:null},r=t.directives,o=t.features,i=t.pipes;return n.id+=St++,n.inputs=Rt(t.inputs,e),n.outputs=Rt(t.outputs),o&&o.forEach(t=>t(n)),n.directiveDefs=r?()=>("function"==typeof r?r():r).map(Vt):null,n.pipeDefs=i?()=>("function"==typeof i?i():i).map(Nt):null,n})}function Vt(t){return $t(t)||function(t){return t[Ot]||null}(t)}function Nt(t){return function(t){return t[xt]||null}(t)}const Bt={};function jt(t){const e={type:t.type,bootstrap:t.bootstrap||At,declarations:t.declarations||At,imports:t.imports||At,exports:t.exports||At,transitiveCompileScopes:null,schemas:t.schemas||null,id:t.id||null};return null!=t.id&&mt(()=>{Bt[t.id]=t.type}),e}function Rt(t,e){if(null==t)return Et;const n={};for(const r in t)if(t.hasOwnProperty(r)){let o=t[r],i=o;Array.isArray(o)&&(i=o[1],o=o[0]),n[o]=r,e&&(e[o]=i)}return n}const Ht=It;function Lt(t){return{type:t.type,name:t.name,factory:null,pure:!1!==t.pure,onDestroy:t.type.prototype.ngOnDestroy||null}}function $t(t){return t[Mt]||null}function zt(t,e){const n=t[Ft]||null;if(!n&&!0===e)throw new Error(`Type ${K(t)} does not have '\u0275mod' property.`);return n}const Yt=20,Gt=10;function Ut(t){return Array.isArray(t)&&"object"==typeof t[1]}function Zt(t){return Array.isArray(t)&&!0===t[1]}function Wt(t){return 0!=(8&t.flags)}function Jt(t){return 2==(2&t.flags)}function qt(t){return 1==(1&t.flags)}function Kt(t){return null!==t.template}function Qt(t,e){return t.hasOwnProperty(Pt)?t[Pt]:null}class Xt extends Error{constructor(t,e){super(function(t,e){return`${t?`NG0${t}: `:""}${e}`}(t,e)),this.code=t}}function te(t){return"string"==typeof t?t:null==t?"":String(t)}function ee(t){return"function"==typeof t?t.name||t.toString():"object"==typeof t&&null!=t&&"function"==typeof t.type?t.type.name||t.type.toString():te(t)}function ne(t,e){const n=e?" in "+e:"";throw new Xt("201",`No provider for ${ee(t)} found${n}`)}class re{constructor(t,e,n){this.previousValue=t,this.currentValue=e,this.firstChange=n}isFirstChange(){return this.firstChange}}function oe(){return ie}function ie(t){return t.type.prototype.ngOnChanges&&(t.setInput=ue),se}function se(){const t=le(this),e=null==t?void 0:t.current;if(e){const n=t.previous;if(n===Et)t.previous=e;else for(let t in e)n[t]=e[t];t.current=null,this.ngOnChanges(e)}}function ue(t,e,n,r){const o=le(t)||function(t,e){return t.__ngSimpleChanges__=e}(t,{previous:Et,current:null}),i=o.current||(o.current={}),s=o.previous,u=this.declaredInputs[n],l=s[u];i[u]=new re(l&&l.currentValue,e,s===Et),t[r]=e}function le(t){return t.__ngSimpleChanges__||null}oe.ngInherit=!0;const ae="http://www.w3.org/2000/svg";let ce=void 0;function de(t){return!!t.listen}const he={createRenderer:(t,e)=>void 0!==ce?ce:"undefined"!=typeof document?document:void 0};function fe(t){for(;Array.isArray(t);)t=t[0];return t}function pe(t,e){return fe(e[t])}function ge(t,e){return fe(e[t.index])}function me(t,e){return t.data[e]}function _e(t,e){return t[e]}function ye(t,e){const n=e[t];return Ut(n)?n:n[0]}function Ce(t){const e=function(t){return t.__ngContext__||null}(t);return e?Array.isArray(e)?e:e.lView:null}function ve(t){return 128==(128&t[2])}function De(t,e){return null==e?null:t[e]}function be(t){t[18]=0}function we(t,e){t[5]+=e;let n=t,r=t[3];for(;null!==r&&(1===e&&1===n[5]||-1===e&&0===n[5]);)r[5]+=e,n=r,r=r[3]}const Ee={lFrame:Ze(null),bindingsEnabled:!0,isInCheckNoChangesMode:!1};function Ae(){return Ee.bindingsEnabled}function Me(){return Ee.lFrame.lView}function Oe(){return Ee.lFrame.tView}function xe(t){Ee.lFrame.contextLView=t}function Fe(){let t=Te();for(;null!==t&&64===t.type;)t=t.parent;return t}function Te(){return Ee.lFrame.currentTNode}function Pe(t,e){const n=Ee.lFrame;n.currentTNode=t,n.isParent=e}function ke(){return Ee.lFrame.isParent}function Se(){Ee.lFrame.isParent=!1}function Ie(){return Ee.isInCheckNoChangesMode}function Ve(t){Ee.isInCheckNoChangesMode=t}function Ne(){const t=Ee.lFrame;let e=t.bindingRootIndex;return-1===e&&(e=t.bindingRootIndex=t.tView.bindingStartIndex),e}function Be(){return Ee.lFrame.bindingIndex}function je(){return Ee.lFrame.bindingIndex++}function Re(t){const e=Ee.lFrame,n=e.bindingIndex;return e.bindingIndex=e.bindingIndex+t,n}function He(t,e){const n=Ee.lFrame;n.bindingIndex=n.bindingRootIndex=t,Le(e)}function Le(t){Ee.lFrame.currentDirectiveIndex=t}function $e(t){Ee.lFrame.currentQueryIndex=t}function ze(t){const e=t[1];return 2===e.type?e.declTNode:1===e.type?t[6]:null}function Ye(t,e,n){if(n&ht.SkipSelf){let r=e,o=t;for(;r=r.parent,!(null!==r||n&ht.Host||(r=ze(o),null===r)||(o=o[15],10&r.type)););if(null===r)return!1;e=r,t=o}const r=Ee.lFrame=Ue();return r.currentTNode=e,r.lView=t,!0}function Ge(t){const e=Ue(),n=t[1];Ee.lFrame=e,e.currentTNode=n.firstChild,e.lView=t,e.tView=n,e.contextLView=t,e.bindingIndex=n.bindingStartIndex,e.inI18n=!1}function Ue(){const t=Ee.lFrame,e=null===t?null:t.child;return null===e?Ze(t):e}function Ze(t){const e={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:t,child:null,inI18n:!1};return null!==t&&(t.child=e),e}function We(){const t=Ee.lFrame;return Ee.lFrame=t.parent,t.currentTNode=null,t.lView=null,t}const Je=We;function qe(){const t=We();t.isParent=!0,t.tView=null,t.selectedIndex=-1,t.contextLView=null,t.elementDepthCount=0,t.currentDirectiveIndex=-1,t.currentNamespace=null,t.bindingRootIndex=-1,t.bindingIndex=-1,t.currentQueryIndex=0}function Ke(){return Ee.lFrame.selectedIndex}function Qe(t){Ee.lFrame.selectedIndex=t}function Xe(){const t=Ee.lFrame;return me(t.tView,t.selectedIndex)}function tn(t,e){for(let n=e.directiveStart,r=e.directiveEnd;n<r;n++){const e=t.data[n].type.prototype,{ngAfterContentInit:r,ngAfterContentChecked:o,ngAfterViewInit:i,ngAfterViewChecked:s,ngOnDestroy:u}=e;r&&(t.contentHooks||(t.contentHooks=[])).push(-n,r),o&&((t.contentHooks||(t.contentHooks=[])).push(n,o),(t.contentCheckHooks||(t.contentCheckHooks=[])).push(n,o)),i&&(t.viewHooks||(t.viewHooks=[])).push(-n,i),s&&((t.viewHooks||(t.viewHooks=[])).push(n,s),(t.viewCheckHooks||(t.viewCheckHooks=[])).push(n,s)),null!=u&&(t.destroyHooks||(t.destroyHooks=[])).push(n,u)}}function en(t,e,n){on(t,e,3,n)}function nn(t,e,n,r){(3&t[2])===n&&on(t,e,n,r)}function rn(t,e){let n=t[2];(3&n)===e&&(n&=2047,n+=1,t[2]=n)}function on(t,e,n,r){const o=null!=r?r:-1,i=e.length-1;let s=0;for(let u=void 0!==r?65535&t[18]:0;u<i;u++)if("number"==typeof e[u+1]){if(s=e[u],null!=r&&s>=r)break}else e[u]<0&&(t[18]+=65536),(s<o||-1==o)&&(sn(t,n,e,u),t[18]=(4294901760&t[18])+u+2),u++}function sn(t,e,n,r){const o=n[r]<0,i=n[r+1],s=t[o?-n[r]:n[r]];o?t[2]>>11<t[18]>>16&&(3&t[2])===e&&(t[2]+=2048,i.call(s)):i.call(s)}const un=-1;class ln{constructor(t,e,n){this.factory=t,this.resolving=!1,this.canSeeViewProviders=e,this.injectImpl=n}}function an(t,e,n){const r=de(t);let o=0;for(;o<n.length;){const i=n[o];if("number"==typeof i){if(0!==i)break;o++;const s=n[o++],u=n[o++],l=n[o++];r?t.setAttribute(e,u,l,s):e.setAttributeNS(s,u,l)}else{const s=i,u=n[++o];cn(s)?r&&t.setProperty(e,s,u):r?t.setAttribute(e,s,u):e.setAttribute(s,u),o++}}return o}function cn(t){return 64===t.charCodeAt(0)}function dn(t,e){if(null===e||0===e.length);else if(null===t||0===t.length)t=e.slice();else{let n=-1;for(let r=0;r<e.length;r++){const o=e[r];"number"==typeof o?n=o:0===n||hn(t,n,o,null,-1===n||2===n?e[++r]:null)}}return t}function hn(t,e,n,r,o){let i=0,s=t.length;if(-1===e)s=-1;else for(;i<t.length;){const n=t[i++];if("number"==typeof n){if(n===e){s=-1;break}if(n>e){s=i-1;break}}}for(;i<t.length;){const e=t[i];if("number"==typeof e)break;if(e===n){if(null===r)return void(null!==o&&(t[i+1]=o));if(r===t[i+1])return void(t[i+2]=o)}i++,null!==r&&i++,null!==o&&i++}-1!==s&&(t.splice(s,0,e),i=s+1),t.splice(i++,0,n),null!==r&&t.splice(i++,0,r),null!==o&&t.splice(i++,0,o)}function fn(t){return t!==un}function pn(t){return 32767&t}function gn(t,e){let n=t>>16,r=e;for(;n>0;)r=r[15],n--;return r}let mn=!0;function _n(t){const e=mn;return mn=t,e}let yn=0;function Cn(t,e){const n=Dn(t,e);if(-1!==n)return n;const r=e[1];r.firstCreatePass&&(t.injectorIndex=e.length,vn(r.data,t),vn(e,null),vn(r.blueprint,null));const o=bn(t,e),i=t.injectorIndex;if(fn(o)){const t=pn(o),n=gn(o,e),r=n[1].data;for(let o=0;o<8;o++)e[i+o]=n[t+o]|r[t+o]}return e[i+8]=o,i}function vn(t,e){t.push(0,0,0,0,0,0,0,0,e)}function Dn(t,e){return-1===t.injectorIndex||t.parent&&t.parent.injectorIndex===t.injectorIndex||null===e[t.injectorIndex+8]?-1:t.injectorIndex}function bn(t,e){if(t.parent&&-1!==t.parent.injectorIndex)return t.parent.injectorIndex;let n=0,r=null,o=e;for(;null!==o;){const t=o[1],e=t.type;if(r=2===e?t.declTNode:1===e?o[6]:null,null===r)return un;if(n++,o=o[15],-1!==r.injectorIndex)return r.injectorIndex|n<<16}return un}function wn(t,e,n){!function(t,e,n){let r;"string"==typeof n?r=n.charCodeAt(0)||0:n.hasOwnProperty(kt)&&(r=n[kt]),null==r&&(r=n[kt]=yn++);const o=255&r,i=1<<o,s=64&o,u=32&o,l=e.data;128&o?s?u?l[t+7]|=i:l[t+6]|=i:u?l[t+5]|=i:l[t+4]|=i:s?u?l[t+3]|=i:l[t+2]|=i:u?l[t+1]|=i:l[t]|=i}(t,e,n)}function En(t,e,n){if(n&ht.Optional)return t;ne(e,"NodeInjector")}function An(t,e,n,r){if(n&ht.Optional&&void 0===r&&(r=null),0==(n&(ht.Self|ht.Host))){const o=t[9],i=pt(void 0);try{return o?o.get(e,r,n&ht.Optional):gt(e,r,n&ht.Optional)}finally{pt(i)}}return En(r,e,n)}function Mn(t,e,n,r=ht.Default,o){if(null!==t){const i=function(t){if("string"==typeof t)return t.charCodeAt(0)||0;const e=t.hasOwnProperty(kt)?t[kt]:void 0;return"number"==typeof e?e>=0?255&e:xn:e}(n);if("function"==typeof i){if(!Ye(e,t,r))return r&ht.Host?En(o,n,r):An(e,n,r,o);try{const t=i();if(null!=t||r&ht.Optional)return t;ne(n)}finally{Je()}}else if("number"==typeof i){let o=null,s=Dn(t,e),u=un,l=r&ht.Host?e[16][6]:null;for((-1===s||r&ht.SkipSelf)&&(u=-1===s?bn(t,e):e[s+8],u!==un&&kn(r,!1)?(o=e[1],s=pn(u),e=gn(u,e)):s=-1);-1!==s;){const t=e[1];if(Pn(i,s,t.data)){const t=Fn(s,e,n,o,r,l);if(t!==On)return t}u=e[s+8],u!==un&&kn(r,e[1].data[s+8]===l)&&Pn(i,s,e)?(o=t,s=pn(u),e=gn(u,e)):s=-1}}}return An(e,n,r,o)}const On={};function xn(){return new Sn(Fe(),Me())}function Fn(t,e,n,r,o,i){const s=e[1],u=s.data[t+8],l=function(t,e,n,r,o){const i=t.providerIndexes,s=e.data,u=1048575&i,l=t.directiveStart,a=i>>20,c=o?u+a:t.directiveEnd;for(let d=r?u:u+a;d<c;d++){const t=s[d];if(d<l&&n===t||d>=l&&t.type===n)return d}if(o){const t=s[l];if(t&&Kt(t)&&t.type===n)return l}return null}(u,s,n,null==r?Jt(u)&&mn:r!=s&&0!=(3&u.type),o&ht.Host&&i===u);return null!==l?Tn(e,s,l,u):On}function Tn(t,e,n,r){let o=t[n];const i=e.data;if(o instanceof ln){const s=o;s.resolving&&function(t,e){throw new Xt("200","Circular dependency in DI detected for "+t)}(ee(i[n]));const u=_n(s.canSeeViewProviders);s.resolving=!0;const l=s.injectImpl?pt(s.injectImpl):null;Ye(t,r,ht.Default);try{o=t[n]=s.factory(void 0,i,t,r),e.firstCreatePass&&n>=r.directiveStart&&function(t,e,n){const{ngOnChanges:r,ngOnInit:o,ngDoCheck:i}=e.type.prototype;if(r){const r=ie(e);(n.preOrderHooks||(n.preOrderHooks=[])).push(t,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(t,r)}o&&(n.preOrderHooks||(n.preOrderHooks=[])).push(0-t,o),i&&((n.preOrderHooks||(n.preOrderHooks=[])).push(t,i),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(t,i))}(n,i[n],e)}finally{null!==l&&pt(l),_n(u),s.resolving=!1,Je()}}return o}function Pn(t,e,n){const r=64&t,o=32&t;let i;return i=128&t?r?o?n[e+7]:n[e+6]:o?n[e+5]:n[e+4]:r?o?n[e+3]:n[e+2]:o?n[e+1]:n[e],!!(i&1<<t)}function kn(t,e){return!(t&ht.Self||t&ht.Host&&e)}class Sn{constructor(t,e){this._tNode=t,this._lView=e}get(t,e){return Mn(this._tNode,this._lView,t,void 0,e)}}function In(t){const e=t;if(nt(t))return()=>{const t=In(et(e));return t?t():null};let n=Qt(e);if(null===n){const t=ut(e);n=t&&t.factory}return n||null}function Vn(t){return mt(()=>{const e=t.prototype.constructor,n=e[Pt]||In(e),r=Object.prototype;let o=Object.getPrototypeOf(t.prototype).constructor;for(;o&&o!==r;){const t=o[Pt]||In(o);if(t&&t!==n)return t;o=Object.getPrototypeOf(o)}return t=>new t})}const Nn="__parameters__";function Bn(t,e,n){return mt(()=>{const r=function(t){return function(...e){if(t){const n=t(...e);for(const t in n)this[t]=n[t]}}}(e);function o(...t){if(this instanceof o)return r.apply(this,t),this;const e=new o(...t);return n.annotation=e,n;function n(t,n,r){const o=t.hasOwnProperty(Nn)?t[Nn]:Object.defineProperty(t,Nn,{value:[]})[Nn];for(;o.length<=r;)o.push(null);return(o[r]=o[r]||[]).push(e),t}}return n&&(o.prototype=Object.create(n.prototype)),o.prototype.ngMetadataName=t,o.annotationCls=o,o})}class jn{constructor(t,e){this._desc=t,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof e?this.__NG_ELEMENT_ID__=e:void 0!==e&&(this.\u0275prov=rt({token:this,providedIn:e.providedIn||"root",factory:e.factory}))}toString(){return"InjectionToken "+this._desc}}function Rn(t,e){t.forEach(t=>Array.isArray(t)?Rn(t,e):e(t))}function Hn(t,e,n){e>=t.length?t.push(n):t.splice(e,0,n)}function Ln(t,e){return e>=t.length-1?t.pop():t.splice(e,1)[0]}function $n(t,e,n){let r=Yn(t,e);return r>=0?t[1|r]=n:(r=~r,function(t,e,n,r){let o=t.length;if(o==e)t.push(n,r);else if(1===o)t.push(r,t[0]),t[0]=n;else{for(o--,t.push(t[o-1],t[o]);o>e;)t[o]=t[o-2],o--;t[e]=n,t[e+1]=r}}(t,r,e,n)),r}function zn(t,e){const n=Yn(t,e);if(n>=0)return t[1|n]}function Yn(t,e){return function(t,e,n){let r=0,o=t.length>>1;for(;o!==r;){const n=r+(o-r>>1),i=t[n<<1];if(e===i)return n<<1;i>e?o=n:r=n+1}return~(o<<1)}(t,e)}const Gn=Bn("Inject",t=>({token:t})),Un=Bn("Optional"),Zn=Bn("Self"),Wn=Bn("SkipSelf"),Jn=Bn("Host"),qn={},Kn=/\n/gm,Qn="__source",Xn=J({provide:String,useValue:J});let tr=void 0;function er(t){const e=tr;return tr=t,e}function nr(t,e=ht.Default){if(void 0===tr)throw new Error("inject() must be called from an injection context");return null===tr?gt(t,void 0,e):tr.get(t,e&ht.Optional?null:void 0,e)}function rr(t,e=ht.Default){return(ft||nr)(et(t),e)}function or(t){const e=[];for(let n=0;n<t.length;n++){const r=et(t[n]);if(Array.isArray(r)){if(0===r.length)throw new Error("Arguments array must have arguments.");let t=void 0,n=ht.Default;for(let e=0;e<r.length;e++){const o=r[e];o instanceof Un||"Optional"===o.ngMetadataName||o===Un?n|=ht.Optional:o instanceof Wn||"SkipSelf"===o.ngMetadataName||o===Wn?n|=ht.SkipSelf:o instanceof Zn||"Self"===o.ngMetadataName||o===Zn?n|=ht.Self:o instanceof Jn||"Host"===o.ngMetadataName||o===Jn?n|=ht.Host:t=o instanceof Gn||o===Gn?o.token:o}e.push(rr(t,n))}else e.push(rr(r))}return e}function ir(t){return t.ngDebugContext}function sr(t){return t.ngOriginalError}function ur(t,...e){t.error(...e)}class lr{constructor(){this._console=console}handleError(t){const e=this._findOriginalError(t),n=this._findContext(t),r=function(t){return t.ngErrorLogger||ur}(t);r(this._console,"ERROR",t),e&&r(this._console,"ORIGINAL ERROR",e),n&&r(this._console,"ERROR CONTEXT",n)}_findContext(t){return t?ir(t)?ir(t):this._findContext(sr(t)):null}_findOriginalError(t){let e=sr(t);for(;e&&sr(e);)e=sr(e);return e}}function ar(t,e){t.__ngContext__=e}const cr=(()=>("undefined"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(wt))();function dr(t){return t instanceof Function?t():t}var hr=function(t){return t[t.Important=1]="Important",t[t.DashCase=2]="DashCase",t}({});function fr(t,e){return(void 0)(t,e)}function pr(t){const e=t[3];return Zt(e)?e[3]:e}function gr(t){return _r(t[13])}function mr(t){return _r(t[4])}function _r(t){for(;null!==t&&!Zt(t);)t=t[4];return t}function yr(t,e,n,r,o){if(null!=r){let i,s=!1;Zt(r)?i=r:Ut(r)&&(s=!0,r=r[0]);const u=fe(r);0===t&&null!==n?null==o?Ar(e,n,u):Er(e,n,u,o||null,!0):1===t&&null!==n?Er(e,n,u,o||null,!0):2===t?function(t,e,n){const r=Or(t,e);r&&function(t,e,n,r){de(t)?t.removeChild(e,n,r):e.removeChild(n)}(t,r,e,n)}(e,u,s):3===t&&e.destroyNode(u),null!=i&&function(t,e,n,r,o){const i=n[7];i!==fe(n)&&yr(e,t,r,i,o);for(let s=Gt;s<n.length;s++){const o=n[s];kr(o[1],o,t,e,r,i)}}(e,t,i,n,o)}}function Cr(t,e,n){return de(t)?t.createElement(e,n):null===n?t.createElement(e):t.createElementNS(n,e)}function vr(t,e){const n=t[9],r=n.indexOf(e),o=e[3];1024&e[2]&&(e[2]&=-1025,we(o,-1)),n.splice(r,1)}function Dr(t,e){if(t.length<=Gt)return;const n=Gt+e,r=t[n];if(r){const i=r[17];null!==i&&i!==t&&vr(i,r),e>0&&(t[n-1][4]=r[4]);const s=Ln(t,Gt+e);kr(r[1],o=r,o[11],2,null,null),o[0]=null,o[6]=null;const u=s[19];null!==u&&u.detachView(s[1]),r[3]=null,r[4]=null,r[2]&=-129}var o;return r}function br(t,e){if(!(256&e[2])){const n=e[11];de(n)&&n.destroyNode&&kr(t,e,n,3,null,null),function(t){let e=t[13];if(!e)return wr(t[1],t);for(;e;){let n=null;if(Ut(e))n=e[13];else{const t=e[10];t&&(n=t)}if(!n){for(;e&&!e[4]&&e!==t;)Ut(e)&&wr(e[1],e),e=e[3];null===e&&(e=t),Ut(e)&&wr(e[1],e),n=e&&e[4]}e=n}}(e)}}function wr(t,e){if(!(256&e[2])){e[2]&=-129,e[2]|=256,function(t,e){let n;if(null!=t&&null!=(n=t.destroyHooks))for(let r=0;r<n.length;r+=2){const t=e[n[r]];if(!(t instanceof ln)){const e=n[r+1];if(Array.isArray(e))for(let n=0;n<e.length;n+=2)e[n+1].call(t[e[n]]);else e.call(t)}}}(t,e),function(t,e){const n=t.cleanup,r=e[7];let o=-1;if(null!==n)for(let i=0;i<n.length-1;i+=2)if("string"==typeof n[i]){const t=n[i+1],s="function"==typeof t?t(e):fe(e[t]),u=r[o=n[i+2]],l=n[i+3];"boolean"==typeof l?s.removeEventListener(n[i],u,l):l>=0?r[o=l]():r[o=-l].unsubscribe(),i+=2}else{const t=r[o=n[i+1]];n[i].call(t)}if(null!==r){for(let t=o+1;t<r.length;t++)(0,r[t])();e[7]=null}}(t,e),1===e[1].type&&de(e[11])&&e[11].destroy();const n=e[17];if(null!==n&&Zt(e[3])){n!==e[3]&&vr(n,e);const r=e[19];null!==r&&r.detachView(t)}}}function Er(t,e,n,r,o){de(t)?t.insertBefore(e,n,r,o):e.insertBefore(n,r,o)}function Ar(t,e,n){de(t)?t.appendChild(e,n):e.appendChild(n)}function Mr(t,e,n,r,o){null!==r?Er(t,e,n,r,o):Ar(t,e,n)}function Or(t,e){return de(t)?t.parentNode(e):e.parentNode}function xr(t,e,n,r){const o=function(t,e,n){return function(t,e,n){let r=e;for(;null!==r&&40&r.type;)r=(e=r).parent;if(null===r)return n[0];if(2&r.flags){const e=t.data[r.directiveStart].encapsulation;if(e===yt.None||e===yt.Emulated)return null}return ge(r,n)}(t,e.parent,n)}(t,r,e),i=e[11],s=function(t,e,n){return function(t,e,n){return 40&t.type?ge(t,n):null}(t,0,n)}(r.parent||e[6],0,e);if(null!=o)if(Array.isArray(n))for(let u=0;u<n.length;u++)Mr(i,o,n[u],s,!1);else Mr(i,o,n,s,!1)}function Fr(t,e){if(null!==e){const n=e.type;if(3&n)return ge(e,t);if(4&n)return Tr(-1,t[e.index]);if(8&n){const n=e.child;if(null!==n)return Fr(t,n);{const n=t[e.index];return Zt(n)?Tr(-1,n):fe(n)}}if(32&n)return fr(e,t)()||fe(t[e.index]);{const n=t[16],r=n[6],o=pr(n),i=r.projection[e.projection];return null!=i?Fr(o,i):Fr(t,e.next)}}return null}function Tr(t,e){const n=Gt+t+1;if(n<e.length){const t=e[n],r=t[1].firstChild;if(null!==r)return Fr(t,r)}return e[7]}function Pr(t,e,n,r,o,i,s){for(;null!=n;){const u=r[n.index],l=n.type;if(s&&0===e&&(u&&ar(fe(u),r),n.flags|=4),64!=(64&n.flags))if(8&l)Pr(t,e,n.child,r,o,i,!1),yr(e,t,o,u,i);else if(32&l){const s=fr(n,r);let l;for(;l=s();)yr(e,t,o,l,i);yr(e,t,o,u,i)}else 16&l?Sr(t,e,r,n,o,i):yr(e,t,o,u,i);n=s?n.projectionNext:n.next}}function kr(t,e,n,r,o,i){Pr(n,r,t.firstChild,e,o,i,!1)}function Sr(t,e,n,r,o,i){const s=n[16],u=s[6].projection[r.projection];if(Array.isArray(u))for(let l=0;l<u.length;l++)yr(e,t,o,u[l],i);else Pr(t,e,u,s[3],o,i,!0)}function Ir(t,e,n){de(t)?t.setAttribute(e,"style",n):e.style.cssText=n}function Vr(t,e,n){de(t)?""===n?t.removeAttribute(e,"class"):t.setAttribute(e,"class",n):e.className=n}function Nr(t,e,n){let r=t.length;for(;;){const o=t.indexOf(e,n);if(-1===o)return o;if(0===o||t.charCodeAt(o-1)<=32){const n=e.length;if(o+n===r||t.charCodeAt(o+n)<=32)return o}n=o+1}}const Br="ng-template";function jr(t,e,n){let r=0;for(;r<t.length;){let o=t[r++];if(n&&"class"===o){if(o=t[r],-1!==Nr(o.toLowerCase(),e,0))return!0}else if(1===o){for(;r<t.length&&"string"==typeof(o=t[r++]);)if(o.toLowerCase()===e)return!0;return!1}}return!1}function Rr(t){return 4===t.type&&t.value!==Br}function Hr(t,e,n){return e===(4!==t.type||n?t.value:Br)}function Lr(t,e,n){let r=4;const o=t.attrs||[],i=function(t){for(let n=0;n<t.length;n++)if(3===(e=t[n])||4===e||6===e)return n;var e;return t.length}(o);let s=!1;for(let u=0;u<e.length;u++){const l=e[u];if("number"!=typeof l){if(!s)if(4&r){if(r=2|1&r,""!==l&&!Hr(t,l,n)||""===l&&1===e.length){if($r(r))return!1;s=!0}}else{const a=8&r?l:e[++u];if(8&r&&null!==t.attrs){if(!jr(t.attrs,a,n)){if($r(r))return!1;s=!0}continue}const c=zr(8&r?"class":l,o,Rr(t),n);if(-1===c){if($r(r))return!1;s=!0;continue}if(""!==a){let t;t=c>i?"":o[c+1].toLowerCase();const e=8&r?t:null;if(e&&-1!==Nr(e,a,0)||2&r&&a!==t){if($r(r))return!1;s=!0}}}}else{if(!s&&!$r(r)&&!$r(l))return!1;if(s&&$r(l))continue;s=!1,r=l|1&r}}return $r(r)||s}function $r(t){return 0==(1&t)}function zr(t,e,n,r){if(null===e)return-1;let o=0;if(r||!n){let n=!1;for(;o<e.length;){const r=e[o];if(r===t)return o;if(3===r||6===r)n=!0;else{if(1===r||2===r){let t=e[++o];for(;"string"==typeof t;)t=e[++o];continue}if(4===r)break;if(0===r){o+=4;continue}}o+=n?1:2}return-1}return function(t,e){let n=t.indexOf(4);if(n>-1)for(n++;n<t.length;){const r=t[n];if("number"==typeof r)return-1;if(r===e)return n;n++}return-1}(e,t)}function Yr(t,e,n=!1){for(let r=0;r<e.length;r++)if(Lr(t,e[r],n))return!0;return!1}function Gr(t,e){return t?":not("+e.trim()+")":e}function Ur(t){let e=t[0],n=1,r=2,o="",i=!1;for(;n<t.length;){let s=t[n];if("string"==typeof s)if(2&r){const e=t[++n];o+="["+s+(e.length>0?'="'+e+'"':"")+"]"}else 8&r?o+="."+s:4&r&&(o+=" "+s);else""===o||$r(s)||(e+=Gr(i,o),o=""),r=s,i=i||!$r(r);n++}return""!==o&&(e+=Gr(i,o)),e}const Zr={};function Wr(t){Jr(Oe(),Me(),Ke()+t,Ie())}function Jr(t,e,n,r){if(!r)if(3==(3&e[2])){const r=t.preOrderCheckHooks;null!==r&&en(e,r,n)}else{const r=t.preOrderHooks;null!==r&&nn(e,r,0,n)}Qe(n)}function qr(t,e){return t<<17|e<<2}function Kr(t){return t>>17&32767}function Qr(t){return 2|t}function Xr(t){return(131068&t)>>2}function to(t,e){return-131069&t|e<<2}function eo(t){return 1|t}function no(t,e){const n=t.contentQueries;if(null!==n)for(let r=0;r<n.length;r+=2){const o=n[r],i=n[r+1];if(-1!==i){const n=t.data[i];$e(o),n.contentQueries(2,e[i],i)}}}function ro(t,e,n,r,o,i,s,u,l,a){const c=e.blueprint.slice();return c[0]=o,c[2]=140|r,be(c),c[3]=c[15]=t,c[8]=n,c[10]=s||t&&t[10],c[11]=u||t&&t[11],c[12]=l||t&&t[12]||null,c[9]=a||t&&t[9]||null,c[6]=i,c[16]=2==e.type?t[16]:c,c}function oo(t,e,n,r,o){let i=t.data[e];if(null===i)i=function(t,e,n,r,o){const i=Te(),s=ke(),u=t.data[e]=function(t,e,n,r,o,i){return{type:n,index:r,insertBeforeIndex:null,injectorIndex:e?e.injectorIndex:-1,directiveStart:-1,directiveEnd:-1,directiveStylingLast:-1,propertyBindings:null,flags:0,providerIndexes:0,value:o,attrs:i,mergedAttrs:null,localNames:null,initialInputs:void 0,inputs:null,outputs:null,tViews:null,next:null,projectionNext:null,child:null,parent:e,projection:null,styles:null,stylesWithoutHost:null,residualStyles:void 0,classes:null,classesWithoutHost:null,residualClasses:void 0,classBindings:0,styleBindings:0}}(0,s?i:i&&i.parent,n,e,r,o);return null===t.firstChild&&(t.firstChild=u),null!==i&&(s?null==i.child&&null!==u.parent&&(i.child=u):null===i.next&&(i.next=u)),u}(t,e,n,r,o),Ee.lFrame.inI18n&&(i.flags|=64);else if(64&i.type){i.type=n,i.value=r,i.attrs=o;const t=function(){const t=Ee.lFrame,e=t.currentTNode;return t.isParent?e:e.parent}();i.injectorIndex=null===t?-1:t.injectorIndex}return Pe(i,!0),i}function io(t,e,n,r){if(0===n)return-1;const o=e.length;for(let i=0;i<n;i++)e.push(r),t.blueprint.push(r),t.data.push(null);return o}function so(t,e,n){Ge(e);try{const r=t.viewQuery;null!==r&&No(1,r,n);const o=t.template;null!==o&&ao(t,e,o,1,n),t.firstCreatePass&&(t.firstCreatePass=!1),t.staticContentQueries&&no(t,e),t.staticViewQueries&&No(2,t.viewQuery,n);const i=t.components;null!==i&&function(t,e){for(let n=0;n<e.length;n++)Po(t,e[n])}(e,i)}catch(r){throw t.firstCreatePass&&(t.incompleteFirstPass=!0),r}finally{e[2]&=-5,qe()}}function uo(t,e,n,r){const o=e[2];if(256==(256&o))return;Ge(e);const i=Ie();try{be(e),Ee.lFrame.bindingIndex=t.bindingStartIndex,null!==n&&ao(t,e,n,2,r);const s=3==(3&o);if(!i)if(s){const n=t.preOrderCheckHooks;null!==n&&en(e,n,null)}else{const n=t.preOrderHooks;null!==n&&nn(e,n,0,null),rn(e,0)}if(function(t){for(let e=gr(t);null!==e;e=mr(e)){if(!e[2])continue;const t=e[9];for(let e=0;e<t.length;e++){const n=t[e],r=n[3];0==(1024&n[2])&&we(r,1),n[2]|=1024}}}(e),function(t){for(let e=gr(t);null!==e;e=mr(e))for(let t=Gt;t<e.length;t++){const n=e[t],r=n[1];ve(n)&&uo(r,n,r.template,n[8])}}(e),null!==t.contentQueries&&no(t,e),!i)if(s){const n=t.contentCheckHooks;null!==n&&en(e,n)}else{const n=t.contentHooks;null!==n&&nn(e,n,1),rn(e,1)}!function(t,e){const n=t.hostBindingOpCodes;if(null!==n)try{for(let t=0;t<n.length;t++){const r=n[t];if(r<0)Qe(~r);else{const o=r,i=n[++t],s=n[++t];He(i,o),s(2,e[o])}}}finally{Qe(-1)}}(t,e);const u=t.components;null!==u&&function(t,e){for(let n=0;n<e.length;n++)Fo(t,e[n])}(e,u);const l=t.viewQuery;if(null!==l&&No(2,l,r),!i)if(s){const n=t.viewCheckHooks;null!==n&&en(e,n)}else{const n=t.viewHooks;null!==n&&nn(e,n,2),rn(e,2)}!0===t.firstUpdatePass&&(t.firstUpdatePass=!1),i||(e[2]&=-73),1024&e[2]&&(e[2]&=-1025,we(e[3],-1))}finally{qe()}}function lo(t,e,n,r){const o=e[10],i=!Ie(),s=4==(4&e[2]);try{i&&!s&&o.begin&&o.begin(),s&&so(t,e,r),uo(t,e,n,r)}finally{i&&!s&&o.end&&o.end()}}function ao(t,e,n,r,o){const i=Ke();try{Qe(-1),2&r&&e.length>Yt&&Jr(t,e,Yt,Ie()),n(r,o)}finally{Qe(i)}}function co(t,e,n){if(Wt(e)){const r=e.directiveEnd;for(let o=e.directiveStart;o<r;o++){const e=t.data[o];e.contentQueries&&e.contentQueries(1,n[o],o)}}}function ho(t,e,n){Ae()&&(function(t,e,n,r){const o=n.directiveStart,i=n.directiveEnd;t.firstCreatePass||Cn(n,e),ar(r,e);const s=n.initialInputs;for(let u=o;u<i;u++){const r=t.data[u],i=Kt(r);i&&Ao(e,n,r);const l=Tn(e,t,u,n);ar(l,e),null!==s&&Mo(0,u-o,l,r,0,s),i&&(ye(n.index,e)[8]=l)}}(t,e,n,ge(n,e)),128==(128&n.flags)&&function(t,e,n){const r=n.directiveStart,o=n.directiveEnd,i=n.index,s=Ee.lFrame.currentDirectiveIndex;try{Qe(i);for(let n=r;n<o;n++){const r=t.data[n],o=e[n];Le(n),null===r.hostBindings&&0===r.hostVars&&null===r.hostAttrs||vo(r,o)}}finally{Qe(-1),Le(s)}}(t,e,n))}function fo(t,e,n=ge){const r=e.localNames;if(null!==r){let o=e.index+1;for(let i=0;i<r.length;i+=2){const s=r[i+1],u=-1===s?n(e,t):t[s];t[o++]=u}}}function po(t){const e=t.tView;return null===e||e.incompleteFirstPass?t.tView=go(1,null,t.template,t.decls,t.vars,t.directiveDefs,t.pipeDefs,t.viewQuery,t.schemas,t.consts):e}function go(t,e,n,r,o,i,s,u,l,a){const c=Yt+r,d=c+o,h=function(t,e){const n=[];for(let r=0;r<e;r++)n.push(r<t?null:Zr);return n}(c,d),f="function"==typeof a?a():a;return h[1]={type:t,blueprint:h,template:n,queries:null,viewQuery:u,declTNode:e,data:h.slice().fill(null,c),bindingStartIndex:c,expandoStartIndex:d,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:"function"==typeof i?i():i,pipeRegistry:"function"==typeof s?s():s,firstChild:null,schemas:l,consts:f,incompleteFirstPass:!1}}function mo(t,e,n){for(let r in t)if(t.hasOwnProperty(r)){const o=t[r];(n=null===n?{}:n).hasOwnProperty(r)?n[r].push(e,o):n[r]=[e,o]}return n}function _o(t,e,n,r,o,i,s,u){const l=ge(e,n);let a,c=e.inputs;var d;!u&&null!=c&&(a=c[r])?(Lo(t,n,a,r,o),Jt(e)&&function(t,e){const n=ye(e,t);16&n[2]||(n[2]|=64)}(n,e.index)):3&e.type&&(r="class"===(d=r)?"className":"for"===d?"htmlFor":"formaction"===d?"formAction":"innerHtml"===d?"innerHTML":"readonly"===d?"readOnly":"tabindex"===d?"tabIndex":d,o=null!=s?s(o,e.value||"",r):o,de(i)?i.setProperty(l,r,o):cn(r)||(l.setProperty?l.setProperty(r,o):l[r]=o))}function yo(t,e,n,r){let o=!1;if(Ae()){const i=function(t,e,n){const r=t.directiveRegistry;let o=null;if(r)for(let i=0;i<r.length;i++){const s=r[i];Yr(n,s.selectors,!1)&&(o||(o=[]),wn(Cn(n,e),t,s.type),Kt(s)?(Do(t,n),o.unshift(s)):o.push(s))}return o}(t,e,n),s=null===r?null:{"":-1};if(null!==i){o=!0,wo(n,t.data.length,i.length);for(let t=0;t<i.length;t++){const e=i[t];e.providersResolver&&e.providersResolver(e)}let r=!1,u=!1,l=io(t,e,i.length,null);for(let o=0;o<i.length;o++){const a=i[o];n.mergedAttrs=dn(n.mergedAttrs,a.hostAttrs),Eo(t,n,e,l,a),bo(l,a,s),null!==a.contentQueries&&(n.flags|=8),null===a.hostBindings&&null===a.hostAttrs&&0===a.hostVars||(n.flags|=128);const c=a.type.prototype;!r&&(c.ngOnChanges||c.ngOnInit||c.ngDoCheck)&&((t.preOrderHooks||(t.preOrderHooks=[])).push(n.index),r=!0),u||!c.ngOnChanges&&!c.ngDoCheck||((t.preOrderCheckHooks||(t.preOrderCheckHooks=[])).push(n.index),u=!0),l++}!function(t,e){const n=e.directiveEnd,r=t.data,o=e.attrs,i=[];let s=null,u=null;for(let l=e.directiveStart;l<n;l++){const t=r[l],n=t.inputs,a=null===o||Rr(e)?null:Oo(n,o);i.push(a),s=mo(n,l,s),u=mo(t.outputs,l,u)}null!==s&&(s.hasOwnProperty("class")&&(e.flags|=16),s.hasOwnProperty("style")&&(e.flags|=32)),e.initialInputs=i,e.inputs=s,e.outputs=u}(t,n)}s&&function(t,e,n){if(e){const r=t.localNames=[];for(let t=0;t<e.length;t+=2){const o=n[e[t+1]];if(null==o)throw new Xt("301",`Export of name '${e[t+1]}' not found!`);r.push(e[t],o)}}}(n,r,s)}return n.mergedAttrs=dn(n.mergedAttrs,n.attrs),o}function Co(t,e,n,r,o,i){const s=i.hostBindings;if(s){let n=t.hostBindingOpCodes;null===n&&(n=t.hostBindingOpCodes=[]);const i=~e.index;(function(t){let e=t.length;for(;e>0;){const n=t[--e];if("number"==typeof n&&n<0)return n}return 0})(n)!=i&&n.push(i),n.push(r,o,s)}}function vo(t,e){null!==t.hostBindings&&t.hostBindings(1,e)}function Do(t,e){e.flags|=2,(t.components||(t.components=[])).push(e.index)}function bo(t,e,n){if(n){if(e.exportAs)for(let r=0;r<e.exportAs.length;r++)n[e.exportAs[r]]=t;Kt(e)&&(n[""]=t)}}function wo(t,e,n){t.flags|=1,t.directiveStart=e,t.directiveEnd=e+n,t.providerIndexes=e}function Eo(t,e,n,r,o){t.data[r]=o;const i=o.factory||(o.factory=Qt(o.type)),s=new ln(i,Kt(o),null);t.blueprint[r]=s,n[r]=s,Co(t,e,0,r,io(t,n,o.hostVars,Zr),o)}function Ao(t,e,n){const r=ge(e,t),o=po(n),i=t[10],s=ko(t,ro(t,o,null,n.onPush?64:16,r,e,i,i.createRenderer(r,n),null,null));t[e.index]=s}function Mo(t,e,n,r,o,i){const s=i[e];if(null!==s){const t=r.setInput;for(let e=0;e<s.length;){const o=s[e++],i=s[e++],u=s[e++];null!==t?r.setInput(n,u,o,i):n[i]=u}}}function Oo(t,e){let n=null,r=0;for(;r<e.length;){const o=e[r];if(0!==o)if(5!==o){if("number"==typeof o)break;t.hasOwnProperty(o)&&(null===n&&(n=[]),n.push(o,t[o],e[r+1])),r+=2}else r+=2;else r+=4}return n}function xo(t,e,n,r){return new Array(t,!0,!1,e,null,0,r,n,null,null)}function Fo(t,e){const n=ye(e,t);if(ve(n)){const t=n[1];80&n[2]?uo(t,n,t.template,n[8]):n[5]>0&&To(n)}}function To(t){for(let n=gr(t);null!==n;n=mr(n))for(let t=Gt;t<n.length;t++){const e=n[t];if(1024&e[2]){const t=e[1];uo(t,e,t.template,e[8])}else e[5]>0&&To(e)}const e=t[1].components;if(null!==e)for(let n=0;n<e.length;n++){const r=ye(e[n],t);ve(r)&&r[5]>0&&To(r)}}function Po(t,e){const n=ye(e,t),r=n[1];!function(t,e){for(let n=e.length;n<t.blueprint.length;n++)e.push(t.blueprint[n])}(r,n),so(r,n,n[8])}function ko(t,e){return t[13]?t[14][4]=e:t[13]=e,t[14]=e,e}function So(t){for(;t;){t[2]|=64;const e=pr(t);if(0!=(512&t[2])&&!e)return t;t=e}return null}function Io(t,e,n){const r=e[10];r.begin&&r.begin();try{uo(t,e,t.template,n)}catch(o){throw Ho(e,o),o}finally{r.end&&r.end()}}function Vo(t){!function(t){for(let e=0;e<t.components.length;e++){const n=t.components[e],r=Ce(n),o=r[1];lo(o,r,o.template,n)}}(t[8])}function No(t,e,n){$e(0),e(t,n)}const Bo=(()=>Promise.resolve(null))();function jo(t){return t[7]||(t[7]=[])}function Ro(t){return t.cleanup||(t.cleanup=[])}function Ho(t,e){const n=t[9],r=n?n.get(lr,null):null;r&&r.handleError(e)}function Lo(t,e,n,r,o){for(let i=0;i<n.length;){const s=n[i++],u=n[i++],l=e[s],a=t.data[s];null!==a.setInput?a.setInput(l,o,r,u):l[u]=o}}function $o(t,e,n){const r=pe(e,t);!function(t,e,n){de(t)?t.setValue(e,n):e.textContent=n}(t[11],r,n)}function zo(t,e,n){let r=n?t.styles:null,o=n?t.classes:null,i=0;if(null!==e)for(let s=0;s<e.length;s++){const t=e[s];"number"==typeof t?i=t:1==i?o=Q(o,t):2==i&&(r=Q(r,t+": "+e[++s]+";"))}n?t.styles=r:t.stylesWithoutHost=r,n?t.classes=o:t.classesWithoutHost=o}const Yo=new jn("INJECTOR",-1);class Go{get(t,e=qn){if(e===qn){const e=new Error(`NullInjectorError: No provider for ${K(t)}!`);throw e.name="NullInjectorError",e}return e}}const Uo=new jn("Set Injector scope."),Zo={},Wo={},Jo=[];let qo=void 0;function Ko(){return void 0===qo&&(qo=new Go),qo}function Qo(t,e=null,n=null,r){return new Xo(t,n,e||Ko(),r)}class Xo{constructor(t,e,n,r=null){this.parent=n,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;const o=[];e&&Rn(e,n=>this.processProvider(n,t,e)),Rn([t],t=>this.processInjectorType(t,[],o)),this.records.set(Yo,ni(void 0,this));const i=this.records.get(Uo);this.scope=null!=i?i.value:null,this.source=r||("object"==typeof t?null:K(t))}get destroyed(){return this._destroyed}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach(t=>t.ngOnDestroy())}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}get(t,e=qn,n=ht.Default){this.assertNotDestroyed();const r=er(this);try{if(!(n&ht.SkipSelf)){let e=this.records.get(t);if(void 0===e){const n=("function"==typeof(o=t)||"object"==typeof o&&o instanceof jn)&&it(t);e=n&&this.injectableDefInScope(n)?ni(ti(t),Zo):null,this.records.set(t,e)}if(null!=e)return this.hydrate(t,e)}return(n&ht.Self?Ko():this.parent).get(t,e=n&ht.Optional&&e===qn?null:e)}catch(i){if("NullInjectorError"===i.name){if((i.ngTempTokenPath=i.ngTempTokenPath||[]).unshift(K(t)),r)throw i;return function(t,e,n,r){const o=t.ngTempTokenPath;throw e[Qn]&&o.unshift(e[Qn]),t.message=function(t,e,n,r=null){t=t&&"\n"===t.charAt(0)&&"\u0275"==t.charAt(1)?t.substr(2):t;let o=K(e);if(Array.isArray(e))o=e.map(K).join(" -> ");else if("object"==typeof e){let t=[];for(let n in e)if(e.hasOwnProperty(n)){let r=e[n];t.push(n+":"+("string"==typeof r?JSON.stringify(r):K(r)))}o=`{${t.join(", ")}}`}return`${n}${r?"("+r+")":""}[${o}]: ${t.replace(Kn,"\n ")}`}("\n"+t.message,o,n,r),t.ngTokenPath=o,t.ngTempTokenPath=null,t}(i,t,"R3InjectorError",this.source)}throw i}finally{er(r)}var o}_resolveInjectorDefTypes(){this.injectorDefTypes.forEach(t=>this.get(t))}toString(){const t=[];return this.records.forEach((e,n)=>t.push(K(n))),`R3Injector[${t.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new Error("Injector has already been destroyed.")}processInjectorType(t,e,n){if(!(t=et(t)))return!1;let r=ut(t);const o=null==r&&t.ngModule||void 0,i=void 0===o?t:o,s=-1!==n.indexOf(i);if(void 0!==o&&(r=ut(o)),null==r)return!1;if(null!=r.imports&&!s){let t;n.push(i);try{Rn(r.imports,r=>{this.processInjectorType(r,e,n)&&(void 0===t&&(t=[]),t.push(r))})}finally{}if(void 0!==t)for(let e=0;e<t.length;e++){const{ngModule:n,providers:r}=t[e];Rn(r,t=>this.processProvider(t,n,r||Jo))}}this.injectorDefTypes.add(i),this.records.set(i,ni(r.factory,Zo));const u=r.providers;if(null!=u&&!s){const e=t;Rn(u,t=>this.processProvider(t,e,u))}return void 0!==o&&void 0!==t.providers}processProvider(t,e,n){let r=oi(t=et(t))?t:et(t&&t.provide);const o=function(t,e,n){return ri(t)?ni(void 0,t.useValue):ni(ei(t),Zo)}(t);if(oi(t)||!0!==t.multi)this.records.get(r);else{let e=this.records.get(r);e||(e=ni(void 0,Zo,!0),e.factory=()=>or(e.multi),this.records.set(r,e)),r=t,e.multi.push(t)}this.records.set(r,o)}hydrate(t,e){var n;return e.value===Zo&&(e.value=Wo,e.value=e.factory()),"object"==typeof e.value&&e.value&&null!==(n=e.value)&&"object"==typeof n&&"function"==typeof n.ngOnDestroy&&this.onDestroy.add(e.value),e.value}injectableDefInScope(t){return!!t.providedIn&&("string"==typeof t.providedIn?"any"===t.providedIn||t.providedIn===this.scope:this.injectorDefTypes.has(t.providedIn))}}function ti(t){const e=it(t),n=null!==e?e.factory:Qt(t);if(null!==n)return n;const r=ut(t);if(null!==r)return r.factory;if(t instanceof jn)throw new Error(`Token ${K(t)} is missing a \u0275prov definition.`);if(t instanceof Function)return function(t){const e=t.length;if(e>0){const n=function(t,e){const n=[];for(let r=0;r<t;r++)n.push("?");return n}(e);throw new Error(`Can't resolve all parameters for ${K(t)}: (${n.join(", ")}).`)}const n=function(t){const e=t&&(t[lt]||t[ct]);if(e){const n=function(t){if(t.hasOwnProperty("name"))return t.name;const e=(""+t).match(/^function\s*([^\s(]+)/);return null===e?"":e[1]}(t);return console.warn(`DEPRECATED: DI is instantiating a token "${n}" that inherits its @Injectable decorator but does not provide one itself.\nThis will become an error in a future version of Angular. Please add @Injectable() to the "${n}" class.`),e}return null}(t);return null!==n?()=>n.factory(t):()=>new t}(t);throw new Error("unreachable")}function ei(t,e,n){let r=void 0;if(oi(t)){const e=et(t);return Qt(e)||ti(e)}if(ri(t))r=()=>et(t.useValue);else if((o=t)&&o.useFactory)r=()=>t.useFactory(...or(t.deps||[]));else if(function(t){return!(!t||!t.useExisting)}(t))r=()=>rr(et(t.useExisting));else{const e=et(t&&(t.useClass||t.provide));if(!function(t){return!!t.deps}(t))return Qt(e)||ti(e);r=()=>new e(...or(t.deps))}var o;return r}function ni(t,e,n=!1){return{factory:t,value:e,multi:n?[]:void 0}}function ri(t){return null!==t&&"object"==typeof t&&Xn in t}function oi(t){return"function"==typeof t}const ii=function(t,e,n){return function(t,e=null,n=null,r){const o=Qo(t,e,n,r);return o._resolveInjectorDefTypes(),o}({name:n},e,t,n)};let si=(()=>{class t{static create(t,e){return Array.isArray(t)?ii(t,e,""):ii(t.providers,t.parent,t.name||"")}}return t.THROW_IF_NOT_FOUND=qn,t.NULL=new Go,t.\u0275prov=rt({token:t,providedIn:"any",factory:()=>rr(Yo)}),t.__NG_ELEMENT_ID__=-1,t})();function ui(t,e){tn(Ce(t)[1],Fe())}function li(t){let e=Object.getPrototypeOf(t.type.prototype).constructor,n=!0;const r=[t];for(;e;){let o=void 0;if(Kt(t))o=e.\u0275cmp||e.\u0275dir;else{if(e.\u0275cmp)throw new Error("Directives cannot inherit Components");o=e.\u0275dir}if(o){if(n){r.push(o);const e=t;e.inputs=ai(t.inputs),e.declaredInputs=ai(t.declaredInputs),e.outputs=ai(t.outputs);const n=o.hostBindings;n&&hi(t,n);const i=o.viewQuery,s=o.contentQueries;if(i&&ci(t,i),s&&di(t,s),q(t.inputs,o.inputs),q(t.declaredInputs,o.declaredInputs),q(t.outputs,o.outputs),Kt(o)&&o.data.animation){const e=t.data;e.animation=(e.animation||[]).concat(o.data.animation)}}const e=o.features;if(e)for(let r=0;r<e.length;r++){const o=e[r];o&&o.ngInherit&&o(t),o===li&&(n=!1)}}e=Object.getPrototypeOf(e)}!function(t){let e=0,n=null;for(let r=t.length-1;r>=0;r--){const o=t[r];o.hostVars=e+=o.hostVars,o.hostAttrs=dn(o.hostAttrs,n=dn(n,o.hostAttrs))}}(r)}function ai(t){return t===Et?{}:t===At?[]:t}function ci(t,e){const n=t.viewQuery;t.viewQuery=n?(t,r)=>{e(t,r),n(t,r)}:e}function di(t,e){const n=t.contentQueries;t.contentQueries=n?(t,r,o)=>{e(t,r,o),n(t,r,o)}:e}function hi(t,e){const n=t.hostBindings;t.hostBindings=n?(t,r)=>{e(t,r),n(t,r)}:e}let fi=null;function pi(){if(!fi){const t=wt.Symbol;if(t&&t.iterator)fi=t.iterator;else{const t=Object.getOwnPropertyNames(Map.prototype);for(let e=0;e<t.length;++e){const n=t[e];"entries"!==n&&"size"!==n&&Map.prototype[n]===Map.prototype.entries&&(fi=n)}}}return fi}class gi{constructor(t){this.wrapped=t}static wrap(t){return new gi(t)}static unwrap(t){return gi.isWrapped(t)?t.wrapped:t}static isWrapped(t){return t instanceof gi}}function mi(t){return!!_i(t)&&(Array.isArray(t)||!(t instanceof Map)&&pi()in t)}function _i(t){return null!==t&&("function"==typeof t||"object"==typeof t)}function yi(t,e,n){return t[e]=n}function Ci(t,e,n){return!Object.is(t[e],n)&&(t[e]=n,!0)}function vi(t,e,n,r){const o=Ci(t,e,n);return Ci(t,e+1,r)||o}function Di(t,e,n,r){return Ci(t,je(),n)?e+te(n)+r:Zr}function bi(t,e,n,r,o,i,s,u){const l=Me(),a=Oe(),c=t+Yt,d=a.firstCreatePass?function(t,e,n,r,o,i,s,u,l){const a=e.consts,c=oo(e,t,4,s||null,De(a,u));yo(e,n,c,De(a,l)),tn(e,c);const d=c.tViews=go(2,c,r,o,i,e.directiveRegistry,e.pipeRegistry,null,e.schemas,a);return null!==e.queries&&(e.queries.template(e,c),d.queries=e.queries.embeddedTView(c)),c}(c,a,l,e,n,r,o,i,s):a.data[c];Pe(d,!1);const h=l[11].createComment("");xr(a,l,h,d),ar(h,l),ko(l,l[c]=xo(h,l,h,d)),qt(d)&&ho(a,l,d),null!=s&&fo(l,d,u)}function wi(t){return _e(Ee.lFrame.contextLView,Yt+t)}function Ei(t,e=ht.Default){const n=Me();return null===n?rr(t,e):Mn(Fe(),n,et(t),e)}function Ai(t,e,n){const r=Me();return Ci(r,je(),e)&&_o(Oe(),Xe(),r,t,e,r[11],n,!1),Ai}function Mi(t,e,n,r,o){const i=o?"class":"style";Lo(t,n,e.inputs[i],i,r)}function Oi(t,e,n,r){const o=Me(),i=Oe(),s=Yt+t,u=o[11],l=o[s]=Cr(u,e,Ee.lFrame.currentNamespace),a=i.firstCreatePass?function(t,e,n,r,o,i,s){const u=e.consts,l=oo(e,t,2,o,De(u,i));return yo(e,n,l,De(u,s)),null!==l.attrs&&zo(l,l.attrs,!1),null!==l.mergedAttrs&&zo(l,l.mergedAttrs,!0),null!==e.queries&&e.queries.elementStart(e,l),l}(s,i,o,0,e,n,r):i.data[s];Pe(a,!0);const c=a.mergedAttrs;null!==c&&an(u,l,c);const d=a.classes;null!==d&&Vr(u,l,d);const h=a.styles;null!==h&&Ir(u,l,h),64!=(64&a.flags)&&xr(i,o,l,a),0===Ee.lFrame.elementDepthCount&&ar(l,o),Ee.lFrame.elementDepthCount++,qt(a)&&(ho(i,o,a),co(i,a,o)),null!==r&&fo(o,a)}function xi(){let t=Fe();ke()?Se():(t=t.parent,Pe(t,!1));const e=t;Ee.lFrame.elementDepthCount--;const n=Oe();n.firstCreatePass&&(tn(n,t),Wt(t)&&n.queries.elementEnd(t)),null!=e.classesWithoutHost&&function(t){return 0!=(16&t.flags)}(e)&&Mi(n,e,Me(),e.classesWithoutHost,!0),null!=e.stylesWithoutHost&&function(t){return 0!=(32&t.flags)}(e)&&Mi(n,e,Me(),e.stylesWithoutHost,!1)}function Fi(t,e,n,r){Oi(t,e,n,r),xi()}function Ti(t,e,n){(function(t,e,n){const r=Me(),o=Oe(),i=t+Yt,s=o.firstCreatePass?function(t,e,n,r,o){const i=e.consts,s=De(i,r),u=oo(e,t,8,"ng-container",s);return null!==s&&zo(u,s,!0),yo(e,n,u,De(i,o)),null!==e.queries&&e.queries.elementStart(e,u),u}(i,o,r,e,n):o.data[i];Pe(s,!0);const u=r[i]=r[11].createComment("");xr(o,r,u,s),ar(u,r),qt(s)&&(ho(o,r,s),co(o,s,r)),null!=n&&fo(r,s)})(t,e,n),function(){let t=Fe();const e=Oe();ke()?Se():(t=t.parent,Pe(t,!1)),e.firstCreatePass&&(tn(e,t),Wt(t)&&e.queries.elementEnd(t))}()}function Pi(){return Me()}function ki(t){return!!t&&"function"==typeof t.then}function Si(t,e,n=!1,r){const o=Me(),i=Oe(),s=Fe();return function(t,e,n,r,o,i,s=!1,u){const l=qt(r),a=t.firstCreatePass&&Ro(t),c=jo(e);let d=!0;if(3&r.type){const h=ge(r,e),f=u?u(h):Et,p=f.target||h,g=c.length,m=u?t=>u(fe(t[r.index])).target:r.index;if(de(n)){let s=null;if(!u&&l&&(s=function(t,e,n,r){const o=t.cleanup;if(null!=o)for(let i=0;i<o.length-1;i+=2){const t=o[i];if(t===n&&o[i+1]===r){const t=e[7],n=o[i+2];return t.length>n?t[n]:null}"string"==typeof t&&(i+=2)}return null}(t,e,o,r.index)),null!==s)(s.__ngLastListenerFn__||s).__ngNextListenerFn__=i,s.__ngLastListenerFn__=i,d=!1;else{i=Vi(r,e,i,!1);const t=n.listen(f.name||p,o,i);c.push(i,t),a&&a.push(o,m,g,g+1)}}else i=Vi(r,e,i,!0),p.addEventListener(o,i,s),c.push(i),a&&a.push(o,m,g,s)}else i=Vi(r,e,i,!1);const h=r.outputs;let f;if(d&&null!==h&&(f=h[o])){const t=f.length;if(t)for(let n=0;n<t;n+=2){const t=e[f[n]][f[n+1]].subscribe(i),s=c.length;c.push(i,t),a&&a.push(o,r.index,s,-(s+1))}}}(i,o,o[11],s,t,e,n,r),Si}function Ii(t,e,n){try{return!1!==e(n)}catch(r){return Ho(t,r),!1}}function Vi(t,e,n,r){return function o(i){if(i===Function)return n;const s=2&t.flags?ye(t.index,e):e;0==(32&e[2])&&So(s);let u=Ii(e,n,i),l=o.__ngNextListenerFn__;for(;l;)u=Ii(e,l,i)&&u,l=l.__ngNextListenerFn__;return r&&!1===u&&(i.preventDefault(),i.returnValue=!1),u}}function Ni(t=1){return function(t){return(Ee.lFrame.contextLView=function(t,e){for(;t>0;)e=e[15],t--;return e}(t,Ee.lFrame.contextLView))[8]}(t)}function Bi(t,e,n){return ji(t,"",e,"",n),Bi}function ji(t,e,n,r,o){const i=Me(),s=Di(i,e,n,r);return s!==Zr&&_o(Oe(),Xe(),i,t,s,i[11],o,!1),ji}const Ri=[];function Hi(t,e,n,r,o){const i=t[n+1],s=null===e;let u=r?Kr(i):Xr(i),l=!1;for(;0!==u&&(!1===l||s);){const n=t[u+1];Li(t[u],e)&&(l=!0,t[u+1]=r?eo(n):Qr(n)),u=r?Kr(n):Xr(n)}l&&(t[n+1]=r?Qr(i):eo(i))}function Li(t,e){return null===t||null==e||(Array.isArray(t)?t[1]:t)===e||!(!Array.isArray(t)||"string"!=typeof e)&&Yn(t,e)>=0}function $i(t,e){return function(t,e,n,r){const o=Me(),i=Oe(),s=Re(2);i.firstUpdatePass&&function(t,e,n,r){const o=t.data;if(null===o[n+1]){const i=o[Ke()],s=function(t,e){return e>=t.expandoStartIndex}(t,n);(function(t,e){return 0!=(16&t.flags)})(i)&&null===e&&!s&&(e=!1),e=function(t,e,n,r){const o=function(t){const e=Ee.lFrame.currentDirectiveIndex;return-1===e?null:t[e]}(t);let i=e.residualClasses;if(null===o)0===e.classBindings&&(n=Yi(n=zi(null,t,e,n,r),e.attrs,r),i=null);else{const s=e.directiveStylingLast;if(-1===s||t[s]!==o)if(n=zi(o,t,e,n,r),null===i){let n=function(t,e,n){const r=e.classBindings;if(0!==Xr(r))return t[Kr(r)]}(t,e);void 0!==n&&Array.isArray(n)&&(n=zi(null,t,e,n[1],r),n=Yi(n,e.attrs,r),function(t,e,n,r){t[Kr(e.classBindings)]=r}(t,e,0,n))}else i=function(t,e,n){let r=void 0;const o=e.directiveEnd;for(let i=1+e.directiveStylingLast;i<o;i++)r=Yi(r,t[i].hostAttrs,true);return Yi(r,e.attrs,true)}(t,e)}return void 0!==i&&(e.residualClasses=i),n}(o,i,e,r),function(t,e,n,r,o,i){let s=e.classBindings,u=Kr(s),l=Xr(s);t[r]=n;let a,c=!1;if(Array.isArray(n)){const t=n;a=t[1],(null===a||Yn(t,a)>0)&&(c=!0)}else a=n;if(o)if(0!==l){const e=Kr(t[u+1]);t[r+1]=qr(e,u),0!==e&&(t[e+1]=to(t[e+1],r)),t[u+1]=131071&t[u+1]|r<<17}else t[r+1]=qr(u,0),0!==u&&(t[u+1]=to(t[u+1],r)),u=r;else t[r+1]=qr(l,0),0===u?u=r:t[l+1]=to(t[l+1],r),l=r;c&&(t[r+1]=Qr(t[r+1])),Hi(t,a,r,!0),Hi(t,a,r,!1),function(t,e,n,r,o){const i=t.residualClasses;null!=i&&"string"==typeof e&&Yn(i,e)>=0&&(n[r+1]=eo(n[r+1]))}(e,a,t,r),s=qr(u,l),e.classBindings=s}(o,i,e,n,s)}}(i,t,s,true),e!==Zr&&Ci(o,s,e)&&function(t,e,n,r,o,i,s,u){if(!(3&e.type))return;const l=t.data,a=l[u+1];Ui(1==(1&a)?Gi(l,e,n,o,Xr(a),s):void 0)||(Ui(i)||function(t){return 2==(2&t)}(a)&&(i=Gi(l,null,n,o,u,s)),function(t,e,n,r,o){const i=de(t);o?i?t.addClass(n,r):n.classList.add(r):i?t.removeClass(n,r):n.classList.remove(r)}(r,0,pe(Ke(),n),o,i))}(i,i.data[Ke()],o,o[11],t,o[s+1]=function(t,e){return null==t||"object"==typeof t&&(t=K(function(t){return t instanceof class{constructor(t){this.changingThisBreaksApplicationSecurity=t}toString(){return"SafeValue must use [property]=binding: "+this.changingThisBreaksApplicationSecurity+" (see https://g.co/ng/security#xss)"}}?t.changingThisBreaksApplicationSecurity:t}(t))),t}(e),true,s)}(t,e),$i}function zi(t,e,n,r,o){let i=null;const s=n.directiveEnd;let u=n.directiveStylingLast;for(-1===u?u=n.directiveStart:u++;u<s&&(i=e[u],r=Yi(r,i.hostAttrs,o),i!==t);)u++;return null!==t&&(n.directiveStylingLast=u),r}function Yi(t,e,n){const r=n?1:2;let o=-1;if(null!==e)for(let i=0;i<e.length;i++){const s=e[i];"number"==typeof s?o=s:o===r&&(Array.isArray(t)||(t=void 0===t?[]:["",t]),$n(t,s,!!n||e[++i]))}return void 0===t?null:t}function Gi(t,e,n,r,o,i){const s=null===e;let u=void 0;for(;o>0;){const e=t[o],i=Array.isArray(e),l=i?e[1]:e,a=null===l;let c=n[o+1];c===Zr&&(c=a?Ri:void 0);let d=a?zn(c,r):l===r?c:void 0;if(i&&!Ui(d)&&(d=zn(e,r)),Ui(d)&&(u=d,s))return u;const h=t[o+1];o=s?Kr(h):Xr(h)}if(null!==e){let t=i?e.residualClasses:e.residualStyles;null!=t&&(u=zn(t,r))}return u}function Ui(t){return void 0!==t}function Zi(t,e=""){const n=Me(),r=Oe(),o=t+Yt,i=r.firstCreatePass?oo(r,o,1,e,null):r.data[o],s=n[o]=function(t,e){return de(t)?t.createText(e):t.createTextNode(e)}(n[11],e);xr(r,n,s,i),Pe(i,!1)}function Wi(t){return Ji("",t,""),Wi}function Ji(t,e,n){const r=Me(),o=Di(r,t,e,n);return o!==Zr&&$o(r,Ke(),o),Ji}function qi(t,e,n,r,o){const i=Me(),s=function(t,e,n,r,o,i){const s=vi(t,Be(),n,o);return Re(2),s?e+te(n)+r+te(o)+i:Zr}(i,t,e,n,r,o);return s!==Zr&&$o(i,Ke(),s),qi}const Ki=void 0;var Qi=["en",[["a","p"],["AM","PM"],Ki],[["AM","PM"],Ki,Ki],[["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"]],Ki,[["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"]],Ki,[["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 a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",Ki,"{1} 'at' {0}",Ki],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function(t){let e=Math.floor(Math.abs(t)),n=t.toString().replace(/^[^.]*\.?/,"").length;return 1===e&&0===n?1:5}];let Xi={};function ts(t){const e=function(t){return t.toLowerCase().replace(/_/g,"-")}(t);let n=es(e);if(n)return n;const r=e.split("-")[0];if(n=es(r),n)return n;if("en"===r)return Qi;throw new Error(`Missing locale data for the locale "${t}".`)}function es(t){return t in Xi||(Xi[t]=wt.ng&&wt.ng.common&&wt.ng.common.locales&&wt.ng.common.locales[t]),Xi[t]}var ns=function(t){return t[t.LocaleId=0]="LocaleId",t[t.DayPeriodsFormat=1]="DayPeriodsFormat",t[t.DayPeriodsStandalone=2]="DayPeriodsStandalone",t[t.DaysFormat=3]="DaysFormat",t[t.DaysStandalone=4]="DaysStandalone",t[t.MonthsFormat=5]="MonthsFormat",t[t.MonthsStandalone=6]="MonthsStandalone",t[t.Eras=7]="Eras",t[t.FirstDayOfWeek=8]="FirstDayOfWeek",t[t.WeekendRange=9]="WeekendRange",t[t.DateFormat=10]="DateFormat",t[t.TimeFormat=11]="TimeFormat",t[t.DateTimeFormat=12]="DateTimeFormat",t[t.NumberSymbols=13]="NumberSymbols",t[t.NumberFormats=14]="NumberFormats",t[t.CurrencyCode=15]="CurrencyCode",t[t.CurrencySymbol=16]="CurrencySymbol",t[t.CurrencyName=17]="CurrencyName",t[t.Currencies=18]="Currencies",t[t.Directionality=19]="Directionality",t[t.PluralCase=20]="PluralCase",t[t.ExtraData=21]="ExtraData",t}({});const rs="en-US";let os=rs;function is(t){var e,n;n="Expected localeId to be defined",null==(e=t)&&function(t,e,n,r){throw new Error("ASSERTION ERROR: "+t+` [Expected=> null != ${e} <=Actual]`)}(n,e),"string"==typeof t&&(os=t.toLowerCase().replace(/_/g,"-"))}function ss(t,e,n,r,o){if(t=et(t),Array.isArray(t))for(let i=0;i<t.length;i++)ss(t[i],e,n,r,o);else{const i=Oe(),s=Me();let u=oi(t)?t:et(t.provide),l=ei(t);const a=Fe(),c=1048575&a.providerIndexes,d=a.directiveStart,h=a.providerIndexes>>20;if(oi(t)||!t.multi){const r=new ln(l,o,Ei),f=as(u,e,o?c:c+h,d);-1===f?(wn(Cn(a,s),i,u),us(i,t,e.length),e.push(u),a.directiveStart++,a.directiveEnd++,o&&(a.providerIndexes+=1048576),n.push(r),s.push(r)):(n[f]=r,s[f]=r)}else{const f=as(u,e,c+h,d),p=as(u,e,c,c+h),g=f>=0&&n[f],m=p>=0&&n[p];if(o&&!m||!o&&!g){wn(Cn(a,s),i,u);const c=function(t,e,n,r,o){const i=new ln(t,n,Ei);return i.multi=[],i.index=e,i.componentProviders=0,ls(i,o,r&&!n),i}(o?ds:cs,n.length,o,r,l);!o&&m&&(n[p].providerFactory=c),us(i,t,e.length,0),e.push(u),a.directiveStart++,a.directiveEnd++,o&&(a.providerIndexes+=1048576),n.push(c),s.push(c)}else us(i,t,f>-1?f:p,ls(n[o?p:f],l,!o&&r));!o&&r&&m&&n[p].componentProviders++}}}function us(t,e,n,r){const o=oi(e);if(o||e.useClass){const i=(e.useClass||e).prototype.ngOnDestroy;if(i){const s=t.destroyHooks||(t.destroyHooks=[]);if(!o&&e.multi){const t=s.indexOf(n);-1===t?s.push(n,[r,i]):s[t+1].push(r,i)}else s.push(n,i)}}}function ls(t,e,n){return n&&t.componentProviders++,t.multi.push(e)-1}function as(t,e,n,r){for(let o=n;o<r;o++)if(e[o]===t)return o;return-1}function cs(t,e,n,r){return hs(this.multi,[])}function ds(t,e,n,r){const o=this.multi;let i;if(this.providerFactory){const t=this.providerFactory.componentProviders,e=Tn(n,n[1],this.providerFactory.index,r);i=e.slice(0,t),hs(o,i);for(let n=t;n<e.length;n++)i.push(e[n])}else i=[],hs(o,i);return i}function hs(t,e){for(let n=0;n<t.length;n++)e.push((0,t[n])());return e}function fs(t,e=[]){return n=>{n.providersResolver=(n,r)=>function(t,e,n){const r=Oe();if(r.firstCreatePass){const o=Kt(t);ss(n,r.data,r.blueprint,o,!0),ss(e,r.data,r.blueprint,o,!1)}}(n,r?r(t):t,e)}}class ps{}class gs{resolveComponentFactory(t){throw function(t){const e=Error(`No component factory found for ${K(t)}. Did you add it to @NgModule.entryComponents?`);return e.ngComponent=t,e}(t)}}let ms=(()=>{class t{}return t.NULL=new gs,t})();function _s(...t){}function ys(t,e){return new vs(ge(t,e))}const Cs=function(){return ys(Fe(),Me())};let vs=(()=>{class t{constructor(t){this.nativeElement=t}}return t.__NG_ELEMENT_ID__=Cs,t})();class Ds{}let bs=(()=>{class t{}return t.__NG_ELEMENT_ID__=()=>ws(),t})();const ws=function(){const t=Me(),e=ye(Fe().index,t);return function(t){return t[11]}(Ut(e)?e:t)};let Es=(()=>{class t{}return t.\u0275prov=rt({token:t,providedIn:"root",factory:()=>null}),t})();class As{constructor(t){this.full=t,this.major=t.split(".")[0],this.minor=t.split(".")[1],this.patch=t.split(".").slice(2).join(".")}}const Ms=new As("11.0.9");class Os{constructor(){}supports(t){return mi(t)}create(t){return new Fs(t)}}const xs=(t,e)=>e;class Fs{constructor(t){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=t||xs}forEachItem(t){let e;for(e=this._itHead;null!==e;e=e._next)t(e)}forEachOperation(t){let e=this._itHead,n=this._removalsHead,r=0,o=null;for(;e||n;){const i=!n||e&&e.currentIndex<Ss(n,r,o)?e:n,s=Ss(i,r,o),u=i.currentIndex;if(i===n)r--,n=n._nextRemoved;else if(e=e._next,null==i.previousIndex)r++;else{o||(o=[]);const t=s-r,e=u-r;if(t!=e){for(let n=0;n<t;n++){const r=n<o.length?o[n]:o[n]=0,i=r+n;e<=i&&i<t&&(o[n]=r+1)}o[i.previousIndex]=e-t}}s!==u&&t(i,s,u)}}forEachPreviousItem(t){let e;for(e=this._previousItHead;null!==e;e=e._nextPrevious)t(e)}forEachAddedItem(t){let e;for(e=this._additionsHead;null!==e;e=e._nextAdded)t(e)}forEachMovedItem(t){let e;for(e=this._movesHead;null!==e;e=e._nextMoved)t(e)}forEachRemovedItem(t){let e;for(e=this._removalsHead;null!==e;e=e._nextRemoved)t(e)}forEachIdentityChange(t){let e;for(e=this._identityChangesHead;null!==e;e=e._nextIdentityChange)t(e)}diff(t){if(null==t&&(t=[]),!mi(t))throw new Error(`Error trying to diff '${K(t)}'. Only arrays and iterables are allowed`);return this.check(t)?this:null}onDestroy(){}check(t){this._reset();let e,n,r,o=this._itHead,i=!1;if(Array.isArray(t)){this.length=t.length;for(let e=0;e<this.length;e++)n=t[e],r=this._trackByFn(e,n),null!==o&&Object.is(o.trackById,r)?(i&&(o=this._verifyReinsertion(o,n,r,e)),Object.is(o.item,n)||this._addIdentityChange(o,n)):(o=this._mismatch(o,n,r,e),i=!0),o=o._next}else e=0,function(t,e){if(Array.isArray(t))for(let n=0;n<t.length;n++)e(t[n]);else{const n=t[pi()]();let r;for(;!(r=n.next()).done;)e(r.value)}}(t,t=>{r=this._trackByFn(e,t),null!==o&&Object.is(o.trackById,r)?(i&&(o=this._verifyReinsertion(o,t,r,e)),Object.is(o.item,t)||this._addIdentityChange(o,t)):(o=this._mismatch(o,t,r,e),i=!0),o=o._next,e++}),this.length=e;return this._truncate(o),this.collection=t,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let t;for(t=this._previousItHead=this._itHead;null!==t;t=t._next)t._nextPrevious=t._next;for(t=this._additionsHead;null!==t;t=t._nextAdded)t.previousIndex=t.currentIndex;for(this._additionsHead=this._additionsTail=null,t=this._movesHead;null!==t;t=t._nextMoved)t.previousIndex=t.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(t,e,n,r){let o;return null===t?o=this._itTail:(o=t._prev,this._remove(t)),null!==(t=null===this._linkedRecords?null:this._linkedRecords.get(n,r))?(Object.is(t.item,e)||this._addIdentityChange(t,e),this._moveAfter(t,o,r)):null!==(t=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null))?(Object.is(t.item,e)||this._addIdentityChange(t,e),this._reinsertAfter(t,o,r)):t=this._addAfter(new Ts(e,n),o,r),t}_verifyReinsertion(t,e,n,r){let o=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null);return null!==o?t=this._reinsertAfter(o,t._prev,r):t.currentIndex!=r&&(t.currentIndex=r,this._addToMoves(t,r)),t}_truncate(t){for(;null!==t;){const e=t._next;this._addToRemovals(this._unlink(t)),t=e}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(t,e,n){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(t);const r=t._prevRemoved,o=t._nextRemoved;return null===r?this._removalsHead=o:r._nextRemoved=o,null===o?this._removalsTail=r:o._prevRemoved=r,this._insertAfter(t,e,n),this._addToMoves(t,n),t}_moveAfter(t,e,n){return this._unlink(t),this._insertAfter(t,e,n),this._addToMoves(t,n),t}_addAfter(t,e,n){return this._insertAfter(t,e,n),this._additionsTail=null===this._additionsTail?this._additionsHead=t:this._additionsTail._nextAdded=t,t}_insertAfter(t,e,n){const r=null===e?this._itHead:e._next;return t._next=r,t._prev=e,null===r?this._itTail=t:r._prev=t,null===e?this._itHead=t:e._next=t,null===this._linkedRecords&&(this._linkedRecords=new ks),this._linkedRecords.put(t),t.currentIndex=n,t}_remove(t){return this._addToRemovals(this._unlink(t))}_unlink(t){null!==this._linkedRecords&&this._linkedRecords.remove(t);const e=t._prev,n=t._next;return null===e?this._itHead=n:e._next=n,null===n?this._itTail=e:n._prev=e,t}_addToMoves(t,e){return t.previousIndex===e||(this._movesTail=null===this._movesTail?this._movesHead=t:this._movesTail._nextMoved=t),t}_addToRemovals(t){return null===this._unlinkedRecords&&(this._unlinkedRecords=new ks),this._unlinkedRecords.put(t),t.currentIndex=null,t._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=t,t._prevRemoved=null):(t._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=t),t}_addIdentityChange(t,e){return t.item=e,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=t:this._identityChangesTail._nextIdentityChange=t,t}}class Ts{constructor(t,e){this.item=t,this.trackById=e,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class Ps{constructor(){this._head=null,this._tail=null}add(t){null===this._head?(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,e){let n;for(n=this._head;null!==n;n=n._nextDup)if((null===e||e<=n.currentIndex)&&Object.is(n.trackById,t))return n;return null}remove(t){const e=t._prevDup,n=t._nextDup;return null===e?this._head=n:e._nextDup=n,null===n?this._tail=e:n._prevDup=e,null===this._head}}class ks{constructor(){this.map=new Map}put(t){const e=t.trackById;let n=this.map.get(e);n||(n=new Ps,this.map.set(e,n)),n.add(t)}get(t,e){const n=this.map.get(t);return n?n.get(t,e):null}remove(t){const e=t.trackById;return this.map.get(e).remove(t)&&this.map.delete(e),t}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function Ss(t,e,n){const r=t.previousIndex;if(null===r)return r;let o=0;return n&&r<n.length&&(o=n[r]),r+e+o}class Is{constructor(){}supports(t){return t instanceof Map||_i(t)}create(){return new Vs}}class Vs{constructor(){this._records=new Map,this._mapHead=null,this._appendAfter=null,this._previousMapHead=null,this._changesHead=null,this._changesTail=null,this._additionsHead=null,this._additionsTail=null,this._removalsHead=null,this._removalsTail=null}get isDirty(){return null!==this._additionsHead||null!==this._changesHead||null!==this._removalsHead}forEachItem(t){let e;for(e=this._mapHead;null!==e;e=e._next)t(e)}forEachPreviousItem(t){let e;for(e=this._previousMapHead;null!==e;e=e._nextPrevious)t(e)}forEachChangedItem(t){let e;for(e=this._changesHead;null!==e;e=e._nextChanged)t(e)}forEachAddedItem(t){let e;for(e=this._additionsHead;null!==e;e=e._nextAdded)t(e)}forEachRemovedItem(t){let e;for(e=this._removalsHead;null!==e;e=e._nextRemoved)t(e)}diff(t){if(t){if(!(t instanceof Map||_i(t)))throw new Error(`Error trying to diff '${K(t)}'. Only maps and objects are allowed`)}else t=new Map;return this.check(t)?this:null}onDestroy(){}check(t){this._reset();let e=this._mapHead;if(this._appendAfter=null,this._forEach(t,(t,n)=>{if(e&&e.key===n)this._maybeAddToChanges(e,t),this._appendAfter=e,e=e._next;else{const r=this._getOrCreateRecordForKey(n,t);e=this._insertBeforeOrAppend(e,r)}}),e){e._prev&&(e._prev._next=null),this._removalsHead=e;for(let t=e;null!==t;t=t._nextRemoved)t===this._mapHead&&(this._mapHead=null),this._records.delete(t.key),t._nextRemoved=t._next,t.previousValue=t.currentValue,t.currentValue=null,t._prev=null,t._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(t,e){if(t){const n=t._prev;return e._next=t,e._prev=n,t._prev=e,n&&(n._next=e),t===this._mapHead&&(this._mapHead=e),this._appendAfter=t,t}return this._appendAfter?(this._appendAfter._next=e,e._prev=this._appendAfter):this._mapHead=e,this._appendAfter=e,null}_getOrCreateRecordForKey(t,e){if(this._records.has(t)){const n=this._records.get(t);this._maybeAddToChanges(n,e);const r=n._prev,o=n._next;return r&&(r._next=o),o&&(o._prev=r),n._next=null,n._prev=null,n}const n=new Ns(t);return this._records.set(t,n),n.currentValue=e,this._addToAdditions(n),n}_reset(){if(this.isDirty){let t;for(this._previousMapHead=this._mapHead,t=this._previousMapHead;null!==t;t=t._next)t._nextPrevious=t._next;for(t=this._changesHead;null!==t;t=t._nextChanged)t.previousValue=t.currentValue;for(t=this._additionsHead;null!=t;t=t._nextAdded)t.previousValue=t.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(t,e){Object.is(e,t.currentValue)||(t.previousValue=t.currentValue,t.currentValue=e,this._addToChanges(t))}_addToAdditions(t){null===this._additionsHead?this._additionsHead=this._additionsTail=t:(this._additionsTail._nextAdded=t,this._additionsTail=t)}_addToChanges(t){null===this._changesHead?this._changesHead=this._changesTail=t:(this._changesTail._nextChanged=t,this._changesTail=t)}_forEach(t,e){t instanceof Map?t.forEach(e):Object.keys(t).forEach(n=>e(t[n],n))}}class Ns{constructor(t){this.key=t,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}let Bs=(()=>{class t{constructor(t){this.factories=t}static create(e,n){if(null!=n){const t=n.factories.slice();e=e.concat(t)}return new t(e)}static extend(e){return{provide:t,useFactory:n=>{if(!n)throw new Error("Cannot extend IterableDiffers without a parent injector");return t.create(e,n)},deps:[[t,new Wn,new Un]]}}find(t){const e=this.factories.find(e=>e.supports(t));if(null!=e)return e;throw new Error(`Cannot find a differ supporting object '${t}' of type '${n=t,n.name||typeof n}'`);var n}}return t.\u0275prov=rt({token:t,providedIn:"root",factory:()=>new t([new Os])}),t})(),js=(()=>{class t{constructor(t){this.factories=t}static create(e,n){if(n){const t=n.factories.slice();e=e.concat(t)}return new t(e)}static extend(e){return{provide:t,useFactory:n=>{if(!n)throw new Error("Cannot extend KeyValueDiffers without a parent injector");return t.create(e,n)},deps:[[t,new Wn,new Un]]}}find(t){const e=this.factories.find(e=>e.supports(t));if(e)return e;throw new Error(`Cannot find a differ supporting object '${t}'`)}}return t.\u0275prov=rt({token:t,providedIn:"root",factory:()=>new t([new Is])}),t})();function Rs(t,e,n,r,o=!1){for(;null!==n;){const i=e[n.index];if(null!==i&&r.push(fe(i)),Zt(i))for(let t=Gt;t<i.length;t++){const e=i[t],n=e[1].firstChild;null!==n&&Rs(e[1],e,n,r)}const s=n.type;if(8&s)Rs(t,e,n.child,r);else if(32&s){const t=fr(n,e);let o;for(;o=t();)r.push(o)}else if(16&s){const t=e[16],o=t[6].projection[n.projection];if(Array.isArray(o))r.push(...o);else{const e=pr(t);Rs(e[1],e,o,r,!0)}}n=o?n.projectionNext:n.next}return r}class Hs{constructor(t,e){this._lView=t,this._cdRefInjectingView=e,this._appRef=null,this._attachedToViewContainer=!1}get rootNodes(){const t=this._lView,e=t[1];return Rs(e,t,e.firstChild,[])}get context(){return this._lView[8]}get destroyed(){return 256==(256&this._lView[2])}destroy(){if(this._appRef)this._appRef.detachView(this);else if(this._attachedToViewContainer){const t=this._lView[3];if(Zt(t)){const e=t[8],n=e?e.indexOf(this):-1;n>-1&&(Dr(t,n),Ln(e,n))}this._attachedToViewContainer=!1}br(this._lView[1],this._lView)}onDestroy(t){!function(t,e,n,r){const o=jo(e);o.push(r)}(0,this._lView,0,t)}markForCheck(){So(this._cdRefInjectingView||this._lView)}detach(){this._lView[2]&=-129}reattach(){this._lView[2]|=128}detectChanges(){Io(this._lView[1],this._lView,this.context)}checkNoChanges(){!function(t,e,n){Ve(!0);try{Io(t,e,n)}finally{Ve(!1)}}(this._lView[1],this._lView,this.context)}attachToViewContainerRef(){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._attachedToViewContainer=!0}detachFromAppRef(){var t;this._appRef=null,kr(this._lView[1],t=this._lView,t[11],2,null,null)}attachToAppRef(t){if(this._attachedToViewContainer)throw new Error("This view is already attached to a ViewContainer!");this._appRef=t}}class Ls extends Hs{constructor(t){super(t),this._view=t}detectChanges(){Vo(this._view)}checkNoChanges(){!function(t){Ve(!0);try{Vo(t)}finally{Ve(!1)}}(this._view)}get context(){return null}}const $s=[new Is],zs=new Bs([new Os]),Ys=new js($s),Gs=function(){return Js(Fe(),Me())};let Us=(()=>{class t{}return t.__NG_ELEMENT_ID__=Gs,t})();const Zs=Us,Ws=class extends Zs{constructor(t,e,n){super(),this._declarationLView=t,this._declarationTContainer=e,this.elementRef=n}createEmbeddedView(t){const e=this._declarationTContainer.tViews,n=ro(this._declarationLView,e,t,16,null,e.declTNode,null,null,null,null);n[17]=this._declarationLView[this._declarationTContainer.index];const r=this._declarationLView[19];return null!==r&&(n[19]=r.createEmbeddedView(e)),so(e,n,t),new Hs(n)}};function Js(t,e){return 4&t.type?new Ws(e,t,ys(t,e)):null}class qs{}const Ks=function(){return function(t,e){let n;const r=e[t.index];if(Zt(r))n=r;else{let o;if(8&t.type)o=fe(r);else{const n=e[11];o=n.createComment("");const r=ge(t,e);Er(n,Or(n,r),o,function(t,e){return de(t)?t.nextSibling(e):e.nextSibling}(n,r),!1)}e[t.index]=n=xo(r,e,o,t),ko(e,n)}return new tu(n,t,e)}(Fe(),Me())};let Qs=(()=>{class t{}return t.__NG_ELEMENT_ID__=Ks,t})();const Xs=Qs,tu=class extends Xs{constructor(t,e,n){super(),this._lContainer=t,this._hostTNode=e,this._hostLView=n}get element(){return ys(this._hostTNode,this._hostLView)}get injector(){return new Sn(this._hostTNode,this._hostLView)}get parentInjector(){const t=bn(this._hostTNode,this._hostLView);if(fn(t)){const e=gn(t,this._hostLView),n=pn(t);return new Sn(e[1].data[n+8],e)}return new Sn(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(t){const e=eu(this._lContainer);return null!==e&&e[t]||null}get length(){return this._lContainer.length-Gt}createEmbeddedView(t,e,n){const r=t.createEmbeddedView(e||{});return this.insert(r,n),r}createComponent(t,e,n,r,o){const i=n||this.parentInjector;if(!o&&null==t.ngModule&&i){const t=i.get(qs,null);t&&(o=t)}const s=t.create(i,r,void 0,o);return this.insert(s.hostView,e),s}insert(t,e){const n=t._lView,r=n[1];if(Zt(n[3])){const e=this.indexOf(t);if(-1!==e)this.detach(e);else{const e=n[3],r=new tu(e,e[6],e[3]);r.detach(r.indexOf(t))}}const o=this._adjustIndex(e),i=this._lContainer;!function(t,e,n,r){const o=Gt+r,i=n.length;r>0&&(n[o-1][4]=e),r<i-Gt?(e[4]=n[o],Hn(n,Gt+r,e)):(n.push(e),e[4]=null),e[3]=n;const s=e[17];null!==s&&n!==s&&function(t,e){const n=t[9];e[16]!==e[3][3][16]&&(t[2]=!0),null===n?t[9]=[e]:n.push(e)}(s,e);const u=e[19];null!==u&&u.insertView(t),e[2]|=128}(r,n,i,o);const s=Tr(o,i),u=n[11],l=Or(u,i[7]);return null!==l&&function(t,e,n,r,o,i){r[0]=o,r[6]=e,kr(t,r,n,1,o,i)}(r,i[6],u,n,l,s),t.attachToViewContainerRef(),Hn(nu(i),o,t),t}move(t,e){return this.insert(t,e)}indexOf(t){const e=eu(this._lContainer);return null!==e?e.indexOf(t):-1}remove(t){const e=this._adjustIndex(t,-1),n=Dr(this._lContainer,e);n&&(Ln(nu(this._lContainer),e),br(n[1],n))}detach(t){const e=this._adjustIndex(t,-1),n=Dr(this._lContainer,e);return n&&null!=Ln(nu(this._lContainer),e)?new Hs(n):null}_adjustIndex(t,e=0){return null==t?this.length+e:t}};function eu(t){return t[8]}function nu(t){return t[8]||(t[8]=[])}const ru={};class ou extends ms{constructor(t){super(),this.ngModule=t}resolveComponentFactory(t){const e=$t(t);return new uu(e,this.ngModule)}}function iu(t){const e=[];for(let n in t)t.hasOwnProperty(n)&&e.push({propName:t[n],templateName:n});return e}const su=new jn("SCHEDULER_TOKEN",{providedIn:"root",factory:()=>cr});class uu extends ps{constructor(t,e){super(),this.componentDef=t,this.ngModule=e,this.componentType=t.type,this.selector=t.selectors.map(Ur).join(","),this.ngContentSelectors=t.ngContentSelectors?t.ngContentSelectors:[],this.isBoundToModule=!!e}get inputs(){return iu(this.componentDef.inputs)}get outputs(){return iu(this.componentDef.outputs)}create(t,e,n,r){const o=(r=r||this.ngModule)?function(t,e){return{get:(n,r,o)=>{const i=t.get(n,ru,o);return i!==ru||r===ru?i:e.get(n,r,o)}}}(t,r.injector):t,i=o.get(Ds,he),s=o.get(Es,null),u=i.createRenderer(null,this.componentDef),l=this.componentDef.selectors[0][0]||"div",a=n?function(t,e,n){if(de(t))return t.selectRootElement(e,n===yt.ShadowDom);let r="string"==typeof e?t.querySelector(e):e;return r.textContent="",r}(u,n,this.componentDef.encapsulation):Cr(i.createRenderer(null,this.componentDef),l,function(t){const e=t.toLowerCase();return"svg"===e?ae:"math"===e?"http://www.w3.org/1998/MathML/":null}(l)),c=this.componentDef.onPush?576:528,d={components:[],scheduler:cr,clean:Bo,playerHandler:null,flags:0},h=go(0,null,null,1,0,null,null,null,null,null),f=ro(null,h,d,c,null,null,i,u,s,o);let p,g;Ge(f);try{const t=function(t,e,n,r,o,i){const s=n[1];n[20]=t;const u=oo(s,20,2,"#host",null),l=u.mergedAttrs=e.hostAttrs;null!==l&&(zo(u,l,!0),null!==t&&(an(o,t,l),null!==u.classes&&Vr(o,t,u.classes),null!==u.styles&&Ir(o,t,u.styles)));const a=r.createRenderer(t,e),c=ro(n,po(e),null,e.onPush?64:16,n[20],u,r,a,null,null);return s.firstCreatePass&&(wn(Cn(u,n),s,e.type),Do(s,u),wo(u,n.length,1)),ko(n,c),n[20]=c}(a,this.componentDef,f,i,u);if(a)if(n)an(u,a,["ng-version",Ms.full]);else{const{attrs:t,classes:e}=function(t){const e=[],n=[];let r=1,o=2;for(;r<t.length;){let i=t[r];if("string"==typeof i)2===o?""!==i&&e.push(i,t[++r]):8===o&&n.push(i);else{if(!$r(o))break;o=i}r++}return{attrs:e,classes:n}}(this.componentDef.selectors[0]);t&&an(u,a,t),e&&e.length>0&&Vr(u,a,e.join(" "))}if(g=me(h,Yt),void 0!==e){const t=g.projection=[];for(let n=0;n<this.ngContentSelectors.length;n++){const r=e[n];t.push(null!=r?Array.from(r):null)}}p=function(t,e,n,r,o){const i=n[1],s=function(t,e,n){const r=Fe();t.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),Eo(t,r,e,io(t,e,1,null),n));const o=Tn(e,t,r.directiveStart,r);ar(o,e);const i=ge(r,e);return i&&ar(i,e),o}(i,n,e);if(r.components.push(s),t[8]=s,o&&o.forEach(t=>t(s,e)),e.contentQueries){const t=Fe();e.contentQueries(1,s,t.directiveStart)}const u=Fe();return!i.firstCreatePass||null===e.hostBindings&&null===e.hostAttrs||(Qe(u.index),Co(n[1],u,0,u.directiveStart,u.directiveEnd,e),vo(e,s)),s}(t,this.componentDef,f,d,[ui]),so(h,f,null)}finally{qe()}return new lu(this.componentType,p,ys(g,f),f,g)}}class lu extends class{}{constructor(t,e,n,r,o){super(),this.location=n,this._rootLView=r,this._tNode=o,this.instance=e,this.hostView=this.changeDetectorRef=new Ls(r),this.componentType=t}get injector(){return new Sn(this._tNode,this._rootLView)}destroy(){this.hostView.destroy()}onDestroy(t){this.hostView.onDestroy(t)}}const au=new Map;class cu extends qs{constructor(t,e){super(),this._parent=e,this._bootstrapComponents=[],this.injector=this,this.destroyCbs=[],this.componentFactoryResolver=new ou(this);const n=zt(t),r=t[Tt]||null;r&&is(r),this._bootstrapComponents=dr(n.bootstrap),this._r3Injector=Qo(t,e,[{provide:qs,useValue:this},{provide:ms,useValue:this.componentFactoryResolver}],K(t)),this._r3Injector._resolveInjectorDefTypes(),this.instance=this.get(t)}get(t,e=si.THROW_IF_NOT_FOUND,n=ht.Default){return t===si||t===qs||t===Yo?this:this._r3Injector.get(t,e,n)}destroy(){const t=this._r3Injector;!t.destroyed&&t.destroy(),this.destroyCbs.forEach(t=>t()),this.destroyCbs=null}onDestroy(t){this.destroyCbs.push(t)}}class du extends class{}{constructor(t){super(),this.moduleType=t,null!==zt(t)&&function(t){const e=new Set;!function t(n){const r=zt(n,!0),o=r.id;null!==o&&(function(t,e,n){if(e&&e!==n)throw new Error(`Duplicate module registered for ${t} - ${K(e)} vs ${K(e.name)}`)}(o,au.get(o),n),au.set(o,n));const i=dr(r.imports);for(const s of i)e.has(s)||(e.add(s),t(s))}(t)}(t)}create(t){return new cu(this.moduleType,t)}}function hu(t,e,n,r){return gu(Me(),Ne(),t,e,n,r)}function fu(t,e,n,r,o){return mu(Me(),Ne(),t,e,n,r,o)}function pu(t,e){const n=t[e];return n===Zr?void 0:n}function gu(t,e,n,r,o,i){const s=e+n;return Ci(t,s,o)?yi(t,s+1,i?r.call(i,o):r(o)):pu(t,s+1)}function mu(t,e,n,r,o,i,s){const u=e+n;return vi(t,u,o,i)?yi(t,u+2,s?r.call(s,o,i):r(o,i)):pu(t,u+2)}function _u(t,e){const n=Oe();let r;const o=t+Yt;n.firstCreatePass?(r=function(t,e){if(e)for(let n=e.length-1;n>=0;n--){const r=e[n];if(t===r.name)return r}throw new Xt("302",`The pipe '${t}' could not be found!`)}(e,n.pipeRegistry),n.data[o]=r,r.onDestroy&&(n.destroyHooks||(n.destroyHooks=[])).push(o,r.onDestroy)):r=n.data[o];const i=r.factory||(r.factory=Qt(r.type)),s=pt(Ei);try{const t=_n(!1),e=i();return _n(t),function(t,e,n,r){n>=t.data.length&&(t.data[n]=null,t.blueprint[n]=null),e[n]=r}(n,Me(),o,e),e}finally{pt(s)}}function yu(t,e,n){const r=t+Yt,o=Me(),i=_e(o,r);return Du(o,vu(o,r)?gu(o,Ne(),e,i.transform,n,i):i.transform(n))}function Cu(t,e,n,r,o){const i=t+Yt,s=Me(),u=_e(s,i);return Du(s,vu(s,i)?function(t,e,n,r,o,i,s,u){const l=e+n;return function(t,e,n,r,o){const i=vi(t,e,n,r);return Ci(t,e+2,o)||i}(t,l,o,i,s)?yi(t,l+3,u?r.call(u,o,i,s):r(o,i,s)):pu(t,l+3)}(s,Ne(),e,u.transform,n,r,o,u):u.transform(n,r,o))}function vu(t,e){return t[1].data[e].pure}function Du(t,e){return gi.isWrapped(e)&&(e=gi.unwrap(e),t[Be()]=Zr),e}const bu=class extends w{constructor(t=!1){super(),this.__isAsync=t}emit(t){super.next(t)}subscribe(t,e,n){let r,o=t=>null,i=()=>null;t&&"object"==typeof t?(r=this.__isAsync?e=>{setTimeout(()=>t.next(e))}:e=>{t.next(e)},t.error&&(o=this.__isAsync?e=>{setTimeout(()=>t.error(e))}:e=>{t.error(e)}),t.complete&&(i=this.__isAsync?()=>{setTimeout(()=>t.complete())}:()=>{t.complete()})):(r=this.__isAsync?e=>{setTimeout(()=>t(e))}:e=>{t(e)},e&&(o=this.__isAsync?t=>{setTimeout(()=>e(t))}:t=>{e(t)}),n&&(i=this.__isAsync?()=>{setTimeout(()=>n())}:()=>{n()}));const s=super.subscribe(r,o,i);return t instanceof d&&t.add(s),s}};function wu(t,e){return Js(t,e)}const Eu=new jn("Application Initializer");let Au=(()=>{class t{constructor(t){this.appInits=t,this.resolve=_s,this.reject=_s,this.initialized=!1,this.done=!1,this.donePromise=new Promise((t,e)=>{this.resolve=t,this.reject=e})}runInitializers(){if(this.initialized)return;const t=[],e=()=>{this.done=!0,this.resolve()};if(this.appInits)for(let n=0;n<this.appInits.length;n++){const e=this.appInits[n]();ki(e)&&t.push(e)}Promise.all(t).then(()=>{e()}).catch(t=>{this.reject(t)}),0===t.length&&e(),this.initialized=!0}}return t.\u0275fac=function(e){return new(e||t)(rr(Eu,8))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();const Mu=new jn("AppId"),Ou={provide:Mu,useFactory:function(){return`${xu()}${xu()}${xu()}`},deps:[]};function xu(){return String.fromCharCode(97+Math.floor(25*Math.random()))}const Fu=new jn("Platform Initializer"),Tu=new jn("Platform ID"),Pu=new jn("appBootstrapListener");let ku=(()=>{class t{log(t){console.log(t)}warn(t){console.warn(t)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();const Su=new jn("LocaleId"),Iu=new jn("DefaultCurrencyCode");class Vu{constructor(t,e){this.ngModuleFactory=t,this.componentFactories=e}}const Nu=function(t){return new du(t)},Bu=Nu,ju=function(t){return Promise.resolve(Nu(t))},Ru=function(t){const e=Nu(t),n=dr(zt(t).declarations).reduce((t,e)=>{const n=$t(e);return n&&t.push(new uu(n)),t},[]);return new Vu(e,n)},Hu=Ru,Lu=function(t){return Promise.resolve(Ru(t))};let $u=(()=>{class t{constructor(){this.compileModuleSync=Bu,this.compileModuleAsync=ju,this.compileModuleAndAllComponentsSync=Hu,this.compileModuleAndAllComponentsAsync=Lu}clearCache(){}clearCacheFor(t){}getModuleId(t){}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();const zu=(()=>Promise.resolve(0))();function Yu(t){"undefined"==typeof Zone?zu.then(()=>{t&&t.apply(null,null)}):Zone.current.scheduleMicroTask("scheduleMicrotask",t)}class Gu{constructor({enableLongStackTrace:t=!1,shouldCoalesceEventChangeDetection:e=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new bu(!1),this.onMicrotaskEmpty=new bu(!1),this.onStable=new bu(!1),this.onError=new bu(!1),"undefined"==typeof Zone)throw new Error("In this configuration Angular requires Zone.js");Zone.assertZonePatched();const n=this;n._nesting=0,n._outer=n._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(n._inner=n._inner.fork(new Zone.TaskTrackingZoneSpec)),t&&Zone.longStackTraceZoneSpec&&(n._inner=n._inner.fork(Zone.longStackTraceZoneSpec)),n.shouldCoalesceEventChangeDetection=e,n.lastRequestAnimationFrameId=-1,n.nativeRequestAnimationFrame=function(){let t=wt.requestAnimationFrame,e=wt.cancelAnimationFrame;if("undefined"!=typeof Zone&&t&&e){const n=t[Zone.__symbol__("OriginalDelegate")];n&&(t=n);const r=e[Zone.__symbol__("OriginalDelegate")];r&&(e=r)}return{nativeRequestAnimationFrame:t,nativeCancelAnimationFrame:e}}().nativeRequestAnimationFrame,function(t){const e=!!t.shouldCoalesceEventChangeDetection&&t.nativeRequestAnimationFrame&&(()=>{!function(t){-1===t.lastRequestAnimationFrameId&&(t.lastRequestAnimationFrameId=t.nativeRequestAnimationFrame.call(wt,()=>{t.fakeTopEventTask||(t.fakeTopEventTask=Zone.root.scheduleEventTask("fakeTopEventTask",()=>{t.lastRequestAnimationFrameId=-1,Wu(t),Zu(t)},void 0,()=>{},()=>{})),t.fakeTopEventTask.invoke()}),Wu(t))}(t)});t._inner=t._inner.fork({name:"angular",properties:{isAngularZone:!0,maybeDelayChangeDetection:e},onInvokeTask:(n,r,o,i,s,u)=>{try{return Ju(t),n.invokeTask(o,i,s,u)}finally{e&&"eventTask"===i.type&&e(),qu(t)}},onInvoke:(e,n,r,o,i,s,u)=>{try{return Ju(t),e.invoke(r,o,i,s,u)}finally{qu(t)}},onHasTask:(e,n,r,o)=>{e.hasTask(r,o),n===r&&("microTask"==o.change?(t._hasPendingMicrotasks=o.microTask,Wu(t),Zu(t)):"macroTask"==o.change&&(t.hasPendingMacrotasks=o.macroTask))},onHandleError:(e,n,r,o)=>(e.handleError(r,o),t.runOutsideAngular(()=>t.onError.emit(o)),!1)})}(n)}static isInAngularZone(){return!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!Gu.isInAngularZone())throw new Error("Expected to be in Angular Zone, but it is not!")}static assertNotInAngularZone(){if(Gu.isInAngularZone())throw new Error("Expected to not be in Angular Zone, but it is!")}run(t,e,n){return this._inner.run(t,e,n)}runTask(t,e,n,r){const o=this._inner,i=o.scheduleEventTask("NgZoneEvent: "+r,t,Uu,_s,_s);try{return o.runTask(i,e,n)}finally{o.cancelTask(i)}}runGuarded(t,e,n){return this._inner.runGuarded(t,e,n)}runOutsideAngular(t){return this._outer.run(t)}}const Uu={};function Zu(t){if(0==t._nesting&&!t.hasPendingMicrotasks&&!t.isStable)try{t._nesting++,t.onMicrotaskEmpty.emit(null)}finally{if(t._nesting--,!t.hasPendingMicrotasks)try{t.runOutsideAngular(()=>t.onStable.emit(null))}finally{t.isStable=!0}}}function Wu(t){t.hasPendingMicrotasks=!!(t._hasPendingMicrotasks||t.shouldCoalesceEventChangeDetection&&-1!==t.lastRequestAnimationFrameId)}function Ju(t){t._nesting++,t.isStable&&(t.isStable=!1,t.onUnstable.emit(null))}function qu(t){t._nesting--,Zu(t)}class Ku{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new bu,this.onMicrotaskEmpty=new bu,this.onStable=new bu,this.onError=new bu}run(t,e,n){return t.apply(e,n)}runGuarded(t,e,n){return t.apply(e,n)}runOutsideAngular(t){return t()}runTask(t,e,n,r){return t.apply(e,n)}}let Qu=(()=>{class t{constructor(t){this._ngZone=t,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),t.run(()=>{this.taskTrackingZone="undefined"==typeof Zone?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._didWork=!0,this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{Gu.assertNotInAngularZone(),Yu(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}increasePendingRequestCount(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount}decreasePendingRequestCount(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error("pending async requests below zero");return this._runCallbacksIfReady(),this._pendingCount}isStable(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())Yu(()=>{for(;0!==this._callbacks.length;){let t=this._callbacks.pop();clearTimeout(t.timeoutId),t.doneCb(this._didWork)}this._didWork=!1});else{let t=this.getPendingTasks();this._callbacks=this._callbacks.filter(e=>!e.updateCb||!e.updateCb(t)||(clearTimeout(e.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(t=>({source:t.source,creationLocation:t.creationLocation,data:t.data})):[]}addCallback(t,e,n){let r=-1;e&&e>0&&(r=setTimeout(()=>{this._callbacks=this._callbacks.filter(t=>t.timeoutId!==r),t(this._didWork,this.getPendingTasks())},e)),this._callbacks.push({doneCb:t,timeoutId:r,updateCb:n})}whenStable(t,e,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/dist/task-tracking.js" loaded?');this.addCallback(t,e,n),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}findProviders(t,e,n){return[]}}return t.\u0275fac=function(e){return new(e||t)(rr(Gu))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})(),Xu=(()=>{class t{constructor(){this._applications=new Map,nl.addToWindow(this)}registerApplication(t,e){this._applications.set(t,e)}unregisterApplication(t){this._applications.delete(t)}unregisterAllApplications(){this._applications.clear()}getTestability(t){return this._applications.get(t)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(t,e=!0){return nl.findTestabilityInTree(this,t,e)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();class tl{addToWindow(t){}findTestabilityInTree(t,e,n){return null}}let el,nl=new tl,rl=!0,ol=!1;function il(){return ol=!0,rl}const sl=new jn("AllowMultipleToken");function ul(t,e,n=[]){const r="Platform: "+e,o=new jn(r);return(e=[])=>{let i=ll();if(!i||i.injector.get(sl,!1))if(t)t(n.concat(e).concat({provide:o,useValue:!0}));else{const t=n.concat(e).concat({provide:o,useValue:!0},{provide:Uo,useValue:"platform"});!function(t){if(el&&!el.destroyed&&!el.injector.get(sl,!1))throw new Error("There can be only one platform. Destroy the previous one to create a new one.");el=t.get(al);const e=t.get(Fu,null);e&&e.forEach(t=>t())}(si.create({providers:t,name:r}))}return function(t){const e=ll();if(!e)throw new Error("No platform exists!");if(!e.injector.get(t,null))throw new Error("A platform with a different configuration has been created. Please destroy it first.");return e}(o)}}function ll(){return el&&!el.destroyed?el:null}let al=(()=>{class t{constructor(t){this._injector=t,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(t,e){const n=function(t,e){let n;return n="noop"===t?new Ku:("zone.js"===t?void 0:t)||new Gu({enableLongStackTrace:il(),shouldCoalesceEventChangeDetection:e}),n}(e?e.ngZone:void 0,e&&e.ngZoneEventCoalescing||!1),r=[{provide:Gu,useValue:n}];return n.run(()=>{const e=si.create({providers:r,parent:this.injector,name:t.moduleType.name}),o=t.create(e),i=o.injector.get(lr,null);if(!i)throw new Error("No ErrorHandler. Is platform module (BrowserModule) included?");return n.runOutsideAngular(()=>{const t=n.onError.subscribe({next:t=>{i.handleError(t)}});o.onDestroy(()=>{hl(this._modules,o),t.unsubscribe()})}),function(t,e,n){try{const r=n();return ki(r)?r.catch(n=>{throw e.runOutsideAngular(()=>t.handleError(n)),n}):r}catch(r){throw e.runOutsideAngular(()=>t.handleError(r)),r}}(i,n,()=>{const t=o.injector.get(Au);return t.runInitializers(),t.donePromise.then(()=>(is(o.injector.get(Su,rs)||rs),this._moduleDoBootstrap(o),o))})})}bootstrapModule(t,e=[]){const n=cl({},e);return function(t,e,n){const r=new du(n);return Promise.resolve(r)}(0,0,t).then(t=>this.bootstrapModuleFactory(t,n))}_moduleDoBootstrap(t){const e=t.injector.get(dl);if(t._bootstrapComponents.length>0)t._bootstrapComponents.forEach(t=>e.bootstrap(t));else{if(!t.instance.ngDoBootstrap)throw new Error(`The module ${K(t.instance.constructor)} was bootstrapped, but it does not declare "@NgModule.bootstrap" components nor a "ngDoBootstrap" method. Please define one of these.`);t.instance.ngDoBootstrap(e)}this._modules.push(t)}onDestroy(t){this._destroyListeners.push(t)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Error("The platform has already been destroyed!");this._modules.slice().forEach(t=>t.destroy()),this._destroyListeners.forEach(t=>t()),this._destroyed=!0}get destroyed(){return this._destroyed}}return t.\u0275fac=function(e){return new(e||t)(rr(si))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();function cl(t,e){return Array.isArray(e)?e.reduce(cl,t):Object.assign(Object.assign({},t),e)}let dl=(()=>{class t{constructor(t,e,n,r,o,i){this._zone=t,this._console=e,this._injector=n,this._exceptionHandler=r,this._componentFactoryResolver=o,this._initStatus=i,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._onMicrotaskEmptySubscription=this._zone.onMicrotaskEmpty.subscribe({next:()=>{this._zone.run(()=>{this.tick()})}});const s=new y(t=>{this._stable=this._zone.isStable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks,this._zone.runOutsideAngular(()=>{t.next(this._stable),t.complete()})}),u=new y(t=>{let e;this._zone.runOutsideAngular(()=>{e=this._zone.onStable.subscribe(()=>{Gu.assertNotInAngularZone(),Yu(()=>{this._stable||this._zone.hasPendingMacrotasks||this._zone.hasPendingMicrotasks||(this._stable=!0,t.next(!0))})})});const n=this._zone.onUnstable.subscribe(()=>{Gu.assertInAngularZone(),this._stable&&(this._stable=!1,this._zone.runOutsideAngular(()=>{t.next(!1)}))});return()=>{e.unsubscribe(),n.unsubscribe()}});this.isStable=L(s,u.pipe(t=>{return $()((e=W,function(t){let n;n="function"==typeof e?e:function(){return e};const r=Object.create(t,U);return r.source=t,r.subjectFactory=n,r})(t));var e}))}bootstrap(t,e){if(!this._initStatus.done)throw new Error("Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.");let n;n=t instanceof ps?t:this._componentFactoryResolver.resolveComponentFactory(t),this.componentTypes.push(n.componentType);const r=n.isBoundToModule?void 0:this._injector.get(qs),o=n.create(si.NULL,[],e||n.selector,r),i=o.location.nativeElement,s=o.injector.get(Qu,null),u=s&&o.injector.get(Xu);return s&&u&&u.registerApplication(i,s),o.onDestroy(()=>{this.detachView(o.hostView),hl(this.components,o),u&&u.unregisterApplication(i)}),this._loadComponent(o),il()&&this._console.log("Angular is running in development mode. Call enableProdMode() to enable production mode."),o}tick(){if(this._runningTick)throw new Error("ApplicationRef.tick is called recursively");try{this._runningTick=!0;for(let t of this._views)t.detectChanges()}catch(t){this._zone.runOutsideAngular(()=>this._exceptionHandler.handleError(t))}finally{this._runningTick=!1}}attachView(t){const e=t;this._views.push(e),e.attachToAppRef(this)}detachView(t){const e=t;hl(this._views,e),e.detachFromAppRef()}_loadComponent(t){this.attachView(t.hostView),this.tick(),this.components.push(t),this._injector.get(Pu,[]).concat(this._bootstrapListeners).forEach(e=>e(t))}ngOnDestroy(){this._views.slice().forEach(t=>t.destroy()),this._onMicrotaskEmptySubscription.unsubscribe()}get viewCount(){return this._views.length}}return t.\u0275fac=function(e){return new(e||t)(rr(Gu),rr(ku),rr(si),rr(lr),rr(ms),rr(Au))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();function hl(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const fl=ul(null,"core",[{provide:Tu,useValue:"unknown"},{provide:al,deps:[si]},{provide:Xu,deps:[]},{provide:ku,deps:[]}]),pl=[{provide:dl,useClass:dl,deps:[Gu,ku,si,lr,ms,Au]},{provide:su,deps:[Gu],useFactory:function(t){let e=[];return t.onStable.subscribe(()=>{for(;e.length;)e.pop()()}),function(t){e.push(t)}}},{provide:Au,useClass:Au,deps:[[new Un,Eu]]},{provide:$u,useClass:$u,deps:[]},Ou,{provide:Bs,useFactory:function(){return zs},deps:[]},{provide:js,useFactory:function(){return Ys},deps:[]},{provide:Su,useFactory:function(t){return is(t=t||"undefined"!=typeof $localize&&$localize.locale||rs),t},deps:[[new Gn(Su),new Un,new Wn]]},{provide:Iu,useValue:"USD"}];let gl=(()=>{class t{constructor(t){}}return t.\u0275mod=jt({type:t}),t.\u0275inj=ot({factory:function(e){return new(e||t)(rr(dl))},providers:pl}),t})(),ml=null;function _l(){return ml}const yl=new jn("DocumentToken");var Cl=function(t){return t[t.Zero=0]="Zero",t[t.One=1]="One",t[t.Two=2]="Two",t[t.Few=3]="Few",t[t.Many=4]="Many",t[t.Other=5]="Other",t}({}),vl=function(t){return t[t.Format=0]="Format",t[t.Standalone=1]="Standalone",t}({}),Dl=function(t){return t[t.Narrow=0]="Narrow",t[t.Abbreviated=1]="Abbreviated",t[t.Wide=2]="Wide",t[t.Short=3]="Short",t}({}),bl=function(t){return t[t.Short=0]="Short",t[t.Medium=1]="Medium",t[t.Long=2]="Long",t[t.Full=3]="Full",t}({}),wl=function(t){return t[t.Decimal=0]="Decimal",t[t.Group=1]="Group",t[t.List=2]="List",t[t.PercentSign=3]="PercentSign",t[t.PlusSign=4]="PlusSign",t[t.MinusSign=5]="MinusSign",t[t.Exponential=6]="Exponential",t[t.SuperscriptingExponent=7]="SuperscriptingExponent",t[t.PerMille=8]="PerMille",t[t[1/0]=9]="Infinity",t[t.NaN=10]="NaN",t[t.TimeSeparator=11]="TimeSeparator",t[t.CurrencyDecimal=12]="CurrencyDecimal",t[t.CurrencyGroup=13]="CurrencyGroup",t}({});function El(t,e){return Fl(ts(t)[ns.DateFormat],e)}function Al(t,e){return Fl(ts(t)[ns.TimeFormat],e)}function Ml(t,e){return Fl(ts(t)[ns.DateTimeFormat],e)}function Ol(t,e){const n=ts(t),r=n[ns.NumberSymbols][e];if(void 0===r){if(e===wl.CurrencyDecimal)return n[ns.NumberSymbols][wl.Decimal];if(e===wl.CurrencyGroup)return n[ns.NumberSymbols][wl.Group]}return r}function xl(t){if(!t[ns.ExtraData])throw new Error(`Missing extra locale data for the locale "${t[ns.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function Fl(t,e){for(let n=e;n>-1;n--)if(void 0!==t[n])return t[n];throw new Error("Locale data API: locale data undefined")}function Tl(t){const[e,n]=t.split(":");return{hours:+e,minutes:+n}}const Pl=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,kl={},Sl=/((?:[^GyYMLwWdEabBhHmsSzZO']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;var Il=function(t){return t[t.Short=0]="Short",t[t.ShortGMT=1]="ShortGMT",t[t.Long=2]="Long",t[t.Extended=3]="Extended",t}({}),Vl=function(t){return t[t.FullYear=0]="FullYear",t[t.Month=1]="Month",t[t.Date=2]="Date",t[t.Hours=3]="Hours",t[t.Minutes=4]="Minutes",t[t.Seconds=5]="Seconds",t[t.FractionalSeconds=6]="FractionalSeconds",t[t.Day=7]="Day",t}({}),Nl=function(t){return t[t.DayPeriods=0]="DayPeriods",t[t.Days=1]="Days",t[t.Months=2]="Months",t[t.Eras=3]="Eras",t}({});function Bl(t,e,n,r){let o=function(t){if(Jl(t))return t;if("number"==typeof t&&!isNaN(t))return new Date(t);if("string"==typeof t){t=t.trim();const e=parseFloat(t);if(!isNaN(t-e))return new Date(e);if(/^(\d{4}-\d{1,2}-\d{1,2})$/.test(t)){const[e,n,r]=t.split("-").map(t=>+t);return new Date(e,n-1,r)}let n;if(n=t.match(Pl))return function(t){const e=new Date(0);let n=0,r=0;const o=t[8]?e.setUTCFullYear:e.setFullYear,i=t[8]?e.setUTCHours:e.setHours;t[9]&&(n=Number(t[9]+t[10]),r=Number(t[9]+t[11])),o.call(e,Number(t[1]),Number(t[2])-1,Number(t[3]));const s=Number(t[4]||0)-n,u=Number(t[5]||0)-r,l=Number(t[6]||0),a=Math.floor(1e3*parseFloat("0."+(t[7]||0)));return i.call(e,s,u,l,a),e}(n)}const e=new Date(t);if(!Jl(e))throw new Error(`Unable to convert "${t}" into a date`);return e}(t);e=jl(n,e)||e;let i,s=[];for(;e;){if(i=Sl.exec(e),!i){s.push(e);break}{s=s.concat(i.slice(1));const t=s.pop();if(!t)break;e=t}}let u=o.getTimezoneOffset();r&&(u=Wl(r,u),o=function(t,e,n){const r=t.getTimezoneOffset();return function(t,e){return(t=new Date(t.getTime())).setMinutes(t.getMinutes()+e),t}(t,-1*(Wl(e,r)-r))}(o,r));let l="";return s.forEach(t=>{const e=function(t){if(Zl[t])return Zl[t];let e;switch(t){case"G":case"GG":case"GGG":e=$l(Nl.Eras,Dl.Abbreviated);break;case"GGGG":e=$l(Nl.Eras,Dl.Wide);break;case"GGGGG":e=$l(Nl.Eras,Dl.Narrow);break;case"y":e=Ll(Vl.FullYear,1,0,!1,!0);break;case"yy":e=Ll(Vl.FullYear,2,0,!0,!0);break;case"yyy":e=Ll(Vl.FullYear,3,0,!1,!0);break;case"yyyy":e=Ll(Vl.FullYear,4,0,!1,!0);break;case"Y":e=Ul(1);break;case"YY":e=Ul(2,!0);break;case"YYY":e=Ul(3);break;case"YYYY":e=Ul(4);break;case"M":case"L":e=Ll(Vl.Month,1,1);break;case"MM":case"LL":e=Ll(Vl.Month,2,1);break;case"MMM":e=$l(Nl.Months,Dl.Abbreviated);break;case"MMMM":e=$l(Nl.Months,Dl.Wide);break;case"MMMMM":e=$l(Nl.Months,Dl.Narrow);break;case"LLL":e=$l(Nl.Months,Dl.Abbreviated,vl.Standalone);break;case"LLLL":e=$l(Nl.Months,Dl.Wide,vl.Standalone);break;case"LLLLL":e=$l(Nl.Months,Dl.Narrow,vl.Standalone);break;case"w":e=Gl(1);break;case"ww":e=Gl(2);break;case"W":e=Gl(1,!0);break;case"d":e=Ll(Vl.Date,1);break;case"dd":e=Ll(Vl.Date,2);break;case"E":case"EE":case"EEE":e=$l(Nl.Days,Dl.Abbreviated);break;case"EEEE":e=$l(Nl.Days,Dl.Wide);break;case"EEEEE":e=$l(Nl.Days,Dl.Narrow);break;case"EEEEEE":e=$l(Nl.Days,Dl.Short);break;case"a":case"aa":case"aaa":e=$l(Nl.DayPeriods,Dl.Abbreviated);break;case"aaaa":e=$l(Nl.DayPeriods,Dl.Wide);break;case"aaaaa":e=$l(Nl.DayPeriods,Dl.Narrow);break;case"b":case"bb":case"bbb":e=$l(Nl.DayPeriods,Dl.Abbreviated,vl.Standalone,!0);break;case"bbbb":e=$l(Nl.DayPeriods,Dl.Wide,vl.Standalone,!0);break;case"bbbbb":e=$l(Nl.DayPeriods,Dl.Narrow,vl.Standalone,!0);break;case"B":case"BB":case"BBB":e=$l(Nl.DayPeriods,Dl.Abbreviated,vl.Format,!0);break;case"BBBB":e=$l(Nl.DayPeriods,Dl.Wide,vl.Format,!0);break;case"BBBBB":e=$l(Nl.DayPeriods,Dl.Narrow,vl.Format,!0);break;case"h":e=Ll(Vl.Hours,1,-12);break;case"hh":e=Ll(Vl.Hours,2,-12);break;case"H":e=Ll(Vl.Hours,1);break;case"HH":e=Ll(Vl.Hours,2);break;case"m":e=Ll(Vl.Minutes,1);break;case"mm":e=Ll(Vl.Minutes,2);break;case"s":e=Ll(Vl.Seconds,1);break;case"ss":e=Ll(Vl.Seconds,2);break;case"S":e=Ll(Vl.FractionalSeconds,1);break;case"SS":e=Ll(Vl.FractionalSeconds,2);break;case"SSS":e=Ll(Vl.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":e=zl(Il.Short);break;case"ZZZZZ":e=zl(Il.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":e=zl(Il.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":e=zl(Il.Long);break;default:return null}return Zl[t]=e,e}(t);l+=e?e(o,n,u):"''"===t?"'":t.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),l}function jl(t,e){const n=function(t){return ts(t)[ns.LocaleId]}(t);if(kl[n]=kl[n]||{},kl[n][e])return kl[n][e];let r="";switch(e){case"shortDate":r=El(t,bl.Short);break;case"mediumDate":r=El(t,bl.Medium);break;case"longDate":r=El(t,bl.Long);break;case"fullDate":r=El(t,bl.Full);break;case"shortTime":r=Al(t,bl.Short);break;case"mediumTime":r=Al(t,bl.Medium);break;case"longTime":r=Al(t,bl.Long);break;case"fullTime":r=Al(t,bl.Full);break;case"short":const e=jl(t,"shortTime"),n=jl(t,"shortDate");r=Rl(Ml(t,bl.Short),[e,n]);break;case"medium":const o=jl(t,"mediumTime"),i=jl(t,"mediumDate");r=Rl(Ml(t,bl.Medium),[o,i]);break;case"long":const s=jl(t,"longTime"),u=jl(t,"longDate");r=Rl(Ml(t,bl.Long),[s,u]);break;case"full":const l=jl(t,"fullTime"),a=jl(t,"fullDate");r=Rl(Ml(t,bl.Full),[l,a])}return r&&(kl[n][e]=r),r}function Rl(t,e){return e&&(t=t.replace(/\{([^}]+)}/g,function(t,n){return null!=e&&n in e?e[n]:t})),t}function Hl(t,e,n="-",r,o){let i="";(t<0||o&&t<=0)&&(o?t=1-t:(t=-t,i=n));let s=String(t);for(;s.length<e;)s="0"+s;return r&&(s=s.substr(s.length-e)),i+s}function Ll(t,e,n=0,r=!1,o=!1){return function(i,s){let u=function(t,e){switch(t){case Vl.FullYear:return e.getFullYear();case Vl.Month:return e.getMonth();case Vl.Date:return e.getDate();case Vl.Hours:return e.getHours();case Vl.Minutes:return e.getMinutes();case Vl.Seconds:return e.getSeconds();case Vl.FractionalSeconds:return e.getMilliseconds();case Vl.Day:return e.getDay();default:throw new Error(`Unknown DateType value "${t}".`)}}(t,i);if((n>0||u>-n)&&(u+=n),t===Vl.Hours)0===u&&-12===n&&(u=12);else if(t===Vl.FractionalSeconds)return l=e,Hl(u,3).substr(0,l);var l;const a=Ol(s,wl.MinusSign);return Hl(u,e,a,r,o)}}function $l(t,e,n=vl.Format,r=!1){return function(o,i){return function(t,e,n,r,o,i){switch(n){case Nl.Months:return function(t,e,n){const r=ts(t),o=Fl([r[ns.MonthsFormat],r[ns.MonthsStandalone]],e);return Fl(o,n)}(e,o,r)[t.getMonth()];case Nl.Days:return function(t,e,n){const r=ts(t),o=Fl([r[ns.DaysFormat],r[ns.DaysStandalone]],e);return Fl(o,n)}(e,o,r)[t.getDay()];case Nl.DayPeriods:const s=t.getHours(),u=t.getMinutes();if(i){const t=function(t){const e=ts(t);return xl(e),(e[ns.ExtraData][2]||[]).map(t=>"string"==typeof t?Tl(t):[Tl(t[0]),Tl(t[1])])}(e),n=function(t,e,n){const r=ts(t);xl(r);const o=Fl([r[ns.ExtraData][0],r[ns.ExtraData][1]],e)||[];return Fl(o,n)||[]}(e,o,r),i=t.findIndex(t=>{if(Array.isArray(t)){const[e,n]=t,r=s>=e.hours&&u>=e.minutes,o=s<n.hours||s===n.hours&&u<n.minutes;if(e.hours<n.hours){if(r&&o)return!0}else if(r||o)return!0}else if(t.hours===s&&t.minutes===u)return!0;return!1});if(-1!==i)return n[i]}return function(t,e,n){const r=ts(t),o=Fl([r[ns.DayPeriodsFormat],r[ns.DayPeriodsStandalone]],e);return Fl(o,n)}(e,o,r)[s<12?0:1];case Nl.Eras:return function(t,e){return Fl(ts(t)[ns.Eras],e)}(e,r)[t.getFullYear()<=0?0:1];default:throw new Error("unexpected translation type "+n)}}(o,i,t,e,n,r)}}function zl(t){return function(e,n,r){const o=-1*r,i=Ol(n,wl.MinusSign),s=o>0?Math.floor(o/60):Math.ceil(o/60);switch(t){case Il.Short:return(o>=0?"+":"")+Hl(s,2,i)+Hl(Math.abs(o%60),2,i);case Il.ShortGMT:return"GMT"+(o>=0?"+":"")+Hl(s,1,i);case Il.Long:return"GMT"+(o>=0?"+":"")+Hl(s,2,i)+":"+Hl(Math.abs(o%60),2,i);case Il.Extended:return 0===r?"Z":(o>=0?"+":"")+Hl(s,2,i)+":"+Hl(Math.abs(o%60),2,i);default:throw new Error(`Unknown zone width "${t}"`)}}}function Yl(t){return new Date(t.getFullYear(),t.getMonth(),t.getDate()+(4-t.getDay()))}function Gl(t,e=!1){return function(n,r){let o;if(e){const t=new Date(n.getFullYear(),n.getMonth(),1).getDay()-1,e=n.getDate();o=1+Math.floor((e+t)/7)}else{const t=Yl(n),e=function(t){const e=new Date(t,0,1).getDay();return new Date(t,0,1+(e<=4?4:11)-e)}(t.getFullYear()),r=t.getTime()-e.getTime();o=1+Math.round(r/6048e5)}return Hl(o,t,Ol(r,wl.MinusSign))}}function Ul(t,e=!1){return function(n,r){return Hl(Yl(n).getFullYear(),t,Ol(r,wl.MinusSign),e)}}const Zl={};function Wl(t,e){t=t.replace(/:/g,"");const n=Date.parse("Jan 01, 1970 00:00:00 "+t)/6e4;return isNaN(n)?e:n}function Jl(t){return t instanceof Date&&!isNaN(t.valueOf())}class ql{}let Kl=(()=>{class t extends ql{constructor(t){super(),this.locale=t}getPluralCategory(t,e){switch(function(t){return ts(t)[ns.PluralCase]}(e||this.locale)(t)){case Cl.Zero:return"zero";case Cl.One:return"one";case Cl.Two:return"two";case Cl.Few:return"few";case Cl.Many:return"many";default:return"other"}}}return t.\u0275fac=function(e){return new(e||t)(rr(Su))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();function Ql(t,e,n){return function(t,e,n){"string"!=typeof e&&(n=e,e=t[ns.LocaleId]),e=e.toLowerCase().replace(/_/g,"-"),Xi[e]=t,n&&(Xi[e][ns.ExtraData]=n)}(t,e,n)}let Xl=(()=>{class t{constructor(t,e,n,r){this._iterableDiffers=t,this._keyValueDiffers=e,this._ngEl=n,this._renderer=r,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}set klass(t){this._removeClasses(this._initialClasses),this._initialClasses="string"==typeof t?t.split(/\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}set ngClass(t){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass="string"==typeof t?t.split(/\s+/):t,this._rawClass&&(mi(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}ngDoCheck(){if(this._iterableDiffer){const t=this._iterableDiffer.diff(this._rawClass);t&&this._applyIterableChanges(t)}else if(this._keyValueDiffer){const t=this._keyValueDiffer.diff(this._rawClass);t&&this._applyKeyValueChanges(t)}}_applyKeyValueChanges(t){t.forEachAddedItem(t=>this._toggleClass(t.key,t.currentValue)),t.forEachChangedItem(t=>this._toggleClass(t.key,t.currentValue)),t.forEachRemovedItem(t=>{t.previousValue&&this._toggleClass(t.key,!1)})}_applyIterableChanges(t){t.forEachAddedItem(t=>{if("string"!=typeof t.item)throw new Error("NgClass can only toggle CSS classes expressed as strings, got "+K(t.item));this._toggleClass(t.item,!0)}),t.forEachRemovedItem(t=>this._toggleClass(t.item,!1))}_applyClasses(t){t&&(Array.isArray(t)||t instanceof Set?t.forEach(t=>this._toggleClass(t,!0)):Object.keys(t).forEach(e=>this._toggleClass(e,!!t[e])))}_removeClasses(t){t&&(Array.isArray(t)||t instanceof Set?t.forEach(t=>this._toggleClass(t,!1)):Object.keys(t).forEach(t=>this._toggleClass(t,!1)))}_toggleClass(t,e){(t=t.trim())&&t.split(/\s+/g).forEach(t=>{e?this._renderer.addClass(this._ngEl.nativeElement,t):this._renderer.removeClass(this._ngEl.nativeElement,t)})}}return t.\u0275fac=function(e){return new(e||t)(Ei(Bs),Ei(js),Ei(vs),Ei(bs))},t.\u0275dir=Ht({type:t,selectors:[["","ngClass",""]],inputs:{klass:["class","klass"],ngClass:"ngClass"}}),t})();class ta{constructor(t,e,n,r){this.$implicit=t,this.ngForOf=e,this.index=n,this.count=r}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let ea=(()=>{class t{constructor(t,e,n){this._viewContainer=t,this._template=e,this._differs=n,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForOf(t){this._ngForOf=t,this._ngForOfDirty=!0}set ngForTrackBy(t){this._trackByFn=t}get ngForTrackBy(){return this._trackByFn}set ngForTemplate(t){t&&(this._template=t)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const n=this._ngForOf;if(!this._differ&&n)try{this._differ=this._differs.find(n).create(this.ngForTrackBy)}catch(e){throw new Error(`Cannot find a differ supporting object '${n}' of type '${t=n,t.name||typeof t}'. NgFor only supports binding to Iterables such as Arrays.`)}}var t;if(this._differ){const t=this._differ.diff(this._ngForOf);t&&this._applyChanges(t)}}_applyChanges(t){const e=[];t.forEachOperation((t,n,r)=>{if(null==t.previousIndex){const n=this._viewContainer.createEmbeddedView(this._template,new ta(null,this._ngForOf,-1,-1),null===r?void 0:r),o=new na(t,n);e.push(o)}else if(null==r)this._viewContainer.remove(null===n?void 0:n);else if(null!==n){const o=this._viewContainer.get(n);this._viewContainer.move(o,r);const i=new na(t,o);e.push(i)}});for(let n=0;n<e.length;n++)this._perViewChange(e[n].view,e[n].record);for(let n=0,r=this._viewContainer.length;n<r;n++){const t=this._viewContainer.get(n);t.context.index=n,t.context.count=r,t.context.ngForOf=this._ngForOf}t.forEachIdentityChange(t=>{this._viewContainer.get(t.currentIndex).context.$implicit=t.item})}_perViewChange(t,e){t.context.$implicit=e.item}static ngTemplateContextGuard(t,e){return!0}}return t.\u0275fac=function(e){return new(e||t)(Ei(Qs),Ei(Us),Ei(Bs))},t.\u0275dir=Ht({type:t,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"}}),t})();class na{constructor(t,e){this.record=t,this.view=e}}let ra=(()=>{class t{constructor(t,e){this._viewContainer=t,this._context=new oa,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=e}set ngIf(t){this._context.$implicit=this._context.ngIf=t,this._updateView()}set ngIfThen(t){ia("ngIfThen",t),this._thenTemplateRef=t,this._thenViewRef=null,this._updateView()}set ngIfElse(t){ia("ngIfElse",t),this._elseTemplateRef=t,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngTemplateContextGuard(t,e){return!0}}return t.\u0275fac=function(e){return new(e||t)(Ei(Qs),Ei(Us))},t.\u0275dir=Ht({type:t,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"}}),t})();class oa{constructor(){this.$implicit=null,this.ngIf=null}}function ia(t,e){if(e&&!e.createEmbeddedView)throw new Error(`${t} must be a TemplateRef, but received '${K(e)}'.`)}let sa=(()=>{class t{constructor(t){this._viewContainerRef=t,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null}ngOnChanges(t){if(this._shouldRecreateView(t)){const t=this._viewContainerRef;this._viewRef&&t.remove(t.indexOf(this._viewRef)),this._viewRef=this.ngTemplateOutlet?t.createEmbeddedView(this.ngTemplateOutlet,this.ngTemplateOutletContext):null}else this._viewRef&&this.ngTemplateOutletContext&&this._updateExistingContext(this.ngTemplateOutletContext)}_shouldRecreateView(t){const e=t.ngTemplateOutletContext;return!!t.ngTemplateOutlet||e&&this._hasContextShapeChanged(e)}_hasContextShapeChanged(t){const e=Object.keys(t.previousValue||{}),n=Object.keys(t.currentValue||{});if(e.length===n.length){for(let t of n)if(-1===e.indexOf(t))return!0;return!1}return!0}_updateExistingContext(t){for(let e of Object.keys(t))this._viewRef.context[e]=this.ngTemplateOutletContext[e]}}return t.\u0275fac=function(e){return new(e||t)(Ei(Qs))},t.\u0275dir=Ht({type:t,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet"},features:[oe]}),t})();function ua(t,e){return Error(`InvalidPipeArgument: '${e}' for pipe '${K(t)}'`)}const la=/(?:[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE83\uDE86-\uDE89\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D])\S*/g;let aa=(()=>{class t{transform(e){if(null==e)return null;if("string"!=typeof e)throw ua(t,e);return e.replace(la,t=>t[0].toUpperCase()+t.substr(1).toLowerCase())}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275pipe=Lt({name:"titlecase",type:t,pure:!0}),t})(),ca=(()=>{class t{constructor(t){this.locale=t}transform(e,n="mediumDate",r,o){if(null==e||""===e||e!=e)return null;try{return Bl(e,n,o||this.locale,r)}catch(i){throw ua(t,i.message)}}}return t.\u0275fac=function(e){return new(e||t)(Ei(Su))},t.\u0275pipe=Lt({name:"date",type:t,pure:!0}),t})(),da=(()=>{class t{transform(t){return JSON.stringify(t,null,2)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275pipe=Lt({name:"json",type:t,pure:!1}),t})(),ha=(()=>{class t{}return t.\u0275mod=jt({type:t}),t.\u0275inj=ot({factory:function(e){return new(e||t)},providers:[{provide:ql,useClass:Kl}]}),t})();class fa extends class extends class{}{constructor(){super()}supportsDOMEvents(){return!0}}{static makeCurrent(){var t;t=new fa,ml||(ml=t)}getProperty(t,e){return t[e]}log(t){window.console&&window.console.log&&window.console.log(t)}logGroup(t){window.console&&window.console.group&&window.console.group(t)}logGroupEnd(){window.console&&window.console.groupEnd&&window.console.groupEnd()}onAndCancel(t,e,n){return t.addEventListener(e,n,!1),()=>{t.removeEventListener(e,n,!1)}}dispatchEvent(t,e){t.dispatchEvent(e)}remove(t){return t.parentNode&&t.parentNode.removeChild(t),t}getValue(t){return t.value}createElement(t,e){return(e=e||this.getDefaultDocument()).createElement(t)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(t){return t.nodeType===Node.ELEMENT_NODE}isShadowRoot(t){return t instanceof DocumentFragment}getGlobalEventTarget(t,e){return"window"===e?window:"document"===e?t:"body"===e?t.body:null}getHistory(){return window.history}getLocation(){return window.location}getBaseHref(t){const e=ga||(ga=document.querySelector("base"),ga)?ga.getAttribute("href"):null;return null==e?null:(n=e,pa||(pa=document.createElement("a")),pa.setAttribute("href",n),"/"===pa.pathname.charAt(0)?pa.pathname:"/"+pa.pathname);var n}resetBaseElement(){ga=null}getUserAgent(){return window.navigator.userAgent}performanceNow(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()}supportsCookies(){return!0}getCookie(t){return function(t,e){e=encodeURIComponent(e);for(const n of t.split(";")){const t=n.indexOf("="),[r,o]=-1==t?[n,""]:[n.slice(0,t),n.slice(t+1)];if(r.trim()===e)return decodeURIComponent(o)}return null}(document.cookie,t)}}let pa,ga=null;const ma=new jn("TRANSITION_ID"),_a=[{provide:Eu,useFactory:function(t,e,n){return()=>{n.get(Au).donePromise.then(()=>{const n=_l();Array.prototype.slice.apply(e.querySelectorAll("style[ng-transition]")).filter(e=>e.getAttribute("ng-transition")===t).forEach(t=>n.remove(t))})}},deps:[ma,yl,si],multi:!0}];class ya{static init(){var t;t=new ya,nl=t}addToWindow(t){wt.getAngularTestability=(e,n=!0)=>{const r=t.findTestabilityInTree(e,n);if(null==r)throw new Error("Could not find testability for element.");return r},wt.getAllAngularTestabilities=()=>t.getAllTestabilities(),wt.getAllAngularRootElements=()=>t.getAllRootElements(),wt.frameworkStabilizers||(wt.frameworkStabilizers=[]),wt.frameworkStabilizers.push(t=>{const e=wt.getAllAngularTestabilities();let n=e.length,r=!1;const o=function(e){r=r||e,n--,0==n&&t(r)};e.forEach(function(t){t.whenStable(o)})})}findTestabilityInTree(t,e,n){if(null==e)return null;const r=t.getTestability(e);return null!=r?r:n?_l().isShadowRoot(e)?this.findTestabilityInTree(t,e.host,!0):this.findTestabilityInTree(t,e.parentElement,!0):null}}const Ca=new jn("EventManagerPlugins");let va=(()=>{class t{constructor(t,e){this._zone=e,this._eventNameToPlugin=new Map,t.forEach(t=>t.manager=this),this._plugins=t.slice().reverse()}addEventListener(t,e,n){return this._findPluginFor(e).addEventListener(t,e,n)}addGlobalEventListener(t,e,n){return this._findPluginFor(e).addGlobalEventListener(t,e,n)}getZone(){return this._zone}_findPluginFor(t){const e=this._eventNameToPlugin.get(t);if(e)return e;const n=this._plugins;for(let r=0;r<n.length;r++){const e=n[r];if(e.supports(t))return this._eventNameToPlugin.set(t,e),e}throw new Error("No event manager plugin found for event "+t)}}return t.\u0275fac=function(e){return new(e||t)(rr(Ca),rr(Gu))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();class Da{constructor(t){this._doc=t}addGlobalEventListener(t,e,n){const r=_l().getGlobalEventTarget(this._doc,t);if(!r)throw new Error(`Unsupported event target ${r} for event ${e}`);return this.addEventListener(r,e,n)}}let ba=(()=>{class t{constructor(){this._stylesSet=new Set}addStyles(t){const e=new Set;t.forEach(t=>{this._stylesSet.has(t)||(this._stylesSet.add(t),e.add(t))}),this.onStylesAdded(e)}onStylesAdded(t){}getAllStyles(){return Array.from(this._stylesSet)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})(),wa=(()=>{class t extends ba{constructor(t){super(),this._doc=t,this._hostNodes=new Set,this._styleNodes=new Set,this._hostNodes.add(t.head)}_addStylesToHost(t,e){t.forEach(t=>{const n=this._doc.createElement("style");n.textContent=t,this._styleNodes.add(e.appendChild(n))})}addHost(t){this._addStylesToHost(this._stylesSet,t),this._hostNodes.add(t)}removeHost(t){this._hostNodes.delete(t)}onStylesAdded(t){this._hostNodes.forEach(e=>this._addStylesToHost(t,e))}ngOnDestroy(){this._styleNodes.forEach(t=>_l().remove(t))}}return t.\u0275fac=function(e){return new(e||t)(rr(yl))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();const Ea={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},Aa=/%COMP%/g;function Ma(t,e,n){for(let r=0;r<e.length;r++){let o=e[r];Array.isArray(o)?Ma(t,o,n):(o=o.replace(Aa,t),n.push(o))}return n}function Oa(t){return e=>{if("__ngUnwrap__"===e)return t;!1===t(e)&&(e.preventDefault(),e.returnValue=!1)}}let xa=(()=>{class t{constructor(t,e,n){this.eventManager=t,this.sharedStylesHost=e,this.appId=n,this.rendererByCompId=new Map,this.defaultRenderer=new Fa(t)}createRenderer(t,e){if(!t||!e)return this.defaultRenderer;switch(e.encapsulation){case yt.Emulated:{let n=this.rendererByCompId.get(e.id);return n||(n=new Ta(this.eventManager,this.sharedStylesHost,e,this.appId),this.rendererByCompId.set(e.id,n)),n.applyToHost(t),n}case 1:case yt.ShadowDom:return new Pa(this.eventManager,this.sharedStylesHost,t,e);default:if(!this.rendererByCompId.has(e.id)){const t=Ma(e.id,e.styles,[]);this.sharedStylesHost.addStyles(t),this.rendererByCompId.set(e.id,this.defaultRenderer)}return this.defaultRenderer}}begin(){}end(){}}return t.\u0275fac=function(e){return new(e||t)(rr(va),rr(wa),rr(Mu))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();class Fa{constructor(t){this.eventManager=t,this.data=Object.create(null)}destroy(){}createElement(t,e){return e?document.createElementNS(Ea[e]||e,t):document.createElement(t)}createComment(t){return document.createComment(t)}createText(t){return document.createTextNode(t)}appendChild(t,e){t.appendChild(e)}insertBefore(t,e,n){t&&t.insertBefore(e,n)}removeChild(t,e){t&&t.removeChild(e)}selectRootElement(t,e){let n="string"==typeof t?document.querySelector(t):t;if(!n)throw new Error(`The selector "${t}" did not match any elements`);return e||(n.textContent=""),n}parentNode(t){return t.parentNode}nextSibling(t){return t.nextSibling}setAttribute(t,e,n,r){if(r){e=r+":"+e;const o=Ea[r];o?t.setAttributeNS(o,e,n):t.setAttribute(e,n)}else t.setAttribute(e,n)}removeAttribute(t,e,n){if(n){const r=Ea[n];r?t.removeAttributeNS(r,e):t.removeAttribute(`${n}:${e}`)}else t.removeAttribute(e)}addClass(t,e){t.classList.add(e)}removeClass(t,e){t.classList.remove(e)}setStyle(t,e,n,r){r&(hr.DashCase|hr.Important)?t.style.setProperty(e,n,r&hr.Important?"important":""):t.style[e]=n}removeStyle(t,e,n){n&hr.DashCase?t.style.removeProperty(e):t.style[e]=""}setProperty(t,e,n){t[e]=n}setValue(t,e){t.nodeValue=e}listen(t,e,n){return"string"==typeof t?this.eventManager.addGlobalEventListener(t,e,Oa(n)):this.eventManager.addEventListener(t,e,Oa(n))}}class Ta extends Fa{constructor(t,e,n,r){super(t),this.component=n;const o=Ma(r+"-"+n.id,n.styles,[]);e.addStyles(o),this.contentAttr="_ngcontent-%COMP%".replace(Aa,r+"-"+n.id),this.hostAttr="_nghost-%COMP%".replace(Aa,r+"-"+n.id)}applyToHost(t){super.setAttribute(t,this.hostAttr,"")}createElement(t,e){const n=super.createElement(t,e);return super.setAttribute(n,this.contentAttr,""),n}}class Pa extends Fa{constructor(t,e,n,r){super(t),this.sharedStylesHost=e,this.hostEl=n,this.shadowRoot=n.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const o=Ma(r.id,r.styles,[]);for(let i=0;i<o.length;i++){const t=document.createElement("style");t.textContent=o[i],this.shadowRoot.appendChild(t)}}nodeOrShadowRoot(t){return t===this.hostEl?this.shadowRoot:t}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}appendChild(t,e){return super.appendChild(this.nodeOrShadowRoot(t),e)}insertBefore(t,e,n){return super.insertBefore(this.nodeOrShadowRoot(t),e,n)}removeChild(t,e){return super.removeChild(this.nodeOrShadowRoot(t),e)}parentNode(t){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(t)))}}let ka=(()=>{class t extends Da{constructor(t){super(t)}supports(t){return!0}addEventListener(t,e,n){return t.addEventListener(e,n,!1),()=>this.removeEventListener(t,e,n)}removeEventListener(t,e,n){return t.removeEventListener(e,n)}}return t.\u0275fac=function(e){return new(e||t)(rr(yl))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();const Sa=["alt","control","meta","shift"],Ia={"\b":"Backspace","\t":"Tab","\x7f":"Delete","\x1b":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},Va={A:"1",B:"2",C:"3",D:"4",E:"5",F:"6",G:"7",H:"8",I:"9",J:"*",K:"+",M:"-",N:".",O:"/","`":"0","\x90":"NumLock"},Na={alt:t=>t.altKey,control:t=>t.ctrlKey,meta:t=>t.metaKey,shift:t=>t.shiftKey};let Ba=(()=>{class t extends Da{constructor(t){super(t)}supports(e){return null!=t.parseEventName(e)}addEventListener(e,n,r){const o=t.parseEventName(n),i=t.eventCallback(o.fullKey,r,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>_l().onAndCancel(e,o.domEventName,i))}static parseEventName(e){const n=e.toLowerCase().split("."),r=n.shift();if(0===n.length||"keydown"!==r&&"keyup"!==r)return null;const o=t._normalizeKey(n.pop());let i="";if(Sa.forEach(t=>{const e=n.indexOf(t);e>-1&&(n.splice(e,1),i+=t+".")}),i+=o,0!=n.length||0===o.length)return null;const s={};return s.domEventName=r,s.fullKey=i,s}static getEventFullKey(t){let e="",n=function(t){let e=t.key;if(null==e){if(e=t.keyIdentifier,null==e)return"Unidentified";e.startsWith("U+")&&(e=String.fromCharCode(parseInt(e.substring(2),16)),3===t.location&&Va.hasOwnProperty(e)&&(e=Va[e]))}return Ia[e]||e}(t);return n=n.toLowerCase()," "===n?n="space":"."===n&&(n="dot"),Sa.forEach(r=>{r!=n&&(0,Na[r])(t)&&(e+=r+".")}),e+=n,e}static eventCallback(e,n,r){return o=>{t.getEventFullKey(o)===e&&r.runGuarded(()=>n(o))}}static _normalizeKey(t){switch(t){case"esc":return"escape";default:return t}}}return t.\u0275fac=function(e){return new(e||t)(rr(yl))},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})();const ja=ul(fl,"browser",[{provide:Tu,useValue:"browser"},{provide:Fu,useValue:function(){fa.makeCurrent(),ya.init()},multi:!0},{provide:yl,useFactory:function(){return function(t){ce=t}(document),document},deps:[]}]),Ra=[[],{provide:Uo,useValue:"root"},{provide:lr,useFactory:function(){return new lr},deps:[]},{provide:Ca,useClass:ka,multi:!0,deps:[yl,Gu,Tu]},{provide:Ca,useClass:Ba,multi:!0,deps:[yl]},[],{provide:xa,useClass:xa,deps:[va,wa,Mu]},{provide:Ds,useExisting:xa},{provide:ba,useExisting:wa},{provide:wa,useClass:wa,deps:[yl]},{provide:Qu,useClass:Qu,deps:[Gu]},{provide:va,useClass:va,deps:[Ca,Gu]},[]];let Ha=(()=>{class t{constructor(t){if(t)throw new Error("BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.")}static withServerTransition(e){return{ngModule:t,providers:[{provide:Mu,useValue:e.appId},{provide:ma,useExisting:Mu},_a]}}}return t.\u0275mod=jt({type:t}),t.\u0275inj=ot({factory:function(e){return new(e||t)(rr(t,12))},providers:Ra,imports:[ha,gl]}),t})();function La(t,e){return new y(n=>{const r=t.length;if(0===r)return void n.complete();const o=new Array(r);let i=0,s=0;for(let u=0;u<r;u++){const l=V(t[u]);let a=!1;n.add(l.subscribe({next:t=>{a||(a=!0,s++),o[u]=t},error:t=>n.error(t),complete:()=>{i++,i!==r&&a||(s===r&&n.next(e?e.reduce((t,e,n)=>(t[e]=o[n],t),{}):o),n.complete())}}))}})}"undefined"!=typeof window&&window;const $a=new jn("NgValueAccessor"),za={provide:$a,useExisting:tt(()=>Ya),multi:!0};let Ya=(()=>{class t{constructor(t,e){this._renderer=t,this._elementRef=e,this.onChange=t=>{},this.onTouched=()=>{}}writeValue(t){this._renderer.setProperty(this._elementRef.nativeElement,"checked",t)}registerOnChange(t){this.onChange=t}registerOnTouched(t){this.onTouched=t}setDisabledState(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)}}return t.\u0275fac=function(e){return new(e||t)(Ei(bs),Ei(vs))},t.\u0275dir=Ht({type:t,selectors:[["input","type","checkbox","formControlName",""],["input","type","checkbox","formControl",""],["input","type","checkbox","ngModel",""]],hostBindings:function(t,e){1&t&&Si("change",function(t){return e.onChange(t.target.checked)})("blur",function(){return e.onTouched()})},features:[fs([za])]}),t})();const Ga={provide:$a,useExisting:tt(()=>Za),multi:!0},Ua=new jn("CompositionEventMode");let Za=(()=>{class t{constructor(t,e,n){this._renderer=t,this._elementRef=e,this._compositionMode=n,this.onChange=t=>{},this.onTouched=()=>{},this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function(){const t=_l()?_l().getUserAgent():"";return/android (\d+)/.test(t.toLowerCase())}())}writeValue(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",null==t?"":t)}registerOnChange(t){this.onChange=t}registerOnTouched(t){this.onTouched=t}setDisabledState(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)}_handleInput(t){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(t)}_compositionStart(){this._composing=!0}_compositionEnd(t){this._composing=!1,this._compositionMode&&this.onChange(t)}}return t.\u0275fac=function(e){return new(e||t)(Ei(bs),Ei(vs),Ei(Ua,8))},t.\u0275dir=Ht({type:t,selectors:[["input","formControlName","",3,"type","checkbox"],["textarea","formControlName",""],["input","formControl","",3,"type","checkbox"],["textarea","formControl",""],["input","ngModel","",3,"type","checkbox"],["textarea","ngModel",""],["","ngDefaultControl",""]],hostBindings:function(t,e){1&t&&Si("input",function(t){return e._handleInput(t.target.value)})("blur",function(){return e.onTouched()})("compositionstart",function(){return e._compositionStart()})("compositionend",function(t){return e._compositionEnd(t.target.value)})},features:[fs([Ga])]}),t})();function Wa(t){return null==t||0===t.length}function Ja(t){return null!=t&&"number"==typeof t.length}const qa=new jn("NgValidators"),Ka=new jn("NgAsyncValidators"),Qa=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class Xa{static min(t){return e=>{if(Wa(e.value)||Wa(t))return null;const n=parseFloat(e.value);return!isNaN(n)&&n<t?{min:{min:t,actual:e.value}}:null}}static max(t){return e=>{if(Wa(e.value)||Wa(t))return null;const n=parseFloat(e.value);return!isNaN(n)&&n>t?{max:{max:t,actual:e.value}}:null}}static required(t){return Wa(t.value)?{required:!0}:null}static requiredTrue(t){return!0===t.value?null:{required:!0}}static email(t){return Wa(t.value)||Qa.test(t.value)?null:{email:!0}}static minLength(t){return e=>Wa(e.value)||!Ja(e.value)?null:e.value.length<t?{minlength:{requiredLength:t,actualLength:e.value.length}}:null}static maxLength(t){return e=>Ja(e.value)&&e.value.length>t?{maxlength:{requiredLength:t,actualLength:e.value.length}}:null}static pattern(t){if(!t)return Xa.nullValidator;let e,n;return"string"==typeof t?(n="","^"!==t.charAt(0)&&(n+="^"),n+=t,"$"!==t.charAt(t.length-1)&&(n+="$"),e=new RegExp(n)):(n=t.toString(),e=t),t=>{if(Wa(t.value))return null;const r=t.value;return e.test(r)?null:{pattern:{requiredPattern:n,actualValue:r}}}}static nullValidator(t){return null}static compose(t){if(!t)return null;const e=t.filter(tc);return 0==e.length?null:function(t){return nc(rc(t,e))}}static composeAsync(t){if(!t)return null;const e=t.filter(tc);return 0==e.length?null:function(t){return function(...t){if(1===t.length){const e=t[0];if(l(e))return La(e,null);if(a(e)&&Object.getPrototypeOf(e)===Object.prototype){const t=Object.keys(e);return La(t.map(t=>e[t]),t)}}if("function"==typeof t[t.length-1]){const e=t.pop();return La(t=1===t.length&&l(t[0])?t[0]:t,null).pipe(A(t=>e(...t)))}return La(t,null)}(rc(t,e).map(ec)).pipe(A(nc))}}}function tc(t){return null!=t}function ec(t){const e=ki(t)?V(t):t;return e}function nc(t){let e={};return t.forEach(t=>{e=null!=t?Object.assign(Object.assign({},e),t):e}),0===Object.keys(e).length?null:e}function rc(t,e){return e.map(e=>e(t))}function oc(t){return t.map(t=>function(t){return!t.validate}(t)?t:e=>t.validate(e))}function ic(t){return null!=t?Xa.compose(oc(t)):null}function sc(t){return null!=t?Xa.composeAsync(oc(t)):null}function uc(t,e){return null===t?[e]:Array.isArray(t)?[...t,e]:[t,e]}function lc(t){return t._rawValidators}function ac(t){return t._rawAsyncValidators}let cc=(()=>{class t{constructor(){this._rawValidators=[],this._rawAsyncValidators=[],this._onDestroyCallbacks=[]}get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_setValidators(t){this._rawValidators=t||[],this._composedValidatorFn=ic(this._rawValidators)}_setAsyncValidators(t){this._rawAsyncValidators=t||[],this._composedAsyncValidatorFn=sc(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(t){this._onDestroyCallbacks.push(t)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(t=>t()),this._onDestroyCallbacks=[]}reset(t){this.control&&this.control.reset(t)}hasError(t,e){return!!this.control&&this.control.hasError(t,e)}getError(t,e){return this.control?this.control.getError(t,e):null}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=Ht({type:t}),t})(),dc=(()=>{class t extends cc{get formDirective(){return null}get path(){return null}}return t.\u0275fac=function(e){return hc(e||t)},t.\u0275dir=Ht({type:t,features:[li]}),t})();const hc=Vn(dc);class fc extends cc{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class pc{constructor(t){this._cd=t}get ngClassUntouched(){var t,e,n;return null!==(n=null===(e=null===(t=this._cd)||void 0===t?void 0:t.control)||void 0===e?void 0:e.untouched)&&void 0!==n&&n}get ngClassTouched(){var t,e,n;return null!==(n=null===(e=null===(t=this._cd)||void 0===t?void 0:t.control)||void 0===e?void 0:e.touched)&&void 0!==n&&n}get ngClassPristine(){var t,e,n;return null!==(n=null===(e=null===(t=this._cd)||void 0===t?void 0:t.control)||void 0===e?void 0:e.pristine)&&void 0!==n&&n}get ngClassDirty(){var t,e,n;return null!==(n=null===(e=null===(t=this._cd)||void 0===t?void 0:t.control)||void 0===e?void 0:e.dirty)&&void 0!==n&&n}get ngClassValid(){var t,e,n;return null!==(n=null===(e=null===(t=this._cd)||void 0===t?void 0:t.control)||void 0===e?void 0:e.valid)&&void 0!==n&&n}get ngClassInvalid(){var t,e,n;return null!==(n=null===(e=null===(t=this._cd)||void 0===t?void 0:t.control)||void 0===e?void 0:e.invalid)&&void 0!==n&&n}get ngClassPending(){var t,e,n;return null!==(n=null===(e=null===(t=this._cd)||void 0===t?void 0:t.control)||void 0===e?void 0:e.pending)&&void 0!==n&&n}}let gc=(()=>{class t extends pc{constructor(t){super(t)}}return t.\u0275fac=function(e){return new(e||t)(Ei(fc,2))},t.\u0275dir=Ht({type:t,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(t,e){2&t&&$i("ng-untouched",e.ngClassUntouched)("ng-touched",e.ngClassTouched)("ng-pristine",e.ngClassPristine)("ng-dirty",e.ngClassDirty)("ng-valid",e.ngClassValid)("ng-invalid",e.ngClassInvalid)("ng-pending",e.ngClassPending)},features:[li]}),t})(),mc=(()=>{class t extends pc{constructor(t){super(t)}}return t.\u0275fac=function(e){return new(e||t)(Ei(dc,10))},t.\u0275dir=Ht({type:t,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:14,hostBindings:function(t,e){2&t&&$i("ng-untouched",e.ngClassUntouched)("ng-touched",e.ngClassTouched)("ng-pristine",e.ngClassPristine)("ng-dirty",e.ngClassDirty)("ng-valid",e.ngClassValid)("ng-invalid",e.ngClassInvalid)("ng-pending",e.ngClassPending)},features:[li]}),t})();const _c={provide:$a,useExisting:tt(()=>yc),multi:!0};let yc=(()=>{class t{constructor(t,e){this._renderer=t,this._elementRef=e,this.onChange=t=>{},this.onTouched=()=>{}}writeValue(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",null==t?"":t)}registerOnChange(t){this.onChange=e=>{t(""==e?null:parseFloat(e))}}registerOnTouched(t){this.onTouched=t}setDisabledState(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)}}return t.\u0275fac=function(e){return new(e||t)(Ei(bs),Ei(vs))},t.\u0275dir=Ht({type:t,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(t,e){1&t&&Si("input",function(t){return e.onChange(t.target.value)})("blur",function(){return e.onTouched()})},features:[fs([_c])]}),t})();const Cc={provide:$a,useExisting:tt(()=>Dc),multi:!0};let vc=(()=>{class t{constructor(){this._accessors=[]}add(t,e){this._accessors.push([t,e])}remove(t){for(let e=this._accessors.length-1;e>=0;--e)if(this._accessors[e][1]===t)return void this._accessors.splice(e,1)}select(t){this._accessors.forEach(e=>{this._isSameGroup(e,t)&&e[1]!==t&&e[1].fireUncheck(t.value)})}_isSameGroup(t,e){return!!t[0].control&&t[0]._parent===e._control._parent&&t[1].name===e.name}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})(),Dc=(()=>{class t{constructor(t,e,n,r){this._renderer=t,this._elementRef=e,this._registry=n,this._injector=r,this.onChange=()=>{},this.onTouched=()=>{}}ngOnInit(){this._control=this._injector.get(fc),this._checkName(),this._registry.add(this._control,this)}ngOnDestroy(){this._registry.remove(this)}writeValue(t){this._state=t===this.value,this._renderer.setProperty(this._elementRef.nativeElement,"checked",this._state)}registerOnChange(t){this._fn=t,this.onChange=()=>{t(this.value),this._registry.select(this)}}fireUncheck(t){this.writeValue(t)}registerOnTouched(t){this.onTouched=t}setDisabledState(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)}_checkName(){!this.name&&this.formControlName&&(this.name=this.formControlName)}}return t.\u0275fac=function(e){return new(e||t)(Ei(bs),Ei(vs),Ei(vc),Ei(si))},t.\u0275dir=Ht({type:t,selectors:[["input","type","radio","formControlName",""],["input","type","radio","formControl",""],["input","type","radio","ngModel",""]],hostBindings:function(t,e){1&t&&Si("change",function(){return e.onChange()})("blur",function(){return e.onTouched()})},inputs:{name:"name",formControlName:"formControlName",value:"value"},features:[fs([Cc])]}),t})();const bc={provide:$a,useExisting:tt(()=>wc),multi:!0};let wc=(()=>{class t{constructor(t,e){this._renderer=t,this._elementRef=e,this.onChange=t=>{},this.onTouched=()=>{}}writeValue(t){this._renderer.setProperty(this._elementRef.nativeElement,"value",parseFloat(t))}registerOnChange(t){this.onChange=e=>{t(""==e?null:parseFloat(e))}}registerOnTouched(t){this.onTouched=t}setDisabledState(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)}}return t.\u0275fac=function(e){return new(e||t)(Ei(bs),Ei(vs))},t.\u0275dir=Ht({type:t,selectors:[["input","type","range","formControlName",""],["input","type","range","formControl",""],["input","type","range","ngModel",""]],hostBindings:function(t,e){1&t&&Si("change",function(t){return e.onChange(t.target.value)})("input",function(t){return e.onChange(t.target.value)})("blur",function(){return e.onTouched()})},features:[fs([bc])]}),t})();const Ec={provide:$a,useExisting:tt(()=>Mc),multi:!0};function Ac(t,e){return null==t?""+e:(e&&"object"==typeof e&&(e="Object"),`${t}: ${e}`.slice(0,50))}let Mc=(()=>{class t{constructor(t,e){this._renderer=t,this._elementRef=e,this._optionMap=new Map,this._idCounter=0,this.onChange=t=>{},this.onTouched=()=>{},this._compareWith=Object.is}set compareWith(t){this._compareWith=t}writeValue(t){this.value=t;const e=this._getOptionId(t);null==e&&this._renderer.setProperty(this._elementRef.nativeElement,"selectedIndex",-1);const n=Ac(e,t);this._renderer.setProperty(this._elementRef.nativeElement,"value",n)}registerOnChange(t){this.onChange=e=>{this.value=this._getOptionValue(e),t(this.value)}}registerOnTouched(t){this.onTouched=t}setDisabledState(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)}_registerOption(){return(this._idCounter++).toString()}_getOptionId(t){for(const e of Array.from(this._optionMap.keys()))if(this._compareWith(this._optionMap.get(e),t))return e;return null}_getOptionValue(t){const e=function(t){return t.split(":")[0]}(t);return this._optionMap.has(e)?this._optionMap.get(e):t}}return t.\u0275fac=function(e){return new(e||t)(Ei(bs),Ei(vs))},t.\u0275dir=Ht({type:t,selectors:[["select","formControlName","",3,"multiple",""],["select","formControl","",3,"multiple",""],["select","ngModel","",3,"multiple",""]],hostBindings:function(t,e){1&t&&Si("change",function(t){return e.onChange(t.target.value)})("blur",function(){return e.onTouched()})},inputs:{compareWith:"compareWith"},features:[fs([Ec])]}),t})(),Oc=(()=>{class t{constructor(t,e,n){this._element=t,this._renderer=e,this._select=n,this._select&&(this.id=this._select._registerOption())}set ngValue(t){null!=this._select&&(this._select._optionMap.set(this.id,t),this._setElementValue(Ac(this.id,t)),this._select.writeValue(this._select.value))}set value(t){this._setElementValue(t),this._select&&this._select.writeValue(this._select.value)}_setElementValue(t){this._renderer.setProperty(this._element.nativeElement,"value",t)}ngOnDestroy(){this._select&&(this._select._optionMap.delete(this.id),this._select.writeValue(this._select.value))}}return t.\u0275fac=function(e){return new(e||t)(Ei(vs),Ei(bs),Ei(Mc,9))},t.\u0275dir=Ht({type:t,selectors:[["option"]],inputs:{ngValue:"ngValue",value:"value"}}),t})();const xc={provide:$a,useExisting:tt(()=>Tc),multi:!0};function Fc(t,e){return null==t?""+e:("string"==typeof e&&(e=`'${e}'`),e&&"object"==typeof e&&(e="Object"),`${t}: ${e}`.slice(0,50))}let Tc=(()=>{class t{constructor(t,e){this._renderer=t,this._elementRef=e,this._optionMap=new Map,this._idCounter=0,this.onChange=t=>{},this.onTouched=()=>{},this._compareWith=Object.is}set compareWith(t){this._compareWith=t}writeValue(t){let e;if(this.value=t,Array.isArray(t)){const n=t.map(t=>this._getOptionId(t));e=(t,e)=>{t._setSelected(n.indexOf(e.toString())>-1)}}else e=(t,e)=>{t._setSelected(!1)};this._optionMap.forEach(e)}registerOnChange(t){this.onChange=e=>{const n=[];if(void 0!==e.selectedOptions){const t=e.selectedOptions;for(let e=0;e<t.length;e++){const r=t.item(e),o=this._getOptionValue(r.value);n.push(o)}}else{const t=e.options;for(let e=0;e<t.length;e++){const r=t.item(e);if(r.selected){const t=this._getOptionValue(r.value);n.push(t)}}}this.value=n,t(n)}}registerOnTouched(t){this.onTouched=t}setDisabledState(t){this._renderer.setProperty(this._elementRef.nativeElement,"disabled",t)}_registerOption(t){const e=(this._idCounter++).toString();return this._optionMap.set(e,t),e}_getOptionId(t){for(const e of Array.from(this._optionMap.keys()))if(this._compareWith(this._optionMap.get(e)._value,t))return e;return null}_getOptionValue(t){const e=function(t){return t.split(":")[0]}(t);return this._optionMap.has(e)?this._optionMap.get(e)._value:t}}return t.\u0275fac=function(e){return new(e||t)(Ei(bs),Ei(vs))},t.\u0275dir=Ht({type:t,selectors:[["select","multiple","","formControlName",""],["select","multiple","","formControl",""],["select","multiple","","ngModel",""]],hostBindings:function(t,e){1&t&&Si("change",function(t){return e.onChange(t.target)})("blur",function(){return e.onTouched()})},inputs:{compareWith:"compareWith"},features:[fs([xc])]}),t})(),Pc=(()=>{class t{constructor(t,e,n){this._element=t,this._renderer=e,this._select=n,this._select&&(this.id=this._select._registerOption(this))}set ngValue(t){null!=this._select&&(this._value=t,this._setElementValue(Fc(this.id,t)),this._select.writeValue(this._select.value))}set value(t){this._select?(this._value=t,this._setElementValue(Fc(this.id,t)),this._select.writeValue(this._select.value)):this._setElementValue(t)}_setElementValue(t){this._renderer.setProperty(this._element.nativeElement,"value",t)}_setSelected(t){this._renderer.setProperty(this._element.nativeElement,"selected",t)}ngOnDestroy(){this._select&&(this._select._optionMap.delete(this.id),this._select.writeValue(this._select.value))}}return t.\u0275fac=function(e){return new(e||t)(Ei(vs),Ei(bs),Ei(Tc,9))},t.\u0275dir=Ht({type:t,selectors:[["option"]],inputs:{ngValue:"ngValue",value:"value"}}),t})();function kc(t,e){Ic(t,e,!0),e.valueAccessor.writeValue(t.value),function(t,e){e.valueAccessor.registerOnChange(n=>{t._pendingValue=n,t._pendingChange=!0,t._pendingDirty=!0,"change"===t.updateOn&&Nc(t,e)})}(t,e),function(t,e){const n=(t,n)=>{e.valueAccessor.writeValue(t),n&&e.viewToModelUpdate(t)};t.registerOnChange(n),e._registerOnDestroy(()=>{t._unregisterOnChange(n)})}(t,e),function(t,e){e.valueAccessor.registerOnTouched(()=>{t._pendingTouched=!0,"blur"===t.updateOn&&t._pendingChange&&Nc(t,e),"submit"!==t.updateOn&&t.markAsTouched()})}(t,e),function(t,e){if(e.valueAccessor.setDisabledState){const n=t=>{e.valueAccessor.setDisabledState(t)};t.registerOnDisabledChange(n),e._registerOnDestroy(()=>{t._unregisterOnDisabledChange(n)})}}(t,e)}function Sc(t,e){t.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(e)})}function Ic(t,e,n){const r=lc(t);null!==e.validator?t.setValidators(uc(r,e.validator)):"function"==typeof r&&t.setValidators([r]);const o=ac(t);if(null!==e.asyncValidator?t.setAsyncValidators(uc(o,e.asyncValidator)):"function"==typeof o&&t.setAsyncValidators([o]),n){const n=()=>t.updateValueAndValidity();Sc(e._rawValidators,n),Sc(e._rawAsyncValidators,n)}}function Vc(t,e,n){if(null!==t){if(null!==e.validator){const n=lc(t);Array.isArray(n)&&n.length>0&&t.setValidators(n.filter(t=>t!==e.validator))}if(null!==e.asyncValidator){const n=ac(t);Array.isArray(n)&&n.length>0&&t.setAsyncValidators(n.filter(t=>t!==e.asyncValidator))}}if(n){const t=()=>{};Sc(e._rawValidators,t),Sc(e._rawAsyncValidators,t)}}function Nc(t,e){t._pendingDirty&&t.markAsDirty(),t.setValue(t._pendingValue,{emitModelToViewChange:!1}),e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1}function Bc(t,e){Ic(t,e,!1)}const jc=[Ya,wc,yc,Mc,Tc,Dc];function Rc(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const Hc="VALID",Lc="INVALID",$c="PENDING",zc="DISABLED";function Yc(t){return(Wc(t)?t.validators:t)||null}function Gc(t){return Array.isArray(t)?ic(t):t||null}function Uc(t,e){return(Wc(e)?e.asyncValidators:t)||null}function Zc(t){return Array.isArray(t)?sc(t):t||null}function Wc(t){return null!=t&&!Array.isArray(t)&&"object"==typeof t}class Jc{constructor(t,e){this._hasOwnPendingAsyncValidator=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._onDisabledChange=[],this._rawValidators=t,this._rawAsyncValidators=e,this._composedValidatorFn=Gc(this._rawValidators),this._composedAsyncValidatorFn=Zc(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn}set validator(t){this._rawValidators=this._composedValidatorFn=t}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(t){this._rawAsyncValidators=this._composedAsyncValidatorFn=t}get parent(){return this._parent}get valid(){return this.status===Hc}get invalid(){return this.status===Lc}get pending(){return this.status==$c}get disabled(){return this.status===zc}get enabled(){return this.status!==zc}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(t){this._rawValidators=t,this._composedValidatorFn=Gc(t)}setAsyncValidators(t){this._rawAsyncValidators=t,this._composedAsyncValidatorFn=Zc(t)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(t={}){this.touched=!0,this._parent&&!t.onlySelf&&this._parent.markAsTouched(t)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(t=>t.markAllAsTouched())}markAsUntouched(t={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(t=>{t.markAsUntouched({onlySelf:!0})}),this._parent&&!t.onlySelf&&this._parent._updateTouched(t)}markAsDirty(t={}){this.pristine=!1,this._parent&&!t.onlySelf&&this._parent.markAsDirty(t)}markAsPristine(t={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(t=>{t.markAsPristine({onlySelf:!0})}),this._parent&&!t.onlySelf&&this._parent._updatePristine(t)}markAsPending(t={}){this.status=$c,!1!==t.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!t.onlySelf&&this._parent.markAsPending(t)}disable(t={}){const e=this._parentMarkedDirty(t.onlySelf);this.status=zc,this.errors=null,this._forEachChild(e=>{e.disable(Object.assign(Object.assign({},t),{onlySelf:!0}))}),this._updateValue(),!1!==t.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},t),{skipPristineCheck:e})),this._onDisabledChange.forEach(t=>t(!0))}enable(t={}){const e=this._parentMarkedDirty(t.onlySelf);this.status=Hc,this._forEachChild(e=>{e.enable(Object.assign(Object.assign({},t),{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:t.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},t),{skipPristineCheck:e})),this._onDisabledChange.forEach(t=>t(!1))}_updateAncestors(t){this._parent&&!t.onlySelf&&(this._parent.updateValueAndValidity(t),t.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(t){this._parent=t}updateValueAndValidity(t={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),this.status!==Hc&&this.status!==$c||this._runAsyncValidator(t.emitEvent)),!1!==t.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!t.onlySelf&&this._parent.updateValueAndValidity(t)}_updateTreeValidity(t={emitEvent:!0}){this._forEachChild(e=>e._updateTreeValidity(t)),this.updateValueAndValidity({onlySelf:!0,emitEvent:t.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?zc:Hc}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(t){if(this.asyncValidator){this.status=$c,this._hasOwnPendingAsyncValidator=!0;const e=ec(this.asyncValidator(this));this._asyncValidationSubscription=e.subscribe(e=>{this._hasOwnPendingAsyncValidator=!1,this.setErrors(e,{emitEvent:t})})}}_cancelExistingSubscription(){this._asyncValidationSubscription&&(this._asyncValidationSubscription.unsubscribe(),this._hasOwnPendingAsyncValidator=!1)}setErrors(t,e={}){this.errors=t,this._updateControlsErrors(!1!==e.emitEvent)}get(t){return function(t,e,n){if(null==e)return null;if(Array.isArray(e)||(e=e.split(".")),Array.isArray(e)&&0===e.length)return null;let r=t;return e.forEach(t=>{r=r instanceof Kc?r.controls.hasOwnProperty(t)?r.controls[t]:null:r instanceof Qc&&r.at(t)||null}),r}(this,t)}getError(t,e){const n=e?this.get(e):this;return n&&n.errors?n.errors[t]:null}hasError(t,e){return!!this.getError(t,e)}get root(){let t=this;for(;t._parent;)t=t._parent;return t}_updateControlsErrors(t){this.status=this._calculateStatus(),t&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(t)}_initObservables(){this.valueChanges=new bu,this.statusChanges=new bu}_calculateStatus(){return this._allControlsDisabled()?zc:this.errors?Lc:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus($c)?$c:this._anyControlsHaveStatus(Lc)?Lc:Hc}_anyControlsHaveStatus(t){return this._anyControls(e=>e.status===t)}_anyControlsDirty(){return this._anyControls(t=>t.dirty)}_anyControlsTouched(){return this._anyControls(t=>t.touched)}_updatePristine(t={}){this.pristine=!this._anyControlsDirty(),this._parent&&!t.onlySelf&&this._parent._updatePristine(t)}_updateTouched(t={}){this.touched=this._anyControlsTouched(),this._parent&&!t.onlySelf&&this._parent._updateTouched(t)}_isBoxedValue(t){return"object"==typeof t&&null!==t&&2===Object.keys(t).length&&"value"in t&&"disabled"in t}_registerOnCollectionChange(t){this._onCollectionChange=t}_setUpdateStrategy(t){Wc(t)&&null!=t.updateOn&&(this._updateOn=t.updateOn)}_parentMarkedDirty(t){return!t&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}}class qc extends Jc{constructor(t=null,e,n){super(Yc(e),Uc(n,e)),this._onChange=[],this._applyFormState(t),this._setUpdateStrategy(e),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!n})}setValue(t,e={}){this.value=this._pendingValue=t,this._onChange.length&&!1!==e.emitModelToViewChange&&this._onChange.forEach(t=>t(this.value,!1!==e.emitViewToModelChange)),this.updateValueAndValidity(e)}patchValue(t,e={}){this.setValue(t,e)}reset(t=null,e={}){this._applyFormState(t),this.markAsPristine(e),this.markAsUntouched(e),this.setValue(this.value,e),this._pendingChange=!1}_updateValue(){}_anyControls(t){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(t){this._onChange.push(t)}_unregisterOnChange(t){Rc(this._onChange,t)}registerOnDisabledChange(t){this._onDisabledChange.push(t)}_unregisterOnDisabledChange(t){Rc(this._onDisabledChange,t)}_forEachChild(t){}_syncPendingControls(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(t){this._isBoxedValue(t)?(this.value=this._pendingValue=t.value,t.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=t}}class Kc extends Jc{constructor(t,e,n){super(Yc(e),Uc(n,e)),this.controls=t,this._initObservables(),this._setUpdateStrategy(e),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!n})}registerControl(t,e){return this.controls[t]?this.controls[t]:(this.controls[t]=e,e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange),e)}addControl(t,e){this.registerControl(t,e),this.updateValueAndValidity(),this._onCollectionChange()}removeControl(t){this.controls[t]&&this.controls[t]._registerOnCollectionChange(()=>{}),delete this.controls[t],this.updateValueAndValidity(),this._onCollectionChange()}setControl(t,e){this.controls[t]&&this.controls[t]._registerOnCollectionChange(()=>{}),delete this.controls[t],e&&this.registerControl(t,e),this.updateValueAndValidity(),this._onCollectionChange()}contains(t){return this.controls.hasOwnProperty(t)&&this.controls[t].enabled}setValue(t,e={}){this._checkAllValuesPresent(t),Object.keys(t).forEach(n=>{this._throwIfControlMissing(n),this.controls[n].setValue(t[n],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)}patchValue(t,e={}){Object.keys(t).forEach(n=>{this.controls[n]&&this.controls[n].patchValue(t[n],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)}reset(t={},e={}){this._forEachChild((n,r)=>{n.reset(t[r],{onlySelf:!0,emitEvent:e.emitEvent})}),this._updatePristine(e),this._updateTouched(e),this.updateValueAndValidity(e)}getRawValue(){return this._reduceChildren({},(t,e,n)=>(t[n]=e instanceof qc?e.value:e.getRawValue(),t))}_syncPendingControls(){let t=this._reduceChildren(!1,(t,e)=>!!e._syncPendingControls()||t);return t&&this.updateValueAndValidity({onlySelf:!0}),t}_throwIfControlMissing(t){if(!Object.keys(this.controls).length)throw new Error("\n There are no form controls registered with this group yet. If you're using ngModel,\n you may want to check next tick (e.g. use setTimeout).\n ");if(!this.controls[t])throw new Error(`Cannot find form control with name: ${t}.`)}_forEachChild(t){Object.keys(this.controls).forEach(e=>t(this.controls[e],e))}_setUpControls(){this._forEachChild(t=>{t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(t){for(const e of Object.keys(this.controls)){const n=this.controls[e];if(this.contains(e)&&t(n))return!0}return!1}_reduceValue(){return this._reduceChildren({},(t,e,n)=>((e.enabled||this.disabled)&&(t[n]=e.value),t))}_reduceChildren(t,e){let n=t;return this._forEachChild((t,r)=>{n=e(n,t,r)}),n}_allControlsDisabled(){for(const t of Object.keys(this.controls))if(this.controls[t].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_checkAllValuesPresent(t){this._forEachChild((e,n)=>{if(void 0===t[n])throw new Error(`Must supply a value for form control with name: '${n}'.`)})}}class Qc extends Jc{constructor(t,e,n){super(Yc(e),Uc(n,e)),this.controls=t,this._initObservables(),this._setUpdateStrategy(e),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!n})}at(t){return this.controls[t]}push(t){this.controls.push(t),this._registerControl(t),this.updateValueAndValidity(),this._onCollectionChange()}insert(t,e){this.controls.splice(t,0,e),this._registerControl(e),this.updateValueAndValidity()}removeAt(t){this.controls[t]&&this.controls[t]._registerOnCollectionChange(()=>{}),this.controls.splice(t,1),this.updateValueAndValidity()}setControl(t,e){this.controls[t]&&this.controls[t]._registerOnCollectionChange(()=>{}),this.controls.splice(t,1),e&&(this.controls.splice(t,0,e),this._registerControl(e)),this.updateValueAndValidity(),this._onCollectionChange()}get length(){return this.controls.length}setValue(t,e={}){this._checkAllValuesPresent(t),t.forEach((t,n)=>{this._throwIfControlMissing(n),this.at(n).setValue(t,{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)}patchValue(t,e={}){t.forEach((t,n)=>{this.at(n)&&this.at(n).patchValue(t,{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)}reset(t=[],e={}){this._forEachChild((n,r)=>{n.reset(t[r],{onlySelf:!0,emitEvent:e.emitEvent})}),this._updatePristine(e),this._updateTouched(e),this.updateValueAndValidity(e)}getRawValue(){return this.controls.map(t=>t instanceof qc?t.value:t.getRawValue())}clear(){this.controls.length<1||(this._forEachChild(t=>t._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity())}_syncPendingControls(){let t=this.controls.reduce((t,e)=>!!e._syncPendingControls()||t,!1);return t&&this.updateValueAndValidity({onlySelf:!0}),t}_throwIfControlMissing(t){if(!this.controls.length)throw new Error("\n There are no form controls registered with this array yet. If you're using ngModel,\n you may want to check next tick (e.g. use setTimeout).\n ");if(!this.at(t))throw new Error("Cannot find form control at index "+t)}_forEachChild(t){this.controls.forEach((e,n)=>{t(e,n)})}_updateValue(){this.value=this.controls.filter(t=>t.enabled||this.disabled).map(t=>t.value)}_anyControls(t){return this.controls.some(e=>e.enabled&&t(e))}_setUpControls(){this._forEachChild(t=>this._registerControl(t))}_checkAllValuesPresent(t){this._forEachChild((e,n)=>{if(void 0===t[n])throw new Error(`Must supply a value for form control at index: ${n}.`)})}_allControlsDisabled(){for(const t of this.controls)if(t.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(t){t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange)}}let Xc=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=Ht({type:t,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]}),t})();const td=new jn("NgModelWithFormControlWarning"),ed={provide:dc,useExisting:tt(()=>nd)};let nd=(()=>{class t extends dc{constructor(t,e){super(),this.validators=t,this.asyncValidators=e,this.submitted=!1,this.directives=[],this.form=null,this.ngSubmit=new bu,this._setValidators(t),this._setAsyncValidators(e)}ngOnChanges(t){this._checkFormPresent(),t.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(t){const e=this.form.get(t.path);return kc(e,t),e.updateValueAndValidity({emitEvent:!1}),this.directives.push(t),e}getControl(t){return this.form.get(t.path)}removeControl(t){Rc(this.directives,t)}addFormGroup(t){const e=this.form.get(t.path);Bc(e,t),e.updateValueAndValidity({emitEvent:!1})}removeFormGroup(t){}getFormGroup(t){return this.form.get(t.path)}addFormArray(t){const e=this.form.get(t.path);Bc(e,t),e.updateValueAndValidity({emitEvent:!1})}removeFormArray(t){}getFormArray(t){return this.form.get(t.path)}updateModel(t,e){this.form.get(t.path).setValue(e)}onSubmit(t){return this.submitted=!0,e=this.directives,this.form._syncPendingControls(),e.forEach(t=>{const e=t.control;"submit"===e.updateOn&&e._pendingChange&&(t.viewToModelUpdate(e._pendingValue),e._pendingChange=!1)}),this.ngSubmit.emit(t),!1;var e}onReset(){this.resetForm()}resetForm(t){this.form.reset(t),this.submitted=!1}_updateDomValue(){this.directives.forEach(t=>{const e=this.form.get(t.path);t.control!==e&&(function(t,e){const n=()=>{};e.valueAccessor.registerOnChange(n),e.valueAccessor.registerOnTouched(n),Vc(t,e,!0),t&&(e._invokeOnDestroyCallbacks(),t._registerOnCollectionChange(()=>{}))}(t.control||null,t),e&&kc(e,t),t.control=e)}),this.form._updateTreeValidity({emitEvent:!1})}_updateRegistrations(){this.form._registerOnCollectionChange(()=>this._updateDomValue()),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){Ic(this.form,this,!1),this._oldForm&&Vc(this._oldForm,this,!1)}_checkFormPresent(){}}return t.\u0275fac=function(e){return new(e||t)(Ei(qa,10),Ei(Ka,10))},t.\u0275dir=Ht({type:t,selectors:[["","formGroup",""]],hostBindings:function(t,e){1&t&&Si("submit",function(t){return e.onSubmit(t)})("reset",function(){return e.onReset()})},inputs:{form:["formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[fs([ed]),li,oe]}),t})();const rd={provide:fc,useExisting:tt(()=>od)};let od=(()=>{class t extends fc{constructor(t,e,n,r,o){super(),this._ngModelWarningConfig=o,this._added=!1,this.update=new bu,this._ngModelWarningSent=!1,this._parent=t,this._setValidators(e),this._setAsyncValidators(n),this.valueAccessor=function(t,e){if(!e)return null;Array.isArray(e);let n=void 0,r=void 0,o=void 0;return e.forEach(t=>{var e;t.constructor===Za?n=t:(e=t,jc.some(t=>e.constructor===t)?r=t:o=t)}),o||r||n||null}(0,r)}set isDisabled(t){}ngOnChanges(t){this._added||this._setUpControl(),function(t,e){if(!t.hasOwnProperty("model"))return!1;const n=t.model;return!!n.isFirstChange()||!Object.is(e,n.currentValue)}(t,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(t){this.viewModel=t,this.update.emit(t)}get path(){return t=null==this.name?this.name:this.name.toString(),[...this._parent.path,t];var t}get formDirective(){return this._parent?this._parent.formDirective:null}_checkParentType(){}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}}return t.\u0275fac=function(e){return new(e||t)(Ei(dc,13),Ei(qa,10),Ei(Ka,10),Ei($a,10),Ei(td,8))},t.\u0275dir=Ht({type:t,selectors:[["","formControlName",""]],inputs:{isDisabled:["disabled","isDisabled"],name:["formControlName","name"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},features:[fs([rd]),li,oe]}),t._ngModelWarningSentOnce=!1,t})(),id=(()=>{class t{}return t.\u0275mod=jt({type:t}),t.\u0275inj=ot({factory:function(e){return new(e||t)}}),t})(),sd=(()=>{class t{group(t,e=null){const n=this._reduceControls(t);let r=null,o=null,i=void 0;return null!=e&&(function(t){return void 0!==t.asyncValidators||void 0!==t.validators||void 0!==t.updateOn}(e)?(r=null!=e.validators?e.validators:null,o=null!=e.asyncValidators?e.asyncValidators:null,i=null!=e.updateOn?e.updateOn:void 0):(r=null!=e.validator?e.validator:null,o=null!=e.asyncValidator?e.asyncValidator:null)),new Kc(n,{asyncValidators:o,updateOn:i,validators:r})}control(t,e,n){return new qc(t,e,n)}array(t,e,n){const r=t.map(t=>this._createControl(t));return new Qc(r,e,n)}_reduceControls(t){const e={};return Object.keys(t).forEach(n=>{e[n]=this._createControl(t[n])}),e}_createControl(t){return t instanceof qc||t instanceof Kc||t instanceof Qc?t:Array.isArray(t)?this.control(t[0],t.length>1?t[1]:null,t.length>2?t[2]:null):this.control(t)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=rt({token:t,factory:t.\u0275fac}),t})(),ud=(()=>{class t{static withConfig(e){return{ngModule:t,providers:[{provide:td,useValue:e.warnOnNgModelWithFormControl}]}}}return t.\u0275mod=jt({type:t}),t.\u0275inj=ot({factory:function(e){return new(e||t)},providers:[sd,vc],imports:[id]}),t})();class ld extends w{constructor(t){super(),this._value=t}get value(){return this.getValue()}_subscribe(t){const e=super._subscribe(t);return e&&!e.closed&&t.next(this._value),e}getValue(){if(this.hasError)throw this.thrownError;if(this.closed)throw new v;return this._value}next(t){super.next(this._value=t)}}var ad=n("1IWC"),cd=n.n(ad),dd=n("Hfs6"),hd=n.n(dd),fd=n("VLs4"),pd=n.n(fd),gd=n("2Yyj"),md=n.n(gd);let _d=["en","it","fr","de","es"],yd={en:{code:"en-US",fullDate:"MM/dd/yyyy h:mm a",dayMonthYear:"dd MMMM yyyy",monthYear:"MMMM yyyy",year:"yyyy",hoursMinutes:"hh:mm a"},it:{code:"it-IT",fullDate:"dd/MM/yyyy H:mm",dayMonthYear:"dd MMMM yyyy",monthYear:"MMMM yyyy",year:"yyyy",hoursMinutes:"HH:mm"},fr:{code:"fr-FR",fullDate:"dd/MM/yyyy H:mm",dayMonthYear:"dd MMMM yyyy",monthYear:"MMMM yyyy",year:"yyyy",hoursMinutes:"HH:mm"},de:{code:"de",fullDate:"dd/MM/yyyy H:mm",dayMonthYear:"dd MMMM yyyy",monthYear:"MMMM yyyy",year:"yyyy",hoursMinutes:"HH:mm"},es:{code:"es",fullDate:"dd/MM/yyyy H:mm",dayMonthYear:"dd MMMM yyyy",monthYear:"MMMM yyyy",year:"yyyy",hoursMinutes:"HH:mm"}};var Cd=function(t){return t.DAY_MONTH_YEAR="DAY_MONTH_YEAR",t.FULL_DATE="FULL_DATE",t.MONTH_YEAR="MONTH_YEAR",t.HOURS_MINUTES="HOURS_MINUTES",t.YEAR="YEAR",t}({});let vd={MONTH_YEAR:"monthYear",YEAR:"year",HOURS_MINUTES:"hoursMinutes",FULL_DATE:"fullDate",DAY_MONTH_YEAR:"dayMonthYear"};var Dd=function(t){return t.YEAR="YEAR",t.MONTH_YEAR="MONTH_YEAR",t.DAY_MONTH_YEAR="DAY_MONTH_YEAR",t}({});let bd={YEAR:["getFullYear"],MONTH_YEAR:["getFullYear","getMonth"],DAY_MONTH_YEAR:["getFullYear","getMonth","getDate"]},wd={YEAR:Cd.YEAR,MONTH_YEAR:Cd.MONTH_YEAR,DAY_MONTH_YEAR:Cd.DAY_MONTH_YEAR};var Ed=function(t){return t.ALL="ALL",t.ON_DIFFERENT_HMS="ON_DIFFERENT_HMS",t.ON_DIFFERENT_DAY="ON_DIFFERENT_DAY",t.ON_DIFFERENT_MONTH="ON_DIFFERENT_MONTH",t}({});let Ad={ON_DIFFERENT_MONTH:["getFullYear","getMonth"],ON_DIFFERENT_DAY:["getFullYear","getMonth","getDate"],ON_DIFFERENT_HMS:["getFullYear","getMonth","getDate","getHours","getMinutes","getSeconds"]};var Md=function(t){return t.ON_LEFT="ON_LEFT",t.ON_RIGHT="ON_RIGHT",t}({});function Od(t,e){1&t&&Fi(0,"div",6)}function xd(t,e){1&t&&Ti(0)}function Fd(t,e){1&t&&Fi(0,"div",7)}function Td(t,e){if(1&t&&(Oi(0,"div",16),Oi(1,"div"),Oi(2,"p"),Zi(3),xi(),xi(),Oi(4,"div"),Oi(5,"p",17),Zi(6),xi(),xi(),Oi(7,"div"),Oi(8,"p"),Zi(9),xi(),xi(),xi()),2&t){const t=e.ngIf;Wr(3),Wi(null==t?null:t.month),Wr(3),Wi(null==t?null:t.day),Wr(3),Wi(null==t?null:t.year)}}const Pd=function(t){return{reverse:t}};function kd(t,e){if(1&t&&(Oi(0,"div",8),Oi(1,"div",9),Oi(2,"div",10),Oi(3,"div",11),Zi(4),_u(5,"titlecase"),xi(),xi(),Oi(6,"div",12),Oi(7,"p",13),Zi(8),xi(),xi(),xi(),Oi(9,"div",14),Fi(10,"hr"),xi(),bi(11,Td,10,3,"div",15),xi()),2&t){const t=e.event,n=Ni();Ai("ngClass",hu(6,Pd,n.colSidePosition===n.ngxTimelineItemPosition.ON_LEFT)),Wr(4),Wi(yu(5,4,null==t||null==t.eventInfo?null:t.eventInfo.title)),Wr(4),Wi(null==t||null==t.eventInfo?null:t.eventInfo.description),Wr(3),Ai("ngIf",n.getDateObj())}}const Sd=function(t){return{enableAnimation:t}},Id=function(t){return{event:t}};let Vd=(()=>{class t{constructor(){this.enableAnimation=!0,this.clickEmitter=new ld(null),this.ngxTimelineItemPosition=Md,this.monthAbbr="MMM",this.dayFormat="dd"}getDateObj(){var t,e;let n,r,o;const i=null===(e=null===(t=this.event)||void 0===t?void 0:t.eventInfo)||void 0===e?void 0:e.timestamp;if(i){const t=new Date(i),e=this.getLangCode();r=new ca(e).transform(t,this.monthAbbr),n=new ca(e).transform(t,this.dayFormat),o=t.getFullYear()}return{day:n,month:r,year:o}}getLangCode(){return this.langCode&&_d.includes(this.langCode)?this.langCode:_d[0]}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=It({type:t,selectors:[["ngx-timeline-event"]],inputs:{event:"event",colSidePosition:"colSidePosition",langCode:"langCode",innerEventCustomTemplate:"innerEventCustomTemplate",enableAnimation:"enableAnimation"},outputs:{clickEmitter:"clickEmitter"},decls:7,vars:9,consts:[[1,"event-wrapper-container",3,"click"],["class","arrow left",4,"ngIf"],[1,"event",3,"ngClass"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["class","arrow right",4,"ngIf"],["innerEventContainer",""],[1,"arrow","left"],[1,"arrow","right"],[1,"event-container",3,"ngClass"],[1,"event-info-container"],[1,"event-info-header"],[1,"title-container"],[1,"event-info-body"],[1,"event-info-description"],[1,"event-divider-container"],["class","event-date-container",4,"ngIf"],[1,"event-date-container"],[1,"day"]],template:function(t,e){if(1&t&&(Oi(0,"div",0),Si("click",function(){return e.clickEmitter.next(e.event)}),bi(1,Od,1,0,"div",1),Oi(2,"div",2),bi(3,xd,1,0,"ng-container",3),xi(),bi(4,Fd,1,0,"div",4),xi(),bi(5,kd,12,8,"ng-template",null,5,wu)),2&t){const t=wi(6);Wr(1),Ai("ngIf",e.colSidePosition===e.ngxTimelineItemPosition.ON_RIGHT),Wr(1),Ai("ngClass",hu(5,Sd,e.enableAnimation)),Wr(1),Ai("ngTemplateOutlet",e.innerEventCustomTemplate||t)("ngTemplateOutletContext",hu(7,Id,e.event)),Wr(1),Ai("ngIf",e.colSidePosition===e.ngxTimelineItemPosition.ON_LEFT)}},directives:[ra,Xl,sa],pipes:[aa],styles:[".event-wrapper-container[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center;cursor:pointer}.arrow[_ngcontent-%COMP%]{width:0;height:0;border-top:.5rem solid transparent;border-bottom:.5rem solid transparent;border-radius:6px;z-index:10}.arrow.right[_ngcontent-%COMP%]{filter:drop-shadow(2px 0 0 #244a6e22);border-left:.5rem solid #fff}.arrow.left[_ngcontent-%COMP%]{filter:drop-shadow(-1px 0 0 #244a6e22);border-right:.5rem solid #fff}.event[_ngcontent-%COMP%]{background:#fff;border-radius:.8rem;padding:1rem;width:100%;margin:1rem 0}.event.enableAnimation[_ngcontent-%COMP%]:hover{padding:2rem;transition:all .5s ease-in-out}.event.enableAnimation[_ngcontent-%COMP%]:not(:hover){padding:1rem;transition:all .5s ease-in-out}.event[_ngcontent-%COMP%]:not(.hour){background:#fff 0 0 no-repeat padding-box;box-shadow:0 3px 6px rgba(36,74,110,.3215686274509804)}.event.hour[_ngcontent-%COMP%]{padding:.5rem;background:none;display:flex;justify-content:center;align-items:center}.event.hour.right[_ngcontent-%COMP%]{justify-content:flex-start}.event.hour.left[_ngcontent-%COMP%]{justify-content:flex-end}.event[_ngcontent-%COMP%] .hour-inner-container[_ngcontent-%COMP%]{margin:0}.event-container[_ngcontent-%COMP%]{display:flex}.event-container.reverse[_ngcontent-%COMP%]{flex-direction:row-reverse}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%]{display:flex;flex-direction:column;align-items:flex-start;padding:.1rem;flex:88 88 0}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-header[_ngcontent-%COMP%]{display:flex;align-items:center;width:100%}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-header[_ngcontent-%COMP%] .icon-container[_ngcontent-%COMP%]{margin-right:.3rem}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-header[_ngcontent-%COMP%] .icon-container[_ngcontent-%COMP%] nb-icon[_ngcontent-%COMP%]{color:orange;width:1.5rem;height:1.5rem;margin-bottom:.1rem}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-header[_ngcontent-%COMP%] .title-container[_ngcontent-%COMP%]{font-weight:700;font-size:15px}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%]{padding:.5rem 0;display:flex;flex-direction:column;justify-content:flex-start;overflow-wrap:anywhere}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .event-info-description[_ngcontent-%COMP%]{margin-bottom:.5rem;font-size:13px}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .category-container[_ngcontent-%COMP%], .event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .expiration-container[_ngcontent-%COMP%]{display:flex;font-size:13px;justify-content:flex-start;align-items:center}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .category-container[_ngcontent-%COMP%] p[_ngcontent-%COMP%], .event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .expiration-container[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{font-size:13px;margin:0}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .category-container[_ngcontent-%COMP%] .category-label[_ngcontent-%COMP%], .event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .category-container[_ngcontent-%COMP%] .expiration-label[_ngcontent-%COMP%], .event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .expiration-container[_ngcontent-%COMP%] .category-label[_ngcontent-%COMP%], .event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .expiration-container[_ngcontent-%COMP%] .expiration-label[_ngcontent-%COMP%]{margin-right:.5rem}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .category-container[_ngcontent-%COMP%] .category-value[_ngcontent-%COMP%], .event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .category-container[_ngcontent-%COMP%] .expiration-value[_ngcontent-%COMP%], .event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .expiration-container[_ngcontent-%COMP%] .category-value[_ngcontent-%COMP%], .event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-body[_ngcontent-%COMP%] .expiration-container[_ngcontent-%COMP%] .expiration-value[_ngcontent-%COMP%]{font-weight:700}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-footer[_ngcontent-%COMP%]{font-size:15px;cursor:pointer;padding-top:1rem}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-footer[_ngcontent-%COMP%] .footer-inner-container[_ngcontent-%COMP%]{display:flex;justify-content:flex-start;align-items:flex-end}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-footer[_ngcontent-%COMP%] .footer-inner-container[_ngcontent-%COMP%] nb-icon[_ngcontent-%COMP%]{color:#006cb4;width:1rem;height:1rem;margin-bottom:.1rem}.event-container[_ngcontent-%COMP%] .event-info-container[_ngcontent-%COMP%] .event-info-footer[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:0;color:#006cb4}.event-container[_ngcontent-%COMP%] .event-divider-container[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center;padding:.1rem;flex:5 5 0}.event-container[_ngcontent-%COMP%] .event-divider-container[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{height:100%;width:1px;background:#e9e9e9}.event-container[_ngcontent-%COMP%] .event-date-container[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center;flex-direction:column;padding:.1rem;flex:15 15 0}.event-container[_ngcontent-%COMP%] .event-date-container[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:0;text-align:center}.event-container[_ngcontent-%COMP%] .event-date-container[_ngcontent-%COMP%] p.day[_ngcontent-%COMP%]{font-size:32px;font-weight:700;padding:.5rem 0}"]}),t})(),Nd=(()=>{class t{constructor(){}transform(t,e,n){let r=null;if(t){const o=this.getDateConfig(n);r=new ca(o.code).transform(new Date(t),this.dateFormat(e,o))}return r}dateFormat(t,e){return e[vd[t]]}getDateConfig(t){return yd[t||_d[0]]||yd[_d[0]]}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275pipe=Lt({name:"ngxdate",type:t,pure:!1}),t})();function Bd(t,e){1&t&&Ti(0)}const jd=function(t,e){return{event:t,colSidePosition:e}};function Rd(t,e){if(1&t&&(Oi(0,"div",20),bi(1,Bd,1,0,"ng-container",21),xi()),2&t){const t=Ni().$implicit,e=Ni(),n=wi(12);Wr(1),Ai("ngTemplateOutlet",e.eventCustomTemplate||n)("ngTemplateOutletContext",fu(2,jd,t,e.ngxTimelineItemPosition.ON_LEFT))}}function Hd(t,e){1&t&&Ti(0)}const Ld=function(t){return{item:t}};function $d(t,e){if(1&t&&(Oi(0,"div",22),bi(1,Hd,1,0,"ng-container",21),xi()),2&t){const t=Ni().$implicit,e=Ni(),n=wi(8);Wr(1),Ai("ngTemplateOutlet",e.dateInstantCustomTemplate||n)("ngTemplateOutletContext",hu(2,Ld,t.eventInfo))}}function zd(t,e){1&t&&Ti(0)}const Yd=function(t,e){return{period:t,index:e}};function Gd(t,e){if(1&t&&(Oi(0,"div",23),bi(1,zd,1,0,"ng-container",21),xi()),2&t){const t=Ni(),e=t.$implicit,n=t.index,r=Ni(),o=wi(10);Wr(1),Ai("ngTemplateOutlet",r.periodCustomTemplate||o)("ngTemplateOutletContext",fu(2,Yd,e.periodInfo,n))}}function Ud(t,e){1&t&&Ti(0)}const Zd=function(t){return{index:t}};function Wd(t,e){if(1&t&&(Oi(0,"div",24),bi(1,Ud,1,0,"ng-container",21),xi()),2&t){const t=Ni().index;Ni();const e=wi(4);Wr(1),Ai("ngTemplateOutlet",e)("ngTemplateOutletContext",hu(2,Zd,t))}}function Jd(t,e){1&t&&Ti(0)}function qd(t,e){if(1&t&&(Oi(0,"div",20),bi(1,Jd,1,0,"ng-container",21),xi()),2&t){const t=Ni().$implicit,e=Ni(),n=wi(12);Wr(1),Ai("ngTemplateOutlet",e.eventCustomTemplate||n)("ngTemplateOutletContext",fu(2,jd,t,e.ngxTimelineItemPosition.ON_RIGHT))}}function Kd(t,e){1&t&&Ti(0)}function Qd(t,e){if(1&t&&(Oi(0,"div",25),bi(1,Kd,1,0,"ng-container",21),xi()),2&t){const t=Ni().$implicit,e=Ni(),n=wi(8);Wr(1),Ai("ngTemplateOutlet",e.dateInstantCustomTemplate||n)("ngTemplateOutletContext",hu(2,Ld,t.eventInfo))}}function Xd(t,e){1&t&&Ti(0)}function th(t,e){if(1&t&&(Oi(0,"div",22),Oi(1,"div",26),bi(2,Xd,1,0,"ng-container",21),xi(),xi()),2&t){const t=Ni().$implicit,e=Ni(),n=wi(8);Wr(2),Ai("ngTemplateOutlet",e.dateInstantCustomTemplate||n)("ngTemplateOutletContext",hu(2,Ld,t.eventInfo))}}function eh(t,e){1&t&&Ti(0)}function nh(t,e){if(1&t&&(Oi(0,"div",23),bi(1,eh,1,0,"ng-container",21),xi()),2&t){const t=Ni(),e=t.$implicit,n=t.index,r=Ni(),o=wi(10);Wr(1),Ai("ngTemplateOutlet",r.periodCustomTemplate||o)("ngTemplateOutletContext",fu(2,Yd,e.periodInfo,n))}}function rh(t,e){1&t&&Ti(0)}function oh(t,e){if(1&t&&(Oi(0,"div",24),bi(1,rh,1,0,"ng-container",21),xi()),2&t){const t=Ni().index;Ni();const e=wi(4);Wr(1),Ai("ngTemplateOutlet",e)("ngTemplateOutletContext",hu(2,Zd,t))}}function ih(t,e){1&t&&Ti(0)}function sh(t,e){if(1&t&&(Oi(0,"div",20),bi(1,ih,1,0,"ng-container",21),xi()),2&t){const t=Ni().$implicit,e=Ni(),n=wi(12);Wr(1),Ai("ngTemplateOutlet",e.eventCustomTemplate||n)("ngTemplateOutletContext",fu(2,jd,t,e.ngxTimelineItemPosition.ON_RIGHT))}}function uh(t,e){if(1&t&&(Oi(0,"div",8),Oi(1,"div",9),bi(2,Rd,2,5,"div",10),bi(3,$d,2,4,"div",11),xi(),Oi(4,"div",12),bi(5,Gd,2,5,"div",13),bi(6,Wd,2,4,"div",14),xi(),Oi(7,"div",15),bi(8,qd,2,5,"div",10),bi(9,Qd,2,4,"div",16),xi(),Oi(10,"div",17),bi(11,th,3,4,"div",11),xi(),Oi(12,"div",18),bi(13,nh,2,5,"div",13),bi(14,oh,2,4,"div",14),xi(),Oi(15,"div",19),bi(16,sh,2,5,"div",10),xi(),xi()),2&t){const t=e.$implicit,n=Ni();Wr(1),Ai("ngClass",t.periodInfo?"col-period":"col-event"),Wr(1),Ai("ngIf",t.eventInfo&&t.position===n.ngxTimelineItemPosition.ON_LEFT),Wr(1),Ai("ngIf",t.eventInfo&&t.position===n.ngxTimelineItemPosition.ON_RIGHT),Wr(1),Ai("ngClass",t.periodInfo?"col-period":"col-event"),Wr(1),Ai("ngIf",t.periodInfo),Wr(1),Ai("ngIf",!t.periodInfo),Wr(1),Ai("ngClass",t.periodInfo?"col-period":"col-event"),Wr(1),Ai("ngIf",t.eventInfo&&t.position===n.ngxTimelineItemPosition.ON_RIGHT),Wr(1),Ai("ngIf",t.eventInfo&&t.position===n.ngxTimelineItemPosition.ON_LEFT),Wr(1),Ai("ngClass",t.periodInfo?"col-period":"col-event"),Wr(1),Ai("ngIf",t.eventInfo),Wr(1),Ai("ngClass",t.periodInfo?"col-period":"col-event"),Wr(1),Ai("ngIf",t.periodInfo),Wr(1),Ai("ngIf",!t.periodInfo),Wr(1),Ai("ngClass",t.periodInfo?"col-period":"col-event"),Wr(1),Ai("ngIf",t.eventInfo)}}function lh(t,e){1&t&&Ti(0)}const ah=function(t){return{"transparent last-line":t}};function ch(t,e){if(1&t&&(Fi(0,"div",27),bi(1,lh,1,0,"ng-container",28),Fi(2,"div",29)),2&t){const t=e.index,n=Ni(),r=wi(6);Wr(1),Ai("ngTemplateOutlet",n.centerIconCustomTemplate||r),Wr(1),Ai("ngClass",hu(2,ah,t===n.items.length-1))}}function dh(t,e){1&t&&(Oi(0,"div",30),Fi(1,"div",31),xi())}function hh(t,e){if(1&t&&(Oi(0,"span"),Zi(1),_u(2,"ngxdate"),xi()),2&t){const t=e.item,n=Ni();Wr(1),Ji(" ",Cu(2,1,null==t?null:t.timestamp,n.ngxDateFormat.HOURS_MINUTES,n.langCode)," ")}}const fh=function(t){return{"transparent first-line":t}};function ph(t,e){if(1&t&&(Fi(0,"div",29),Oi(1,"div",32),Oi(2,"div",33),Oi(3,"span"),Zi(4),_u(5,"ngxdate"),xi(),xi(),xi(),Fi(6,"div",27)),2&t){const t=e.period,n=e.index,r=Ni();Ai("ngClass",hu(6,fh,!n)),Wr(4),Wi(Cu(5,2,null==t?null:t.firstDate,r.getPeriodKeyDateFormat(),r.langCode))}}function gh(t,e){if(1&t){const t=Pi();Oi(0,"ngx-timeline-event",34),Si("clickEmitter",function(e){return xe(t),Ni().clickEmitter.next(e)}),xi()}if(2&t){const t=e.event,n=e.colSidePosition,r=Ni();Ai("event",t)("langCode",r.langCode)("enableAnimation",r.enableAnimation)("innerEventCustomTemplate",r.innerEventCustomTemplate)("colSidePosition",n)}}let mh=(()=>{class t{constructor(){this.enableAnimation=!0,this.groupEvent=Dd.MONTH_YEAR,this.changeSideInGroup=Ed.ON_DIFFERENT_DAY,this.clickEmitter=new ld(null),this.groups={},this.periods=[],this.items=[],this.ngxTimelineItemPosition=Md,this.ngxDateFormat=Cd,this.separator="/"}ngOnInit(){this.groupEvents(this.events)}ngOnChanges(t){this.groupEvents(this.events)}getPeriodKeyDateFormat(){return wd[this.groupEvent]}clear(){this.groups={},this.periods=[],this.items=[]}groupEvents(t){t&&(this.clear(),this.sortEvents(t),this.setGroups(t),this.setPeriods(),this.setItems())}sortEvents(t){t.sort((t,e)=>t.timestamp.getTime()-e.timestamp.getTime())}setGroups(t){t.forEach(t=>{t.timestamp=new Date(t.timestamp);const e=this.getPeriodKeyFromEvent(t);this.groups[e]||(this.groups[e]=[]),this.groups[e].push(t)})}setItems(){this.periods.forEach(t=>{this.items.push(t),this.addPeriodEvents(t.periodInfo,!0)})}addPeriodEvents(t,e){this.groups[t.periodKey].forEach((n,r)=>{r>0&&this.compareEvents(this.groups[t.periodKey][r-1],n)&&(e=!e),this.pushEventOnItems(n,e)})}pushEventOnItems(t,e){this.items.push({eventInfo:Object.assign({},t),position:e?this.ngxTimelineItemPosition.ON_LEFT:this.ngxTimelineItemPosition.ON_RIGHT})}compareEvents(t,e){return this.changeSideInGroup===Ed.ALL||this.compareEventsField(t,e,...Ad[this.changeSideInGroup])}compareEventsField(t,e,...n){return n.reduce((n,r)=>n||t.timestamp[r]()!==e.timestamp[r](),!1)}setPeriods(){this.periods=Object.keys(this.groups).map(t=>{const e=t.split(this.separator);return this.getPeriodInfo(e,t)})}getPeriodInfo(t,e){return{periodInfo:{year:Number(t[0]),month:Number(t[1]),day:Number(t[2]),periodKey:e,firstDate:this.groups[e][0].timestamp}}}getPeriodKeyFromEvent(t){return bd[this.groupEvent].map(e=>t.timestamp[e]()).join(this.separator)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=It({type:t,selectors:[["ngx-timeline"]],inputs:{events:"events",langCode:"langCode",enableAnimation:"enableAnimation",groupEvent:"groupEvent",changeSideInGroup:"changeSideInGroup",periodCustomTemplate:"periodCustomTemplate",eventCustomTemplate:"eventCustomTemplate",centerIconCustomTemplate:"centerIconCustomTemplate",dateInstantCustomTemplate:"dateInstantCustomTemplate",innerEventCustomTemplate:"innerEventCustomTemplate"},outputs:{clickEmitter:"clickEmitter"},features:[oe],decls:13,vars:1,consts:[[1,"main-container"],[1,"items-container"],["class","row",4,"ngFor","ngForOf"],["centerLinesIconTemplate",""],["centerIconTemplate",""],["dateInstantTemplate",""],["periodTemplate",""],["eventTemplate",""],[1,"row"],[1,"col","col-left","desktop",3,"ngClass"],["class","event-outer-container",4,"ngIf"],["class","hour left",4,"ngIf"],[1,"col","col-center","desktop",3,"ngClass"],["class","center-inner",4,"ngIf"],["class","center-inner no-period-key",4,"ngIf"],[1,"col","col-right","desktop",3,"ngClass"],["class","hour right",4,"ngIf"],[1,"col","col-left","mobile",3,"ngClass"],[1,"col","col-center","mobile",3,"ngClass"],[1,"col","col-right","mobile",3,"ngClass"],[1,"event-outer-container"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"hour","left"],[1,"center-inner"],[1,"center-inner","no-period-key"],[1,"hour","right"],[1,"hour-inner-container"],[1,"line"],[4,"ngTemplateOutlet"],[1,"line",3,"ngClass"],[1,"center-icon-container"],[1,"icon"],[1,"period-container"],[1,"period-inner-container"],[3,"event","langCode","enableAnimation","innerEventCustomTemplate","colSidePosition","clickEmitter"]],template:function(t,e){1&t&&(Oi(0,"div",0),Oi(1,"div",1),bi(2,uh,17,16,"div",2),xi(),xi(),bi(3,ch,3,4,"ng-template",null,3,wu),bi(5,dh,2,0,"ng-template",null,4,wu),bi(7,hh,3,5,"ng-template",null,5,wu),bi(9,ph,7,8,"ng-template",null,6,wu),bi(11,gh,1,5,"ng-template",null,7,wu)),2&t&&(Wr(2),Ai("ngForOf",e.items))},directives:[ea,Xl,ra,sa,Vd],pipes:[Nd],styles:[".main-container[_ngcontent-%COMP%]{display:flex;justify-content:center;width:100%}.items-container[_ngcontent-%COMP%]{padding:1rem 0;min-width:max(20rem,100%)}.row[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap}.row[_ngcontent-%COMP%] > [class*=col-][_ngcontent-%COMP%]{display:flex;flex-direction:column;justify-content:center}.col-left[_ngcontent-%COMP%]{align-items:flex-end}.col-left[_ngcontent-%COMP%], .col-right[_ngcontent-%COMP%]{padding:0;flex:49 49 0}.col-right[_ngcontent-%COMP%]{align-items:flex-start}.col-center[_ngcontent-%COMP%]{min-height:6rem;padding:0;flex:2 2 0}.center-inner[_ngcontent-%COMP%]{width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;height:100%}.center-inner[_ngcontent-%COMP%] .line[_ngcontent-%COMP%]{min-height:50%;max-height:50%;height:50%;background:#464646;width:.1rem}.center-inner[_ngcontent-%COMP%] .line.transparent[_ngcontent-%COMP%]{background:transparent}.period-container[_ngcontent-%COMP%]{background:orange;color:#fff;margin:0;padding:.2rem .5rem}.period-container[_ngcontent-%COMP%] .period-inner-container[_ngcontent-%COMP%]{width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:.2rem .5rem;z-index:10}.center-icon-container[_ngcontent-%COMP%]{padding:.8rem 0;display:flex;justify-content:center;align-items:center;position:absolute;height:10px;width:10px;background:#fff}.center-icon-container[_ngcontent-%COMP%] .icon[_ngcontent-%COMP%]{height:1rem;width:1rem;border-radius:50%;background:orange;margin:0;position:absolute}.event-outer-container[_ngcontent-%COMP%]{margin:0 .5rem;width:100%}.hour[_ngcontent-%COMP%]{padding:.5rem;background:none;display:flex;justify-content:center;align-items:center}.hour.right[_ngcontent-%COMP%]{justify-content:flex-start}.hour.left[_ngcontent-%COMP%]{justify-content:flex-end}.hour[_ngcontent-%COMP%] .hour-inner-container[_ngcontent-%COMP%]{margin:0}.desktop[_ngcontent-%COMP%]{display:flex!important}.mobile[_ngcontent-%COMP%]{display:none!important}@media (max-width:900px){.desktop[_ngcontent-%COMP%]{display:none!important}.mobile[_ngcontent-%COMP%]{display:flex!important}.event-outer-container[_ngcontent-%COMP%]{margin:.5rem .3rem}.col-left[_ngcontent-%COMP%]{align-items:flex-start}.col-left[_ngcontent-%COMP%] .hour[_ngcontent-%COMP%]{font-size:12px;padding:0;margin-right:.3rem}.col-left.col-period[_ngcontent-%COMP%]{flex:18 18 0}.col-left.col-event[_ngcontent-%COMP%]{flex:18 18 0;padding:0;align-items:flex-end}.col-right[_ngcontent-%COMP%]{align-items:flex-start}.col-right.col-period[_ngcontent-%COMP%]{flex:77 77 0}.col-right.col-event[_ngcontent-%COMP%]{flex:77 77 0;padding:0}.col-center[_ngcontent-%COMP%]{min-height:6rem;justify-content:center;margin:0}.col-center.col-period[_ngcontent-%COMP%]{flex:5 5 0;min-height:3rem}.col-center.col-event[_ngcontent-%COMP%]{flex:5 5 0}.center-inner[_ngcontent-%COMP%], .period-container[_ngcontent-%COMP%]{align-items:center}.period-container[_ngcontent-%COMP%]{min-height:20%;height:20%;max-height:20%;background:transparent;display:flex;justify-content:center;border-radius:6px}.period-container[_ngcontent-%COMP%] .period-inner-container[_ngcontent-%COMP%]{position:absolute;background:orange;color:#fff;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:.2rem .5rem;z-index:10}.center-icon-container[_ngcontent-%COMP%]{align-items:center;justify-content:center}.center-icon-container[_ngcontent-%COMP%] .icon[_ngcontent-%COMP%]{height:1rem;width:1rem;position:absolute}}"]}),t})();Ql(cd.a),Ql(hd.a),Ql(pd.a),Ql(md.a);let _h=(()=>{class t{}return t.\u0275mod=jt({type:t}),t.\u0275inj=ot({factory:function(e){return new(e||t)},imports:[[ha]]}),t})();function yh(t,e){if(1&t&&(Oi(0,"option",22),Zi(1),xi()),2&t){const t=e.$implicit;Ai("ngValue",t.value),Wr(1),Wi(t.name)}}function Ch(t,e){if(1&t&&(Oi(0,"div",19),Oi(1,"label"),Zi(2),xi(),Oi(3,"select",20),bi(4,yh,2,2,"option",21),xi(),xi()),2&t){const t=e.$implicit;Wr(2),Wi(t.label),Wr(1),Bi("formControlName",t.formControlName),Wr(1),Ai("ngForOf",t.options)}}const vh=function(t){return{"transparent first-line":t}};function Dh(t,e){if(1&t&&(Fi(0,"div",23),Oi(1,"div",24),Oi(2,"p"),Zi(3),_u(4,"ngxdate"),xi(),xi(),Fi(5,"div",25)),2&t){const t=e.period,n=e.index;Ai("ngClass",hu(5,vh,!n)),Wr(3),qi(" ",n," - ",yu(4,3,null==t?null:t.firstDate)," ")}}function bh(t,e){1&t&&(Oi(0,"div",26),Fi(1,"img",27),xi())}function wh(t,e){if(1&t){const t=Pi();Oi(0,"div",28),Si("click",function(){xe(t);const n=e.event;return Ni().handleClick(n)}),Zi(1),_u(2,"json"),xi()}if(2&t){const t=e.event;Wr(1),Ji(" ",yu(2,1,t)," ")}}function Eh(t,e){if(1&t){const t=Pi();Oi(0,"div",28),Si("click",function(){xe(t);const n=e.event;return Ni().handleClick(n)}),Zi(1),_u(2,"json"),xi()}if(2&t){const t=e.event;Wr(1),Ji(" ",yu(2,1,t)," ")}}function Ah(t,e){if(1&t&&(Oi(0,"span"),Zi(1),_u(2,"ngxdate"),xi()),2&t){const t=e.item,n=Ni();Wr(1),Ji(" ",function(t,e,n,r){const o=Me(),i=_e(o,22);return Du(o,vu(o,22)?mu(o,Ne(),1,i.transform,n,r,i):i.transform(n,r))}(0,0,null==t?null:t.timestamp,n.ngxDateFormat.FULL_DATE)," ")}}let Mh=(()=>{class t{constructor(){this.title="demo-app",this.events$=new ld(null),this.color=0,this.backgroundColor="red",this.ngxDateFormat=Cd,this.configurations=[{label:"Language code",formControlName:"langCode",options:[{name:"English",value:"en"},{name:"French",value:"fr"},{name:"German",value:"de"},{name:"Spanish",value:"es"},{name:"Italian",value:"it"}]},{label:"Enable animation",formControlName:"enableAnimation",options:[{name:"Enable animation",value:!0},{name:"Disable animation",value:!1}]},{label:"Custom class",formControlName:"customClass",options:[{name:"No Custom Class",value:!1},{name:"Custom Class",value:!0}]},{label:"Group events by",formControlName:"groupEvent",options:[{name:"Month Year",value:Dd.MONTH_YEAR},{name:"Day Month Year",value:Dd.DAY_MONTH_YEAR},{name:"Year",value:Dd.YEAR}]},{label:"Change event side in group",formControlName:"changeSideInGroup",options:[{name:"On different day",value:Ed.ON_DIFFERENT_DAY},{name:"All",value:Ed.ALL},{name:"On different hours, minutes and seconds",value:Ed.ON_DIFFERENT_HMS},{name:"On different month",value:Ed.ON_DIFFERENT_MONTH}]},{label:"Date instant custom template",formControlName:"dateInstantCustomTemplate",options:[{name:"No Custom template",value:!1},{name:"Custom Date Instant Template",value:!0}]},{label:"Event custom template",formControlName:"eventCustomTemplate",options:[{name:"No Custom template",value:!1},{name:"Custom Event Template",value:!0}]},{label:"Inner event custom template",formControlName:"innerEventCustomTemplate",options:[{name:"No Custom template",value:!1},{name:"Custom Inner Event Template",value:!0}]},{label:"Center icon custom template",formControlName:"centerIconCustomTemplate",options:[{name:"No Custom Template",value:!1},{name:"Custom Icon Template",value:!0}]},{label:"Period custom template",formControlName:"periodCustomTemplate",options:[{name:"No Custom Template",value:!1},{name:"Custom Period Template",value:!0}]},{label:"Click emitter",formControlName:"clickEmitter",options:[{name:"No emitter",value:!1},{name:"Handle click (open console)",value:!0}]}],this.form=new Kc({}),this.configurations.forEach(t=>this.form.addControl(t.formControlName,new qc(t.options[0].value))),this.initEvents()}initEvents(){const t=new Date,e=new Date;e.setDate(t.getDate()+1);const n=new Date;n.setMonth(t.getMonth()+1);const r=new Date;r.setFullYear(t.getFullYear()+1),this.events=[{id:5,description:"This is the description of the event 5",timestamp:r,title:"title 5"},{id:0,description:"This is the description of the event 0",timestamp:t,title:"title 0"},{id:1,description:"This is the description of the event 1",timestamp:e,title:"title 1"},{id:2,description:"This is the description of the event 2",timestamp:t,title:"title 2"},{id:3,description:"This is the description of the event 3",timestamp:e,title:"title 3"},{id:4,description:"This is the description of the event 4",timestamp:n,title:"title 4"}]}handleClick(t){t&&window.console.log("",t)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=It({type:t,selectors:[["app-root"]],decls:27,vars:13,consts:[["role","banner",1,"toolbar"],["width","40","alt","Angular Logo","src","data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgMjUwIj4KICAgIDxwYXRoIGZpbGw9IiNERDAwMzEiIGQ9Ik0xMjUgMzBMMzEuOSA2My4ybDE0LjIgMTIzLjFMMTI1IDIzMGw3OC45LTQzLjcgMTQuMi0xMjMuMXoiIC8+CiAgICA8cGF0aCBmaWxsPSIjQzMwMDJGIiBkPSJNMTI1IDMwdjIyLjItLjFWMjMwbDc4LjktNDMuNyAxNC4yLTEyMy4xTDEyNSAzMHoiIC8+CiAgICA8cGF0aCAgZmlsbD0iI0ZGRkZGRiIgZD0iTTEyNSA1Mi4xTDY2LjggMTgyLjZoMjEuN2wxMS43LTI5LjJoNDkuNGwxMS43IDI5LjJIMTgzTDEyNSA1Mi4xem0xNyA4My4zaC0zNGwxNy00MC45IDE3IDQwLjl6IiAvPgogIDwvc3ZnPg=="],[1,"spacer"],["aria-label","Angular on twitter","target","_blank","rel","noopener","href","https://twitter.com/angular","title","Twitter"],["id","twitter-logo","height","24","data-name","Logo","xmlns","http://www.w3.org/2000/svg","viewBox","0 0 400 400"],["width","400","height","400","fill","none"],["d","M153.62,301.59c94.34,0,145.94-78.16,145.94-145.94,0-2.22,0-4.43-.15-6.63A104.36,104.36,0,0,0,325,122.47a102.38,102.38,0,0,1-29.46,8.07,51.47,51.47,0,0,0,22.55-28.37,102.79,102.79,0,0,1-32.57,12.45,51.34,51.34,0,0,0-87.41,46.78A145.62,145.62,0,0,1,92.4,107.81a51.33,51.33,0,0,0,15.88,68.47A50.91,50.91,0,0,1,85,169.86c0,.21,0,.43,0,.65a51.31,51.31,0,0,0,41.15,50.28,51.21,51.21,0,0,1-23.16.88,51.35,51.35,0,0,0,47.92,35.62,102.92,102.92,0,0,1-63.7,22A104.41,104.41,0,0,1,75,278.55a145.21,145.21,0,0,0,78.62,23","fill","#fff"],["role","main",1,"content"],[1,"title"],[1,"inner-container"],[3,"formGroup"],[1,"form-container"],["class","form-select",4,"ngFor","ngForOf"],[3,"events","ngClass","langCode","enableAnimation","groupEvent","changeSideInGroup","eventCustomTemplate","innerEventCustomTemplate","centerIconCustomTemplate","dateInstantCustomTemplate","periodCustomTemplate","clickEmitter"],["periodCustomTemplate",""],["centerIconCustomTemplate",""],["innerEventCustomTemplate",""],["eventCustomTemplate",""],["dateInstantCustomTemplate",""],[1,"form-select"],[3,"formControlName"],[3,"ngValue",4,"ngFor","ngForOf"],[3,"ngValue"],[1,"line",3,"ngClass"],[1,"period-container"],[1,"line"],[1,"icon-container"],["src","assets/inter.png"],[1,"event",3,"click"]],template:function(t,e){if(1&t&&(Oi(0,"div",0),Fi(1,"img",1),Oi(2,"span"),Zi(3,"Welcome"),xi(),Fi(4,"div",2),Oi(5,"a",3),Ee.lFrame.currentNamespace=ae,Oi(6,"svg",4),Fi(7,"rect",5),Fi(8,"path",6),xi(),xi(),xi(),Ee.lFrame.currentNamespace=null,Oi(9,"div",7),Oi(10,"h2",8),Zi(11,"Ngx-Timeline"),xi(),Oi(12,"div",9),Oi(13,"form",10),Oi(14,"div",11),bi(15,Ch,5,3,"div",12),xi(),xi(),Oi(16,"ngx-timeline",13),Si("clickEmitter",function(t){return e.form.get("clickEmitter").value?e.handleClick(t):null}),xi(),xi(),bi(17,Dh,6,7,"ng-template",null,14,wu),bi(19,bh,2,0,"ng-template",null,15,wu),bi(21,wh,3,3,"ng-template",null,16,wu),bi(23,Eh,3,3,"ng-template",null,17,wu),bi(25,Ah,3,4,"ng-template",null,18,wu),xi()),2&t){const t=wi(18),n=wi(20),r=wi(22),o=wi(24),i=wi(26);Wr(13),Ai("formGroup",e.form),Wr(2),Ai("ngForOf",e.configurations),Wr(1),Ai("events",e.events)("ngClass",e.form.get("customClass").value?"inter":"")("langCode",e.form.get("langCode").value)("enableAnimation",e.form.get("enableAnimation").value)("groupEvent",e.form.get("groupEvent").value)("changeSideInGroup",e.form.get("changeSideInGroup").value)("eventCustomTemplate",e.form.get("eventCustomTemplate").value?o:null)("innerEventCustomTemplate",e.form.get("innerEventCustomTemplate").value?r:null)("centerIconCustomTemplate",e.form.get("centerIconCustomTemplate").value?n:null)("dateInstantCustomTemplate",e.form.get("dateInstantCustomTemplate").value?i:null)("periodCustomTemplate",e.form.get("periodCustomTemplate").value?t:null)}},directives:[Xc,mc,nd,ea,mh,Xl,Mc,gc,od,Oc,Pc],pipes:[Nd,da],styles:['@charset "UTF-8";[_nghost-%COMP%]{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:14px;color:#333;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1[_ngcontent-%COMP%], h2[_ngcontent-%COMP%], h3[_ngcontent-%COMP%], h4[_ngcontent-%COMP%], h5[_ngcontent-%COMP%], h6[_ngcontent-%COMP%]{margin:8px 0}p[_ngcontent-%COMP%]{margin:0}.spacer[_ngcontent-%COMP%]{flex:1}.toolbar[_ngcontent-%COMP%]{position:absolute;top:0;left:0;right:0;height:60px;display:flex;align-items:center;background-color:#1976d2;color:#fff;font-weight:600}.toolbar[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{margin:0 16px}.toolbar[_ngcontent-%COMP%] #twitter-logo[_ngcontent-%COMP%]{height:40px;margin:0 16px}.toolbar[_ngcontent-%COMP%] #twitter-logo[_ngcontent-%COMP%]:hover{opacity:.8}.content[_ngcontent-%COMP%]{display:flex;margin:82px auto 32px;padding:0 16px;flex-direction:column;align-items:center}.content[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{margin-bottom:2rem}svg.material-icons[_ngcontent-%COMP%]{height:24px;width:auto}svg.material-icons[_ngcontent-%COMP%]:not(:last-child){margin-right:8px}.card[_ngcontent-%COMP%] svg.material-icons[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{fill:#888}.card-container[_ngcontent-%COMP%]{flex-wrap:wrap;margin-top:16px}.card[_ngcontent-%COMP%], .card-container[_ngcontent-%COMP%]{display:flex;justify-content:center}.card[_ngcontent-%COMP%]{border-radius:4px;border:1px solid #eee;background-color:#fafafa;height:40px;width:200px;margin:0 8px 16px;padding:16px;flex-direction:row;align-items:center;transition:all .2s ease-in-out;line-height:24px}.card-container[_ngcontent-%COMP%] .card[_ngcontent-%COMP%]:not(:last-child){margin-right:0}.card.card-small[_ngcontent-%COMP%]{height:16px;width:168px}.card-container[_ngcontent-%COMP%] .card[_ngcontent-%COMP%]:not(.highlight-card){cursor:pointer}.card-container[_ngcontent-%COMP%] .card[_ngcontent-%COMP%]:not(.highlight-card):hover{transform:translateY(-3px);box-shadow:0 4px 17px rgba(0,0,0,.35)}.card-container[_ngcontent-%COMP%] .card[_ngcontent-%COMP%]:not(.highlight-card):hover .material-icons[_ngcontent-%COMP%] path[_ngcontent-%COMP%]{fill:#696767}.card.highlight-card[_ngcontent-%COMP%]{background-color:#1976d2;color:#fff;font-weight:600;border:none;width:auto;min-width:30%;position:relative}.card.card.highlight-card[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{margin-left:60px}svg#rocket[_ngcontent-%COMP%]{width:80px;position:absolute;left:-10px;top:-24px}svg#rocket-smoke[_ngcontent-%COMP%]{height:calc(100vh - 95px);position:absolute;top:10px;right:180px;z-index:-10}a[_ngcontent-%COMP%], a[_ngcontent-%COMP%]:hover, a[_ngcontent-%COMP%]:visited{color:#1976d2;text-decoration:none}a[_ngcontent-%COMP%]:hover{color:#125699}.terminal[_ngcontent-%COMP%]{position:relative;width:80%;max-width:600px;border-radius:6px;padding-top:45px;margin-top:8px;overflow:hidden;background-color:#0f0f10}.terminal[_ngcontent-%COMP%]:before{content:"\u2022\u2022\u2022";position:absolute;top:0;left:0;height:4px;background:#3a3a3a;color:#c2c3c4;width:100%;font-size:2rem;line-height:0;padding:14px 0;text-indent:4px}.terminal[_ngcontent-%COMP%] pre[_ngcontent-%COMP%]{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;color:#fff;padding:0 1rem 1rem;margin:0}.circle-link[_ngcontent-%COMP%]{height:40px;width:40px;border-radius:40px;margin:8px;background-color:#fff;border:1px solid #eee;display:flex;justify-content:center;align-items:center;cursor:pointer;box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);transition:1s ease-out}.circle-link[_ngcontent-%COMP%]:hover{transform:translateY(-.25rem);box-shadow:0 3px 15px rgba(0,0,0,.2)}footer[_ngcontent-%COMP%]{margin-top:8px;line-height:20px}.github-star-badge[_ngcontent-%COMP%], footer[_ngcontent-%COMP%], footer[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{display:flex;align-items:center}.github-star-badge[_ngcontent-%COMP%]{color:#24292e;font-size:12px;padding:3px 10px;border:1px solid rgba(27,31,35,.2);border-radius:3px;background-image:linear-gradient(-180deg,#fafbfc,#eff3f6 90%);margin-left:4px;font-weight:600;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol}.github-star-badge[_ngcontent-%COMP%]:hover{background-image:linear-gradient(-180deg,#f0f3f6,#e6ebf1 90%);border-color:rgba(27,31,35,.35);background-position:-.5em}.github-star-badge[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{height:16px;width:16px;margin-right:4px}svg#clouds[_ngcontent-%COMP%]{position:fixed;bottom:-160px;left:-230px;z-index:-10;width:1920px}.form-container[_ngcontent-%COMP%]{display:flex;flex-direction:column}.form-container[_ngcontent-%COMP%] .form-select[_ngcontent-%COMP%]{display:flex;justify-content:space-between;margin-bottom:.5rem}.form-container[_ngcontent-%COMP%] .form-select[_ngcontent-%COMP%] select[_ngcontent-%COMP%]{min-width:15.625rem;padding:.5rem .25rem}.line[_ngcontent-%COMP%]{min-height:50%;max-height:50%;height:50%;background:#464646;width:.1rem}.line.transparent[_ngcontent-%COMP%]{background:transparent}.period-container[_ngcontent-%COMP%]{display:flex;justify-content:center;align-items:center;width:-webkit-max-content;width:max-content;padding:.25rem;color:#d3d3d3}@media screen and (max-width:767px){.card-container[_ngcontent-%COMP%] > [_ngcontent-%COMP%]:not(.circle-link), .terminal[_ngcontent-%COMP%]{width:100%}.card[_ngcontent-%COMP%]:not(.highlight-card){height:16px;margin:8px 0}.card.highlight-card[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{margin-left:72px}svg#rocket-smoke[_ngcontent-%COMP%]{right:120px;transform:rotate(-5deg)}}.inner-container[_ngcontent-%COMP%]{display:flex;width:100%;justify-content:space-evenly;align-items:center}.inner-container[_ngcontent-%COMP%] form[_ngcontent-%COMP%]{display:flex;align-items:flex-start;flex:0 0 20%;height:100vh}.inner-container[_ngcontent-%COMP%] form[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{font-weight:700}.inner-container[_ngcontent-%COMP%] ngx-timeline[_ngcontent-%COMP%]{max-width:900px;display:flex;flex:0 0 80%}.event[_ngcontent-%COMP%]{border:1px solid red}.icon-container[_ngcontent-%COMP%]{padding:.8rem 0;display:flex;justify-content:center;align-items:center;position:absolute;height:10px;width:10px;background:#fff}.icon-container[_ngcontent-%COMP%] .icon[_ngcontent-%COMP%]{height:1rem;width:1rem;border-radius:50%;background:red;margin:0;position:absolute}.icon-container[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{max-width:1.25rem;max-height:1.25rem} ngx-timeline.inter .period-container, ngx-timeline.inter .period-container .period-inner-container{background:#00f!important} ngx-timeline.inter .line:not(.first-line):not(.last-line){background-color:#d3d3d3!important} ngx-timeline.inter .center-icon-container .icon{background:#00f!important}@media screen and (max-width:1300px){svg#rocket-smoke[_ngcontent-%COMP%]{display:none;visibility:hidden}.inner-container[_ngcontent-%COMP%]{display:flex;width:100%;flex-direction:column;justify-content:space-evenly;align-items:center}.inner-container[_ngcontent-%COMP%] form[_ngcontent-%COMP%]{justify-content:space-between;height:auto}.inner-container[_ngcontent-%COMP%] form[_ngcontent-%COMP%] .form-container[_ngcontent-%COMP%]{min-width:60vw}.inner-container[_ngcontent-%COMP%] ngx-timeline[_ngcontent-%COMP%]{min-width:80vw}}']}),t})(),Oh=(()=>{class t{}return t.\u0275mod=jt({type:t,bootstrap:[Mh]}),t.\u0275inj=ot({factory:function(e){return new(e||t)},providers:[],imports:[[Ha,ud,_h]]}),t})();(function(){if(ol)throw new Error("Cannot enable prod mode after platform setup.");rl=!1})(),ja().bootstrapModule(Oh).catch(t=>console.error(t))}},[[0,0]]]);
|