-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain-esnext.js
More file actions
1185 lines (963 loc) · 118 KB
/
main-esnext.js
File metadata and controls
1185 lines (963 loc) · 118 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
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([["main"],{
/***/ "./node_modules/raw-loader/dist/cjs.js!./src/app/app.component.html":
/*!**************************************************************************!*\
!*** ./node_modules/raw-loader/dist/cjs.js!./src/app/app.component.html ***!
\**************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = ("<router-outlet></router-outlet>");
/***/ }),
/***/ "./node_modules/raw-loader/dist/cjs.js!./src/app/modules/access-restricted/access-restricted.component.html":
/*!******************************************************************************************************************!*\
!*** ./node_modules/raw-loader/dist/cjs.js!./src/app/modules/access-restricted/access-restricted.component.html ***!
\******************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = ("<div class=\"maincontainer\">\n <div class=\"bat\">\n <img class=\"wing leftwing\" \n src=\"../../assets/images/bat-wing.png\">\n <img class=\"body\"\n src=\"../../assets/images/bat-body.png\" alt=\"bat\">\n <img class=\"wing rightwing\"\n src=\"../../assets/images/bat-wing.png\">\n </div>\n <div class=\"bat\">\n <img class=\"wing leftwing\" \n src=\"../../assets/images/bat-wing.png\">\n <img class=\"body\"\n src=\"../../assets/images/bat-body.png\" alt=\"bat\">\n <img class=\"wing rightwing\"\n src=\"../../assets/images/bat-wing.png\">\n </div>\n <div class=\"bat\">\n <img class=\"wing leftwing\" \n src=\"../../assets/images/bat-wing.png\">\n <img class=\"body\"\n src=\"../../assets/images/bat-body.png\" alt=\"bat\">\n <img class=\"wing rightwing\"\n src=\"../../assets/images/bat-wing.png\">\n </div>\n <img class=\"foregroundimg\" src=\"../../assets/images/HauntedHouseForeground.png\" alt=\"haunted house\">\n \n</div>\n<h1 class=\"errorcode\">ERROR 403</h1>\n<div class=\"errortext\">This area is forbidden. Turn back now!</div>\n\n");
/***/ }),
/***/ "./node_modules/raw-loader/dist/cjs.js!./src/app/modules/access404/access404.component.html":
/*!**************************************************************************************************!*\
!*** ./node_modules/raw-loader/dist/cjs.js!./src/app/modules/access404/access404.component.html ***!
\**************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = ("<div class=\"wrapper\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1920 1080\">\n <title>404</title>\n <g id=\"Layer_12 yellow-back-fig\" data-name=\"Layer 12\">\n <path class=\"cls-1\" d=\"M600.87,872H156a4,4,0,0,0-3.78,4.19h0a4,4,0,0,0,3.78,4.19H600.87a4,4,0,0,0,3.78-4.19h0A4,4,0,0,0,600.87,872Z\"/>\n <rect class=\"cls-1\" x=\"680.91\" y=\"871.98\" width=\"513.38\" height=\"8.39\" rx=\"4.19\" ry=\"4.19\"/>\n <path class=\"cls-1\" d=\"M1480,876.17h0c0,2.32,2.37,4.19,5.3,4.19h350.61c2.93,0,5.3-1.88,5.3-4.19h0c0-2.32-2.37-4.19-5.3-4.19H1485.26C1482.33,872,1480,873.86,1480,876.17Z\"/>\n <rect class=\"cls-1\" x=\"492.21\" y=\"920.64\" width=\"249.8\" height=\"8.39\" rx=\"4.19\" ry=\"4.19\"/>\n <path class=\"cls-1\" d=\"M1549.14,924.84h0a4.19,4.19,0,0,0-4.19-4.19H1067.46a14.66,14.66,0,0,1,.35,3.21v1A4.19,4.19,0,0,0,1072,929h472.94A4.19,4.19,0,0,0,1549.14,924.84Z\"/>\n <path class=\"cls-1\" d=\"M865.5,924.84h0a4.19,4.19,0,0,0,4.19,4.19h82.37a12.28,12.28,0,0,1-.19-2v-2.17a4.19,4.19,0,0,0-4.19-4.19h-78A4.19,4.19,0,0,0,865.5,924.84Z\"/>\n <rect class=\"cls-1\" x=\"915.6\" y=\"981.47\" width=\"54.72\" height=\"8.39\" rx=\"4.19\" ry=\"4.19\"/>\n <path class=\"cls-1\" d=\"M730.33,985.67h0c0,2.32,4.23,4.19,9.44,4.19h104.3c5.22,0,9.44-1.88,9.44-4.19h0c0-2.32-4.23-4.19-9.44-4.19H739.78C734.56,981.47,730.33,983.35,730.33,985.67Z\"/>\n <rect class=\"cls-1\" x=\"997.06\" y=\"981.47\" width=\"78.11\" height=\"8.39\" rx=\"4.19\" ry=\"4.19\"/>\n \n <g id=\"round-conf\">\n <path class=\"cls-1 circle c1\" d=\"M536.41,155.14a17.77,17.77,0,1,0,17.77,17.77A17.77,17.77,0,0,0,536.41,155.14Zm0,28.68a10.9,10.9,0,1,1,10.9-10.9A10.9,10.9,0,0,1,536.41,183.81Z\"/>\n <path class=\"cls-1 circle c2\" d=\"M1345.09,82.44a17.77,17.77,0,1,0,17.77,17.77A17.77,17.77,0,0,0,1345.09,82.44Zm0,28.68a10.9,10.9,0,1,1,10.9-10.9A10.9,10.9,0,0,1,1345.09,111.12Z\"/>\n <path class=\"cls-1 circle c3\" d=\"M70.12,363A17.77,17.77,0,1,0,87.89,380.8,17.77,17.77,0,0,0,70.12,363Zm0,28.68A10.9,10.9,0,1,1,81,380.8,10.9,10.9,0,0,1,70.12,391.7Z\"/>\n <path class=\"cls-1 circle c4\" d=\"M170.47,751.82a17.77,17.77,0,1,0,17.77,17.77A17.77,17.77,0,0,0,170.47,751.82Zm0,28.68a10.9,10.9,0,1,1,10.9-10.9A10.9,10.9,0,0,1,170.47,780.5Z\"/>\n <path class=\"cls-1 circle c5\" d=\"M1457.34,762.73a17.77,17.77,0,1,0,17.77,17.77A17.77,17.77,0,0,0,1457.34,762.73Zm0,28.68a10.9,10.9,0,1,1,10.9-10.9A10.9,10.9,0,0,1,1457.34,791.4Z\"/>\n <path class=\"cls-1 circle c6\" d=\"M1829.15,407.49a17.77,17.77,0,1,0,17.77,17.77A17.77,17.77,0,0,0,1829.15,407.49Zm0,28.68a10.9,10.9,0,1,1,10.9-10.9A10.9,10.9,0,0,1,1829.15,436.17Z\"/>\n </g>\n </g>\n <g id=\"fortyfour\" data-name=\"Layer 2\">\n <g class=\"four a\">\n \n <rect class=\"cls-2\" x=\"233.74\" y=\"391.14\" width=\"120.71\" height=\"466.29\" rx=\"57.1\" ry=\"57.1\" transform=\"translate(918.39 330.19) rotate(90)\"/>\n \n <rect class=\"cls-3\" x=\"333.83\" y=\"475.1\" width=\"120.71\" height=\"396.88\" rx=\"60.36\" ry=\"60.36\"/>\n \n <rect class=\"cls-3\" x=\"197.13\" y=\"122.89\" width=\"120.71\" height=\"604.75\" rx=\"60.36\" ry=\"60.36\" transform=\"translate(290.49 -70.78) rotate(35)\"/>\n \n </g>\n <g class=\"four b\">\n\n <rect class=\"cls-2\" x=\"1558.84\" y=\"391.91\" width=\"120.71\" height=\"466.29\" rx=\"57.1\" ry=\"57.1\" transform=\"translate(2244.26 -994.14) rotate(90)\"/>\n \n \n <rect class=\"cls-3\" x=\"1658.92\" y=\"475.87\" width=\"120.71\" height=\"396.88\" rx=\"60.36\" ry=\"60.36\"/>\n\n <rect class=\"cls-3\" x=\"1522.22\" y=\"123.66\" width=\"120.71\" height=\"604.75\" rx=\"60.36\" ry=\"60.36\" transform=\"translate(530.57 -830.68) rotate(35)\"/>\n \n </g>\n <path class=\"cls-3\" id=\"ou\" d=\"M956.54,168.2c-194.34,0-351.89,157.55-351.89,351.89S762.19,872,956.54,872s351.89-157.55,351.89-351.89S1150.88,168.2,956.54,168.2Zm0,584.49c-128.46,0-232.6-104.14-232.6-232.6s104.14-232.6,232.6-232.6,232.6,104.14,232.6,232.6S1085,752.69,956.54,752.69Z\"/>\n </g>\n <g id=\"umbrella\" data-name=\"Layer 3\">\n <g>\n <circle class=\"cls-4\" cx=\"1187.53\" cy=\"240.3\" r=\"7.66\" transform=\"translate(236.36 990.8) rotate(-49.71)\"/>\n <g>\n <path class=\"cls-5\" d=\"M1219.56,359.67l55,100.52c32.7-48.48-6.87-142.43-91.75-214.38-84.41-71.55-183-95.33-225.81-56l114.21,44.14Z\"/>\n <path class=\"cls-6\" d=\"M1182.79,245.81c-84.41-71.55-183-95.33-225.81-56l114.21,44.14Z\"/>\n <polygon class=\"cls-7\" points=\"1182.79 245.81 1071.19 233.91 1219.56 359.67 1182.79 245.81\"/>\n </g>\n <polygon class=\"cls-8\" points=\"1180.91 409.02 1274.54 460.19 1219.56 359.67 1071.19 233.91 956.98 189.76 1021.95 274.29 1180.91 409.02\"/>\n <g>\n <rect class=\"cls-4\" x=\"997.45\" y=\"358.35\" width=\"175.58\" height=\"5.1\" transform=\"translate(108.21 955.38) rotate(-49.71)\"/>\n <rect class=\"cls-4\" x=\"1028.09\" y=\"399.36\" width=\"21.46\" height=\"32.27\" rx=\"10.73\" ry=\"10.73\" transform=\"translate(515.04 -573.16) rotate(40.29)\"/>\n </g>\n </g>\n </g>\n <g id=\"pillow\" data-name=\"Layer 4\">\n <path class=\"cls-1\" d=\"M754,627.07c7,.54,12.92-2.82,13.35-7.59s-4.95-9.24-12-9.87a18.55,18.55,0,0,0-2.17,0l-74.9-81.64c0-.1,0-.19,0-.29,0-7.09-4-12.83-8.8-12.81s-8.75,5.77-8.73,12.87c0,0,0,.09,0,.13l-50.21,46.07h-.09c-7.06-.63-13.14,2.77-13.57,7.59s4.87,9.16,11.85,9.84l76.08,82.92s0,0,0,.06c0,7.09,4,12.83,8.8,12.81s8.65-5.66,8.71-12.65Z\"/>\n <path class=\"cls-9\" d=\"M669.46,514.82c-4.77-.83-8.75,5.77-8.73,12.87,0,0,0,.09,0,.13l-50.21,46.07h-.09c-7.06-.63-13.14,2.77-13.57,7.59s4.87,9.16,11.85,9.84l76.08,82.92s0,0,0,.06c0,7.09,4,12.83,8.8,12.81s8.65-5.66,8.71-12.65C570.55,573,702.07,520.47,669.46,514.82Z\"/>\n </g>\n <g id=\"cup\" data-name=\"Layer 7\">\n <polygon class=\"cls-1\" points=\"1173.69 748.21 1140.52 715.42 1195.79 647.35 1241.13 692.16 1173.69 748.21\"/>\n <polygon class=\"cls-8\" points=\"1173.69 748.21 1140.52 715.42 1143.93 711.27 1177.81 744.75 1173.69 748.21\"/>\n <polygon class=\"cls-5\" points=\"1194.68 731.46 1157.04 694.24 1183.8 661.7 1226.91 704.32 1194.68 731.46\"/>\n <g class=\"cls-10\">\n <path class=\"cls-8\" d=\"M1176.32,667.78h0a4.19,4.19,0,0,1,4.19,4.19v33.54a0,0,0,0,1,0,0h-8.38a0,0,0,0,1,0,0V672a4.19,4.19,0,0,1,4.19-4.19Z\" transform=\"translate(822.53 -628.67) rotate(44.67)\"/>\n <path class=\"cls-8\" d=\"M1172.73,709.7l23.58-23.85a4.19,4.19,0,0,1,5.92,0h0a4.19,4.19,0,0,1,0,5.92l-23.58,23.85Z\"/>\n <path class=\"cls-8\" d=\"M1185.11,722.09l23.58-23.85a4.19,4.19,0,0,1,5.92,0h0a4.19,4.19,0,0,1,0,5.92L1191.06,728Z\"/>\n </g>\n <path class=\"cls-5\" d=\"M1197.85,660.5h45.69a5.7,5.7,0,0,1,5.7,5.7v8.32a0,0,0,0,1,0,0h-57.09a0,0,0,0,1,0,0v-8.32A5.7,5.7,0,0,1,1197.85,660.5Z\" transform=\"translate(829.53 -667.66) rotate(45)\"/>\n <path class=\"cls-8\" d=\"M1191.49,664.74h53.94a5.25,5.25,0,0,1,5.25,5.25v4.79a0,0,0,0,1,0,0h-64.44a0,0,0,0,1,0,0V670a5.25,5.25,0,0,1,5.25-5.25Z\" transform=\"translate(822.83 -663.17) rotate(44.67)\"/>\n </g>\n <g id=\"clock\" data-name=\"Layer 8\">\n\n <circle class=\"cls-5\" cx=\"847.7\" cy=\"247.59\" r=\"74.66\" transform=\"translate(-32.91 314.05) rotate(-20.6)\"/>\n <circle class=\"cls-1\" cx=\"847.7\" cy=\"247.59\" r=\"63.44\" transform=\"translate(-32.91 314.05) rotate(-20.6)\"/>\n <rect class=\"cls-3 clock-hand-1\" x=\"845\" y=\"189.5\" width=\"6.04\" height=\"58\" rx=\"3.02\" ry=\"3.02\" />\n <rect class=\"cls-3 clock-hand-2\" x=\"845\" y=\"209.5\" width=\"6.04\" height=\"38\" rx=\"3.02\" ry=\"3.02\" transform=\"translate(1611.22 -230.4) rotate(130.4)\"/>\n <circle class=\"cls-3\" cx=\"847.7\" cy=\"247.59\" transform=\"translate(-32.91 314.05) rotate(-20.6)\" r=\"3\" />\n </g>\n <g id=\"box\" data-name=\"Layer 9\">\n <g id=\"box-top\"><polygon class=\"cls-8\" points=\"569.71 382.28 653.74 329.39 747.13 320.1 679.2 369.85 569.71 382.28\"></polygon> \n <polygon class=\"cls-5\" points=\"691.95 367.2 570.87 392.34 565.32 383.35 687.8 357.45 691.95 367.2\"></polygon>\n\n \n <polygon class=\"cls-5\" points=\"661.54 337.48 570.87 392.34 562.42 378.92 652.25 322.38 658.12 321.34 661.54 337.48\"></polygon><polygon class=\"cls-7\" points=\"661.54 337.48 570.87 392.34 562.42 378.92 652.25 322.38 658.12 321.34 661.54 337.48\"></polygon><polygon class=\"cls-5\" points=\"747.13 320.1 661.54 337.48 652.25 322.38 738.4 307.1 747.13 320.1\"></polygon>\n </g>\n <path class=\"cls-5\" d=\"M588.28,420.26s3.44,5.2,5.19,8l43.1,68.48,158.81-100-43.1-68.48q-2.63-4.17-5.47-8Z\"></path>\n <path class=\"cls-7\" d=\"M588.28,420.26s3.44,5.2,5.19,8l43.1,68.48,158.81-100-43.1-68.48q-2.63-4.17-5.47-8Z\"></path>\n <rect class=\"cls-5\" x=\"693.73\" y=\"335.51\" width=\"83.99\" height=\"90.58\" transform=\"translate(-89.78 450.43) rotate(-32.19)\"></rect>\n \n \n \n </g>\n \n <g id=\"rucksack\" data-name=\"Layer 6\">\n <g id=\"stripe\"><path class=\"cls-12\" d=\"M1200.32,473.91h0a13.74,13.74,0,0,0-18.41,7.44l-55,129.86a14.82,14.82,0,0,0,7.13,19.21h0a13.74,13.74,0,0,0,18.41-7.44l55-129.86A14.82,14.82,0,0,0,1200.32,473.91Z\"/>\n <path class=\"cls-13\" d=\"M1202.18,606.34h0a14,14,0,0,0-16.18-11.8l-48.83,9c-7.59,1.4-12.66,9-11.31,16.89h0a14,14,0,0,0,16.18,11.8l48.83-9C1198.46,621.82,1203.53,614.26,1202.18,606.34Z\"/>\n </g>\n <path class=\"cls-8\" d=\"M1300.86,603l-122.93,22.74-15.44-90.91c-5.75-33.86,15.89-66.17,48.34-72.18l11.58-2.08c32.45-6,57.26,17.66,63,51.51Z\"/>\n <path class=\"cls-1\" d=\"M1307,601.91l-112.32,20.78-15.9-93.61c-5.5-32.36,15.19-63.25,46.2-69h0c31-5.74,60.62,15.85,66.12,48.21Z\"/>\n <path class=\"cls-8\" d=\"M1296.76,603.8,1215,618.92l-4.89-28.77c-2.11-12.42,5.83-24.27,17.73-26.47l38.67-7.15c11.9-2.2,23.26,6.08,25.37,18.5Z\"/>\n <path class=\"cls-5\" d=\"M1296.76,603.8l-73.41,13.58-4.92-29c-2-11.62,5.45-22.72,16.6-24.78l33.07-6.12c11.14-2.06,21.77,5.69,23.75,17.32Z\"/>\n <path class=\"cls-4\" d=\"M1231.77,469.69l-13.42,2.48a10.25,10.25,0,0,0-8,11.92l2.38,14a9.9,9.9,0,0,0,11.42,8.33l13.42-2.48a10.25,10.25,0,0,0,8-11.92l-2.38-14A9.9,9.9,0,0,0,1231.77,469.69Zm7.17,20.84a6.39,6.39,0,0,1-5,7.43l-8.36,1.55a6.17,6.17,0,0,1-7.12-5.19l-1.48-8.73a6.39,6.39,0,0,1,5-7.43l8.36-1.55a6.17,6.17,0,0,1,7.12,5.19Z\"/>\n <path class=\"cls-14\" d=\"M1233.74,471.13l-13.42,2.48a10.25,10.25,0,0,0-8,11.92l2.38,14a9.9,9.9,0,0,0,11.42,8.33l13.42-2.48a10.25,10.25,0,0,0,8-11.92l-2.38-14A9.9,9.9,0,0,0,1233.74,471.13Zm7.17,20.84a6.39,6.39,0,0,1-5,7.43l-8.36,1.55a6.17,6.17,0,0,1-7.12-5.19L1219,487a6.39,6.39,0,0,1,5-7.43l8.36-1.55a6.17,6.17,0,0,1,7.12,5.19Z\"/>\n </g>\n <g id=\"bike\" data-name=\"Layer 5\">\n <path class=\"cls-8 wheel\" d=\"M1139.82,780.44a76.59,76.59,0,1,0-57.9,91.53A76.59,76.59,0,0,0,1139.82,780.44Zm-28.12,6.33a47.59,47.59,0,0,1,.83,15.8c-30.14-6.28-47.68-21.65-54.39-52.52A47.73,47.73,0,0,1,1111.69,786.77Zm-70.46-30.9c10.35,26.88,10.14,50.4-13.73,70.77a47.67,47.67,0,0,1,13.73-70.77Zm34.35,88a47.55,47.55,0,0,1-34.94-5.62c16.8-20.36,41.71-25.94,67.09-19.46A47.66,47.66,0,0,1,1075.58,843.85Z\"/>\n <path class=\"cls-8 wheel\" d=\"M864.89,789.69a76.59,76.59,0,1,0-66.13,85.78A76.59,76.59,0,0,0,864.89,789.69Zm-28.59,3.7a47.59,47.59,0,0,1-.64,15.81c-29.43-9-45.47-26-49.3-57.33A47.73,47.73,0,0,1,836.3,793.39ZM769,756.1c7.82,27.72,5.43,51.12-20.22,69.2A47.67,47.67,0,0,1,769,756.1Zm26.06,90.78a47.55,47.55,0,0,1-34.27-8.83c18.61-18.72,43.93-22,68.6-13.16A47.66,47.66,0,0,1,795.06,846.88Z\"/>\n <g>\n <rect class=\"cls-1\" x=\"871.39\" y=\"693.37\" width=\"12.87\" height=\"53.21\" transform=\"translate(-165.97 273.38) rotate(-16.19)\"/>\n <path class=\"cls-5\" d=\"M813.93,679.35c-3.72-5.2,2.24-18.5,9.16-16.13,33.43,11.46,73.85,10.45,73.85,10.45,8.84.15,14.44,10.34,7.27,15.48-14.36,8.79-33.13,17-56.35,9.76C830.17,693.41,819.83,687.6,813.93,679.35Z\"/>\n <path class=\"cls-7\" d=\"M813.93,679.35c-3.72-5.2,2.24-18.5,9.16-16.13,33.43,11.46,73.85,10.45,73.85,10.45,8.84.15,14.44,10.34,7.27,15.48-14.36,8.79-33.13,17-56.35,9.76C830.17,693.41,819.83,687.6,813.93,679.35Z\"/>\n <path class=\"cls-5\" d=\"M817.15,680.06c-3.59-5,1.69-16.51,8.37-14.22,32.3,11.09,71.41,7.83,71.41,7.83,8.54.14,17.45,9.94,7.43,15.88-13.87,8.51-32,16.44-54.44,9.44C832.84,693.67,822.85,688,817.15,680.06Z\"/>\n </g>\n <g>\n <circle class=\"cls-9\" cx=\"1022.66\" cy=\"599.55\" r=\"11.57\" transform=\"translate(-4.86 8.38) rotate(-0.47)\"/>\n <path class=\"cls-1\" d=\"M1069.76,792.37l-34.89-96.74,1.93-.8-1.71-4.15-1.74.72-13.26-36.76,1.27-.42-2.25-6.76,5.94-2-2.57-7.72-9.7,3.22c-11.55-22.55,2-36.33,15-41.86l-5.57-8.81c-23,10.29-29.61,28.75-19.53,54l-9.38,3.12,2.56,7.72,5.47-1.82,2.25,6.76,2.36-.78,13.62,37.76-2.35,1,1.71,4.15,2.16-.89,34.65,96.09a7.47,7.47,0,0,0,9.56,4.49h0A7.47,7.47,0,0,0,1069.76,792.37Z\"/>\n <circle class=\"cls-11\" cx=\"1027.9\" cy=\"587.94\" r=\"12.99\" transform=\"translate(-4.77 8.42) rotate(-0.47)\"/>\n </g>\n <path class=\"cls-5\" d=\"M1021.29,654l-17.73,6.15,1.72,5.59-31.41,82.36c-19.35,32.53-66.3,36.72-75.56,16.68l-7.09-21.5L879,747.1l3.28,10.09-94.65,33.95c-11.49,2.29-11.85,15.79-2.61,17.84,0,0,39.11,3.66,103,9.5a92.75,92.75,0,0,0,40.89-5.29c44.32-16.56,57.73-50.67,57.73-50.67l26.82-67.26a1.37,1.37,0,0,1,2.53,0l1.42,3.33,17.75-7.62Z\"/>\n <path class=\"cls-7\" d=\"M1021.29,654l-17.73,6.15,1.72,5.59-31.41,82.36c-19.35,32.53-66.3,36.72-75.56,16.68l-7.09-21.5L879,747.1l3.28,10.09-94.65,33.95c-11.49,2.29-11.85,15.79-2.61,17.84,0,0,39.11,3.66,103,9.5a92.75,92.75,0,0,0,40.89-5.29c44.32-16.56,57.73-50.67,57.73-50.67l26.82-67.26a1.37,1.37,0,0,1,2.53,0l1.42,3.33,17.75-7.62Z\"/>\n </g>\n</svg>\n</div>");
/***/ }),
/***/ "./node_modules/raw-loader/dist/cjs.js!./src/app/modules/home/components/home-component.component.html":
/*!*************************************************************************************************************!*\
!*** ./node_modules/raw-loader/dist/cjs.js!./src/app/modules/home/components/home-component.component.html ***!
\*************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = ("<app-header></app-header>\n<div class=\"intro\">\n <div>\n <p> Below are the features of this framework </p>\n <div class=\"feature-list\">\n <!-- <mat-selection-list #featuresList>\n <mat-list-option *ngFor=\"let feature of features\" selected disabled>\n {{feature}}\n </mat-list-option>\n </mat-selection-list> -->\n <mat-accordion #featureList class=\"feature-list\">\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>SCSS</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"scss-desc\">\n <p>\n This framework usses <a target=\"_blank\" href=\"https://sass-lang.com/documentation/syntax\">SCSS</a>\n for better styles formating and esier syntax.\n </p>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>Lazy Loading</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"lazy-desc\">\n <p>\n By using lazy-loading, a module and it's files will be loaded only on demand (i.e) if that page route path is visited in the browser.\n Thus this elimites need of downloading full website files at one.\n In this framework the folowing is done to demonstrate the lazy loading.\n </p>\n <ol>\n <li>\n This framework has two major pages <b>'home'</b> and <b>'jokes'</b>.\n Home is the initial page that loads.\n Jokes is the seacondary page that will be loading using lazy loading.\n Thus initially the page downloads only home contents. After opening jokes page/route only the browser will ask for jokes page files and load.\n This way the initial load time of the site can be reduced.\n </li>\n <li>\n In **app-routing.module.ts** we must declare components that need to be lazy loaded like below.\n Thus only when we visit jokes path the module files will be downloaded will be loaded.\n <br>\n <div class=\"code-block\">\n {{'{'}}path:'jokes', loadChildren:'./jokes-component/jokes-component.module#jokesComponentModule'{{'}'}},\n </div>\n </li>\n <li>\n This is it !!! You can add more heirarchy down the road and create efficient application like this.\n </li>\n </ol>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>PWA (Progressive Web Applications) enabled</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"pwa-desc\">\n <p>\n This basically uses extensive browser caching methods and keeps the site alive without re-reneding components.\n This will impact the site performance largely.\n You can look at what is PWA and how you can test \n <a target=\"_blank\" href=\"https://dzone.com/articles/developing-pwa-using-angular-7\">[PWA]</a>.\n </p>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>Router auth gaurd (canActivate & canDeactivate)</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"router-desc\">\n <p>\n For security many application will require the auth gaurds. We can test the vailidity of the URL or token whenever there is a change in route.\n </p>\n <div class=\"code-block\">\n {{ \"{path: '', component: JokesComponent, canActivate: [AuthGaurdService], canDeactivate: [AuthGaurdService]}\" }}\n </div>\n <p>\n The\n <a target=\"_blank\" href=\"https://github.com/vishesh1king/angular7-framework-latest/blob/master/src/app/core/gaurds/auth-gaurd.service.ts\">\n AuthGaurdService\n </a>\n is a injectable service where the code for canavtivate and canDeactivate is written.\n </p>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>Default error routing done for invalid paths</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"404-desc\">\n <p>\n In routers if any invalid route is given. The page will redirect to 404. This is a simple redirection using which we can show creative page for 404.\n </p>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>HTTP client module</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"http-client-desc\">\n <p>\n A HTTP client module is must for latest versions of angular. The HTTP client module is used in the framework for handling HTTP requests.\n <a target=\"_blank\" href=\"https://angular.io/api/common/http/HttpClientModule\">About HTTP client module</a>\n </p>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>HTTP client module interceptor</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"http-interceptor-desc\">\n <p>\n **app-http.interceptor** is a interceptor for HTTP client module. This intercector is like a middleware,\n we can perform common activities like showing / hiding loading icon before and after HTTP requests.\n <a target=\"_blank\" href=\"https://angular.io/api/common/http/HttpInterceptor\">More on interceptors</a>\n </p>\n <p>\n This interceptor is added in the app modules.\n </p>\n <div class=\"code-block\">\n providers: [\n {{ '{ provide: HTTP_INTERCEPTORS, useClass: MyHttpInterceptor, multi: true }' }}\n ],\n </div>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>Sample API implemented</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"sample-api-desc\">\n <p>\n A sample API has been added. This api is called in jokes component. The service file name is \n <a target=\"_blank\" href=\"https://github.com/vishesh1king/angular7-framework-latest/blob/master/src/app/services/jokes/jokes.service.ts\">\n **jokes.service.ts**.\n </a>\n </p>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>Included latest angular meterial</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"material-desc\">\n <p>\n The site is designed with angular material. The buttons, listing, etc.. are done using latest angular material <b>9.2.0-next.0</b>. This will give a clean look.\n </p>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>Included shared modules</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"shared-desc\">\n <p>\n Most of the time in any given application you will have to use common components like Headers, Loading, etc. These remail common accross all modules.\n Thus here a shared module is created. It imports and exports all the common modules.\n Thus just import this module in which ever module requires these common stuff. The file name is\n <a target=\"_blank\" href=\"https://github.com/vishesh1king/angular7-framework-latest/blob/master/src/app/shared/app.shared.module.ts\">**app.shared.module.ts**</a>.\n </p>\n </div>\n </mat-expansion-panel>\n <mat-expansion-panel>\n <mat-expansion-panel-header>\n <mat-panel-title>App constans and configs</mat-panel-title>\n </mat-expansion-panel-header>\n <div class=\"shared-desc\">\n <p>\n Ofent we tend to use lot of same variables in various conponents. It is a common practice to have these under one file. Whre ever necessary we can import this file and use the varable. This way making changes will be easy.\n <a target=\"_blank\" href=\"https://github.com/vishesh1king/angular7-framework-latest/blob/master/src/app/utilities/constants/AppConstants.ts\">AppConstants.ts</a>\n </p>\n </div>\n </mat-expansion-panel>\n </mat-accordion>\n </div>\n </div>\n <br>\n <a [routerLink]=\"['/jokes']\"> Show me some jokes </a>\n</div>");
/***/ }),
/***/ "./node_modules/raw-loader/dist/cjs.js!./src/app/shared/header/header.component.html":
/*!*******************************************************************************************!*\
!*** ./node_modules/raw-loader/dist/cjs.js!./src/app/shared/header/header.component.html ***!
\*******************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = ("<div class=\"header\">\n Latest angular 10 framework\n</div>");
/***/ }),
/***/ "./node_modules/raw-loader/dist/cjs.js!./src/app/utilities/comfirm-dialog/comfirm-dialog.component.html":
/*!**************************************************************************************************************!*\
!*** ./node_modules/raw-loader/dist/cjs.js!./src/app/utilities/comfirm-dialog/comfirm-dialog.component.html ***!
\**************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = ("<div mat-dialog-content>\n <p>{{ confirmText }}</p>\n</div>\n<div mat-dialog-actions>\n <button mat-button [mat-dialog-close]=\"true\">Yes</button>\n <button mat-button (click)=\"onNoClick()\" cdkFocusInitial>No</button>\n</div>\n");
/***/ }),
/***/ "./node_modules/tslib/tslib.es6.js":
/*!*****************************************!*\
!*** ./node_modules/tslib/tslib.es6.js ***!
\*****************************************/
/*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __exportStar, __values, __read, __spread, __spreadArrays, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__extends", function() { return __extends; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__assign", function() { return __assign; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__rest", function() { return __rest; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__decorate", function() { return __decorate; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__param", function() { return __param; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__metadata", function() { return __metadata; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__awaiter", function() { return __awaiter; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__generator", function() { return __generator; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__exportStar", function() { return __exportStar; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__values", function() { return __values; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__read", function() { return __read; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spread", function() { return __spread; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArrays", function() { return __spreadArrays; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__await", function() { return __await; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncGenerator", function() { return __asyncGenerator; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncDelegator", function() { return __asyncDelegator; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncValues", function() { return __asyncValues; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__makeTemplateObject", function() { return __makeTemplateObject; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importStar", function() { return __importStar; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importDefault", function() { return __importDefault; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldGet", function() { return __classPrivateFieldGet; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldSet", function() { return __classPrivateFieldSet; });
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/* global Reflect, Promise */
var extendStatics = function(d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
function __extends(d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
}
var __assign = function() {
__assign = Object.assign || function __assign(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
}
return t;
}
return __assign.apply(this, arguments);
}
function __rest(s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
}
function __decorate(decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
}
function __param(paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
}
function __metadata(metadataKey, metadataValue) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
}
function __awaiter(thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
}
function __generator(thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
}
function __exportStar(m, exports) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
function __values(o) {
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
if (m) return m.call(o);
if (o && typeof o.length === "number") return {
next: function () {
if (o && i >= o.length) o = void 0;
return { value: o && o[i++], done: !o };
}
};
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
}
function __read(o, n) {
var m = typeof Symbol === "function" && o[Symbol.iterator];
if (!m) return o;
var i = m.call(o), r, ar = [], e;
try {
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
}
catch (error) { e = { error: error }; }
finally {
try {
if (r && !r.done && (m = i["return"])) m.call(i);
}
finally { if (e) throw e.error; }
}
return ar;
}
function __spread() {
for (var ar = [], i = 0; i < arguments.length; i++)
ar = ar.concat(__read(arguments[i]));
return ar;
}
function __spreadArrays() {
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
for (var r = Array(s), k = 0, i = 0; i < il; i++)
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
r[k] = a[j];
return r;
};
function __await(v) {
return this instanceof __await ? (this.v = v, this) : new __await(v);
}
function __asyncGenerator(thisArg, _arguments, generator) {
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
var g = generator.apply(thisArg, _arguments || []), i, q = [];
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
function fulfill(value) { resume("next", value); }
function reject(value) { resume("throw", value); }
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
}
function __asyncDelegator(o) {
var i, p;
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
}
function __asyncValues(o) {
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
var m = o[Symbol.asyncIterator], i;
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
}
function __makeTemplateObject(cooked, raw) {
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
return cooked;
};
function __importStar(mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result.default = mod;
return result;
}
function __importDefault(mod) {
return (mod && mod.__esModule) ? mod : { default: mod };
}
function __classPrivateFieldGet(receiver, privateMap) {
if (!privateMap.has(receiver)) {
throw new TypeError("attempted to get private field on non-instance");
}
return privateMap.get(receiver);
}
function __classPrivateFieldSet(receiver, privateMap, value) {
if (!privateMap.has(receiver)) {
throw new TypeError("attempted to set private field on non-instance");
}
privateMap.set(receiver, value);
return value;
}
/***/ }),
/***/ "./src/$$_lazy_route_resource lazy recursive":
/*!**********************************************************!*\
!*** ./src/$$_lazy_route_resource lazy namespace object ***!
\**********************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function webpackEmptyAsyncContext(req) {
// Here Promise.resolve().then() is used instead of new Promise() to prevent
// uncaught exception popping up in devtools
return Promise.resolve().then(function() {
var e = new Error("Cannot find module '" + req + "'");
e.code = 'MODULE_NOT_FOUND';
throw e;
});
}
webpackEmptyAsyncContext.keys = function() { return []; };
webpackEmptyAsyncContext.resolve = webpackEmptyAsyncContext;
module.exports = webpackEmptyAsyncContext;
webpackEmptyAsyncContext.id = "./src/$$_lazy_route_resource lazy recursive";
/***/ }),
/***/ "./src/app/app-routing.module.ts":
/*!***************************************!*\
!*** ./src/app/app-routing.module.ts ***!
\***************************************/
/*! exports provided: AppRoutingModule */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AppRoutingModule", function() { return AppRoutingModule; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/router */ "./node_modules/@angular/router/__ivy_ngcc__/fesm2015/router.js");
/* harmony import */ var _core_gaurds_auth_gaurd_service__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./core/gaurds/auth-gaurd.service */ "./src/app/core/gaurds/auth-gaurd.service.ts");
/* harmony import */ var _modules_access_restricted_access_restricted_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./modules/access-restricted/access-restricted.component */ "./src/app/modules/access-restricted/access-restricted.component.ts");
/* harmony import */ var _modules_access404_access404_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./modules/access404/access404.component */ "./src/app/modules/access404/access404.component.ts");
/* harmony import */ var _modules_home_components_home_component_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./modules/home/components/home-component.component */ "./src/app/modules/home/components/home-component.component.ts");
const routes = [
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', component: _modules_home_components_home_component_component__WEBPACK_IMPORTED_MODULE_6__["HomeComponent"], canActivate: [_core_gaurds_auth_gaurd_service__WEBPACK_IMPORTED_MODULE_3__["AuthGaurdService"]] },
{ path: 'jokes', loadChildren: () => __webpack_require__.e(/*! import() | modules-jokes-jokes-component-module */ "modules-jokes-jokes-component-module").then(__webpack_require__.bind(null, /*! ./modules/jokes/jokes-component.module */ "./src/app/modules/jokes/jokes-component.module.ts")).then(m => m.JokesComponentModule) },
{ path: 'restricted', component: _modules_access_restricted_access_restricted_component__WEBPACK_IMPORTED_MODULE_4__["AccessRestrictedComponent"], canActivate: [_core_gaurds_auth_gaurd_service__WEBPACK_IMPORTED_MODULE_3__["AuthGaurdService"]] },
{ path: '404', component: _modules_access404_access404_component__WEBPACK_IMPORTED_MODULE_5__["Access404Component"], canActivate: [_core_gaurds_auth_gaurd_service__WEBPACK_IMPORTED_MODULE_3__["AuthGaurdService"]] },
{ path: '**', component: _modules_access404_access404_component__WEBPACK_IMPORTED_MODULE_5__["Access404Component"] }
];
let AppRoutingModule = class AppRoutingModule {
};
AppRoutingModule = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["NgModule"])({
imports: [_angular_router__WEBPACK_IMPORTED_MODULE_2__["RouterModule"].forRoot(routes)],
exports: [_angular_router__WEBPACK_IMPORTED_MODULE_2__["RouterModule"]]
})
], AppRoutingModule);
/***/ }),
/***/ "./src/app/app.component.scss":
/*!************************************!*\
!*** ./src/app/app.component.scss ***!
\************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = ("body {\n text-align: center;\n font-family: Arial, Helvetica, sans-serif;\n font-size: 4em;\n color: tomato;\n margin-top: 30%;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvYXBwLmNvbXBvbmVudC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0VBQ0ksa0JBQUE7RUFDQSx5Q0FBQTtFQUNBLGNBQUE7RUFDQSxhQUFBO0VBQ0EsZUFBQTtBQUNKIiwiZmlsZSI6InNyYy9hcHAvYXBwLmNvbXBvbmVudC5zY3NzIiwic291cmNlc0NvbnRlbnQiOlsiYm9keXtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgZm9udC1mYW1pbHk6IEFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7XG4gICAgZm9udC1zaXplOiA0ZW07XG4gICAgY29sb3I6IHRvbWF0bztcbiAgICBtYXJnaW4tdG9wOiAzMCU7XG59XG4iXX0= */");
/***/ }),
/***/ "./src/app/app.component.ts":
/*!**********************************!*\
!*** ./src/app/app.component.ts ***!
\**********************************/
/*! exports provided: AppComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AppComponent", function() { return AppComponent; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_service_worker__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/service-worker */ "./node_modules/@angular/service-worker/__ivy_ngcc__/fesm2015/service-worker.js");
let AppComponent = class AppComponent {
constructor(swupdate) {
this.swupdate = swupdate;
this.title = 'my-framework';
}
};
AppComponent.ctorParameters = () => [
{ type: _angular_service_worker__WEBPACK_IMPORTED_MODULE_2__["SwUpdate"] }
];
AppComponent = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Component"])({
selector: 'app-root',
template: Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(/*! raw-loader!./app.component.html */ "./node_modules/raw-loader/dist/cjs.js!./src/app/app.component.html")).default,
styles: [Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(/*! ./app.component.scss */ "./src/app/app.component.scss")).default]
}),
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__metadata"])("design:paramtypes", [_angular_service_worker__WEBPACK_IMPORTED_MODULE_2__["SwUpdate"]])
], AppComponent);
/***/ }),
/***/ "./src/app/app.module.ts":
/*!*******************************!*\
!*** ./src/app/app.module.ts ***!
\*******************************/
/*! exports provided: AppModule */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AppModule", function() { return AppModule; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ "./node_modules/@angular/common/__ivy_ngcc__/fesm2015/common.js");
/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common/http */ "./node_modules/@angular/common/__ivy_ngcc__/fesm2015/http.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_material_snack_bar__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/material/snack-bar */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/snack-bar.js");
/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/platform-browser */ "./node_modules/@angular/platform-browser/__ivy_ngcc__/fesm2015/platform-browser.js");
/* harmony import */ var _angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/platform-browser/animations */ "./node_modules/@angular/platform-browser/__ivy_ngcc__/fesm2015/animations.js");
/* harmony import */ var _angular_service_worker__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/service-worker */ "./node_modules/@angular/service-worker/__ivy_ngcc__/fesm2015/service-worker.js");
/* harmony import */ var _environments_environment__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../environments/environment */ "./src/environments/environment.ts");
/* harmony import */ var _app_routing_module__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./app-routing.module */ "./src/app/app-routing.module.ts");
/* harmony import */ var _app_component__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./app.component */ "./src/app/app.component.ts");
/* harmony import */ var _core_app_http_interceptor__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./core/app-http.interceptor */ "./src/app/core/app-http.interceptor.ts");
/* harmony import */ var _modules_access_restricted_access_restricted_component__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./modules/access-restricted/access-restricted.component */ "./src/app/modules/access-restricted/access-restricted.component.ts");
/* harmony import */ var _modules_access404_access404_component__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./modules/access404/access404.component */ "./src/app/modules/access404/access404.component.ts");
/* harmony import */ var _modules_home_components_home_component_component__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./modules/home/components/home-component.component */ "./src/app/modules/home/components/home-component.component.ts");
/* harmony import */ var _shared_app_shared_module__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./shared/app.shared.module */ "./src/app/shared/app.shared.module.ts");
/* Added snackbar here bacause we use in interceptor */
let AppModule = class AppModule {
};
AppModule = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_3__["NgModule"])({
declarations: [
_app_component__WEBPACK_IMPORTED_MODULE_10__["AppComponent"],
_modules_home_components_home_component_component__WEBPACK_IMPORTED_MODULE_14__["HomeComponent"],
_modules_access_restricted_access_restricted_component__WEBPACK_IMPORTED_MODULE_12__["AccessRestrictedComponent"],
_modules_access404_access404_component__WEBPACK_IMPORTED_MODULE_13__["Access404Component"]
],
imports: [
_angular_common__WEBPACK_IMPORTED_MODULE_1__["CommonModule"],
_angular_platform_browser__WEBPACK_IMPORTED_MODULE_5__["BrowserModule"],
_angular_platform_browser_animations__WEBPACK_IMPORTED_MODULE_6__["BrowserAnimationsModule"],
_app_routing_module__WEBPACK_IMPORTED_MODULE_9__["AppRoutingModule"],
_angular_common_http__WEBPACK_IMPORTED_MODULE_2__["HttpClientModule"],
_shared_app_shared_module__WEBPACK_IMPORTED_MODULE_15__["SharedModule"],
_angular_material_snack_bar__WEBPACK_IMPORTED_MODULE_4__["MatSnackBarModule"],
_angular_service_worker__WEBPACK_IMPORTED_MODULE_7__["ServiceWorkerModule"].register('ngsw-worker.js', { enabled: _environments_environment__WEBPACK_IMPORTED_MODULE_8__["environment"].production })
],
providers: [
{ provide: _angular_common_http__WEBPACK_IMPORTED_MODULE_2__["HTTP_INTERCEPTORS"], useClass: _core_app_http_interceptor__WEBPACK_IMPORTED_MODULE_11__["MyHttpInterceptor"], multi: true }
],
bootstrap: [_app_component__WEBPACK_IMPORTED_MODULE_10__["AppComponent"]]
})
], AppModule);
/***/ }),
/***/ "./src/app/core/app-http.interceptor.ts":
/*!**********************************************!*\
!*** ./src/app/core/app-http.interceptor.ts ***!
\**********************************************/
/*! exports provided: MyHttpInterceptor */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MyHttpInterceptor", function() { return MyHttpInterceptor; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ "./node_modules/rxjs/dist/esm/operators/index.js");
/* harmony import */ var src_app_services_snackbar_snackbar_service__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! src/app/services/snackbar/snackbar.service */ "./src/app/services/snackbar/snackbar.service.ts");
let MyHttpInterceptor = class MyHttpInterceptor {
constructor(snackbarService) {
this.snackbarService = snackbarService;
}
intercept(request, next) {
const self = this;
/* CAN DO
Modify request to add headers here
*/
/* Return the request to process */
return next.handle(request)
.pipe(Object(rxjs_operators__WEBPACK_IMPORTED_MODULE_2__["tap"])((evt) => {
/* If response is success */
if (evt && evt.status == 200) {
/* If scussess do anything */
}
else {
Object(rxjs_operators__WEBPACK_IMPORTED_MODULE_2__["delay"])(500);
}
}, (error) => {
/* Failed http */
if (error.message) {
this.snackbarService.showError(error.message);
}
else {
this.snackbarService.showError();
}
}));
}
};
MyHttpInterceptor.ctorParameters = () => [
{ type: src_app_services_snackbar_snackbar_service__WEBPACK_IMPORTED_MODULE_3__["SnackbarService"] }
];
MyHttpInterceptor = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Injectable"])({ providedIn: 'root' }),
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__metadata"])("design:paramtypes", [src_app_services_snackbar_snackbar_service__WEBPACK_IMPORTED_MODULE_3__["SnackbarService"]])
], MyHttpInterceptor);
/***/ }),
/***/ "./src/app/core/gaurds/auth-gaurd.service.ts":
/*!***************************************************!*\
!*** ./src/app/core/gaurds/auth-gaurd.service.ts ***!
\***************************************************/
/*! exports provided: AuthGaurdService */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AuthGaurdService", function() { return AuthGaurdService; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/material/dialog */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/dialog.js");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/router */ "./node_modules/@angular/router/__ivy_ngcc__/fesm2015/router.js");
/* harmony import */ var src_app_services_auth_auth_service__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! src/app/services/auth/auth.service */ "./src/app/services/auth/auth.service.ts");
let AuthGaurdService = class AuthGaurdService {
constructor(_authService, _router, dialog) {
this._authService = _authService;
this._router = _router;
this.dialog = dialog;
}
canActivate(next, state) {
if (this._authService.isvaidRoute()) {
return true;
}
// navigate to error page
this._router.navigate(['/restricted']);
return false;
}
canDeactivate(currentRoute, currentState, nextState, State) {
// Trying to implement adding a custom dialogbox inside canDeactivate
// const dialogRef = this.dialog.open(ComfirmDialogComponent, {
// width: '500px'
// });
// dialogRef.componentInstance.confirmText = "Are you sure, you want to leave? Chuck has lot more tricks up his sleave.";
// if( dialogRef.afterClosed().map(result => {
// return result;
// })){
// return true;
// };
// return false;
if (confirm('Are you sure, you want to leave? Chuck has lot more tricks up his sleave.')) {
return true;
}
else {
return false;
}
}
};
AuthGaurdService.ctorParameters = () => [
{ type: src_app_services_auth_auth_service__WEBPACK_IMPORTED_MODULE_4__["AuthService"] },
{ type: _angular_router__WEBPACK_IMPORTED_MODULE_3__["Router"] },
{ type: _angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__["MatDialog"] }
];
AuthGaurdService = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Injectable"])({
providedIn: 'root'
}),
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__metadata"])("design:paramtypes", [src_app_services_auth_auth_service__WEBPACK_IMPORTED_MODULE_4__["AuthService"],
_angular_router__WEBPACK_IMPORTED_MODULE_3__["Router"],
_angular_material_dialog__WEBPACK_IMPORTED_MODULE_2__["MatDialog"]])
], AuthGaurdService);
/***/ }),
/***/ "./src/app/modules/access-restricted/access-restricted.component.scss":
/*!****************************************************************************!*\
!*** ./src/app/modules/access-restricted/access-restricted.component.scss ***!
\****************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = ("html {\n background-color: #000121;\n font-family: \"Roboto\", sans-serif;\n}\n\n.maincontainer {\n position: relative;\n top: -50px;\n transform: scale(0.8);\n background: url(\"https://www.blissfullemon.com/wp-content/uploads/2018/09/HauntedHouseBackground.png\");\n background-repeat: no-repeat;\n background-position: center;\n background-size: 700px 600px;\n width: 800px;\n height: 600px;\n margin: 0px auto;\n display: grid;\n}\n\n.foregroundimg {\n position: relative;\n width: 100%;\n top: -230px;\n z-index: 5;\n}\n\n.errorcode {\n position: relative;\n top: -200px;\n font-family: \"Creepster\", cursive;\n color: white;\n text-align: center;\n font-size: 6em;\n letter-spacing: 0.1em;\n}\n\n.errortext {\n position: relative;\n top: -260px;\n color: #FBD130;\n text-align: center;\n text-transform: uppercase;\n font-size: 1.8em;\n}\n\n.bat {\n opacity: 0;\n position: relative;\n transform-origin: center;\n z-index: 3;\n}\n\n.bat:nth-child(1) {\n top: 380px;\n left: 120px;\n transform: scale(0.5);\n -webkit-animation: 13s 1s flyBat1 infinite linear;\n animation: 13s 1s flyBat1 infinite linear;\n}\n\n.bat:nth-child(2) {\n top: 280px;\n left: 80px;\n transform: scale(0.3);\n -webkit-animation: 8s 4s flyBat2 infinite linear;\n animation: 8s 4s flyBat2 infinite linear;\n}\n\n.bat:nth-child(3) {\n top: 200px;\n left: 150px;\n transform: scale(0.4);\n -webkit-animation: 12s 2s flyBat3 infinite linear;\n animation: 12s 2s flyBat3 infinite linear;\n}\n\n.body {\n position: relative;\n width: 50px;\n top: 12px;\n}\n\n.wing {\n width: 150px;\n position: relative;\n transform-origin: right center;\n}\n\n.leftwing {\n left: 30px;\n -webkit-animation: 0.8s flapLeft infinite ease-in-out;\n animation: 0.8s flapLeft infinite ease-in-out;\n}\n\n.rightwing {\n left: -180px;\n transform: scaleX(-1);\n -webkit-animation: 0.8s flapRight infinite ease-in-out;\n animation: 0.8s flapRight infinite ease-in-out;\n}\n\n@-webkit-keyframes flapLeft {\n 0% {\n transform: rotateZ(0);\n }\n 50% {\n transform: rotateZ(10deg) rotateY(40deg);\n }\n 100% {\n transform: rotateZ(0);\n }\n}\n\n@keyframes flapLeft {\n 0% {\n transform: rotateZ(0);\n }\n 50% {\n transform: rotateZ(10deg) rotateY(40deg);\n }\n 100% {\n transform: rotateZ(0);\n }\n}\n\n@-webkit-keyframes flapRight {\n 0% {\n transform: scaleX(-1) rotateZ(0);\n }\n 50% {\n transform: scaleX(-1) rotateZ(10deg) rotateY(40deg);\n }\n 100% {\n transform: scaleX(-1) rotateZ(0);\n }\n}\n\n@keyframes flapRight {\n 0% {\n transform: scaleX(-1) rotateZ(0);\n }\n 50% {\n transform: scaleX(-1) rotateZ(10deg) rotateY(40deg);\n }\n 100% {\n transform: scaleX(-1) rotateZ(0);\n }\n}\n\n@-webkit-keyframes flyBat1 {\n 0% {\n opacity: 1;\n transform: scale(0.5);\n }\n 25% {\n opacity: 1;\n transform: scale(0.5) translate(-400px, -330px);\n }\n 50% {\n opacity: 1;\n transform: scale(0.5) translate(400px, -800px);\n }\n 75% {\n opacity: 1;\n transform: scale(0.5) translate(600px, 100px);\n }\n 100% {\n opacity: 1;\n transform: scale(0.5) translate(100px, 300px);\n }\n}\n\n@keyframes flyBat1 {\n 0% {\n opacity: 1;\n transform: scale(0.5);\n }\n 25% {\n opacity: 1;\n transform: scale(0.5) translate(-400px, -330px);\n }\n 50% {\n opacity: 1;\n transform: scale(0.5) translate(400px, -800px);\n }\n 75% {\n opacity: 1;\n transform: scale(0.5) translate(600px, 100px);\n }\n 100% {\n opacity: 1;\n transform: scale(0.5) translate(100px, 300px);\n }\n}\n\n@-webkit-keyframes flyBat2 {\n 0% {\n opacity: 1;\n transform: scale(0.3);\n }\n 25% {\n opacity: 1;\n transform: scale(0.3) translate(200px, -330px);\n }\n 50% {\n opacity: 1;\n transform: scale(0.3) translate(-300px, -800px);\n }\n 75% {\n opacity: 1;\n transform: scale(0.3) translate(-400px, 100px);\n }\n 100% {\n opacity: 1;\n transform: scale(0.3) translate(100px, 300px);\n }\n}\n\n@keyframes flyBat2 {\n 0% {\n opacity: 1;\n transform: scale(0.3);\n }\n 25% {\n opacity: 1;\n transform: scale(0.3) translate(200px, -330px);\n }\n 50% {\n opacity: 1;\n transform: scale(0.3) translate(-300px, -800px);\n }\n 75% {\n opacity: 1;\n transform: scale(0.3) translate(-400px, 100px);\n }\n 100% {\n opacity: 1;\n transform: scale(0.3) translate(100px, 300px);\n }\n}\n\n@-webkit-keyframes flyBat3 {\n 0% {\n opacity: 1;\n transform: scale(0.4);\n }\n 25% {\n opacity: 1;\n transform: scale(0.4) translate(-350px, -330px);\n }\n 50% {\n opacity: 1;\n transform: scale(0.4) translate(400px, -800px);\n }\n 75% {\n opacity: 1;\n transform: scale(0.4) translate(-600px, 100px);\n }\n 100% {\n opacity: 1;\n transform: scale(0.4) translate(100px, 300px);\n }\n}\n\n@keyframes flyBat3 {\n 0% {\n opacity: 1;\n transform: scale(0.4);\n }\n 25% {\n opacity: 1;\n transform: scale(0.4) translate(-350px, -330px);\n }\n 50% {\n opacity: 1;\n transform: scale(0.4) translate(400px, -800px);\n }\n 75% {\n opacity: 1;\n transform: scale(0.4) translate(-600px, 100px);\n }\n 100% {\n opacity: 1;\n transform: scale(0.4) translate(100px, 300px);\n }\n}\n\n/*@media only screen and (max-width: 850px) {\n .maincontainer {\n transform: scale(0.6);\n width: 600px;\n height: 400px;\n background-size: 600px 400px;\n }\n\n .errortext {\n font-size: 1em;\n }\n}*/\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvbW9kdWxlcy9hY2Nlc3MtcmVzdHJpY3RlZC9hY2Nlc3MtcmVzdHJpY3RlZC5jb21wb25lbnQuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNJLHlCQUFBO0VBQ0EsaUNBQUE7QUFDSjs7QUFHRTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLHFCQUFBO0VBQ0Esc0dBQUE7RUFDQSw0QkFBQTtFQUNBLDJCQUFBO0VBQ0EsNEJBQUE7RUFDQSxZQUFBO0VBQ0EsYUFBQTtFQUNBLGdCQUFBO0VBQ0EsYUFBQTtBQUFKOztBQUdFO0VBQ0Usa0JBQUE7RUFDQSxXQUFBO0VBQ0EsV0FBQTtFQUNBLFVBQUE7QUFBSjs7QUFHRTtFQUNFLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLGlDQUFBO0VBQ0EsWUFBQTtFQUNBLGtCQUFBO0VBQ0EsY0FBQTtFQUNBLHFCQUFBO0FBQUo7O0FBR0U7RUFDRSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxjQUFBO0VBQ0Esa0JBQUE7RUFDQSx5QkFBQTtFQUNBLGdCQUFBO0FBQUo7O0FBR0U7RUFDRSxVQUFBO0VBQ0Esa0JBQUE7RUFDQSx3QkFBQTtFQUNBLFVBQUE7QUFBSjs7QUFHRTtFQUNFLFVBQUE7RUFDQSxXQUFBO0VBQ0EscUJBQUE7RUFDQSxpREFBQTtVQUFBLHlDQUFBO0FBQUo7O0FBR0U7RUFDRSxVQUFBO0VBQ0EsVUFBQTtFQUNBLHFCQUFBO0VBQ0EsZ0RBQUE7VUFBQSx3Q0FBQTtBQUFKOztBQUdFO0VBQ0UsVUFBQTtFQUNBLFdBQUE7RUFDQSxxQkFBQTtFQUNBLGlEQUFBO1VBQUEseUNBQUE7QUFBSjs7QUFHRTtFQUNFLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLFNBQUE7QUFBSjs7QUFHRTtFQUNFLFlBQUE7RUFDQSxrQkFBQTtFQUNBLDhCQUFBO0FBQUo7O0FBR0U7RUFDRSxVQUFBO0VBQ0EscURBQUE7VUFBQSw2Q0FBQTtBQUFKOztBQUdFO0VBQ0UsWUFBQTtFQUNBLHFCQUFBO0VBQ0Esc0RBQUE7VUFBQSw4Q0FBQTtBQUFKOztBQUdFO0VBQ0U7SUFBSyxxQkFBQTtFQUNQO0VBQUU7SUFBTSx3Q0FBQTtFQUdSO0VBRkU7SUFBTyxxQkFBQTtFQUtUO0FBQ0Y7O0FBVEU7RUFDRTtJQUFLLHFCQUFBO0VBQ1A7RUFBRTtJQUFNLHdDQUFBO0VBR1I7RUFGRTtJQUFPLHFCQUFBO0VBS1Q7QUFDRjs7QUFIRTtFQUNFO0lBQUssZ0NBQUE7RUFNUDtFQUxFO0lBQU0sbURBQUE7RUFRUjtFQVBFO0lBQU8sZ0NBQUE7RUFVVDtBQUNGOztBQWRFO0VBQ0U7SUFBSyxnQ0FBQTtFQU1QO0VBTEU7SUFBTSxtREFBQTtFQVFSO0VBUEU7SUFBTyxnQ0FBQTtFQVVUO0FBQ0Y7O0FBUkU7RUFDRTtJQUFLLFVBQUE7SUFBWSxxQkFBQTtFQVluQjtFQVhFO0lBQU0sVUFBQTtJQUFZLCtDQUFBO0VBZXBCO0VBZEU7SUFBTSxVQUFBO0lBQVksOENBQUE7RUFrQnBCO0VBakJFO0lBQU0sVUFBQTtJQUFZLDZDQUFBO0VBcUJwQjtFQXBCRTtJQUFPLFVBQUE7SUFBWSw2Q0FBQTtFQXdCckI7QUFDRjs7QUE5QkU7RUFDRTtJQUFLLFVBQUE7SUFBWSxxQkFBQTtFQVluQjtFQVhFO0lBQU0sVUFBQTtJQUFZLCtDQUFBO0VBZXBCO0VBZEU7SUFBTSxVQUFBO0lBQVksOENBQUE7RUFrQnBCO0VBakJFO0lBQU0sVUFBQTtJQUFZLDZDQUFBO0VBcUJwQjtFQXBCRTtJQUFPLFVBQUE7SUFBWSw2Q0FBQTtFQXdCckI7QUFDRjs7QUF0QkU7RUFDRTtJQUFLLFVBQUE7SUFBWSxxQkFBQTtFQTBCbkI7RUF6QkU7SUFBTSxVQUFBO0lBQVksOENBQUE7RUE2QnBCO0VBNUJFO0lBQU0sVUFBQTtJQUFZLCtDQUFBO0VBZ0NwQjtFQS9CRTtJQUFNLFVBQUE7SUFBWSw4Q0FBQTtFQW1DcEI7RUFsQ0U7SUFBTyxVQUFBO0lBQVksNkNBQUE7RUFzQ3JCO0FBQ0Y7O0FBNUNFO0VBQ0U7SUFBSyxVQUFBO0lBQVkscUJBQUE7RUEwQm5CO0VBekJFO0lBQU0sVUFBQTtJQUFZLDhDQUFBO0VBNkJwQjtFQTVCRTtJQUFNLFVBQUE7SUFBWSwrQ0FBQTtFQWdDcEI7RUEvQkU7SUFBTSxVQUFBO0lBQVksOENBQUE7RUFtQ3BCO0VBbENFO0lBQU8sVUFBQTtJQUFZLDZDQUFBO0VBc0NyQjtBQUNGOztBQXBDRTtFQUNFO0lBQUssVUFBQTtJQUFZLHFCQUFBO0VBd0NuQjtFQXZDRTtJQUFNLFVBQUE7SUFBWSwrQ0FBQTtFQTJDcEI7RUExQ0U7SUFBTSxVQUFBO0lBQVksOENBQUE7RUE4Q3BCO0VBN0NFO0lBQU0sVUFBQTtJQUFZLDhDQUFBO0VBaURwQjtFQWhERTtJQUFPLFVBQUE7SUFBWSw2Q0FBQTtFQW9EckI7QUFDRjs7QUExREU7RUFDRTtJQUFLLFVBQUE7SUFBWSxxQkFBQTtFQXdDbkI7RUF2Q0U7SUFBTSxVQUFBO0lBQVksK0NBQUE7RUEyQ3BCO0VBMUNFO0lBQU0sVUFBQTtJQUFZLDhDQUFBO0VBOENwQjtFQTdDRTtJQUFNLFVBQUE7SUFBWSw4Q0FBQTtFQWlEcEI7RUFoREU7SUFBTyxVQUFBO0lBQVksNkNBQUE7RUFvRHJCO0FBQ0Y7O0FBbERFOzs7Ozs7Ozs7OztFQUFBIiwiZmlsZSI6InNyYy9hcHAvbW9kdWxlcy9hY2Nlc3MtcmVzdHJpY3RlZC9hY2Nlc3MtcmVzdHJpY3RlZC5jb21wb25lbnQuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbImh0bWwge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICMwMDAxMjE7XG4gICAgZm9udC1mYW1pbHk6ICdSb2JvdG8nLCBzYW5zLXNlcmlmO1xuICBcbiAgfVxuICBcbiAgLm1haW5jb250YWluZXIge1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB0b3A6IC01MHB4O1xuICAgIHRyYW5zZm9ybTogc2NhbGUoMC44KTtcbiAgICBiYWNrZ3JvdW5kOiB1cmwoXCJodHRwczovL3d3dy5ibGlzc2Z1bGxlbW9uLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wOS9IYXVudGVkSG91c2VCYWNrZ3JvdW5kLnBuZ1wiKTtcbiAgICBiYWNrZ3JvdW5kLXJlcGVhdDogbm8tcmVwZWF0O1xuICAgIGJhY2tncm91bmQtcG9zaXRpb246IGNlbnRlcjtcbiAgICBiYWNrZ3JvdW5kLXNpemU6IDcwMHB4IDYwMHB4O1xuICAgIHdpZHRoOiA4MDBweDtcbiAgICBoZWlnaHQ6IDYwMHB4O1xuICAgIG1hcmdpbjogMHB4IGF1dG87XG4gICAgZGlzcGxheTogZ3JpZDtcbiAgfVxuICBcbiAgLmZvcmVncm91bmRpbWcge1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB3aWR0aDogMTAwJTtcbiAgICB0b3A6IC0yMzBweDtcbiAgICB6LWluZGV4OiA1O1xuICB9XG4gIFxuICAuZXJyb3Jjb2RlIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgdG9wOiAtMjAwcHg7XG4gICAgZm9udC1mYW1pbHk6ICdDcmVlcHN0ZXInLCBjdXJzaXZlO1xuICAgIGNvbG9yOiB3aGl0ZTtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgZm9udC1zaXplOiA2ZW07XG4gICAgbGV0dGVyLXNwYWNpbmc6IDAuMWVtO1xuICB9XG4gIFxuICAuZXJyb3J0ZXh0IHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgdG9wOiAtMjYwcHg7XG4gICAgY29sb3I6ICNGQkQxMzA7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7XG4gICAgZm9udC1zaXplOiAxLjhlbTtcbiAgfVxuICBcbiAgLmJhdCB7XG4gICAgb3BhY2l0eTogMDtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogY2VudGVyO1xuICAgIHotaW5kZXg6IDM7XG4gIH1cbiAgXG4gIC5iYXQ6bnRoLWNoaWxkKDEpIHtcbiAgICB0b3A6IDM4MHB4O1xuICAgIGxlZnQ6IDEyMHB4O1xuICAgIHRyYW5zZm9ybTogc2NhbGUoMC41KTtcbiAgICBhbmltYXRpb246IDEzcyAxcyBmbHlCYXQxIGluZmluaXRlIGxpbmVhcjtcbiAgfVxuICBcbiAgLmJhdDpudGgtY2hpbGQoMikge1xuICAgIHRvcDogMjgwcHg7XG4gICAgbGVmdDogODBweDtcbiAgICB0cmFuc2Zvcm06IHNjYWxlKDAuMyk7XG4gICAgYW5pbWF0aW9uOiA4cyA0cyBmbHlCYXQyIGluZmluaXRlIGxpbmVhcjtcbiAgfVxuICBcbiAgLmJhdDpudGgtY2hpbGQoMykge1xuICAgIHRvcDogMjAwcHg7XG4gICAgbGVmdDogMTUwcHg7XG4gICAgdHJhbnNmb3JtOiBzY2FsZSgwLjQpO1xuICAgIGFuaW1hdGlvbjogMTJzIDJzIGZseUJhdDMgaW5maW5pdGUgbGluZWFyO1xuICB9XG4gIFxuICAuYm9keSB7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgIHdpZHRoOiA1MHB4O1xuICAgIHRvcDogMTJweDtcbiAgfVxuICBcbiAgLndpbmcge1xuICAgIHdpZHRoOiAxNTBweDtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogcmlnaHQgY2VudGVyO1xuICB9XG4gIFxuICAubGVmdHdpbmcge1xuICAgIGxlZnQ6IDMwcHg7XG4gICAgYW5pbWF0aW9uOiAwLjhzIGZsYXBMZWZ0IGluZmluaXRlIGVhc2UtaW4tb3V0O1xuICB9XG4gIFxuICAucmlnaHR3aW5nIHtcbiAgICBsZWZ0OiAtMTgwcHg7XG4gICAgdHJhbnNmb3JtOiBzY2FsZVgoLTEpO1xuICAgIGFuaW1hdGlvbjogMC44cyBmbGFwUmlnaHQgaW5maW5pdGUgZWFzZS1pbi1vdXQ7XG4gIH1cbiAgXG4gIEBrZXlmcmFtZXMgZmxhcExlZnQge1xuICAgIDAlIHsgdHJhbnNmb3JtOiByb3RhdGVaKDApOyB9XG4gICAgNTAlIHsgdHJhbnNmb3JtOiByb3RhdGVaKDEwZGVnKSByb3RhdGVZKDQwZGVnKTsgfVxuICAgIDEwMCUgeyB0cmFuc2Zvcm06IHJvdGF0ZVooMCk7IH1cbiAgfVxuICBcbiAgQGtleWZyYW1lcyBmbGFwUmlnaHQge1xuICAgIDAlIHsgdHJhbnNmb3JtOiBzY2FsZVgoLTEpIHJvdGF0ZVooMCk7IH1cbiAgICA1MCUgeyB0cmFuc2Zvcm06IHNjYWxlWCgtMSkgcm90YXRlWigxMGRlZykgcm90YXRlWSg0MGRlZyk7IH1cbiAgICAxMDAlIHsgdHJhbnNmb3JtOiBzY2FsZVgoLTEpIHJvdGF0ZVooMCk7IH1cbiAgfVxuICBcbiAgQGtleWZyYW1lcyBmbHlCYXQxIHtcbiAgICAwJSB7IG9wYWNpdHk6IDE7IHRyYW5zZm9ybTogc2NhbGUoMC41KX1cbiAgICAyNSUgeyBvcGFjaXR5OiAxOyB0cmFuc2Zvcm06IHNjYWxlKDAuNSkgdHJhbnNsYXRlKC00MDBweCwgLTMzMHB4KSB9XG4gICAgNTAlIHsgb3BhY2l0eTogMTsgdHJhbnNmb3JtOiBzY2FsZSgwLjUpIHRyYW5zbGF0ZSg0MDBweCwgLTgwMHB4KSB9XG4gICAgNzUlIHsgb3BhY2l0eTogMTsgdHJhbnNmb3JtOiBzY2FsZSgwLjUpIHRyYW5zbGF0ZSg2MDBweCwgMTAwcHgpIH1cbiAgICAxMDAlIHsgb3BhY2l0eTogMTsgdHJhbnNmb3JtOiBzY2FsZSgwLjUpIHRyYW5zbGF0ZSgxMDBweCwgMzAwcHgpIH1cbiAgfVxuICBcbiAgQGtleWZyYW1lcyBmbHlCYXQyIHtcbiAgICAwJSB7IG9wYWNpdHk6IDE7IHRyYW5zZm9ybTogc2NhbGUoMC4zKX1cbiAgICAyNSUgeyBvcGFjaXR5OiAxOyB0cmFuc2Zvcm06IHNjYWxlKDAuMykgdHJhbnNsYXRlKDIwMHB4LCAtMzMwcHgpIH1cbiAgICA1MCUgeyBvcGFjaXR5OiAxOyB0cmFuc2Zvcm06IHNjYWxlKDAuMykgdHJhbnNsYXRlKC0zMDBweCwgLTgwMHB4KSB9XG4gICAgNzUlIHsgb3BhY2l0eTogMTsgdHJhbnNmb3JtOiBzY2FsZSgwLjMpIHRyYW5zbGF0ZSgtNDAwcHgsIDEwMHB4KSB9XG4gICAgMTAwJSB7IG9wYWNpdHk6IDE7IHRyYW5zZm9ybTogc2NhbGUoMC4zKSB0cmFuc2xhdGUoMTAwcHgsIDMwMHB4KSB9XG4gIH1cbiAgXG4gIEBrZXlmcmFtZXMgZmx5QmF0MyB7XG4gICAgMCUgeyBvcGFjaXR5OiAxOyB0cmFuc2Zvcm06IHNjYWxlKDAuNCl9XG4gICAgMjUlIHsgb3BhY2l0eTogMTsgdHJhbnNmb3JtOiBzY2FsZSgwLjQpIHRyYW5zbGF0ZSgtMzUwcHgsIC0zMzBweCkgfVxuICAgIDUwJSB7IG9wYWNpdHk6IDE7IHRyYW5zZm9ybTogc2NhbGUoMC40KSB0cmFuc2xhdGUoNDAwcHgsIC04MDBweCkgfVxuICAgIDc1JSB7IG9wYWNpdHk6IDE7IHRyYW5zZm9ybTogc2NhbGUoMC40KSB0cmFuc2xhdGUoLTYwMHB4LCAxMDBweCkgfVxuICAgIDEwMCUgeyBvcGFjaXR5OiAxOyB0cmFuc2Zvcm06IHNjYWxlKDAuNCkgdHJhbnNsYXRlKDEwMHB4LCAzMDBweCkgfVxuICB9XG4gIFxuICAvKkBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogODUwcHgpIHtcbiAgICAubWFpbmNvbnRhaW5lciB7XG4gICAgICB0cmFuc2Zvcm06IHNjYWxlKDAuNik7XG4gICAgICB3aWR0aDogNjAwcHg7XG4gICAgICBoZWlnaHQ6IDQwMHB4O1xuICAgICAgYmFja2dyb3VuZC1zaXplOiA2MDBweCA0MDBweDtcbiAgICB9XG4gICAgXG4gICAgLmVycm9ydGV4dCB7XG4gICAgICBmb250LXNpemU6IDFlbTtcbiAgICB9XG4gIH0qLyJdfQ== */");
/***/ }),
/***/ "./src/app/modules/access-restricted/access-restricted.component.ts":
/*!**************************************************************************!*\
!*** ./src/app/modules/access-restricted/access-restricted.component.ts ***!
\**************************************************************************/
/*! exports provided: AccessRestrictedComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AccessRestrictedComponent", function() { return AccessRestrictedComponent; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
let AccessRestrictedComponent = class AccessRestrictedComponent {
constructor() { }
ngOnInit() {
}
};
AccessRestrictedComponent = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Component"])({
selector: 'app-access-restricted',
template: Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(/*! raw-loader!./access-restricted.component.html */ "./node_modules/raw-loader/dist/cjs.js!./src/app/modules/access-restricted/access-restricted.component.html")).default,
styles: [Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(/*! ./access-restricted.component.scss */ "./src/app/modules/access-restricted/access-restricted.component.scss")).default]
}),
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__metadata"])("design:paramtypes", [])
], AccessRestrictedComponent);
/***/ }),
/***/ "./src/app/modules/access404/access404.component.scss":
/*!************************************************************!*\
!*** ./src/app/modules/access404/access404.component.scss ***!
\************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = (".cls-1 {\n fill: #ffc541;\n}\n\n.cls-2 {\n fill: #4e4066;\n}\n\n.cls-3 {\n fill: #6f5b92;\n}\n\n.cls-4 {\n fill: #f78d5e;\n}\n\n.cls-5 {\n fill: #fa976c;\n}\n\n.cls-6,\n.cls-7,\n.cls-8 {\n fill: #b65c32;\n}\n\n.cls-10,\n.cls-6 {\n opacity: 0.6;\n}\n\n.cls-7 {\n opacity: 0.4;\n}\n\n.cls-9 {\n fill: #f4b73b;\n}\n\n.cls-11 {\n fill: #f9c358;\n}\n\n.cls-12 {\n fill: #9b462c;\n}\n\n.cls-13 {\n fill: #aa512e;\n}\n\n.cls-14 {\n fill: #7d6aa5;\n}\n\n/* animations */\n\n.wheel {\n -webkit-animation: wheel-rotate 6s ease infinite;\n animation: wheel-rotate 6s ease infinite;\n transform-origin: center;\n transform-box: fill-box;\n}\n\n@-webkit-keyframes wheel-rotate {\n 50% {\n transform: rotate(360deg);\n -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);\n animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);\n }\n 100% {\n transform: rotate(960deg);\n }\n}\n\n@keyframes wheel-rotate {\n 50% {\n transform: rotate(360deg);\n -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);\n animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);\n }\n 100% {\n transform: rotate(960deg);\n }\n}\n\n.clock-hand-1 {\n -webkit-animation: clock-rotate 3s linear infinite;\n animation: clock-rotate 3s linear infinite;\n transform-origin: bottom;\n transform-box: fill-box;\n}\n\n.clock-hand-2 {\n -webkit-animation: clock-rotate 6s linear infinite;\n animation: clock-rotate 6s linear infinite;\n transform-origin: bottom;\n transform-box: fill-box;\n}\n\n@-webkit-keyframes clock-rotate {\n 100% {\n transform: rotate(360deg);\n }\n}\n\n@keyframes clock-rotate {\n 100% {\n transform: rotate(360deg);\n }\n}\n\n#box-top {\n -webkit-animation: box-top-anim 2s linear infinite;\n animation: box-top-anim 2s linear infinite;\n transform-origin: right top;\n transform-box: fill-box;\n}\n\n@-webkit-keyframes box-top-anim {\n 50% {\n transform: rotate(-5deg);\n }\n}\n\n@keyframes box-top-anim {\n 50% {\n transform: rotate(-5deg);\n }\n}\n\n#umbrella {\n -webkit-animation: umbrella-anim 6s linear infinite;\n animation: umbrella-anim 6s linear infinite;\n transform-origin: center;\n transform-box: fill-box;\n}\n\n@-webkit-keyframes umbrella-anim {\n 25% {\n transform: translateY(10px) rotate(5deg);\n }\n 75% {\n transform: rotate(-5deg);\n }\n}\n\n@keyframes umbrella-anim {\n 25% {\n transform: translateY(10px) rotate(5deg);\n }\n 75% {\n transform: rotate(-5deg);\n }\n}\n\n#cup {\n -webkit-animation: cup-rotate 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;\n animation: cup-rotate 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;\n transform-origin: top left;\n transform-box: fill-box;\n}\n\n@-webkit-keyframes cup-rotate {\n 50% {\n transform: rotate(-5deg);\n }\n}\n\n@keyframes cup-rotate {\n 50% {\n transform: rotate(-5deg);\n }\n}\n\n#pillow {\n -webkit-animation: pillow-anim 3s linear infinite;\n animation: pillow-anim 3s linear infinite;\n transform-origin: center;\n transform-box: fill-box;\n}\n\n@-webkit-keyframes pillow-anim {\n 25% {\n transform: rotate(10deg) translateY(5px);\n }\n 75% {\n transform: rotate(-10deg);\n }\n}\n\n@keyframes pillow-anim {\n 25% {\n transform: rotate(10deg) translateY(5px);\n }\n 75% {\n transform: rotate(-10deg);\n }\n}\n\n#stripe {\n -webkit-animation: stripe-anim 3s linear infinite;\n animation: stripe-anim 3s linear infinite;\n transform-origin: center;\n transform-box: fill-box;\n}\n\n@-webkit-keyframes stripe-anim {\n 25% {\n transform: translate(10px, 0) rotate(-10deg);\n }\n 75% {\n transform: translateX(10px);\n }\n}\n\n@keyframes stripe-anim {\n 25% {\n transform: translate(10px, 0) rotate(-10deg);\n }\n 75% {\n transform: translateX(10px);\n }\n}\n\n#bike {\n -webkit-animation: bike-anim 6s ease infinite;\n animation: bike-anim 6s ease infinite;\n}\n\n@-webkit-keyframes bike-anim {\n 0% {\n transform: translateX(-1300px);\n }\n 50% {\n transform: translateX(0);\n -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);\n animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);\n }\n 100% {\n transform: translateX(1300px);\n }\n}\n\n@keyframes bike-anim {\n 0% {\n transform: translateX(-1300px);\n }\n 50% {\n transform: translateX(0);\n -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);\n animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);\n }\n 100% {\n transform: translateX(1300px);\n }\n}\n\n#rucksack {\n -webkit-animation: ruck-anim 3s linear infinite;\n animation: ruck-anim 3s linear infinite;\n transform-origin: top;\n transform-box: fill-box;\n}\n\n@-webkit-keyframes ruck-anim {\n 50% {\n transform: rotate(5deg);\n }\n}\n\n@keyframes ruck-anim {\n 50% {\n transform: rotate(5deg);\n }\n}\n\n.circle {\n -webkit-animation: circle-anim ease infinite;\n animation: circle-anim ease infinite;\n transform-origin: center;\n transform-box: fill-box;\n perspective: 0px;\n}\n\n.circle.c1 {\n -webkit-animation-duration: 2s;\n animation-duration: 2s;\n}\n\n.circle.c2 {\n -webkit-animation-duration: 3s;\n animation-duration: 3s;\n}\n\n.circle.c3 {\n -webkit-animation-duration: 1s;\n animation-duration: 1s;\n}\n\n.circle.c4 {\n -webkit-animation-duration: 1s;\n animation-duration: 1s;\n}\n\n.circle.c5 {\n -webkit-animation-duration: 2s;\n animation-duration: 2s;\n}\n\n.circle.c6 {\n -webkit-animation-duration: 3s;\n animation-duration: 3s;\n}\n\n@-webkit-keyframes circle-anim {\n 50% {\n transform: scale(0.2) rotateX(360deg) rotateY(360deg);\n }\n}\n\n@keyframes circle-anim {\n 50% {\n transform: scale(0.2) rotateX(360deg) rotateY(360deg);\n }\n}\n\n.four,\n#ou {\n -webkit-animation: four-anim cubic-bezier(0.39, 0.575, 0.565, 1) infinite;\n animation: four-anim cubic-bezier(0.39, 0.575, 0.565, 1) infinite;\n}\n\n.four.a {\n transform-origin: bottom left;\n -webkit-animation-duration: 3s;\n animation-duration: 3s;\n transform-box: fill-box;\n}\n\n.four.b {\n transform-origin: bottom right;\n -webkit-animation-duration: 3s;\n animation-duration: 3s;\n transform-box: fill-box;\n}\n\n#ou {\n -webkit-animation-duration: 6s;\n animation-duration: 6s;\n transform-origin: center;\n transform-box: fill-box;\n}\n\n@-webkit-keyframes four-anim {\n 50% {\n transform: scale(0.98);\n }\n}\n\n@keyframes four-anim {\n 50% {\n transform: scale(0.98);\n }\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvbW9kdWxlcy9hY2Nlc3M0MDQvYWNjZXNzNDA0LmNvbXBvbmVudC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0VBQ0ksYUFBQTtBQUNKOztBQUVFO0VBQ0UsYUFBQTtBQUNKOztBQUVFO0VBQ0UsYUFBQTtBQUNKOztBQUVFO0VBQ0UsYUFBQTtBQUNKOztBQUVFO0VBQ0UsYUFBQTtBQUNKOztBQUVFOzs7RUFHRSxhQUFBO0FBQ0o7O0FBRUU7O0VBRUUsWUFBQTtBQUNKOztBQUVFO0VBQ0UsWUFBQTtBQUNKOztBQUVFO0VBQ0UsYUFBQTtBQUNKOztBQUVFO0VBQ0UsYUFBQTtBQUNKOztBQUVFO0VBQ0UsYUFBQTtBQUNKOztBQUVFO0VBQ0UsYUFBQTtBQUNKOztBQUVFO0VBQ0UsYUFBQTtBQUNKOztBQUdFLGVBQUE7O0FBRUE7RUFDRSxnREFBQTtVQUFBLHdDQUFBO0VBQ0Esd0JBQUE7RUFDQSx1QkFBQTtBQURKOztBQUlFO0VBQ0U7SUFDRSx5QkFBQTtJQUNBLHdFQUFBO1lBQUEsZ0VBQUE7RUFESjtFQUdFO0lBQ0UseUJBQUE7RUFESjtBQUNGOztBQU5FO0VBQ0U7SUFDRSx5QkFBQTtJQUNBLHdFQUFBO1lBQUEsZ0VBQUE7RUFESjtFQUdFO0lBQ0UseUJBQUE7RUFESjtBQUNGOztBQUlFO0VBQ0Usa0RBQUE7VUFBQSwwQ0FBQTtFQUNBLHdCQUFBO0VBQ0EsdUJBQUE7QUFGSjs7QUFLRTtFQUNFLGtEQUFBO1VBQUEsMENBQUE7RUFDQSx3QkFBQTtFQUNBLHVCQUFBO0FBRko7O0FBS0U7RUFDRTtJQUNFLHlCQUFBO0VBRko7QUFDRjs7QUFERTtFQUNFO0lBQ0UseUJBQUE7RUFGSjtBQUNGOztBQUtFO0VBQ0Usa0RBQUE7VUFBQSwwQ0FBQTtFQUNBLDJCQUFBO0VBQ0EsdUJBQUE7QUFISjs7QUFNRTtFQUNFO0lBQ0Usd0JBQUE7RUFISjtBQUNGOztBQUFFO0VBQ0U7SUFDRSx3QkFBQTtFQUhKO0FBQ0Y7O0FBTUU7RUFDRSxtREFBQTtVQUFBLDJDQUFBO0VBQ0Esd0JBQUE7RUFDQSx1QkFBQTtBQUpKOztBQU9FO0VBQ0U7SUFDRSx3Q0FBQTtFQUpKO0VBTUU7SUFDRSx3QkFBQTtFQUpKO0FBQ0Y7O0FBRkU7RUFDRTtJQUNFLHdDQUFBO0VBSko7RUFNRTtJQUNFLHdCQUFBO0VBSko7QUFDRjs7QUFPRTtFQUNFLGlGQUFBO1VBQUEseUVBQUE7RUFDQSwwQkFBQTtFQUNBLHVCQUFBO0FBTEo7O0FBUUU7RUFDRTtJQUNFLHdCQUFBO0VBTEo7QUFDRjs7QUFFRTtFQUNFO0lBQ0Usd0JBQUE7RUFMSjtBQUNGOztBQVFFO0VBQ0UsaURBQUE7VUFBQSx5Q0FBQTtFQUNBLHdCQUFBO0VBQ0EsdUJBQUE7QUFOSjs7QUFTRTtFQUNFO0lBQ0Usd0NBQUE7RUFOSjtFQVFFO0lBQ0UseUJBQUE7RUFOSjtBQUNGOztBQUFFO0VBQ0U7SUFDRSx3Q0FBQTtFQU5KO0VBUUU7SUFDRSx5QkFBQTtFQU5KO0FBQ0Y7O0FBU0U7RUFDRSxpREFBQTtVQUFBLHlDQUFBO0VBQ0Esd0JBQUE7RUFDQSx1QkFBQTtBQVBKOztBQVVFO0VBQ0U7SUFDRSw0Q0FBQTtFQVBKO0VBU0U7SUFDRSwyQkFBQTtFQVBKO0FBQ0Y7O0FBQ0U7RUFDRTtJQUNFLDRDQUFBO0VBUEo7RUFTRTtJQUNFLDJCQUFBO0VBUEo7QUFDRjs7QUFVRTtFQUNFLDZDQUFBO1VBQUEscUNBQUE7QUFSSjs7QUFXRTtFQUNFO0lBQ0UsOEJBQUE7RUFSSjtFQVVFO0lBQ0Usd0JBQUE7SUFDQSxzRUFBQTtZQUFBLDhEQUFBO0VBUko7RUFVRTtJQUNFLDZCQUFBO0VBUko7QUFDRjs7QUFGRTtFQUNFO0lBQ0UsOEJBQUE7RUFSSjtFQVVFO0lBQ0Usd0JBQUE7SUFDQSxzRUFBQTtZQUFBLDhEQUFBO0VBUko7RUFVRTtJQUNFLDZCQUFBO0VBUko7QUFDRjs7QUFXRTtFQUNFLCtDQUFBO1VBQUEsdUNBQUE7RUFDQSxxQkFBQTtFQUNBLHVCQUFBO0FBVEo7O0FBWUU7RUFDRTtJQUNFLHVCQUFBO0VBVEo7QUFDRjs7QUFNRTtFQUNFO0lBQ0UsdUJBQUE7RUFUSjtBQUNGOztBQVlFO0VBQ0UsNENBQUE7VUFBQSxvQ0FBQTtFQUNBLHdCQUFBO0VBQ0EsdUJBQUE7RUFDQSxnQkFBQTtBQVZKOztBQWFFO0VBQ0UsOEJBQUE7VUFBQSxzQkFBQTtBQVZKOztBQWFFO0VBQ0UsOEJBQUE7VUFBQSxzQkFBQTtBQVZKOztBQWFFO0VBQ0UsOEJBQUE7VUFBQSxzQkFBQTtBQVZKOztBQWFFO0VBQ0UsOEJBQUE7VUFBQSxzQkFBQTtBQVZKOztBQWFFO0VBQ0UsOEJBQUE7VUFBQSxzQkFBQTtBQVZKOztBQWFFO0VBQ0UsOEJBQUE7VUFBQSxzQkFBQTtBQVZKOztBQWFFO0VBQ0U7SUFDRSxxREFBQTtFQVZKO0FBQ0Y7O0FBT0U7RUFDRTtJQUNFLHFEQUFBO0VBVko7QUFDRjs7QUFhRTs7RUFFRSx5RUFBQTtVQUFBLGlFQUFBO0FBWEo7O0FBY0U7RUFDRSw2QkFBQTtFQUNBLDhCQUFBO1VBQUEsc0JBQUE7RUFDQSx1QkFBQTtBQVhKOztBQWNFO0VBQ0UsOEJBQUE7RUFDQSw4QkFBQTtVQUFBLHNCQUFBO0VBQ0EsdUJBQUE7QUFYSjs7QUFjRTtFQUNFLDhCQUFBO1VBQUEsc0JBQUE7RUFDQSx3QkFBQTtFQUNBLHVCQUFBO0FBWEo7O0FBY0U7RUFDRTtJQUNFLHNCQUFBO0VBWEo7QUFDRjs7QUFRRTtFQUNFO0lBQ0Usc0JBQUE7RUFYSjtBQUNGIiwiZmlsZSI6InNyYy9hcHAvbW9kdWxlcy9hY2Nlc3M0MDQvYWNjZXNzNDA0LmNvbXBvbmVudC5zY3NzIiwic291cmNlc0NvbnRlbnQiOlsiLmNscy0xIHtcbiAgICBmaWxsOiAjZmZjNTQxO1xuICB9XG4gIFxuICAuY2xzLTIge1xuICAgIGZpbGw6ICM0ZTQwNjY7XG4gIH1cbiAgXG4gIC5jbHMtMyB7XG4gICAgZmlsbDogIzZmNWI5MjtcbiAgfVxuICBcbiAgLmNscy00IHtcbiAgICBmaWxsOiAjZjc4ZDVlO1xuICB9XG4gIFxuICAuY2xzLTUge1xuICAgIGZpbGw6ICNmYTk3NmM7XG4gIH1cbiAgXG4gIC5jbHMtNixcbiAgLmNscy03LFxuICAuY2xzLTgge1xuICAgIGZpbGw6ICNiNjVjMzI7XG4gIH1cbiAgXG4gIC5jbHMtMTAsXG4gIC5jbHMtNiB7XG4gICAgb3BhY2l0eTogMC42O1xuICB9XG4gIFxuICAuY2xzLTcge1xuICAgIG9wYWNpdHk6IDAuNDtcbiAgfVxuICBcbiAgLmNscy05IHtcbiAgICBmaWxsOiAjZjRiNzNiO1xuICB9XG4gIFxuICAuY2xzLTExIHtcbiAgICBmaWxsOiAjZjljMzU4O1xuICB9XG4gIFxuICAuY2xzLTEyIHtcbiAgICBmaWxsOiAjOWI0NjJjO1xuICB9XG4gIFxuICAuY2xzLTEzIHtcbiAgICBmaWxsOiAjYWE1MTJlO1xuICB9XG4gIFxuICAuY2xzLTE0IHtcbiAgICBmaWxsOiAjN2Q2YWE1O1xuICB9XG4gIFxuICBcbiAgLyogYW5pbWF0aW9ucyAqL1xuICBcbiAgLndoZWVsIHtcbiAgICBhbmltYXRpb246IHdoZWVsLXJvdGF0ZSA2cyBlYXNlIGluZmluaXRlO1xuICAgIHRyYW5zZm9ybS1vcmlnaW46IGNlbnRlcjtcbiAgICB0cmFuc2Zvcm0tYm94OiBmaWxsLWJveDtcbiAgfVxuICBcbiAgQGtleWZyYW1lcyB3aGVlbC1yb3RhdGUge1xuICAgIDUwJSB7XG4gICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgzNjBkZWcpO1xuICAgICAgYW5pbWF0aW9uLXRpbWluZy1mdW5jdGlvbjogY3ViaWMtYmV6aWVyKDAuNTUsIDAuMDg1LCAwLjY4LCAwLjUzKTtcbiAgICB9XG4gICAgMTAwJSB7XG4gICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg5NjBkZWcpXG4gICAgfVxuICB9XG4gIFxuICAuY2xvY2staGFuZC0xIHtcbiAgICBhbmltYXRpb246IGNsb2NrLXJvdGF0ZSAzcyBsaW5lYXIgaW5maW5pdGU7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogYm90dG9tO1xuICAgIHRyYW5zZm9ybS1ib3g6IGZpbGwtYm94O1xuICB9XG4gIFxuICAuY2xvY2staGFuZC0yIHtcbiAgICBhbmltYXRpb246IGNsb2NrLXJvdGF0ZSA2cyBsaW5lYXIgaW5maW5pdGU7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogYm90dG9tO1xuICAgIHRyYW5zZm9ybS1ib3g6IGZpbGwtYm94O1xuICB9XG4gIFxuICBAa2V5ZnJhbWVzIGNsb2NrLXJvdGF0ZSB7XG4gICAgMTAwJSB7XG4gICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgzNjBkZWcpXG4gICAgfVxuICB9XG4gIFxuICAjYm94LXRvcCB7XG4gICAgYW5pbWF0aW9uOiBib3gtdG9wLWFuaW0gMnMgbGluZWFyIGluZmluaXRlO1xuICAgIHRyYW5zZm9ybS1vcmlnaW46IHJpZ2h0IHRvcDtcbiAgICB0cmFuc2Zvcm0tYm94OiBmaWxsLWJveDtcbiAgfVxuICBcbiAgQGtleWZyYW1lcyBib3gtdG9wLWFuaW0ge1xuICAgIDUwJSB7XG4gICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtNWRlZylcbiAgICB9XG4gIH1cbiAgXG4gICN1bWJyZWxsYSB7XG4gICAgYW5pbWF0aW9uOiB1bWJyZWxsYS1hbmltIDZzIGxpbmVhciBpbmZpbml0ZTtcbiAgICB0cmFuc2Zvcm0tb3JpZ2luOiBjZW50ZXI7XG4gICAgdHJhbnNmb3JtLWJveDogZmlsbC1ib3g7XG4gIH1cbiAgXG4gIEBrZXlmcmFtZXMgdW1icmVsbGEtYW5pbSB7XG4gICAgMjUlIHtcbiAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlWSgxMHB4KSByb3RhdGUoNWRlZyk7XG4gICAgfVxuICAgIDc1JSB7XG4gICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtNWRlZyk7XG4gICAgfVxuICB9XG4gIFxuICAjY3VwIHtcbiAgICBhbmltYXRpb246IGN1cC1yb3RhdGUgM3MgY3ViaWMtYmV6aWVyKDAuNDU1LCAwLjAzLCAwLjUxNSwgMC45NTUpIGluZmluaXRlO1xuICAgIHRyYW5zZm9ybS1vcmlnaW46IHRvcCBsZWZ0O1xuICAgIHRyYW5zZm9ybS1ib3g6IGZpbGwtYm94O1xuICB9XG4gIFxuICBAa2V5ZnJhbWVzIGN1cC1yb3RhdGUge1xuICAgIDUwJSB7XG4gICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtNWRlZylcbiAgICB9XG4gIH1cbiAgXG4gICNwaWxsb3cge1xuICAgIGFuaW1hdGlvbjogcGlsbG93LWFuaW0gM3MgbGluZWFyIGluZmluaXRlO1xuICAgIHRyYW5zZm9ybS1vcmlnaW46IGNlbnRlcjtcbiAgICB0cmFuc2Zvcm0tYm94OiBmaWxsLWJveDtcbiAgfVxuICBcbiAgQGtleWZyYW1lcyBwaWxsb3ctYW5pbSB7XG4gICAgMjUlIHtcbiAgICAgIHRyYW5zZm9ybTogcm90YXRlKDEwZGVnKSB0cmFuc2xhdGVZKDVweClcbiAgICB9XG4gICAgNzUlIHtcbiAgICAgIHRyYW5zZm9ybTogcm90YXRlKC0xMGRlZylcbiAgICB9XG4gIH1cbiAgXG4gICNzdHJpcGUge1xuICAgIGFuaW1hdGlvbjogc3RyaXBlLWFuaW0gM3MgbGluZWFyIGluZmluaXRlO1xuICAgIHRyYW5zZm9ybS1vcmlnaW46IGNlbnRlcjtcbiAgICB0cmFuc2Zvcm0tYm94OiBmaWxsLWJveDtcbiAgfVxuICBcbiAgQGtleWZyYW1lcyBzdHJpcGUtYW5pbSB7XG4gICAgMjUlIHtcbiAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKDEwcHgsIDApIHJvdGF0ZSgtMTBkZWcpXG4gICAgfVxuICAgIDc1JSB7XG4gICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoMTBweClcbiAgICB9XG4gIH1cbiAgXG4gICNiaWtlIHtcbiAgICBhbmltYXRpb246IGJpa2UtYW5pbSA2cyBlYXNlIGluZmluaXRlO1xuICB9XG4gIFxuICBAa2V5ZnJhbWVzIGJpa2UtYW5pbSB7XG4gICAgMCUge1xuICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKC0xMzAwcHgpXG4gICAgfVxuICAgIDUwJSB7XG4gICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoMCk7XG4gICAgICBhbmltYXRpb24tdGltaW5nLWZ1bmN0aW9uOiBjdWJpYy1iZXppZXIoMC40NywgMCwgMC43NDUsIDAuNzE1KTtcbiAgICB9XG4gICAgMTAwJSB7XG4gICAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoMTMwMHB4KVxuICAgIH1cbiAgfVxuICBcbiAgI3J1Y2tzYWNrIHtcbiAgICBhbmltYXRpb246IHJ1Y2stYW5pbSAzcyBsaW5lYXIgaW5maW5pdGU7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogdG9wO1xuICAgIHRyYW5zZm9ybS1ib3g6IGZpbGwtYm94O1xuICB9XG4gIFxuICBAa2V5ZnJhbWVzIHJ1Y2stYW5pbSB7XG4gICAgNTAlIHtcbiAgICAgIHRyYW5zZm9ybTogcm90YXRlKDVkZWcpXG4gICAgfVxuICB9XG4gIFxuICAuY2lyY2xlIHtcbiAgICBhbmltYXRpb246IGNpcmNsZS1hbmltIGVhc2UgaW5maW5pdGU7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogY2VudGVyO1xuICAgIHRyYW5zZm9ybS1ib3g6IGZpbGwtYm94O1xuICAgIHBlcnNwZWN0aXZlOiAwcHg7XG4gIH1cbiAgXG4gIC5jaXJjbGUuYzEge1xuICAgIGFuaW1hdGlvbi1kdXJhdGlvbjogMnNcbiAgfVxuICBcbiAgLmNpcmNsZS5jMiB7XG4gICAgYW5pbWF0aW9uLWR1cmF0aW9uOiAzc1xuICB9XG4gIFxuICAuY2lyY2xlLmMzIHtcbiAgICBhbmltYXRpb24tZHVyYXRpb246IDFzXG4gIH1cbiAgXG4gIC5jaXJjbGUuYzQge1xuICAgIGFuaW1hdGlvbi1kdXJhdGlvbjogMXNcbiAgfVxuICBcbiAgLmNpcmNsZS5jNSB7XG4gICAgYW5pbWF0aW9uLWR1cmF0aW9uOiAyc1xuICB9XG4gIFxuICAuY2lyY2xlLmM2IHtcbiAgICBhbmltYXRpb24tZHVyYXRpb246IDNzXG4gIH1cbiAgXG4gIEBrZXlmcmFtZXMgY2lyY2xlLWFuaW0ge1xuICAgIDUwJSB7XG4gICAgICB0cmFuc2Zvcm06IHNjYWxlKC4yKSByb3RhdGVYKDM2MGRlZykgcm90YXRlWSgzNjBkZWcpXG4gICAgfVxuICB9XG4gIFxuICAuZm91cixcbiAgI291IHtcbiAgICBhbmltYXRpb246IGZvdXItYW5pbSBjdWJpYy1iZXppZXIoMC4zOSwgMC41NzUsIDAuNTY1LCAxKSBpbmZpbml0ZTtcbiAgfVxuICBcbiAgLmZvdXIuYSB7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogYm90dG9tIGxlZnQ7XG4gICAgYW5pbWF0aW9uLWR1cmF0aW9uOiAzcztcbiAgICB0cmFuc2Zvcm0tYm94OiBmaWxsLWJveDtcbiAgfVxuICBcbiAgLmZvdXIuYiB7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogYm90dG9tIHJpZ2h0O1xuICAgIGFuaW1hdGlvbi1kdXJhdGlvbjogM3M7XG4gICAgdHJhbnNmb3JtLWJveDogZmlsbC1ib3g7XG4gIH1cbiAgXG4gICNvdSB7XG4gICAgYW5pbWF0aW9uLWR1cmF0aW9uOiA2cztcbiAgICB0cmFuc2Zvcm0tb3JpZ2luOiBjZW50ZXI7XG4gICAgdHJhbnNmb3JtLWJveDogZmlsbC1ib3g7XG4gIH1cbiAgXG4gIEBrZXlmcmFtZXMgZm91ci1hbmltIHtcbiAgICA1MCUge1xuICAgICAgdHJhbnNmb3JtOiBzY2FsZSguOTgpXG4gICAgfVxuICB9Il19 */");
/***/ }),
/***/ "./src/app/modules/access404/access404.component.ts":
/*!**********************************************************!*\
!*** ./src/app/modules/access404/access404.component.ts ***!
\**********************************************************/
/*! exports provided: Access404Component */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Access404Component", function() { return Access404Component; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
let Access404Component = class Access404Component {
constructor() { }
ngOnInit() {
}
};
Access404Component = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Component"])({
selector: 'app-access404',
template: Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(/*! raw-loader!./access404.component.html */ "./node_modules/raw-loader/dist/cjs.js!./src/app/modules/access404/access404.component.html")).default,
styles: [Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(/*! ./access404.component.scss */ "./src/app/modules/access404/access404.component.scss")).default]
}),
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__metadata"])("design:paramtypes", [])
], Access404Component);
/***/ }),
/***/ "./src/app/modules/home/components/home-component.component.scss":
/*!***********************************************************************!*\
!*** ./src/app/modules/home/components/home-component.component.scss ***!
\***********************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = (".feature-list {\n padding: 0px 20px;\n}\n\n.intro {\n padding: 0px 20px;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvbW9kdWxlcy9ob21lL2NvbXBvbmVudHMvaG9tZS1jb21wb25lbnQuY29tcG9uZW50LnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7RUFDSSxpQkFBQTtBQUNKOztBQUNBO0VBQ0ksaUJBQUE7QUFFSiIsImZpbGUiOiJzcmMvYXBwL21vZHVsZXMvaG9tZS9jb21wb25lbnRzL2hvbWUtY29tcG9uZW50LmNvbXBvbmVudC5zY3NzIiwic291cmNlc0NvbnRlbnQiOlsiLmZlYXR1cmUtbGlzdHtcbiAgICBwYWRkaW5nOiAwcHggMjBweDtcbn1cbi5pbnRyb3tcbiAgICBwYWRkaW5nOiAwcHggMjBweDtcbn1cbiJdfQ== */");
/***/ }),
/***/ "./src/app/modules/home/components/home-component.component.ts":
/*!*********************************************************************!*\
!*** ./src/app/modules/home/components/home-component.component.ts ***!
\*********************************************************************/
/*! exports provided: HomeComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "HomeComponent", function() { return HomeComponent; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
let HomeComponent = class HomeComponent {
constructor() { }
ngOnInit() {
}
};
HomeComponent = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Component"])({
selector: 'app-home-component',
template: Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(/*! raw-loader!./home-component.component.html */ "./node_modules/raw-loader/dist/cjs.js!./src/app/modules/home/components/home-component.component.html")).default,
styles: [Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(/*! ./home-component.component.scss */ "./src/app/modules/home/components/home-component.component.scss")).default]
}),
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__metadata"])("design:paramtypes", [])
], HomeComponent);
/***/ }),
/***/ "./src/app/services/auth/auth.service.ts":
/*!***********************************************!*\
!*** ./src/app/services/auth/auth.service.ts ***!
\***********************************************/
/*! exports provided: AuthService */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AuthService", function() { return AuthService; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/router */ "./node_modules/@angular/router/__ivy_ngcc__/fesm2015/router.js");
let AuthService = class AuthService {
constructor(router) {
this.router = router;
}
/** Check if the routing is valid */
isvaidRoute() {
console.log(window.location.pathname);
/** Add logic to filterr routes */
if (window.location.pathname.includes("restricted")) {
this.router.navigate(["/restricted"]);
return false;
}
return true;
}
};
AuthService.ctorParameters = () => [
{ type: _angular_router__WEBPACK_IMPORTED_MODULE_2__["Router"] }
];
AuthService = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Injectable"])({
providedIn: 'root'
}),
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__metadata"])("design:paramtypes", [_angular_router__WEBPACK_IMPORTED_MODULE_2__["Router"]])
], AuthService);
/***/ }),
/***/ "./src/app/services/snackbar/snackbar.service.ts":
/*!*******************************************************!*\
!*** ./src/app/services/snackbar/snackbar.service.ts ***!
\*******************************************************/
/*! exports provided: SnackbarService */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SnackbarService", function() { return SnackbarService; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_material_snack_bar__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/material/snack-bar */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/snack-bar.js");
/* harmony import */ var src_app_utilities_constants_AppConfig__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! src/app/utilities/constants/AppConfig */ "./src/app/utilities/constants/AppConfig.ts");
let SnackbarService = class SnackbarService {
constructor(snackBar) {
this.snackBar = snackBar;
this.config = src_app_utilities_constants_AppConfig__WEBPACK_IMPORTED_MODULE_3__["AppConfig"].SNACKBAR_CONFIG;
}
showSuccess(message = 'Success!', customConfig = {}) {
this.snackBar.dismiss();
this.snackbarRef = this.snackBar.open(message, 'Close', {
panelClass: ['snack-success', 'snack'],
duration: customConfig.duration || this.config.TIMEOUT,
verticalPosition: this.config.VERTICAL,
horizontalPosition: this.config.HORIZONTAL,
...customConfig
});
}
showError(message = 'Something went wrong, please try again later !!', customConfig = {}) {
this.snackBar.dismiss();
this.snackbarRef = this.snackBar.open(message, 'Close', {
panelClass: ['snack-error', 'snack'],
duration: customConfig.duration || this.config.ERROR_TIMEOUT,
verticalPosition: this.config.VERTICAL,
horizontalPosition: this.config.HORIZONTAL,
...customConfig
});
}
showWarning(message = 'Warning!', customConfig = {}) {
this.snackBar.dismiss();
this.snackbarRef = this.snackBar.open(message, 'Close', {
panelClass: ['snack-warning', 'snack'],
duration: customConfig.duration || this.config.TIMEOUT,
verticalPosition: this.config.VERTICAL,
horizontalPosition: this.config.HORIZONTAL,
...customConfig
});
}
showInfo(message = 'Info', customConfig = {}) {
this.snackBar.dismiss();
this.snackbarRef = this.snackBar.open(message, 'Close', {
panelClass: ['snack-info', 'snack'],
duration: customConfig.duration || this.config.TIMEOUT,
verticalPosition: this.config.VERTICAL,
horizontalPosition: this.config.HORIZONTAL,
...customConfig
});
}
};
SnackbarService.ctorParameters = () => [
{ type: _angular_material_snack_bar__WEBPACK_IMPORTED_MODULE_2__["MatSnackBar"] }
];
SnackbarService = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Injectable"])({
providedIn: 'root'
}),
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__metadata"])("design:paramtypes", [_angular_material_snack_bar__WEBPACK_IMPORTED_MODULE_2__["MatSnackBar"]])
], SnackbarService);
/***/ }),
/***/ "./src/app/shared/app.shared.module.ts":
/*!*********************************************!*\
!*** ./src/app/shared/app.shared.module.ts ***!
\*********************************************/
/*! exports provided: SharedModule */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SharedModule", function() { return SharedModule; });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "./node_modules/tslib/tslib.es6.js");
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ "./node_modules/@angular/common/__ivy_ngcc__/fesm2015/common.js");
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ "./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */ var _angular_material_button__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/material/button */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/button.js");
/* harmony import */ var _angular_material_checkbox__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/material/checkbox */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/checkbox.js");
/* harmony import */ var _angular_material_dialog__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/material/dialog */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/dialog.js");
/* harmony import */ var _angular_material_expansion__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/material/expansion */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/expansion.js");
/* harmony import */ var _angular_material_list__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/material/list */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/list.js");
/* harmony import */ var _angular_material_select__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @angular/material/select */ "./node_modules/@angular/material/__ivy_ngcc__/fesm2015/select.js");
/* harmony import */ var ngx_spinner__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ngx-spinner */ "./node_modules/ngx-spinner/__ivy_ngcc__/fesm2015/ngx-spinner.js");
/* harmony import */ var _utilities_comfirm_dialog_comfirm_dialog_component__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../utilities/comfirm-dialog/comfirm-dialog.component */ "./src/app/utilities/comfirm-dialog/comfirm-dialog.component.ts");
/* harmony import */ var _header_header_component__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./header/header.component */ "./src/app/shared/header/header.component.ts");
/* Material */
/* Utility Components */
/* Common */
let SharedModule = class SharedModule {
};
SharedModule = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([
Object(_angular_core__WEBPACK_IMPORTED_MODULE_2__["NgModule"])({
imports: [
_angular_common__WEBPACK_IMPORTED_MODULE_1__["CommonModule"],
_angular_material_checkbox__WEBPACK_IMPORTED_MODULE_4__["MatCheckboxModule"],
_angular_material_list__WEBPACK_IMPORTED_MODULE_7__["MatListModule"],
_angular_material_dialog__WEBPACK_IMPORTED_MODULE_5__["MatDialogModule"],
_angular_material_select__WEBPACK_IMPORTED_MODULE_8__["MatSelectModule"],
_angular_material_button__WEBPACK_IMPORTED_MODULE_3__["MatButtonModule"],
ngx_spinner__WEBPACK_IMPORTED_MODULE_9__["NgxSpinnerModule"],
_angular_material_expansion__WEBPACK_IMPORTED_MODULE_6__["MatExpansionModule"]
],
declarations: [
_header_header_component__WEBPACK_IMPORTED_MODULE_11__["HeaderComponent"],
_utilities_comfirm_dialog_comfirm_dialog_component__WEBPACK_IMPORTED_MODULE_10__["ComfirmDialogComponent"]
],
exports: [
_header_header_component__WEBPACK_IMPORTED_MODULE_11__["HeaderComponent"],
_utilities_comfirm_dialog_comfirm_dialog_component__WEBPACK_IMPORTED_MODULE_10__["ComfirmDialogComponent"],
_angular_material_checkbox__WEBPACK_IMPORTED_MODULE_4__["MatCheckboxModule"],
_angular_material_list__WEBPACK_IMPORTED_MODULE_7__["MatListModule"],
_angular_material_dialog__WEBPACK_IMPORTED_MODULE_5__["MatDialogModule"],
_angular_material_select__WEBPACK_IMPORTED_MODULE_8__["MatSelectModule"],
_angular_material_button__WEBPACK_IMPORTED_MODULE_3__["MatButtonModule"],
ngx_spinner__WEBPACK_IMPORTED_MODULE_9__["NgxSpinnerModule"],
_angular_material_expansion__WEBPACK_IMPORTED_MODULE_6__["MatExpansionModule"]
],
providers: [],
entryComponents: [_utilities_comfirm_dialog_comfirm_dialog_component__WEBPACK_IMPORTED_MODULE_10__["ComfirmDialogComponent"]]
})
], SharedModule);
/***/ }),
/***/ "./src/app/shared/header/header.component.scss":
/*!*****************************************************!*\
!*** ./src/app/shared/header/header.component.scss ***!
\*****************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */ __webpack_exports__["default"] = (".header {\n font-size: 18px;\n font-weight: 800;\n padding: 10px 20px;\n color: #fff;\n background-color: #6a5acd;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9hcHAvc2hhcmVkL2hlYWRlci9oZWFkZXIuY29tcG9uZW50LnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7RUFDSSxlQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtFQUNBLFdBQUE7RUFDQSx5QkFBQTtBQUNKIiwiZmlsZSI6InNyYy9hcHAvc2hhcmVkL2hlYWRlci9oZWFkZXIuY29tcG9uZW50LnNjc3MiLCJzb3VyY2VzQ29udGVudCI6WyIuaGVhZGVye1xuICAgIGZvbnQtc2l6ZTogMThweDtcbiAgICBmb250LXdlaWdodDogODAwO1xuICAgIHBhZGRpbmc6IDEwcHggMjBweDtcbiAgICBjb2xvcjogI2ZmZjtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjNmE1YWNkO1xufVxuIl19 */");
/***/ }),
/***/ "./src/app/shared/header/header.component.ts":