-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_angular_core.BiixIazIsQ.js
More file actions
6808 lines (6801 loc) · 373 KB
/
_angular_core.BiixIazIsQ.js
File metadata and controls
6808 lines (6801 loc) · 373 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { a as Ic, b as Ke, f as Dc } from "@nf-internal/chunk-CTQVN4C2";
import { B as Cc, E as Mc, F as Nc, G as zp, H as Qp, I as Zp, J as Yp, K as Kp, L as sM, a as re, b as A, c as Ci, f as Tc, g as Mi, n as qo, p as Ni, r as wi, s as kt, w as _i, x as Gp, y as Wp } from "@nf-internal/chunk-EYXY3V65";
import "@nf-internal/chunk-C2A5IV4Z";
import { b as Di, d as $p, i as Ti, j as qp } from "@nf-internal/chunk-IR6MR6UK";
import { a as q, b as Te, e as xt } from "@nf-internal/chunk-6MDQTQU3";
import { setActiveConsumer as An } from "@angular/core/primitives/signals";
import { isNotFound as aM } from "@angular/core/primitives/di";
var bi = class {
full;
major;
minor;
patch;
constructor(t) { this.full = t; let n = t.split("."); this.major = n[0], this.minor = n[1], this.patch = n.slice(2).join("."); }
}, cM = new bi("20.3.7");
var Ai = "https://angular.dev/best-practices/security#preventing-cross-site-scripting-xss", T = class extends Error {
code;
constructor(t, n) { super(Zo(t, n)), this.code = t; }
};
function lM(e) { return `NG0${Math.abs(e)}`; }
function Zo(e, t) { return `${lM(e)}${t ? ": " + t : ""}`; }
var Se = globalThis;
function F(e) { for (let t in e)
if (e[t] === F)
return t; throw Error(""); }
function th(e, t) { for (let n in t)
t.hasOwnProperty(n) && !e.hasOwnProperty(n) && (e[n] = t[n]); }
function Be(e) {
if (typeof e == "string")
return e;
if (Array.isArray(e))
return `[${e.map(Be).join(", ")}]`;
if (e == null)
return "" + e;
let t = e.overriddenName || e.name;
if (t)
return `${t}`;
let n = e.toString();
if (n == null)
return "" + n;
let o = n.indexOf(`
`);
return o >= 0 ? n.slice(0, o) : n;
}
function Oi(e, t) { return e ? t ? `${e} ${t}` : e : t || ""; }
function uM(e, t = 100) { if (!e || t < 1 || e.length <= t)
return e; if (t == 1)
return e.substring(0, 1) + "..."; let n = Math.round(t / 2); return e.substring(0, n) + "..." + e.substring(e.length - n); }
var dM = F({ __forward_ref__: F });
function Yo(e) { return e.__forward_ref__ = Yo, e.toString = function () { return Be(this()); }, e; }
function x(e) { return Ko(e) ? e() : e; }
function Ko(e) { return typeof e == "function" && e.hasOwnProperty(dM) && e.__forward_ref__ === Yo; }
function nh(e, t, n) { e != t && Fc(n, e, t, "=="); }
function Fc(e, t, n, o) { throw new Error(`ASSERTION ERROR: ${e}` + (o == null ? "" : ` [Expected=> ${n} ${o} ${t} <=Actual]`)); }
function j(e) { return { token: e.token, providedIn: e.providedIn || null, factory: e.factory, value: void 0 }; }
var fM = j;
function Jo(e) { return { providers: e.providers || [], imports: e.imports || [] }; }
function Xo(e) { return hM(e, xn); }
function pM(e) { return Xo(e) !== null; }
function hM(e, t) { return e.hasOwnProperty(t) && e[t] || null; }
function gM(e) { let t = e?.[xn] ?? null; return t || null; }
function _c(e) { return e && e.hasOwnProperty(Wo) ? e[Wo] : null; }
var xn = F({ \u0275prov: F }), Wo = F({ \u0275inj: F }), C = class {
_desc;
ngMetadataName = "InjectionToken";
\u0275prov;
constructor(t, n) { this._desc = t, this.\u0275prov = void 0, typeof n == "number" ? this.__NG_ELEMENT_ID__ = n : n !== void 0 && (this.\u0275prov = j({ token: this, providedIn: n.providedIn || "root", factory: n.factory })); }
get multi() { return this; }
toString() { return `InjectionToken ${this._desc}`; }
}, Jp;
function mM(e) { Fc("setInjectorProfilerContext should never be called in production mode"); let t = Jp; return Jp = e, t; }
function jc(e) { return e && !!e.\u0275providers; }
var en = F({ \u0275cmp: F }), er = F({ \u0275dir: F }), tr = F({ \u0275pipe: F }), xi = F({ \u0275mod: F }), Je = F({ \u0275fac: F }), tn = F({ __NG_ELEMENT_ID__: F }), Xp = F({ __NG_ENV_ID__: F });
function b(e) { return typeof e == "string" ? e : e == null ? "" : String(e); }
function be(e) { return typeof e == "function" ? e.name || e.toString() : typeof e == "object" && e != null && typeof e.type == "function" ? e.type.name || e.type.toString() : b(e); }
var oh = F({ ngErrorCode: F }), vM = F({ ngErrorMessage: F }), yM = F({ ngTokenPath: F });
function Vc(e, t) { return rh("", -200, t); }
function ki(e, t) { throw new T(-201, !1); }
function rh(e, t, n) { let o = new T(t, e); return o[oh] = t, o[vM] = e, n && (o[yM] = n), o; }
function EM(e) { return e[oh]; }
var Sc;
function ih() { return Sc; }
function Ee(e) { let t = Sc; return Sc = e, t; }
function Hc(e, t, n) { let o = Xo(e); if (o && o.providedIn == "root")
return o.value === void 0 ? o.value = o.factory() : o.value; if (n & 8)
return null; if (t !== void 0)
return t; ki(e, "Injector"); }
var IM = {}, Yt = IM, bc = "__NG_DI_FLAG__", Rc = class {
injector;
constructor(t) { this.injector = t; }
retrieve(t, n) { let o = Kt(n) || 0; try {
return this.injector.get(t, o & 8 ? null : Yt, o);
}
catch (r) {
if (Dc(r))
return r;
throw r;
} }
};
function DM(e, t = 0) { let n = Ic(); if (n === void 0)
throw new T(-203, !1); if (n === null)
return Hc(e, void 0, t); {
let o = TM(t), r = n.retrieve(e, o);
if (Dc(r)) {
if (o.optional)
return null;
throw r;
}
return r;
} }
function de(e, t = 0) { return (ih() || DM)(x(e), t); }
function Pi(e) { throw new T(202, !1); }
function E(e, t) { return de(e, Kt(t)); }
function Kt(e) { return typeof e > "u" || typeof e == "number" ? e : 0 | (e.optional && 8) | (e.host && 1) | (e.self && 2) | (e.skipSelf && 4); }
function TM(e) { return { optional: !!(e & 8), host: !!(e & 1), self: !!(e & 2), skipSelf: !!(e & 4) }; }
function Ac(e) { let t = []; for (let n = 0; n < e.length; n++) {
let o = x(e[n]);
if (Array.isArray(o)) {
if (o.length === 0)
throw new T(900, !1);
let r, i = 0;
for (let s = 0; s < o.length; s++) {
let a = o[s], c = CM(a);
typeof c == "number" ? c === -1 ? r = a.token : i |= c : r = a;
}
t.push(de(r, i));
}
else
t.push(de(o));
} return t; }
function kn(e, t) { return e[bc] = t, e.prototype[bc] = t, e; }
function CM(e) { return e[bc]; }
function Pt(e, t) { let n = e.hasOwnProperty(Je); return n ? e[Je] : null; }
function sh(e, t, n) { if (e.length !== t.length)
return !1; for (let o = 0; o < e.length; o++) {
let r = e[o], i = t[o];
if (n && (r = n(r), i = n(i)), i !== r)
return !1;
} return !0; }
function Ue(e) { return e.flat(Number.POSITIVE_INFINITY); }
function Li(e, t) { e.forEach(n => Array.isArray(n) ? Li(n, t) : t(n)); }
function Bc(e, t, n) { t >= e.length ? e.push(n) : e.splice(t, 0, n); }
function nr(e, t) { return t >= e.length - 1 ? e.pop() : e.splice(t, 1)[0]; }
function or(e, t) { let n = []; for (let o = 0; o < e; o++)
n.push(t); return n; }
function Uc(e, t, n) { let o = e.length - n; for (; t < o;)
e[t] = e[t + n], t++; for (; n--;)
e.pop(); }
function $c(e, t, n, o) { let r = e.length; if (r == t)
e.push(n, o);
else if (r === 1)
e.push(o, e[0]), e[0] = n;
else {
for (r--, e.push(e[r - 1], e[r]); r > t;) {
let i = r - 2;
e[r] = e[i], r--;
}
e[t] = n, e[t + 1] = o;
} }
function rr(e, t, n) { let o = Pn(e, t); return o >= 0 ? e[o | 1] = n : (o = ~o, $c(e, o, t, n)), o; }
function Fi(e, t) { let n = Pn(e, t); if (n >= 0)
return e[n | 1]; }
function Pn(e, t) { return MM(e, t, 1); }
function MM(e, t, n) { let o = 0, r = e.length >> n; for (; r !== o;) {
let i = o + (r - o >> 1), s = e[i << n];
if (t === s)
return i << n;
s > t ? r = i : o = i + 1;
} return ~(r << n); }
var ke = {}, P = [], Pe = new C(""), qc = new C("", -1), Gc = new C(""), zo = class {
get(t, n = Yt) { if (n === Yt) {
let r = rh("", -201);
throw r.name = "\u0275NotFound", r;
} return n; }
};
function nn(e) { return e[xi] || null; }
function ji(e) { let t = nn(e); if (!t)
throw new T(915, !1); return t; }
function G(e) { return e[en] || null; }
function Re(e) { return e[er] || null; }
function $e(e) { return e[tr] || null; }
function ir(e) { let t = G(e) || Re(e) || $e(e); return t !== null && t.standalone; }
function qe(e) { return { \u0275providers: e }; }
function ah(e) { return qe([{ provide: Pe, multi: !0, useValue: e }]); }
function ch(...e) { return { \u0275providers: Vi(!0, e), \u0275fromNgModule: !0 }; }
function Vi(e, ...t) { let n = [], o = new Set, r, i = s => { n.push(s); }; return Li(t, s => { let a = s; Ri(a, i, [], o) && (r ||= [], r.push(a)); }), r !== void 0 && lh(r, i), n; }
function lh(e, t) { for (let n = 0; n < e.length; n++) {
let { ngModule: o, providers: r } = e[n];
Wc(r, i => { t(i, o); });
} }
function Ri(e, t, n, o) { if (e = x(e), !e)
return !1; let r = null, i = _c(e), s = !i && G(e); if (!i && !s) {
let c = e.ngModule;
if (i = _c(c), i)
r = c;
else
return !1;
}
else {
if (s && !s.standalone)
return !1;
r = e;
} let a = o.has(r); if (s) {
if (a)
return !1;
if (o.add(r), s.dependencies) {
let c = typeof s.dependencies == "function" ? s.dependencies() : s.dependencies;
for (let l of c)
Ri(l, t, n, o);
}
}
else if (i) {
if (i.imports != null && !a) {
o.add(r);
let l;
try {
Li(i.imports, u => { Ri(u, t, n, o) && (l ||= [], l.push(u)); });
}
finally { }
l !== void 0 && lh(l, t);
}
if (!a) {
let l = Pt(r) || (() => new r);
t({ provide: r, useFactory: l, deps: P }, r), t({ provide: Gc, useValue: r, multi: !0 }, r), t({ provide: Pe, useValue: () => de(r), multi: !0 }, r);
}
let c = i.providers;
if (c != null && !a) {
let l = e;
Wc(c, u => { t(u, l); });
}
}
else
return !1; return r !== e && e.providers !== void 0; }
function Wc(e, t) { for (let n of e)
jc(n) && (n = n.\u0275providers), Array.isArray(n) ? Wc(n, t) : t(n); }
var NM = F({ provide: String, useValue: F });
function uh(e) { return e !== null && typeof e == "object" && NM in e; }
function wM(e) { return !!(e && e.useExisting); }
function _M(e) { return !!(e && e.useFactory); }
function Jt(e) { return typeof e == "function"; }
function dh(e) { return !!e.useClass; }
var zc = new C(""), Si = {}, eh = {}, wc;
function Ln() { return wc === void 0 && (wc = new zo), wc; }
var _e = class {
}, Xt = class extends _e {
parent;
source;
scopes;
records = new Map;
_ngOnDestroyHooks = new Set;
_onDestroyHooks = [];
get destroyed() { return this._destroyed; }
_destroyed = !1;
injectorDefTypes;
constructor(t, n, o, r) { super(), this.parent = n, this.source = o, this.scopes = r, xc(t, s => this.processProvider(s)), this.records.set(qc, On(void 0, this)), r.has("environment") && this.records.set(_e, On(void 0, this)); let i = this.records.get(zc); i != null && typeof i.value == "string" && this.scopes.add(i.value), this.injectorDefTypes = new Set(this.get(Gc, P, { self: !0 })); }
retrieve(t, n) { let o = Kt(n) || 0; try {
return this.get(t, Yt, o);
}
catch (r) {
if (aM(r))
return r;
throw r;
} }
destroy() { Go(this), this._destroyed = !0; let t = An(null); try {
for (let o of this._ngOnDestroyHooks)
o.ngOnDestroy();
let n = this._onDestroyHooks;
this._onDestroyHooks = [];
for (let o of n)
o();
}
finally {
this.records.clear(), this._ngOnDestroyHooks.clear(), this.injectorDefTypes.clear(), An(t);
} }
onDestroy(t) { return Go(this), this._onDestroyHooks.push(t), () => this.removeOnDestroy(t); }
runInContext(t) { Go(this); let n = Ke(this), o = Ee(void 0), r; try {
return t();
}
finally {
Ke(n), Ee(o);
} }
get(t, n = Yt, o) { if (Go(this), t.hasOwnProperty(Xp))
return t[Xp](this); let r = Kt(o), i, s = Ke(this), a = Ee(void 0); try {
if (!(r & 4)) {
let l = this.records.get(t);
if (l === void 0) {
let u = OM(t) && Xo(t);
u && this.injectableDefInScope(u) ? l = On(Oc(t), Si) : l = null, this.records.set(t, l);
}
if (l != null)
return this.hydrate(t, l, r);
}
let c = r & 2 ? Ln() : this.parent;
return n = r & 8 && n === Yt ? null : n, c.get(t, n);
}
catch (c) {
let l = EM(c);
throw l === -200 || l === -201 ? new T(l, null) : c;
}
finally {
Ee(a), Ke(s);
} }
resolveInjectorInitializers() { let t = An(null), n = Ke(this), o = Ee(void 0), r; try {
let i = this.get(Pe, P, { self: !0 });
for (let s of i)
s();
}
finally {
Ke(n), Ee(o), An(t);
} }
toString() { let t = [], n = this.records; for (let o of n.keys())
t.push(Be(o)); return `R3Injector[${t.join(", ")}]`; }
processProvider(t) { t = x(t); let n = Jt(t) ? t : x(t && t.provide), o = bM(t); if (!Jt(t) && t.multi === !0) {
let r = this.records.get(n);
r || (r = On(void 0, Si, !0), r.factory = () => Ac(r.multi), this.records.set(n, r)), n = t, r.multi.push(t);
} this.records.set(n, o); }
hydrate(t, n, o) { let r = An(null); try {
if (n.value === eh)
throw Vc(Be(t));
return n.value === Si && (n.value = eh, n.value = n.factory(void 0, o)), typeof n.value == "object" && n.value && AM(n.value) && this._ngOnDestroyHooks.add(n.value), n.value;
}
finally {
An(r);
} }
injectableDefInScope(t) { if (!t.providedIn)
return !1; let n = x(t.providedIn); return typeof n == "string" ? n === "any" || this.scopes.has(n) : this.injectorDefTypes.has(n); }
removeOnDestroy(t) { let n = this._onDestroyHooks.indexOf(t); n !== -1 && this._onDestroyHooks.splice(n, 1); }
};
function Oc(e) { let t = Xo(e), n = t !== null ? t.factory : Pt(e); if (n !== null)
return n; if (e instanceof C)
throw new T(204, !1); if (e instanceof Function)
return SM(e); throw new T(204, !1); }
function SM(e) { if (e.length > 0)
throw new T(204, !1); let n = gM(e); return n !== null ? () => n.factory(e) : () => new e; }
function bM(e) { if (uh(e))
return On(void 0, e.useValue); {
let t = Qc(e);
return On(t, Si);
} }
function Qc(e, t, n) { let o; if (Jt(e)) {
let r = x(e);
return Pt(r) || Oc(r);
}
else if (uh(e))
o = () => x(e.useValue);
else if (_M(e))
o = () => e.useFactory(...Ac(e.deps || []));
else if (wM(e))
o = (r, i) => de(x(e.useExisting), i !== void 0 && i & 8 ? 8 : void 0);
else {
let r = x(e && (e.useClass || e.provide));
if (RM(e))
o = () => new r(...Ac(e.deps));
else
return Pt(r) || Oc(r);
} return o; }
function Go(e) { if (e.destroyed)
throw new T(205, !1); }
function On(e, t, n = !1) { return { factory: e, value: t, multi: n ? [] : void 0 }; }
function RM(e) { return !!e.deps; }
function AM(e) { return e !== null && typeof e == "object" && typeof e.ngOnDestroy == "function"; }
function OM(e) { return typeof e == "function" || typeof e == "object" && e.ngMetadataName === "InjectionToken"; }
function xc(e, t) { for (let n of e)
Array.isArray(n) ? xc(n, t) : n && jc(n) ? xc(n.\u0275providers, t) : t(n); }
function Hi(e, t) { let n; e instanceof Xt ? (Go(e), n = e) : n = new Rc(e); let o, r = Ke(n), i = Ee(void 0); try {
return t();
}
finally {
Ke(r), Ee(i);
} }
function Bi() { return ih() !== void 0 || Ic() != null; }
function xM(e) { if (!Bi())
throw new T(-203, !1); }
var U = 0, m = 1, M = 2, z = 3, fe = 4, se = 5, ae = 6, Lt = 7, H = 8, L = 9, Ge = 10, w = 11, Ft = 12, sr = 13, on = 14, J = 15, pt = 16, rn = 17, et = 18, Fn = 19, Zc = 20, dt = 21, Ui = 22, ht = 23, Ae = 24, sn = 25, gt = 26, I = 27, Yc = 1, Oe = 6, We = 7, ar = 8, an = 9, W = 10;
function X(e) { return Array.isArray(e) && typeof e[Yc] == "object"; }
function Y(e) { return Array.isArray(e) && e[Yc] === !0; }
function Kc(e) { return (e.flags & 4) !== 0; }
function Me(e) { return e.componentOffset > -1; }
function jn(e) { return (e.flags & 1) === 1; }
function Ne(e) { return !!e.template; }
function tt(e) { return (e[M] & 512) !== 0; }
function Jc(e) { return (e.type & 16) === 16; }
function fh(e) { return (e[M] & 32) === 32; }
function nt(e) { return (e[M] & 256) === 256; }
var Xc = "svg", el = "math";
function k(e) { for (; Array.isArray(e);)
e = e[U]; return e; }
function cr(e) { for (; Array.isArray(e);) {
if (typeof e[Yc] == "object")
return e;
e = e[U];
} return null; }
function cn(e, t) { return k(t[e]); }
function ce(e, t) { return k(t[e.index]); }
function ph(e, t) { let n = e === null ? -1 : e.index; return n !== -1 ? k(t[n]) : null; }
function mt(e, t) { return e.data[t]; }
function jt(e, t) { return e[t]; }
function lr(e, t, n, o) { n >= e.data.length && (e.data[n] = null, e.blueprint[n] = null), t[n] = o; }
function ge(e, t) { let n = t[e]; return X(n) ? n : n[U]; }
function hh(e) { return (e[M] & 4) === 4; }
function $i(e) { return (e[M] & 128) === 128; }
function gh(e) { return Y(e[z]); }
function pe(e, t) { return t == null ? null : e[t]; }
function tl(e) { e[rn] = 0; }
function qi(e) { e[M] & 1024 || (e[M] |= 1024, $i(e) && Vt(e)); }
function nl(e, t) { for (; e > 0;)
t = t[on], e--; return t; }
function Vn(e) { return !!(e[M] & 9216 || e[Ae]?.dirty); }
function Gi(e) { e[Ge].changeDetectionScheduler?.notify(8), e[M] & 64 && (e[M] |= 1024), Vn(e) && Vt(e); }
function Vt(e) { e[Ge].changeDetectionScheduler?.notify(0); let t = ft(e); for (; t !== null && !(t[M] & 8192 || (t[M] |= 8192, !$i(t)));)
t = ft(t); }
function ur(e, t) { if (nt(e))
throw new T(911, !1); e[dt] === null && (e[dt] = []), e[dt].push(t); }
function Wi(e, t) { if (e[dt] === null)
return; let n = e[dt].indexOf(t); n !== -1 && e[dt].splice(n, 1); }
function ft(e) { let t = e[z]; return Y(t) ? t[z] : t; }
function ol(e) { return e[Lt] ??= []; }
function rl(e) { return e.cleanup ??= []; }
function mh(e, t, n, o) { let r = ol(t); r.push(n), e.firstCreatePass && rl(e).push(o, r.length - 1); }
var S = { lFrame: Mh(null), bindingsEnabled: !0, skipHydrationRootTNode: null };
var kc = !1;
function vh() { return S.lFrame.elementDepthCount; }
function yh() { S.lFrame.elementDepthCount++; }
function il() { S.lFrame.elementDepthCount--; }
function zi() { return S.bindingsEnabled; }
function dr() { return S.skipHydrationRootTNode !== null; }
function sl(e) { return S.skipHydrationRootTNode === e; }
function al() { S.bindingsEnabled = !0; }
function Eh(e) { S.skipHydrationRootTNode = e; }
function cl() { S.bindingsEnabled = !1; }
function ll() { S.skipHydrationRootTNode = null; }
function g() { return S.lFrame.lView; }
function R() { return S.lFrame.tView; }
function ul(e) { return S.lFrame.contextLView = e, e[H]; }
function dl(e) { return S.lFrame.contextLView = null, e; }
function _() { let e = fl(); for (; e !== null && e.type === 64;)
e = e.parent; return e; }
function fl() { return S.lFrame.currentTNode; }
function Hn() { let e = S.lFrame, t = e.currentTNode; return e.isParent ? t : t.parent; }
function ot(e, t) { let n = S.lFrame; n.currentTNode = e, n.isParent = t; }
function pl() { return S.lFrame.isParent; }
function hl() { S.lFrame.isParent = !1; }
function gl() { return S.lFrame.contextLView; }
function ml() { return kc; }
function Bn(e) { let t = kc; return kc = e, t; }
function me() { let e = S.lFrame, t = e.bindingRootIndex; return t === -1 && (t = e.bindingRootIndex = e.tView.bindingStartIndex), t; }
function rt() { return S.lFrame.bindingIndex; }
function vl(e) { return S.lFrame.bindingIndex = e; }
function ve() { return S.lFrame.bindingIndex++; }
function it(e) { let t = S.lFrame, n = t.bindingIndex; return t.bindingIndex = t.bindingIndex + e, n; }
function Ih() { return S.lFrame.inI18n; }
function yl(e) { S.lFrame.inI18n = e; }
function Dh(e, t) { let n = S.lFrame; n.bindingIndex = n.bindingRootIndex = e, Qi(t); }
function Th() { return S.lFrame.currentDirectiveIndex; }
function Qi(e) { S.lFrame.currentDirectiveIndex = e; }
function Zi(e) { let t = S.lFrame.currentDirectiveIndex; return t === -1 ? null : e[t]; }
function Yi() { return S.lFrame.currentQueryIndex; }
function fr(e) { S.lFrame.currentQueryIndex = e; }
function kM(e) { let t = e[m]; return t.type === 2 ? t.declTNode : t.type === 1 ? e[se] : null; }
function El(e, t, n) { if (n & 4) {
let r = t, i = e;
for (; r = r.parent, r === null && !(n & 1);)
if (r = kM(i), r === null || (i = i[on], r.type & 10))
break;
if (r === null)
return !1;
t = r, e = i;
} let o = S.lFrame = Ch(); return o.currentTNode = t, o.lView = e, !0; }
function Ki(e) { let t = Ch(), n = e[m]; S.lFrame = t, t.currentTNode = n.firstChild, t.lView = e, t.tView = n, t.contextLView = e, t.bindingIndex = n.bindingStartIndex, t.inI18n = !1; }
function Ch() { let e = S.lFrame, t = e === null ? null : e.child; return t === null ? Mh(e) : t; }
function Mh(e) { let t = { currentTNode: null, isParent: !0, lView: null, tView: null, selectedIndex: -1, contextLView: null, elementDepthCount: 0, currentNamespace: null, currentDirectiveIndex: -1, bindingRootIndex: -1, bindingIndex: -1, currentQueryIndex: 0, parent: e, child: null, inI18n: !1 }; return e !== null && (e.child = t), t; }
function Nh() { let e = S.lFrame; return S.lFrame = e.parent, e.currentTNode = null, e.lView = null, e; }
var Il = Nh;
function Ji() { let e = Nh(); e.isParent = !0, e.tView = null, e.selectedIndex = -1, e.contextLView = null, e.elementDepthCount = 0, e.currentDirectiveIndex = -1, e.currentNamespace = null, e.bindingRootIndex = -1, e.bindingIndex = -1, e.currentQueryIndex = 0; }
function wh(e) { return (S.lFrame.contextLView = nl(e, S.lFrame.contextLView))[H]; }
function le() { return S.lFrame.selectedIndex; }
function Ht(e) { S.lFrame.selectedIndex = e; }
function Le() { let e = S.lFrame; return mt(e.tView, e.selectedIndex); }
function Dl() { S.lFrame.currentNamespace = Xc; }
function Tl() { S.lFrame.currentNamespace = el; }
function Cl() { PM(); }
function PM() { S.lFrame.currentNamespace = null; }
function Ml() { return S.lFrame.currentNamespace; }
var _h = !0;
function pr() { return _h; }
function ze(e) { _h = e; }
function Pc(e, t = null, n = null, o) { let r = Nl(e, t, n, o); return r.resolveInjectorInitializers(), r; }
function Nl(e, t = null, n = null, o, r = new Set) { let i = [n || P, ch(e)]; return o = o || (typeof e == "object" ? void 0 : Be(e)), new Xt(i, t || Ln(), o || null, r); }
var ie = class e {
static THROW_IF_NOT_FOUND = Yt;
static NULL = new zo;
static create(t, n) { if (Array.isArray(t))
return Pc({ name: "" }, n, t, ""); {
let o = t.name ?? "";
return Pc({ name: o }, t.parent, t.providers, o);
} }
static \u0275prov = j({ token: e, providedIn: "any", factory: () => de(qc) });
static __NG_ELEMENT_ID__ = -1;
}, Sh = new C(""), Fe = (() => { class e {
static __NG_ELEMENT_ID__ = LM;
static __NG_ENV_ID__ = n => n;
} return e; })(), Qo = class extends Fe {
_lView;
constructor(t) { super(), this._lView = t; }
get destroyed() { return nt(this._lView); }
onDestroy(t) { let n = this._lView; return ur(n, t), () => Wi(n, t); }
};
function LM() { return new Qo(g()); }
var Xe = class {
_console = console;
handleError(t) { this._console.error("ERROR", t); }
}, st = new C("", { providedIn: "root", factory: () => { let e = E(_e), t; return n => { e.destroyed && !t ? setTimeout(() => { throw n; }) : (t ??= e.get(Xe), t.handleError(n)); }; } }), wl = { provide: Pe, useValue: () => void E(Xe), multi: !0 }, FM = new C("", { providedIn: "root", factory: () => { if (typeof ngServerMode < "u" && ngServerMode)
return; let e = E(Sh).defaultView; if (!e)
return; let t = E(st), n = i => { t(i.reason), i.preventDefault(); }, o = i => { i.error ? t(i.error) : t(new Error(i.message, { cause: i })), i.preventDefault(); }, r = () => { e.addEventListener("unhandledrejection", n), e.addEventListener("error", o); }; typeof Zone < "u" ? Zone.root.run(r) : r(), E(Fe).onDestroy(() => { e.removeEventListener("error", o), e.removeEventListener("unhandledrejection", n); }); } });
function jM() { return qe([ah(() => void E(FM))]); }
function _l(e) { return typeof e == "function" && e[re] !== void 0; }
function VM(e) { return null; }
function Bt(e, t) { let [n, o, r] = Wp(e, t?.equal), i = n, s = i[re]; return i.set = o, i.update = r, i.asReadonly = Un.bind(i), i; }
function Un() { let e = this[re]; if (e.readonlyFn === void 0) {
let t = () => this();
t[re] = e, e.readonlyFn = t;
} return e.readonlyFn; }
function Sl(e) { return _l(e) && typeof e.set == "function"; }
function HM(e, t) { if (Ci() !== null)
throw new T(-602, !1); }
var ln = (() => { class e {
view;
node;
constructor(n, o) { this.view = n, this.node = o; }
static __NG_ELEMENT_ID__ = BM;
} return e; })();
function BM() { return new ln(g(), _()); }
var Ce = class {
}, $n = new C("", { providedIn: "root", factory: () => !1 });
var bl = new C(""), Xi = new C(""), vt = (() => { class e {
taskId = 0;
pendingTasks = new Set;
destroyed = !1;
pendingTask = new qp(!1);
get hasPendingTasks() { return this.destroyed ? !1 : this.pendingTask.value; }
get hasPendingTasksObservable() { return this.destroyed ? new $p(n => { n.next(!1), n.complete(); }) : this.pendingTask; }
add() { !this.hasPendingTasks && !this.destroyed && this.pendingTask.next(!0); let n = this.taskId++; return this.pendingTasks.add(n), n; }
has(n) { return this.pendingTasks.has(n); }
remove(n) { this.pendingTasks.delete(n), this.pendingTasks.size === 0 && this.hasPendingTasks && this.pendingTask.next(!1); }
ngOnDestroy() { this.pendingTasks.clear(), this.hasPendingTasks && this.pendingTask.next(!1), this.destroyed = !0, this.pendingTask.unsubscribe(); }
static \u0275prov = j({ token: e, providedIn: "root", factory: () => new e });
} return e; })(), hr = (() => { class e {
internalPendingTasks = E(vt);
scheduler = E(Ce);
errorHandler = E(st);
add() { let n = this.internalPendingTasks.add(); return () => { this.internalPendingTasks.has(n) && (this.scheduler.notify(11), this.internalPendingTasks.remove(n)); }; }
run(n) { let o = this.add(); n().catch(this.errorHandler).finally(o); }
static \u0275prov = j({ token: e, providedIn: "root", factory: () => new e });
} return e; })();
function un(...e) { }
var gr = (() => { class e {
static \u0275prov = j({ token: e, providedIn: "root", factory: () => new Lc });
} return e; })(), Lc = class {
dirtyEffectCount = 0;
queues = new Map;
add(t) { this.enqueue(t), this.schedule(t); }
schedule(t) { t.dirty && this.dirtyEffectCount++; }
remove(t) { let n = t.zone, o = this.queues.get(n); o.has(t) && (o.delete(t), t.dirty && this.dirtyEffectCount--); }
enqueue(t) { let n = t.zone; this.queues.has(n) || this.queues.set(n, new Set); let o = this.queues.get(n); o.has(t) || o.add(t); }
flush() { for (; this.dirtyEffectCount > 0;) {
let t = !1;
for (let [n, o] of this.queues)
n === null ? t ||= this.flushQueue(o) : t ||= n.run(() => this.flushQueue(o));
t || (this.dirtyEffectCount = 0);
} }
flushQueue(t) { let n = !1; for (let o of t)
o.dirty && (this.dirtyEffectCount--, n = !0, o.run()); return n; }
};
import { setActiveConsumer as bh } from "@angular/core/primitives/signals";
import { map as UM } from "rxjs/operators";
var qn = { JSACTION: "jsaction" };
function ct(e) { return { toString: e }.toString(); }
var zn = "__annotations__", Qn = "__parameters__", Zn = "__prop__metadata__";
function zr(e, t, n, o, r) { return ct(() => { let i = rd(t); function s(...a) { if (this instanceof s)
return i.call(this, ...a), this; let c = new s(...a); return function (u) { return r && r(u, ...a), (u.hasOwnProperty(zn) ? u[zn] : Object.defineProperty(u, zn, { value: [] })[zn]).push(c), u; }; } return n && (s.prototype = Object.create(n.prototype)), s.prototype.ngMetadataName = e, s.annotationCls = s, s; }); }
function rd(e) { return function (...n) { if (e) {
let o = e(...n);
for (let r in o)
this[r] = o[r];
} }; }
function Co(e, t, n) { return ct(() => { let o = rd(t); function r(...i) { if (this instanceof r)
return o.apply(this, i), this; let s = new r(...i); return a.annotation = s, a; function a(c, l, u) { let d = c.hasOwnProperty(Qn) ? c[Qn] : Object.defineProperty(c, Qn, { value: [] })[Qn]; for (; d.length <= u;)
d.push(null); return (d[u] = d[u] || []).push(s), c; } } return r.prototype.ngMetadataName = e, r.annotationCls = r, r; }); }
function Mt(e, t, n, o) { return ct(() => { let r = rd(t); function i(...s) { if (this instanceof i)
return r.apply(this, s), this; let a = new i(...s); function c(l, u) { if (l === void 0)
throw new Error("Standard Angular field decorators are not supported in JIT mode."); let d = l.constructor, f = d.hasOwnProperty(Zn) ? d[Zn] : Object.defineProperty(d, Zn, { value: {} })[Zn]; f[u] = f.hasOwnProperty(u) && f[u] || [], f[u].unshift(a); } return c; } return n && (i.prototype = Object.create(n.prototype)), i.prototype.ngMetadataName = e, i.annotationCls = i, i; }); }
var Bg = kn(Co("Inject", e => ({ token: e })), -1), Ug = kn(Co("Optional"), 8), $g = kn(Co("Self"), 2), qg = kn(Co("SkipSelf"), 4), Gg = kn(Co("Host"), 1);
function ne(e) { let t = Se.ng; if (t && t.\u0275compilerFacade)
return t.\u0275compilerFacade; throw new Error("JIT compiler unavailable"); }
var Rh = { \u0275\u0275defineInjectable: j, \u0275\u0275defineInjector: Jo, \u0275\u0275inject: de, \u0275\u0275invalidFactoryDep: Pi, resolveForwardRef: x }, Wg = Function;
function vr(e) { return typeof e == "function"; }
var $M = /^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*(arguments|(?:[^()]+\(\[\],)?[^()]+\(arguments\).*)\)/, qM = /^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/, GM = /^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/, WM = /^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(\)\s*{[^}]*super\(\.\.\.arguments\)/;
function zM(e) { return $M.test(e) || WM.test(e) || qM.test(e) && !GM.test(e); }
var Is = class {
_reflect;
constructor(t) { this._reflect = t || Se.Reflect; }
factory(t) { return (...n) => new t(...n); }
_zipTypesAndAnnotations(t, n) { let o; typeof t > "u" ? o = or(n.length) : o = or(t.length); for (let r = 0; r < o.length; r++)
typeof t > "u" ? o[r] = [] : t[r] && t[r] != Object ? o[r] = [t[r]] : o[r] = [], n && n[r] != null && (o[r] = o[r].concat(n[r])); return o; }
_ownParameters(t, n) { let o = t.toString(); if (zM(o))
return null; if (t.parameters && t.parameters !== n.parameters)
return t.parameters; let r = t.ctorParameters; if (r && r !== n.ctorParameters) {
let a = typeof r == "function" ? r() : r, c = a.map(u => u && u.type), l = a.map(u => u && Rl(u.decorators));
return this._zipTypesAndAnnotations(c, l);
} let i = t.hasOwnProperty(Qn) && t[Qn], s = this._reflect && this._reflect.getOwnMetadata && this._reflect.getOwnMetadata("design:paramtypes", t); return s || i ? this._zipTypesAndAnnotations(s, i) : or(t.length); }
parameters(t) { if (!vr(t))
return []; let n = es(t), o = this._ownParameters(t, n); return !o && n !== Object && (o = this.parameters(n)), o || []; }
_ownAnnotations(t, n) { if (t.annotations && t.annotations !== n.annotations) {
let o = t.annotations;
return typeof o == "function" && o.annotations && (o = o.annotations), o;
} return t.decorators && t.decorators !== n.decorators ? Rl(t.decorators) : t.hasOwnProperty(zn) ? t[zn] : null; }
annotations(t) { if (!vr(t))
return []; let n = es(t), o = this._ownAnnotations(t, n) || []; return (n !== Object ? this.annotations(n) : []).concat(o); }
_ownPropMetadata(t, n) { if (t.propMetadata && t.propMetadata !== n.propMetadata) {
let o = t.propMetadata;
return typeof o == "function" && o.propMetadata && (o = o.propMetadata), o;
} if (t.propDecorators && t.propDecorators !== n.propDecorators) {
let o = t.propDecorators, r = {};
return Object.keys(o).forEach(i => { r[i] = Rl(o[i]); }), r;
} return t.hasOwnProperty(Zn) ? t[Zn] : null; }
propMetadata(t) { if (!vr(t))
return {}; let n = es(t), o = {}; if (n !== Object) {
let i = this.propMetadata(n);
Object.keys(i).forEach(s => { o[s] = i[s]; });
} let r = this._ownPropMetadata(t, n); return r && Object.keys(r).forEach(i => { let s = []; o.hasOwnProperty(i) && s.push(...o[i]), s.push(...r[i]), o[i] = s; }), o; }
ownPropMetadata(t) { return vr(t) ? this._ownPropMetadata(t, es(t)) || {} : {}; }
hasLifecycleHook(t, n) { return t instanceof Wg && n in t.prototype; }
};
function Rl(e) { return e ? e.map(t => { let o = t.type.annotationCls, r = t.args ? t.args : []; return new o(...r); }) : []; }
function es(e) { let t = e.prototype ? Object.getPrototypeOf(e.prototype) : null; return (t ? t.constructor : null) || Object; }
var Ds = class {
previousValue;
currentValue;
firstChange;
constructor(t, n, o) { this.previousValue = t, this.currentValue = n, this.firstChange = o; }
isFirstChange() { return this.firstChange; }
};
function zg(e, t, n, o) { t !== null ? t.applyValueToInputSignal(t, o) : e[n] = o; }
var Qg = (() => { let e = () => Zg; return e.ngInherit = !0, e; })();
function Zg(e) { return e.type.prototype.ngOnChanges && (e.setInput = ZM), QM; }
function QM() { let e = Kg(this), t = e?.current; if (t) {
let n = e.previous;
if (n === ke)
e.previous = t;
else
for (let o in t)
n[o] = t[o];
e.current = null, this.ngOnChanges(t);
} }
function ZM(e, t, n, o, r) { let i = this.declaredInputs[o], s = Kg(e) || YM(e, { previous: ke, current: null }), a = s.current || (s.current = {}), c = s.previous, l = c[i]; a[i] = new Ds(l && l.currentValue, n, c === ke), zg(e, t, r, n); }
var Yg = "__ngSimpleChanges__";
function Kg(e) { return e[Yg] || null; }
function YM(e, t) { return e[Yg] = t; }
var Ah = [];
var V = function (e, t = null, n) { for (let o = 0; o < Ah.length; o++) {
let r = Ah[o];
r(e, t, n);
} };
function KM(e, t, n) { let { ngOnChanges: o, ngOnInit: r, ngDoCheck: i } = t.type.prototype; if (o) {
let s = Zg(t);
(n.preOrderHooks ??= []).push(e, s), (n.preOrderCheckHooks ??= []).push(e, s);
} r && (n.preOrderHooks ??= []).push(0 - e, r), i && ((n.preOrderHooks ??= []).push(e, i), (n.preOrderCheckHooks ??= []).push(e, i)); }
function Jg(e, t) { for (let n = t.directiveStart, o = t.directiveEnd; n < o; n++) {
let i = e.data[n].type.prototype, { ngAfterContentInit: s, ngAfterContentChecked: a, ngAfterViewInit: c, ngAfterViewChecked: l, ngOnDestroy: u } = i;
s && (e.contentHooks ??= []).push(-n, s), a && ((e.contentHooks ??= []).push(n, a), (e.contentCheckHooks ??= []).push(n, a)), c && (e.viewHooks ??= []).push(-n, c), l && ((e.viewHooks ??= []).push(n, l), (e.viewCheckHooks ??= []).push(n, l)), u != null && (e.destroyHooks ??= []).push(n, u);
} }
function us(e, t, n) { Xg(e, t, 3, n); }
function ds(e, t, n, o) { (e[M] & 3) === n && Xg(e, t, n, o); }
function Al(e, t) { let n = e[M]; (n & 3) === t && (n &= 16383, n += 1, e[M] = n); }
function Xg(e, t, n, o) { let r = o !== void 0 ? e[rn] & 65535 : 0, i = o ?? -1, s = t.length - 1, a = 0; for (let c = r; c < s; c++)
if (typeof t[c + 1] == "number") {
if (a = t[c], o != null && a >= o)
break;
}
else
t[c] < 0 && (e[rn] += 65536), (a < i || i == -1) && (JM(e, n, t, c), e[rn] = (e[rn] & 4294901760) + c + 2), c++; }
function Oh(e, t) { V(4, e, t); let n = A(null); try {
t.call(e);
}
finally {
A(n), V(5, e, t);
} }
function JM(e, t, n, o) { let r = n[o] < 0, i = n[o + 1], s = r ? -n[o] : n[o], a = e[s]; r ? e[M] >> 14 < e[rn] >> 16 && (e[M] & 3) === t && (e[M] += 16384, Oh(a, i)) : Oh(a, i); }
var eo = -1, mn = class {
factory;
name;
injectImpl;
resolving = !1;
canSeeViewProviders;
multi;
componentProviders;
index;
providerFactory;
constructor(t, n, o, r) { this.factory = t, this.name = r, this.canSeeViewProviders = n, this.injectImpl = o; }
};
function Ks(e) { return e != null && typeof e == "object" && (e.insertBeforeIndex === null || typeof e.insertBeforeIndex == "number" || Array.isArray(e.insertBeforeIndex)); }
function em(e) { return !!(e.type & 128); }
function XM(e) { return (e.flags & 8) !== 0; }
function eN(e) { return (e.flags & 16) !== 0; }
function tN(e, t, n) { let o = 0; for (; o < n.length;) {
let r = n[o];
if (typeof r == "number") {
if (r !== 0)
break;
o++;
let i = n[o++], s = n[o++], a = n[o++];
e.setAttribute(t, s, a, i);
}
else {
let i = r, s = n[++o];
nN(i) ? e.setProperty(t, i, s) : e.setAttribute(t, i, s), o++;
}
} return o; }
function tm(e) { return e === 3 || e === 4 || e === 6; }
function nN(e) { return e.charCodeAt(0) === 64; }
function co(e, t) { if (!(t === null || t.length === 0))
if (e === null || e.length === 0)
e = t.slice();
else {
let n = -1;
for (let o = 0; o < t.length; o++) {
let r = t[o];
typeof r == "number" ? n = r : n === 0 || (n === -1 || n === 2 ? xh(e, n, r, null, t[++o]) : xh(e, n, r, null, null));
}
} return e; }
function xh(e, t, n, o, r) { let i = 0, s = e.length; if (t === -1)
s = -1;
else
for (; i < e.length;) {
let a = e[i++];
if (typeof a == "number") {
if (a === t) {
s = -1;
break;
}
else if (a > t) {
s = i - 1;
break;
}
}
} for (; i < e.length;) {
let a = e[i];
if (typeof a == "number")
break;
if (a === n) {
r !== null && (e[i + 1] = r);
return;
}
i++, r !== null && i++;
} s !== -1 && (e.splice(s, 0, t), i = s + 1), e.splice(i++, 0, n), r !== null && e.splice(i++, 0, r); }
function nm(e) { return e !== eo; }
function Ts(e) { return e & 32767; }
function oN(e) { return e >> 16; }
function Cs(e, t) { let n = oN(e), o = t; for (; n > 0;)
o = o[on], n--; return o; }
var nu = !0;
function Ms(e) { let t = nu; return nu = e, t; }
var rN = 256, om = rN - 1, rm = 5, iN = 0, at = {};
function sN(e, t, n) { let o; typeof n == "string" ? o = n.charCodeAt(0) || 0 : n.hasOwnProperty(tn) && (o = n[tn]), o == null && (o = n[tn] = iN++); let r = o & om, i = 1 << r; t.data[e + (r >> rm)] |= i; }
function Ns(e, t) { let n = im(e, t); if (n !== -1)
return n; let o = t[m]; o.firstCreatePass && (e.injectorIndex = t.length, Ol(o.data, e), Ol(t, null), Ol(o.blueprint, null)); let r = id(e, t), i = e.injectorIndex; if (nm(r)) {
let s = Ts(r), a = Cs(r, t), c = a[m].data;
for (let l = 0; l < 8; l++)
t[i + l] = a[s + l] | c[s + l];
} return t[i + 8] = r, i; }
function Ol(e, t) { e.push(0, 0, 0, 0, 0, 0, 0, 0, t); }
function im(e, t) { return e.injectorIndex === -1 || e.parent && e.parent.injectorIndex === e.injectorIndex || t[e.injectorIndex + 8] === null ? -1 : e.injectorIndex; }
function id(e, t) { if (e.parent && e.parent.injectorIndex !== -1)
return e.parent.injectorIndex; let n = 0, o = null, r = t; for (; r !== null;) {
if (o = dm(r), o === null)
return eo;
if (n++, r = r[on], o.injectorIndex !== -1)
return o.injectorIndex | n << 16;
} return eo; }
function ou(e, t, n) { sN(e, t, n); }
function aN(e, t) { if (t === "class")
return e.classes; if (t === "style")
return e.styles; let n = e.attrs; if (n) {
let o = n.length, r = 0;
for (; r < o;) {
let i = n[r];
if (tm(i))
break;
if (i === 0)
r = r + 2;
else if (typeof i == "number")
for (r++; r < o && typeof n[r] == "string";)
r++;
else {
if (i === t)
return n[r + 1];
r = r + 2;
}
}
} return null; }
function sm(e, t, n) { if (n & 8 || e !== void 0)
return e; ki(t, "NodeInjector"); }
function am(e, t, n, o) { if (n & 8 && o === void 0 && (o = null), (n & 3) === 0) {
let r = e[L], i = Ee(void 0);
try {
return r ? r.get(t, o, n & 8) : Hc(t, o, n & 8);
}
finally {
Ee(i);
}
} return sm(o, t, n); }
function cm(e, t, n, o = 0, r) { if (e !== null) {
if (t[M] & 2048 && !(o & 2)) {
let s = dN(e, t, n, o, at);
if (s !== at)
return s;
}
let i = lm(e, t, n, o, at);
if (i !== at)
return i;
} return am(t, n, o, r); }
function lm(e, t, n, o, r) { let i = lN(n); if (typeof i == "function") {
if (!El(t, e, o))
return o & 1 ? sm(r, n, o) : am(t, n, o, r);
try {
let s;
if (s = i(o), s == null && !(o & 8))
ki(n);
else
return s;
}
finally {
Il();
}
}
else if (typeof i == "number") {
let s = null, a = im(e, t), c = eo, l = o & 1 ? t[J][se] : null;
for ((a === -1 || o & 4) && (c = a === -1 ? id(e, t) : t[a + 8], c === eo || !Ph(o, !1) ? a = -1 : (s = t[m], a = Ts(c), t = Cs(c, t))); a !== -1;) {
let u = t[m];
if (kh(i, a, u.data)) {
let d = cN(a, t, n, s, o, l);
if (d !== at)
return d;
}
c = t[a + 8], c !== eo && Ph(o, t[m].data[a + 8] === l) && kh(i, a, t) ? (s = u, a = Ts(c), t = Cs(c, t)) : a = -1;
}
} return r; }
function cN(e, t, n, o, r, i) { let s = t[m], a = s.data[e + 8], c = o == null ? Me(a) && nu : o != s && (a.type & 3) !== 0, l = r & 1 && i === a, u = fs(a, s, n, c, l); return u !== null ? Ar(t, s, u, a, r) : at; }
function fs(e, t, n, o, r) { let i = e.providerIndexes, s = t.data, a = i & 1048575, c = e.directiveStart, l = e.directiveEnd, u = i >> 20, d = o ? a : a + u, f = r ? a + u : l; for (let p = d; p < f; p++) {
let h = s[p];
if (p < c && n === h || p >= c && h.type === n)
return p;
} if (r) {
let p = s[c];
if (p && Ne(p) && p.type === n)
return c;
} return null; }
function Ar(e, t, n, o, r) { let i = e[n], s = t.data; if (i instanceof mn) {
let a = i;
if (a.resolving) {
let p = be(s[n]);
throw Vc(p);
}
let c = Ms(a.canSeeViewProviders);
a.resolving = !0;
let l = s[n].type || s[n], u, d = a.injectImpl ? Ee(a.injectImpl) : null, f = El(e, o, 0);
try {
i = e[n] = a.factory(void 0, r, s, e, o), t.firstCreatePass && n >= o.directiveStart && KM(n, s[n], t);
}
finally {
d !== null && Ee(d), Ms(c), a.resolving = !1, Il();
}
} return i; }
function lN(e) { if (typeof e == "string")
return e.charCodeAt(0) || 0; let t = e.hasOwnProperty(tn) ? e[tn] : void 0; return typeof t == "number" ? t >= 0 ? t & om : uN : t; }
function kh(e, t, n) { let o = 1 << e; return !!(n[t + (e >> rm)] & o); }
function Ph(e, t) { return !(e & 2) && !(e & 1 && t); }
var $t = class {
_tNode;
_lView;
constructor(t, n) { this._tNode = t, this._lView = n; }
get(t, n, o) { return cm(this._tNode, this._lView, t, Kt(o), n); }
};
function uN() { return new $t(_(), g()); }
function um(e) { return ct(() => { let t = e.prototype.constructor, n = t[Je] || ru(t), o = Object.prototype, r = Object.getPrototypeOf(e.prototype).constructor; for (; r && r !== o;) {
let i = r[Je] || ru(r);
if (i && i !== n)
return i;
r = Object.getPrototypeOf(r);
} return i => new i; }); }
function ru(e) { return Ko(e) ? () => { let t = ru(x(e)); return t && t(); } : Pt(e); }
function dN(e, t, n, o, r) { let i = e, s = t; for (; i !== null && s !== null && s[M] & 2048 && !tt(s);) {
let a = lm(i, s, n, o | 2, at);
if (a !== at)
return a;
let c = i.parent;
if (!c) {
let l = s[Zc];
if (l) {
let u = l.get(n, at, o);
if (u !== at)
return u;
}
c = dm(s), s = s[on];
}
i = c;
} return r; }
function dm(e) { let t = e[m], n = t.type; return n === 2 ? t.declTNode : n === 1 ? e[se] : null; }
function Js(e) { return aN(_(), e); }
var fm = Co("Attribute", e => ({ attributeName: e, __NG_ELEMENT_ID__: () => Js(e) })), Lh = null;
function sd() { return Lh = Lh || new Is; }
function Xs(e) { return pm(sd().parameters(e)); }
function pm(e) { return e.map(t => fN(t)); }
function fN(e) { let t = { token: null, attribute: null, host: !1, optional: !1, self: !1, skipSelf: !1 }; if (Array.isArray(e) && e.length > 0)
for (let n = 0; n < e.length; n++) {
let o = e[n];
if (o === void 0)
continue;
let r = Object.getPrototypeOf(o);
if (o instanceof Ug || r.ngMetadataName === "Optional")
t.optional = !0;
else if (o instanceof qg || r.ngMetadataName === "SkipSelf")
t.skipSelf = !0;
else if (o instanceof $g || r.ngMetadataName === "Self")
t.self = !0;
else if (o instanceof Gg || r.ngMetadataName === "Host")
t.host = !0;
else if (o instanceof Bg)
t.token = o.token;
else if (o instanceof fm) {
if (o.attributeName === void 0)
throw new T(204, !1);
t.attribute = o.attributeName;
}
else
t.token = o;
}
else
e === void 0 || Array.isArray(e) && e.length === 0 ? t.token = null : t.token = e; return t; }
function pN(e, t) { let n = null, o = null; e.hasOwnProperty(xn) || Object.defineProperty(e, xn, { get: () => (n === null && (n = ne({ usage: 0, kind: "injectable", type: e }).compileInjectable(Rh, `ng:///${e.name}/\u0275prov.js`, vN(e, t))), n) }), e.hasOwnProperty(Je) || Object.defineProperty(e, Je, { get: () => { if (o === null) {
let r = ne({ usage: 0, kind: "injectable", type: e });
o = r.compileFactory(Rh, `ng:///${e.name}/\u0275fac.js`, { name: e.name, type: e, typeArgumentCount: 0, deps: Xs(e), target: r.FactoryTarget.Injectable });
} return o; }, configurable: !0 }); }
var hN = F({ provide: String, useValue: F });
function Fh(e) { return e.useClass !== void 0; }
function gN(e) { return hN in e; }
function jh(e) { return e.useFactory !== void 0; }
function mN(e) { return e.useExisting !== void 0; }
function vN(e, t) { let n = t || { providedIn: null }, o = { name: e.name, type: e, typeArgumentCount: 0, providedIn: n.providedIn }; return (Fh(n) || jh(n)) && n.deps !== void 0 && (o.deps = pm(n.deps)), Fh(n) ? o.useClass = n.useClass : gN(n) ? o.useValue = n.useValue : jh(n) ? o.useFactory = n.useFactory : mN(n) && (o.useExisting = n.useExisting), o; }
var yN = zr("Injectable", void 0, void 0, void 0, (e, t) => pN(e, t));
function EN() { return Mo(_(), g()); }
function Mo(e, t) { return new Qr(ce(e, t)); }
var Qr = (() => { class e {
nativeElement;
constructor(n) { this.nativeElement = n; }
static __NG_ELEMENT_ID__ = EN;
} return e; })();
function hm(e) { return e instanceof Qr ? e.nativeElement : e; }
function IN() { return this._results[Symbol.iterator](); }
var ws = class {
_emitDistinctChangesOnly;
dirty = !0;
_onDirty = void 0;
_results = [];
_changesDetected = !1;
_changes = void 0;
length = 0;
first = void 0;
last = void 0;
get changes() { return this._changes ??= new Ti; }
constructor(t = !1) { this._emitDistinctChangesOnly = t; }
get(t) { return this._results[t]; }
map(t) { return this._results.map(t); }
filter(t) { return this._results.filter(t); }
find(t) { return this._results.find(t); }
reduce(t, n) { return this._results.reduce(t, n); }
forEach(t) { this._results.forEach(t); }
some(t) { return this._results.some(t); }
toArray() { return this._results.slice(); }
toString() { return this._results.toString(); }
reset(t, n) { this.dirty = !1; let o = Ue(t); (this._changesDetected = !sh(this._results, o, n)) && (this._results = o, this.length = o.length, this.last = o[this.length - 1], this.first = o[0]); }
notifyOnChanges() { this._changes !== void 0 && (this._changesDetected || !this._emitDistinctChangesOnly) && this._changes.next(this); }
onDirty(t) { this._onDirty = t; }
setDirty() { this.dirty = !0, this._onDirty?.(); }
destroy() { this._changes !== void 0 && (this._changes.complete(), this._changes.unsubscribe()); }
[Symbol.iterator] = IN;
}, No = "ngSkipHydration", DN = "ngskiphydration";
function ad(e) { let t = e.mergedAttrs; if (t === null)
return !1; for (let n = 0; n < t.length; n += 2) {
let o = t[n];
if (typeof o == "number")
return !1;
if (typeof o == "string" && o.toLowerCase() === DN)
return !0;
} return !1; }
function gm(e) { return e.hasAttribute(No); }
function Or(e) { return (e.flags & 128) === 128; }
function wo(e) { if (Or(e))
return !0; let t = e.parent; for (; t;) {
if (Or(e) || ad(t))
return !0;