-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInGame.tscn
1550 lines (1340 loc) · 117 KB
/
InGame.tscn
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
[gd_scene load_steps=73 format=2]
[ext_resource path="res://entities/enemies/TimerLasers.gd" type="Script" id=1]
[ext_resource path="res://entities/Music.gd" type="Script" id=2]
[ext_resource path="res://assets/textures/tuto-lasers.png" type="Texture" id=3]
[ext_resource path="res://entities/world/ActivateLight.tscn" type="PackedScene" id=4]
[ext_resource path="res://assets/textures/tilemap.png" type="Texture" id=5]
[ext_resource path="res://assets/textures/tilemap-back.png" type="Texture" id=7]
[ext_resource path="res://entities/world/MovingPlatform.tscn" type="PackedScene" id=8]
[ext_resource path="res://entities/CameraAnimation.gd" type="Script" id=9]
[ext_resource path="res://InGame.gd" type="Script" id=10]
[ext_resource path="res://assets/textures/elJaquer_doodle.png" type="Texture" id=11]
[ext_resource path="res://entities/world/ChangeTrack.tscn" type="PackedScene" id=12]
[ext_resource path="res://entities/enemies/Camera.tscn" type="PackedScene" id=13]
[ext_resource path="res://entities/world/Checkpoint.tscn" type="PackedScene" id=14]
[ext_resource path="res://entities/world/SnapCamera.tscn" type="PackedScene" id=15]
[ext_resource path="res://entities/world/Limit_V.tscn" type="PackedScene" id=16]
[ext_resource path="res://entities/enemies/CameraSwitch.tscn" type="PackedScene" id=17]
[ext_resource path="res://entities/world/Vase.tscn" type="PackedScene" id=18]
[ext_resource path="res://entities/enemies/Guard.tscn" type="PackedScene" id=19]
[ext_resource path="res://entities/player/Player.tscn" type="PackedScene" id=20]
[ext_resource path="res://entities/enemies/Laser.tscn" type="PackedScene" id=21]
[ext_resource path="res://assets/fonts/Koulen-Regular.ttf" type="DynamicFontData" id=22]
[ext_resource path="res://assets/textures/elJaquer.png" type="Texture" id=23]
[ext_resource path="res://entities/world/Zoom.tscn" type="PackedScene" id=24]
[ext_resource path="res://entities/CameraFade.gd" type="Script" id=25]
[ext_resource path="res://entities/Pause.gd" type="Script" id=26]
[ext_resource path="res://entities/world/Ledge.tscn" type="PackedScene" id=27]
[ext_resource path="res://assets/textures/jump-sign.png" type="Texture" id=28]
[ext_resource path="res://assets/textures/painting1.png" type="Texture" id=29]
[ext_resource path="res://assets/textures/tuto-view.png" type="Texture" id=30]
[ext_resource path="res://assets/textures/tuto-hang.png" type="Texture" id=31]
[ext_resource path="res://assets/textures/spotlight-circle-wide.png" type="Texture" id=32]
[ext_resource path="res://assets/textures/camera-sign.png" type="Texture" id=33]
[ext_resource path="res://assets/textures/wayfinding1.png" type="Texture" id=34]
[ext_resource path="res://entities/world/Stealable.tscn" type="PackedScene" id=35]
[ext_resource path="res://assets/textures/final-painting.png" type="Texture" id=36]
[ext_resource path="res://assets/textures/mountain_doodle.png" type="Texture" id=37]
[ext_resource path="res://assets/textures/final-painting_doodle.png" type="Texture" id=38]
[ext_resource path="res://assets/shaders/FinalFade.gdshader" type="Shader" id=39]
[ext_resource path="res://assets/textures/final-fade.png" type="Texture" id=40]
[ext_resource path="res://FinalCameraFade.gd" type="Script" id=41]
[ext_resource path="res://entities/world/FakeWall.tscn" type="PackedScene" id=42]
[ext_resource path="res://assets/textures/theSonOfMan.png" type="Texture" id=43]
[ext_resource path="res://assets/textures/theSonOfMan_Doodle.png" type="Texture" id=44]
[ext_resource path="res://assets/textures/juanBautista.png" type="Texture" id=45]
[ext_resource path="res://assets/textures/juanBautistaDoodle.png" type="Texture" id=46]
[ext_resource path="res://assets/textures/richterDoodle.png" type="Texture" id=47]
[ext_resource path="res://assets/textures/spotlight-circle.png" type="Texture" id=48]
[ext_resource path="res://assets/textures/richter.png" type="Texture" id=49]
[ext_resource path="res://assets/textures/tranfiguracionDeRafael.png" type="Texture" id=50]
[ext_resource path="res://entities/world/Pit.gd" type="Script" id=51]
[ext_resource path="res://entities/world/ChangeBackground.tscn" type="PackedScene" id=52]
[ext_resource path="res://assets/textures/fogataDeSanJuanDoodle.png" type="Texture" id=53]
[ext_resource path="res://assets/textures/fogataDeSanJuan.png" type="Texture" id=54]
[ext_resource path="res://assets/textures/wayfinding2.png" type="Texture" id=55]
[ext_resource path="res://assets/textures/videoGamesDoodle.png" type="Texture" id=56]
[ext_resource path="res://assets/textures/videoGames.png" type="Texture" id=57]
[sub_resource type="DynamicFont" id=24]
size = 50
font_data = ExtResource( 22 )
[sub_resource type="DynamicFont" id=25]
size = 22
font_data = ExtResource( 22 )
[sub_resource type="RectangleShape2D" id=28]
extents = Vector2( 536.5, 23 )
[sub_resource type="ShaderMaterial" id=27]
shader = ExtResource( 39 )
shader_param/cutoff = 1.0
shader_param/smooth_size = 0.02
shader_param/mask = ExtResource( 40 )
[sub_resource type="TileSet" id=23]
0/name = "tilemap-back.png 0"
0/texture = ExtResource( 7 )
0/tex_offset = Vector2( 0, 0 )
0/modulate = Color( 1, 1, 1, 1 )
0/region = Rect2( 224, 0, 64, 64 )
0/tile_mode = 0
0/occluder_offset = Vector2( 0, 0 )
0/navigation_offset = Vector2( 0, 0 )
0/shape_offset = Vector2( 0, 0 )
0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
0/shape_one_way = false
0/shape_one_way_margin = 0.0
0/shapes = [ ]
0/z_index = 0
[sub_resource type="ConvexPolygonShape2D" id=18]
points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
[sub_resource type="ConvexPolygonShape2D" id=19]
points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
[sub_resource type="ConvexPolygonShape2D" id=20]
points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
[sub_resource type="ConvexPolygonShape2D" id=22]
points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
[sub_resource type="ConvexPolygonShape2D" id=13]
points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
[sub_resource type="ConvexPolygonShape2D" id=14]
points = PoolVector2Array( 0, 0, 64, 0, 64, 64, 0, 64 )
[sub_resource type="ConvexPolygonShape2D" id=15]
points = PoolVector2Array( 0, 0, 64, 0, 64, 64, 0, 64 )
[sub_resource type="ConvexPolygonShape2D" id=16]
points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
[sub_resource type="ConvexPolygonShape2D" id=17]
points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
[sub_resource type="ConvexPolygonShape2D" id=21]
points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
[sub_resource type="TileSet" id=2]
2/name = "tilemap.png 2"
2/texture = ExtResource( 5 )
2/tex_offset = Vector2( 0, 0 )
2/modulate = Color( 1, 1, 1, 1 )
2/region = Rect2( 320, 192, 64, 64 )
2/tile_mode = 0
2/occluder_offset = Vector2( 0, 0 )
2/navigation_offset = Vector2( 0, 0 )
2/shape_offset = Vector2( 0, 0 )
2/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
2/shape = SubResource( 22 )
2/shape_one_way = false
2/shape_one_way_margin = 1.0
2/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 22 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
2/z_index = 0
4/name = "tilemap.png 4"
4/texture = ExtResource( 5 )
4/tex_offset = Vector2( 0, 0 )
4/modulate = Color( 1, 1, 1, 1 )
4/region = Rect2( 0, 128, 64, 64 )
4/tile_mode = 0
4/occluder_offset = Vector2( 0, 0 )
4/navigation_offset = Vector2( 0, 0 )
4/shape_offset = Vector2( 0, 0 )
4/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
4/shape = SubResource( 13 )
4/shape_one_way = false
4/shape_one_way_margin = 1.0
4/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 13 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
4/z_index = 0
5/name = "tilemap.png 5"
5/texture = ExtResource( 5 )
5/tex_offset = Vector2( 0, 0 )
5/modulate = Color( 1, 1, 1, 1 )
5/region = Rect2( 64, 128, 64, 64 )
5/tile_mode = 0
5/occluder_offset = Vector2( 0, 0 )
5/navigation_offset = Vector2( 0, 0 )
5/shape_offset = Vector2( 0, 0 )
5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
5/shape = SubResource( 14 )
5/shape_one_way = false
5/shape_one_way_margin = 1.0
5/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 14 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
5/z_index = 0
6/name = "tilemap.png 6"
6/texture = ExtResource( 5 )
6/tex_offset = Vector2( 0, 0 )
6/modulate = Color( 1, 1, 1, 1 )
6/region = Rect2( 128, 128, 64, 64 )
6/tile_mode = 0
6/occluder_offset = Vector2( 0, 0 )
6/navigation_offset = Vector2( 0, 0 )
6/shape_offset = Vector2( 0, 0 )
6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
6/shape = SubResource( 15 )
6/shape_one_way = false
6/shape_one_way_margin = 1.0
6/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 15 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
6/z_index = 0
7/name = "tilemap.png 7"
7/texture = ExtResource( 5 )
7/tex_offset = Vector2( 0, 0 )
7/modulate = Color( 1, 1, 1, 1 )
7/region = Rect2( 256, 128, 64, 64 )
7/tile_mode = 0
7/occluder_offset = Vector2( 0, 0 )
7/navigation_offset = Vector2( 0, 0 )
7/shape_offset = Vector2( 0, 0 )
7/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
7/shape = SubResource( 16 )
7/shape_one_way = false
7/shape_one_way_margin = 1.0
7/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 16 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
7/z_index = 0
8/name = "tilemap.png 8"
8/texture = ExtResource( 5 )
8/tex_offset = Vector2( 0, 0 )
8/modulate = Color( 1, 1, 1, 1 )
8/region = Rect2( 384, 128, 64, 64 )
8/tile_mode = 0
8/occluder_offset = Vector2( 0, 0 )
8/navigation_offset = Vector2( 0, 0 )
8/shape_offset = Vector2( 0, 0 )
8/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
8/shape = SubResource( 17 )
8/shape_one_way = false
8/shape_one_way_margin = 1.0
8/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 17 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
8/z_index = 0
9/name = "tilemap.png 9"
9/texture = ExtResource( 5 )
9/tex_offset = Vector2( 0, 0 )
9/modulate = Color( 1, 1, 1, 1 )
9/region = Rect2( 256, 192, 64, 64 )
9/tile_mode = 0
9/occluder_offset = Vector2( 0, 0 )
9/navigation_offset = Vector2( 0, 0 )
9/shape_offset = Vector2( 0, 0 )
9/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
9/shape = SubResource( 21 )
9/shape_one_way = false
9/shape_one_way_margin = 1.0
9/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 21 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
9/z_index = 0
10/name = "tilemap.png 10"
10/texture = ExtResource( 5 )
10/tex_offset = Vector2( 0, 0 )
10/modulate = Color( 1, 1, 1, 1 )
10/region = Rect2( 256, 256, 64, 64 )
10/tile_mode = 0
10/occluder_offset = Vector2( 0, 0 )
10/navigation_offset = Vector2( 0, 0 )
10/shape_offset = Vector2( 0, 0 )
10/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
10/shape = SubResource( 18 )
10/shape_one_way = false
10/shape_one_way_margin = 1.0
10/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 18 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
10/z_index = 0
11/name = "tilemap.png 11"
11/texture = ExtResource( 5 )
11/tex_offset = Vector2( 0, 0 )
11/modulate = Color( 1, 1, 1, 1 )
11/region = Rect2( 384, 192, 64, 64 )
11/tile_mode = 0
11/occluder_offset = Vector2( 0, 0 )
11/navigation_offset = Vector2( 0, 0 )
11/shape_offset = Vector2( 0, 0 )
11/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
11/shape = SubResource( 19 )
11/shape_one_way = false
11/shape_one_way_margin = 1.0
11/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 19 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
11/z_index = 0
12/name = "tilemap.png 12"
12/texture = ExtResource( 5 )
12/tex_offset = Vector2( 0, 0 )
12/modulate = Color( 1, 1, 1, 1 )
12/region = Rect2( 384, 256, 64, 64 )
12/tile_mode = 0
12/occluder_offset = Vector2( 0, 0 )
12/navigation_offset = Vector2( 0, 0 )
12/shape_offset = Vector2( 0, 0 )
12/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
12/shape = SubResource( 20 )
12/shape_one_way = false
12/shape_one_way_margin = 1.0
12/shapes = [ {
"autotile_coord": Vector2( 0, 0 ),
"one_way": false,
"one_way_margin": 1.0,
"shape": SubResource( 20 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ]
12/z_index = 0
13/name = "tilemap.png 13"
13/texture = ExtResource( 5 )
13/tex_offset = Vector2( 0, 0 )
13/modulate = Color( 1, 1, 1, 1 )
13/region = Rect2( 512, 192, 64, 64 )
13/tile_mode = 0
13/occluder_offset = Vector2( 0, 0 )
13/navigation_offset = Vector2( 0, 0 )
13/shape_offset = Vector2( 0, 0 )
13/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
13/shape_one_way = false
13/shape_one_way_margin = 0.0
13/shapes = [ ]
13/z_index = 0
14/name = "tilemap.png 14"
14/texture = ExtResource( 5 )
14/tex_offset = Vector2( 0, 0 )
14/modulate = Color( 1, 1, 1, 1 )
14/region = Rect2( 128, 256, 64, 64 )
14/tile_mode = 0
14/occluder_offset = Vector2( 0, 0 )
14/navigation_offset = Vector2( 0, 0 )
14/shape_offset = Vector2( 0, 0 )
14/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
14/shape_one_way = false
14/shape_one_way_margin = 0.0
14/shapes = [ ]
14/z_index = 0
[node name="InGame" type="Node"]
script = ExtResource( 10 )
__meta__ = {
"_edit_vertical_guides_": [ 12575.0 ]
}
[node name="Music" type="AudioStreamPlayer" parent="."]
script = ExtResource( 2 )
[node name="Pause" type="Node" parent="."]
pause_mode = 2
script = ExtResource( 26 )
[node name="CanvasLayer" type="CanvasLayer" parent="Pause"]
layer = 3
[node name="ColorRect" type="ColorRect" parent="Pause/CanvasLayer"]
visible = false
margin_left = -52.0
margin_top = -32.0
margin_right = 1101.0
margin_bottom = 644.0
color = Color( 0.0862745, 0.0823529, 0.0823529, 0.52549 )
[node name="CenterContainer" type="CenterContainer" parent="Pause/CanvasLayer"]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
[node name="VBoxContainer" type="VBoxContainer" parent="Pause/CanvasLayer/CenterContainer"]
margin_left = 468.0
margin_top = 179.0
margin_right = 611.0
margin_bottom = 421.0
[node name="Label" type="Label" parent="Pause/CanvasLayer/CenterContainer/VBoxContainer"]
margin_right = 143.0
margin_bottom = 92.0
custom_fonts/font = SubResource( 24 )
text = "PAUSA"
align = 1
[node name="Resume" type="Button" parent="Pause/CanvasLayer/CenterContainer/VBoxContainer"]
margin_top = 96.0
margin_right = 143.0
margin_bottom = 142.0
custom_fonts/font = SubResource( 25 )
text = "Seguir robando"
[node name="Restart" type="Button" parent="Pause/CanvasLayer/CenterContainer/VBoxContainer"]
margin_top = 146.0
margin_right = 143.0
margin_bottom = 192.0
custom_fonts/font = SubResource( 25 )
text = "Reiniciar robo"
[node name="Quit" type="Button" parent="Pause/CanvasLayer/CenterContainer/VBoxContainer"]
margin_top = 196.0
margin_right = 143.0
margin_bottom = 242.0
custom_fonts/font = SubResource( 25 )
text = "Volver al menu"
[node name="Light" type="Node" parent="."]
[node name="Light-intro-jumpSign" type="Light2D" parent="Light"]
light_mask = 16
position = Vector2( 393, 226 )
rotation = 1.57079
scale = Vector2( 0.59325, 0.824094 )
enabled = false
texture = ExtResource( 32 )
texture_scale = 2.68
color = Color( 1, 1, 1, 0.560784 )
energy = 2.0
range_layer_min = -1
range_layer_max = 2
range_item_cull_mask = 17
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
[node name="ActivateLight-intro-jumpSign" parent="Light" instance=ExtResource( 4 )]
position = Vector2( 144, 277 )
rotation = 7.45104e-13
scale = Vector2( 1.22063, 1.44057 )
LIGHT2D = NodePath("../Light-intro-jumpSign")
ON_ENTER = true
[node name="Light-intro-tutoHang" type="Light2D" parent="Light"]
light_mask = 16
position = Vector2( 1066.63, 254 )
scale = Vector2( 1.09039, 1.12367 )
texture = ExtResource( 32 )
texture_scale = 2.68
color = Color( 1, 1, 1, 0.560784 )
energy = 2.0
range_layer_min = -1
range_layer_max = 2
range_item_cull_mask = 17
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
[node name="ActivateLight-intro-SwitchSign" parent="Light" instance=ExtResource( 4 )]
position = Vector2( 1736, 201 )
scale = Vector2( 1.25, 1.8 )
LIGHT2D = NodePath("../Light-intro-SwitchSign")
ON_ENTER = true
[node name="Light-intro-SwitchSign" type="Light2D" parent="Light"]
light_mask = 16
position = Vector2( 1740, -26 )
scale = Vector2( 0.42944, 0.943496 )
enabled = false
texture = ExtResource( 32 )
texture_scale = 2.68
color = Color( 1, 1, 1, 0.560784 )
energy = 2.0
range_layer_min = -1
range_layer_max = 2
range_item_cull_mask = 17
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
[node name="Light-intro-tuto-view" type="Light2D" parent="Light"]
position = Vector2( 2973, 139 )
scale = Vector2( 1.17528, 1.44057 )
texture = ExtResource( 32 )
texture_scale = 2.68
color = Color( 1, 1, 1, 0.47451 )
energy = 2.0
range_layer_min = -1
range_layer_max = 1
range_item_cull_mask = 17
shadow_enabled = true
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
shadow_item_cull_mask = 48
[node name="Light-intro-tuto-laser" type="Light2D" parent="Light"]
position = Vector2( 4748, 228 )
scale = Vector2( 1.00007, 1.44057 )
texture = ExtResource( 32 )
texture_scale = 2.68
color = Color( 1, 1, 1, 0.47451 )
energy = 2.0
range_layer_min = -1
range_layer_max = 1
range_item_cull_mask = 17
shadow_enabled = true
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
shadow_item_cull_mask = 48
[node name="Light-lvl-1-rafael" type="Light2D" parent="Light"]
position = Vector2( 7266, -435 )
rotation = 1.5708
scale = Vector2( 1, 1.3 )
texture = ExtResource( 32 )
texture_scale = 2.68
color = Color( 1, 1, 1, 0.47451 )
energy = 2.0
range_layer_min = -1
range_layer_max = 1
range_item_cull_mask = 17
shadow_enabled = true
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
shadow_item_cull_mask = 48
[node name="Light-intro-wayfinder-A" type="Light2D" parent="Light"]
position = Vector2( -388, 413.69 )
rotation = 1.5708
scale = Vector2( 1.55188, 1.57776 )
texture = ExtResource( 32 )
color = Color( 1, 1, 1, 0.47451 )
energy = 2.0
range_layer_min = -1
range_layer_max = 1
range_item_cull_mask = 17
shadow_enabled = true
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
shadow_item_cull_mask = 48
[node name="Light-intro-wayfinder-B" type="Light2D" parent="Light"]
position = Vector2( 1565, 437 )
rotation = 1.5708
scale = Vector2( 0.78169, 1.57776 )
texture = ExtResource( 32 )
color = Color( 1, 1, 1, 0.47451 )
energy = 2.0
range_layer_min = -1
range_layer_max = 1
range_item_cull_mask = 17
shadow_enabled = true
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
shadow_item_cull_mask = 48
[node name="Light-intro-wayfinder-C" type="Light2D" parent="Light"]
position = Vector2( 3944.02, 413.613 )
rotation = 1.5708
scale = Vector2( 1.73555, 1.75872 )
texture = ExtResource( 32 )
color = Color( 1, 1, 1, 0.47451 )
energy = 2.0
range_layer_min = -1
range_layer_max = 1
range_item_cull_mask = 17
shadow_enabled = true
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
shadow_item_cull_mask = 48
[node name="Light-intro-wayfinder-lvl-1-A" type="Light2D" parent="Light"]
position = Vector2( 8743, 95 )
rotation = 1.5708
scale = Vector2( 1.73555, 1.75872 )
texture = ExtResource( 32 )
color = Color( 1, 1, 1, 0.47451 )
energy = 2.0
range_layer_min = -1
range_layer_max = 1
range_item_cull_mask = 17
shadow_enabled = true
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
shadow_item_cull_mask = 48
[node name="Light-lvl2-richter" type="Light2D" parent="Light"]
light_mask = 16
position = Vector2( 11645, -1489 )
scale = Vector2( 0.6, 0.6 )
enabled = false
texture = ExtResource( 48 )
texture_scale = 2.68
color = Color( 1, 1, 1, 0.560784 )
energy = 2.0
range_layer_min = -1
range_layer_max = 2
range_item_cull_mask = 17
shadow_color = Color( 0.0470588, 0.0431373, 0.0431373, 0 )
[node name="ActivateLight-lvl-richter" parent="Light" instance=ExtResource( 4 )]
position = Vector2( 11644, -1488 )
rotation = 7.45104e-13
scale = Vector2( 7, 1 )
LIGHT2D = NodePath("../Light-lvl2-richter")
ON_ENTER = true
ON_EXIT = true
[node name="LightLayer" type="CanvasLayer" parent="."]
layer = 0
[node name="Shadow" type="ColorRect" parent="LightLayer"]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0, 0, 0, 0.470588 )
[node name="BackgroundLayer" type="CanvasLayer" parent="."]
layer = -1
[node name="Background" type="ColorRect" parent="BackgroundLayer"]
anchor_right = 1.0
anchor_bottom = 1.0
color = Color( 0.341176, 0.447059, 0.466667, 1 )
[node name="BackgroundChangers" type="Node" parent="."]
[node name="Change-tuto-out" parent="BackgroundChangers" instance=ExtResource( 52 )]
position = Vector2( 5811, 381 )
scale = Vector2( 1, 2 )
SET_COLOR = Color( 0.341176, 0.447059, 0.466667, 1 )
BACKGROUND = NodePath("../../BackgroundLayer/Background")
[node name="Change-lvl-1-in" parent="BackgroundChangers" instance=ExtResource( 52 )]
position = Vector2( 6294, 366 )
SET_COLOR = Color( 0.309804, 0.184314, 0.388235, 1 )
BACKGROUND = NodePath("../../BackgroundLayer/Background")
[node name="Change-lvl-1-out" parent="BackgroundChangers" instance=ExtResource( 52 )]
position = Vector2( 8980, 72 )
SET_COLOR = Color( 0.309804, 0.184314, 0.388235, 1 )
BACKGROUND = NodePath("../../BackgroundLayer/Background")
[node name="Change-lvl-2-in" parent="BackgroundChangers" instance=ExtResource( 52 )]
position = Vector2( 9382, 83 )
SET_COLOR = Color( 0.458824, 0.494118, 0.376471, 1 )
BACKGROUND = NodePath("../../BackgroundLayer/Background")
[node name="Change-lvl-2-out" parent="BackgroundChangers" instance=ExtResource( 52 )]
position = Vector2( 12448, 130 )
SET_COLOR = Color( 0.458824, 0.494118, 0.376471, 1 )
BACKGROUND = NodePath("../../BackgroundLayer/Background")
[node name="Change-lvl-3-in" parent="BackgroundChangers" instance=ExtResource( 52 )]
position = Vector2( 13308, 134 )
SET_COLOR = Color( 0.552941, 0.482353, 0.478431, 1 )
BACKGROUND = NodePath("../../BackgroundLayer/Background")
[node name="Environment" type="Node" parent="."]
[node name="Limit_V" parent="Environment" instance=ExtResource( 16 )]
position = Vector2( -947, 9 )
[node name="Limit_V2" parent="Environment" instance=ExtResource( 16 )]
position = Vector2( 15587, 447 )
[node name="Pit" type="Area2D" parent="Environment"]
position = Vector2( 15285, 1117 )
script = ExtResource( 51 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="Environment/Pit"]
position = Vector2( -88, -46 )
shape = SubResource( 28 )
[node name="ControlPicturess" type="Node2D" parent="Environment"]
[node name="Tuto-view" type="Sprite" parent="Environment/ControlPicturess"]
position = Vector2( 2978, 142 )
scale = Vector2( 0.835165, 0.824713 )
texture = ExtResource( 30 )
[node name="Tuto-laser" type="Sprite" parent="Environment/ControlPicturess"]
position = Vector2( 4752, 239 )
scale = Vector2( 0.671, 0.692 )
texture = ExtResource( 3 )
[node name="Tuto-hang" type="Sprite" parent="Environment/ControlPicturess"]
position = Vector2( 1076, 248 )
scale = Vector2( 0.794466, 0.858108 )
texture = ExtResource( 31 )
[node name="SwitchSign" type="Sprite" parent="Environment/ControlPicturess"]
light_mask = 16
position = Vector2( 1736.75, -21.25 )
scale = Vector2( 0.648333, 0.648333 )
texture = ExtResource( 33 )
[node name="JumpSign" type="Sprite" parent="Environment/ControlPicturess"]
light_mask = 16
position = Vector2( 391, 231 )
scale = Vector2( 0.753334, 0.753334 )
texture = ExtResource( 28 )
[node name="wayfinders" type="Node" parent="Environment"]
[node name="Wayfinder-intro-A" type="Sprite" parent="Environment/wayfinders"]
position = Vector2( -375, 444 )
z_index = 1
texture = ExtResource( 34 )
[node name="Wayfinder-intro-B" type="Sprite" parent="Environment/wayfinders"]
position = Vector2( 1563, 438 )
scale = Vector2( 0.638887, 0.627778 )
z_index = 1
texture = ExtResource( 55 )
[node name="Wayfinder-intro-C" type="Sprite" parent="Environment/wayfinders"]
position = Vector2( -3557, -1813 )
z_index = 1
texture = ExtResource( 34 )
offset = Vector2( 7513, 2258 )
[node name="Wayfinder-lvl-1-A" type="Sprite" parent="Environment/wayfinders"]
position = Vector2( 8762, 126 )
z_index = 1
texture = ExtResource( 34 )
[node name="MovingPlatform-1" parent="Environment" instance=ExtResource( 8 )]
position = Vector2( 15274, 910 )
position_node_paths = [ NodePath("MovingPlatformPosition0"), NodePath("MovingPlatformPosition1") ]
wait_time = 2.0
[node name="MovingPlatformPosition0" type="Position2D" parent="Environment/MovingPlatform-1"]
position = Vector2( 1, 0 )
__meta__ = {
"_gizmo_extents_": 100.0
}
[node name="MovingPlatformPosition1" type="Position2D" parent="Environment/MovingPlatform-1"]
position = Vector2( 0, -1078 )
__meta__ = {
"_gizmo_extents_": 100.0
}
[node name="MovingPlatform-2" parent="Environment" instance=ExtResource( 8 )]
position = Vector2( 14748, -523 )
position_node_paths = [ NodePath("MovingPlatformPosition0"), NodePath("MovingPlatformPosition1") ]
[node name="MovingPlatformPosition0" type="Position2D" parent="Environment/MovingPlatform-2"]
position = Vector2( 1, 0 )
__meta__ = {
"_gizmo_extents_": 100.0
}
[node name="MovingPlatformPosition1" type="Position2D" parent="Environment/MovingPlatform-2"]
position = Vector2( -1058, 0 )
__meta__ = {
"_gizmo_extents_": 100.0
}
[node name="MovingPlatformLaser-A" parent="Environment/MovingPlatform-2" instance=ExtResource( 21 )]
position = Vector2( -55, 153 )
rotation = 1.5708
TIME_START = 1
CYCLETIME = 0
SCALE_LENGTH = 2.5
[node name="MovingPlatformLaser-B" parent="Environment/MovingPlatform-2" instance=ExtResource( 21 )]
position = Vector2( 8, 153 )
rotation = 1.5708
TIME_START = 1
CYCLETIME = 0
SCALE_LENGTH = 2.5
[node name="MovingPlatformLaser-C" parent="Environment/MovingPlatform-2" instance=ExtResource( 21 )]
position = Vector2( 71, 153 )
rotation = 1.5708
TIME_START = 1
CYCLETIME = 0
SCALE_LENGTH = 2.5
[node name="TransmutacionDeRafael" type="Sprite" parent="Environment"]
position = Vector2( 7259, -430 )
scale = Vector2( 1.3, 1.3 )
texture = ExtResource( 50 )
[node name="CameraManager" type="Node2D" parent="."]
script = ExtResource( 9 )
[node name="Snap-Jump" parent="CameraManager" instance=ExtResource( 15 )]
position = Vector2( 341, 244 )
ZOOM = 1.2
SCALE = Vector2( 0.5, 1 )
CAMERA_POSITION = Vector2( 50, 0 )
[node name="Snap-Hang" parent="CameraManager" instance=ExtResource( 15 )]
position = Vector2( 1138, 399 )
ZOOM = 1.2
SCALE = Vector2( 0.7, 0.5 )
CAMERA_POSITION = Vector2( -20, -150 )
[node name="Snap-Guard" parent="CameraManager" instance=ExtResource( 15 )]
position = Vector2( 2937, 270 )
ZOOM = 1.6
SCALE = Vector2( 1.5, 1 )
CAMERA_POSITION = Vector2( 55, 0 )
[node name="Snap-Switch" parent="CameraManager" instance=ExtResource( 15 )]
position = Vector2( 1720, 120 )
ZOOM = 1.2
SCALE = Vector2( 0.35, 1 )
CAMERA_POSITION = Vector2( 30, 100 )
[node name="Snap-Lasers" parent="CameraManager" instance=ExtResource( 15 )]
position = Vector2( 4887, 250 )
ZOOM = 1.3
SCALE = Vector2( 1.3, 1 )
[node name="Snap-lvl-1" parent="CameraManager" instance=ExtResource( 15 )]
position = Vector2( 7372, -247 )
ZOOM = 1.7
SCALE = Vector2( 2, 0.9 )
CAMERA_POSITION = Vector2( 0, -100 )
[node name="Zoom-lvl-1-A" parent="CameraManager" instance=ExtResource( 24 )]
position = Vector2( 5915, 281 )
scale = Vector2( 1, 2 )
ZOOM = 1.1
[node name="Zoom-lvl-1-B" parent="CameraManager" instance=ExtResource( 24 )]
position = Vector2( 6286, 358 )
scale = Vector2( 1, 1.3 )
ZOOM = 0.9
[node name="Zoom-lvl-1-C" parent="CameraManager" instance=ExtResource( 24 )]
position = Vector2( 8157, 377 )
scale = Vector2( 1, 1.3 )
ZOOM = 0.8
[node name="Zoom-lvl-1-D" parent="CameraManager" instance=ExtResource( 24 )]
position = Vector2( 8335, 336 )
scale = Vector2( 1, 1.3 )
ZOOM = 1.3
[node name="Zoom-lvl-2-A" parent="CameraManager" instance=ExtResource( 24 )]
position = Vector2( 10362, -1091 )
scale = Vector2( 1.5, 1 )
ZOOM = 1.3
[node name="Zoom-lvl-2-A2" parent="CameraManager" instance=ExtResource( 24 )]
position = Vector2( 10940, -889 )
scale = Vector2( 1, 3 )
ZOOM = 1.3
[node name="Zoom-lvl-2-B" parent="CameraManager" instance=ExtResource( 24 )]
position = Vector2( 11305, -899 )
scale = Vector2( 1, 2.5 )
ZOOM = 2.5
[node name="Zoom-lvl-2-C" parent="CameraManager" instance=ExtResource( 24 )]
position = Vector2( 12070, -464 )
rotation = 1.5708
scale = Vector2( 1, 3 )
ZOOM = 2.5
[node name="Zoom-lvl-2-D" parent="CameraManager" instance=ExtResource( 24 )]
position = Vector2( 11967, -216 )
rotation = 1.5708
scale = Vector2( 1, 3 )
ZOOM = 1.1
[node name="SnapCamera-final-screen" parent="CameraManager" instance=ExtResource( 15 )]
position = Vector2( 14254, 147 )
ZOOM = 2.5
SCALE = Vector2( 2.768, 2.118 )
[node name="Tween" type="Tween" parent="CameraManager"]
[node name="CameraFade" type="Node" parent="CameraManager"]
script = ExtResource( 25 )
[node name="CanvasLayer" type="CanvasLayer" parent="CameraManager/CameraFade"]
[node name="ColorRect" type="ColorRect" parent="CameraManager/CameraFade/CanvasLayer"]
margin_left = -20.0
margin_top = -24.0
margin_right = 1117.0
margin_bottom = 641.0
color = Color( 0, 0, 0, 0 )
[node name="Tween" type="Tween" parent="CameraManager/CameraFade"]
[node name="CanvasLayer" type="CanvasLayer" parent="CameraManager"]
[node name="Camera" type="Camera2D" parent="CameraManager"]
position = Vector2( -563, 355 )
offset = Vector2( 150, 0 )
current = true
limit_left = -1100
limit_bottom = 640
drag_margin_h_enabled = true
drag_margin_v_enabled = true
smoothing_enabled = true
drag_margin_left = 0.15
drag_margin_top = 0.0
drag_margin_right = 0.0
drag_margin_bottom = 0.46
editor_draw_drag_margin = true
[node name="FinalCameraFade" type="Node" parent="CameraManager"]
script = ExtResource( 41 )
[node name="CanvasLayer" type="CanvasLayer" parent="CameraManager/FinalCameraFade"]
[node name="ColorRect" type="ColorRect" parent="CameraManager/FinalCameraFade/CanvasLayer"]
material = SubResource( 27 )
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -221.0
margin_top = -175.0
margin_right = 249.0
margin_bottom = 137.0
color = Color( 0, 0, 0, 1 )
[node name="Tween" type="Tween" parent="CameraManager/FinalCameraFade"]
[node name="TileMap-back" type="TileMap" parent="."]
tile_set = SubResource( 23 )
collision_layer = 0
collision_mask = 0
format = 1
tile_data = PoolIntArray( -1441622, 0, 0, -1441621, 0, 0, -1441620, 0, 0, -1441619, 0, 0, -1441618, 0, 0, -1441617, 0, 0, -1441616, 0, 0, -1441615, 0, 0, -1441614, 0, 0, -1441613, 0, 0, -1441612, 0, 0, -1441611, 0, 0, -1441610, 0, 0, -1441609, 0, 0, -1441608, 0, 0, -1441607, 0, 0, -1441606, 0, 0, -1441605, 0, 0, -1441604, 0, 0, -1048418, 0, 0, -1048417, 0, 0, -1048416, 0, 0, -1048415, 0, 0, -1048414, 0, 0, -1048413, 0, 0, -1048412, 0, 0, -1048411, 0, 0, -1048410, 0, 0, -1048409, 0, 0, -1048408, 0, 0, -1048407, 0, 0, -1048406, 0, 0, -1048405, 0, 0, -1048404, 0, 0, -1048403, 0, 0, -1048402, 0, 0, -1048401, 0, 0, -1048400, 0, 0, -1048399, 0, 0, -917354, 0, 0, -917353, 0, 0, -917352, 0, 0, -917351, 0, 0, -851823, 0, 0, -851822, 0, 0, -851821, 0, 0, -851820, 0, 0, -851819, 0, 0, -851818, 0, 0, -851817, 0, 0, -851816, 0, 0, -851815, 0, 0, -589665, 0, 0, -589664, 0, 0, -589663, 0, 0, -589662, 0, 0, -589661, 0, 0, -589660, 0, 0, -589659, 0, 0, -589658, 0, 0, -589657, 0, 0, -589656, 0, 0, -589655, 0, 0, -589654, 0, 0, -589653, 0, 0, -589652, 0, 0, -589651, 0, 0, -589650, 0, 0, -589649, 0, 0, -589648, 0, 0, -589647, 0, 0, -589646, 0, 0, -589645, 0, 0, -589644, 0, 0, -589643, 0, 0, -393029, 0, 0, -393028, 0, 0, -393027, 0, 0, -393026, 0, 0, -393025, 0, 0, -261995, 0, 0, -130907, 0, 0, -130906, 0, 0, -130897, 0, 0, -130896, 0, 0, -130895, 0, 0, -130894, 0, 0, -130893, 0, 0, -130892, 0, 0, 100, 0, 0, 101, 0, 0, 102, 0, 0, 103, 0, 0, 104, 0, 0, 105, 0, 0, 106, 0, 0, 107, 0, 0, 108, 0, 0, 109, 0, 0, 110, 0, 0, 111, 0, 0, 112, 0, 0, 113, 0, 0, 114, 0, 0, 115, 0, 0, 116, 0, 0, 117, 0, 0, 118, 0, 0, 119, 0, 0, 120, 0, 0, 121, 0, 0, 122, 0, 0, 123, 0, 0, 124, 0, 0, 125, 0, 0, 126, 0, 0, 65663, 0, 0, 65664, 0, 0, 65665, 0, 0, 196631, 0, 0, 196632, 0, 0, 196633, 0, 0, 196634, 0, 0, 196635, 0, 0, 196636, 0, 0, 196637, 0, 0, 196638, 0, 0, 196639, 0, 0, 196640, 0, 0, 196641, 0, 0, 196743, 0, 0, 196744, 0, 0, 196745, 0, 0, 196746, 0, 0, 196747, 0, 0, 196748, 0, 0, 196749, 0, 0, 196750, 0, 0, 196751, 0, 0, 196752, 0, 0, 196753, 0, 0, 196754, 0, 0, 196755, 0, 0, 196756, 0, 0, 196757, 0, 0, 196758, 0, 0, 196759, 0, 0, 196760, 0, 0, 196761, 0, 0, 196762, 0, 0, 196763, 0, 0, 196764, 0, 0, 196765, 0, 0, 196766, 0, 0, 196767, 0, 0, 196768, 0, 0, 196769, 0, 0, 196770, 0, 0, 196771, 0, 0, 196772, 0, 0, 196773, 0, 0, 196774, 0, 0, 196775, 0, 0, 196776, 0, 0, 196777, 0, 0, 196778, 0, 0, 196779, 0, 0, 196780, 0, 0, 196781, 0, 0, 196782, 0, 0, 196783, 0, 0, 196784, 0, 0, 196785, 0, 0, 196786, 0, 0, 196787, 0, 0, 196788, 0, 0, 196789, 0, 0, 196790, 0, 0, 196791, 0, 0, 196792, 0, 0, 196793, 0, 0, 196794, 0, 0, 196795, 0, 0, 196796, 0, 0, 196797, 0, 0, 196798, 0, 0, 196799, 0, 0, 196800, 0, 0, 196801, 0, 0, 196802, 0, 0, 196803, 0, 0, 196804, 0, 0, 196805, 0, 0, 196806, 0, 0, 196807, 0, 0, 196808, 0, 0, 196809, 0, 0, 196810, 0, 0, 196811, 0, 0, 196812, 0, 0, 196813, 0, 0, 196814, 0, 0, 196815, 0, 0, 196816, 0, 0, 196817, 0, 0, 262177, 0, 0, 262178, 0, 0, 327812, 0, 0, 327813, 0, 0, 327814, 0, 0, 327815, 0, 0, 327816, 0, 0, 393221, 0, 0, 393222, 0, 0, 393250, 0, 0, 393251, 0, 0, 458755, 0, 0, 458756, 0, 0, 458757, 0, 0, 458758, 0, 0, 458759, 0, 0, 458760, 0, 0, 458881, 0, 0, 458882, 0, 0, 458883, 0, 0, 458884, 0, 0, 458885, 0, 0, 589809, 0, 0, 589810, 0, 0, 589811, 0, 0, 589812, 0, 0, 589813, 0, 0, 589814, 0, 0, 589815, 0, 0, 589816, 0, 0, 589817, 0, 0, 589818, 0, 0, 589819, 0, 0, 589820, 0, 0, 589821, 0, 0, 589822, 0, 0, 589823, 0, 0, 524288, 0, 0, 524289, 0, 0, 524290, 0, 0, 524291, 0, 0, 524296, 0, 0, 524297, 0, 0, 524298, 0, 0, 524299, 0, 0, 524300, 0, 0, 524301, 0, 0, 524302, 0, 0, 524303, 0, 0, 524304, 0, 0, 524305, 0, 0, 524306, 0, 0, 524307, 0, 0, 524308, 0, 0, 524309, 0, 0, 524310, 0, 0, 524311, 0, 0, 524312, 0, 0, 524313, 0, 0, 524314, 0, 0, 524315, 0, 0, 524316, 0, 0, 524317, 0, 0, 524318, 0, 0, 524319, 0, 0, 524323, 0, 0, 524324, 0, 0, 524325, 0, 0, 524326, 0, 0, 524327, 0, 0, 524328, 0, 0, 524329, 0, 0, 524330, 0, 0, 524331, 0, 0, 524332, 0, 0, 524333, 0, 0, 524334, 0, 0, 524335, 0, 0, 524336, 0, 0, 524337, 0, 0, 524338, 0, 0, 524339, 0, 0, 524340, 0, 0, 524341, 0, 0, 524342, 0, 0, 524343, 0, 0, 524344, 0, 0, 524345, 0, 0, 524346, 0, 0, 524347, 0, 0, 524348, 0, 0, 524349, 0, 0, 524350, 0, 0, 524351, 0, 0, 524352, 0, 0, 524353, 0, 0, 524354, 0, 0, 524355, 0, 0, 524356, 0, 0, 524357, 0, 0, 524358, 0, 0, 524359, 0, 0, 524360, 0, 0, 524361, 0, 0, 524362, 0, 0, 524363, 0, 0, 524364, 0, 0, 524365, 0, 0, 524366, 0, 0, 524367, 0, 0, 524368, 0, 0, 524369, 0, 0, 524370, 0, 0, 524371, 0, 0, 524372, 0, 0, 524373, 0, 0, 524374, 0, 0, 524375, 0, 0, 524376, 0, 0, 524377, 0, 0, 524378, 0, 0, 524379, 0, 0, 524380, 0, 0, 524381, 0, 0, 524382, 0, 0, 524383, 0, 0, 524384, 0, 0, 524385, 0, 0, 524386, 0, 0, 524387, 0, 0, 524388, 0, 0, 524389, 0, 0, 524390, 0, 0, 524391, 0, 0, 524392, 0, 0, 524393, 0, 0, 524394, 0, 0, 524395, 0, 0, 524396, 0, 0, 524397, 0, 0, 524398, 0, 0, 524399, 0, 0, 524400, 0, 0, 524401, 0, 0, 524402, 0, 0, 524403, 0, 0, 524404, 0, 0, 524405, 0, 0, 524406, 0, 0, 524407, 0, 0, 524408, 0, 0, 524409, 0, 0, 524410, 0, 0, 524411, 0, 0, 524412, 0, 0, 524413, 0, 0, 524414, 0, 0, 524415, 0, 0, 524416, 0, 0, 524417, 0, 0, 1114112, 12, 0, 1114113, 12, 0, 1114114, 12, 0, 1114115, 12, 0, 1114116, 12, 0, 1114117, 12, 0, 1114118, 12, 0, 1114119, 12, 0, 1114120, 12, 0, 1114121, 12, 0, 1114122, 12, 0, 1114123, 12, 0, 1114124, 12, 0, 1114125, 12, 0, 1114126, 12, 0, 1114127, 13, 0, 1114128, 13, 0, 1114129, 13, 0, 1114130, 12, 0, 1114131, 12, 0, 1114132, 12, 0, 1114133, 12, 0, 1114134, 12, 0, 1114135, 12, 0, 1114136, 12, 0, 1114137, 12, 0, 1114138, 12, 0, 1114139, 12, 0, 1114140, 12, 0, 1114141, 12, 0, 1114142, 12, 0, 1114143, 12, 0, 1114144, 12, 0, 1114145, 12, 0, 1114146, 12, 0, 1114147, 12, 0, 1114148, 12, 0, 1114149, 12, 0, 1114150, 12, 0, 1114151, 12, 0, 1114152, 12, 0, 1114153, 12, 0, 1114154, 12, 0, 1114155, 12, 0, 1114156, 12, 0, 1114157, 12, 0, 1114158, 12, 0, 1114160, 11, 0, 1114161, 11, 0, 1114162, 11, 0, 1114163, 11, 0, 1114164, 11, 0, 1114165, 11, 0, 1114166, 11, 0, 1114167, 11, 0, 1114168, 11, 0, 1114169, 11, 0, 1114170, 11, 0, 1114171, 11, 0, 1114172, 11, 0, 1114173, 11, 0, 1114174, 11, 0, 1114175, 11, 0, 1114176, 11, 0, 1114177, 11, 0, 1114178, 11, 0, 1114179, 11, 0, 1114180, 11, 0, 1114181, 11, 0, 1114182, 11, 0, 1114183, 11, 0, 1114184, 11, 0, 1114185, 11, 0, 1114186, 11, 0, 1114187, 11, 0, 1114188, 11, 0, 1114189, 11, 0, 1114190, 12, 0, 1114191, 12, 0, 1114192, 12, 0, 1114193, 12, 0, 1114194, 12, 0, 1114195, 12, 0, 1114196, 12, 0, 1114197, 12, 0, 1114198, 12, 0, 1114199, 12, 0, 1114200, 12, 0, 1114201, 12, 0, 1114202, 12, 0, 1114203, 12, 0, 1114204, 12, 0, 1114205, 12, 0, 1114206, 12, 0, 1114207, 12, 0, 1114208, 12, 0, 1114209, 12, 0, 1114210, 12, 0, 1114211, 12, 0, 1114212, 12, 0, 1114213, 12, 0, 1114214, 12, 0, 1114215, 12, 0, 1114216, 12, 0, 1114217, 12, 0, 1114218, 12, 0, 1114219, 12, 0, 1114220, 12, 0, 1114221, 12, 0, 1114222, 12, 0, 1114223, 12, 0, 1114224, 12, 0, 1114225, 12, 0, 1114226, 12, 0, 1114227, 12, 0, 1114228, 12, 0, 1114229, 12, 0, 1114230, 12, 0, 1114231, 12, 0, 1114232, 12, 0, 1114233, 12, 0, 1114234, 12, 0, 1114235, 12, 0, 1114236, 12, 0, 1114237, 12, 0, 1114238, 12, 0, 1114239, 12, 0, 1114240, 12, 0, 1114241, 12, 0, 1114242, 12, 0, 1114243, 12, 0, 1114244, 12, 0, 1114245, 12, 0, 1114246, 12, 0, 1114247, 12, 0, 1114248, 12, 0, 1114249, 12, 0, 1114251, 12, 0, 1114253, 12, 0, 1114255, 12, 0, 1114257, 12, 0, 1114259, 12, 0, 1114261, 12, 0, 1114263, 12, 0, 1114264, 12, 0, 1114265, 12, 0, 1114266, 12, 0, 1114267, 12, 0, 1114268, 12, 0, 1114269, 12, 0, 1114270, 12, 0, 1114271, 12, 0, 1114272, 12, 0, 1114273, 12, 0, 1114274, 12, 0, 1114275, 12, 0, 1114276, 12, 0, 1114277, 12, 0, 1114278, 12, 0, 1114279, 12, 0, 1114280, 12, 0, 1114281, 12, 0, 1114282, 12, 0, 1114283, 12, 0, 1114284, 12, 0, 1114285, 12, 0, 1114286, 12, 0, 1114287, 12, 0, 1114288, 12, 0, 1114289, 12, 0, 1114290, 12, 0, 1114291, 12, 0, 1114292, 12, 0, 1114293, 12, 0, 1114294, 12, 0, 1114295, 12, 0, 1114296, 12, 0, 1114297, 12, 0, 1114298, 12, 0, 1114299, 12, 0, 1114300, 12, 0, 1114301, 12, 0, 1114302, 12, 0, 1114303, 12, 0, 1114304, 12, 0, 1114305, 12, 0, 1114306, 12, 0, 1114307, 12, 0, 1114308, 12, 0, 1114309, 12, 0, 1114310, 12, 0, 1114311, 12, 0, 1114312, 12, 0, 1114313, 12, 0, 1114314, 12, 0, 1114315, 12, 0, 1114316, 12, 0, 1114317, 12, 0, 1114318, 12, 0, 1114319, 12, 0, 1114320, 12, 0, 1114321, 12, 0, 1114322, 12, 0, 1114324, 12, 0, 1114325, 12, 0, 1114326, 12, 0, 1114327, 12, 0, 1114328, 12, 0, 1114329, 12, 0, 1114330, 12, 0, 1114331, 12, 0, 1114332, 12, 0, 1114333, 12, 0, 1114334, 12, 0, 1114335, 12, 0, 1114336, 12, 0, 1114337, 12, 0, 1114338, 12, 0, 1114339, 12, 0, 1114340, 12, 0, 1114341, 12, 0, 1114342, 12, 0, 1114343, 12, 0, 1114344, 12, 0, 1114346, 11, 0, 1114347, 11, 0, 1114348, 11, 0, 1114349, 11, 0, 1114350, 11, 0, 1114351, 11, 0, 1114352, 11, 0, 1114353, 11, 0, 1114354, 11, 0, 1114355, 11, 0, 1114356, 11, 0, 1114357, 11, 0, 1114358, 11, 0, 1114359, 11, 0, 1114360, 11, 0, 1114361, 11, 0, 1114362, 11, 0, 1114363, 11, 0, 1114364, 11, 0, 1114365, 11, 0, 1114366, 11, 0, 1114367, 11, 0, 1114368, 11, 0, 1114369, 11, 0 )
[node name="TileMap" type="TileMap" parent="."]
position = Vector2( 2, 0 )
tile_set = SubResource( 2 )
cell_quadrant_size = 32
collision_mask = 7
format = 1
tile_data = PoolIntArray( -2228089, 2, 0, -2228088, 2, 0, -2228087, 2, 0, -2228086, 2, 0, -2228085, 2, 0, -2228084, 2, 0, -2228083, 2, 0, -2228082, 2, 0, -2228081, 2, 0, -2228080, 2, 0, -2228079, 2, 0, -2228078, 2, 0, -2228077, 2, 0, -2228076, 2, 0, -2228075, 2, 0, -2228074, 2, 0, -2228073, 2, 0, -2228072, 2, 0, -2228071, 2, 0, -2228070, 2, 0, -2228069, 2, 0, -2228068, 2, 0, -2228067, 2, 0, -2228066, 2, 0, -2228065, 2, 0, -2228064, 2, 0, -2228063, 2, 0, -2228062, 2, 0, -2228061, 2, 0, -2228060, 2, 0, -2228059, 2, 0, -2228058, 2, 0, -2228057, 2, 0, -2228056, 2, 0, -2228055, 2, 0, -2228054, 2, 0, -2228053, 2, 0, -2228052, 2, 0, -2228051, 2, 0, -2228050, 2, 0, -2228049, 2, 0, -2228048, 2, 0, -2228047, 2, 0, -2228046, 2, 0, -2228045, 2, 0, -2228044, 2, 0, -2228043, 2, 0, -2228042, 2, 0, -2228041, 2, 0, -2228040, 2, 0, -2228039, 2, 0, -2228038, 2, 0, -2228037, 2, 0, -2228036, 2, 0, -2228035, 2, 0, -2228034, 2, 0, -2228033, 2, 0, -2228032, 2, 0, -2228031, 2, 0, -2228030, 2, 0, -2228029, 2, 0, -2228028, 2, 0, -2228027, 2, 0, -2228026, 2, 0, -2228025, 2, 0, -2228024, 2, 0, -2228023, 2, 0, -2228022, 2, 0, -2228021, 2, 0, -2228020, 2, 0, -2228019, 2, 0, -2228018, 2, 0, -2228017, 2, 0, -2228016, 2, 0, -2228015, 2, 0, -2162553, 2, 0, -2162552, 2, 0, -2162551, 2, 0, -2162550, 2, 0, -2162549, 2, 0, -2162548, 2, 0, -2162547, 2, 0, -2162546, 2, 0, -2162545, 2, 0, -2162544, 2, 0, -2162543, 2, 0, -2162542, 2, 0, -2162541, 2, 0, -2162540, 2, 0, -2162539, 2, 0, -2162538, 2, 0, -2162537, 2, 0, -2162536, 2, 0, -2162535, 2, 0, -2162534, 2, 0, -2162533, 2, 0, -2162532, 2, 0, -2162531, 2, 0, -2162530, 2, 0, -2162529, 2, 0, -2162528, 2, 0, -2162527, 2, 0, -2162526, 2, 0, -2162525, 2, 0, -2162524, 2, 0, -2162523, 2, 0, -2162522, 2, 0, -2162521, 2, 0, -2162520, 2, 0, -2162519, 2, 0, -2162518, 2, 0, -2162517, 2, 0, -2162516, 2, 0, -2162515, 2, 0, -2162514, 2, 0, -2162513, 2, 0, -2162512, 2, 0, -2162511, 2, 0, -2162510, 2, 0, -2162509, 2, 0, -2162508, 2, 0, -2162507, 2, 0, -2162506, 2, 0, -2162505, 2, 0, -2162504, 2, 0, -2162503, 2, 0, -2162502, 2, 0, -2162501, 2, 0, -2162500, 2, 0, -2162499, 2, 0, -2162498, 2, 0, -2162497, 2, 0, -2162496, 2, 0, -2162495, 2, 0, -2162494, 2, 0, -2162493, 2, 0, -2162492, 2, 0, -2162491, 2, 0, -2162490, 2, 0, -2162489, 2, 0, -2162488, 2, 0, -2162487, 2, 0, -2162486, 2, 0, -2162485, 2, 0, -2162484, 2, 0, -2162483, 2, 0, -2162482, 2, 0, -2162481, 2, 0, -2162480, 2, 0, -2162479, 2, 0, -2097017, 2, 0, -2097016, 2, 0, -2097015, 2, 0, -2097014, 2, 0, -2097013, 2, 0, -2097012, 2, 0, -2097011, 2, 0, -2097010, 2, 0, -2097009, 2, 0, -2097008, 2, 0, -2097007, 2, 0, -2097006, 2, 0, -2097005, 2, 0, -2097004, 2, 0, -2097003, 2, 0, -2097002, 2, 0, -2097001, 2, 0, -2097000, 2, 0, -2096999, 2, 0, -2096998, 2, 0, -2096997, 2, 0, -2096996, 2, 0, -2096995, 2, 0, -2096994, 2, 0, -2096993, 2, 0, -2096992, 2, 0, -2096991, 2, 0, -2096990, 2, 0, -2096989, 2, 0, -2096988, 2, 0, -2096987, 2, 0, -2096986, 2, 0, -2096985, 2, 0, -2096984, 2, 0, -2096983, 2, 0, -2096982, 2, 0, -2096981, 2, 0, -2096980, 2, 0, -2096979, 2, 0, -2096978, 2, 0, -2096977, 2, 0, -2096976, 2, 0, -2096975, 2, 0, -2096974, 2, 0, -2096973, 2, 0, -2096972, 2, 0, -2096971, 2, 0, -2096970, 2, 0, -2096969, 2, 0, -2096968, 2, 0, -2096967, 2, 0, -2096966, 2, 0, -2096965, 2, 0, -2096964, 2, 0, -2096963, 2, 0, -2096962, 2, 0, -2096961, 2, 0, -2096960, 2, 0, -2096959, 2, 0, -2096958, 2, 0, -2096957, 2, 0, -2096956, 2, 0, -2096955, 2, 0, -2096954, 2, 0, -2096953, 2, 0, -2096952, 2, 0, -2096951, 2, 0, -2096950, 2, 0, -2096949, 2, 0, -2096948, 2, 0, -2096947, 2, 0, -2096946, 2, 0, -2096945, 2, 0, -2096944, 2, 0, -2096943, 2, 0, -2031481, 2, 0, -2031480, 2, 0, -2031479, 2, 0, -2031478, 2, 0, -2031477, 2, 0, -2031476, 2, 0, -2031475, 2, 0, -2031474, 2, 0, -2031473, 2, 0, -2031472, 2, 0, -2031471, 2, 0, -2031470, 2, 0, -2031469, 2, 0, -2031468, 2, 0, -2031467, 2, 0, -2031466, 2, 0, -2031465, 2, 0, -2031464, 2, 0, -2031463, 2, 0, -2031462, 2, 0, -2031461, 2, 0, -2031460, 2, 0, -2031459, 2, 0, -2031458, 2, 0, -2031457, 2, 0, -2031456, 2, 0, -2031455, 2, 0, -2031454, 2, 0, -2031453, 2, 0, -2031452, 2, 0, -2031451, 2, 0, -2031450, 2, 0, -2031449, 2, 0, -2031448, 2, 0, -2031447, 2, 0, -2031446, 2, 0, -2031445, 2, 0, -2031444, 2, 0, -2031443, 2, 0, -2031442, 2, 0, -2031441, 2, 0, -2031440, 2, 0, -2031439, 2, 0, -2031438, 2, 0, -2031437, 2, 0, -2031436, 2, 0, -2031435, 2, 0, -2031434, 2, 0, -2031433, 2, 0, -2031432, 2, 0, -2031431, 2, 0, -2031430, 2, 0, -2031429, 2, 0, -2031428, 2, 0, -2031427, 2, 0, -2031426, 2, 0, -2031425, 2, 0, -2031424, 2, 0, -2031423, 2, 0, -2031422, 2, 0, -2031421, 2, 0, -2031420, 2, 0, -2031419, 2, 0, -2031418, 2, 0, -2031417, 2, 0, -2031416, 2, 0, -2031415, 2, 0, -2031414, 2, 0, -2031413, 2, 0, -2031412, 2, 0, -2031411, 2, 0, -2031410, 2, 0, -2031409, 2, 0, -2031408, 2, 0, -2031407, 2, 0, -1965945, 2, 0, -1965944, 2, 0, -1965943, 2, 0, -1965942, 2, 0, -1965941, 2, 0, -1965940, 2, 0, -1965939, 2, 0, -1965938, 2, 0, -1965937, 2, 0, -1965936, 2, 0, -1965935, 2, 0, -1965934, 2, 0, -1965933, 2, 0, -1965932, 2, 0, -1965931, 2, 0, -1965930, 2, 0, -1965929, 2, 0, -1965928, 2, 0, -1965927, 2, 0, -1965926, 2, 0, -1965925, 2, 0, -1965924, 2, 0, -1965923, 2, 0, -1965922, 2, 0, -1965921, 2, 0, -1965920, 2, 0, -1965919, 2, 0, -1965918, 2, 0, -1965917, 2, 0, -1965916, 2, 0, -1965915, 2, 0, -1965914, 2, 0, -1965913, 2, 0, -1965912, 2, 0, -1965911, 2, 0, -1965910, 2, 0, -1965909, 2, 0, -1965908, 2, 0, -1965907, 2, 0, -1965906, 2, 0, -1965905, 2, 0, -1965904, 2, 0, -1965903, 2, 0, -1965902, 2, 0, -1965901, 2, 0, -1965900, 2, 0, -1965899, 2, 0, -1965898, 2, 0, -1965897, 2, 0, -1965896, 2, 0, -1965895, 2, 0, -1965894, 2, 0, -1965893, 2, 0, -1965892, 2, 0, -1965891, 2, 0, -1965890, 2, 0, -1965889, 2, 0, -1965888, 2, 0, -1965887, 2, 0, -1965886, 2, 0, -1965885, 2, 0, -1965884, 2, 0, -1965883, 2, 0, -1965882, 2, 0, -1965881, 2, 0, -1965880, 2, 0, -1965879, 2, 0, -1965878, 2, 0, -1965877, 2, 0, -1965876, 2, 0, -1965875, 2, 0, -1965874, 2, 0, -1965873, 2, 0, -1965872, 2, 0, -1965871, 2, 0, -1900409, 2, 0, -1900408, 2, 0, -1900407, 2, 0, -1900406, 2, 0, -1900405, 2, 0, -1900404, 2, 0, -1900403, 2, 0, -1900402, 2, 0, -1900401, 2, 0, -1900400, 2, 0, -1900399, 2, 0, -1900398, 2, 0, -1900397, 2, 0, -1900396, 2, 0, -1900395, 2, 0, -1900394, 2, 0, -1900393, 2, 0, -1900392, 2, 0, -1900391, 2, 0, -1900390, 2, 0, -1900389, 2, 0, -1900388, 2, 0, -1900387, 2, 0, -1900386, 2, 0, -1900385, 2, 0, -1900384, 2, 0, -1900383, 2, 0, -1900382, 2, 0, -1900381, 2, 0, -1900380, 2, 0, -1900379, 2, 0, -1900378, 2, 0, -1900377, 2, 0, -1900376, 2, 0, -1900375, 2, 0, -1900374, 2, 0, -1900373, 2, 0, -1900372, 2, 0, -1900371, 2, 0, -1900370, 2, 0, -1900369, 2, 0, -1900368, 2, 0, -1900367, 2, 0, -1900366, 2, 0, -1900365, 2, 0, -1900364, 2, 0, -1900363, 2, 0, -1900362, 2, 0, -1900361, 2, 0, -1900360, 2, 0, -1900359, 2, 0, -1900358, 2, 0, -1900357, 2, 0, -1900356, 2, 0, -1900355, 2, 0, -1900354, 2, 0, -1900353, 2, 0, -1900352, 2, 0, -1900351, 2, 0, -1900350, 2, 0, -1900349, 2, 0, -1900348, 2, 0, -1900347, 2, 0, -1900346, 2, 0, -1900345, 2, 0, -1900344, 2, 0, -1900343, 2, 0, -1900342, 2, 0, -1900341, 2, 0, -1900340, 2, 0, -1900339, 2, 0, -1900338, 2, 0, -1900337, 2, 0, -1900336, 2, 0, -1900335, 2, 0, -1834873, 2, 0, -1834872, 2, 0, -1834871, 2, 0, -1834870, 2, 0, -1834869, 2, 0, -1834868, 2, 0, -1834867, 2, 0, -1834866, 2, 0, -1834865, 2, 0, -1834864, 2, 0, -1834863, 2, 0, -1834862, 2, 0, -1834861, 2, 0, -1834860, 2, 0, -1834859, 2, 0, -1834858, 2, 0, -1834857, 2, 0, -1834856, 2, 0, -1834855, 2, 0, -1834854, 2, 0, -1834853, 2, 0, -1834852, 2, 0, -1834851, 2, 0, -1834850, 2, 0, -1834849, 2, 0, -1834848, 2, 0, -1834847, 2, 0, -1834846, 2, 0, -1834845, 2, 0, -1834844, 2, 0, -1834843, 2, 0, -1834842, 2, 0, -1834841, 2, 0, -1834840, 2, 0, -1834839, 2, 0, -1834838, 2, 0, -1834837, 2, 0, -1834836, 2, 0, -1834835, 2, 0, -1834834, 2, 0, -1834833, 2, 0, -1834832, 2, 0, -1834831, 2, 0, -1834830, 2, 0, -1834829, 2, 0, -1834828, 2, 0, -1834827, 2, 0, -1834826, 2, 0, -1834825, 2, 0, -1834824, 2, 0, -1834823, 2, 0, -1834822, 2, 0, -1834821, 2, 0, -1834820, 2, 0, -1834819, 2, 0, -1834818, 2, 0, -1834817, 2, 0, -1834816, 2, 0, -1834815, 2, 0, -1834814, 2, 0, -1834813, 2, 0, -1834812, 2, 0, -1834811, 2, 0, -1834810, 2, 0, -1834809, 2, 0, -1834808, 2, 0, -1834807, 2, 0, -1834806, 2, 0, -1834805, 2, 0, -1834804, 2, 0, -1834803, 2, 0, -1834802, 2, 0, -1834801, 2, 0, -1834800, 2, 0, -1834799, 2, 0, -1769337, 2, 0, -1769336, 2, 0, -1769335, 2, 0, -1769334, 2, 0, -1769333, 2, 0, -1769332, 2, 0, -1769331, 2, 0, -1769330, 2, 0, -1769329, 2, 0, -1769328, 2, 0, -1769327, 2, 0, -1769326, 2, 0, -1769325, 2, 0, -1769324, 2, 0, -1769323, 2, 0, -1769322, 2, 0, -1769321, 2, 0, -1769320, 2, 0, -1769319, 2, 0, -1769318, 2, 0, -1769317, 2, 0, -1769316, 2, 0, -1769315, 2, 0, -1769314, 2, 0, -1769313, 2, 0, -1769312, 2, 0, -1769311, 2, 0, -1769310, 2, 0, -1769309, 2, 0, -1769308, 2, 0, -1769307, 2, 0, -1769306, 2, 0, -1769305, 2, 0, -1769304, 2, 0, -1769303, 2, 0, -1769302, 2, 0, -1769301, 2, 0, -1769300, 2, 0, -1769299, 2, 0, -1769298, 2, 0, -1769297, 2, 0, -1769296, 2, 0, -1769295, 2, 0, -1769294, 2, 0, -1769293, 2, 0, -1769292, 2, 0, -1769291, 2, 0, -1769290, 2, 0, -1769289, 2, 0, -1769288, 2, 0, -1769287, 2, 0, -1769286, 2, 0, -1769285, 2, 0, -1769284, 2, 0, -1769283, 2, 0, -1769282, 2, 0, -1769281, 2, 0, -1769280, 2, 0, -1769279, 2, 0, -1769278, 2, 0, -1769277, 2, 0, -1769276, 2, 0, -1769275, 2, 0, -1769274, 2, 0, -1769273, 2, 0, -1769272, 2, 0, -1769271, 2, 0, -1769270, 2, 0, -1769269, 2, 0, -1769268, 2, 0, -1769267, 2, 0, -1769266, 2, 0, -1769265, 2, 0, -1769264, 2, 0, -1769263, 2, 0, -1703801, 2, 0, -1703800, 2, 0, -1703799, 2, 0, -1703798, 2, 0, -1703797, 2, 0, -1703796, 2, 0, -1703795, 2, 0, -1703794, 2, 0, -1703793, 2, 0, -1703792, 2, 0, -1703791, 2, 0, -1703790, 2, 0, -1703789, 2, 0, -1703788, 2, 0, -1703787, 2, 0, -1703786, 2, 0, -1703785, 2, 0, -1703784, 2, 0, -1703783, 2, 0, -1703782, 2, 0, -1703781, 2, 0, -1703780, 2, 0, -1703779, 2, 0, -1703778, 2, 0, -1703777, 2, 0, -1703776, 2, 0, -1703775, 2, 0, -1703774, 2, 0, -1703773, 2, 0, -1703772, 2, 0, -1703771, 2, 0, -1703770, 2, 0, -1703750, 2, 0, -1703749, 2, 0, -1703748, 2, 0, -1703747, 2, 0, -1703746, 2, 0, -1703745, 2, 0, -1703744, 2, 0, -1703743, 2, 0, -1703742, 2, 0, -1703741, 2, 0, -1703740, 2, 0, -1703739, 2, 0, -1703738, 2, 0, -1703737, 2, 0, -1703736, 2, 0, -1703735, 2, 0, -1703734, 2, 0, -1703733, 2, 0, -1703732, 2, 0, -1703731, 2, 0, -1703730, 2, 0, -1703729, 2, 0, -1703728, 2, 0, -1703727, 2, 0, -1638265, 2, 0, -1638264, 2, 0, -1638263, 2, 0, -1638262, 2, 0, -1638261, 2, 0, -1638260, 2, 0, -1638259, 2, 0, -1638258, 2, 0, -1638257, 2, 0, -1638256, 2, 0, -1638255, 2, 0, -1638254, 2, 0, -1638253, 2, 0, -1638252, 2, 0, -1638251, 2, 0, -1638250, 2, 0, -1638249, 2, 0, -1638248, 2, 0, -1638247, 2, 0, -1638246, 2, 0, -1638245, 2, 0, -1638244, 2, 0, -1638243, 2, 0, -1638242, 2, 0, -1638241, 2, 0, -1638240, 2, 0, -1638239, 2, 0, -1638238, 2, 0, -1638237, 2, 0, -1638236, 2, 0, -1638235, 2, 0, -1638234, 2, 0, -1638214, 2, 0, -1638213, 2, 0, -1638212, 2, 0, -1638211, 2, 0, -1638210, 2, 0, -1638209, 2, 0, -1638208, 2, 0, -1638207, 2, 0, -1638206, 2, 0, -1638205, 2, 0, -1638204, 2, 0, -1638203, 2, 0, -1638202, 2, 0, -1638201, 2, 0, -1638200, 2, 0, -1638199, 2, 0, -1638198, 2, 0, -1638197, 2, 0, -1638196, 2, 0, -1638195, 2, 0, -1638194, 2, 0, -1638193, 2, 0, -1638192, 2, 0, -1638191, 2, 0, -1572729, 2, 0, -1572728, 2, 0, -1572727, 2, 0, -1572726, 2, 0, -1572725, 2, 0, -1572724, 2, 0, -1572723, 2, 0, -1572722, 2, 0, -1572721, 2, 0, -1572720, 2, 0, -1572719, 2, 0, -1572718, 2, 0, -1572717, 2, 0, -1572716, 2, 0, -1572715, 2, 0, -1572714, 2, 0, -1572713, 2, 0, -1572712, 2, 0, -1572711, 2, 0, -1572710, 2, 0, -1572709, 2, 0, -1572708, 2, 0, -1572707, 2, 0, -1572706, 2, 0, -1572705, 2, 0, -1572704, 2, 0, -1572703, 2, 0, -1572702, 2, 0, -1572701, 2, 0, -1572700, 2, 0, -1572699, 2, 0, -1572698, 2, 0, -1572678, 2, 0, -1572677, 2, 0, -1572676, 2, 0, -1572675, 2, 0, -1572674, 2, 0, -1572673, 2, 0, -1572672, 2, 0, -1572671, 2, 0, -1572670, 2, 0, -1572669, 2, 0, -1572668, 2, 0, -1572667, 2, 0, -1572666, 2, 0, -1572665, 2, 0, -1572664, 2, 0, -1572663, 2, 0, -1572662, 2, 0, -1572661, 2, 0, -1572660, 2, 0, -1572659, 2, 0, -1572658, 2, 0, -1572657, 2, 0, -1572656, 2, 0, -1572655, 2, 0, -1507193, 2, 0, -1507192, 2, 0, -1507191, 2, 0, -1507190, 2, 0, -1507189, 2, 0, -1507188, 2, 0, -1507187, 2, 0, -1507186, 2, 0, -1507185, 2, 0, -1507184, 2, 0, -1507183, 2, 0, -1507182, 2, 0, -1507181, 2, 0, -1507180, 2, 0, -1507179, 2, 0, -1507178, 2, 0, -1507177, 2, 0, -1507176, 2, 0, -1507175, 2, 0, -1507174, 2, 0, -1507173, 2, 0, -1507172, 2, 0, -1507171, 2, 0, -1507170, 2, 0, -1507169, 2, 0, -1507168, 2, 0, -1507167, 2, 0, -1507166, 2, 0, -1507165, 2, 0, -1507164, 2, 0, -1507163, 2, 0, -1507162, 2, 0, -1507142, 2, 0, -1507141, 2, 0, -1507140, 2, 0, -1507139, 2, 0, -1507138, 2, 0, -1507137, 2, 0, -1507136, 2, 0, -1507135, 2, 0, -1507134, 2, 0, -1507133, 2, 0, -1507132, 2, 0, -1507131, 2, 0, -1507130, 2, 0, -1507129, 2, 0, -1507128, 2, 0, -1507127, 2, 0, -1507126, 2, 0, -1507125, 2, 0, -1507124, 2, 0, -1507123, 2, 0, -1507122, 2, 0, -1507121, 2, 0, -1507120, 2, 0, -1507119, 2, 0, -1441657, 2, 0, -1441656, 2, 0, -1441655, 2, 0, -1441654, 2, 0, -1441653, 2, 0, -1441652, 2, 0, -1441651, 2, 0, -1441650, 2, 0, -1441649, 2, 0, -1441648, 2, 0, -1441647, 2, 0, -1441646, 2, 0, -1441645, 2, 0, -1441644, 2, 0, -1441643, 2, 0, -1441642, 2, 0, -1441641, 2, 0, -1441640, 2, 0, -1441639, 2, 0, -1441638, 2, 0, -1441637, 2, 0, -1441636, 2, 0, -1441635, 2, 0, -1441634, 2, 0, -1441633, 2, 0, -1441632, 2, 0, -1441631, 2, 0, -1441630, 2, 0, -1441629, 2, 0, -1441628, 2, 0, -1441627, 2, 0, -1441626, 2, 0, -1441606, 2, 0, -1441605, 2, 0, -1441604, 2, 0, -1441603, 2, 0, -1441602, 2, 0, -1441601, 2, 0, -1441600, 2, 0, -1441599, 2, 0, -1441598, 2, 0, -1441597, 2, 0, -1441596, 2, 0, -1441595, 2, 0, -1441594, 2, 0, -1441593, 2, 0, -1441592, 2, 0, -1441591, 2, 0, -1441590, 2, 0, -1441589, 2, 0, -1441588, 2, 0, -1441587, 2, 0, -1441586, 2, 0, -1441585, 2, 0, -1441584, 2, 0, -1441583, 2, 0, -1376121, 2, 0, -1376120, 2, 0, -1376119, 2, 0, -1376118, 2, 0, -1376117, 2, 0, -1376116, 2, 0, -1376115, 2, 0, -1376114, 2, 0, -1376113, 2, 0, -1376112, 2, 0, -1376111, 2, 0, -1376110, 2, 0, -1376109, 2, 0, -1376108, 2, 0, -1376107, 2, 0, -1376106, 2, 0, -1376105, 2, 0, -1376104, 2, 0, -1376103, 2, 0, -1376102, 2, 0, -1376101, 2, 0, -1376100, 2, 0, -1376099, 2, 0, -1376098, 2, 0, -1376097, 2, 0, -1376096, 2, 0, -1376095, 2, 0, -1376094, 2, 0, -1376093, 2, 0, -1376092, 2, 0, -1376091, 2, 0, -1376090, 2, 0, -1376086, 7, 0, -1376085, 5, 0, -1376084, 5, 0, -1376083, 5, 0, -1376082, 5, 0, -1376081, 5, 0, -1376080, 5, 0, -1376079, 10, 0, -1376078, 2, 0, -1376077, 2, 0, -1376076, 2, 0, -1376075, 2, 0, -1376074, 2, 0, -1376073, 2, 0, -1376072, 2, 0, -1376071, 2, 0, -1376070, 2, 0, -1376069, 2, 0, -1376068, 2, 0, -1376067, 2, 0, -1376066, 2, 0, -1376065, 2, 0, -1376064, 2, 0, -1376063, 2, 0, -1376062, 2, 0, -1376061, 2, 0, -1376060, 2, 0, -1376059, 2, 0, -1376058, 2, 0, -1376057, 2, 0, -1376056, 2, 0, -1376055, 2, 0, -1376054, 2, 0, -1376053, 2, 0, -1376052, 2, 0, -1376051, 2, 0, -1376050, 2, 0, -1376049, 2, 0, -1376048, 2, 0, -1376047, 2, 0, -1310585, 2, 0, -1310584, 2, 0, -1310583, 2, 0, -1310582, 2, 0, -1310581, 2, 0, -1310580, 2, 0, -1310579, 2, 0, -1310578, 2, 0, -1310577, 2, 0, -1310576, 2, 0, -1310575, 2, 0, -1310574, 2, 0, -1310573, 2, 0, -1310572, 2, 0, -1310571, 2, 0, -1310530, 2, 0, -1310529, 2, 0, -1310528, 2, 0, -1310527, 2, 0, -1310526, 2, 0, -1310525, 2, 0, -1310524, 2, 0, -1310523, 2, 0, -1310522, 2, 0, -1310521, 2, 0, -1310520, 2, 0, -1310519, 2, 0, -1310518, 2, 0, -1310517, 2, 0, -1310516, 2, 0, -1310515, 2, 0, -1310514, 2, 0, -1310513, 2, 0, -1310512, 2, 0, -1310511, 2, 0, -1245049, 2, 0, -1245048, 2, 0, -1245047, 2, 0, -1245046, 2, 0, -1245045, 2, 0, -1245044, 2, 0, -1245043, 2, 0, -1245042, 2, 0, -1245041, 2, 0, -1245040, 2, 0, -1245039, 2, 0, -1245038, 2, 0, -1245037, 2, 0, -1245036, 2, 0, -1245035, 2, 0, -1244994, 2, 0, -1244993, 2, 0, -1244992, 2, 0, -1244991, 2, 0, -1244990, 2, 0, -1244989, 2, 0, -1244988, 2, 0, -1244987, 2, 0, -1244986, 2, 0, -1244985, 2, 0, -1244984, 2, 0, -1244983, 2, 0, -1244982, 2, 0, -1244981, 2, 0, -1244980, 2, 0, -1244979, 2, 0, -1244978, 2, 0, -1244977, 2, 0, -1244976, 2, 0, -1244975, 2, 0, -1179513, 2, 0, -1179512, 2, 0, -1179511, 2, 0, -1179510, 2, 0, -1179509, 2, 0, -1179508, 2, 0, -1179507, 2, 0, -1179506, 2, 0, -1179505, 2, 0, -1179504, 2, 0, -1179503, 2, 0, -1179502, 2, 0, -1179501, 2, 0, -1179500, 2, 0, -1179499, 2, 0, -1179458, 2, 0, -1179457, 2, 0, -1179456, 2, 0, -1179455, 2, 0, -1179454, 2, 0, -1179453, 2, 0, -1179452, 2, 0, -1179451, 2, 0, -1179450, 2, 0, -1179449, 2, 0, -1179448, 2, 0, -1179447, 2, 0, -1179446, 2, 0, -1179445, 2, 0, -1179444, 2, 0, -1179443, 2, 0, -1179442, 2, 0, -1179441, 2, 0, -1179440, 2, 0, -1179439, 2, 0, -1113977, 2, 0, -1113976, 2, 0, -1113975, 2, 0, -1113974, 2, 0, -1113973, 2, 0, -1113972, 2, 0, -1113971, 2, 0, -1113970, 2, 0, -1113969, 2, 0, -1113968, 2, 0, -1113967, 2, 0, -1113966, 2, 0, -1113965, 2, 0, -1113964, 2, 0, -1113963, 2, 0, -1113922, 2, 0, -1113921, 2, 0, -1113920, 2, 0, -1113919, 2, 0, -1113918, 2, 0, -1113917, 2, 0, -1113916, 2, 0, -1113915, 2, 0, -1113914, 2, 0, -1113913, 2, 0, -1113912, 2, 0, -1113911, 2, 0, -1113910, 2, 0, -1113909, 2, 0, -1113908, 2, 0, -1113907, 2, 0, -1113906, 2, 0, -1113905, 2, 0, -1113904, 2, 0, -1113903, 2, 0, -1048441, 2, 0, -1048440, 2, 0, -1048439, 2, 0, -1048438, 2, 0, -1048437, 2, 0, -1048436, 2, 0, -1048435, 2, 0, -1048434, 2, 0, -1048433, 2, 0, -1048432, 2, 0, -1048431, 2, 0, -1048430, 2, 0, -1048429, 2, 0, -1048428, 2, 0, -1048427, 2, 0, -1048386, 2, 0, -1048385, 2, 0, -1048384, 2, 0, -1048383, 2, 0, -1048382, 2, 0, -1048381, 2, 0, -1048380, 2, 0, -1048379, 2, 0, -1048378, 2, 0, -1048377, 2, 0, -1048376, 2, 0, -1048375, 2, 0, -1048374, 2, 0, -1048373, 2, 0, -1048372, 2, 0, -1048371, 2, 0, -1048370, 2, 0, -1048369, 2, 0, -1048368, 2, 0, -1048367, 2, 0, -982942, 2, 0, -982941, 2, 0, -982940, 2, 0, -982905, 2, 0, -982904, 2, 0, -982903, 2, 0, -982902, 2, 0, -982901, 2, 0, -982900, 2, 0, -982899, 2, 0, -982898, 2, 0, -982897, 2, 0, -982896, 2, 0, -982895, 2, 0, -982894, 2, 0, -982893, 2, 0, -982892, 2, 0, -982891, 2, 0, -982882, 4, 0, -982881, 5, 0, -982880, 5, 0, -982879, 5, 0, -982878, 5, 0, -982877, 5, 0, -982876, 5, 0, -982875, 5, 0, -982874, 5, 0, -982873, 5, 0, -982872, 5, 0, -982871, 5, 0, -982870, 5, 0, -982869, 5, 0, -982868, 5, 0, -982867, 5, 0, -982866, 5, 0, -982865, 5, 0, -982864, 5, 0, -982863, 8, 0, -982850, 2, 0, -982849, 2, 0, -982848, 2, 0, -982847, 2, 0, -982846, 2, 0, -982845, 2, 0, -982844, 2, 0, -982843, 2, 0, -982842, 2, 0, -982841, 2, 0, -982840, 2, 0, -982839, 2, 0, -982838, 2, 0, -982837, 2, 0, -982836, 2, 0, -982835, 2, 0, -982834, 2, 0, -982833, 2, 0, -982832, 2, 0, -982831, 2, 0, -917406, 2, 0, -917405, 2, 0, -917404, 2, 0, -917369, 2, 0, -917368, 2, 0, -917367, 2, 0, -917366, 2, 0, -917365, 2, 0, -917364, 2, 0, -917363, 2, 0, -917362, 2, 0, -917361, 2, 0, -917360, 2, 0, -917359, 2, 0, -917358, 2, 0, -917357, 2, 0, -917356, 2, 0, -917355, 2, 0, -917346, 2, 0, -917345, 2, 0, -917344, 2, 0, -917343, 2, 0, -917342, 2, 0, -917341, 2, 0, -917340, 2, 0, -917339, 2, 0, -917338, 2, 0, -917337, 2, 0, -917336, 2, 0, -917335, 2, 0, -917334, 2, 0, -917333, 2, 0, -917332, 2, 0, -917331, 2, 0, -917330, 2, 0, -917329, 2, 0, -917328, 2, 0, -917327, 11, 0, -917314, 2, 0, -917313, 2, 0, -917312, 2, 0, -917311, 2, 0, -917310, 2, 0, -917309, 2, 0, -917308, 2, 0, -917307, 2, 0, -917306, 2, 0, -917305, 2, 0, -917304, 2, 0, -917303, 2, 0, -917302, 2, 0, -917301, 2, 0, -917300, 2, 0, -917299, 2, 0, -917298, 2, 0, -917297, 2, 0, -917296, 2, 0, -917295, 2, 0, -851870, 2, 0, -851869, 2, 0, -851868, 2, 0, -851833, 2, 0, -851832, 2, 0, -851831, 2, 0, -851830, 2, 0, -851829, 2, 0, -851828, 2, 0, -851827, 2, 0, -851826, 2, 0, -851825, 2, 0, -851824, 2, 0, -851823, 2, 0, -851822, 2, 0, -851821, 2, 0, -851820, 2, 0, -851819, 12, 0, -851818, 5, 0, -851817, 5, 0, -851816, 5, 0, -851815, 6, 0, -851810, 2, 0, -851809, 2, 0, -851808, 2, 0, -851807, 2, 0, -851806, 2, 0, -851778, 2, 0, -851777, 2, 0, -851776, 2, 0, -851775, 2, 0, -851774, 2, 0, -851773, 2, 0, -851772, 2, 0, -851771, 2, 0, -851770, 2, 0, -851769, 2, 0, -851768, 2, 0, -851767, 2, 0, -851766, 2, 0, -851765, 2, 0, -851764, 2, 0, -851763, 2, 0, -851762, 2, 0, -851761, 2, 0, -851760, 2, 0, -851759, 2, 0, -786334, 2, 0, -786333, 2, 0, -786332, 2, 0, -786297, 2, 0, -786296, 2, 0, -786295, 2, 0, -786294, 2, 0, -786293, 2, 0, -786292, 2, 0, -786291, 2, 0, -786290, 2, 0, -786289, 2, 0, -786288, 2, 0, -786287, 2, 0, -786286, 2, 0, -786285, 2, 0, -786284, 2, 0, -786283, 2, 0, -786282, 2, 0, -786281, 2, 0, -786280, 2, 0, -786279, 2, 0, -786274, 2, 0, -786273, 2, 0, -786272, 2, 0, -786271, 2, 0, -786270, 2, 0, -786242, 2, 0, -786241, 2, 0, -786240, 2, 0, -786239, 2, 0, -786238, 2, 0, -786237, 2, 0, -786236, 2, 0, -786235, 2, 0, -786234, 2, 0, -786233, 2, 0, -786232, 2, 0, -786231, 2, 0, -786230, 2, 0, -786229, 2, 0, -786228, 2, 0, -786227, 2, 0, -786226, 2, 0, -786225, 2, 0, -786224, 2, 0, -786223, 2, 0, -720798, 2, 0, -720797, 2, 0, -720796, 2, 0, -720761, 2, 0, -720760, 2, 0, -720759, 2, 0, -720758, 2, 0, -720757, 2, 0, -720756, 2, 0, -720755, 2, 0, -720754, 2, 0, -720753, 2, 0, -720752, 2, 0, -720751, 2, 0, -720750, 2, 0, -720749, 2, 0, -720748, 2, 0, -720747, 2, 0, -720746, 2, 0, -720745, 2, 0, -720744, 2, 0, -720743, 2, 0, -720738, 2, 0, -720737, 2, 0, -720736, 2, 0, -720735, 2, 0, -720734, 2, 0, -720706, 2, 0, -720705, 2, 0, -720704, 2, 0, -720703, 2, 0, -720702, 2, 0, -720701, 2, 0, -720700, 2, 0, -720699, 2, 0, -720698, 2, 0, -720697, 2, 0, -720696, 2, 0, -720695, 2, 0, -720694, 2, 0, -720693, 2, 0, -720692, 2, 0, -720691, 2, 0, -720690, 2, 0, -720689, 2, 0, -720688, 2, 0, -720687, 2, 0, -655262, 2, 0, -655261, 2, 0, -655260, 2, 0, -655225, 2, 0, -655224, 2, 0, -655223, 2, 0, -655222, 2, 0, -655221, 2, 0, -655220, 2, 0, -655219, 2, 0, -655218, 2, 0, -655217, 2, 0, -655216, 2, 0, -655215, 2, 0, -655214, 2, 0, -655213, 2, 0, -655212, 2, 0, -655211, 2, 0, -655210, 2, 0, -655209, 2, 0, -655208, 2, 0, -655207, 2, 0, -655203, 536870926, 0, -655202, 10, 0, -655201, 2, 0, -655200, 2, 0, -655199, 2, 0, -655198, 2, 0, -655170, 2, 0, -655169, 2, 0, -655168, 2, 0, -655167, 2, 0, -655166, 2, 0, -655165, 2, 0, -655164, 2, 0, -655163, 2, 0, -655162, 2, 0, -655161, 2, 0, -655160, 2, 0, -655159, 2, 0, -655158, 2, 0, -655157, 2, 0, -655156, 2, 0, -655155, 2, 0, -655154, 2, 0, -655153, 2, 0, -655152, 2, 0, -655151, 2, 0, -589726, 2, 0, -589725, 2, 0, -589724, 2, 0, -589689, 2, 0, -589688, 2, 0, -589687, 2, 0, -589686, 2, 0, -589685, 2, 0, -589684, 2, 0, -589683, 2, 0, -589682, 2, 0, -589681, 2, 0, -589680, 2, 0, -589679, 2, 0, -589678, 2, 0, -589677, 2, 0, -589676, 2, 0, -589675, 2, 0, -589674, 2, 0, -589673, 2, 0, -589672, 2, 0, -589671, 2, 0, -589666, 2, 0, -589665, 2, 0, -589664, 2, 0, -589663, 2, 0, -589662, 2, 0, -589634, 2, 0, -589633, 2, 0, -589632, 2, 0, -589631, 2, 0, -589630, 2, 0, -589629, 2, 0, -589628, 2, 0, -589627, 2, 0, -589626, 2, 0, -589625, 2, 0, -589624, 2, 0, -589623, 2, 0, -589622, 2, 0, -589621, 2, 0, -589620, 2, 0, -524190, 2, 0, -524189, 2, 0, -524188, 2, 0, -524153, 2, 0, -524152, 2, 0, -524151, 2, 0, -524150, 2, 0, -524149, 2, 0, -524148, 2, 0, -524147, 2, 0, -524146, 2, 0, -524145, 2, 0, -524144, 2, 0, -524143, 2, 0, -524142, 2, 0, -524141, 2, 0, -524140, 2, 0, -524139, 2, 0, -524138, 2, 0, -524137, 2, 0, -524136, 2, 0, -524135, 12, 0, -524134, 14, 0, -524130, 2, 0, -524129, 2, 0, -524128, 2, 0, -524127, 2, 0, -524126, 2, 0, -524125, 4, 0, -524124, 5, 0, -524123, 5, 0, -524122, 5, 0, -524121, 5, 0, -524120, 5, 0, -524119, 5, 0, -524118, 5, 0, -524117, 5, 0, -524116, 5, 0, -524115, 5, 0, -524114, 5, 0, -524113, 5, 0, -524112, 5, 0, -524111, 5, 0, -524110, 5, 0, -524109, 5, 0, -524108, 5, 0, -524107, 8, 0, -524098, 2, 0, -524097, 2, 0, -524096, 2, 0, -524095, 2, 0, -524094, 2, 0, -524093, 2, 0, -524092, 2, 0, -524091, 2, 0, -524090, 2, 0, -524089, 2, 0, -524088, 2, 0, -524087, 2, 0, -524086, 2, 0, -524085, 2, 0, -524084, 2, 0, -458654, 2, 0, -458653, 2, 0, -458652, 2, 0, -458617, 2, 0, -458616, 2, 0, -458615, 2, 0, -458614, 2, 0, -458613, 2, 0, -458612, 2, 0, -458611, 2, 0, -458610, 2, 0, -458609, 2, 0, -458608, 2, 0, -458607, 2, 0, -458606, 2, 0, -458605, 2, 0, -458604, 2, 0, -458603, 2, 0, -458602, 2, 0, -458601, 2, 0, -458600, 2, 0, -458599, 2, 0, -458594, 2, 0, -458593, 2, 0, -458592, 2, 0, -458591, 2, 0, -458590, 2, 0, -458589, 2, 0, -458588, 2, 0, -458587, 2, 0, -458586, 2, 0, -458585, 2, 0, -458584, 2, 0, -458583, 2, 0, -458582, 2, 0, -458581, 2, 0, -458580, 2, 0, -458579, 2, 0, -458578, 2, 0, -458577, 2, 0, -458562, 2, 0, -458561, 2, 0, -458560, 2, 0, -458559, 2, 0, -458558, 2, 0, -458557, 2, 0, -458556, 2, 0, -458555, 2, 0, -458554, 2, 0, -458553, 2, 0, -458552, 2, 0, -458551, 2, 0, -458550, 2, 0, -458549, 2, 0, -458548, 2, 0, -393118, 2, 0, -393117, 2, 0, -393116, 2, 0, -393081, 2, 0, -393080, 2, 0, -393079, 2, 0, -393078, 2, 0, -393077, 2, 0, -393076, 2, 0, -393075, 2, 0, -393074, 2, 0, -393073, 2, 0, -393072, 2, 0, -393071, 2, 0, -393070, 2, 0, -393069, 2, 0, -393068, 2, 0, -393067, 2, 0, -393066, 2, 0, -393065, 2, 0, -393064, 2, 0, -393063, 2, 0, -393058, 2, 0, -393057, 2, 0, -393056, 2, 0, -393055, 2, 0, -393054, 2, 0, -393053, 2, 0, -393052, 2, 0, -393051, 2, 0, -393050, 2, 0, -393049, 2, 0, -393048, 2, 0, -393047, 2, 0, -393046, 2, 0, -393045, 2, 0, -393044, 2, 0, -393043, 2, 0, -393042, 2, 0, -393041, 2, 0, -393026, 2, 0, -393025, 2, 0, -393024, 2, 0, -393023, 2, 0, -393022, 2, 0, -393021, 2, 0, -393020, 2, 0, -393019, 2, 0, -393018, 2, 0, -393017, 2, 0, -393016, 2, 0, -393015, 2, 0, -393014, 2, 0, -393013, 2, 0, -393012, 2, 0, -327582, 2, 0, -327581, 2, 0, -327580, 2, 0, -327545, 2, 0, -327544, 2, 0, -327543, 2, 0, -327542, 2, 0, -327541, 2, 0, -327540, 2, 0, -327539, 2, 0, -327538, 2, 0, -327537, 2, 0, -327536, 2, 0, -327535, 2, 0, -327534, 2, 0, -327533, 2, 0, -327532, 2, 0, -327531, 2, 0, -327530, 2, 0, -327529, 2, 0, -327528, 2, 0, -327527, 2, 0, -327523, 536870926, 0, -327522, 10, 0, -327521, 2, 0, -327520, 2, 0, -327519, 2, 0, -327518, 2, 0, -327517, 2, 0, -327516, 2, 0, -327515, 2, 0, -327514, 2, 0, -327513, 2, 0, -327512, 2, 0, -327511, 2, 0, -327510, 2, 0, -327509, 2, 0, -327508, 2, 0, -327507, 2, 0, -327506, 2, 0, -327505, 2, 0, -327493, 7, 0, -327492, 5, 0, -327491, 5, 0, -327490, 10, 0, -327489, 2, 0, -327488, 2, 0, -327487, 2, 0, -327486, 2, 0, -327485, 2, 0, -327484, 2, 0, -327483, 2, 0, -327482, 2, 0, -327481, 2, 0, -327480, 2, 0, -327479, 2, 0, -327478, 2, 0, -327477, 2, 0, -327476, 2, 0, -262046, 2, 0, -262045, 2, 0, -262044, 2, 0, -262009, 2, 0, -262008, 2, 0, -262007, 2, 0, -262006, 2, 0, -262005, 2, 0, -262004, 2, 0, -262003, 2, 0, -262002, 2, 0, -262001, 2, 0, -262000, 2, 0, -261999, 2, 0, -261998, 2, 0, -261997, 2, 0, -261996, 2, 0, -261995, 2, 0, -261994, 2, 0, -261993, 2, 0, -261992, 2, 0, -261991, 2, 0, -261986, 2, 0, -261985, 2, 0, -261984, 2, 0, -261983, 2, 0, -261982, 2, 0, -261981, 2, 0, -261980, 2, 0, -261979, 2, 0, -261978, 2, 0, -261977, 2, 0, -261976, 2, 0, -261975, 2, 0, -261974, 2, 0, -261973, 2, 0, -261972, 2, 0, -261971, 2, 0, -261970, 2, 0, -261969, 2, 0, -261954, 2, 0, -261953, 2, 0, -261952, 2, 0, -261951, 2, 0, -261950, 2, 0, -261949, 2, 0, -261948, 2, 0, -261947, 2, 0, -261946, 2, 0, -261945, 2, 0, -261944, 2, 0, -261943, 2, 0, -261942, 2, 0, -261941, 2, 0, -261940, 2, 0, -196510, 2, 0, -196509, 2, 0, -196508, 2, 0, -196473, 2, 0, -196472, 2, 0, -196471, 2, 0, -196470, 2, 0, -196469, 2, 0, -196468, 2, 0, -196467, 2, 0, -196466, 2, 0, -196465, 2, 0, -196464, 2, 0, -196463, 2, 0, -196462, 2, 0, -196461, 2, 0, -196460, 2, 0, -196459, 2, 0, -196458, 2, 0, -196457, 2, 0, -196456, 2, 0, -196455, 2, 0, -196450, 2, 0, -196449, 2, 0, -196448, 2, 0, -196447, 2, 0, -196446, 2, 0, -196445, 2, 0, -196444, 2, 0, -196443, 2, 0, -196442, 2, 0, -196441, 2, 0, -196440, 2, 0, -196439, 2, 0, -196438, 2, 0, -196437, 2, 0, -196436, 2, 0, -196435, 2, 0, -196434, 2, 0, -196433, 2, 0, -196418, 2, 0, -196417, 2, 0, -196416, 2, 0, -196415, 2, 0, -196414, 2, 0, -196413, 2, 0, -196412, 2, 0, -196411, 2, 0, -196410, 2, 0, -196409, 2, 0, -196408, 2, 0, -196407, 2, 0, -196406, 2, 0, -196405, 2, 0, -196404, 2, 0, -196403, 4, 0, -196402, 5, 0, -196401, 5, 0, -196400, 5, 0, -196399, 5, 0, -196398, 5, 0, -196397, 5, 0, -196396, 5, 0, -196395, 5, 0, -196394, 8, 0, -196390, 7, 0, -196389, 5, 0, -196388, 5, 0, -196387, 8, 0, -196383, 7, 0, -196382, 5, 0, -196381, 5, 0, -196380, 8, 0, -196376, 7, 0, -196375, 5, 0, -196374, 5, 0, -196373, 8, 0, -130974, 2, 0, -130973, 2, 0, -130972, 2, 0, -130937, 2, 0, -130936, 2, 0, -130935, 2, 0, -130934, 2, 0, -130933, 2, 0, -130932, 2, 0, -130931, 2, 0, -130930, 2, 0, -130929, 2, 0, -130928, 2, 0, -130927, 2, 0, -130926, 2, 0, -130925, 2, 0, -130924, 2, 0, -130923, 2, 0, -130922, 2, 0, -130921, 2, 0, -130920, 2, 0, -130919, 12, 0, -130918, 14, 0, -130914, 2, 0, -130913, 2, 0, -130912, 2, 0, -130911, 2, 0, -130910, 2, 0, -130909, 2, 0, -130908, 2, 0, -130907, 2, 0, -130906, 2, 0, -130905, 2, 0, -130904, 2, 0, -130903, 2, 0, -130902, 2, 0, -130901, 2, 0, -130900, 2, 0, -130899, 2, 0, -130898, 2, 0, -130897, 2, 0, -130882, 2, 0, -130881, 2, 0, -130880, 2, 0, -130879, 2, 0, -130878, 2, 0, -130877, 2, 0, -130876, 2, 0, -130875, 2, 0, -130874, 2, 0, -130873, 2, 0, -130872, 2, 0, -130871, 2, 0, -130870, 2, 0, -130869, 2, 0, -130868, 2, 0, -130867, 2, 0, -130866, 2, 0, -130865, 2, 0, -130864, 2, 0, -130863, 2, 0, -65438, 2, 0, -65437, 2, 0, -65436, 2, 0, -65361, 12, 0, -65360, 5, 0, -65359, 5, 0, -65358, 5, 0, -65357, 5, 0, -65356, 8, 0, 98, 2, 0, 99, 2, 0, 100, 2, 0, 65634, 2, 0, 65635, 2, 0, 65636, 2, 0, 65637, 4, 0, 65638, 5, 0, 65639, 5, 0, 65640, 5, 0, 65641, 5, 0, 65642, 5, 0, 65643, 5, 0, 65644, 5, 0, 65645, 5, 0, 65646, 5, 0, 65647, 5, 0, 65648, 5, 0, 65649, 5, 0, 65650, 5, 0, 65651, 5, 0, 65652, 5, 0, 65653, 5, 0, 65654, 5, 0, 65655, 5, 0, 65656, 5, 0, 65657, 5, 0, 65658, 5, 0, 65659, 5, 0, 65660, 5, 0, 65661, 5, 0, 65662, 8, 0, 131165, 7, 0, 131166, 5, 0, 131167, 8, 0, 131170, 2, 0, 131171, 2, 0, 131172, 2, 0, 131173, 2, 0, 131174, 2, 0, 131175, 2, 0, 131176, 2, 0, 131177, 2, 0, 131178, 2, 0, 131179, 2, 0, 131180, 2, 0, 131181, 2, 0, 131182, 2, 0, 131183, 2, 0, 131184, 2, 0, 131185, 2, 0, 131186, 2, 0, 131187, 2, 0, 131188, 2, 0, 131189, 2, 0, 131190, 2, 0, 131191, 2, 0, 131192, 2, 0, 131193, 2, 0, 131194, 2, 0, 131195, 2, 0, 131196, 2, 0, 131197, 2, 0, 131198, 12, 0, 131199, 5, 0, 131200, 5, 0, 131201, 8, 0, 196705, 1610612750, 0, 196706, 1610612748, 0, 262167, 7, 0, 262168, 5, 0, 262169, 5, 0, 262170, 5, 0, 262171, 5, 0, 262172, 5, 0, 262173, 5, 0, 262174, 5, 0, 262175, 5, 0, 262176, 5, 0, 262177, 8, 0, 262279, 7, 0, 262280, 5, 0, 262281, 5, 0, 262282, 5, 0, 262283, 5, 0, 262284, 5, 0, 262285, 5, 0, 262286, 5, 0, 262287, 5, 0, 262288, 5, 0, 262289, 5, 0, 262290, 5, 0, 262291, 5, 0, 262292, 5, 0, 262293, 5, 0, 262294, 5, 0, 262295, 5, 0, 262296, 5, 0, 262297, 5, 0, 262298, 5, 0, 262299, 5, 0, 262300, 5, 0, 262301, 5, 0, 262302, 5, 0, 262303, 5, 0, 262304, 5, 0, 262305, 5, 0, 262306, 5, 0, 262307, 5, 0, 262308, 5, 0, 262309, 5, 0, 262310, 5, 0, 262311, 5, 0, 262312, 5, 0, 262313, 5, 0, 262314, 5, 0, 262315, 5, 0, 262316, 5, 0, 262317, 5, 0, 262318, 5, 0, 262319, 5, 0, 262320, 5, 0, 262321, 5, 0, 262322, 5, 0, 262323, 5, 0, 262324, 5, 0, 262325, 5, 0, 262326, 5, 0, 262327, 5, 0, 262328, 5, 0, 262329, 5, 0, 262330, 5, 0, 262331, 5, 0, 262332, 5, 0, 262333, 5, 0, 262334, 5, 0, 262335, 5, 0, 262336, 5, 0, 262337, 5, 0, 262338, 5, 0, 262339, 5, 0, 262340, 5, 0, 262341, 5, 0, 262342, 5, 0, 262343, 5, 0, 262344, 5, 0, 262345, 5, 0, 262346, 5, 0, 262347, 5, 0, 262348, 5, 0, 262349, 5, 0, 262350, 5, 0, 262351, 5, 0, 262352, 5, 0, 262353, 8, 0, 327712, 2, 0, 327713, 12, 0, 327714, 8, 0, 327722, 1, 0, 327815, 9, 0, 327816, 2, 0, 327817, 2, 0, 327818, 2, 0, 327819, 2, 0, 327820, 2, 0, 327821, 2, 0, 327822, 2, 0, 327823, 2, 0, 327824, 2, 0, 327825, 2, 0, 327826, 2, 0, 327827, 2, 0, 327828, 2, 0, 327829, 2, 0, 327830, 2, 0, 327831, 2, 0, 327832, 2, 0, 327833, 2, 0, 327834, 2, 0, 327835, 2, 0, 327836, 2, 0, 327837, 2, 0, 327838, 2, 0, 327839, 2, 0, 327840, 2, 0, 327841, 2, 0, 327842, 2, 0, 327843, 2, 0, 327844, 2, 0, 327845, 2, 0, 327846, 2, 0, 327847, 2, 0, 327848, 2, 0, 327849, 2, 0, 327850, 2, 0, 327851, 2, 0, 327852, 2, 0, 327853, 2, 0, 327854, 2, 0, 327855, 2, 0, 327856, 2, 0, 327857, 2, 0, 327858, 2, 0, 327859, 2, 0, 327860, 2, 0, 327861, 2, 0, 327862, 2, 0, 327863, 2, 0, 327864, 2, 0, 327865, 2, 0, 327866, 2, 0, 327867, 2, 0, 327868, 2, 0, 327869, 2, 0, 327870, 2, 0, 327871, 2, 0, 327872, 2, 0, 327873, 2, 0, 327874, 2, 0, 327875, 2, 0, 327876, 2, 0, 327877, 2, 0, 327878, 2, 0, 327879, 2, 0, 327880, 2, 0, 327881, 2, 0, 327882, 2, 0, 327883, 2, 0, 327884, 2, 0, 327885, 2, 0, 327886, 2, 0, 327887, 2, 0, 327888, 2, 0, 327889, 11, 0, 393248, 2, 0, 393249, 2, 0, 393250, 11, 0, 393348, 7, 0, 393349, 5, 0, 393350, 5, 0, 393351, 10, 0, 393352, 2, 0, 393353, 2, 0, 393354, 2, 0, 393355, 2, 0, 393356, 2, 0, 393357, 2, 0, 393358, 2, 0, 393359, 2, 0, 393360, 2, 0, 393361, 2, 0, 393362, 2, 0, 393363, 2, 0, 393364, 2, 0, 393365, 2, 0, 393366, 2, 0, 393367, 2, 0, 393368, 2, 0, 393369, 2, 0, 393370, 2, 0, 393371, 2, 0, 393372, 2, 0, 393373, 2, 0, 393374, 2, 0, 393375, 2, 0, 393376, 2, 0, 393377, 2, 0, 393378, 2, 0, 393379, 2, 0, 393380, 2, 0, 393381, 2, 0, 393382, 2, 0, 393383, 2, 0, 393384, 2, 0, 393385, 2, 0, 393386, 2, 0, 393387, 2, 0, 393388, 2, 0, 393389, 2, 0, 393390, 2, 0, 393391, 2, 0, 393392, 2, 0, 393393, 2, 0, 393394, 2, 0, 393395, 2, 0, 393396, 2, 0, 393397, 2, 0, 393398, 2, 0, 393399, 2, 0, 393400, 2, 0, 393401, 2, 0, 393402, 2, 0, 393403, 2, 0, 393404, 2, 0, 393405, 2, 0, 393406, 2, 0, 393407, 2, 0, 393408, 2, 0, 393409, 2, 0, 393410, 2, 0, 393411, 2, 0, 393412, 2, 0, 393413, 2, 0, 393414, 2, 0, 393415, 2, 0, 393416, 2, 0, 393417, 2, 0, 393418, 2, 0, 393419, 2, 0, 393420, 2, 0, 393421, 2, 0, 393422, 2, 0, 393423, 2, 0, 393424, 2, 0, 393425, 11, 0, 458757, 7, 0, 458758, 8, 0, 458784, 2, 0, 458785, 2, 0, 458786, 12, 0, 458787, 8, 0, 458884, 9, 0, 458885, 2, 0, 458886, 2, 0, 458887, 2, 0, 458888, 2, 0, 458889, 2, 0, 458890, 2, 0, 458891, 2, 0, 458892, 2, 0, 458893, 2, 0, 458894, 2, 0, 458895, 2, 0, 458896, 2, 0, 458897, 2, 0, 458898, 2, 0, 458899, 2, 0, 458900, 2, 0, 458901, 2, 0, 458902, 2, 0, 458903, 2, 0, 458904, 2, 0, 458905, 2, 0, 458906, 2, 0, 458907, 2, 0, 458908, 2, 0, 458909, 2, 0, 458910, 2, 0, 458911, 2, 0, 458912, 2, 0, 458913, 2, 0, 458914, 2, 0, 458915, 2, 0, 458916, 2, 0, 458917, 2, 0, 458918, 2, 0, 458919, 2, 0, 458920, 2, 0, 458921, 2, 0, 458922, 2, 0, 458923, 2, 0, 458924, 2, 0, 458925, 2, 0, 458926, 2, 0, 458927, 2, 0, 458928, 2, 0, 458929, 2, 0, 458930, 2, 0, 458931, 2, 0, 458932, 2, 0, 458933, 2, 0, 458934, 2, 0, 458935, 2, 0, 458936, 2, 0, 458937, 2, 0, 458938, 2, 0, 458939, 2, 0, 458940, 2, 0, 458941, 2, 0, 458942, 2, 0, 458943, 2, 0, 458944, 2, 0, 458945, 2, 0, 458946, 2, 0, 458947, 2, 0, 458948, 2, 0, 458949, 2, 0, 458950, 2, 0, 458951, 2, 0, 458952, 2, 0, 458953, 2, 0, 458954, 2, 0, 458955, 2, 0, 458956, 2, 0, 458957, 2, 0, 458958, 2, 0, 458959, 2, 0, 458960, 2, 0, 458961, 11, 0, 458972, 7, 0, 458973, 5, 0, 458974, 5, 0, 458975, 5, 0, 458976, 5, 0, 458977, 5, 0, 458978, 5, 0, 458979, 8, 0, 524291, 7, 0, 524292, 5, 0, 524293, 10, 0, 524294, 12, 0, 524295, 5, 0, 524296, 8, 0, 524320, 2, 0, 524321, 2, 0, 524322, 2, 0, 524323, 11, 0, 524417, 7, 0, 524418, 5, 0, 524419, 5, 0, 524420, 10, 0, 524421, 2, 0, 524422, 2, 0, 524423, 2, 0, 524424, 2, 0, 524425, 2, 0, 524426, 2, 0, 524427, 2, 0, 524428, 2, 0, 524429, 2, 0, 524430, 2, 0, 524431, 2, 0, 524432, 2, 0, 524433, 2, 0, 524434, 2, 0, 524435, 2, 0, 524436, 2, 0, 524437, 2, 0, 524438, 2, 0, 524439, 2, 0, 524440, 2, 0, 524441, 2, 0, 524442, 2, 0, 524443, 2, 0, 524444, 2, 0, 524445, 2, 0, 524446, 2, 0, 524447, 2, 0, 524448, 2, 0, 524449, 2, 0, 524450, 2, 0, 524451, 2, 0, 524452, 2, 0, 524453, 2, 0, 524454, 2, 0, 524455, 2, 0, 524456, 2, 0, 524457, 2, 0, 524458, 2, 0, 524459, 2, 0, 524460, 2, 0, 524461, 2, 0, 524462, 2, 0, 524463, 2, 0, 524464, 2, 0, 524465, 2, 0, 524466, 2, 0, 524467, 2, 0, 524468, 2, 0, 524469, 2, 0, 524470, 2, 0, 524471, 2, 0, 524472, 2, 0, 524473, 2, 0, 524474, 2, 0, 524475, 2, 0, 524476, 2, 0, 524477, 2, 0, 524478, 2, 0, 524479, 2, 0, 524480, 2, 0, 524481, 2, 0, 524482, 2, 0, 524483, 2, 0, 524484, 2, 0, 524485, 2, 0, 524486, 2, 0, 524487, 2, 0, 524488, 2, 0, 524489, 2, 0, 524490, 2, 0, 524491, 2, 0, 524492, 2, 0, 524493, 2, 0, 524494, 2, 0, 524495, 2, 0, 524496, 2, 0, 524497, 11, 0, 655345, 4, 0, 655346, 5, 0, 655347, 5, 0, 655348, 5, 0, 655349, 5, 0, 655350, 5, 0, 655351, 5, 0, 655352, 5, 0, 655353, 5, 0, 655354, 5, 0, 655355, 5, 0, 655356, 5, 0, 655357, 5, 0, 655358, 5, 0, 655359, 5, 0, 589824, 5, 0, 589825, 5, 0, 589826, 5, 0, 589827, 10, 0, 589828, 2, 0, 589829, 2, 0, 589830, 2, 0, 589831, 2, 0, 589832, 12, 0, 589833, 5, 0, 589834, 5, 0, 589835, 5, 0, 589836, 5, 0, 589837, 5, 0, 589838, 5, 0, 589839, 5, 0, 589840, 5, 0, 589841, 5, 0, 589842, 5, 0, 589843, 5, 0, 589844, 5, 0, 589845, 5, 0, 589846, 5, 0, 589847, 5, 0, 589848, 5, 0, 589849, 5, 0, 589850, 5, 0, 589851, 5, 0, 589852, 5, 0, 589853, 5, 0, 589854, 5, 0, 589855, 6, 0, 589856, 2, 0, 589857, 2, 0, 589858, 2, 0, 589859, 12, 0, 589860, 5, 0, 589861, 5, 0, 589862, 5, 0, 589863, 5, 0, 589864, 5, 0, 589865, 5, 0, 589866, 5, 0, 589867, 5, 0, 589868, 5, 0, 589869, 5, 0, 589870, 5, 0, 589871, 5, 0, 589872, 5, 0, 589873, 5, 0, 589874, 5, 0, 589875, 5, 0, 589876, 5, 0, 589877, 5, 0, 589878, 5, 0, 589879, 5, 0, 589880, 5, 0, 589881, 5, 0, 589882, 5, 0, 589883, 5, 0, 589884, 5, 0, 589885, 5, 0, 589886, 5, 0, 589887, 5, 0, 589888, 5, 0, 589889, 5, 0, 589890, 5, 0, 589891, 5, 0, 589892, 5, 0, 589893, 5, 0, 589894, 5, 0, 589895, 5, 0, 589896, 5, 0, 589897, 5, 0, 589898, 5, 0, 589899, 5, 0, 589900, 5, 0, 589901, 5, 0, 589902, 5, 0, 589903, 5, 0, 589904, 5, 0, 589905, 5, 0, 589906, 5, 0, 589907, 5, 0, 589908, 5, 0, 589909, 5, 0, 589910, 5, 0, 589911, 5, 0, 589912, 5, 0, 589913, 5, 0, 589914, 5, 0, 589915, 5, 0, 589916, 5, 0, 589917, 5, 0, 589918, 5, 0, 589919, 5, 0, 589920, 5, 0, 589921, 5, 0, 589922, 5, 0, 589923, 5, 0, 589924, 5, 0, 589925, 5, 0, 589926, 5, 0, 589927, 5, 0, 589928, 5, 0, 589929, 5, 0, 589930, 5, 0, 589931, 5, 0, 589932, 5, 0, 589933, 5, 0, 589934, 5, 0, 589935, 5, 0, 589936, 5, 0, 589937, 5, 0, 589938, 5, 0, 589939, 5, 0, 589940, 5, 0, 589941, 5, 0, 589942, 5, 0, 589943, 5, 0, 589944, 5, 0, 589945, 5, 0, 589946, 5, 0, 589947, 5, 0, 589948, 5, 0, 589949, 5, 0, 589950, 5, 0, 589951, 5, 0, 589952, 5, 0, 589953, 10, 0, 589954, 2, 0, 589955, 2, 0, 589956, 2, 0, 589957, 2, 0, 589958, 2, 0, 589959, 2, 0, 589960, 2, 0, 589961, 2, 0, 589962, 2, 0, 589963, 2, 0, 589964, 2, 0, 589965, 2, 0, 589966, 2, 0, 589967, 2, 0, 589968, 2, 0, 589969, 2, 0, 589970, 2, 0, 589971, 2, 0, 589972, 2, 0, 589973, 2, 0, 589974, 2, 0, 589975, 2, 0, 589976, 2, 0, 589977, 2, 0, 589978, 2, 0, 589979, 2, 0, 589980, 2, 0, 589981, 2, 0, 589982, 2, 0, 589983, 2, 0, 589984, 2, 0, 589985, 2, 0, 589986, 2, 0, 589987, 2, 0, 589988, 2, 0, 589989, 2, 0, 589990, 2, 0, 589991, 2, 0, 589992, 2, 0, 589993, 2, 0, 589994, 2, 0, 589995, 2, 0, 589996, 2, 0, 589997, 2, 0, 589998, 2, 0, 589999, 2, 0, 590000, 2, 0, 590001, 2, 0, 590002, 2, 0, 590003, 2, 0, 590004, 2, 0, 590005, 2, 0, 590006, 2, 0, 590007, 2, 0, 590008, 2, 0, 590009, 2, 0, 590010, 2, 0, 590011, 2, 0, 590012, 2, 0, 590013, 2, 0, 590014, 2, 0, 590015, 2, 0, 590016, 2, 0, 590017, 2, 0, 590018, 2, 0, 590019, 2, 0, 590020, 2, 0, 590021, 2, 0, 590022, 2, 0, 590023, 2, 0, 590024, 2, 0, 590025, 2, 0, 590026, 2, 0, 590027, 2, 0, 590028, 2, 0, 590029, 2, 0, 590030, 2, 0, 590031, 2, 0, 590032, 2, 0, 590033, 11, 0, 720881, 2, 0, 720882, 2, 0, 720883, 2, 0, 720884, 2, 0, 720885, 2, 0, 720886, 2, 0, 720887, 2, 0, 720888, 2, 0, 720889, 2, 0, 720890, 2, 0, 720891, 2, 0, 720892, 2, 0, 720893, 2, 0, 720894, 2, 0, 720895, 2, 0, 655360, 2, 0, 655361, 2, 0, 655362, 2, 0, 655363, 2, 0, 655364, 2, 0, 655365, 2, 0, 655366, 2, 0, 655367, 2, 0, 655368, 2, 0, 655369, 2, 0, 655370, 2, 0, 655371, 2, 0, 655372, 2, 0, 655373, 2, 0, 655374, 2, 0, 655375, 2, 0, 655376, 2, 0, 655377, 2, 0, 655378, 2, 0, 655379, 2, 0, 655380, 2, 0, 655381, 2, 0, 655382, 2, 0, 655383, 2, 0, 655384, 2, 0, 655385, 2, 0, 655386, 2, 0, 655387, 2, 0, 655388, 2, 0, 655389, 2, 0, 655390, 2, 0, 655391, 2, 0, 655392, 2, 0, 655393, 2, 0, 655394, 2, 0, 655395, 2, 0, 655396, 2, 0, 655397, 2, 0, 655398, 2, 0, 655399, 2, 0, 655400, 2, 0, 655401, 2, 0, 655402, 2, 0, 655403, 2, 0, 655404, 2, 0, 655405, 2, 0, 655406, 2, 0, 655407, 2, 0, 655408, 2, 0, 655409, 2, 0, 655410, 2, 0, 655411, 2, 0, 655412, 2, 0, 655413, 2, 0, 655414, 2, 0, 655415, 2, 0, 655416, 2, 0, 655417, 2, 0, 655418, 2, 0, 655419, 2, 0, 655420, 2, 0, 655421, 2, 0, 655422, 2, 0, 655423, 2, 0, 655424, 2, 0, 655425, 2, 0, 655426, 2, 0, 655427, 2, 0, 655428, 2, 0, 655429, 2, 0, 655430, 2, 0, 655431, 2, 0, 655432, 2, 0, 655433, 2, 0, 655434, 2, 0, 655435, 2, 0, 655436, 2, 0, 655437, 2, 0, 655438, 2, 0, 655439, 2, 0, 655440, 2, 0, 655441, 2, 0, 655442, 2, 0, 655443, 2, 0, 655444, 2, 0, 655445, 2, 0, 655446, 2, 0, 655447, 2, 0, 655448, 2, 0, 655449, 2, 0, 655450, 2, 0, 655451, 2, 0, 655452, 2, 0, 655453, 2, 0, 655454, 2, 0, 655455, 2, 0, 655456, 2, 0, 655457, 2, 0, 655458, 2, 0, 655459, 2, 0, 655460, 2, 0, 655461, 2, 0, 655462, 2, 0, 655463, 2, 0, 655464, 2, 0, 655465, 2, 0, 655466, 2, 0, 655467, 2, 0, 655468, 2, 0, 655469, 2, 0, 655470, 2, 0, 655471, 2, 0, 655472, 2, 0, 655473, 2, 0, 655474, 2, 0, 655475, 2, 0, 655476, 2, 0, 655477, 2, 0, 655478, 2, 0, 655479, 2, 0, 655480, 2, 0, 655481, 2, 0, 655482, 2, 0, 655483, 2, 0, 655484, 2, 0, 655485, 2, 0, 655486, 2, 0, 655487, 2, 0, 655488, 2, 0, 655489, 2, 0, 655490, 2, 0, 655491, 2, 0, 655492, 2, 0, 655493, 2, 0, 655494, 2, 0, 655495, 2, 0, 655496, 2, 0, 655497, 2, 0, 655498, 2, 0, 655499, 2, 0, 655500, 2, 0, 655501, 2, 0, 655502, 2, 0, 655503, 2, 0, 655504, 2, 0, 655505, 2, 0, 655506, 2, 0, 655507, 2, 0, 655508, 2, 0, 655509, 2, 0, 655510, 2, 0, 655511, 2, 0, 655512, 2, 0, 655513, 2, 0, 655514, 2, 0, 655515, 2, 0, 655516, 2, 0, 655517, 2, 0, 655518, 2, 0, 655519, 2, 0, 655520, 2, 0, 655521, 2, 0, 655522, 2, 0, 655523, 2, 0, 655524, 2, 0, 655525, 2, 0, 655526, 2, 0, 655527, 2, 0, 655528, 2, 0, 655529, 2, 0, 655530, 2, 0, 655531, 2, 0, 655532, 2, 0, 655533, 2, 0, 655534, 2, 0, 655535, 2, 0, 655536, 2, 0, 655537, 2, 0, 655538, 2, 0, 655539, 2, 0, 655540, 2, 0, 655541, 2, 0, 655542, 2, 0, 655543, 2, 0, 655544, 2, 0, 655545, 2, 0, 655546, 2, 0, 655547, 2, 0, 655548, 2, 0, 655549, 2, 0, 655550, 2, 0, 655551, 2, 0, 655552, 2, 0, 655553, 2, 0, 655554, 2, 0, 655555, 2, 0, 655556, 2, 0, 655557, 2, 0, 655558, 2, 0, 655559, 2, 0, 655560, 2, 0, 655561, 2, 0, 655562, 2, 0, 655563, 2, 0, 655564, 2, 0, 655565, 2, 0, 655566, 2, 0, 655567, 2, 0, 655568, 2, 0, 655569, 11, 0, 786417, 2, 0, 786418, 2, 0, 786419, 2, 0, 786420, 2, 0, 786421, 2, 0, 786422, 2, 0, 786423, 2, 0, 786424, 2, 0, 786425, 2, 0, 786426, 2, 0, 786427, 2, 0, 786428, 2, 0, 786429, 2, 0, 786430, 2, 0, 786431, 2, 0, 720896, 2, 0, 720897, 2, 0, 720898, 2, 0, 720899, 2, 0, 720900, 2, 0, 720901, 2, 0, 720902, 2, 0, 720903, 2, 0, 720904, 2, 0, 720905, 2, 0, 720906, 2, 0, 720907, 2, 0, 720908, 2, 0, 720909, 2, 0, 720910, 2, 0, 720911, 2, 0, 720912, 2, 0, 720913, 2, 0, 720914, 2, 0, 720915, 2, 0, 720916, 2, 0, 720917, 2, 0, 720918, 2, 0, 720919, 2, 0, 720920, 2, 0, 720921, 2, 0, 720922, 2, 0, 720923, 2, 0, 720924, 2, 0, 720925, 2, 0, 720926, 2, 0, 720927, 2, 0, 720928, 2, 0, 720929, 2, 0, 720930, 2, 0, 720931, 2, 0, 720932, 2, 0, 720933, 2, 0, 720934, 2, 0, 720935, 2, 0, 720936, 2, 0, 720937, 2, 0, 720938, 2, 0, 720939, 2, 0, 720940, 2, 0, 720941, 2, 0, 720942, 2, 0, 720943, 2, 0, 720944, 2, 0, 720945, 2, 0, 720946, 2, 0, 720947, 2, 0, 720948, 2, 0, 720949, 2, 0, 720950, 2, 0, 720951, 2, 0, 720952, 2, 0, 720953, 2, 0, 720954, 2, 0, 720955, 2, 0, 720956, 2, 0, 720957, 2, 0, 720958, 2, 0, 720959, 2, 0, 720960, 2, 0, 720961, 2, 0, 720962, 2, 0, 720963, 2, 0, 720964, 2, 0, 720965, 2, 0, 720966, 2, 0, 720967, 2, 0, 720968, 2, 0, 720969, 2, 0, 720970, 2, 0, 720971, 2, 0, 720972, 2, 0, 720973, 2, 0, 720974, 2, 0, 720975, 2, 0, 720976, 2, 0, 720977, 2, 0, 720978, 2, 0, 720979, 2, 0, 720980, 2, 0, 720981, 2, 0, 720982, 2, 0, 720983, 2, 0, 720984, 2, 0, 720985, 2, 0, 720986, 2, 0, 720987, 2, 0, 720988, 2, 0, 720989, 2, 0, 720990, 2, 0, 720991, 2, 0, 720992, 2, 0, 720993, 2, 0, 720994, 2, 0, 720995, 2, 0, 720996, 2, 0, 720997, 2, 0, 720998, 2, 0, 720999, 2, 0, 721000, 2, 0, 721001, 2, 0, 721002, 2, 0, 721003, 2, 0, 721004, 2, 0, 721005, 2, 0, 721006, 2, 0, 721007, 2, 0, 721008, 2, 0, 721009, 2, 0, 721010, 2, 0, 721011, 2, 0, 721012, 2, 0, 721013, 2, 0, 721014, 2, 0, 721015, 2, 0, 721016, 2, 0, 721017, 2, 0, 721018, 2, 0, 721019, 2, 0, 721020, 2, 0, 721021, 2, 0, 721022, 2, 0, 721023, 2, 0, 721024, 2, 0, 721025, 2, 0, 721026, 2, 0, 721027, 2, 0, 721028, 2, 0, 721029, 2, 0, 721030, 2, 0, 721031, 2, 0, 721032, 2, 0, 721033, 2, 0, 721034, 2, 0, 721035, 2, 0, 721036, 2, 0, 721037, 2, 0, 721038, 2, 0, 721039, 2, 0, 721040, 2, 0, 721041, 2, 0, 721042, 2, 0, 721043, 2, 0, 721044, 2, 0, 721045, 2, 0, 721046, 2, 0, 721047, 2, 0, 721048, 2, 0, 721049, 2, 0, 721050, 2, 0, 721051, 2, 0, 721052, 2, 0, 721053, 2, 0, 721054, 2, 0, 721055, 2, 0, 721056, 2, 0, 721057, 2, 0, 721058, 2, 0, 721059, 2, 0, 721060, 2, 0, 721061, 2, 0, 721062, 2, 0, 721063, 2, 0, 721064, 2, 0, 721065, 2, 0, 721066, 2, 0, 721067, 2, 0, 721068, 2, 0, 721069, 2, 0, 721070, 2, 0, 721071, 2, 0, 721072, 2, 0, 721073, 2, 0, 721074, 2, 0, 721075, 2, 0, 721076, 2, 0, 721077, 2, 0, 721078, 2, 0, 721079, 2, 0, 721080, 2, 0, 721081, 2, 0, 721082, 2, 0, 721083, 2, 0, 721084, 2, 0, 721085, 2, 0, 721086, 2, 0, 721087, 2, 0, 721088, 2, 0, 721089, 2, 0, 721090, 2, 0, 721091, 2, 0, 721092, 2, 0, 721093, 2, 0, 721094, 2, 0, 721095, 2, 0, 721096, 2, 0, 721097, 2, 0, 721098, 2, 0, 721099, 2, 0, 721100, 2, 0, 721101, 2, 0, 721102, 2, 0, 721103, 2, 0, 721104, 2, 0, 721105, 11, 0, 851953, 2, 0, 851954, 2, 0, 851955, 2, 0, 851956, 2, 0, 851957, 2, 0, 851958, 2, 0, 851959, 2, 0, 851960, 2, 0, 851961, 2, 0, 851962, 2, 0, 851963, 2, 0, 851964, 2, 0, 851965, 2, 0, 851966, 2, 0, 851967, 2, 0, 786432, 2, 0, 786433, 2, 0, 786434, 2, 0, 786435, 2, 0, 786436, 2, 0, 786437, 2, 0, 786438, 2, 0, 786439, 2, 0, 786440, 2, 0, 786441, 2, 0, 786442, 2, 0, 786443, 2, 0, 786444, 2, 0, 786445, 2, 0, 786446, 2, 0, 786447, 2, 0, 786448, 2, 0, 786449, 2, 0, 786450, 2, 0, 786451, 2, 0, 786452, 2, 0, 786453, 2, 0, 786454, 2, 0, 786455, 2, 0, 786456, 2, 0, 786457, 2, 0, 786458, 2, 0, 786459, 2, 0, 786460, 2, 0, 786461, 2, 0, 786462, 2, 0, 786463, 2, 0, 786464, 2, 0, 786465, 2, 0, 786466, 2, 0, 786467, 2, 0, 786468, 2, 0, 786469, 2, 0, 786470, 2, 0, 786471, 2, 0, 786472, 2, 0, 786473, 2, 0, 786474, 2, 0, 786475, 2, 0, 786476, 2, 0, 786477, 2, 0, 786478, 2, 0, 786479, 2, 0, 786480, 2, 0, 786481, 2, 0, 786482, 2, 0, 786483, 2, 0, 786484, 2, 0, 786485, 2, 0, 786486, 2, 0, 786487, 2, 0, 786488, 2, 0, 786489, 2, 0, 786490, 2, 0, 786491, 2, 0, 786492, 2, 0, 786493, 2, 0, 786494, 2, 0, 786495, 2, 0, 786496, 2, 0, 786497, 2, 0, 786498, 2, 0, 786499, 2, 0, 786500, 2, 0, 786501, 2, 0, 786502, 2, 0, 786503, 2, 0, 786504, 2, 0, 786505, 2, 0, 786506, 2, 0, 786507, 2, 0, 786508, 2, 0, 786509, 2, 0, 786510, 2, 0, 786511, 2, 0, 786512, 2, 0, 786513, 2, 0, 786514, 2, 0, 786515, 2, 0, 786516, 2, 0, 786517, 2, 0, 786518, 2, 0, 786519, 2, 0, 786520, 2, 0, 786521, 2, 0, 786522, 2, 0, 786523, 2, 0, 786524, 2, 0, 786525, 2, 0, 786526, 2, 0, 786527, 2, 0, 786528, 2, 0, 786529, 2, 0, 786530, 2, 0, 786531, 2, 0, 786532, 2, 0, 786533, 2, 0, 786534, 2, 0, 786535, 2, 0, 786536, 2, 0, 786537, 2, 0, 786538, 2, 0, 786539, 2, 0, 786540, 2, 0, 786541, 2, 0, 786542, 2, 0, 786543, 2, 0, 786544, 2, 0, 786545, 2, 0, 786546, 2, 0, 786547, 2, 0, 786548, 2, 0, 786549, 2, 0, 786550, 2, 0, 786551, 2, 0, 786552, 2, 0, 786553, 2, 0, 786554, 2, 0, 786555, 2, 0, 786556, 2, 0, 786557, 2, 0, 786558, 2, 0, 786559, 2, 0, 786560, 2, 0, 786561, 2, 0, 786562, 2, 0, 786563, 2, 0, 786564, 2, 0, 786565, 2, 0, 786566, 2, 0, 786567, 2, 0, 786568, 2, 0, 786569, 2, 0, 786570, 2, 0, 786571, 2, 0, 786572, 2, 0, 786573, 2, 0, 786574, 2, 0, 786575, 2, 0, 786576, 2, 0, 786577, 2, 0, 786578, 2, 0, 786579, 2, 0, 786580, 2, 0, 786581, 2, 0, 786582, 2, 0, 786583, 2, 0, 786584, 2, 0, 786585, 2, 0, 786586, 2, 0, 786587, 2, 0, 786588, 2, 0, 786589, 2, 0, 786590, 2, 0, 786591, 2, 0, 786592, 2, 0, 786593, 2, 0, 786594, 2, 0, 786595, 2, 0, 786596, 2, 0, 786597, 2, 0, 786598, 2, 0, 786599, 2, 0, 786600, 2, 0, 786601, 2, 0, 786602, 2, 0, 786603, 2, 0, 786604, 2, 0, 786605, 2, 0, 786606, 2, 0, 786607, 2, 0, 786608, 2, 0, 786609, 2, 0, 786610, 2, 0, 786611, 2, 0, 786612, 2, 0, 786613, 2, 0, 786614, 2, 0, 786615, 2, 0, 786616, 2, 0, 786617, 2, 0, 786618, 2, 0, 786619, 2, 0, 786620, 2, 0, 786621, 2, 0, 786622, 2, 0, 786623, 2, 0, 786624, 2, 0, 786625, 2, 0, 786626, 2, 0, 786627, 2, 0, 786628, 2, 0, 786629, 2, 0, 786630, 2, 0, 786631, 2, 0, 786632, 2, 0, 786633, 2, 0, 786634, 2, 0, 786635, 2, 0, 786636, 2, 0, 786637, 2, 0, 786638, 2, 0, 786639, 2, 0, 786640, 2, 0, 786641, 11, 0, 917489, 2, 0, 917490, 2, 0, 917491, 2, 0, 917492, 2, 0, 917493, 2, 0, 917494, 2, 0, 917495, 2, 0, 917496, 2, 0, 917497, 2, 0, 917498, 2, 0, 917499, 2, 0, 917500, 2, 0, 917501, 2, 0, 917502, 2, 0, 917503, 2, 0, 851968, 2, 0, 851969, 2, 0, 851970, 2, 0, 851971, 2, 0, 851972, 2, 0, 851973, 2, 0, 851974, 2, 0, 851975, 2, 0, 851976, 2, 0, 851977, 2, 0, 851978, 2, 0, 851979, 2, 0, 851980, 2, 0, 851981, 2, 0, 851982, 2, 0, 851983, 2, 0, 851984, 2, 0, 851985, 2, 0, 851986, 2, 0, 851987, 2, 0, 851988, 2, 0, 851989, 2, 0, 851990, 2, 0, 851991, 2, 0, 851992, 2, 0, 851993, 2, 0, 851994, 2, 0, 851995, 2, 0, 851996, 2, 0, 851997, 2, 0, 851998, 2, 0, 851999, 2, 0, 852000, 2, 0, 852001, 2, 0, 852002, 2, 0, 852003, 2, 0, 852004, 2, 0, 852005, 2, 0, 852006, 2, 0, 852007, 2, 0, 852008, 2, 0, 852009, 2, 0, 852010, 2, 0, 852011, 2, 0, 852012, 2, 0, 852013, 2, 0, 852014, 2, 0, 852015, 2, 0, 852016, 2, 0, 852017, 2, 0, 852018, 2, 0, 852019, 2, 0, 852020, 2, 0, 852021, 2, 0, 852022, 2, 0, 852023, 2, 0, 852024, 2, 0, 852025, 2, 0, 852026, 2, 0, 852027, 2, 0, 852028, 2, 0, 852029, 2, 0, 852030, 2, 0, 852031, 2, 0, 852032, 2, 0, 852033, 2, 0, 852034, 2, 0, 852035, 2, 0, 852036, 2, 0, 852037, 2, 0, 852038, 2, 0, 852039, 2, 0, 852040, 2, 0, 852041, 2, 0, 852042, 2, 0, 852043, 2, 0, 852044, 2, 0, 852045, 2, 0, 852046, 2, 0, 852047, 2, 0, 852048, 2, 0, 852049, 2, 0, 852050, 2, 0, 852051, 2, 0, 852052, 2, 0, 852053, 2, 0, 852054, 2, 0, 852055, 2, 0, 852056, 2, 0, 852057, 2, 0, 852058, 2, 0, 852059, 2, 0, 852060, 2, 0, 852061, 2, 0, 852062, 2, 0, 852063, 2, 0, 852064, 2, 0, 852065, 2, 0, 852066, 2, 0, 852067, 2, 0, 852068, 2, 0, 852069, 2, 0, 852070, 2, 0, 852071, 2, 0, 852072, 2, 0, 852073, 2, 0, 852074, 2, 0, 852075, 2, 0, 852076, 2, 0, 852077, 2, 0, 852078, 2, 0, 852079, 2, 0, 852080, 2, 0, 852081, 2, 0, 852082, 2, 0, 852083, 2, 0, 852084, 2, 0, 852085, 2, 0, 852086, 2, 0, 852087, 2, 0, 852088, 2, 0, 852089, 2, 0, 852090, 2, 0, 852091, 2, 0, 852092, 2, 0, 852093, 2, 0, 852094, 2, 0, 852095, 2, 0, 852096, 2, 0, 852097, 2, 0, 852098, 2, 0, 852099, 2, 0, 852100, 2, 0, 852101, 2, 0, 852102, 2, 0, 852103, 2, 0, 852104, 2, 0, 852105, 2, 0, 852106, 2, 0, 852107, 2, 0, 852108, 2, 0, 852109, 2, 0, 852110, 2, 0, 852111, 2, 0, 852112, 2, 0, 852113, 2, 0, 852114, 2, 0, 852115, 2, 0, 852116, 2, 0, 852117, 2, 0, 852118, 2, 0, 852119, 2, 0, 852120, 2, 0, 852121, 2, 0, 852122, 2, 0, 852123, 2, 0, 852124, 2, 0, 852125, 2, 0, 852126, 2, 0, 852127, 2, 0, 852128, 2, 0, 852129, 2, 0, 852130, 2, 0, 852131, 2, 0, 852132, 2, 0, 852133, 2, 0, 852134, 2, 0, 852135, 2, 0, 852136, 2, 0, 852137, 2, 0, 852138, 2, 0, 852139, 2, 0, 852140, 2, 0, 852141, 2, 0, 852142, 2, 0, 852143, 2, 0, 852144, 2, 0, 852145, 2, 0, 852146, 2, 0, 852147, 2, 0, 852148, 2, 0, 852149, 2, 0, 852150, 2, 0, 852151, 2, 0, 852152, 2, 0, 852153, 2, 0, 852154, 2, 0, 852155, 2, 0, 852156, 2, 0, 852157, 2, 0, 852158, 2, 0, 852159, 2, 0, 852160, 2, 0, 852161, 2, 0, 852162, 2, 0, 852163, 2, 0, 852164, 2, 0, 852165, 2, 0, 852166, 2, 0, 852167, 2, 0, 852168, 2, 0, 852169, 2, 0, 852170, 2, 0, 852171, 2, 0, 852172, 2, 0, 852173, 2, 0, 852174, 2, 0, 852175, 2, 0, 852176, 2, 0, 852177, 12, 0, 852178, 5, 0, 852179, 5, 0, 852180, 5, 0, 852181, 5, 0, 852182, 5, 0, 852183, 5, 0, 852184, 5, 0, 852185, 5, 0, 852186, 5, 0, 852187, 5, 0, 852188, 5, 0, 852189, 5, 0, 852190, 5, 0, 852191, 5, 0, 852192, 5, 0, 852193, 5, 0, 852194, 5, 0, 852195, 5, 0, 852196, 5, 0, 852197, 5, 0, 852198, 5, 0, 852199, 5, 0, 852200, 5, 0, 852201, 5, 0, 852202, 8, 0, 983025, 2, 0, 983026, 2, 0, 983027, 2, 0, 983028, 2, 0, 983029, 2, 0, 983030, 2, 0, 983031, 2, 0, 983032, 2, 0, 983033, 2, 0, 983034, 2, 0, 983035, 2, 0, 983036, 2, 0, 983037, 2, 0, 983038, 2, 0, 983039, 2, 0, 917504, 2, 0, 917505, 2, 0, 917506, 2, 0, 917507, 2, 0, 917508, 2, 0, 917509, 2, 0, 917510, 2, 0, 917511, 2, 0, 917512, 2, 0, 917513, 2, 0, 917514, 2, 0, 917515, 2, 0, 917516, 2, 0, 917517, 2, 0, 917518, 2, 0, 917519, 2, 0, 917520, 2, 0, 917521, 2, 0, 917522, 2, 0, 917523, 2, 0, 917524, 2, 0, 917525, 2, 0, 917526, 2, 0, 917527, 2, 0, 917528, 2, 0, 917529, 2, 0, 917530, 2, 0, 917531, 2, 0, 917532, 2, 0, 917533, 2, 0, 917534, 2, 0, 917535, 2, 0, 917536, 2, 0, 917537, 2, 0, 917538, 2, 0, 917539, 2, 0, 917540, 2, 0, 917541, 2, 0, 917542, 2, 0, 917543, 2, 0, 917544, 2, 0, 917545, 2, 0, 917546, 2, 0, 917547, 2, 0, 917548, 2, 0, 917549, 2, 0, 917550, 2, 0, 917551, 2, 0, 917552, 2, 0, 917553, 2, 0, 917554, 2, 0, 917555, 2, 0, 917556, 2, 0, 917557, 2, 0, 917558, 2, 0, 917559, 2, 0, 917560, 2, 0, 917561, 2, 0, 917562, 2, 0, 917563, 2, 0, 917564, 2, 0, 917565, 2, 0, 917566, 2, 0, 917567, 2, 0, 917568, 2, 0, 917569, 2, 0, 917570, 2, 0, 917571, 2, 0, 917572, 2, 0, 917573, 2, 0, 917574, 2, 0, 917575, 2, 0, 917576, 2, 0, 917577, 2, 0, 917578, 2, 0, 917579, 2, 0, 917580, 2, 0, 917581, 2, 0, 917582, 2, 0, 917583, 2, 0, 917584, 2, 0, 917585, 2, 0, 917586, 2, 0, 917587, 2, 0, 917588, 2, 0, 917589, 2, 0, 917590, 2, 0, 917591, 2, 0, 917592, 2, 0, 917593, 2, 0, 917594, 2, 0, 917595, 2, 0, 917596, 2, 0, 917597, 2, 0, 917598, 2, 0, 917599, 2, 0, 917600, 2, 0, 917601, 2, 0, 917602, 2, 0, 917603, 2, 0, 917604, 2, 0, 917605, 2, 0, 917606, 2, 0, 917607, 2, 0, 917608, 2, 0, 917609, 2, 0, 917610, 2, 0, 917611, 2, 0, 917612, 2, 0, 917613, 2, 0, 917614, 2, 0, 917615, 2, 0, 917616, 2, 0, 917617, 2, 0, 917618, 2, 0, 917619, 2, 0, 917620, 2, 0, 917621, 2, 0, 917622, 2, 0, 917623, 2, 0, 917624, 2, 0, 917625, 2, 0, 917626, 2, 0, 917627, 2, 0, 917628, 2, 0, 917629, 2, 0, 917630, 2, 0, 917631, 2, 0, 917632, 2, 0, 917633, 2, 0, 917634, 2, 0, 917635, 2, 0, 917636, 2, 0, 917637, 2, 0, 917638, 2, 0, 917639, 2, 0, 917640, 2, 0, 917641, 2, 0, 917642, 2, 0, 917643, 2, 0, 917644, 2, 0, 917645, 2, 0, 917646, 2, 0, 917647, 2, 0, 917648, 2, 0, 917649, 2, 0, 917650, 2, 0, 917651, 2, 0, 917652, 2, 0, 917653, 2, 0, 917654, 2, 0, 917655, 2, 0, 917656, 2, 0, 917657, 2, 0, 917658, 2, 0, 917659, 2, 0, 917660, 2, 0, 917661, 2, 0, 917662, 2, 0, 917663, 2, 0, 917664, 2, 0, 917665, 2, 0, 917666, 2, 0, 917667, 2, 0, 917668, 2, 0, 917669, 2, 0, 917670, 2, 0, 917671, 2, 0, 917672, 2, 0, 917673, 2, 0, 917674, 2, 0, 917675, 2, 0, 917676, 2, 0, 917677, 2, 0, 917678, 2, 0, 917679, 2, 0, 917680, 2, 0, 917681, 2, 0, 917682, 2, 0, 917683, 2, 0, 917684, 2, 0, 917685, 2, 0, 917686, 2, 0, 917687, 2, 0, 917688, 2, 0, 917689, 2, 0, 917690, 2, 0, 917691, 2, 0, 917692, 2, 0, 917693, 2, 0, 917694, 2, 0, 917695, 2, 0, 917696, 2, 0, 917697, 2, 0, 917698, 2, 0, 917699, 2, 0, 917700, 2, 0, 917701, 2, 0, 917702, 2, 0, 917703, 2, 0, 917704, 2, 0, 917705, 2, 0, 917706, 2, 0, 917707, 2, 0, 917708, 2, 0, 917709, 2, 0, 917710, 2, 0, 917711, 2, 0, 917712, 2, 0, 917713, 2, 0, 917714, 2, 0, 917715, 2, 0, 917716, 2, 0, 917717, 2, 0, 917718, 2, 0, 917719, 2, 0, 917720, 2, 0, 917721, 2, 0, 917722, 2, 0, 917723, 2, 0, 917724, 2, 0, 917725, 2, 0, 917726, 2, 0, 917727, 2, 0, 917728, 2, 0, 917729, 2, 0, 917730, 2, 0, 917731, 2, 0, 917732, 2, 0, 917733, 2, 0, 917734, 2, 0, 917735, 2, 0, 917736, 2, 0, 917737, 2, 0, 917738, 11, 0 )
[node name="Checkpoints" type="Node" parent="."]
[node name="Check-IntroA" parent="Checkpoints" instance=ExtResource( 14 )]
position = Vector2( 1692, 123 )
[node name="Check-IntroB" parent="Checkpoints" instance=ExtResource( 14 )]
position = Vector2( 4311, 431 )
[node name="Check-lvl-1-A" parent="Checkpoints" instance=ExtResource( 14 )]
position = Vector2( 5837, 437 )
[node name="Check-lvl-1-B" parent="Checkpoints" instance=ExtResource( 14 )]
position = Vector2( 8501, 250 )
[node name="Check-lvl-2-A" parent="Checkpoints" instance=ExtResource( 14 )]
position = Vector2( 9379, 137 )
[node name="Check-lvl-2-B" parent="Checkpoints" instance=ExtResource( 14 )]
position = Vector2( 10363, -1092 )
[node name="Check-lvl-2-B2" parent="Checkpoints" instance=ExtResource( 14 )]
position = Vector2( 11304, -1063 )
scale = Vector2( 1, 0.6 )
[node name="Check-lvl-2-C" parent="Checkpoints" instance=ExtResource( 14 )]
position = Vector2( 13306, 166 )
scale = Vector2( 1, 0.7 )
[node name="Check-lvl-2-D" parent="Checkpoints" instance=ExtResource( 14 )]
position = Vector2( 12391, 133 )
[node name="Lasers" type="Node" parent="."]
[node name="Lasers-Intro" type="Timer" parent="Lasers"]
autostart = true
script = ExtResource( 1 )
[node name="LaserA" parent="Lasers/Lasers-Intro" instance=ExtResource( 21 )]
position = Vector2( 4750, 483 )
SCALE_LENGTH = 3.5
[node name="LaserB" parent="Lasers/Lasers-Intro" instance=ExtResource( 21 )]
position = Vector2( 5059, 337 )
rotation = 1.5708
CYCLETIME = 2
SCALE_LENGTH = 4.0
[node name="LaserC" parent="Lasers/Lasers-Intro" instance=ExtResource( 21 )]
position = Vector2( 5185, 337 )
rotation = 1.5708
TIME_START = 2
CYCLETIME = 2
SCALE_LENGTH = 4.0
[node name="LaserD" parent="Lasers/Lasers-Intro" instance=ExtResource( 21 )]
position = Vector2( 5363, 497 )
TIME_START = 2
SCALE_LENGTH = 1.45
[node name="Lasers-lvl-1" type="Timer" parent="Lasers"]
wait_time = 0.2
autostart = true
script = ExtResource( 1 )
[node name="LaserA" parent="Lasers/Lasers-lvl-1" instance=ExtResource( 21 )]