diff --git a/Enemies/Chasing Glowing Ghost.gd b/Enemies/Chasing Glowing Ghost.gd index 8597781..0ccae84 100644 --- a/Enemies/Chasing Glowing Ghost.gd +++ b/Enemies/Chasing Glowing Ghost.gd @@ -8,33 +8,33 @@ var health: int = 2 func _physics_process(_delta: float) -> void: - velocity = Vector2.ZERO + velocity = Vector2.ZERO - if player and position.distance_to(player.position) > 1: - velocity = position.direction_to(player.position).normalized() * SPEED + if player and position.distance_to(player.position) > 1: + velocity = position.direction_to(player.position).normalized() * SPEED - velocity = move_and_slide(velocity) - return + velocity = move_and_slide(velocity) + return func _on_player_detector_body_entered(body: Node) -> void: - if body.is_in_group('player'): - player = body - return + if body.is_in_group('player'): + player = body + return func _on_player_detector_body_exited(body: Node) -> void: - if body.is_in_group('player'): - player = null - return + if body.is_in_group('player'): + player = null + return func _on_hitbox_area_entered(area: Area2D) -> void: - if area.is_in_group('player_weapon_1'): - health -= 1 - elif area.is_in_group('player_weapon_2'): - health -= 2 + if area.is_in_group('player_weapon_1'): + health -= 1 + elif area.is_in_group('player_weapon_2'): + health -= 2 - if health <= 0: - call_deferred('queue_free') - return + if health <= 0: + call_deferred('queue_free') + return diff --git a/Enemies/Creepy Glowing Ghost.gd b/Enemies/Creepy Glowing Ghost.gd index 81ad2cf..b18dd03 100644 --- a/Enemies/Creepy Glowing Ghost.gd +++ b/Enemies/Creepy Glowing Ghost.gd @@ -10,44 +10,44 @@ var health: int = 1 func _physics_process(_delta: float) -> void: - velocity = Vector2.ZERO + velocity = Vector2.ZERO - if player: - if position.distance_to(player.position) < 40: - velocity = position.direction_to(player.position).normalized() * -SPEED - elif position.distance_to(player.position) > 41: - velocity = position.direction_to(player.position).normalized() * SPEED + if player: + if position.distance_to(player.position) < 40: + velocity = position.direction_to(player.position).normalized() * -SPEED + elif position.distance_to(player.position) > 41: + velocity = position.direction_to(player.position).normalized() * SPEED - velocity = move_and_slide(velocity) - return + velocity = move_and_slide(velocity) + return func _on_player_detector_body_entered(body: Node) -> void: - if body.is_in_group('player'): - player = body - return + if body.is_in_group('player'): + player = body + return func _on_player_detector_body_exited(body: Node) -> void: - if body.is_in_group('player'): - player = null - return + if body.is_in_group('player'): + player = null + return func _on_projectile_timer_timeout() -> void: - if player: - var projectile: Node = creepy_hand.instance() - projectile.init($Sprite.global_position, player.position) - get_tree().get_current_scene().get_node('Projectiles').add_child(projectile) - return + if player: + var projectile: Node = creepy_hand.instance() + projectile.init($Sprite.global_position, player.position) + get_tree().get_current_scene().get_node('Projectiles').add_child(projectile) + return func _on_hitbox_area_entered(area: Area2D) -> void: - if area.is_in_group('player_weapon_1'): - health -= 1 - elif area.is_in_group('player_weapon_2'): - health -= 2 + if area.is_in_group('player_weapon_1'): + health -= 1 + elif area.is_in_group('player_weapon_2'): + health -= 2 - if health <= 0: - call_deferred('queue_free') - return + if health <= 0: + call_deferred('queue_free') + return diff --git a/Enemies/Demon Boss.gd b/Enemies/Demon Boss.gd new file mode 100644 index 0000000..560e715 --- /dev/null +++ b/Enemies/Demon Boss.gd @@ -0,0 +1,74 @@ +extends KinematicBody2D + +const SPEED: int = 30 + +var player: KinematicBody2D = null +var velocity: Vector2 = Vector2.ZERO +var health: int = 15 +var hit: bool = false +var counter: int = 0 + + +func _physics_process(_delta: float) -> void: + velocity = Vector2.ZERO + + if player and position.distance_to(player.position) > 1: + velocity = position.direction_to(player.position).normalized() * SPEED + var angle = position.angle_to_point(player.position) + if abs(angle) > PI/2: + $AnimatedSprite1.scale.x = -0.563 + else: + $AnimatedSprite1.scale.x = 0.563 + + if hit == true: + if counter < 15: + if counter % 5 == 0: + $AnimatedSprite1.visible = false + else: + $AnimatedSprite1.visible = true + counter += 1 + velocity = Vector2.ZERO + else: + hit = false + counter = 0 + + velocity = move_and_slide(velocity) + return + + +func _on_player_detector_body_entered(body: Node) -> void: + if body.is_in_group('player'): + player = body + $AnimatedSprite1.animation = 'Walk' + return + + +func _on_player_detector_body_exited(body: Node) -> void: + if body.is_in_group('player'): + player = null + $AnimatedSprite1.animation = 'Idle' + return + + +func _on_hitbox_area_entered(area: Area2D) -> void: + if area.is_in_group('player_weapon_1'): + health -= 1 + hit = true + elif area.is_in_group('player_weapon_2'): + health -= 2 + hit = true + + if health <= 0: + call_deferred('queue_free') + return + +func _on_Player_Detector__Attack_body_entered(body: Node) -> void: + if body.is_in_group('player'): + player = body + $AnimatedSprite1.animation = 'Attack' + + +func _on_Player_Detector__Attack_body_exited(body: Node) -> void: + if body.is_in_group('player'): + player = body + $AnimatedSprite1.animation = 'Walk' diff --git a/Enemies/DemonBoss.tscn b/Enemies/Demon Boss.tscn similarity index 64% rename from Enemies/DemonBoss.tscn rename to Enemies/Demon Boss.tscn index d37cf7c..6aeb59f 100644 --- a/Enemies/DemonBoss.tscn +++ b/Enemies/Demon Boss.tscn @@ -1,310 +1,251 @@ -[gd_scene load_steps=68 format=2] +[gd_scene load_steps=71 format=2] [ext_resource path="res://Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres" type="OccluderPolygon2D" id=1] [ext_resource path="res://Sprites/Assets/Light.png" type="Texture" id=2] -[ext_resource path="res://Sprites/Enemies/Demon_Slime_Spritesheet.png" type="Texture" id=3] -[ext_resource path="res://Enemies/DemonBoss.gd" type="Script" id=4] +[ext_resource path="res://Enemies/Demon Boss.gd" type="Script" id=4] +[ext_resource path="res://Sprites/Enemies/Demon_Slime_Spritesheet.png" type="Texture" id=5] +[ext_resource path="res://Sprites/Enemies/Chasing_Glowing_Ghost.png" type="Texture" id=7] [sub_resource type="AtlasTexture" id=3] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 0, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=4] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 288, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=5] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 576, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=6] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 864, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=7] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 1152, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=8] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 1440, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=9] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 1728, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=10] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 2016, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=11] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 2304, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=12] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 2592, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=13] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 2880, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=14] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 3168, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=15] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 3456, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=16] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 3744, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=17] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 4032, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=18] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 4320, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=19] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 4608, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=20] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 4896, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=21] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 5184, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=22] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 5472, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=23] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 5760, 640, 288, 160 ) [sub_resource type="AtlasTexture" id=24] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 6048, 640, 288, 160 ) -[sub_resource type="AtlasTexture" id=25] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 0, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=26] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 288, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=27] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 576, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=28] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 864, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=29] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 1152, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=30] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 1440, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=31] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 1728, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=32] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 2016, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=33] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 2304, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=34] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 2592, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=35] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 2880, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=36] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 3168, 160, 288, 160 ) - -[sub_resource type="AtlasTexture" id=37] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 0, 0, 288, 160 ) - -[sub_resource type="AtlasTexture" id=38] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 288, 0, 288, 160 ) - -[sub_resource type="AtlasTexture" id=39] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 576, 0, 288, 160 ) - -[sub_resource type="AtlasTexture" id=40] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 864, 0, 288, 160 ) - -[sub_resource type="AtlasTexture" id=41] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 1152, 0, 288, 160 ) - -[sub_resource type="AtlasTexture" id=42] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 1440, 0, 288, 160 ) - [sub_resource type="AtlasTexture" id=43] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 0, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=44] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 288, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=45] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 576, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=46] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 864, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=47] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 1152, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=48] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 1440, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=49] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 1728, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=50] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 2016, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=51] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 2304, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=52] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 2592, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=53] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 2880, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=54] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 3168, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=55] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 3456, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=56] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 3744, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=57] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 4032, 320, 288, 160 ) [sub_resource type="AtlasTexture" id=58] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 0, 480, 288, 160 ) [sub_resource type="AtlasTexture" id=59] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 288, 480, 288, 160 ) [sub_resource type="AtlasTexture" id=60] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 576, 480, 288, 160 ) [sub_resource type="AtlasTexture" id=61] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 864, 480, 288, 160 ) [sub_resource type="AtlasTexture" id=62] -flags = 4 -atlas = ExtResource( 3 ) +atlas = ExtResource( 5 ) region = Rect2( 1152, 480, 288, 160 ) +[sub_resource type="AtlasTexture" id=25] +atlas = ExtResource( 5 ) +region = Rect2( 0, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=26] +atlas = ExtResource( 5 ) +region = Rect2( 288, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=27] +atlas = ExtResource( 5 ) +region = Rect2( 576, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=28] +atlas = ExtResource( 5 ) +region = Rect2( 864, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=29] +atlas = ExtResource( 5 ) +region = Rect2( 1152, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=30] +atlas = ExtResource( 5 ) +region = Rect2( 1440, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=31] +atlas = ExtResource( 5 ) +region = Rect2( 1728, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=32] +atlas = ExtResource( 5 ) +region = Rect2( 2016, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=33] +atlas = ExtResource( 5 ) +region = Rect2( 2304, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=34] +atlas = ExtResource( 5 ) +region = Rect2( 2592, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=35] +atlas = ExtResource( 5 ) +region = Rect2( 2880, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=36] +atlas = ExtResource( 5 ) +region = Rect2( 3168, 160, 288, 160 ) + +[sub_resource type="AtlasTexture" id=37] +atlas = ExtResource( 5 ) +region = Rect2( 0, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=38] +atlas = ExtResource( 5 ) +region = Rect2( 288, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=39] +atlas = ExtResource( 5 ) +region = Rect2( 576, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=40] +atlas = ExtResource( 5 ) +region = Rect2( 864, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=41] +atlas = ExtResource( 5 ) +region = Rect2( 1152, 0, 288, 160 ) + +[sub_resource type="AtlasTexture" id=42] +atlas = ExtResource( 5 ) +region = Rect2( 1440, 0, 288, 160 ) + [sub_resource type="SpriteFrames" id=63] animations = [ { "frames": [ SubResource( 3 ), SubResource( 4 ), SubResource( 5 ), SubResource( 6 ), SubResource( 7 ), SubResource( 8 ), SubResource( 9 ), SubResource( 10 ), SubResource( 11 ), SubResource( 12 ), SubResource( 13 ), SubResource( 14 ), SubResource( 15 ), SubResource( 16 ), SubResource( 17 ), SubResource( 18 ), SubResource( 19 ), SubResource( 20 ), SubResource( 21 ), SubResource( 22 ), SubResource( 23 ), SubResource( 24 ) ], @@ -312,16 +253,6 @@ animations = [ { "name": "Death", "speed": 5.0 }, { -"frames": [ SubResource( 25 ), SubResource( 26 ), SubResource( 27 ), SubResource( 28 ), SubResource( 29 ), SubResource( 30 ), SubResource( 31 ), SubResource( 32 ), SubResource( 33 ), SubResource( 34 ), SubResource( 35 ), SubResource( 36 ) ], -"loop": true, -"name": "Walk", -"speed": 5.0 -}, { -"frames": [ SubResource( 37 ), SubResource( 38 ), SubResource( 39 ), SubResource( 40 ), SubResource( 41 ), SubResource( 42 ) ], -"loop": true, -"name": "Idle", -"speed": 5.0 -}, { "frames": [ SubResource( 43 ), SubResource( 44 ), SubResource( 45 ), SubResource( 46 ), SubResource( 47 ), SubResource( 48 ), SubResource( 49 ), SubResource( 50 ), SubResource( 51 ), SubResource( 52 ), SubResource( 53 ), SubResource( 54 ), SubResource( 55 ), SubResource( 56 ), SubResource( 57 ) ], "loop": true, "name": "Attack", @@ -331,74 +262,127 @@ animations = [ { "loop": true, "name": "Hit", "speed": 5.0 +}, { +"frames": [ SubResource( 25 ), SubResource( 26 ), SubResource( 27 ), SubResource( 28 ), SubResource( 29 ), SubResource( 30 ), SubResource( 31 ), SubResource( 32 ), SubResource( 33 ), SubResource( 34 ), SubResource( 35 ), SubResource( 36 ) ], +"loop": true, +"name": "Walk", +"speed": 5.0 +}, { +"frames": [ SubResource( 37 ), SubResource( 38 ), SubResource( 39 ), SubResource( 40 ), SubResource( 41 ), SubResource( 42 ) ], +"loop": true, +"name": "Idle", +"speed": 5.0 } ] +[sub_resource type="CapsuleShape2D" id=64] +radius = 1.5 +height = 3.0 + [sub_resource type="CapsuleShape2D" id=1] -radius = 3.0 +radius = 26.0 height = 2.0 [sub_resource type="CircleShape2D" id=2] -radius = 50.0 +radius = 144.003 -[node name="DemonBoss" type="KinematicBody2D" groups=["enemies"]] -collision_layer = 2 +[sub_resource type="CircleShape2D" id=65] +radius = 42.0 + +[node name="Demon Boss" type="KinematicBody2D" groups=["enemy"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 5 script = ExtResource( 4 ) [node name="AnimatedSprite1" type="AnimatedSprite" parent="."] -position = Vector2( 1, -3 ) +position = Vector2( 2, -15 ) scale = Vector2( 0.5, 0.5 ) frames = SubResource( 63 ) animation = "Idle" +frame = 5 playing = true -[node name="Hitbox" type="CollisionShape2D" parent="."] +[node name="Sprite" type="Sprite" parent="."] visible = false +light_mask = 4 position = Vector2( 0, -3 ) +texture = ExtResource( 7 ) +offset = Vector2( 0, 0.5 ) + +[node name="Collision" type="CollisionShape2D" parent="."] +visible = false +light_mask = 0 +rotation = 1.5708 +shape = SubResource( 64 ) + +[node name="Hitbox" type="Area2D" parent="." groups=["enemy_hitbox_1"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 2 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Hitbox"] +visible = false +light_mask = 0 +position = Vector2( 2, 5 ) shape = SubResource( 1 ) [node name="Player Detector" type="Area2D" parent="."] +light_mask = 0 collision_layer = 0 collision_mask = 2 input_pickable = false monitorable = false [node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector"] -scale = Vector2( 2, 2 ) +light_mask = 0 shape = SubResource( 2 ) -[node name="Player Attack" type="Area2D" parent="."] -visible = false +[node name="Player Detector - Attack" type="Area2D" parent="."] +light_mask = 0 collision_layer = 0 collision_mask = 2 input_pickable = false monitorable = false -[node name="Attack" type="CollisionShape2D" parent="Player Attack"] -position = Vector2( 0, 7 ) -scale = Vector2( 1, 0.75 ) -shape = SubResource( 2 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector - Attack"] +shape = SubResource( 65 ) -[node name="Light2D" type="Light2D" parent="."] +[node name="Player Detector - Attack2" type="Area2D" parent="."] +light_mask = 0 +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector - Attack2"] +visible = false +shape = SubResource( 65 ) + +[node name="Light" type="Light2D" parent="."] visible = false -scale = Vector2( 0.5, 0.5 ) texture = ExtResource( 2 ) +texture_scale = 0.5 color = Color( 0.984314, 0.94902, 0.211765, 0.392157 ) energy = 2.0 range_item_cull_mask = 11 -[node name="Light2DEyes" type="Light2D" parent="."] +[node name="Eyes" type="Light2D" parent="."] visible = false scale = Vector2( 0.1, 0.1 ) texture = ExtResource( 2 ) -offset = Vector2( 5, -40 ) +offset = Vector2( 5, -35 ) range_item_cull_mask = 4 +shadow_item_cull_mask = 0 -[node name="LightOccluder2D" type="LightOccluder2D" parent="."] +[node name="Occluder" type="LightOccluder2D" parent="."] visible = false show_behind_parent = true occluder = ExtResource( 1 ) -[connection signal="area_entered" from="Player Detector" to="." method="_on_player_detector_area_entered"] -[connection signal="area_exited" from="Player Detector" to="." method="_on_player_detector_area_exited"] -[connection signal="area_entered" from="Player Attack" to="." method="_on_Player_Attack_area_entered"] -[connection signal="area_exited" from="Player Attack" to="." method="_on_Player_Attack_area_exited"] +[connection signal="area_entered" from="Hitbox" to="." method="_on_hitbox_area_entered"] +[connection signal="body_entered" from="Player Detector" to="." method="_on_player_detector_body_entered"] +[connection signal="body_exited" from="Player Detector" to="." method="_on_player_detector_body_exited"] +[connection signal="body_entered" from="Player Detector - Attack" to="." method="_on_Player_Detector__Attack_body_entered"] +[connection signal="body_exited" from="Player Detector - Attack" to="." method="_on_Player_Detector__Attack_body_exited"] +[connection signal="body_entered" from="Player Detector - Attack2" to="." method="_on_Player_Detector__Attack_body_entered"] +[connection signal="body_exited" from="Player Detector - Attack2" to="." method="_on_Player_Detector__Attack_body_exited"] diff --git a/Enemies/DemonBoss.gd b/Enemies/DemonBoss.gd deleted file mode 100644 index fea14f9..0000000 --- a/Enemies/DemonBoss.gd +++ /dev/null @@ -1,50 +0,0 @@ -extends KinematicBody2D - -const SPEED: int = 30 - -var player: KinematicBody2D = null -var velocity: Vector2 = Vector2.ZERO - -var status = "walk" - -func _physics_process(_delta: float) -> void: - velocity = Vector2.ZERO - - if player: - velocity = position.direction_to(player.position).normalized() * SPEED - var angle = position.angle_to_point(player.position) - if abs(angle) > PI/2: - $AnimatedSprite1.scale.x = -0.563 - else: - $AnimatedSprite1.scale.x = 0.563 - - velocity = move_and_slide(velocity) - return - - -func _on_player_detector_area_entered(area: Area2D) -> void: - if area.get_parent().name == 'Player': - player = area.get_parent() - $AnimatedSprite1.animation = "Walk" - return - - -func _on_player_detector_area_exited(_area: Area2D): - player = null - $AnimatedSprite1.animation = "Idle" - return - - -func _on_Player_Attack_area_entered(area: Area2D) -> void: - if area.get_parent().name == 'Player': - player = area.get_parent() - $AnimatedSprite1.animation = "Attack" - status = "attack" - return - - -func _on_Player_Attack_area_exited(area: Area2D) -> void: - player = null - if not status == "attack": - $AnimatedSprite1.animation = "Walk" - return diff --git a/Enemies/Flaming Skull.gd b/Enemies/Flaming Skull.gd index 33b597d..40206ff 100644 --- a/Enemies/Flaming Skull.gd +++ b/Enemies/Flaming Skull.gd @@ -4,25 +4,55 @@ const SPEED: int = 50 var player: KinematicBody2D = null var velocity: Vector2 = Vector2.ZERO +var health: int = 2 +var hit: bool = false +var counter: int = 0 func _physics_process(_delta: float) -> void: - velocity = Vector2.ZERO + velocity = Vector2.ZERO - if player: - velocity = position.direction_to(player.position).normalized() * SPEED + if player and position.distance_to(player.position) > 1: + velocity = position.direction_to(player.position).normalized() * SPEED + + + if hit == true: + if counter < 15: + if counter % 5 == 0: + $AnimatedSprite.visible = false + else: + $AnimatedSprite.visible = true + counter += 1 + velocity = Vector2.ZERO + else: + counter = 0 + hit = false + - velocity = move_and_slide(velocity) - return + velocity = move_and_slide(velocity) + return -func _on_player_detector_area_entered(area: Area2D) -> void: - if area.get_parent().name == 'Player': - player = area.get_parent() - - return +func _on_player_detector_body_entered(body: Node) -> void: + if body.is_in_group('player'): + player = body + return -func _on_player_detector_area_exited(_area: Area2D): - player = null - return +func _on_player_detector_body_exited(body: Node) -> void: + if body.is_in_group('player'): + player = null + return + + +func _on_hitbox_area_entered(area: Area2D) -> void: + if area.is_in_group('player_weapon_1'): + health -= 1 + hit = true + elif area.is_in_group('player_weapon_2'): + health -= 2 + hit = true + + if health <= 0: + call_deferred('queue_free') + return diff --git a/Enemies/Flaming Skull.tscn b/Enemies/Flaming Skull.tscn index 8eafcf7..c4560a6 100644 --- a/Enemies/Flaming Skull.tscn +++ b/Enemies/Flaming Skull.tscn @@ -1,22 +1,18 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=10 format=2] -[ext_resource path="res://Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres" type="OccluderPolygon2D" id=1] -[ext_resource path="res://Sprites/Assets/Light.png" type="Texture" id=2] +[ext_resource path="res://Sprites/Enemies/Chasing_Glowing_Ghost.png" type="Texture" id=3] [ext_resource path="res://Enemies/Flaming Skull.gd" type="Script" id=4] [ext_resource path="res://Sprites/Enemies/Flaming_Skull_Design.png" type="Texture" id=5] [sub_resource type="AtlasTexture" id=3] -flags = 4 atlas = ExtResource( 5 ) region = Rect2( 0, 0, 672, 672 ) [sub_resource type="AtlasTexture" id=4] -flags = 4 atlas = ExtResource( 5 ) region = Rect2( 672, 0, 672, 672 ) [sub_resource type="AtlasTexture" id=5] -flags = 4 atlas = ExtResource( 5 ) region = Rect2( 1344, 0, 672, 672 ) @@ -29,27 +25,50 @@ animations = [ { } ] [sub_resource type="CapsuleShape2D" id=1] -radius = 3.0 -height = 2.0 +radius = 5.0 +height = 12.0 [sub_resource type="CircleShape2D" id=2] radius = 50.0 -[node name="Flaming Skull" type="KinematicBody2D" groups=["enemies"]] -collision_layer = 2 +[node name="Flaming Skull" type="KinematicBody2D" groups=["enemy"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 5 script = ExtResource( 4 ) [node name="AnimatedSprite" type="AnimatedSprite" parent="."] -scale = Vector2( 0.0446429, 0.0446429 ) +position = Vector2( 4.76837e-07, -2.38419e-07 ) +scale = Vector2( 0.0517113, 0.0517113 ) frames = SubResource( 6 ) +frame = 2 playing = true +offset = Vector2( 0, 0.5 ) -[node name="Hitbox" type="CollisionShape2D" parent="."] +[node name="Sprite" type="Sprite" parent="."] visible = false +light_mask = 4 position = Vector2( 0, -3 ) +texture = ExtResource( 3 ) +offset = Vector2( 0, 0.5 ) + +[node name="Collision" type="CollisionShape2D" parent="."] +visible = false +light_mask = 0 +rotation = 1.5708 + +[node name="Hitbox" type="Area2D" parent="." groups=["enemy_hitbox_1"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 2 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Hitbox"] +light_mask = 0 +position = Vector2( -1, 1 ) shape = SubResource( 1 ) [node name="Player Detector" type="Area2D" parent="."] +light_mask = 0 collision_layer = 0 collision_mask = 2 input_pickable = false @@ -57,27 +76,9 @@ monitorable = false [node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector"] visible = false +light_mask = 0 shape = SubResource( 2 ) -[node name="Light2D" type="Light2D" parent="."] -visible = false -scale = Vector2( 0.5, 0.5 ) -texture = ExtResource( 2 ) -color = Color( 0.984314, 0.94902, 0.211765, 0.392157 ) -energy = 2.0 -range_item_cull_mask = 11 - -[node name="Light2DEyes" type="Light2D" parent="."] -visible = false -scale = Vector2( 0.1, 0.1 ) -texture = ExtResource( 2 ) -offset = Vector2( 5, -40 ) -range_item_cull_mask = 4 - -[node name="LightOccluder2D" type="LightOccluder2D" parent="."] -visible = false -show_behind_parent = true -occluder = ExtResource( 1 ) - -[connection signal="area_entered" from="Player Detector" to="." method="_on_player_detector_area_entered"] -[connection signal="area_exited" from="Player Detector" to="." method="_on_player_detector_area_exited"] +[connection signal="area_entered" from="Hitbox" to="." method="_on_hitbox_area_entered"] +[connection signal="body_entered" from="Player Detector" to="." method="_on_player_detector_body_entered"] +[connection signal="body_exited" from="Player Detector" to="." method="_on_player_detector_body_exited"] diff --git a/Enemies/Hellhound.gd b/Enemies/Hellhound.gd index 9243484..9707d8b 100644 --- a/Enemies/Hellhound.gd +++ b/Enemies/Hellhound.gd @@ -4,44 +4,71 @@ const SPEED: int = 60 var player: KinematicBody2D = null var velocity: Vector2 = Vector2.ZERO +var health: int = 2 +var hit: bool = false +var counter: int = 0 func _physics_process(_delta: float) -> void: - velocity = Vector2.ZERO + velocity = Vector2.ZERO - if player: - velocity = position.direction_to(player.position).normalized() * SPEED - var angle = position.angle_to_point(player.position) - if abs(angle) > PI/2: - $AnimatedSprite1.scale.x = -0.563 - else: - $AnimatedSprite1.scale.x = 0.563 + if player and position.distance_to(player.position) > 1: + velocity = position.direction_to(player.position).normalized() * SPEED + var angle = position.angle_to_point(player.position) + if abs(angle) > PI/2: + $AnimatedSprite1.scale.x = -0.563 + else: + $AnimatedSprite1.scale.x = 0.563 + + if hit == true: + if counter < 15: + if counter % 5 == 0: + $AnimatedSprite1.visible = false + else: + $AnimatedSprite1.visible = true + counter += 1 + velocity = Vector2.ZERO + else: + counter = 0 + hit = false - velocity = move_and_slide(velocity) - return + velocity = move_and_slide(velocity) + return -func _on_player_detector_area_entered(area: Area2D) -> void: - if area.get_parent().name == 'Player': - player = area.get_parent() - $AnimatedSprite1.animation = 'Running' - return +func _on_player_detector_body_entered(body: Node) -> void: + if body.is_in_group('player'): + player = body + $AnimatedSprite1.animation = 'Running' + return -func _on_player_detector_area_exited(_area: Area2D): - player = null - $AnimatedSprite1.animation = 'Idle' - return +func _on_player_detector_body_exited(body: Node) -> void: + if body.is_in_group('player'): + player = null + $AnimatedSprite1.animation = 'Idle' + return -func _on_Player_Attack_area_entered(area: Area2D) -> void: - if area.get_parent().name == 'Player': - player = area.get_parent() - $AnimatedSprite1.animation = 'Jump' - return +func _on_hitbox_area_entered(area: Area2D) -> void: + if area.is_in_group('player_weapon_1'): + health -= 1 + hit = true + elif area.is_in_group('player_weapon_2'): + health -= 2 + hit = true + + if health <= 0: + call_deferred('queue_free') + return + +func _on_Player_Detector__Attack_body_entered(body: Node) -> void: + if body.is_in_group('player'): + player = body + $AnimatedSprite1.animation = 'Jump' -func _on_Player_Attack_area_exited(area: Area2D) -> void: - player = null - $AnimatedSprite1.animation = 'Running' - return +func _on_Player_Detector__Attack_body_exited(body: Node) -> void: + if body.is_in_group('player'): + player = body + $AnimatedSprite1.animation = 'Running' diff --git a/Enemies/Hellhound.tscn b/Enemies/Hellhound.tscn index b3eb972..d0486c8 100644 --- a/Enemies/Hellhound.tscn +++ b/Enemies/Hellhound.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=27 format=2] +[gd_scene load_steps=30 format=2] [ext_resource path="res://Resources/Level_5_Enemy_Glowing_Ghost_Occluder.tres" type="OccluderPolygon2D" id=1] [ext_resource path="res://Sprites/Assets/Light.png" type="Texture" id=2] @@ -6,99 +6,78 @@ [ext_resource path="res://Enemies/Hellhound.gd" type="Script" id=4] [ext_resource path="res://Sprites/Enemies/Hell_Hound_Jump.png" type="Texture" id=5] [ext_resource path="res://Sprites/Enemies/Hell_Hound_Run.png" type="Texture" id=6] - -[sub_resource type="AtlasTexture" id=9] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 0, 0, 64, 32 ) - -[sub_resource type="AtlasTexture" id=10] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 64, 0, 64, 32 ) - -[sub_resource type="AtlasTexture" id=11] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 128, 0, 64, 32 ) - -[sub_resource type="AtlasTexture" id=12] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 192, 0, 64, 32 ) - -[sub_resource type="AtlasTexture" id=13] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 256, 0, 64, 32 ) - -[sub_resource type="AtlasTexture" id=14] -flags = 4 -atlas = ExtResource( 3 ) -region = Rect2( 320, 0, 64, 32 ) +[ext_resource path="res://Sprites/Enemies/Chasing_Glowing_Ghost.png" type="Texture" id=7] [sub_resource type="AtlasTexture" id=3] -flags = 4 atlas = ExtResource( 5 ) region = Rect2( 0, 0, 65, 48 ) [sub_resource type="AtlasTexture" id=4] -flags = 4 atlas = ExtResource( 5 ) region = Rect2( 65, 0, 65, 48 ) [sub_resource type="AtlasTexture" id=5] -flags = 4 atlas = ExtResource( 5 ) region = Rect2( 130, 0, 65, 48 ) [sub_resource type="AtlasTexture" id=6] -flags = 4 atlas = ExtResource( 5 ) region = Rect2( 195, 0, 65, 48 ) [sub_resource type="AtlasTexture" id=7] -flags = 4 atlas = ExtResource( 5 ) region = Rect2( 260, 0, 65, 48 ) [sub_resource type="AtlasTexture" id=8] -flags = 4 atlas = ExtResource( 5 ) region = Rect2( 325, 0, 65, 48 ) [sub_resource type="AtlasTexture" id=15] -flags = 4 atlas = ExtResource( 6 ) region = Rect2( 0, 0, 67, 32 ) [sub_resource type="AtlasTexture" id=16] -flags = 4 atlas = ExtResource( 6 ) region = Rect2( 67, 0, 67, 32 ) [sub_resource type="AtlasTexture" id=17] -flags = 4 atlas = ExtResource( 6 ) region = Rect2( 134, 0, 67, 32 ) [sub_resource type="AtlasTexture" id=18] -flags = 4 atlas = ExtResource( 6 ) region = Rect2( 201, 0, 67, 32 ) [sub_resource type="AtlasTexture" id=19] -flags = 4 atlas = ExtResource( 6 ) region = Rect2( 268, 0, 67, 32 ) +[sub_resource type="AtlasTexture" id=9] +atlas = ExtResource( 3 ) +region = Rect2( 0, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=10] +atlas = ExtResource( 3 ) +region = Rect2( 64, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=11] +atlas = ExtResource( 3 ) +region = Rect2( 128, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=12] +atlas = ExtResource( 3 ) +region = Rect2( 192, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=13] +atlas = ExtResource( 3 ) +region = Rect2( 256, 0, 64, 32 ) + +[sub_resource type="AtlasTexture" id=14] +atlas = ExtResource( 3 ) +region = Rect2( 320, 0, 64, 32 ) + [sub_resource type="SpriteFrames" id=20] animations = [ { -"frames": [ SubResource( 9 ), SubResource( 10 ), SubResource( 11 ), SubResource( 12 ), SubResource( 13 ), SubResource( 14 ) ], -"loop": true, -"name": "Idle", -"speed": 3.0 -}, { "frames": [ SubResource( 3 ), SubResource( 4 ), SubResource( 5 ), SubResource( 6 ), SubResource( 7 ), SubResource( 8 ) ], "loop": true, "name": "Jump", @@ -108,33 +87,67 @@ animations = [ { "loop": true, "name": "Running", "speed": 5.0 +}, { +"frames": [ SubResource( 9 ), SubResource( 10 ), SubResource( 11 ), SubResource( 12 ), SubResource( 13 ), SubResource( 14 ) ], +"loop": true, +"name": "Idle", +"speed": 3.0 } ] +[sub_resource type="CapsuleShape2D" id=21] +radius = 1.5 +height = 3.0 + [sub_resource type="CapsuleShape2D" id=1] -radius = 3.0 +radius = 8.0 height = 2.0 [sub_resource type="CircleShape2D" id=2] -radius = 50.0 +radius = 82.0061 -[node name="Hellhound" type="KinematicBody2D" groups=["enemies"]] -collision_layer = 2 +[sub_resource type="CircleShape2D" id=22] +radius = 25.02 + +[node name="Hellhound" type="KinematicBody2D" groups=["enemy"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 5 script = ExtResource( 4 ) [node name="AnimatedSprite1" type="AnimatedSprite" parent="."] +light_mask = 0 position = Vector2( 1, -3 ) scale = Vector2( 0.5625, 0.5625 ) frames = SubResource( 20 ) animation = "Idle" -frame = 5 +frame = 3 playing = true -[node name="Hitbox" type="CollisionShape2D" parent="."] +[node name="Sprite" type="Sprite" parent="."] visible = false +light_mask = 4 position = Vector2( 0, -3 ) +texture = ExtResource( 7 ) +offset = Vector2( 0, 0.5 ) + +[node name="Collision" type="CollisionShape2D" parent="."] +visible = false +light_mask = 0 +rotation = 1.5708 +shape = SubResource( 21 ) + +[node name="Hitbox" type="Area2D" parent="." groups=["enemy_hitbox_1"]] +light_mask = 0 +collision_layer = 4 +collision_mask = 2 + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Hitbox"] +visible = false +light_mask = 0 shape = SubResource( 1 ) [node name="Player Detector" type="Area2D" parent="."] +light_mask = 0 collision_layer = 0 collision_mask = 2 input_pickable = false @@ -142,42 +155,54 @@ monitorable = false [node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector"] visible = false -scale = Vector2( 1.5, 1.5 ) +light_mask = 0 shape = SubResource( 2 ) -[node name="Player Attack" type="Area2D" parent="."] -visible = false +[node name="Player Detector - Attack" type="Area2D" parent="."] +light_mask = 0 collision_layer = 0 collision_mask = 2 input_pickable = false monitorable = false -[node name="Attack" type="CollisionShape2D" parent="Player Attack"] -visible = false -scale = Vector2( 0.5, 0.5 ) -shape = SubResource( 2 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector - Attack"] +shape = SubResource( 22 ) -[node name="Light2D" type="Light2D" parent="."] +[node name="Player Detector - Attack2" type="Area2D" parent="."] +light_mask = 0 +collision_layer = 0 +collision_mask = 2 +input_pickable = false +monitorable = false + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player Detector - Attack2"] +shape = SubResource( 22 ) + +[node name="Light" type="Light2D" parent="."] visible = false -scale = Vector2( 0.5, 0.5 ) texture = ExtResource( 2 ) +texture_scale = 0.5 color = Color( 0.984314, 0.94902, 0.211765, 0.392157 ) energy = 2.0 range_item_cull_mask = 11 -[node name="Light2DEyes" type="Light2D" parent="."] +[node name="Eyes" type="Light2D" parent="."] visible = false scale = Vector2( 0.1, 0.1 ) texture = ExtResource( 2 ) -offset = Vector2( 5, -40 ) +offset = Vector2( 5, -35 ) range_item_cull_mask = 4 +shadow_item_cull_mask = 0 -[node name="LightOccluder2D" type="LightOccluder2D" parent="."] +[node name="Occluder" type="LightOccluder2D" parent="."] visible = false show_behind_parent = true occluder = ExtResource( 1 ) -[connection signal="area_entered" from="Player Detector" to="." method="_on_player_detector_area_entered"] -[connection signal="area_exited" from="Player Detector" to="." method="_on_player_detector_area_exited"] -[connection signal="area_entered" from="Player Attack" to="." method="_on_Player_Attack_area_entered"] -[connection signal="area_exited" from="Player Attack" to="." method="_on_Player_Attack_area_exited"] +[connection signal="area_entered" from="Hitbox" to="." method="_on_hitbox_area_entered"] +[connection signal="body_entered" from="Player Detector" to="." method="_on_player_detector_body_entered"] +[connection signal="body_exited" from="Player Detector" to="." method="_on_player_detector_body_exited"] +[connection signal="body_entered" from="Player Detector - Attack" to="." method="_on_Player_Detector__Attack_body_entered"] +[connection signal="body_exited" from="Player Detector - Attack" to="." method="_on_Player_Detector__Attack_body_exited"] +[connection signal="body_entered" from="Player Detector - Attack2" to="." method="_on_Player_Detector__Attack_body_entered"] +[connection signal="body_exited" from="Player Detector - Attack2" to="." method="_on_Player_Detector__Attack_body_exited"] diff --git a/Levels/Hub World.gd b/Levels/Hub World.gd index 06b26e7..5c4d9ab 100644 --- a/Levels/Hub World.gd +++ b/Levels/Hub World.gd @@ -2,5 +2,5 @@ extends Node2D func _ready() -> void: - $YSort/Player.load_hud($HUD) - return + $YSort/Player.load_hud($HUD) + return diff --git a/Levels/Interactables/Gem.gd b/Levels/Interactables/Gem.gd index 1848acc..13267fc 100644 --- a/Levels/Interactables/Gem.gd +++ b/Levels/Interactables/Gem.gd @@ -8,7 +8,7 @@ extends Node2D # Called when the node enters the scene tree for the first time. func _ready() -> void: - pass # Replace with function body. + pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. @@ -17,8 +17,8 @@ func _ready() -> void: func _on_AnimationPlayer_animation_finished(anim_name: String) -> void: - $GemSprite.visible = false + $GemSprite.visible = false func _on_AnimationPlayer_animation_started(anim_name: String) -> void: - $GemSprite.visible = true + $GemSprite.visible = true diff --git a/Levels/Interactables/Gem.tscn b/Levels/Interactables/Gem.tscn index 939020e..0123829 100644 --- a/Levels/Interactables/Gem.tscn +++ b/Levels/Interactables/Gem.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=4 format=2] -[ext_resource path="res://Sprites/Assets/Resources_Basic.png" type="Texture" id=1] +[ext_resource path="res://Sprites/Assets/resources_basic.png" type="Texture" id=1] [ext_resource path="res://Levels/Interactables/Gem.gd" type="Script" id=2] [sub_resource type="Animation" id=3] diff --git a/Levels/Level 4.gd b/Levels/Level 4.gd index 2bb0e4d..2e56162 100644 --- a/Levels/Level 4.gd +++ b/Levels/Level 4.gd @@ -3,22 +3,22 @@ extends Node2D var gems: int = 4 func _ready() -> void: - #$YSort/Player.position = get_viewport_rect().size / 2 - $YSort/Player.load_hud($HUD) - return + #$YSort/Player.position = get_viewport_rect().size / 2 + $YSort/Player.load_hud($HUD) + return func _on_TreasureChest_gem_collected() -> void: - gems -= 1 + gems -= 1 - if gems == 0: - $YSort/Items/Door/doorClosed.visible = false - $YSort/Items/Door/doorOpened.visible = true - $DoorCollision.layers = 5 + if gems == 0: + $YSort/Items/Door/doorClosed.visible = false + $YSort/Items/Door/doorOpened.visible = true + $DoorCollision.layers = 5 func _on_NextArea_area_entered(area: Area2D) -> void: - if area.get_parent().name == 'Player': - $YSort/Player.position.x = 195 - $YSort/Player.position.y = -335 + if area.get_parent().name == 'Player': + $YSort/Player.position.x = 195 + $YSort/Player.position.y = -335 diff --git a/Levels/Level 4.tscn b/Levels/Level 4.tscn index 507aa64..72af611 100644 --- a/Levels/Level 4.tscn +++ b/Levels/Level 4.tscn @@ -1,18 +1,18 @@ [gd_scene load_steps=31 format=2] -[ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_12.png" type="Texture" id=1] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_12.png" type="Texture" id=1] [ext_resource path="res://Enemies/Hellhound.tscn" type="PackedScene" id=2] [ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_03.png" type="Texture" id=3] [ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_09.png" type="Texture" id=4] [ext_resource path="res://Levels/Objects/Door.tscn" type="PackedScene" id=5] -[ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_10.png" type="Texture" id=6] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_10.png" type="Texture" id=6] [ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_04.png" type="Texture" id=7] [ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_06.png" type="Texture" id=8] [ext_resource path="res://Levels/Level 4.gd" type="Script" id=9] [ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_01.png" type="Texture" id=10] -[ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_13.png" type="Texture" id=11] -[ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_14.png" type="Texture" id=12] -[ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_11.png" type="Texture" id=13] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_13.png" type="Texture" id=11] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_14.png" type="Texture" id=12] +[ext_resource path="res://Sprites/Levels/Environment/fire_column_medium_11.png" type="Texture" id=13] [ext_resource path="res://Sprites/Levels/Environment/Fire_Column_Medium_08.png" type="Texture" id=14] [ext_resource path="res://Resources/Level_4_Tileset.tres" type="TileSet" id=15] [ext_resource path="res://Levels/Interactables/Treasure Chest.tscn" type="PackedScene" id=16] @@ -24,7 +24,7 @@ [ext_resource path="res://GUI/Pause Screen.tscn" type="PackedScene" id=22] [ext_resource path="res://GUI/HUD.tscn" type="PackedScene" id=23] [ext_resource path="res://Enemies/Flaming Skull.tscn" type="PackedScene" id=24] -[ext_resource path="res://Enemies/DemonBoss.tscn" type="PackedScene" id=26] +[ext_resource path="res://Enemies/Demon Boss.tscn" type="PackedScene" id=26] [sub_resource type="SpriteFrames" id=1] animations = [ { @@ -34,10 +34,10 @@ animations = [ { "speed": 10.0 } ] -[sub_resource type="ConvexPolygonShape2D" id=2] +[sub_resource type="ConvexPolygonShape2D" id=10] points = PoolVector2Array( 16, 16, 0, 16, 0, 0, 16, 0 ) -[sub_resource type="TileSet" id=3] +[sub_resource type="TileSet" id=9] 0/name = "transparent16x16.png 0" 0/texture = ExtResource( 19 ) 0/tex_offset = Vector2( 0, 0 ) @@ -48,22 +48,22 @@ points = PoolVector2Array( 16, 16, 0, 16, 0, 0, 16, 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 = SubResource( 2 ) +0/shape = SubResource( 10 ) 0/shape_one_way = false 0/shape_one_way_margin = 1.0 0/shapes = [ { "autotile_coord": Vector2( 0, 0 ), "one_way": false, "one_way_margin": 1.0, -"shape": SubResource( 2 ), +"shape": SubResource( 10 ), "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) } ] 0/z_index = 0 -[sub_resource type="RectangleShape2D" id=4] +[sub_resource type="RectangleShape2D" id=11] extents = Vector2( 39, 10 ) -[sub_resource type="RectangleShape2D" id=5] +[sub_resource type="RectangleShape2D" id=12] extents = Vector2( 26.5, 10 ) [node name="World" type="Node2D"] @@ -74,32 +74,33 @@ tile_set = ExtResource( 15 ) cell_size = Vector2( 16, 16 ) cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 ) format = 1 -tile_data = PoolIntArray( -851986, 0, 1, -851985, 0, 2, -851984, 0, 2, -851983, 0, 2, -851982, 0, 2, -851981, 0, 2, -851980, 0, 2, -851979, 0, 2, -851978, 0, 2, -851977, 0, 2, -851976, 0, 2, -851975, 0, 2, -851974, 0, 2, -851973, 0, 2, -851972, 0, 2, -851971, 0, 2, -851970, 0, 2, -851969, 0, 2, -917504, 0, 2, -917503, 0, 2, -917502, 0, 2, -917501, 0, 2, -917500, 0, 2, -917499, 0, 2, -917498, 0, 2, -917497, 0, 2, -917496, 0, 2, -917495, 0, 2, -917494, 0, 2, -917493, 0, 2, -917492, 0, 2, -917491, 0, 2, -917490, 0, 2, -917489, 0, 2, -917488, 0, 2, -917487, 0, 2, -917486, 0, 2, -917485, 0, 2, -917484, 0, 2, -917483, 0, 2, -917482, 0, 2, -917481, 0, 2, -917480, 0, 2, -917479, 0, 2, -917478, 0, 2, -917477, 0, 2, -917476, 0, 2, -917475, 0, 2, -917474, 0, 2, -917473, 0, 2, -917472, 0, 2, -917471, 0, 2, -917470, 0, 2, -917469, 0, 2, -917468, 0, 2, -917467, 0, 3, -786450, 0, 65537, -786449, 0, 65538, -786448, 0, 65538, -786447, 0, 65538, -786446, 0, 65538, -786445, 0, 65538, -786444, 0, 65538, -786443, 0, 65538, -786442, 0, 65538, -786441, 0, 65538, -786440, 0, 65538, -786439, 0, 65538, -786438, 0, 65538, -786437, 0, 65538, -786436, 0, 65538, -786435, 0, 65538, -786434, 0, 65538, -786433, 0, 65538, -851968, 0, 65538, -851967, 0, 65538, -851966, 0, 65538, -851965, 0, 65538, -851964, 0, 65538, -851963, 0, 65538, -851962, 0, 65538, -851961, 0, 65538, -851960, 0, 65538, -851959, 0, 65538, -851958, 0, 65538, -851957, 0, 65538, -851956, 0, 65538, -851955, 0, 65538, -851954, 0, 65538, -851953, 0, 65538, -851952, 0, 65538, -851951, 0, 65538, -851950, 0, 65538, -851949, 0, 65538, -851948, 0, 65538, -851947, 0, 65538, -851946, 0, 65538, -851945, 0, 65538, -851944, 0, 65538, -851943, 0, 65538, -851942, 0, 65538, -851941, 0, 65538, -851940, 0, 65538, -851939, 0, 65538, -851938, 0, 65538, -851937, 0, 65538, -851936, 0, 65538, -851935, 0, 65538, -851934, 0, 65538, -851933, 0, 65538, -851932, 0, 65538, -851931, 0, 65539, -720914, 0, 65537, -720913, 0, 65538, -720912, 0, 65538, -720911, 0, 65538, -720910, 0, 65538, -720909, 0, 65538, -720908, 0, 65538, -720907, 0, 65538, -720906, 0, 65538, -720905, 0, 65538, -720904, 0, 65538, -720903, 0, 65538, -720902, 0, 65538, -720901, 0, 65538, -720900, 0, 65538, -720899, 0, 65538, -720898, 0, 65538, -720897, 0, 65538, -786432, 0, 65538, -786431, 0, 65538, -786430, 0, 65538, -786429, 0, 65538, -786428, 0, 65538, -786427, 0, 65538, -786426, 0, 65538, -786425, 0, 65538, -786424, 0, 65538, -786423, 0, 65538, -786422, 0, 65538, -786421, 0, 65538, -786420, 0, 65538, -786419, 0, 65538, -786418, 0, 65538, -786417, 0, 65538, -786416, 0, 65538, -786415, 0, 65538, -786414, 0, 65538, -786413, 0, 65538, -786412, 0, 65538, -786411, 0, 65538, -786410, 0, 65538, -786409, 0, 65538, -786408, 0, 65538, -786407, 0, 65538, -786406, 0, 65538, -786405, 0, 65538, -786404, 0, 65538, -786403, 0, 65538, -786402, 0, 65538, -786401, 0, 65538, -786400, 0, 65538, -786399, 0, 65538, -786398, 0, 65538, -786397, 0, 65538, -786396, 0, 65538, -786395, 0, 65539, -655378, 0, 65537, -655377, 0, 65538, -655376, 0, 65538, -655375, 0, 65538, -655374, 0, 65538, -655373, 0, 65538, -655372, 0, 65538, -655371, 0, 65538, -655370, 0, 65538, -655369, 0, 65538, -655368, 0, 65538, -655367, 0, 65538, -655366, 0, 65538, -655365, 0, 65538, -655364, 0, 65538, -655363, 0, 65538, -655362, 0, 65538, -655361, 0, 65538, -720896, 0, 65538, -720895, 0, 65538, -720894, 0, 65538, -720893, 0, 65538, -720892, 0, 65538, -720891, 0, 65538, -720890, 0, 65538, -720889, 0, 65538, -720888, 0, 65538, -720887, 0, 65538, -720886, 0, 65538, -720885, 0, 65538, -720884, 0, 65538, -720883, 0, 65538, -720882, 0, 65538, -720881, 0, 65538, -720880, 0, 65538, -720879, 0, 65538, -720878, 0, 65538, -720877, 0, 65538, -720876, 0, 65538, -720875, 0, 65538, -720874, 0, 65538, -720873, 0, 65538, -720872, 0, 65538, -720871, 0, 65538, -720870, 0, 65538, -720869, 0, 65538, -720868, 0, 65538, -720867, 0, 65538, -720866, 0, 65538, -720865, 0, 65538, -720864, 0, 65538, -720863, 0, 65538, -720862, 0, 65538, -720861, 0, 65538, -720860, 0, 65538, -720859, 0, 65539, -589842, 0, 65537, -589841, 0, 65538, -589840, 0, 65538, -589839, 0, 65538, -589838, 0, 65538, -589837, 0, 65538, -589836, 0, 65538, -589835, 0, 65538, -589834, 0, 65538, -589833, 0, 65538, -589832, 0, 65538, -589831, 0, 65538, -589830, 0, 65538, -589829, 0, 65538, -589828, 0, 65538, -589827, 0, 65538, -589826, 0, 65538, -589825, 0, 65538, -655360, 0, 65538, -655359, 0, 65538, -655358, 0, 65538, -655357, 0, 65538, -655356, 0, 65538, -655355, 0, 65538, -655354, 0, 65538, -655353, 0, 65538, -655352, 0, 65538, -655351, 0, 65538, -655350, 0, 65538, -655349, 0, 65538, -655348, 0, 65538, -655347, 0, 65538, -655346, 0, 65538, -655345, 0, 65538, -655344, 0, 65538, -655343, 0, 65538, -655342, 0, 65538, -655341, 0, 65538, -655340, 0, 65538, -655339, 0, 65538, -655338, 0, 65538, -655337, 0, 65538, -655336, 0, 65538, -655335, 0, 65538, -655334, 0, 65538, -655333, 0, 65538, -655332, 0, 65538, -655331, 0, 65538, -655330, 0, 65538, -655329, 0, 65538, -655328, 0, 65538, -655327, 0, 65538, -655326, 0, 65538, -655325, 0, 65538, -655324, 0, 65538, -655323, 0, 65539, -524306, 0, 65537, -524305, 0, 65538, -524304, 0, 65538, -524303, 0, 65538, -524302, 0, 65538, -524301, 0, 65538, -524300, 0, 65538, -524299, 0, 65538, -524298, 0, 65538, -524297, 0, 65538, -524296, 0, 65538, -524295, 0, 65538, -524294, 0, 65538, -524293, 0, 65538, -524292, 0, 65538, -524291, 0, 65538, -524290, 0, 65538, -524289, 0, 65538, -589824, 0, 65538, -589823, 0, 65538, -589822, 0, 65538, -589821, 0, 65538, -589820, 0, 65538, -589819, 0, 65538, -589818, 0, 65538, -589817, 0, 65538, -589816, 0, 65538, -589815, 0, 65538, -589814, 0, 65538, -589813, 0, 65538, -589812, 0, 65538, -589811, 0, 65538, -589810, 0, 65538, -589809, 0, 65538, -589808, 0, 65538, -589807, 0, 65538, -589806, 0, 65538, -589805, 0, 65538, -589804, 0, 65538, -589803, 0, 65538, -589802, 0, 65538, -589801, 0, 65538, -589800, 0, 65538, -589799, 0, 65538, -589798, 0, 65538, -589797, 0, 65538, -589796, 0, 65538, -589795, 0, 65538, -589794, 0, 65538, -589793, 0, 65538, -589792, 0, 65538, -589791, 0, 65538, -589790, 0, 65538, -589789, 0, 65538, -589788, 0, 65538, -589787, 0, 65539, -458770, 0, 65537, -458769, 0, 65538, -458768, 0, 65538, -458767, 0, 65538, -458766, 0, 65538, -458765, 0, 65538, -458764, 0, 65538, -458763, 0, 65538, -458762, 0, 65538, -458761, 0, 65538, -458760, 0, 65538, -458759, 0, 65538, -458758, 0, 65538, -458757, 0, 65538, -458756, 0, 65538, -458755, 0, 65538, -458754, 0, 65538, -458753, 0, 65538, -524288, 0, 65538, -524287, 0, 65538, -524286, 0, 65538, -524285, 0, 65538, -524284, 0, 65538, -524283, 0, 65538, -524282, 0, 65538, -524281, 0, 65538, -524280, 0, 65538, -524279, 0, 65538, -524278, 0, 65538, -524277, 0, 65538, -524276, 0, 65538, -524275, 0, 65538, -524274, 0, 65538, -524273, 0, 65538, -524272, 0, 65538, -524271, 0, 65538, -524270, 0, 65538, -524269, 0, 65538, -524268, 0, 65538, -524267, 0, 65538, -524266, 0, 65538, -524265, 0, 65538, -524264, 0, 65538, -524263, 0, 65538, -524262, 0, 65538, -524261, 0, 65538, -524260, 0, 65538, -524259, 0, 65538, -524258, 0, 65538, -524257, 0, 65538, -524256, 0, 65538, -524255, 0, 65538, -524254, 0, 65538, -524253, 0, 65538, -524252, 0, 65538, -524251, 0, 65539, -393234, 0, 65537, -393233, 0, 65538, -393232, 0, 65538, -393231, 0, 65538, -393230, 0, 65538, -393229, 0, 65538, -393228, 0, 65538, -393227, 0, 65538, -393226, 0, 65538, -393225, 0, 65538, -393224, 0, 65538, -393223, 0, 65538, -393222, 0, 65538, -393221, 0, 65538, -393220, 0, 65538, -393219, 0, 65538, -393218, 0, 65538, -393217, 0, 65538, -458752, 0, 65538, -458751, 0, 65538, -458750, 0, 65538, -458749, 0, 65538, -458748, 0, 65538, -458747, 0, 65538, -458746, 0, 65538, -458745, 0, 65538, -458744, 0, 65538, -458743, 0, 65538, -458742, 0, 65538, -458741, 0, 65538, -458740, 0, 65538, -458739, 0, 65538, -458738, 0, 65538, -458737, 0, 65538, -458736, 0, 65538, -458735, 0, 65538, -458734, 0, 65538, -458733, 0, 65538, -458732, 0, 65538, -458731, 0, 65538, -458730, 0, 65538, -458729, 0, 65538, -458728, 0, 65538, -458727, 0, 65538, -458726, 0, 65538, -458725, 0, 65538, -458724, 0, 65538, -458723, 0, 65538, -458722, 0, 65538, -458721, 0, 65538, -458720, 0, 65538, -458719, 0, 65538, -458718, 0, 65538, -458717, 0, 65538, -458716, 0, 65538, -458715, 0, 65539, -327698, 0, 65537, -327697, 0, 65538, -327696, 0, 65538, -327695, 0, 65538, -327694, 0, 65538, -327693, 0, 65538, -327692, 0, 65538, -327691, 0, 65538, -327690, 0, 65538, -327689, 0, 65538, -327688, 0, 65538, -327687, 0, 65538, -327686, 0, 65538, -327685, 0, 65538, -327684, 0, 65538, -327683, 0, 65538, -327682, 0, 65538, -327681, 0, 65538, -393216, 0, 65538, -393215, 0, 65538, -393214, 0, 65538, -393213, 0, 65538, -393212, 0, 65538, -393211, 0, 65538, -393210, 0, 65538, -393209, 0, 65538, -393208, 0, 65538, -393207, 0, 65538, -393206, 0, 65538, -393205, 0, 65538, -393204, 0, 65538, -393203, 0, 65538, -393202, 0, 65538, -393201, 0, 65538, -393200, 0, 65538, -393199, 0, 65538, -393198, 0, 65538, -393197, 0, 65538, -393196, 0, 65538, -393195, 0, 65538, -393194, 0, 65538, -393193, 0, 65538, -393192, 0, 65538, -393191, 0, 65538, -393190, 0, 65538, -393189, 0, 65538, -393188, 0, 65538, -393187, 0, 65538, -393186, 0, 65538, -393185, 0, 65538, -393184, 0, 65538, -393183, 0, 65538, -393182, 0, 65538, -393181, 0, 65538, -393180, 0, 65538, -393179, 0, 65539, -262162, 0, 65537, -262161, 0, 65538, -262160, 0, 65538, -262159, 0, 65538, -262158, 0, 65538, -262157, 0, 65538, -262156, 0, 65538, -262155, 0, 65538, -262154, 0, 65538, -262153, 0, 65538, -262152, 0, 65538, -262151, 0, 65538, -262150, 0, 65538, -262149, 0, 65538, -262148, 0, 65538, -262147, 0, 65538, -262146, 0, 65538, -262145, 0, 65538, -327680, 0, 65538, -327679, 0, 65538, -327678, 0, 65538, -327677, 0, 65538, -327676, 0, 65538, -327675, 0, 65538, -327674, 0, 65538, -327673, 0, 65538, -327672, 0, 65538, -327671, 0, 65538, -327670, 0, 65538, -327669, 0, 65538, -327668, 0, 65538, -327667, 0, 65538, -327666, 0, 65538, -327665, 0, 65538, -327664, 0, 65538, -327663, 0, 65538, -327662, 0, 65538, -327661, 0, 65538, -327660, 0, 65538, -327659, 0, 65538, -327658, 0, 65538, -327657, 0, 65538, -327656, 0, 65538, -327655, 0, 65538, -327654, 0, 65538, -327653, 0, 65538, -327652, 0, 65538, -327651, 0, 65538, -327650, 0, 65538, -327649, 0, 65538, -327648, 0, 65538, -327647, 0, 65538, -327646, 0, 65538, -327645, 0, 65538, -327644, 0, 65538, -327643, 0, 65539, -196626, 0, 65537, -196625, 0, 65538, -196624, 0, 65538, -196623, 0, 65538, -196622, 0, 65538, -196621, 0, 65538, -196620, 0, 65538, -196619, 0, 65538, -196618, 0, 65538, -196617, 0, 65538, -196616, 0, 65538, -196615, 0, 65538, -196614, 0, 65538, -196613, 0, 65538, -196612, 0, 65538, -196611, 0, 65538, -196610, 0, 65538, -196609, 0, 65538, -262144, 0, 65538, -262143, 0, 65538, -262142, 0, 65538, -262141, 0, 65538, -262140, 0, 65538, -262139, 0, 65538, -262138, 0, 65538, -262137, 0, 65538, -262136, 0, 65538, -262135, 0, 65538, -262134, 0, 65538, -262133, 0, 65538, -262132, 0, 65538, -262131, 0, 65538, -262130, 0, 65538, -262129, 0, 65538, -262128, 0, 65538, -262127, 0, 65538, -262126, 0, 65538, -262125, 0, 65538, -262124, 0, 65538, -262123, 0, 65538, -262122, 0, 65538, -262121, 0, 65538, -262120, 0, 65538, -262119, 0, 65538, -262118, 0, 65538, -262117, 0, 65538, -262116, 0, 65538, -262115, 0, 65538, -262114, 0, 65538, -262113, 0, 65538, -262112, 0, 65538, -262111, 0, 65538, -262110, 0, 65538, -262109, 0, 65538, -262108, 0, 65538, -262107, 0, 65539, -131090, 0, 65537, -131089, 0, 65538, -131088, 0, 65538, -131087, 0, 65538, -131086, 0, 65538, -131085, 0, 65538, -131084, 0, 65538, -131083, 0, 65538, -131082, 0, 65538, -131081, 0, 65538, -131080, 0, 65538, -131079, 0, 65538, -131078, 0, 65538, -131077, 0, 65538, -131076, 0, 65538, -131075, 0, 65538, -131074, 0, 65538, -131073, 0, 65538, -196608, 0, 65538, -196607, 0, 65538, -196606, 0, 65538, -196605, 0, 65538, -196604, 0, 65538, -196603, 0, 65538, -196602, 0, 65538, -196601, 0, 65538, -196600, 0, 65538, -196599, 0, 65538, -196598, 0, 65542, -196597, 0, 131074, -196596, 0, 131074, -196595, 0, 131074, -196594, 0, 65543, -196593, 0, 65538, -196592, 0, 65538, -196591, 0, 65538, -196590, 0, 65538, -196589, 0, 65538, -196588, 0, 65538, -196587, 0, 65538, -196586, 0, 65538, -196585, 0, 65538, -196584, 0, 65538, -196583, 0, 65538, -196582, 0, 65538, -196581, 0, 65538, -196580, 0, 65538, -196579, 0, 65538, -196578, 0, 65538, -196577, 0, 65538, -196576, 0, 65538, -196575, 0, 65538, -196574, 0, 65538, -196573, 0, 65538, -196572, 0, 65538, -196571, 0, 65539, -65554, 0, 65537, -65553, 0, 65538, -65552, 0, 65538, -65551, 0, 65538, -65550, 0, 65538, -65549, 0, 65538, -65548, 0, 65538, -65547, 0, 65538, -65546, 0, 65538, -65545, 0, 65538, -65544, 0, 65538, -65543, 0, 65538, -65542, 0, 65538, -65541, 0, 65538, -65540, 0, 65538, -65539, 0, 65538, -65538, 0, 65538, -65537, 0, 65538, -131072, 0, 65538, -131071, 0, 65538, -131070, 0, 65538, -131069, 0, 65538, -131068, 0, 65538, -131067, 0, 65538, -131066, 0, 65538, -131065, 0, 65538, -131064, 0, 65538, -131063, 0, 65538, -131062, 0, 65539, -131058, 0, 65537, -131057, 0, 65538, -131056, 0, 65538, -131055, 0, 65538, -131054, 0, 65538, -131053, 0, 65538, -131052, 0, 65538, -131051, 0, 65538, -131050, 0, 65538, -131049, 0, 65538, -131048, 0, 65538, -131047, 0, 65538, -131046, 0, 65538, -131045, 0, 65538, -131044, 0, 65538, -131043, 0, 65538, -131042, 0, 65538, -131041, 0, 65538, -131040, 0, 65538, -131039, 0, 65538, -131038, 0, 65538, -131037, 0, 65538, -131036, 0, 65538, -131035, 0, 65539, -18, 0, 65537, -17, 0, 65538, -16, 0, 65538, -15, 0, 65538, -14, 0, 65538, -13, 0, 65538, -12, 0, 65538, -11, 0, 65538, -10, 0, 65538, -9, 0, 65538, -8, 0, 65538, -7, 0, 65538, -6, 0, 65538, -5, 0, 65538, -4, 0, 65538, -3, 0, 65538, -2, 0, 65538, -1, 0, 65538, -65536, 0, 65538, -65535, 0, 65538, -65534, 0, 65538, -65533, 0, 65538, -65532, 0, 65538, -65531, 0, 65538, -65530, 0, 65538, -65529, 0, 65538, -65528, 0, 65538, -65527, 0, 65538, -65526, 0, 65539, -65522, 0, 65537, -65521, 0, 65538, -65520, 0, 65538, -65519, 0, 65538, -65518, 0, 65538, -65517, 0, 65538, -65516, 0, 65538, -65515, 0, 65538, -65514, 0, 65538, -65513, 0, 65538, -65512, 0, 65538, -65511, 0, 65538, -65510, 0, 65538, -65509, 0, 65538, -65508, 0, 65538, -65507, 0, 65538, -65506, 0, 65538, -65505, 0, 65538, -65504, 0, 65538, -65503, 0, 65538, -65502, 0, 65538, -65501, 0, 65538, -65500, 0, 65538, -65499, 0, 65539, 65518, 0, 65537, 65519, 0, 65538, 65520, 0, 65538, 65521, 0, 65538, 65522, 0, 65538, 65523, 0, 65538, 65524, 0, 65538, 65525, 0, 65538, 65526, 0, 65538, 65527, 0, 65538, 65528, 0, 65538, 65529, 0, 65538, 65530, 0, 65538, 65531, 0, 65538, 65532, 0, 65538, 65533, 0, 65538, 65534, 0, 65538, 65535, 0, 65538, 0, 0, 65538, 1, 0, 65542, 2, 0, 131074, 3, 0, 131074, 4, 0, 131074, 5, 0, 131074, 6, 0, 131074, 7, 0, 131074, 8, 0, 131074, 9, 0, 131074, 10, 0, 131075, 11, 8, 196648, 13, 8, 196648, 14, 0, 131073, 15, 0, 131074, 16, 0, 131074, 17, 0, 131074, 18, 0, 131074, 19, 0, 65543, 20, 0, 65538, 21, 0, 65538, 22, 0, 65538, 23, 0, 65538, 24, 0, 65538, 25, 0, 65538, 26, 0, 65538, 27, 0, 65538, 28, 0, 65538, 29, 0, 65538, 30, 0, 65538, 31, 0, 65538, 32, 0, 65538, 33, 0, 65538, 34, 0, 65538, 35, 0, 65538, 36, 0, 65538, 37, 0, 65539, 131054, 0, 65537, 131055, 0, 65538, 131056, 0, 65538, 131057, 0, 65538, 131058, 0, 65538, 131059, 0, 65538, 131060, 0, 65538, 131061, 0, 65538, 131062, 0, 65538, 131063, 0, 65538, 131064, 0, 65538, 131065, 0, 65538, 131066, 0, 65538, 131067, 0, 65538, 131068, 0, 65538, 131069, 0, 65538, 131070, 0, 65538, 131071, 0, 65538, 65536, 0, 65542, 65537, 0, 131075, 65555, 0, 65537, 65556, 0, 65538, 65557, 0, 65538, 65558, 0, 65538, 65559, 0, 65538, 65560, 0, 65538, 65561, 0, 65538, 65562, 0, 65538, 65563, 0, 65538, 65564, 0, 65538, 65565, 0, 65538, 65566, 0, 65538, 65567, 0, 65538, 65568, 0, 65538, 65569, 0, 65538, 65570, 0, 65538, 65571, 0, 65538, 65572, 0, 65538, 65573, 0, 65539, 196590, 0, 65537, 196591, 0, 65538, 196592, 0, 65538, 196593, 0, 65538, 196594, 0, 65538, 196595, 0, 65538, 196596, 0, 65538, 196597, 0, 65538, 196598, 0, 65538, 196599, 0, 65538, 196600, 0, 65538, 196601, 0, 65538, 196602, 0, 65538, 196603, 0, 65538, 196604, 0, 65538, 196605, 0, 65538, 196606, 0, 65538, 196607, 0, 65538, 131072, 0, 65539, 131091, 0, 65537, 131092, 0, 65538, 131093, 0, 65538, 131094, 0, 65538, 131095, 0, 65538, 131096, 0, 65538, 131097, 0, 65538, 131098, 0, 65538, 131099, 0, 65538, 131100, 0, 65538, 131101, 0, 65538, 131102, 0, 65538, 131103, 0, 65538, 131104, 0, 65538, 131105, 0, 65538, 131106, 0, 65538, 131107, 0, 65538, 131108, 0, 65538, 131109, 0, 65539, 262126, 0, 65537, 262127, 0, 65538, 262128, 0, 65538, 262129, 0, 65538, 262130, 0, 65538, 262131, 0, 65538, 262132, 0, 65538, 262133, 0, 65538, 262134, 0, 65538, 262135, 0, 65538, 262136, 0, 65538, 262137, 0, 65538, 262138, 0, 65538, 262139, 0, 65538, 262140, 0, 65538, 262141, 0, 65538, 262142, 0, 65538, 262143, 0, 65538, 196608, 0, 65539, 196627, 0, 65537, 196628, 0, 65538, 196629, 0, 65538, 196630, 0, 65538, 196631, 0, 65538, 196632, 0, 65538, 196633, 0, 65538, 196634, 0, 65538, 196635, 0, 65538, 196636, 0, 65538, 196637, 0, 65538, 196638, 0, 65538, 196639, 0, 65538, 196640, 0, 65538, 196641, 0, 65538, 196642, 0, 65538, 196643, 0, 65538, 196644, 0, 65538, 196645, 0, 65539, 327662, 0, 65537, 327663, 0, 65538, 327664, 0, 65538, 327665, 0, 65538, 327666, 0, 65538, 327667, 0, 65538, 327668, 0, 65538, 327669, 0, 65538, 327670, 0, 65538, 327671, 0, 65538, 327672, 0, 65538, 327673, 0, 65538, 327674, 0, 65538, 327675, 0, 65538, 327676, 0, 65538, 327677, 0, 65538, 327678, 0, 65538, 327679, 0, 65538, 262144, 0, 65539, 262163, 0, 65537, 262164, 0, 65538, 262165, 0, 65538, 262166, 0, 65538, 262167, 0, 65538, 262168, 0, 65538, 262169, 0, 65538, 262170, 0, 65538, 262171, 0, 65538, 262172, 0, 65538, 262173, 0, 65538, 262174, 0, 65538, 262175, 0, 65538, 262176, 0, 65538, 262177, 0, 65538, 262178, 0, 65538, 262179, 0, 65538, 262180, 0, 65538, 262181, 0, 65539, 393198, 0, 65537, 393199, 0, 65538, 393200, 0, 65538, 393201, 0, 65538, 393202, 0, 65538, 393203, 0, 65538, 393204, 0, 65538, 393205, 0, 65538, 393206, 0, 65538, 393207, 0, 65538, 393208, 0, 65538, 393209, 0, 65538, 393210, 0, 65538, 393211, 0, 65538, 393212, 0, 65538, 393213, 0, 65538, 393214, 0, 65538, 393215, 0, 65538, 327680, 0, 65539, 327685, 0, 1, 327686, 0, 2, 327687, 0, 2, 327688, 0, 3, 327699, 0, 65537, 327700, 0, 65538, 327701, 0, 65538, 327702, 0, 65538, 327703, 0, 65538, 327704, 0, 65538, 327705, 0, 65538, 327706, 0, 65538, 327707, 0, 65538, 327708, 0, 65538, 327709, 0, 65538, 327710, 0, 65538, 327711, 0, 65538, 327712, 0, 65538, 327713, 0, 65538, 327714, 0, 65538, 327715, 0, 65538, 327716, 0, 65538, 327717, 0, 65539, 458734, 0, 65537, 458735, 0, 65538, 458736, 0, 65538, 458737, 0, 65538, 458738, 0, 65538, 458739, 0, 65538, 458740, 0, 65538, 458741, 0, 65538, 458742, 0, 65538, 458743, 0, 65538, 458744, 0, 65538, 458745, 0, 65538, 458746, 0, 65538, 458747, 0, 65538, 458748, 0, 65538, 458749, 0, 65538, 458750, 0, 65538, 458751, 0, 65538, 393216, 0, 65539, 393219, 0, 1, 393220, 0, 2, 393221, 0, 131079, 393222, 0, 65538, 393223, 0, 65538, 393224, 0, 131078, 393225, 0, 2, 393226, 0, 2, 393227, 0, 2, 393228, 0, 2, 393229, 0, 3, 393235, 0, 65537, 393236, 0, 65538, 393237, 0, 65538, 393238, 0, 65538, 393239, 0, 65538, 393240, 0, 65538, 393241, 0, 65538, 393242, 0, 65538, 393243, 0, 65538, 393244, 0, 65538, 393245, 0, 65538, 393246, 0, 65538, 393247, 0, 65538, 393248, 0, 65538, 393249, 0, 65538, 393250, 0, 65538, 393251, 0, 65538, 393252, 0, 65538, 393253, 0, 65539, 524270, 0, 65537, 524271, 0, 65538, 524272, 0, 65538, 524273, 0, 65538, 524274, 0, 65538, 524275, 0, 65538, 524276, 0, 65538, 524277, 0, 65538, 524278, 0, 65538, 524279, 0, 65538, 524280, 0, 65538, 524281, 0, 65538, 524282, 0, 65538, 524283, 0, 65538, 524284, 0, 65538, 524285, 0, 65538, 524286, 0, 65538, 524287, 0, 65538, 458752, 0, 65539, 458754, 0, 1, 458755, 0, 131079, 458756, 0, 65538, 458757, 0, 65538, 458758, 0, 65538, 458759, 0, 65538, 458760, 0, 65538, 458761, 0, 65538, 458762, 0, 65538, 458763, 0, 65538, 458764, 0, 65538, 458765, 0, 131078, 458766, 0, 3, 458771, 0, 65537, 458772, 0, 65538, 458773, 0, 65538, 458774, 0, 65538, 458775, 0, 65538, 458776, 0, 65538, 458777, 0, 65538, 458778, 0, 65538, 458779, 0, 65538, 458780, 0, 65538, 458781, 0, 65538, 458782, 0, 65538, 458783, 0, 65538, 458784, 0, 65538, 458785, 0, 65538, 458786, 0, 65538, 458787, 0, 65538, 458788, 0, 65538, 458789, 0, 65539, 589806, 0, 65537, 589807, 0, 65538, 589808, 0, 65538, 589809, 0, 65538, 589810, 0, 65538, 589811, 0, 65538, 589812, 0, 65538, 589813, 0, 65538, 589814, 0, 65538, 589815, 0, 65538, 589816, 0, 65538, 589817, 0, 65538, 589818, 0, 65538, 589819, 0, 65538, 589820, 0, 65538, 589821, 0, 65538, 589822, 0, 65538, 589823, 0, 65538, 524288, 0, 65539, 524290, 0, 131073, 524291, 0, 65543, 524292, 0, 65538, 524293, 0, 65538, 524294, 0, 65538, 524295, 0, 65538, 524296, 0, 65538, 524297, 0, 65538, 524298, 0, 65538, 524299, 0, 65538, 524300, 0, 65538, 524301, 0, 65542, 524302, 0, 131075, 524307, 0, 65537, 524308, 0, 65538, 524309, 0, 65538, 524310, 0, 65538, 524311, 0, 65538, 524312, 0, 65538, 524313, 0, 65538, 524314, 0, 65538, 524315, 0, 65538, 524316, 0, 65538, 524317, 0, 65538, 524318, 0, 65538, 524319, 0, 65538, 524320, 0, 65538, 524321, 0, 65538, 524322, 0, 65538, 524323, 0, 65538, 524324, 0, 65538, 524325, 0, 65539, 655342, 0, 65537, 655343, 0, 65538, 655344, 0, 65538, 655345, 0, 65538, 655346, 0, 65538, 655347, 0, 65538, 655348, 0, 65538, 655349, 0, 65538, 655350, 0, 65538, 655351, 0, 65538, 655352, 0, 65538, 655353, 0, 65538, 655354, 0, 65538, 655355, 0, 65538, 655356, 0, 65538, 655357, 0, 65538, 655358, 0, 65538, 655359, 0, 65538, 589824, 0, 65539, 589827, 0, 131073, 589828, 0, 131074, 589829, 0, 131074, 589830, 0, 131074, 589831, 0, 131074, 589832, 0, 131074, 589833, 0, 131074, 589834, 0, 131074, 589835, 0, 131074, 589836, 0, 131074, 589837, 0, 131075, 589843, 0, 65537, 589844, 0, 65538, 589845, 0, 65538, 589846, 0, 65538, 589847, 0, 65538, 589848, 0, 65538, 589849, 0, 65538, 589850, 0, 65538, 589851, 0, 65538, 589852, 0, 65538, 589853, 0, 65538, 589854, 0, 65538, 589855, 0, 65538, 589856, 0, 65538, 589857, 0, 65538, 589858, 0, 65538, 589859, 0, 65538, 589860, 0, 65538, 589861, 0, 65539, 720878, 0, 65537, 720879, 0, 65538, 720880, 0, 65538, 720881, 0, 65538, 720882, 0, 65538, 720883, 0, 65538, 720884, 0, 65538, 720885, 0, 65538, 720886, 0, 65538, 720887, 0, 65538, 720888, 0, 65538, 720889, 0, 65538, 720890, 0, 65538, 720891, 0, 65538, 720892, 0, 65538, 720893, 0, 65538, 720894, 0, 65538, 720895, 0, 65538, 655360, 0, 65539, 655379, 0, 65537, 655380, 0, 65538, 655381, 0, 65538, 655382, 0, 65538, 655383, 0, 65538, 655384, 0, 65538, 655385, 0, 65538, 655386, 0, 65538, 655387, 0, 65538, 655388, 0, 65538, 655389, 0, 65538, 655390, 0, 65538, 655391, 0, 65538, 655392, 0, 65538, 655393, 0, 65538, 655394, 0, 65538, 655395, 0, 65538, 655396, 0, 65538, 655397, 0, 65539, 786414, 0, 65537, 786415, 0, 65538, 786416, 0, 65538, 786417, 0, 65538, 786418, 0, 65538, 786419, 0, 65538, 786420, 0, 65538, 786421, 0, 65538, 786422, 0, 65538, 786423, 0, 65538, 786424, 0, 65538, 786425, 0, 65538, 786426, 0, 65538, 786427, 0, 65538, 786428, 0, 65538, 786429, 0, 65538, 786430, 0, 65538, 786431, 0, 65538, 720896, 0, 131078, 720897, 0, 2, 720898, 0, 2, 720899, 0, 2, 720900, 0, 2, 720901, 0, 2, 720902, 0, 2, 720903, 0, 2, 720904, 0, 2, 720905, 0, 2, 720906, 0, 2, 720907, 0, 2, 720908, 0, 2, 720909, 0, 2, 720910, 0, 2, 720911, 0, 2, 720912, 0, 2, 720913, 0, 2, 720914, 0, 2, 720915, 0, 131079, 720916, 0, 65538, 720917, 0, 65538, 720918, 0, 65538, 720919, 0, 65538, 720920, 0, 65538, 720921, 0, 65538, 720922, 0, 65538, 720923, 0, 65538, 720924, 0, 65538, 720925, 0, 65538, 720926, 0, 65538, 720927, 0, 65538, 720928, 0, 65538, 720929, 0, 65538, 720930, 0, 65538, 720931, 0, 65538, 720932, 0, 65538, 720933, 0, 65539, 851950, 0, 65537, 851951, 0, 65538, 851952, 0, 65538, 851953, 0, 65538, 851954, 0, 65538, 851955, 0, 65538, 851956, 0, 65538, 851957, 0, 65538, 851958, 0, 65538, 851959, 0, 65538, 851960, 0, 65538, 851961, 0, 65538, 851962, 0, 65538, 851963, 0, 65538, 851964, 0, 65538, 851965, 0, 65538, 851966, 0, 65538, 851967, 0, 65538, 786432, 0, 65538, 786433, 0, 65538, 786434, 0, 65538, 786435, 0, 65538, 786436, 0, 65538, 786437, 0, 65538, 786438, 0, 65538, 786439, 0, 65538, 786440, 0, 65538, 786441, 0, 65538, 786442, 0, 65538, 786443, 0, 65538, 786444, 0, 65538, 786445, 0, 65538, 786446, 0, 65538, 786447, 0, 65538, 786448, 0, 65538, 786449, 0, 65538, 786450, 0, 65538, 786451, 0, 65538, 786452, 0, 65538, 786453, 0, 65538, 786454, 0, 65538, 786455, 0, 65538, 786456, 0, 65538, 786457, 0, 65538, 786458, 0, 65538, 786459, 0, 65538, 786460, 0, 65538, 786461, 0, 65538, 786462, 0, 65538, 786463, 0, 65538, 786464, 0, 65538, 786465, 0, 65538, 786466, 0, 65538, 786467, 0, 65538, 786468, 0, 65538, 786469, 0, 65539, 917486, 0, 65537, 917487, 0, 65538, 917488, 0, 65538, 917489, 0, 65538, 917490, 0, 65538, 917491, 0, 65538, 917492, 0, 65538, 917493, 0, 65538, 917494, 0, 65538, 917495, 0, 65538, 917496, 0, 65538, 917497, 0, 65538, 917498, 0, 65538, 917499, 0, 65538, 917500, 0, 65538, 917501, 0, 65538, 917502, 0, 65538, 917503, 0, 65538, 851968, 0, 65538, 851969, 0, 65538, 851970, 0, 65538, 851971, 0, 65538, 851972, 0, 65538, 851973, 0, 65538, 851974, 0, 65538, 851975, 0, 65538, 851976, 0, 65538, 851977, 0, 65538, 851978, 0, 65538, 851979, 0, 65538, 851980, 0, 65538, 851981, 0, 65538, 851982, 0, 65538, 851983, 0, 65538, 851984, 0, 65538, 851985, 0, 65538, 851986, 0, 65538, 851987, 0, 65538, 851988, 0, 65538, 851989, 0, 65538, 851990, 0, 65538, 851991, 0, 65538, 851992, 0, 65538, 851993, 0, 65538, 851994, 0, 65538, 851995, 0, 65538, 851996, 0, 65538, 851997, 0, 65538, 851998, 0, 65538, 851999, 0, 65538, 852000, 0, 65538, 852001, 0, 65538, 852002, 0, 65538, 852003, 0, 65538, 852004, 0, 65538, 852005, 0, 65539, 983022, 0, 65537, 983023, 0, 65538, 983024, 0, 65538, 983025, 0, 65538, 983026, 0, 65538, 983027, 0, 65538, 983028, 0, 65538, 983029, 0, 65538, 983030, 0, 65538, 983031, 0, 65538, 983032, 0, 65538, 983033, 0, 65538, 983034, 0, 65538, 983035, 0, 65538, 983036, 0, 65538, 983037, 0, 65538, 983038, 0, 65538, 983039, 0, 65538, 917504, 0, 65538, 917505, 0, 65538, 917506, 0, 65538, 917507, 0, 65538, 917508, 0, 65538, 917509, 0, 65538, 917510, 0, 65538, 917511, 0, 65538, 917512, 0, 65538, 917513, 0, 65538, 917514, 0, 65538, 917515, 0, 65538, 917516, 0, 65538, 917517, 0, 65538, 917518, 0, 65538, 917519, 0, 65538, 917520, 0, 65538, 917521, 0, 65538, 917522, 0, 65538, 917523, 0, 65538, 917524, 0, 65538, 917525, 0, 65538, 917526, 0, 65538, 917527, 0, 65538, 917528, 0, 65538, 917529, 0, 65538, 917530, 0, 65538, 917531, 0, 65538, 917532, 0, 65538, 917533, 0, 65538, 917534, 0, 65538, 917535, 0, 65538, 917536, 0, 65538, 917537, 0, 65538, 917538, 0, 65538, 917539, 0, 65538, 917540, 0, 65538, 917541, 0, 65539, 1048558, 0, 65537, 1048559, 0, 65538, 1048560, 0, 65538, 1048561, 0, 65538, 1048562, 0, 65538, 1048563, 0, 65538, 1048564, 0, 65538, 1048565, 0, 65538, 1048566, 0, 65538, 1048567, 0, 65538, 1048568, 0, 65538, 1048569, 0, 65538, 1048570, 0, 65538, 1048571, 0, 65538, 1048572, 0, 65538, 1048573, 0, 65538, 1048574, 0, 65538, 1048575, 0, 65538, 983040, 0, 65538, 983041, 0, 65538, 983042, 0, 65538, 983043, 0, 65538, 983044, 0, 65538, 983045, 0, 65538, 983046, 0, 65538, 983047, 0, 65538, 983048, 0, 65538, 983049, 0, 65538, 983050, 0, 65538, 983051, 0, 65538, 983052, 0, 65538, 983053, 0, 65538, 983054, 0, 65538, 983055, 0, 65538, 983056, 0, 65538, 983057, 0, 65538, 983058, 0, 65538, 983059, 0, 65538, 983060, 0, 65538, 983061, 0, 65538, 983062, 0, 65538, 983063, 0, 65538, 983064, 0, 65538, 983065, 0, 65538, 983066, 0, 65538, 983067, 0, 65538, 983068, 0, 65538, 983069, 0, 65538, 983070, 0, 65538, 983071, 0, 65538, 983072, 0, 65538, 983073, 0, 65538, 983074, 0, 65538, 983075, 0, 65538, 983076, 0, 65538, 983077, 0, 65539, 1114094, 0, 65537, 1114095, 0, 65538, 1114096, 0, 65538, 1114097, 0, 65538, 1114098, 0, 65538, 1114099, 0, 65538, 1114100, 0, 65538, 1114101, 0, 65538, 1114102, 0, 65538, 1114103, 0, 65538, 1114104, 0, 65538, 1114105, 0, 65538, 1114106, 0, 65538, 1114107, 0, 65538, 1114108, 0, 65538, 1114109, 0, 65538, 1114110, 0, 65538, 1114111, 0, 65538, 1048576, 0, 65538, 1048577, 0, 65538, 1048578, 0, 65538, 1048579, 0, 65538, 1048580, 0, 65538, 1048581, 0, 65538, 1048582, 0, 65538, 1048583, 0, 65538, 1048584, 0, 65538, 1048585, 0, 65538, 1048586, 0, 65538, 1048587, 0, 65538, 1048588, 0, 65538, 1048589, 0, 65538, 1048590, 0, 65538, 1048591, 0, 65538, 1048592, 0, 65538, 1048593, 0, 65538, 1048594, 0, 65538, 1048595, 0, 65538, 1048596, 0, 65538, 1048597, 0, 65538, 1048598, 0, 65538, 1048599, 0, 65538, 1048600, 0, 65538, 1048601, 0, 65538, 1048602, 0, 65538, 1048603, 0, 65538, 1048604, 0, 65538, 1048605, 0, 65538, 1048606, 0, 65538, 1048607, 0, 65538, 1048608, 0, 65538, 1048609, 0, 65538, 1048610, 0, 65538, 1048611, 0, 65538, 1048612, 0, 65538, 1048613, 0, 65539, 1179630, 0, 65537, 1179631, 0, 65538, 1179632, 0, 65538, 1179633, 0, 65538, 1179634, 0, 65538, 1179635, 0, 65538, 1179636, 0, 65538, 1179637, 0, 65538, 1179638, 0, 65538, 1179639, 0, 65538, 1179640, 0, 65538, 1179641, 0, 65538, 1179642, 0, 65538, 1179643, 0, 65538, 1179644, 0, 65538, 1179645, 0, 65538, 1179646, 0, 65538, 1179647, 0, 65538, 1114112, 0, 65538, 1114113, 0, 65538, 1114114, 0, 65538, 1114115, 0, 65538, 1114116, 0, 65538, 1114117, 0, 65538, 1114118, 0, 65538, 1114119, 0, 65538, 1114120, 0, 65538, 1114121, 0, 65538, 1114122, 0, 65538, 1114123, 0, 65538, 1114124, 0, 65538, 1114125, 0, 65538, 1114126, 0, 65538, 1114127, 0, 65538, 1114128, 0, 65538, 1114129, 0, 65538, 1114130, 0, 65538, 1114131, 0, 65538, 1114132, 0, 65538, 1114133, 0, 65538, 1114134, 0, 65538, 1114135, 0, 65538, 1114136, 0, 65538, 1114137, 0, 65538, 1114138, 0, 65538, 1114139, 0, 65538, 1114140, 0, 65538, 1114141, 0, 65538, 1114142, 0, 65538, 1114143, 0, 65538, 1114144, 0, 65538, 1114145, 0, 65538, 1114146, 0, 65538, 1114147, 0, 65538, 1114148, 0, 65538, 1114149, 0, 65539, 1245166, 0, 65537, 1245167, 0, 65538, 1245168, 0, 65538, 1245169, 0, 65538, 1245170, 0, 65538, 1245171, 0, 65538, 1245172, 0, 65538, 1245173, 0, 65538, 1245174, 0, 65538, 1245175, 0, 65538, 1245176, 0, 65538, 1245177, 0, 65538, 1245178, 0, 65538, 1245179, 0, 65538, 1245180, 0, 65538, 1245181, 0, 65538, 1245182, 0, 65538, 1245183, 0, 65538, 1179648, 0, 65538, 1179649, 0, 65538, 1179650, 0, 65538, 1179651, 0, 65538, 1179652, 0, 65538, 1179653, 0, 65538, 1179654, 0, 65538, 1179655, 0, 65538, 1179656, 0, 65538, 1179657, 0, 65538, 1179658, 0, 65538, 1179659, 0, 65538, 1179660, 0, 65538, 1179661, 0, 65538, 1179662, 0, 65538, 1179663, 0, 65538, 1179664, 0, 65538, 1179665, 0, 65538, 1179666, 0, 65538, 1179667, 0, 65538, 1179668, 0, 65538, 1179669, 0, 65538, 1179670, 0, 65538, 1179671, 0, 65538, 1179672, 0, 65538, 1179673, 0, 65538, 1179674, 0, 65538, 1179675, 0, 65538, 1179676, 0, 65538, 1179677, 0, 65538, 1179678, 0, 65538, 1179679, 0, 65538, 1179680, 0, 65538, 1179681, 0, 65538, 1179682, 0, 65538, 1179683, 0, 65538, 1179684, 0, 65538, 1179685, 0, 65539, 1310702, 0, 65537, 1310703, 0, 65538, 1310704, 0, 65538, 1310705, 0, 65538, 1310706, 0, 65538, 1310707, 0, 65538, 1310708, 0, 65538, 1310709, 0, 65538, 1310710, 0, 65538, 1310711, 0, 65538, 1310712, 0, 65538, 1310713, 0, 65538, 1310714, 0, 65538, 1310715, 0, 65538, 1310716, 0, 65538, 1310717, 0, 65538, 1310718, 0, 65538, 1310719, 0, 65538, 1245184, 0, 65538, 1245185, 0, 65538, 1245186, 0, 65538, 1245187, 0, 65538, 1245188, 0, 65538, 1245189, 0, 65538, 1245190, 0, 65538, 1245191, 0, 65538, 1245192, 0, 65538, 1245193, 0, 65538, 1245194, 0, 65538, 1245195, 0, 65538, 1245196, 0, 65538, 1245197, 0, 65538, 1245198, 0, 65538, 1245199, 0, 65538, 1245200, 0, 65538, 1245201, 0, 65538, 1245202, 0, 65538, 1245203, 0, 65538, 1245204, 0, 65538, 1245205, 0, 65538, 1245206, 0, 65538, 1245207, 0, 65538, 1245208, 0, 65538, 1245209, 0, 65538, 1245210, 0, 65538, 1245211, 0, 65538, 1245212, 0, 65538, 1245213, 0, 65538, 1245214, 0, 65538, 1245215, 0, 65538, 1245216, 0, 65538, 1245217, 0, 65538, 1245218, 0, 65538, 1245219, 0, 65538, 1245220, 0, 65538, 1245221, 0, 65539, 1376238, 0, 65537, 1376239, 0, 65538, 1376240, 0, 65538, 1376241, 0, 65538, 1376242, 0, 65538, 1376243, 0, 65538, 1376244, 0, 65538, 1376245, 0, 65538, 1376246, 0, 65538, 1376247, 0, 65538, 1376248, 0, 65538, 1376249, 0, 65538, 1376250, 0, 65538, 1376251, 0, 65538, 1376252, 0, 65538, 1376253, 0, 65538, 1376254, 0, 65538, 1376255, 0, 65538, 1310720, 0, 65538, 1310721, 0, 65538, 1310722, 0, 65538, 1310723, 0, 65538, 1310724, 0, 65538, 1310725, 0, 65538, 1310726, 0, 65538, 1310727, 0, 65538, 1310728, 0, 65538, 1310729, 0, 65538, 1310730, 0, 65538, 1310731, 0, 65538, 1310732, 0, 65538, 1310733, 0, 65538, 1310734, 0, 65538, 1310735, 0, 65538, 1310736, 0, 65538, 1310737, 0, 65538, 1310738, 0, 65538, 1310739, 0, 65538, 1310740, 0, 65538, 1310741, 0, 65538, 1310742, 0, 65538, 1310743, 0, 65538, 1310744, 0, 65538, 1310745, 0, 65538, 1310746, 0, 65538, 1310747, 0, 65538, 1310748, 0, 65538, 1310749, 0, 65538, 1310750, 0, 65538, 1310751, 0, 65538, 1310752, 0, 65538, 1310753, 0, 65538, 1310754, 0, 65538, 1310755, 0, 65538, 1310756, 0, 65538, 1310757, 0, 65539, 1441774, 0, 65537, 1441775, 0, 65538, 1441776, 0, 65538, 1441777, 0, 65538, 1441778, 0, 65538, 1441779, 0, 65538, 1441780, 0, 65538, 1441781, 0, 65538, 1441782, 0, 65538, 1441783, 0, 65538, 1441784, 0, 65538, 1441785, 0, 65538, 1441786, 0, 65538, 1441787, 0, 65538, 1441788, 0, 65538, 1441789, 0, 65538, 1441790, 0, 65538, 1441791, 0, 65538, 1376256, 0, 65538, 1376257, 0, 65538, 1376258, 0, 65538, 1376259, 0, 65538, 1376260, 0, 65538, 1376261, 0, 65538, 1376262, 0, 65538, 1376263, 0, 65538, 1376264, 0, 65538, 1376265, 0, 65538, 1376266, 0, 65538, 1376267, 0, 65538, 1376268, 0, 65538, 1376269, 0, 65538, 1376270, 0, 65538, 1376271, 0, 65538, 1376272, 0, 65538, 1376273, 0, 65538, 1376274, 0, 65538, 1376275, 0, 65538, 1376276, 0, 65538, 1376277, 0, 65538, 1376278, 0, 65538, 1376279, 0, 65538, 1376280, 0, 65538, 1376281, 0, 65538, 1376282, 0, 65538, 1376283, 0, 65538, 1376284, 0, 65538, 1376285, 0, 65538, 1376286, 0, 65538, 1376287, 0, 65538, 1376288, 0, 65538, 1376289, 0, 65538, 1376290, 0, 65538, 1376291, 0, 65538, 1376292, 0, 65538, 1376293, 0, 65539, 1507310, 0, 65537, 1507311, 0, 65538, 1507312, 0, 65538, 1507313, 0, 65538, 1507314, 0, 65538, 1507315, 0, 65538, 1507316, 0, 65538, 1507317, 0, 65538, 1507318, 0, 65538, 1507319, 0, 65538, 1507320, 0, 65538, 1507321, 0, 65538, 1507322, 0, 65538, 1507323, 0, 65538, 1507324, 0, 65538, 1507325, 0, 65538, 1507326, 0, 65538, 1507327, 0, 65538, 1441792, 0, 65538, 1441793, 0, 65538, 1441794, 0, 65538, 1441795, 0, 65538, 1441796, 0, 65538, 1441797, 0, 65538, 1441798, 0, 65538, 1441799, 0, 65538, 1441800, 0, 65538, 1441801, 0, 65538, 1441802, 0, 65538, 1441803, 0, 65538, 1441804, 0, 65538, 1441805, 0, 65538, 1441806, 0, 65538, 1441807, 0, 65538, 1441808, 0, 65538, 1441809, 0, 65538, 1441810, 0, 65538, 1441811, 0, 65538, 1441812, 0, 65538, 1441813, 0, 65538, 1441814, 0, 65538, 1441815, 0, 65538, 1441816, 0, 65538, 1441817, 0, 65538, 1441818, 0, 65538, 1441819, 0, 65538, 1441820, 0, 65538, 1441821, 0, 65538, 1441822, 0, 65538, 1441823, 0, 65538, 1441824, 0, 65538, 1441825, 0, 65538, 1441826, 0, 65538, 1441827, 0, 65538, 1441828, 0, 65538, 1441829, 0, 65539, 1572846, 0, 65537, 1572847, 0, 65538, 1572848, 0, 65538, 1572849, 0, 65538, 1572850, 0, 65538, 1572851, 0, 65538, 1572852, 0, 65538, 1572853, 0, 65538, 1572854, 0, 65538, 1572855, 0, 65538, 1572856, 0, 65538, 1572857, 0, 65538, 1572858, 0, 65538, 1572859, 0, 65538, 1572860, 0, 65538, 1572861, 0, 65538, 1572862, 0, 65538, 1572863, 0, 65538, 1507328, 0, 65538, 1507329, 0, 65538, 1507330, 0, 65538, 1507331, 0, 65538, 1507332, 0, 65538, 1507333, 0, 65538, 1507334, 0, 65538, 1507335, 0, 65538, 1507336, 0, 65538, 1507337, 0, 65538, 1507338, 0, 65538, 1507339, 0, 65538, 1507340, 0, 65538, 1507341, 0, 65538, 1507342, 0, 65538, 1507343, 0, 65538, 1507344, 0, 65538, 1507345, 0, 65538, 1507346, 0, 65538, 1507347, 0, 65538, 1507348, 0, 65538, 1507349, 0, 65538, 1507350, 0, 65538, 1507351, 0, 65538, 1507352, 0, 65538, 1507353, 0, 65538, 1507354, 0, 65538, 1507355, 0, 65538, 1507356, 0, 65538, 1507357, 0, 65538, 1507358, 0, 65538, 1507359, 0, 65538, 1507360, 0, 65538, 1507361, 0, 65538, 1507362, 0, 65538, 1507363, 0, 65538, 1507364, 0, 65538, 1507365, 0, 65539, 1638382, 0, 65537, 1638383, 0, 65538, 1638384, 0, 65538, 1638385, 0, 65538, 1638386, 0, 65538, 1638387, 0, 65538, 1638388, 0, 65538, 1638389, 0, 65538, 1638390, 0, 65538, 1638391, 0, 65538, 1638392, 0, 65538, 1638393, 0, 65538, 1638394, 0, 65538, 1638395, 0, 65538, 1638396, 0, 65538, 1638397, 0, 65538, 1638398, 0, 65538, 1638399, 0, 65538, 1572864, 0, 65538, 1572865, 0, 65538, 1572866, 0, 65538, 1572867, 0, 65538, 1572868, 0, 65538, 1572869, 0, 65538, 1572870, 0, 65538, 1572871, 0, 65538, 1572872, 0, 65538, 1572873, 0, 65538, 1572874, 0, 65538, 1572875, 0, 65538, 1572876, 0, 65538, 1572877, 0, 65538, 1572878, 0, 65538, 1572879, 0, 65538, 1572880, 0, 65538, 1572881, 0, 65538, 1572882, 0, 65538, 1572883, 0, 65538, 1572884, 0, 65538, 1572885, 0, 65538, 1572886, 0, 65538, 1572887, 0, 65538, 1572888, 0, 65538, 1572889, 0, 65538, 1572890, 0, 65538, 1572891, 0, 65538, 1572892, 0, 65538, 1572893, 0, 65538, 1572894, 0, 65538, 1572895, 0, 65538, 1572896, 0, 65538, 1572897, 0, 65538, 1572898, 0, 65538, 1572899, 0, 65538, 1572900, 0, 65538, 1572901, 0, 65539, 1703918, 0, 131073, 1703919, 0, 131074, 1703920, 0, 131074, 1703921, 0, 131074, 1703922, 0, 131074, 1703923, 0, 131074, 1703924, 0, 131074, 1703925, 0, 131074, 1703926, 0, 131074, 1703927, 0, 131074, 1703928, 0, 131074, 1703929, 0, 131074, 1703930, 0, 131074, 1703931, 0, 131074, 1703932, 0, 131074, 1703933, 0, 131074, 1703934, 0, 131074, 1703935, 0, 131074, 1638400, 0, 131074, 1638401, 0, 131074, 1638402, 0, 131074, 1638403, 0, 131074, 1638404, 0, 131074, 1638405, 0, 131074, 1638406, 0, 131074, 1638407, 0, 131074, 1638408, 0, 131074, 1638409, 0, 131074, 1638410, 0, 131074, 1638411, 0, 131074, 1638412, 0, 131074, 1638413, 0, 131074, 1638414, 0, 131074, 1638415, 0, 131074, 1638416, 0, 131074, 1638417, 0, 131074, 1638418, 0, 131074, 1638419, 0, 131074, 1638420, 0, 131074, 1638421, 0, 131074, 1638422, 0, 131074, 1638423, 0, 131074, 1638424, 0, 131074, 1638425, 0, 131074, 1638426, 0, 131074, 1638427, 0, 131074, 1638428, 0, 131074, 1638429, 0, 131074, 1638430, 0, 131074, 1638431, 0, 131074, 1638432, 0, 131074, 1638433, 0, 131074, 1638434, 0, 131074, 1638435, 0, 131074, 1638436, 0, 131074, 1638437, 0, 131075 ) +tile_data = PoolIntArray( -3145746, 0, 1, -3145745, 0, 2, -3145744, 0, 2, -3145743, 0, 2, -3145742, 0, 2, -3145741, 0, 2, -3145740, 0, 2, -3145739, 0, 2, -3145738, 0, 2, -3145737, 0, 2, -3145736, 0, 2, -3145735, 0, 2, -3145734, 0, 2, -3145733, 0, 2, -3145732, 0, 2, -3145731, 0, 2, -3145730, 0, 2, -3145729, 0, 2, -3211264, 0, 2, -3211263, 0, 2, -3211262, 0, 2, -3211261, 0, 2, -3211260, 0, 2, -3211259, 0, 2, -3211258, 0, 2, -3211257, 0, 2, -3211256, 0, 2, -3211255, 0, 2, -3211254, 0, 2, -3211253, 0, 2, -3211252, 0, 2, -3211251, 0, 2, -3211250, 0, 2, -3211249, 0, 2, -3211248, 0, 2, -3211247, 0, 2, -3211246, 0, 2, -3211245, 0, 2, -3211244, 0, 2, -3211243, 0, 2, -3211242, 0, 2, -3211241, 0, 2, -3211240, 0, 2, -3211239, 0, 2, -3211238, 0, 2, -3211237, 0, 2, -3211236, 0, 2, -3211235, 0, 2, -3211234, 0, 2, -3211233, 0, 2, -3211232, 0, 2, -3211231, 0, 2, -3211230, 0, 2, -3211229, 0, 2, -3211228, 0, 2, -3211227, 0, 3, -3080210, 0, 65537, -3080209, 0, 65538, -3080208, 0, 65538, -3080207, 0, 65538, -3080206, 0, 65538, -3080205, 0, 65538, -3080204, 0, 65538, -3080203, 0, 65538, -3080202, 0, 65538, -3080201, 0, 65538, -3080200, 0, 65538, -3080199, 0, 65538, -3080198, 0, 65538, -3080197, 0, 65538, -3080196, 0, 65538, -3080195, 0, 65538, -3080194, 0, 65538, -3080193, 0, 65538, -3145728, 0, 65538, -3145727, 0, 65538, -3145726, 0, 65538, -3145725, 0, 65538, -3145724, 0, 65538, -3145723, 0, 65538, -3145722, 0, 65538, -3145721, 0, 65538, -3145720, 0, 65538, -3145719, 0, 65538, -3145718, 0, 65538, -3145717, 0, 65538, -3145716, 0, 65538, -3145715, 0, 65538, -3145714, 0, 65538, -3145713, 0, 65538, -3145712, 0, 65538, -3145711, 0, 65538, -3145710, 0, 65538, -3145709, 0, 65538, -3145708, 0, 65538, -3145707, 0, 65538, -3145706, 0, 65538, -3145705, 0, 65538, -3145704, 0, 65538, -3145703, 0, 65538, -3145702, 0, 65538, -3145701, 0, 65538, -3145700, 0, 65538, -3145699, 0, 65538, -3145698, 0, 65538, -3145697, 0, 65538, -3145696, 0, 65538, -3145695, 0, 65538, -3145694, 0, 65538, -3145693, 0, 65538, -3145692, 0, 65538, -3145691, 0, 65539, -3014674, 0, 65537, -3014673, 0, 65538, -3014672, 0, 65538, -3014671, 0, 65538, -3014670, 0, 65538, -3014669, 0, 65538, -3014668, 0, 65538, -3014667, 0, 65538, -3014666, 0, 65538, -3014665, 0, 65538, -3014664, 0, 65538, -3014663, 0, 65538, -3014662, 0, 65538, -3014661, 0, 65538, -3014660, 0, 65538, -3014659, 0, 65538, -3014658, 0, 65538, -3014657, 0, 65538, -3080192, 0, 65538, -3080191, 0, 65538, -3080190, 0, 65538, -3080189, 0, 65538, -3080188, 0, 65538, -3080187, 0, 65538, -3080186, 0, 65538, -3080185, 0, 65538, -3080184, 0, 65538, -3080183, 0, 65538, -3080182, 0, 65538, -3080181, 0, 65538, -3080180, 0, 65538, -3080179, 0, 65538, -3080178, 0, 65538, -3080177, 0, 65538, -3080176, 0, 65538, -3080175, 0, 65538, -3080174, 0, 65538, -3080173, 0, 65538, -3080172, 0, 65538, -3080171, 0, 65538, -3080170, 0, 65538, -3080169, 0, 65538, -3080168, 0, 65538, -3080167, 0, 65538, -3080166, 0, 65538, -3080165, 0, 65538, -3080164, 0, 65538, -3080163, 0, 65538, -3080162, 0, 65538, -3080161, 0, 65538, -3080160, 0, 65538, -3080159, 0, 65538, -3080158, 0, 65538, -3080157, 0, 65538, -3080156, 0, 65538, -3080155, 0, 65539, -2949138, 0, 65537, -2949137, 0, 65538, -2949136, 0, 65538, -2949135, 0, 65538, -2949134, 0, 65538, -2949133, 0, 65538, -2949132, 0, 65538, -2949131, 0, 65538, -2949130, 0, 65538, -2949129, 0, 65538, -2949128, 0, 65538, -2949127, 0, 65538, -2949126, 0, 65538, -2949125, 0, 65538, -2949124, 0, 65538, -2949123, 0, 65538, -2949122, 0, 65538, -2949121, 0, 65538, -3014656, 0, 65538, -3014655, 0, 65538, -3014654, 0, 65538, -3014653, 0, 65538, -3014652, 0, 65538, -3014651, 0, 65538, -3014650, 0, 65538, -3014649, 0, 65538, -3014648, 0, 65538, -3014647, 0, 65538, -3014646, 0, 65538, -3014645, 0, 65538, -3014644, 0, 65538, -3014643, 0, 65538, -3014642, 0, 65538, -3014641, 0, 65538, -3014640, 0, 65538, -3014639, 0, 65538, -3014638, 0, 65538, -3014637, 0, 65538, -3014636, 0, 65538, -3014635, 0, 65538, -3014634, 0, 65538, -3014633, 0, 65538, -3014632, 0, 65538, -3014631, 0, 65538, -3014630, 0, 65538, -3014629, 0, 65538, -3014628, 0, 65538, -3014627, 0, 65538, -3014626, 0, 65538, -3014625, 0, 65538, -3014624, 0, 65538, -3014623, 0, 65538, -3014622, 0, 65538, -3014621, 0, 65538, -3014620, 0, 65538, -3014619, 0, 65539, -2883602, 0, 65537, -2883601, 0, 65538, -2883600, 0, 65538, -2883599, 0, 65538, -2883598, 0, 65538, -2883597, 0, 65538, -2883596, 0, 65538, -2883595, 0, 65538, -2883594, 0, 65538, -2883593, 0, 65538, -2883592, 0, 65538, -2883591, 0, 65538, -2883590, 0, 65538, -2883589, 0, 65538, -2883588, 0, 65538, -2883587, 0, 65538, -2883586, 0, 65538, -2883585, 0, 65538, -2949120, 0, 65538, -2949119, 0, 65538, -2949118, 0, 65538, -2949117, 0, 65538, -2949116, 0, 65538, -2949115, 0, 65538, -2949114, 0, 65538, -2949113, 0, 65538, -2949112, 0, 65538, -2949111, 0, 65538, -2949110, 0, 65538, -2949109, 0, 65538, -2949108, 0, 65538, -2949107, 0, 65538, -2949106, 0, 65538, -2949105, 0, 65538, -2949104, 0, 65538, -2949103, 0, 65538, -2949102, 0, 65538, -2949101, 0, 65538, -2949100, 0, 65538, -2949099, 0, 65538, -2949098, 0, 65538, -2949097, 0, 65538, -2949096, 0, 65538, -2949095, 0, 65538, -2949094, 0, 65538, -2949093, 0, 65538, -2949092, 0, 65538, -2949091, 0, 65538, -2949090, 0, 65538, -2949089, 0, 65538, -2949088, 0, 65538, -2949087, 0, 65538, -2949086, 0, 65538, -2949085, 0, 65538, -2949084, 0, 65538, -2949083, 0, 65539, -2818066, 0, 65537, -2818065, 0, 65538, -2818064, 0, 65538, -2818063, 0, 65538, -2818062, 0, 65538, -2818061, 0, 65538, -2818060, 0, 65538, -2818059, 0, 65538, -2818058, 0, 65538, -2818057, 0, 65538, -2818056, 0, 65538, -2818055, 0, 65538, -2818054, 0, 65538, -2818053, 0, 65538, -2818052, 0, 65538, -2818051, 0, 65538, -2818050, 0, 65538, -2818049, 0, 65538, -2883584, 0, 65538, -2883583, 0, 65538, -2883582, 0, 65538, -2883581, 0, 65538, -2883580, 0, 65538, -2883579, 0, 65538, -2883578, 0, 65538, -2883577, 0, 65538, -2883576, 0, 65538, -2883575, 0, 65538, -2883574, 0, 65538, -2883573, 0, 65538, -2883572, 0, 65538, -2883571, 0, 65538, -2883570, 0, 65538, -2883569, 0, 65538, -2883568, 0, 65538, -2883567, 0, 65538, -2883566, 0, 65538, -2883565, 0, 65538, -2883564, 0, 65538, -2883563, 0, 65538, -2883562, 0, 65538, -2883561, 0, 65538, -2883560, 0, 65538, -2883559, 0, 65538, -2883558, 0, 65538, -2883557, 0, 65538, -2883556, 0, 65538, -2883555, 0, 65538, -2883554, 0, 65538, -2883553, 0, 65538, -2883552, 0, 65538, -2883551, 0, 65538, -2883550, 0, 65538, -2883549, 0, 65538, -2883548, 0, 65538, -2883547, 0, 65539, -2752530, 0, 65537, -2752529, 0, 65538, -2752528, 0, 65538, -2752527, 0, 65538, -2752526, 0, 65538, -2752525, 0, 65538, -2752524, 0, 65538, -2752523, 0, 65538, -2752522, 0, 65538, -2752521, 0, 65538, -2752520, 0, 65538, -2752519, 0, 65538, -2752518, 0, 65538, -2752517, 0, 65538, -2752516, 0, 65538, -2752515, 0, 65538, -2752514, 0, 65538, -2752513, 0, 65538, -2818048, 0, 65538, -2818047, 0, 65538, -2818046, 0, 65538, -2818045, 0, 65538, -2818044, 0, 65538, -2818043, 0, 65538, -2818042, 0, 65538, -2818041, 0, 65538, -2818040, 0, 65538, -2818039, 0, 65538, -2818038, 0, 65538, -2818037, 0, 65538, -2818036, 0, 65538, -2818035, 0, 65538, -2818034, 0, 65538, -2818033, 0, 65538, -2818032, 0, 65538, -2818031, 0, 65538, -2818030, 0, 65538, -2818029, 0, 65538, -2818028, 0, 65538, -2818027, 0, 65538, -2818026, 0, 65538, -2818025, 0, 65538, -2818024, 0, 65538, -2818023, 0, 65538, -2818022, 0, 65538, -2818021, 0, 65538, -2818020, 0, 65538, -2818019, 0, 65538, -2818018, 0, 65538, -2818017, 0, 65538, -2818016, 0, 65538, -2818015, 0, 65538, -2818014, 0, 65538, -2818013, 0, 65538, -2818012, 0, 65538, -2818011, 0, 65539, -2686994, 0, 65537, -2686993, 0, 65538, -2686992, 0, 65538, -2686991, 0, 65538, -2686990, 0, 65538, -2686989, 0, 65538, -2686988, 0, 65538, -2686987, 0, 65538, -2686986, 0, 65538, -2686985, 0, 65538, -2686984, 0, 65538, -2686983, 0, 65538, -2686982, 0, 65538, -2686981, 0, 65538, -2686980, 0, 65538, -2686979, 0, 65538, -2686978, 0, 65542, -2686977, 0, 131074, -2752512, 0, 131074, -2752511, 0, 131074, -2752510, 0, 131074, -2752509, 0, 131074, -2752508, 0, 131074, -2752507, 0, 131074, -2752506, 0, 131074, -2752505, 0, 131074, -2752504, 0, 131074, -2752503, 0, 131074, -2752502, 0, 131074, -2752501, 0, 131074, -2752500, 0, 131074, -2752499, 0, 131074, -2752498, 0, 131074, -2752497, 0, 131074, -2752496, 0, 131074, -2752495, 0, 131074, -2752494, 0, 131074, -2752493, 0, 131074, -2752492, 0, 131074, -2752491, 0, 131074, -2752490, 0, 131074, -2752489, 0, 131074, -2752488, 0, 131074, -2752487, 0, 131074, -2752486, 0, 65543, -2752485, 0, 65538, -2752484, 0, 65538, -2752483, 0, 65538, -2752482, 0, 65538, -2752481, 0, 65538, -2752480, 0, 65538, -2752479, 0, 65538, -2752478, 0, 65538, -2752477, 0, 65538, -2752476, 0, 65538, -2752475, 0, 65539, -2621458, 0, 65537, -2621457, 0, 65538, -2621456, 0, 65538, -2621455, 0, 65538, -2621454, 0, 65538, -2621453, 0, 65538, -2621452, 0, 65538, -2621451, 0, 65538, -2621450, 0, 65538, -2621449, 0, 65538, -2621448, 0, 65538, -2621447, 0, 65538, -2621446, 0, 65538, -2621445, 0, 65538, -2621444, 0, 65538, -2621443, 0, 65538, -2621442, 0, 65539, -2686950, 0, 65537, -2686949, 0, 65538, -2686948, 0, 65538, -2686947, 0, 65538, -2686946, 0, 65538, -2686945, 0, 65538, -2686944, 0, 65538, -2686943, 0, 65538, -2686942, 0, 65538, -2686941, 0, 65538, -2686940, 0, 65538, -2686939, 0, 65539, -2555922, 0, 65537, -2555921, 0, 65538, -2555920, 0, 65538, -2555919, 0, 65538, -2555918, 0, 65538, -2555917, 0, 65538, -2555916, 0, 65538, -2555915, 0, 65538, -2555914, 0, 65538, -2555913, 0, 65538, -2555912, 0, 65538, -2555911, 0, 65538, -2555910, 0, 65538, -2555909, 0, 65538, -2555908, 0, 65538, -2555907, 0, 65538, -2555906, 0, 65539, -2621415, 0, 1, -2621414, 0, 131079, -2621413, 0, 65538, -2621412, 0, 65538, -2621411, 0, 65538, -2621410, 0, 65538, -2621409, 0, 65538, -2621408, 0, 65538, -2621407, 0, 65538, -2621406, 0, 65538, -2621405, 0, 65538, -2621404, 0, 65538, -2621403, 0, 65539, -2490386, 0, 65537, -2490385, 0, 65538, -2490384, 0, 65538, -2490383, 0, 65538, -2490382, 0, 65538, -2490381, 0, 65538, -2490380, 0, 65538, -2490379, 0, 65538, -2490378, 0, 65538, -2490377, 0, 65538, -2490376, 0, 65538, -2490375, 0, 65538, -2490374, 0, 65538, -2490373, 0, 65538, -2490372, 0, 65538, -2490371, 0, 65538, -2490370, 0, 65539, -2555879, 0, 65537, -2555878, 0, 65538, -2555877, 0, 65538, -2555876, 0, 65538, -2555875, 0, 65538, -2555874, 0, 65538, -2555873, 0, 65538, -2555872, 0, 65538, -2555871, 0, 65538, -2555870, 0, 65538, -2555869, 0, 65538, -2555868, 0, 65538, -2555867, 0, 65539, -2424850, 0, 65537, -2424849, 0, 65538, -2424848, 0, 65538, -2424847, 0, 65538, -2424846, 0, 65538, -2424845, 0, 65538, -2424844, 0, 65538, -2424843, 0, 65538, -2424842, 0, 65538, -2424841, 0, 65538, -2424840, 0, 65538, -2424839, 0, 65538, -2424838, 0, 65538, -2424837, 0, 65538, -2424836, 0, 65538, -2424835, 0, 65538, -2424834, 0, 65539, -2490343, 0, 65537, -2490342, 0, 65538, -2490341, 0, 65538, -2490340, 0, 65538, -2490339, 0, 65538, -2490338, 0, 65538, -2490337, 0, 65538, -2490336, 0, 65538, -2490335, 0, 65538, -2490334, 0, 65538, -2490333, 0, 65538, -2490332, 0, 65538, -2490331, 0, 65539, -2359314, 0, 65537, -2359313, 0, 65538, -2359312, 0, 65538, -2359311, 0, 65538, -2359310, 0, 65538, -2359309, 0, 65538, -2359308, 0, 65538, -2359307, 0, 65538, -2359306, 0, 65538, -2359305, 0, 65538, -2359304, 0, 65538, -2359303, 0, 65538, -2359302, 0, 65538, -2359301, 0, 65538, -2359300, 0, 65538, -2359299, 0, 65538, -2359298, 0, 65539, -2424807, 0, 65537, -2424806, 0, 65538, -2424805, 0, 65538, -2424804, 0, 65538, -2424803, 0, 65538, -2424802, 0, 65538, -2424801, 0, 65538, -2424800, 0, 65538, -2424799, 0, 65538, -2424798, 0, 65538, -2424797, 0, 65538, -2424796, 0, 65538, -2424795, 0, 65539, -2293778, 0, 65537, -2293777, 0, 65538, -2293776, 0, 65538, -2293775, 0, 65538, -2293774, 0, 65538, -2293773, 0, 65538, -2293772, 0, 65538, -2293771, 0, 65538, -2293770, 0, 65538, -2293769, 0, 65538, -2293768, 0, 65538, -2293767, 0, 65538, -2293766, 0, 65538, -2293765, 0, 65538, -2293764, 0, 65538, -2293763, 0, 65538, -2293762, 0, 65539, -2359271, 0, 65537, -2359270, 0, 65538, -2359269, 0, 65538, -2359268, 0, 65538, -2359267, 0, 65538, -2359266, 0, 65538, -2359265, 0, 65538, -2359264, 0, 65538, -2359263, 0, 65538, -2359262, 0, 65538, -2359261, 0, 65538, -2359260, 0, 65538, -2359259, 0, 65539, -2228242, 0, 65537, -2228241, 0, 65538, -2228240, 0, 65538, -2228239, 0, 65538, -2228238, 0, 65538, -2228237, 0, 65538, -2228236, 0, 65538, -2228235, 0, 65538, -2228234, 0, 65538, -2228233, 0, 65538, -2228232, 0, 65538, -2228231, 0, 65538, -2228230, 0, 65538, -2228229, 0, 65538, -2228228, 0, 65538, -2228227, 0, 65538, -2228226, 0, 65539, -2293735, 0, 131073, -2293734, 0, 65543, -2293733, 0, 65538, -2293732, 0, 65538, -2293731, 0, 65538, -2293730, 0, 65538, -2293729, 0, 65538, -2293728, 0, 65538, -2293727, 0, 65538, -2293726, 0, 65538, -2293725, 0, 65538, -2293724, 0, 65538, -2293723, 0, 65539, -2162706, 0, 65537, -2162705, 0, 65538, -2162704, 0, 65538, -2162703, 0, 65538, -2162702, 0, 65538, -2162701, 0, 65538, -2162700, 0, 65538, -2162699, 0, 65538, -2162698, 0, 65538, -2162697, 0, 65538, -2162696, 0, 65538, -2162695, 0, 65538, -2162694, 0, 65538, -2162693, 0, 65538, -2162692, 0, 65538, -2162691, 0, 65538, -2162690, 0, 65539, -2228198, 0, 65537, -2228197, 0, 65538, -2228196, 0, 65538, -2228195, 0, 65538, -2228194, 0, 65538, -2228193, 0, 65538, -2228192, 0, 65538, -2228191, 0, 65538, -2228190, 0, 65538, -2228189, 0, 65538, -2228188, 0, 65538, -2228187, 0, 65539, -2097170, 0, 65537, -2097169, 0, 65538, -2097168, 0, 65538, -2097167, 0, 65538, -2097166, 0, 65538, -2097165, 0, 65538, -2097164, 0, 65538, -2097163, 0, 65538, -2097162, 0, 65538, -2097161, 0, 65538, -2097160, 0, 65538, -2097159, 0, 65538, -2097158, 0, 65538, -2097157, 0, 65538, -2097156, 0, 65538, -2097155, 0, 65538, -2097154, 0, 65539, -2162662, 0, 65537, -2162661, 0, 65538, -2162660, 0, 65538, -2162659, 0, 65538, -2162658, 0, 65538, -2162657, 0, 65538, -2162656, 0, 65538, -2162655, 0, 65538, -2162654, 0, 65538, -2162653, 0, 65538, -2162652, 0, 65538, -2162651, 0, 65539, -2031634, 0, 65537, -2031633, 0, 65538, -2031632, 0, 65538, -2031631, 0, 65538, -2031630, 0, 65538, -2031629, 0, 65538, -2031628, 0, 65538, -2031627, 0, 65538, -2031626, 0, 65538, -2031625, 0, 65538, -2031624, 0, 65538, -2031623, 0, 65538, -2031622, 0, 65538, -2031621, 0, 65538, -2031620, 0, 65538, -2031619, 0, 65538, -2031618, 0, 131078, -2031617, 0, 3, -2097126, 0, 65537, -2097125, 0, 65538, -2097124, 0, 65538, -2097123, 0, 65538, -2097122, 0, 65538, -2097121, 0, 65538, -2097120, 0, 65538, -2097119, 0, 65538, -2097118, 0, 65538, -2097117, 0, 65538, -2097116, 0, 65538, -2097115, 0, 65539, -1966098, 0, 65537, -1966097, 0, 65538, -1966096, 0, 65538, -1966095, 0, 65538, -1966094, 0, 65538, -1966093, 0, 65538, -1966092, 0, 65538, -1966091, 0, 65538, -1966090, 0, 65538, -1966089, 0, 65538, -1966088, 0, 65538, -1966087, 0, 65538, -1966086, 0, 65538, -1966085, 0, 65538, -1966084, 0, 65538, -1966083, 0, 65538, -1966082, 0, 65538, -1966081, 0, 65539, -2031591, 0, 1, -2031590, 0, 131079, -2031589, 0, 65538, -2031588, 0, 65538, -2031587, 0, 65538, -2031586, 0, 65538, -2031585, 0, 65538, -2031584, 0, 65538, -2031583, 0, 65538, -2031582, 0, 65538, -2031581, 0, 65538, -2031580, 0, 65538, -2031579, 0, 65539, -1900562, 0, 65537, -1900561, 0, 65538, -1900560, 0, 65538, -1900559, 0, 65538, -1900558, 0, 65538, -1900557, 0, 65538, -1900556, 0, 65538, -1900555, 0, 65538, -1900554, 0, 65538, -1900553, 0, 65538, -1900552, 0, 65538, -1900551, 0, 65538, -1900550, 0, 65538, -1900549, 0, 65538, -1900548, 0, 65538, -1900547, 0, 65538, -1900546, 0, 65538, -1900545, 0, 65539, -1966055, 0, 65537, -1966054, 0, 65538, -1966053, 0, 65538, -1966052, 0, 65538, -1966051, 0, 65538, -1966050, 0, 65538, -1966049, 0, 65538, -1966048, 0, 65538, -1966047, 0, 65538, -1966046, 0, 65538, -1966045, 0, 65538, -1966044, 0, 65538, -1966043, 0, 65539, -1835026, 0, 65537, -1835025, 0, 65538, -1835024, 0, 65538, -1835023, 0, 65538, -1835022, 0, 65538, -1835021, 0, 65538, -1835020, 0, 65538, -1835019, 0, 65538, -1835018, 0, 65538, -1835017, 0, 65538, -1835016, 0, 65538, -1835015, 0, 65538, -1835014, 0, 65538, -1835013, 0, 65538, -1835012, 0, 65538, -1835011, 0, 65538, -1835010, 0, 65538, -1835009, 0, 65539, -1900540, 0, 1, -1900539, 0, 3, -1900519, 0, 65537, -1900518, 0, 65538, -1900517, 0, 65538, -1900516, 0, 65538, -1900515, 0, 65538, -1900514, 0, 65538, -1900513, 0, 65538, -1900512, 0, 65538, -1900511, 0, 65538, -1900510, 0, 65538, -1900509, 0, 65538, -1900508, 0, 65538, -1900507, 0, 65539, -1769490, 0, 65537, -1769489, 0, 65538, -1769488, 0, 65538, -1769487, 0, 65538, -1769486, 0, 65538, -1769485, 0, 65538, -1769484, 0, 65538, -1769483, 0, 65538, -1769482, 0, 65538, -1769481, 0, 65538, -1769480, 0, 65538, -1769479, 0, 65538, -1769478, 0, 65538, -1769477, 0, 65538, -1769476, 0, 65538, -1769475, 0, 65538, -1769474, 0, 65538, -1769473, 0, 131078, -1835008, 0, 3, -1835004, 0, 65537, -1835003, 0, 131078, -1835002, 0, 3, -1834989, 0, 4, -1834983, 0, 65537, -1834982, 0, 65538, -1834981, 0, 65538, -1834980, 0, 65538, -1834979, 0, 65538, -1834978, 0, 65538, -1834977, 0, 65538, -1834976, 0, 65538, -1834975, 0, 65538, -1834974, 0, 65538, -1834973, 0, 65538, -1834972, 0, 65538, -1834971, 0, 65539, -1703954, 0, 65537, -1703953, 0, 65538, -1703952, 0, 65538, -1703951, 0, 65538, -1703950, 0, 65538, -1703949, 0, 65538, -1703948, 0, 65538, -1703947, 0, 65538, -1703946, 0, 65538, -1703945, 0, 65538, -1703944, 0, 65538, -1703943, 0, 65538, -1703942, 0, 65538, -1703941, 0, 65538, -1703940, 0, 65538, -1703939, 0, 65538, -1703938, 0, 65538, -1703937, 0, 65538, -1769472, 0, 131078, -1769471, 0, 3, -1769469, 0, 1, -1769468, 0, 131079, -1769467, 0, 65538, -1769466, 0, 131078, -1769465, 0, 3, -1769461, 0, 4, -1769456, 0, 1, -1769455, 0, 3, -1769453, 0, 65540, -1769447, 0, 65537, -1769446, 0, 65538, -1769445, 0, 65538, -1769444, 0, 65538, -1769443, 0, 65538, -1769442, 0, 65538, -1769441, 0, 65538, -1769440, 0, 65538, -1769439, 0, 65538, -1769438, 0, 65538, -1769437, 0, 65538, -1769436, 0, 65538, -1769435, 0, 65539, -1638418, 0, 65537, -1638417, 0, 65538, -1638416, 0, 65538, -1638415, 0, 65538, -1638414, 0, 65538, -1638413, 0, 65538, -1638412, 0, 65538, -1638411, 0, 65538, -1638410, 0, 65538, -1638409, 0, 65538, -1638408, 0, 65538, -1638407, 0, 65538, -1638406, 0, 65538, -1638405, 0, 65538, -1638404, 0, 65538, -1638403, 0, 65538, -1638402, 0, 65538, -1638401, 0, 65538, -1703936, 0, 65538, -1703935, 0, 131078, -1703934, 0, 2, -1703933, 0, 131079, -1703932, 0, 65538, -1703931, 0, 65538, -1703930, 0, 65538, -1703929, 0, 131078, -1703928, 0, 2, -1703927, 0, 2, -1703926, 0, 2, -1703925, 0, 131080, -1703923, 0, 4, -1703920, 0, 65537, -1703919, 0, 131078, -1703918, 0, 2, -1703917, 0, 131080, -1703914, 0, 4, -1703911, 0, 65537, -1703910, 0, 65538, -1703909, 0, 65538, -1703908, 0, 65538, -1703907, 0, 65538, -1703906, 0, 65538, -1703905, 0, 65538, -1703904, 0, 65538, -1703903, 0, 65538, -1703902, 0, 65538, -1703901, 0, 65538, -1703900, 0, 65538, -1703899, 0, 65539, -1572882, 0, 65537, -1572881, 0, 65538, -1572880, 0, 65538, -1572879, 0, 65538, -1572878, 0, 65538, -1572877, 0, 65538, -1572876, 0, 65538, -1572875, 0, 65538, -1572874, 0, 65538, -1572873, 0, 65538, -1572872, 0, 65538, -1572871, 0, 65538, -1572870, 0, 65538, -1572869, 0, 65538, -1572868, 0, 65538, -1572867, 0, 65538, -1572866, 0, 65538, -1572865, 0, 65538, -1638400, 0, 65538, -1638399, 0, 65538, -1638398, 0, 65538, -1638397, 0, 65538, -1638396, 0, 65538, -1638395, 0, 65538, -1638394, 0, 65538, -1638393, 0, 65538, -1638392, 0, 65538, -1638391, 0, 65538, -1638390, 0, 65538, -1638389, 0, 65539, -1638387, 0, 131077, -1638386, 0, 2, -1638385, 0, 2, -1638384, 0, 131079, -1638383, 0, 65538, -1638382, 0, 65538, -1638381, 0, 131078, -1638380, 0, 2, -1638379, 0, 2, -1638378, 0, 131081, -1638377, 0, 2, -1638376, 0, 2, -1638375, 0, 131079, -1638374, 0, 65538, -1638373, 0, 65538, -1638372, 0, 65538, -1638371, 0, 65538, -1638370, 0, 65538, -1638369, 0, 65538, -1638368, 0, 65538, -1638367, 0, 65538, -1638366, 0, 65538, -1638365, 0, 65538, -1638364, 0, 65538, -1638363, 0, 65539, -1507346, 0, 65537, -1507345, 0, 65538, -1507344, 0, 65538, -1507343, 0, 65538, -1507342, 0, 65538, -1507341, 0, 65538, -1507340, 0, 65538, -1507339, 0, 65538, -1507338, 0, 65538, -1507337, 0, 65538, -1507336, 0, 65538, -1507335, 0, 65538, -1507334, 0, 65538, -1507333, 0, 65538, -1507332, 0, 65538, -1507331, 0, 65538, -1507330, 0, 65538, -1507329, 0, 65538, -1572864, 0, 65538, -1572863, 0, 65538, -1572862, 0, 65538, -1572861, 0, 65538, -1572860, 0, 65538, -1572859, 0, 65538, -1572858, 0, 65538, -1572857, 0, 65538, -1572856, 0, 65538, -1572855, 0, 65538, -1572854, 0, 65538, -1572853, 0, 65539, -1572851, 0, 65537, -1572850, 0, 65538, -1572849, 0, 65538, -1572848, 0, 65538, -1572847, 0, 65538, -1572846, 0, 65538, -1572845, 0, 65538, -1572844, 0, 65538, -1572843, 0, 65538, -1572842, 0, 65538, -1572841, 0, 65538, -1572840, 0, 65538, -1572839, 0, 65538, -1572838, 0, 65538, -1572837, 0, 65538, -1572836, 0, 65538, -1572835, 0, 65538, -1572834, 0, 65538, -1572833, 0, 65538, -1572832, 0, 65538, -1572831, 0, 65538, -1572830, 0, 65538, -1572829, 0, 65538, -1572828, 0, 65538, -1572827, 0, 65539, -1441810, 0, 65537, -1441809, 0, 65538, -1441808, 0, 65538, -1441807, 0, 65538, -1441806, 0, 65538, -1441805, 0, 65538, -1441804, 0, 65538, -1441803, 0, 65538, -1441802, 0, 65538, -1441801, 0, 65538, -1441800, 0, 65538, -1441799, 0, 65538, -1441798, 0, 65538, -1441797, 0, 65538, -1441796, 0, 65538, -1441795, 0, 65538, -1441794, 0, 65538, -1441793, 0, 65538, -1507328, 0, 65538, -1507327, 0, 65538, -1507326, 0, 65538, -1507325, 0, 65538, -1507324, 0, 65538, -1507323, 0, 65538, -1507322, 0, 65538, -1507321, 0, 65538, -1507320, 0, 65538, -1507319, 0, 65538, -1507318, 0, 65538, -1507317, 0, 65539, -1507315, 0, 65537, -1507314, 0, 65538, -1507313, 0, 65538, -1507312, 0, 65538, -1507311, 0, 65538, -1507310, 0, 65538, -1507309, 0, 65538, -1507308, 0, 65538, -1507307, 0, 65538, -1507306, 0, 65538, -1507305, 0, 65538, -1507304, 0, 65538, -1507303, 0, 65538, -1507302, 0, 65538, -1507301, 0, 65538, -1507300, 0, 65538, -1507299, 0, 65538, -1507298, 0, 65538, -1507297, 0, 65538, -1507296, 0, 65538, -1507295, 0, 65538, -1507294, 0, 65538, -1507293, 0, 65538, -1507292, 0, 65538, -1507291, 0, 65539, -1376274, 0, 65537, -1376273, 0, 65538, -1376272, 0, 65538, -1376271, 0, 65538, -1376270, 0, 65538, -1376269, 0, 65538, -1376268, 0, 65538, -1376267, 0, 65538, -1376266, 0, 65538, -1376265, 0, 65538, -1376264, 0, 65538, -1376263, 0, 65538, -1376262, 0, 65538, -1376261, 0, 65538, -1376260, 0, 65538, -1376259, 0, 65538, -1376258, 0, 65538, -1376257, 0, 65538, -1441792, 0, 65538, -1441791, 0, 65538, -1441790, 0, 65538, -1441789, 0, 65538, -1441788, 0, 65538, -1441787, 0, 65538, -1441786, 0, 65538, -1441785, 0, 65538, -1441784, 0, 65538, -1441783, 0, 65538, -1441782, 0, 65538, -1441781, 0, 65539, -1441779, 0, 65537, -1441778, 0, 65538, -1441777, 0, 65538, -1441776, 0, 65538, -1441775, 0, 65538, -1441774, 0, 65538, -1441773, 0, 65538, -1441772, 0, 65538, -1441771, 0, 65538, -1441770, 0, 65538, -1441769, 0, 65538, -1441768, 0, 65538, -1441767, 0, 65538, -1441766, 0, 65538, -1441765, 0, 65538, -1441764, 0, 65538, -1441763, 0, 65538, -1441762, 0, 65538, -1441761, 0, 65538, -1441760, 0, 65538, -1441759, 0, 65538, -1441758, 0, 65538, -1441757, 0, 65538, -1441756, 0, 65538, -1441755, 0, 65539, -1310738, 0, 65537, -1310737, 0, 65538, -1310736, 0, 65538, -1310735, 0, 65538, -1310734, 0, 65538, -1310733, 0, 65538, -1310732, 0, 65538, -1310731, 0, 65538, -1310730, 0, 65538, -1310729, 0, 65538, -1310728, 0, 65538, -1310727, 0, 65538, -1310726, 0, 65538, -1310725, 0, 65538, -1310724, 0, 65538, -1310723, 0, 65538, -1310722, 0, 65538, -1310721, 0, 65538, -1376256, 0, 65538, -1376255, 0, 65538, -1376254, 0, 65538, -1376253, 0, 65538, -1376252, 0, 65538, -1376251, 0, 65538, -1376250, 0, 65538, -1376249, 0, 65538, -1376248, 0, 65538, -1376247, 0, 65538, -1376246, 0, 65538, -1376245, 0, 131078, -1376244, 0, 6, -1376243, 0, 196615, -1376242, 0, 65543, -1376241, 0, 65538, -1376240, 0, 65538, -1376239, 0, 65538, -1376238, 0, 65538, -1376237, 0, 65538, -1376236, 0, 65538, -1376235, 0, 65538, -1376234, 0, 65538, -1376233, 0, 65538, -1376232, 0, 65538, -1376231, 0, 65538, -1376230, 0, 65538, -1376229, 0, 65538, -1376228, 0, 65538, -1376227, 0, 65538, -1376226, 0, 65538, -1376225, 0, 65538, -1376224, 0, 65538, -1376223, 0, 65538, -1376222, 0, 65538, -1376221, 0, 65538, -1376220, 0, 65538, -1376219, 0, 65539, -1245202, 0, 65537, -1245201, 0, 65538, -1245200, 0, 65538, -1245199, 0, 65538, -1245198, 0, 65538, -1245197, 0, 65538, -1245196, 0, 65538, -1245195, 0, 65538, -1245194, 0, 65538, -1245193, 0, 65538, -1245192, 0, 65538, -1245191, 0, 65538, -1245190, 0, 65538, -1245189, 0, 65538, -1245188, 0, 65538, -1245187, 0, 65538, -1245186, 0, 65538, -1245185, 0, 65538, -1310720, 0, 65538, -1310719, 0, 65538, -1310718, 0, 65538, -1310717, 0, 65538, -1310716, 0, 65538, -1310715, 0, 65538, -1310714, 0, 65538, -1310713, 0, 65538, -1310712, 0, 65538, -1310711, 0, 65538, -1310710, 0, 65538, -1310709, 0, 65538, -1310708, 0, 65539, -1310706, 0, 65537, -1310705, 0, 65538, -1310704, 0, 65538, -1310703, 0, 65538, -1310702, 0, 65538, -1310701, 0, 65538, -1310700, 0, 65538, -1310699, 0, 65538, -1310698, 0, 65538, -1310697, 0, 65538, -1310696, 0, 65538, -1310695, 0, 65538, -1310694, 0, 65538, -1310693, 0, 65538, -1310692, 0, 65538, -1310691, 0, 65538, -1310690, 0, 65538, -1310689, 0, 65538, -1310688, 0, 65538, -1310687, 0, 65538, -1310686, 0, 65538, -1310685, 0, 65538, -1310684, 0, 65538, -1310683, 0, 65539, -1179666, 0, 65537, -1179665, 0, 65538, -1179664, 0, 65538, -1179663, 0, 65538, -1179662, 0, 65538, -1179661, 0, 65538, -1179660, 0, 65538, -1179659, 0, 65538, -1179658, 0, 65538, -1179657, 0, 65538, -1179656, 0, 65538, -1179655, 0, 65538, -1179654, 0, 65538, -1179653, 0, 65538, -1179652, 0, 65538, -1179651, 0, 65538, -1179650, 0, 65538, -1179649, 0, 65538, -1245184, 0, 65538, -1245183, 0, 65538, -1245182, 0, 65538, -1245181, 0, 65538, -1245180, 0, 65538, -1245179, 0, 65538, -1245178, 0, 65538, -1245177, 0, 65538, -1245176, 0, 65538, -1245175, 0, 65538, -1245174, 0, 65538, -1245173, 0, 65538, -1245172, 0, 65539, -1245170, 0, 65537, -1245169, 0, 65538, -1245168, 0, 65538, -1245167, 0, 65538, -1245166, 0, 65538, -1245165, 0, 65538, -1245164, 0, 65538, -1245163, 0, 65538, -1245162, 0, 65538, -1245161, 0, 65538, -1245160, 0, 65538, -1245159, 0, 65538, -1245158, 0, 65538, -1245157, 0, 65538, -1245156, 0, 65538, -1245155, 0, 65538, -1245154, 0, 65538, -1245153, 0, 65538, -1245152, 0, 65538, -1245151, 0, 65538, -1245150, 0, 65538, -1245149, 0, 65538, -1245148, 0, 65538, -1245147, 0, 65539, -1114130, 0, 65537, -1114129, 0, 65538, -1114128, 0, 65538, -1114127, 0, 65538, -1114126, 0, 65538, -1114125, 0, 65538, -1114124, 0, 65538, -1114123, 0, 65538, -1114122, 0, 65538, -1114121, 0, 65538, -1114120, 0, 65538, -1114119, 0, 65538, -1114118, 0, 65538, -1114117, 0, 65538, -1114116, 0, 65538, -1114115, 0, 65538, -1114114, 0, 65538, -1114113, 0, 65538, -1179648, 0, 65538, -1179647, 0, 65538, -1179646, 0, 65538, -1179645, 0, 65538, -1179644, 0, 65538, -1179643, 0, 65538, -1179642, 0, 65538, -1179641, 0, 65538, -1179640, 0, 65538, -1179639, 0, 65538, -1179638, 0, 65538, -1179637, 0, 65538, -1179636, 0, 65539, -1179634, 0, 65537, -1179633, 0, 65538, -1179632, 0, 65538, -1179631, 0, 65538, -1179630, 0, 65538, -1179629, 0, 65538, -1179628, 0, 65538, -1179627, 0, 65538, -1179626, 0, 65538, -1179625, 0, 65538, -1179624, 0, 65538, -1179623, 0, 65538, -1179622, 0, 65538, -1179621, 0, 65538, -1179620, 0, 65538, -1179619, 0, 65538, -1179618, 0, 65538, -1179617, 0, 65538, -1179616, 0, 65538, -1179615, 0, 65538, -1179614, 0, 65538, -1179613, 0, 65538, -1179612, 0, 65538, -1179611, 0, 65539, -1048594, 0, 65537, -1048593, 0, 65538, -1048592, 0, 65538, -1048591, 0, 65538, -1048590, 0, 65538, -1048589, 0, 65538, -1048588, 0, 65538, -1048587, 0, 65538, -1048586, 0, 65538, -1048585, 0, 65538, -1048584, 0, 65538, -1048583, 0, 65538, -1048582, 0, 65538, -1048581, 0, 65538, -1048580, 0, 65538, -1048579, 0, 65538, -1048578, 0, 65538, -1048577, 0, 65538, -1114112, 0, 65538, -1114111, 0, 65538, -1114110, 0, 65538, -1114109, 0, 65538, -1114108, 0, 65538, -1114107, 0, 65538, -1114106, 0, 65538, -1114105, 0, 65538, -1114104, 0, 65538, -1114103, 0, 65538, -1114102, 0, 65538, -1114101, 0, 65538, -1114100, 0, 65539, -1114098, 0, 65537, -1114097, 0, 65538, -1114096, 0, 65538, -1114095, 0, 65538, -1114094, 0, 65538, -1114093, 0, 65538, -1114092, 0, 65538, -1114091, 0, 65538, -1114090, 0, 65538, -1114089, 0, 65538, -1114088, 0, 65538, -1114087, 0, 65538, -1114086, 0, 65538, -1114085, 0, 65538, -1114084, 0, 65538, -1114083, 0, 65538, -1114082, 0, 65538, -1114081, 0, 65538, -1114080, 0, 65538, -1114079, 0, 65538, -1114078, 0, 65538, -1114077, 0, 65538, -1114076, 0, 65538, -1114075, 0, 65539, -983058, 0, 65537, -983057, 0, 65538, -983056, 0, 65538, -983055, 0, 65538, -983054, 0, 65538, -983053, 0, 65538, -983052, 0, 65538, -983051, 0, 65538, -983050, 0, 65538, -983049, 0, 65538, -983048, 0, 65538, -983047, 0, 65538, -983046, 0, 65538, -983045, 0, 65538, -983044, 0, 65538, -983043, 0, 65538, -983042, 0, 65538, -983041, 0, 65538, -1048576, 0, 65538, -1048575, 0, 65538, -1048574, 0, 65538, -1048573, 0, 65538, -1048572, 0, 65538, -1048571, 0, 65538, -1048570, 0, 65538, -1048569, 0, 65538, -1048568, 0, 65538, -1048567, 0, 65538, -1048566, 0, 65538, -1048565, 0, 65542, -1048564, 0, 131075, -1048562, 0, 65537, -1048561, 0, 65538, -1048560, 0, 65538, -1048559, 0, 65538, -1048558, 0, 65538, -1048557, 0, 65538, -1048556, 0, 65538, -1048555, 0, 65538, -1048554, 0, 65538, -1048553, 0, 65538, -1048552, 0, 65538, -1048551, 0, 65538, -1048550, 0, 65538, -1048549, 0, 65538, -1048548, 0, 65538, -1048547, 0, 65538, -1048546, 0, 65538, -1048545, 0, 65538, -1048544, 0, 65538, -1048543, 0, 65538, -1048542, 0, 65538, -1048541, 0, 65538, -1048540, 0, 65538, -1048539, 0, 65539, -917522, 0, 65537, -917521, 0, 65538, -917520, 0, 65538, -917519, 0, 65538, -917518, 0, 65538, -917517, 0, 65538, -917516, 0, 65538, -917515, 0, 65538, -917514, 0, 65538, -917513, 0, 65538, -917512, 0, 65538, -917511, 0, 65538, -917510, 0, 65538, -917509, 0, 65538, -917508, 0, 65538, -917507, 0, 65538, -917506, 0, 65538, -917505, 0, 65538, -983040, 0, 65538, -983039, 0, 65538, -983038, 0, 65538, -983037, 0, 65538, -983036, 0, 65538, -983035, 0, 65538, -983034, 0, 65538, -983033, 0, 65538, -983032, 0, 65538, -983031, 0, 65538, -983030, 0, 65538, -983029, 0, 65539, -983026, 0, 65537, -983025, 0, 65538, -983024, 0, 65538, -983023, 0, 65538, -983022, 0, 65538, -983021, 0, 65538, -983020, 0, 65538, -983019, 0, 65538, -983018, 0, 65538, -983017, 0, 65538, -983016, 0, 65538, -983015, 0, 65538, -983014, 0, 65538, -983013, 0, 65538, -983012, 0, 65538, -983011, 0, 65538, -983010, 0, 65538, -983009, 0, 65538, -983008, 0, 65538, -983007, 0, 65538, -983006, 0, 65538, -983005, 0, 65538, -983004, 0, 65538, -983003, 0, 65539, -851986, 0, 65537, -851985, 0, 65538, -851984, 0, 65538, -851983, 0, 65538, -851982, 0, 65538, -851981, 0, 65538, -851980, 0, 65538, -851979, 0, 65538, -851978, 0, 65538, -851977, 0, 65538, -851976, 0, 65538, -851975, 0, 65538, -851974, 0, 65538, -851973, 0, 65538, -851972, 0, 65538, -851971, 0, 65538, -851970, 0, 65538, -851969, 0, 65538, -917504, 0, 65538, -917503, 0, 65538, -917502, 0, 65538, -917501, 0, 65538, -917500, 0, 65538, -917499, 0, 65538, -917498, 0, 65538, -917497, 0, 65538, -917496, 0, 65538, -917495, 0, 65538, -917494, 0, 65538, -917493, 0, 131078, -917492, 0, 2, -917491, 0, 2, -917490, 0, 131079, -917489, 0, 65538, -917488, 0, 65538, -917487, 0, 65538, -917486, 0, 65538, -917485, 0, 65538, -917484, 0, 65538, -917483, 0, 65538, -917482, 0, 65538, -917481, 0, 65538, -917480, 0, 65538, -917479, 0, 65538, -917478, 0, 65538, -917477, 0, 65538, -917476, 0, 65538, -917475, 0, 65538, -917474, 0, 65538, -917473, 0, 65538, -917472, 0, 65538, -917471, 0, 65538, -917470, 0, 65538, -917469, 0, 65538, -917468, 0, 65538, -917467, 0, 65539, -786450, 0, 65537, -786449, 0, 65538, -786448, 0, 65538, -786447, 0, 65538, -786446, 0, 65538, -786445, 0, 65538, -786444, 0, 65538, -786443, 0, 65538, -786442, 0, 65538, -786441, 0, 65538, -786440, 0, 65538, -786439, 0, 65538, -786438, 0, 65538, -786437, 0, 65538, -786436, 0, 65538, -786435, 0, 65538, -786434, 0, 65538, -786433, 0, 65538, -851968, 0, 65538, -851967, 0, 65538, -851966, 0, 65538, -851965, 0, 65538, -851964, 0, 65538, -851963, 0, 65538, -851962, 0, 65538, -851961, 0, 65538, -851960, 0, 65538, -851959, 0, 65538, -851958, 0, 65538, -851957, 0, 65538, -851956, 0, 65538, -851955, 0, 65538, -851954, 0, 65538, -851953, 0, 65538, -851952, 0, 65538, -851951, 0, 65538, -851950, 0, 65538, -851949, 0, 65538, -851948, 0, 65538, -851947, 0, 65538, -851946, 0, 65538, -851945, 0, 65538, -851944, 0, 65538, -851943, 0, 65538, -851942, 0, 65538, -851941, 0, 65538, -851940, 0, 65538, -851939, 0, 65538, -851938, 0, 65538, -851937, 0, 65538, -851936, 0, 65538, -851935, 0, 65538, -851934, 0, 65538, -851933, 0, 65538, -851932, 0, 65538, -851931, 0, 65539, -720914, 0, 65537, -720913, 0, 65538, -720912, 0, 65538, -720911, 0, 65538, -720910, 0, 65538, -720909, 0, 65538, -720908, 0, 65538, -720907, 0, 65538, -720906, 0, 65538, -720905, 0, 65538, -720904, 0, 65538, -720903, 0, 65538, -720902, 0, 65538, -720901, 0, 65538, -720900, 0, 65538, -720899, 0, 65538, -720898, 0, 65538, -720897, 0, 65538, -786432, 0, 65538, -786431, 0, 65538, -786430, 0, 65538, -786429, 0, 65538, -786428, 0, 65538, -786427, 0, 65538, -786426, 0, 65538, -786425, 0, 65538, -786424, 0, 65538, -786423, 0, 65538, -786422, 0, 65538, -786421, 0, 65538, -786420, 0, 65538, -786419, 0, 65538, -786418, 0, 65538, -786417, 0, 65538, -786416, 0, 65538, -786415, 0, 65538, -786414, 0, 65538, -786413, 0, 65538, -786412, 0, 65538, -786411, 0, 65538, -786410, 0, 65538, -786409, 0, 65538, -786408, 0, 65538, -786407, 0, 65538, -786406, 0, 65538, -786405, 0, 65538, -786404, 0, 65538, -786403, 0, 65538, -786402, 0, 65538, -786401, 0, 65538, -786400, 0, 65538, -786399, 0, 65538, -786398, 0, 65538, -786397, 0, 65538, -786396, 0, 65538, -786395, 0, 65539, -655378, 0, 65537, -655377, 0, 65538, -655376, 0, 65538, -655375, 0, 65538, -655374, 0, 65538, -655373, 0, 65538, -655372, 0, 65538, -655371, 0, 65538, -655370, 0, 65538, -655369, 0, 65538, -655368, 0, 65538, -655367, 0, 65538, -655366, 0, 65538, -655365, 0, 65538, -655364, 0, 65538, -655363, 0, 65538, -655362, 0, 65538, -655361, 0, 65538, -720896, 0, 65538, -720895, 0, 65538, -720894, 0, 65538, -720893, 0, 65538, -720892, 0, 65538, -720891, 0, 65538, -720890, 0, 65538, -720889, 0, 65538, -720888, 0, 65538, -720887, 0, 65538, -720886, 0, 65538, -720885, 0, 65538, -720884, 0, 65538, -720883, 0, 65538, -720882, 0, 65538, -720881, 0, 65538, -720880, 0, 65538, -720879, 0, 65538, -720878, 0, 65538, -720877, 0, 65538, -720876, 0, 65538, -720875, 0, 65538, -720874, 0, 65538, -720873, 0, 65538, -720872, 0, 65538, -720871, 0, 65538, -720870, 0, 65538, -720869, 0, 65538, -720868, 0, 65538, -720867, 0, 65538, -720866, 0, 65538, -720865, 0, 65538, -720864, 0, 65538, -720863, 0, 65538, -720862, 0, 65538, -720861, 0, 65538, -720860, 0, 65538, -720859, 0, 65539, -589842, 0, 65537, -589841, 0, 65538, -589840, 0, 65538, -589839, 0, 65538, -589838, 0, 65538, -589837, 0, 65538, -589836, 0, 65538, -589835, 0, 65538, -589834, 0, 65538, -589833, 0, 65538, -589832, 0, 65538, -589831, 0, 65538, -589830, 0, 65538, -589829, 0, 65538, -589828, 0, 65538, -589827, 0, 65538, -589826, 0, 65538, -589825, 0, 65538, -655360, 0, 65538, -655359, 0, 65538, -655358, 0, 65538, -655357, 0, 65538, -655356, 0, 65538, -655355, 0, 65538, -655354, 0, 65538, -655353, 0, 65538, -655352, 0, 65538, -655351, 0, 65538, -655350, 0, 65538, -655349, 0, 65538, -655348, 0, 65538, -655347, 0, 65538, -655346, 0, 65538, -655345, 0, 65538, -655344, 0, 65538, -655343, 0, 65538, -655342, 0, 65538, -655341, 0, 65538, -655340, 0, 65538, -655339, 0, 65538, -655338, 0, 65538, -655337, 0, 65538, -655336, 0, 65538, -655335, 0, 65538, -655334, 0, 65538, -655333, 0, 65538, -655332, 0, 65538, -655331, 0, 65538, -655330, 0, 65538, -655329, 0, 65538, -655328, 0, 65538, -655327, 0, 65538, -655326, 0, 65538, -655325, 0, 65538, -655324, 0, 65538, -655323, 0, 65539, -524306, 0, 65537, -524305, 0, 65538, -524304, 0, 65538, -524303, 0, 65538, -524302, 0, 65538, -524301, 0, 65538, -524300, 0, 65538, -524299, 0, 65538, -524298, 0, 65538, -524297, 0, 65538, -524296, 0, 65538, -524295, 0, 65538, -524294, 0, 65538, -524293, 0, 65538, -524292, 0, 65538, -524291, 0, 65538, -524290, 0, 65538, -524289, 0, 65538, -589824, 0, 65538, -589823, 0, 65538, -589822, 0, 65538, -589821, 0, 65538, -589820, 0, 65538, -589819, 0, 65538, -589818, 0, 65538, -589817, 0, 65538, -589816, 0, 65538, -589815, 0, 65538, -589814, 0, 65538, -589813, 0, 65538, -589812, 0, 65538, -589811, 0, 65538, -589810, 0, 65538, -589809, 0, 65538, -589808, 0, 65538, -589807, 0, 65538, -589806, 0, 65538, -589805, 0, 65538, -589804, 0, 65538, -589803, 0, 65538, -589802, 0, 65538, -589801, 0, 65538, -589800, 0, 65538, -589799, 0, 65538, -589798, 0, 65538, -589797, 0, 65538, -589796, 0, 65538, -589795, 0, 65538, -589794, 0, 65538, -589793, 0, 65538, -589792, 0, 65538, -589791, 0, 65538, -589790, 0, 65538, -589789, 0, 65538, -589788, 0, 65538, -589787, 0, 65539, -458770, 0, 65537, -458769, 0, 65538, -458768, 0, 65538, -458767, 0, 65538, -458766, 0, 65538, -458765, 0, 65538, -458764, 0, 65538, -458763, 0, 65538, -458762, 0, 65538, -458761, 0, 65538, -458760, 0, 65538, -458759, 0, 65538, -458758, 0, 65538, -458757, 0, 65538, -458756, 0, 65538, -458755, 0, 65538, -458754, 0, 65538, -458753, 0, 65538, -524288, 0, 65538, -524287, 0, 65538, -524286, 0, 65538, -524285, 0, 65538, -524284, 0, 65538, -524283, 0, 65538, -524282, 0, 65538, -524281, 0, 65538, -524280, 0, 65538, -524279, 0, 65538, -524278, 0, 65538, -524277, 0, 65538, -524276, 0, 65538, -524275, 0, 65538, -524274, 0, 65538, -524273, 0, 65538, -524272, 0, 65538, -524271, 0, 65538, -524270, 0, 65538, -524269, 0, 65538, -524268, 0, 65538, -524267, 0, 65538, -524266, 0, 65538, -524265, 0, 65538, -524264, 0, 65538, -524263, 0, 65538, -524262, 0, 65538, -524261, 0, 65538, -524260, 0, 65538, -524259, 0, 65538, -524258, 0, 65538, -524257, 0, 65538, -524256, 0, 65538, -524255, 0, 65538, -524254, 0, 65538, -524253, 0, 65538, -524252, 0, 65538, -524251, 0, 65539, -393234, 0, 65537, -393233, 0, 65538, -393232, 0, 65538, -393231, 0, 65538, -393230, 0, 65538, -393229, 0, 65538, -393228, 0, 65538, -393227, 0, 65538, -393226, 0, 65538, -393225, 0, 65538, -393224, 0, 65538, -393223, 0, 65538, -393222, 0, 65538, -393221, 0, 65538, -393220, 0, 65538, -393219, 0, 65538, -393218, 0, 65538, -393217, 0, 65538, -458752, 0, 65538, -458751, 0, 65538, -458750, 0, 65538, -458749, 0, 65538, -458748, 0, 65538, -458747, 0, 65538, -458746, 0, 65538, -458745, 0, 65538, -458744, 0, 65538, -458743, 0, 65538, -458742, 0, 65538, -458741, 0, 65538, -458740, 0, 65538, -458739, 0, 65538, -458738, 0, 65538, -458737, 0, 65538, -458736, 0, 65538, -458735, 0, 65538, -458734, 0, 65538, -458733, 0, 65538, -458732, 0, 65538, -458731, 0, 65538, -458730, 0, 65538, -458729, 0, 65538, -458728, 0, 65538, -458727, 0, 65538, -458726, 0, 65538, -458725, 0, 65538, -458724, 0, 65538, -458723, 0, 65538, -458722, 0, 65538, -458721, 0, 65538, -458720, 0, 65538, -458719, 0, 65538, -458718, 0, 65538, -458717, 0, 65538, -458716, 0, 65538, -458715, 0, 65539, -327698, 0, 65537, -327697, 0, 65538, -327696, 0, 65538, -327695, 0, 65538, -327694, 0, 65538, -327693, 0, 65538, -327692, 0, 65538, -327691, 0, 65538, -327690, 0, 65538, -327689, 0, 65538, -327688, 0, 65538, -327687, 0, 65538, -327686, 0, 65538, -327685, 0, 65538, -327684, 0, 65538, -327683, 0, 65538, -327682, 0, 65538, -327681, 0, 65538, -393216, 0, 65538, -393215, 0, 65538, -393214, 0, 65538, -393213, 0, 65538, -393212, 0, 65538, -393211, 0, 65538, -393210, 0, 65538, -393209, 0, 65538, -393208, 0, 65538, -393207, 0, 65538, -393206, 0, 65538, -393205, 0, 65538, -393204, 0, 65538, -393203, 0, 65538, -393202, 0, 65538, -393201, 0, 65538, -393200, 0, 65538, -393199, 0, 65538, -393198, 0, 65538, -393197, 0, 65538, -393196, 0, 65538, -393195, 0, 65538, -393194, 0, 65538, -393193, 0, 65538, -393192, 0, 65538, -393191, 0, 65538, -393190, 0, 65538, -393189, 0, 65538, -393188, 0, 65538, -393187, 0, 65538, -393186, 0, 65538, -393185, 0, 65538, -393184, 0, 65538, -393183, 0, 65538, -393182, 0, 65538, -393181, 0, 65538, -393180, 0, 65538, -393179, 0, 65539, -262162, 0, 65537, -262161, 0, 65538, -262160, 0, 65538, -262159, 0, 65538, -262158, 0, 65538, -262157, 0, 65538, -262156, 0, 65538, -262155, 0, 65538, -262154, 0, 65538, -262153, 0, 65538, -262152, 0, 65538, -262151, 0, 65538, -262150, 0, 65538, -262149, 0, 65538, -262148, 0, 65538, -262147, 0, 65538, -262146, 0, 65538, -262145, 0, 65538, -327680, 0, 65538, -327679, 0, 65538, -327678, 0, 65538, -327677, 0, 65538, -327676, 0, 65538, -327675, 0, 65538, -327674, 0, 65538, -327673, 0, 65538, -327672, 0, 65538, -327671, 0, 65538, -327670, 0, 65538, -327669, 0, 65538, -327668, 0, 65538, -327667, 0, 65538, -327666, 0, 65538, -327665, 0, 65538, -327664, 0, 65538, -327663, 0, 65538, -327662, 0, 65538, -327661, 0, 65538, -327660, 0, 65538, -327659, 0, 65538, -327658, 0, 65538, -327657, 0, 65538, -327656, 0, 65538, -327655, 0, 65538, -327654, 0, 65538, -327653, 0, 65538, -327652, 0, 65538, -327651, 0, 65538, -327650, 0, 65538, -327649, 0, 65538, -327648, 0, 65538, -327647, 0, 65538, -327646, 0, 65538, -327645, 0, 65538, -327644, 0, 65538, -327643, 0, 65539, -196626, 0, 65537, -196625, 0, 65538, -196624, 0, 65538, -196623, 0, 65538, -196622, 0, 65538, -196621, 0, 65538, -196620, 0, 65538, -196619, 0, 65538, -196618, 0, 65538, -196617, 0, 65538, -196616, 0, 65538, -196615, 0, 65538, -196614, 0, 65538, -196613, 0, 65538, -196612, 0, 65538, -196611, 0, 65538, -196610, 0, 65538, -196609, 0, 65538, -262144, 0, 65538, -262143, 0, 65538, -262142, 0, 65538, -262141, 0, 65538, -262140, 0, 65538, -262139, 0, 65538, -262138, 0, 65538, -262137, 0, 65538, -262136, 0, 65538, -262135, 0, 65538, -262134, 0, 65538, -262133, 0, 65538, -262132, 0, 65538, -262131, 0, 65538, -262130, 0, 65538, -262129, 0, 65538, -262128, 0, 65538, -262127, 0, 65538, -262126, 0, 65538, -262125, 0, 65538, -262124, 0, 65538, -262123, 0, 65538, -262122, 0, 65538, -262121, 0, 65538, -262120, 0, 65538, -262119, 0, 65538, -262118, 0, 65538, -262117, 0, 65538, -262116, 0, 65538, -262115, 0, 65538, -262114, 0, 65538, -262113, 0, 65538, -262112, 0, 65538, -262111, 0, 65538, -262110, 0, 65538, -262109, 0, 65538, -262108, 0, 65538, -262107, 0, 65539, -131090, 0, 65537, -131089, 0, 65538, -131088, 0, 65538, -131087, 0, 65538, -131086, 0, 65538, -131085, 0, 65538, -131084, 0, 65538, -131083, 0, 65538, -131082, 0, 65538, -131081, 0, 65538, -131080, 0, 65538, -131079, 0, 65538, -131078, 0, 65538, -131077, 0, 65538, -131076, 0, 65538, -131075, 0, 65538, -131074, 0, 65538, -131073, 0, 65538, -196608, 0, 65538, -196607, 0, 65538, -196606, 0, 65538, -196605, 0, 65538, -196604, 0, 65538, -196603, 0, 65538, -196602, 0, 65538, -196601, 0, 65538, -196600, 0, 65538, -196599, 0, 65538, -196598, 0, 65542, -196597, 0, 131074, -196596, 0, 131074, -196595, 0, 131074, -196594, 0, 65543, -196593, 0, 65538, -196592, 0, 65538, -196591, 0, 65538, -196590, 0, 65538, -196589, 0, 65538, -196588, 0, 65538, -196587, 0, 65538, -196586, 0, 65538, -196585, 0, 65538, -196584, 0, 65538, -196583, 0, 65538, -196582, 0, 65538, -196581, 0, 65538, -196580, 0, 65538, -196579, 0, 65538, -196578, 0, 65538, -196577, 0, 65538, -196576, 0, 65538, -196575, 0, 65538, -196574, 0, 65538, -196573, 0, 65538, -196572, 0, 65538, -196571, 0, 65539, -65554, 0, 65537, -65553, 0, 65538, -65552, 0, 65538, -65551, 0, 65538, -65550, 0, 65538, -65549, 0, 65538, -65548, 0, 65538, -65547, 0, 65538, -65546, 0, 65538, -65545, 0, 65538, -65544, 0, 65538, -65543, 0, 65538, -65542, 0, 65538, -65541, 0, 65538, -65540, 0, 65538, -65539, 0, 65538, -65538, 0, 65538, -65537, 0, 65538, -131072, 0, 65538, -131071, 0, 65538, -131070, 0, 65538, -131069, 0, 65538, -131068, 0, 65538, -131067, 0, 65538, -131066, 0, 65538, -131065, 0, 65538, -131064, 0, 65538, -131063, 0, 65538, -131062, 0, 65539, -131058, 0, 65537, -131057, 0, 65538, -131056, 0, 65538, -131055, 0, 65538, -131054, 0, 65538, -131053, 0, 65538, -131052, 0, 65538, -131051, 0, 65538, -131050, 0, 65538, -131049, 0, 65538, -131048, 0, 65538, -131047, 0, 65538, -131046, 0, 65538, -131045, 0, 65538, -131044, 0, 65538, -131043, 0, 65538, -131042, 0, 65538, -131041, 0, 65538, -131040, 0, 65538, -131039, 0, 65538, -131038, 0, 65538, -131037, 0, 65538, -131036, 0, 65538, -131035, 0, 65539, -18, 0, 65537, -17, 0, 65538, -16, 0, 65538, -15, 0, 65538, -14, 0, 65538, -13, 0, 65538, -12, 0, 65538, -11, 0, 65538, -10, 0, 65538, -9, 0, 65538, -8, 0, 65538, -7, 0, 65538, -6, 0, 65538, -5, 0, 65538, -4, 0, 65538, -3, 0, 65538, -2, 0, 65538, -1, 0, 65538, -65536, 0, 65538, -65535, 0, 65538, -65534, 0, 65538, -65533, 0, 65538, -65532, 0, 65538, -65531, 0, 65538, -65530, 0, 65538, -65529, 0, 65538, -65528, 0, 65538, -65527, 0, 65538, -65526, 0, 65539, -65522, 0, 65537, -65521, 0, 65538, -65520, 0, 65538, -65519, 0, 65538, -65518, 0, 65538, -65517, 0, 65538, -65516, 0, 65538, -65515, 0, 65538, -65514, 0, 65538, -65513, 0, 65538, -65512, 0, 65538, -65511, 0, 65538, -65510, 0, 65538, -65509, 0, 65538, -65508, 0, 65538, -65507, 0, 65538, -65506, 0, 65538, -65505, 0, 65538, -65504, 0, 65538, -65503, 0, 65538, -65502, 0, 65538, -65501, 0, 65538, -65500, 0, 65538, -65499, 0, 65539, 65518, 0, 65537, 65519, 0, 65538, 65520, 0, 65538, 65521, 0, 65538, 65522, 0, 65538, 65523, 0, 65538, 65524, 0, 65538, 65525, 0, 65538, 65526, 0, 65538, 65527, 0, 65538, 65528, 0, 65538, 65529, 0, 65538, 65530, 0, 65538, 65531, 0, 65538, 65532, 0, 65538, 65533, 0, 65538, 65534, 0, 65538, 65535, 0, 65538, 0, 0, 65538, 1, 0, 65542, 2, 0, 131074, 3, 0, 131074, 4, 0, 131074, 5, 0, 131074, 6, 0, 131074, 7, 0, 131074, 8, 0, 131074, 9, 0, 131074, 10, 0, 131075, 11, 8, 196648, 13, 8, 196648, 14, 0, 131073, 15, 0, 131074, 16, 0, 131074, 17, 0, 131074, 18, 0, 131074, 19, 0, 65543, 20, 0, 65538, 21, 0, 65538, 22, 0, 65538, 23, 0, 65538, 24, 0, 65538, 25, 0, 65538, 26, 0, 65538, 27, 0, 65538, 28, 0, 65538, 29, 0, 65538, 30, 0, 65538, 31, 0, 65538, 32, 0, 65538, 33, 0, 65538, 34, 0, 65538, 35, 0, 65538, 36, 0, 65538, 37, 0, 65539, 131054, 0, 65537, 131055, 0, 65538, 131056, 0, 65538, 131057, 0, 65538, 131058, 0, 65538, 131059, 0, 65538, 131060, 0, 65538, 131061, 0, 65538, 131062, 0, 65538, 131063, 0, 65538, 131064, 0, 65538, 131065, 0, 65538, 131066, 0, 65538, 131067, 0, 65538, 131068, 0, 65538, 131069, 0, 65538, 131070, 0, 65538, 131071, 0, 65538, 65536, 0, 65542, 65537, 0, 131075, 65555, 0, 65537, 65556, 0, 65538, 65557, 0, 65538, 65558, 0, 65538, 65559, 0, 65538, 65560, 0, 65538, 65561, 0, 65538, 65562, 0, 65538, 65563, 0, 65538, 65564, 0, 65538, 65565, 0, 65538, 65566, 0, 65538, 65567, 0, 65538, 65568, 0, 65538, 65569, 0, 65538, 65570, 0, 65538, 65571, 0, 65538, 65572, 0, 65538, 65573, 0, 65539, 196590, 0, 65537, 196591, 0, 65538, 196592, 0, 65538, 196593, 0, 65538, 196594, 0, 65538, 196595, 0, 65538, 196596, 0, 65538, 196597, 0, 65538, 196598, 0, 65538, 196599, 0, 65538, 196600, 0, 65538, 196601, 0, 65538, 196602, 0, 65538, 196603, 0, 65538, 196604, 0, 65538, 196605, 0, 65538, 196606, 0, 65538, 196607, 0, 65538, 131072, 0, 65539, 131091, 0, 65537, 131092, 0, 65538, 131093, 0, 65538, 131094, 0, 65538, 131095, 0, 65538, 131096, 0, 65538, 131097, 0, 65538, 131098, 0, 65538, 131099, 0, 65538, 131100, 0, 65538, 131101, 0, 65538, 131102, 0, 65538, 131103, 0, 65538, 131104, 0, 65538, 131105, 0, 65538, 131106, 0, 65538, 131107, 0, 65538, 131108, 0, 65538, 131109, 0, 65539, 262126, 0, 65537, 262127, 0, 65538, 262128, 0, 65538, 262129, 0, 65538, 262130, 0, 65538, 262131, 0, 65538, 262132, 0, 65538, 262133, 0, 65538, 262134, 0, 65538, 262135, 0, 65538, 262136, 0, 65538, 262137, 0, 65538, 262138, 0, 65538, 262139, 0, 65538, 262140, 0, 65538, 262141, 0, 65538, 262142, 0, 65538, 262143, 0, 65538, 196608, 0, 65539, 196627, 0, 65537, 196628, 0, 65538, 196629, 0, 65538, 196630, 0, 65538, 196631, 0, 65538, 196632, 0, 65538, 196633, 0, 65538, 196634, 0, 65538, 196635, 0, 65538, 196636, 0, 65538, 196637, 0, 65538, 196638, 0, 65538, 196639, 0, 65538, 196640, 0, 65538, 196641, 0, 65538, 196642, 0, 65538, 196643, 0, 65538, 196644, 0, 65538, 196645, 0, 65539, 327662, 0, 65537, 327663, 0, 65538, 327664, 0, 65538, 327665, 0, 65538, 327666, 0, 65538, 327667, 0, 65538, 327668, 0, 65538, 327669, 0, 65538, 327670, 0, 65538, 327671, 0, 65538, 327672, 0, 65538, 327673, 0, 65538, 327674, 0, 65538, 327675, 0, 65538, 327676, 0, 65538, 327677, 0, 65538, 327678, 0, 65538, 327679, 0, 65538, 262144, 0, 65539, 262163, 0, 65537, 262164, 0, 65538, 262165, 0, 65538, 262166, 0, 65538, 262167, 0, 65538, 262168, 0, 65538, 262169, 0, 65538, 262170, 0, 65538, 262171, 0, 65538, 262172, 0, 65538, 262173, 0, 65538, 262174, 0, 65538, 262175, 0, 65538, 262176, 0, 65538, 262177, 0, 65538, 262178, 0, 65538, 262179, 0, 65538, 262180, 0, 65538, 262181, 0, 65539, 393198, 0, 65537, 393199, 0, 65538, 393200, 0, 65538, 393201, 0, 65538, 393202, 0, 65538, 393203, 0, 65538, 393204, 0, 65538, 393205, 0, 65538, 393206, 0, 65538, 393207, 0, 65538, 393208, 0, 65538, 393209, 0, 65538, 393210, 0, 65538, 393211, 0, 65538, 393212, 0, 65538, 393213, 0, 65538, 393214, 0, 65538, 393215, 0, 65538, 327680, 0, 65539, 327685, 0, 1, 327686, 0, 2, 327687, 0, 2, 327688, 0, 3, 327699, 0, 65537, 327700, 0, 65538, 327701, 0, 65538, 327702, 0, 65538, 327703, 0, 65538, 327704, 0, 65538, 327705, 0, 65538, 327706, 0, 65538, 327707, 0, 65538, 327708, 0, 65538, 327709, 0, 65538, 327710, 0, 65538, 327711, 0, 65538, 327712, 0, 65538, 327713, 0, 65538, 327714, 0, 65538, 327715, 0, 65538, 327716, 0, 65538, 327717, 0, 65539, 458734, 0, 65537, 458735, 0, 65538, 458736, 0, 65538, 458737, 0, 65538, 458738, 0, 65538, 458739, 0, 65538, 458740, 0, 65538, 458741, 0, 65538, 458742, 0, 65538, 458743, 0, 65538, 458744, 0, 65538, 458745, 0, 65538, 458746, 0, 65538, 458747, 0, 65538, 458748, 0, 65538, 458749, 0, 65538, 458750, 0, 65538, 458751, 0, 65538, 393216, 0, 65539, 393219, 0, 1, 393220, 0, 2, 393221, 0, 131079, 393222, 0, 65538, 393223, 0, 65538, 393224, 0, 131078, 393225, 0, 2, 393226, 0, 2, 393227, 0, 2, 393228, 0, 2, 393229, 0, 3, 393235, 0, 65537, 393236, 0, 65538, 393237, 0, 65538, 393238, 0, 65538, 393239, 0, 65538, 393240, 0, 65538, 393241, 0, 65538, 393242, 0, 65538, 393243, 0, 65538, 393244, 0, 65538, 393245, 0, 65538, 393246, 0, 65538, 393247, 0, 65538, 393248, 0, 65538, 393249, 0, 65538, 393250, 0, 65538, 393251, 0, 65538, 393252, 0, 65538, 393253, 0, 65539, 524270, 0, 65537, 524271, 0, 65538, 524272, 0, 65538, 524273, 0, 65538, 524274, 0, 65538, 524275, 0, 65538, 524276, 0, 65538, 524277, 0, 65538, 524278, 0, 65538, 524279, 0, 65538, 524280, 0, 65538, 524281, 0, 65538, 524282, 0, 65538, 524283, 0, 65538, 524284, 0, 65538, 524285, 0, 65538, 524286, 0, 65538, 524287, 0, 65538, 458752, 0, 65539, 458754, 0, 1, 458755, 0, 131079, 458756, 0, 65538, 458757, 0, 65538, 458758, 0, 65538, 458759, 0, 65538, 458760, 0, 65538, 458761, 0, 65538, 458762, 0, 65538, 458763, 0, 65538, 458764, 0, 65538, 458765, 0, 131078, 458766, 0, 3, 458771, 0, 65537, 458772, 0, 65538, 458773, 0, 65538, 458774, 0, 65538, 458775, 0, 65538, 458776, 0, 65538, 458777, 0, 65538, 458778, 0, 65538, 458779, 0, 65538, 458780, 0, 65538, 458781, 0, 65538, 458782, 0, 65538, 458783, 0, 65538, 458784, 0, 65538, 458785, 0, 65538, 458786, 0, 65538, 458787, 0, 65538, 458788, 0, 65538, 458789, 0, 65539, 589806, 0, 65537, 589807, 0, 65538, 589808, 0, 65538, 589809, 0, 65538, 589810, 0, 65538, 589811, 0, 65538, 589812, 0, 65538, 589813, 0, 65538, 589814, 0, 65538, 589815, 0, 65538, 589816, 0, 65538, 589817, 0, 65538, 589818, 0, 65538, 589819, 0, 65538, 589820, 0, 65538, 589821, 0, 65538, 589822, 0, 65538, 589823, 0, 65538, 524288, 0, 65539, 524290, 0, 131073, 524291, 0, 65543, 524292, 0, 65538, 524293, 0, 65538, 524294, 0, 65538, 524295, 0, 65538, 524296, 0, 65538, 524297, 0, 65538, 524298, 0, 65538, 524299, 0, 65538, 524300, 0, 65538, 524301, 0, 65542, 524302, 0, 131075, 524307, 0, 65537, 524308, 0, 65538, 524309, 0, 65538, 524310, 0, 65538, 524311, 0, 65538, 524312, 0, 65538, 524313, 0, 65538, 524314, 0, 65538, 524315, 0, 65538, 524316, 0, 65538, 524317, 0, 65538, 524318, 0, 65538, 524319, 0, 65538, 524320, 0, 65538, 524321, 0, 65538, 524322, 0, 65538, 524323, 0, 65538, 524324, 0, 65538, 524325, 0, 65539, 655342, 0, 65537, 655343, 0, 65538, 655344, 0, 65538, 655345, 0, 65538, 655346, 0, 65538, 655347, 0, 65538, 655348, 0, 65538, 655349, 0, 65538, 655350, 0, 65538, 655351, 0, 65538, 655352, 0, 65538, 655353, 0, 65538, 655354, 0, 65538, 655355, 0, 65538, 655356, 0, 65538, 655357, 0, 65538, 655358, 0, 65538, 655359, 0, 65538, 589824, 0, 65539, 589827, 0, 131073, 589828, 0, 131074, 589829, 0, 131074, 589830, 0, 131074, 589831, 0, 131074, 589832, 0, 131074, 589833, 0, 131074, 589834, 0, 131074, 589835, 0, 131074, 589836, 0, 131074, 589837, 0, 131075, 589843, 0, 65537, 589844, 0, 65538, 589845, 0, 65538, 589846, 0, 65538, 589847, 0, 65538, 589848, 0, 65538, 589849, 0, 65538, 589850, 0, 65538, 589851, 0, 65538, 589852, 0, 65538, 589853, 0, 65538, 589854, 0, 65538, 589855, 0, 65538, 589856, 0, 65538, 589857, 0, 65538, 589858, 0, 65538, 589859, 0, 65538, 589860, 0, 65538, 589861, 0, 65539, 720878, 0, 65537, 720879, 0, 65538, 720880, 0, 65538, 720881, 0, 65538, 720882, 0, 65538, 720883, 0, 65538, 720884, 0, 65538, 720885, 0, 65538, 720886, 0, 65538, 720887, 0, 65538, 720888, 0, 65538, 720889, 0, 65538, 720890, 0, 65538, 720891, 0, 65538, 720892, 0, 65538, 720893, 0, 65538, 720894, 0, 65538, 720895, 0, 65538, 655360, 0, 65539, 655379, 0, 65537, 655380, 0, 65538, 655381, 0, 65538, 655382, 0, 65538, 655383, 0, 65538, 655384, 0, 65538, 655385, 0, 65538, 655386, 0, 65538, 655387, 0, 65538, 655388, 0, 65538, 655389, 0, 65538, 655390, 0, 65538, 655391, 0, 65538, 655392, 0, 65538, 655393, 0, 65538, 655394, 0, 65538, 655395, 0, 65538, 655396, 0, 65538, 655397, 0, 65539, 786414, 0, 65537, 786415, 0, 65538, 786416, 0, 65538, 786417, 0, 65538, 786418, 0, 65538, 786419, 0, 65538, 786420, 0, 65538, 786421, 0, 65538, 786422, 0, 65538, 786423, 0, 65538, 786424, 0, 65538, 786425, 0, 65538, 786426, 0, 65538, 786427, 0, 65538, 786428, 0, 65538, 786429, 0, 65538, 786430, 0, 65538, 786431, 0, 65538, 720896, 0, 131078, 720897, 0, 2, 720898, 0, 2, 720899, 0, 2, 720900, 0, 2, 720901, 0, 2, 720902, 0, 2, 720903, 0, 2, 720904, 0, 2, 720905, 0, 2, 720906, 0, 2, 720907, 0, 2, 720908, 0, 2, 720909, 0, 2, 720910, 0, 2, 720911, 0, 2, 720912, 0, 2, 720913, 0, 2, 720914, 0, 2, 720915, 0, 131079, 720916, 0, 65538, 720917, 0, 65538, 720918, 0, 65538, 720919, 0, 65538, 720920, 0, 65538, 720921, 0, 65538, 720922, 0, 65538, 720923, 0, 65538, 720924, 0, 65538, 720925, 0, 65538, 720926, 0, 65538, 720927, 0, 65538, 720928, 0, 65538, 720929, 0, 65538, 720930, 0, 65538, 720931, 0, 65538, 720932, 0, 65538, 720933, 0, 65539, 851950, 0, 65537, 851951, 0, 65538, 851952, 0, 65538, 851953, 0, 65538, 851954, 0, 65538, 851955, 0, 65538, 851956, 0, 65538, 851957, 0, 65538, 851958, 0, 65538, 851959, 0, 65538, 851960, 0, 65538, 851961, 0, 65538, 851962, 0, 65538, 851963, 0, 65538, 851964, 0, 65538, 851965, 0, 65538, 851966, 0, 65538, 851967, 0, 65538, 786432, 0, 65538, 786433, 0, 65538, 786434, 0, 65538, 786435, 0, 65538, 786436, 0, 65538, 786437, 0, 65538, 786438, 0, 65538, 786439, 0, 65538, 786440, 0, 65538, 786441, 0, 65538, 786442, 0, 65538, 786443, 0, 65538, 786444, 0, 65538, 786445, 0, 65538, 786446, 0, 65538, 786447, 0, 65538, 786448, 0, 65538, 786449, 0, 65538, 786450, 0, 65538, 786451, 0, 65538, 786452, 0, 65538, 786453, 0, 65538, 786454, 0, 65538, 786455, 0, 65538, 786456, 0, 65538, 786457, 0, 65538, 786458, 0, 65538, 786459, 0, 65538, 786460, 0, 65538, 786461, 0, 65538, 786462, 0, 65538, 786463, 0, 65538, 786464, 0, 65538, 786465, 0, 65538, 786466, 0, 65538, 786467, 0, 65538, 786468, 0, 65538, 786469, 0, 65539, 917486, 0, 65537, 917487, 0, 65538, 917488, 0, 65538, 917489, 0, 65538, 917490, 0, 65538, 917491, 0, 65538, 917492, 0, 65538, 917493, 0, 65538, 917494, 0, 65538, 917495, 0, 65538, 917496, 0, 65538, 917497, 0, 65538, 917498, 0, 65538, 917499, 0, 65538, 917500, 0, 65538, 917501, 0, 65538, 917502, 0, 65538, 917503, 0, 65538, 851968, 0, 65538, 851969, 0, 65538, 851970, 0, 65538, 851971, 0, 65538, 851972, 0, 65538, 851973, 0, 65538, 851974, 0, 65538, 851975, 0, 65538, 851976, 0, 65538, 851977, 0, 65538, 851978, 0, 65538, 851979, 0, 65538, 851980, 0, 65538, 851981, 0, 65538, 851982, 0, 65538, 851983, 0, 65538, 851984, 0, 65538, 851985, 0, 65538, 851986, 0, 65538, 851987, 0, 65538, 851988, 0, 65538, 851989, 0, 65538, 851990, 0, 65538, 851991, 0, 65538, 851992, 0, 65538, 851993, 0, 65538, 851994, 0, 65538, 851995, 0, 65538, 851996, 0, 65538, 851997, 0, 65538, 851998, 0, 65538, 851999, 0, 65538, 852000, 0, 65538, 852001, 0, 65538, 852002, 0, 65538, 852003, 0, 65538, 852004, 0, 65538, 852005, 0, 65539, 983022, 0, 65537, 983023, 0, 65538, 983024, 0, 65538, 983025, 0, 65538, 983026, 0, 65538, 983027, 0, 65538, 983028, 0, 65538, 983029, 0, 65538, 983030, 0, 65538, 983031, 0, 65538, 983032, 0, 65538, 983033, 0, 65538, 983034, 0, 65538, 983035, 0, 65538, 983036, 0, 65538, 983037, 0, 65538, 983038, 0, 65538, 983039, 0, 65538, 917504, 0, 65538, 917505, 0, 65538, 917506, 0, 65538, 917507, 0, 65538, 917508, 0, 65538, 917509, 0, 65538, 917510, 0, 65538, 917511, 0, 65538, 917512, 0, 65538, 917513, 0, 65538, 917514, 0, 65538, 917515, 0, 65538, 917516, 0, 65538, 917517, 0, 65538, 917518, 0, 65538, 917519, 0, 65538, 917520, 0, 65538, 917521, 0, 65538, 917522, 0, 65538, 917523, 0, 65538, 917524, 0, 65538, 917525, 0, 65538, 917526, 0, 65538, 917527, 0, 65538, 917528, 0, 65538, 917529, 0, 65538, 917530, 0, 65538, 917531, 0, 65538, 917532, 0, 65538, 917533, 0, 65538, 917534, 0, 65538, 917535, 0, 65538, 917536, 0, 65538, 917537, 0, 65538, 917538, 0, 65538, 917539, 0, 65538, 917540, 0, 65538, 917541, 0, 65539, 1048558, 0, 65537, 1048559, 0, 65538, 1048560, 0, 65538, 1048561, 0, 65538, 1048562, 0, 65538, 1048563, 0, 65538, 1048564, 0, 65538, 1048565, 0, 65538, 1048566, 0, 65538, 1048567, 0, 65538, 1048568, 0, 65538, 1048569, 0, 65538, 1048570, 0, 65538, 1048571, 0, 65538, 1048572, 0, 65538, 1048573, 0, 65538, 1048574, 0, 65538, 1048575, 0, 65538, 983040, 0, 65538, 983041, 0, 65538, 983042, 0, 65538, 983043, 0, 65538, 983044, 0, 65538, 983045, 0, 65538, 983046, 0, 65538, 983047, 0, 65538, 983048, 0, 65538, 983049, 0, 65538, 983050, 0, 65538, 983051, 0, 65538, 983052, 0, 65538, 983053, 0, 65538, 983054, 0, 65538, 983055, 0, 65538, 983056, 0, 65538, 983057, 0, 65538, 983058, 0, 65538, 983059, 0, 65538, 983060, 0, 65538, 983061, 0, 65538, 983062, 0, 65538, 983063, 0, 65538, 983064, 0, 65538, 983065, 0, 65538, 983066, 0, 65538, 983067, 0, 65538, 983068, 0, 65538, 983069, 0, 65538, 983070, 0, 65538, 983071, 0, 65538, 983072, 0, 65538, 983073, 0, 65538, 983074, 0, 65538, 983075, 0, 65538, 983076, 0, 65538, 983077, 0, 65539, 1114094, 0, 65537, 1114095, 0, 65538, 1114096, 0, 65538, 1114097, 0, 65538, 1114098, 0, 65538, 1114099, 0, 65538, 1114100, 0, 65538, 1114101, 0, 65538, 1114102, 0, 65538, 1114103, 0, 65538, 1114104, 0, 65538, 1114105, 0, 65538, 1114106, 0, 65538, 1114107, 0, 65538, 1114108, 0, 65538, 1114109, 0, 65538, 1114110, 0, 65538, 1114111, 0, 65538, 1048576, 0, 65538, 1048577, 0, 65538, 1048578, 0, 65538, 1048579, 0, 65538, 1048580, 0, 65538, 1048581, 0, 65538, 1048582, 0, 65538, 1048583, 0, 65538, 1048584, 0, 65538, 1048585, 0, 65538, 1048586, 0, 65538, 1048587, 0, 65538, 1048588, 0, 65538, 1048589, 0, 65538, 1048590, 0, 65538, 1048591, 0, 65538, 1048592, 0, 65538, 1048593, 0, 65538, 1048594, 0, 65538, 1048595, 0, 65538, 1048596, 0, 65538, 1048597, 0, 65538, 1048598, 0, 65538, 1048599, 0, 65538, 1048600, 0, 65538, 1048601, 0, 65538, 1048602, 0, 65538, 1048603, 0, 65538, 1048604, 0, 65538, 1048605, 0, 65538, 1048606, 0, 65538, 1048607, 0, 65538, 1048608, 0, 65538, 1048609, 0, 65538, 1048610, 0, 65538, 1048611, 0, 65538, 1048612, 0, 65538, 1048613, 0, 65539, 1179630, 0, 65537, 1179631, 0, 65538, 1179632, 0, 65538, 1179633, 0, 65538, 1179634, 0, 65538, 1179635, 0, 65538, 1179636, 0, 65538, 1179637, 0, 65538, 1179638, 0, 65538, 1179639, 0, 65538, 1179640, 0, 65538, 1179641, 0, 65538, 1179642, 0, 65538, 1179643, 0, 65538, 1179644, 0, 65538, 1179645, 0, 65538, 1179646, 0, 65538, 1179647, 0, 65538, 1114112, 0, 65538, 1114113, 0, 65538, 1114114, 0, 65538, 1114115, 0, 65538, 1114116, 0, 65538, 1114117, 0, 65538, 1114118, 0, 65538, 1114119, 0, 65538, 1114120, 0, 65538, 1114121, 0, 65538, 1114122, 0, 65538, 1114123, 0, 65538, 1114124, 0, 65538, 1114125, 0, 65538, 1114126, 0, 65538, 1114127, 0, 65538, 1114128, 0, 65538, 1114129, 0, 65538, 1114130, 0, 65538, 1114131, 0, 65538, 1114132, 0, 65538, 1114133, 0, 65538, 1114134, 0, 65538, 1114135, 0, 65538, 1114136, 0, 65538, 1114137, 0, 65538, 1114138, 0, 65538, 1114139, 0, 65538, 1114140, 0, 65538, 1114141, 0, 65538, 1114142, 0, 65538, 1114143, 0, 65538, 1114144, 0, 65538, 1114145, 0, 65538, 1114146, 0, 65538, 1114147, 0, 65538, 1114148, 0, 65538, 1114149, 0, 65539, 1245166, 0, 65537, 1245167, 0, 65538, 1245168, 0, 65538, 1245169, 0, 65538, 1245170, 0, 65538, 1245171, 0, 65538, 1245172, 0, 65538, 1245173, 0, 65538, 1245174, 0, 65538, 1245175, 0, 65538, 1245176, 0, 65538, 1245177, 0, 65538, 1245178, 0, 65538, 1245179, 0, 65538, 1245180, 0, 65538, 1245181, 0, 65538, 1245182, 0, 65538, 1245183, 0, 65538, 1179648, 0, 65538, 1179649, 0, 65538, 1179650, 0, 65538, 1179651, 0, 65538, 1179652, 0, 65538, 1179653, 0, 65538, 1179654, 0, 65538, 1179655, 0, 65538, 1179656, 0, 65538, 1179657, 0, 65538, 1179658, 0, 65538, 1179659, 0, 65538, 1179660, 0, 65538, 1179661, 0, 65538, 1179662, 0, 65538, 1179663, 0, 65538, 1179664, 0, 65538, 1179665, 0, 65538, 1179666, 0, 65538, 1179667, 0, 65538, 1179668, 0, 65538, 1179669, 0, 65538, 1179670, 0, 65538, 1179671, 0, 65538, 1179672, 0, 65538, 1179673, 0, 65538, 1179674, 0, 65538, 1179675, 0, 65538, 1179676, 0, 65538, 1179677, 0, 65538, 1179678, 0, 65538, 1179679, 0, 65538, 1179680, 0, 65538, 1179681, 0, 65538, 1179682, 0, 65538, 1179683, 0, 65538, 1179684, 0, 65538, 1179685, 0, 65539, 1310702, 0, 65537, 1310703, 0, 65538, 1310704, 0, 65538, 1310705, 0, 65538, 1310706, 0, 65538, 1310707, 0, 65538, 1310708, 0, 65538, 1310709, 0, 65538, 1310710, 0, 65538, 1310711, 0, 65538, 1310712, 0, 65538, 1310713, 0, 65538, 1310714, 0, 65538, 1310715, 0, 65538, 1310716, 0, 65538, 1310717, 0, 65538, 1310718, 0, 65538, 1310719, 0, 65538, 1245184, 0, 65538, 1245185, 0, 65538, 1245186, 0, 65538, 1245187, 0, 65538, 1245188, 0, 65538, 1245189, 0, 65538, 1245190, 0, 65538, 1245191, 0, 65538, 1245192, 0, 65538, 1245193, 0, 65538, 1245194, 0, 65538, 1245195, 0, 65538, 1245196, 0, 65538, 1245197, 0, 65538, 1245198, 0, 65538, 1245199, 0, 65538, 1245200, 0, 65538, 1245201, 0, 65538, 1245202, 0, 65538, 1245203, 0, 65538, 1245204, 0, 65538, 1245205, 0, 65538, 1245206, 0, 65538, 1245207, 0, 65538, 1245208, 0, 65538, 1245209, 0, 65538, 1245210, 0, 65538, 1245211, 0, 65538, 1245212, 0, 65538, 1245213, 0, 65538, 1245214, 0, 65538, 1245215, 0, 65538, 1245216, 0, 65538, 1245217, 0, 65538, 1245218, 0, 65538, 1245219, 0, 65538, 1245220, 0, 65538, 1245221, 0, 65539, 1376238, 0, 65537, 1376239, 0, 65538, 1376240, 0, 65538, 1376241, 0, 65538, 1376242, 0, 65538, 1376243, 0, 65538, 1376244, 0, 65538, 1376245, 0, 65538, 1376246, 0, 65538, 1376247, 0, 65538, 1376248, 0, 65538, 1376249, 0, 65538, 1376250, 0, 65538, 1376251, 0, 65538, 1376252, 0, 65538, 1376253, 0, 65538, 1376254, 0, 65538, 1376255, 0, 65538, 1310720, 0, 65538, 1310721, 0, 65538, 1310722, 0, 65538, 1310723, 0, 65538, 1310724, 0, 65538, 1310725, 0, 65538, 1310726, 0, 65538, 1310727, 0, 65538, 1310728, 0, 65538, 1310729, 0, 65538, 1310730, 0, 65538, 1310731, 0, 65538, 1310732, 0, 65538, 1310733, 0, 65538, 1310734, 0, 65538, 1310735, 0, 65538, 1310736, 0, 65538, 1310737, 0, 65538, 1310738, 0, 65538, 1310739, 0, 65538, 1310740, 0, 65538, 1310741, 0, 65538, 1310742, 0, 65538, 1310743, 0, 65538, 1310744, 0, 65538, 1310745, 0, 65538, 1310746, 0, 65538, 1310747, 0, 65538, 1310748, 0, 65538, 1310749, 0, 65538, 1310750, 0, 65538, 1310751, 0, 65538, 1310752, 0, 65538, 1310753, 0, 65538, 1310754, 0, 65538, 1310755, 0, 65538, 1310756, 0, 65538, 1310757, 0, 65539, 1441774, 0, 65537, 1441775, 0, 65538, 1441776, 0, 65538, 1441777, 0, 65538, 1441778, 0, 65538, 1441779, 0, 65538, 1441780, 0, 65538, 1441781, 0, 65538, 1441782, 0, 65538, 1441783, 0, 65538, 1441784, 0, 65538, 1441785, 0, 65538, 1441786, 0, 65538, 1441787, 0, 65538, 1441788, 0, 65538, 1441789, 0, 65538, 1441790, 0, 65538, 1441791, 0, 65538, 1376256, 0, 65538, 1376257, 0, 65538, 1376258, 0, 65538, 1376259, 0, 65538, 1376260, 0, 65538, 1376261, 0, 65538, 1376262, 0, 65538, 1376263, 0, 65538, 1376264, 0, 65538, 1376265, 0, 65538, 1376266, 0, 65538, 1376267, 0, 65538, 1376268, 0, 65538, 1376269, 0, 65538, 1376270, 0, 65538, 1376271, 0, 65538, 1376272, 0, 65538, 1376273, 0, 65538, 1376274, 0, 65538, 1376275, 0, 65538, 1376276, 0, 65538, 1376277, 0, 65538, 1376278, 0, 65538, 1376279, 0, 65538, 1376280, 0, 65538, 1376281, 0, 65538, 1376282, 0, 65538, 1376283, 0, 65538, 1376284, 0, 65538, 1376285, 0, 65538, 1376286, 0, 65538, 1376287, 0, 65538, 1376288, 0, 65538, 1376289, 0, 65538, 1376290, 0, 65538, 1376291, 0, 65538, 1376292, 0, 65538, 1376293, 0, 65539, 1507310, 0, 65537, 1507311, 0, 65538, 1507312, 0, 65538, 1507313, 0, 65538, 1507314, 0, 65538, 1507315, 0, 65538, 1507316, 0, 65538, 1507317, 0, 65538, 1507318, 0, 65538, 1507319, 0, 65538, 1507320, 0, 65538, 1507321, 0, 65538, 1507322, 0, 65538, 1507323, 0, 65538, 1507324, 0, 65538, 1507325, 0, 65538, 1507326, 0, 65538, 1507327, 0, 65538, 1441792, 0, 65538, 1441793, 0, 65538, 1441794, 0, 65538, 1441795, 0, 65538, 1441796, 0, 65538, 1441797, 0, 65538, 1441798, 0, 65538, 1441799, 0, 65538, 1441800, 0, 65538, 1441801, 0, 65538, 1441802, 0, 65538, 1441803, 0, 65538, 1441804, 0, 65538, 1441805, 0, 65538, 1441806, 0, 65538, 1441807, 0, 65538, 1441808, 0, 65538, 1441809, 0, 65538, 1441810, 0, 65538, 1441811, 0, 65538, 1441812, 0, 65538, 1441813, 0, 65538, 1441814, 0, 65538, 1441815, 0, 65538, 1441816, 0, 65538, 1441817, 0, 65538, 1441818, 0, 65538, 1441819, 0, 65538, 1441820, 0, 65538, 1441821, 0, 65538, 1441822, 0, 65538, 1441823, 0, 65538, 1441824, 0, 65538, 1441825, 0, 65538, 1441826, 0, 65538, 1441827, 0, 65538, 1441828, 0, 65538, 1441829, 0, 65539, 1572846, 0, 65537, 1572847, 0, 65538, 1572848, 0, 65538, 1572849, 0, 65538, 1572850, 0, 65538, 1572851, 0, 65538, 1572852, 0, 65538, 1572853, 0, 65538, 1572854, 0, 65538, 1572855, 0, 65538, 1572856, 0, 65538, 1572857, 0, 65538, 1572858, 0, 65538, 1572859, 0, 65538, 1572860, 0, 65538, 1572861, 0, 65538, 1572862, 0, 65538, 1572863, 0, 65538, 1507328, 0, 65538, 1507329, 0, 65538, 1507330, 0, 65538, 1507331, 0, 65538, 1507332, 0, 65538, 1507333, 0, 65538, 1507334, 0, 65538, 1507335, 0, 65538, 1507336, 0, 65538, 1507337, 0, 65538, 1507338, 0, 65538, 1507339, 0, 65538, 1507340, 0, 65538, 1507341, 0, 65538, 1507342, 0, 65538, 1507343, 0, 65538, 1507344, 0, 65538, 1507345, 0, 65538, 1507346, 0, 65538, 1507347, 0, 65538, 1507348, 0, 65538, 1507349, 0, 65538, 1507350, 0, 65538, 1507351, 0, 65538, 1507352, 0, 65538, 1507353, 0, 65538, 1507354, 0, 65538, 1507355, 0, 65538, 1507356, 0, 65538, 1507357, 0, 65538, 1507358, 0, 65538, 1507359, 0, 65538, 1507360, 0, 65538, 1507361, 0, 65538, 1507362, 0, 65538, 1507363, 0, 65538, 1507364, 0, 65538, 1507365, 0, 65539, 1638382, 0, 65537, 1638383, 0, 65538, 1638384, 0, 65538, 1638385, 0, 65538, 1638386, 0, 65538, 1638387, 0, 65538, 1638388, 0, 65538, 1638389, 0, 65538, 1638390, 0, 65538, 1638391, 0, 65538, 1638392, 0, 65538, 1638393, 0, 65538, 1638394, 0, 65538, 1638395, 0, 65538, 1638396, 0, 65538, 1638397, 0, 65538, 1638398, 0, 65538, 1638399, 0, 65538, 1572864, 0, 65538, 1572865, 0, 65538, 1572866, 0, 65538, 1572867, 0, 65538, 1572868, 0, 65538, 1572869, 0, 65538, 1572870, 0, 65538, 1572871, 0, 65538, 1572872, 0, 65538, 1572873, 0, 65538, 1572874, 0, 65538, 1572875, 0, 65538, 1572876, 0, 65538, 1572877, 0, 65538, 1572878, 0, 65538, 1572879, 0, 65538, 1572880, 0, 65538, 1572881, 0, 65538, 1572882, 0, 65538, 1572883, 0, 65538, 1572884, 0, 65538, 1572885, 0, 65538, 1572886, 0, 65538, 1572887, 0, 65538, 1572888, 0, 65538, 1572889, 0, 65538, 1572890, 0, 65538, 1572891, 0, 65538, 1572892, 0, 65538, 1572893, 0, 65538, 1572894, 0, 65538, 1572895, 0, 65538, 1572896, 0, 65538, 1572897, 0, 65538, 1572898, 0, 65538, 1572899, 0, 65538, 1572900, 0, 65538, 1572901, 0, 65539, 1703918, 0, 131073, 1703919, 0, 131074, 1703920, 0, 131074, 1703921, 0, 131074, 1703922, 0, 131074, 1703923, 0, 131074, 1703924, 0, 131074, 1703925, 0, 131074, 1703926, 0, 131074, 1703927, 0, 131074, 1703928, 0, 131074, 1703929, 0, 131074, 1703930, 0, 131074, 1703931, 0, 131074, 1703932, 0, 131074, 1703933, 0, 131074, 1703934, 0, 131074, 1703935, 0, 131074, 1638400, 0, 131074, 1638401, 0, 131074, 1638402, 0, 131074, 1638403, 0, 131074, 1638404, 0, 131074, 1638405, 0, 131074, 1638406, 0, 131074, 1638407, 0, 131074, 1638408, 0, 131074, 1638409, 0, 131074, 1638410, 0, 131074, 1638411, 0, 131074, 1638412, 0, 131074, 1638413, 0, 131074, 1638414, 0, 131074, 1638415, 0, 131074, 1638416, 0, 131074, 1638417, 0, 131074, 1638418, 0, 131074, 1638419, 0, 131074, 1638420, 0, 131074, 1638421, 0, 131074, 1638422, 0, 131074, 1638423, 0, 131074, 1638424, 0, 131074, 1638425, 0, 131074, 1638426, 0, 131074, 1638427, 0, 131074, 1638428, 0, 131074, 1638429, 0, 131074, 1638430, 0, 131074, 1638431, 0, 131074, 1638432, 0, 131074, 1638433, 0, 131074, 1638434, 0, 131074, 1638435, 0, 131074, 1638436, 0, 131074, 1638437, 0, 131075 ) [node name="Wall" type="TileMap" parent="."] tile_set = ExtResource( 15 ) cell_size = Vector2( 16, 16 ) cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 ) format = 1 -tile_data = PoolIntArray( -2359292, 0, 5, -2359291, 0, 196610, -2359290, 0, 196610, -2359289, 0, 196610, -2359288, 0, 196610, -2359287, 0, 196610, -2359286, 0, 196610, -2359285, 0, 196610, -2359284, 0, 196610, -2359283, 0, 196610, -2359282, 0, 196610, -2359281, 0, 196610, -2359280, 0, 196610, -2359279, 0, 196610, -2359278, 0, 196610, -2359277, 0, 196610, -2359276, 0, 8, -2293756, 0, 65540, -2293740, 0, 65540, -2228220, 0, 65540, -2228204, 0, 65540, -2162684, 0, 65540, -2162668, 0, 65540, -2097148, 0, 65540, -2097132, 0, 65540, -2031612, 0, 65540, -2031596, 0, 65540, -1966076, 0, 65540, -1966060, 0, 65540, -1900540, 0, 65540, -1900524, 0, 65540, -1835004, 0, 65540, -1834988, 0, 65540, -1769468, 0, 65540, -1769452, 0, 65540, -1703932, 0, 65540, -1703916, 0, 65540, -1638396, 0, 196613, -1638395, 0, 196610, -1638394, 0, 196610, -1638393, 0, 196610, -1638392, 0, 196610, -1638391, 0, 196610, -1638390, 0, 8, -1638386, 0, 5, -1638385, 0, 196610, -1638384, 0, 196610, -1638383, 0, 196610, -1638382, 0, 196610, -1638381, 0, 196610, -1638380, 0, 196616, -1572854, 0, 65540, -1572850, 0, 65540, -1507318, 0, 65540, -1507314, 0, 65540, -1441782, 0, 65540, -1441778, 0, 65540, -1376246, 0, 65540, -1376242, 0, 65540, -1310710, 0, 65540, -1310706, 0, 65540, -1245174, 0, 65540, -1245170, 0, 65540, -1179638, 0, 65540, -1179634, 0, 65540, -1114102, 0, 262149, -1114101, 0, 196610, -1114100, 0, 196610, -1114099, 0, 196610, -1114098, 0, 262152, -1048566, 0, 65540, -1048562, 0, 65540, -983030, 0, 65540, -983026, 0, 65540, -917494, 0, 65540, -917490, 0, 65540, -851958, 0, 65540, -851954, 0, 65540, -786422, 0, 65540, -786418, 0, 65540, -720886, 0, 65540, -720882, 0, 65540, -655350, 0, 65540, -655346, 0, 65540, -524290, 0, 5, -524289, 0, 196610, -589824, 0, 196610, -589823, 0, 196610, -589822, 0, 196610, -589821, 0, 196610, -589820, 0, 196610, -589819, 0, 8, -589814, 0, 65540, -589810, 0, 65540, -458754, 0, 65540, -524283, 0, 65540, -524278, 0, 65540, -524274, 0, 65540, -393218, 0, 65540, -458747, 0, 65540, -458742, 0, 65540, -458738, 0, 65540, -327682, 0, 65540, -393211, 0, 65540, -393206, 0, 65540, -393202, 0, 65540, -262146, 0, 65540, -327675, 0, 65540, -327670, 0, 65540, -327666, 0, 65540, -196610, 0, 196613, -196609, 0, 8, -262140, 0, 5, -262139, 0, 196616, -262134, 0, 65540, -262130, 0, 65540, -131073, 0, 65540, -196604, 0, 65540, -196598, 0, 65540, -196594, 0, 65540, -65537, 0, 65540, -131068, 0, 65540, -131062, 0, 65540, -131058, 0, 65540, -131049, 0, 5, -131048, 0, 196610, -131047, 0, 196610, -131046, 0, 196610, -131045, 0, 196610, -131044, 0, 8, -1, 0, 65540, -65532, 0, 196613, -65531, 0, 196610, -65530, 0, 196610, -65529, 0, 196610, -65528, 0, 196610, -65527, 0, 196610, -65526, 0, 196616, -65522, 0, 196613, -65521, 0, 196610, -65520, 0, 196610, -65519, 0, 196610, -65518, 0, 196610, -65517, 0, 196610, -65516, 0, 196610, -65515, 0, 196610, -65514, 0, 196610, -65513, 0, 196616, -65508, 0, 65540, 65535, 0, 65540, 28, 0, 65540, 131071, 0, 65540, 65564, 0, 65540, 196607, 0, 65540, 131100, 0, 65540, 262143, 0, 65540, 196611, 0, 196609, 196612, 0, 196610, 196613, 0, 196610, 196614, 0, 196611, 196618, 0, 196609, 196619, 0, 196610, 196620, 0, 196610, 196621, 0, 196611, 196625, 0, 4, 196636, 0, 65540, 327679, 0, 65540, 262161, 0, 65540, 262164, 0, 5, 262165, 0, 196610, 262166, 0, 196610, 262167, 0, 8, 262172, 0, 65540, 393215, 0, 65540, 327697, 0, 65540, 327700, 0, 65540, 327703, 0, 196613, 327704, 0, 196610, 327705, 0, 196610, 327706, 0, 196610, 327707, 0, 196610, 327708, 0, 196616, 458743, 0, 5, 458744, 0, 196610, 458745, 0, 196610, 458746, 0, 196610, 458747, 0, 196610, 458748, 0, 8, 458751, 0, 65540, 393233, 0, 65540, 393236, 0, 65540, 524279, 0, 65540, 524284, 0, 196613, 524285, 0, 196610, 524286, 0, 196610, 524287, 0, 196616, 458756, 0, 4, 458760, 0, 4, 458764, 0, 4, 458769, 0, 65540, 458772, 0, 65540, 589815, 0, 65540, 524292, 0, 131076, 524296, 0, 131076, 524300, 0, 131076, 524305, 0, 131076, 524308, 0, 65540, 655351, 0, 65540, 589844, 0, 65540, 720887, 0, 65540, 655380, 0, 65540, 786423, 0, 65540, 720916, 0, 65540, 851959, 0, 65540, 851964, 0, 5, 851965, 0, 196610, 851966, 0, 196610, 851967, 0, 196610, 786432, 0, 196610, 786433, 0, 196610, 786434, 0, 196610, 786435, 0, 196610, 786436, 0, 196610, 786437, 0, 196610, 786438, 0, 196610, 786439, 0, 196610, 786440, 0, 196610, 786441, 0, 196610, 786442, 0, 196610, 786443, 0, 196610, 786444, 0, 196610, 786445, 0, 196610, 786446, 0, 196610, 786447, 0, 8, 786452, 0, 65540, 917495, 0, 196613, 917496, 0, 196610, 917497, 0, 196610, 917498, 0, 196610, 917499, 0, 196610, 917500, 0, 196616, 851983, 0, 65540, 851988, 0, 65540, 917519, 0, 65540, 917524, 0, 65540, 983054, 0, 5, 983055, 0, 196616, 983060, 0, 196613, 983061, 0, 8, 1048590, 0, 65540, 1048597, 0, 65540, 1114126, 0, 65540, 1114133, 0, 65540, 1179662, 0, 65540, 1179669, 0, 65540, 1245198, 0, 65540, 1245205, 0, 65540, 1310734, 0, 196613, 1310735, 0, 196610, 1310736, 0, 196610, 1310737, 0, 196610, 1310738, 0, 196610, 1310739, 0, 196610, 1310740, 0, 196610, 1310741, 0, 196616 ) +tile_data = PoolIntArray( -2686978, 0, 5, -2686977, 0, 196610, -2752512, 0, 196610, -2752511, 0, 196610, -2752510, 0, 196610, -2752509, 0, 196610, -2752508, 0, 196610, -2752507, 0, 196610, -2752506, 0, 196610, -2752505, 0, 196610, -2752504, 0, 196610, -2752503, 0, 196610, -2752502, 0, 196610, -2752501, 0, 196610, -2752500, 0, 196610, -2752499, 0, 196610, -2752498, 0, 196610, -2752497, 0, 196610, -2752496, 0, 196610, -2752495, 0, 196610, -2752494, 0, 196610, -2752493, 0, 196610, -2752492, 0, 196610, -2752491, 0, 196610, -2752490, 0, 196610, -2752489, 0, 196610, -2752488, 0, 196610, -2752487, 0, 196610, -2752486, 0, 8, -2621442, 0, 65540, -2686950, 0, 65540, -2555906, 0, 65540, -2621414, 0, 65540, -2490370, 0, 65540, -2555878, 0, 65540, -2424834, 0, 65540, -2490342, 0, 65540, -2359298, 0, 65540, -2424806, 0, 65540, -2293762, 0, 65540, -2359270, 0, 65540, -2228226, 0, 65540, -2293734, 0, 65540, -2162690, 0, 65540, -2228198, 0, 65540, -2097154, 0, 65540, -2162662, 0, 65540, -2031618, 0, 65540, -2097126, 0, 65540, -1966082, 0, 65540, -2031590, 0, 65540, -1900546, 0, 65540, -1966054, 0, 65540, -1835010, 0, 65540, -1900518, 0, 65540, -1769474, 0, 65540, -1834982, 0, 65540, -1703938, 0, 65540, -1769446, 0, 65540, -1638402, 0, 65540, -1703910, 0, 65540, -1572866, 0, 196613, -1572865, 0, 196610, -1638400, 0, 196610, -1638399, 0, 196610, -1638398, 0, 196610, -1638397, 0, 196610, -1638396, 0, 196610, -1638395, 0, 196610, -1638394, 0, 196610, -1638393, 0, 196610, -1638392, 0, 196610, -1638391, 0, 196610, -1638390, 0, 8, -1638386, 0, 5, -1638385, 0, 196610, -1638384, 0, 196610, -1638383, 0, 196610, -1638382, 0, 196610, -1638381, 0, 196610, -1638380, 0, 196610, -1638379, 0, 196610, -1638378, 0, 196610, -1638377, 0, 196610, -1638376, 0, 196610, -1638375, 0, 196610, -1638374, 0, 196616, -1572854, 0, 65540, -1572850, 0, 65540, -1507318, 0, 65540, -1507314, 0, 65540, -1441782, 0, 65540, -1441778, 0, 65540, -1376246, 0, 65540, -1376242, 0, 65540, -1310710, 0, 65540, -1310706, 0, 65540, -1245174, 0, 65540, -1245170, 0, 65540, -1179638, 0, 65540, -1179634, 0, 65540, -1114102, 0, 262149, -1114101, 0, 196610, -1114100, 0, 196610, -1114099, 0, 196610, -1114098, 0, 262152, -1048566, 0, 65540, -1048562, 0, 65540, -983030, 0, 65540, -983026, 0, 65540, -917494, 0, 65540, -917490, 0, 65540, -851958, 0, 65540, -851954, 0, 65540, -786422, 0, 65540, -786418, 0, 65540, -720886, 0, 65540, -720882, 0, 65540, -655350, 0, 65540, -655346, 0, 65540, -524290, 0, 5, -524289, 0, 196610, -589824, 0, 196610, -589823, 0, 196610, -589822, 0, 196610, -589821, 0, 196610, -589820, 0, 196610, -589819, 0, 8, -589814, 0, 65540, -589810, 0, 65540, -458754, 0, 65540, -524283, 0, 65540, -524278, 0, 65540, -524274, 0, 65540, -393218, 0, 65540, -458747, 0, 65540, -458742, 0, 65540, -458738, 0, 65540, -327682, 0, 65540, -393211, 0, 65540, -393206, 0, 65540, -393202, 0, 65540, -262146, 0, 65540, -327675, 0, 65540, -327670, 0, 65540, -327666, 0, 65540, -196610, 0, 196613, -196609, 0, 8, -262140, 0, 5, -262139, 0, 196616, -262134, 0, 65540, -262130, 0, 65540, -131073, 0, 65540, -196604, 0, 65540, -196598, 0, 65540, -196594, 0, 65540, -65537, 0, 65540, -131068, 0, 65540, -131062, 0, 65540, -131058, 0, 65540, -131049, 0, 5, -131048, 0, 196610, -131047, 0, 196610, -131046, 0, 196610, -131045, 0, 196610, -131044, 0, 8, -1, 0, 65540, -65532, 0, 196613, -65531, 0, 196610, -65530, 0, 196610, -65529, 0, 196610, -65528, 0, 196610, -65527, 0, 196610, -65526, 0, 196616, -65522, 0, 196613, -65521, 0, 196610, -65520, 0, 196610, -65519, 0, 196610, -65518, 0, 196610, -65517, 0, 196610, -65516, 0, 196610, -65515, 0, 196610, -65514, 0, 196610, -65513, 0, 196616, -65508, 0, 65540, 65535, 0, 65540, 28, 0, 65540, 131071, 0, 65540, 65564, 0, 65540, 196607, 0, 65540, 131100, 0, 65540, 262143, 0, 65540, 196611, 0, 196609, 196612, 0, 196610, 196613, 0, 196610, 196614, 0, 196611, 196618, 0, 196609, 196619, 0, 196610, 196620, 0, 196610, 196621, 0, 196611, 196625, 0, 4, 196636, 0, 65540, 327679, 0, 65540, 262161, 0, 65540, 262164, 0, 5, 262165, 0, 196610, 262166, 0, 196610, 262167, 0, 8, 262172, 0, 65540, 393215, 0, 65540, 327697, 0, 65540, 327700, 0, 65540, 327703, 0, 196613, 327704, 0, 196610, 327705, 0, 196610, 327706, 0, 196610, 327707, 0, 196610, 327708, 0, 196616, 458743, 0, 5, 458744, 0, 196610, 458745, 0, 196610, 458746, 0, 196610, 458747, 0, 196610, 458748, 0, 8, 458751, 0, 65540, 393233, 0, 65540, 393236, 0, 65540, 524279, 0, 65540, 524284, 0, 196613, 524285, 0, 196610, 524286, 0, 196610, 524287, 0, 196616, 458756, 0, 4, 458760, 0, 4, 458764, 0, 4, 458769, 0, 65540, 458772, 0, 65540, 589815, 0, 65540, 524292, 0, 131076, 524296, 0, 131076, 524300, 0, 131076, 524305, 0, 131076, 524308, 0, 65540, 655351, 0, 65540, 589844, 0, 65540, 720887, 0, 65540, 655380, 0, 65540, 786423, 0, 65540, 720916, 0, 65540, 851959, 0, 65540, 851964, 0, 5, 851965, 0, 196610, 851966, 0, 196610, 851967, 0, 196610, 786432, 0, 196610, 786433, 0, 196610, 786434, 0, 196610, 786435, 0, 196610, 786436, 0, 196610, 786437, 0, 196610, 786438, 0, 196610, 786439, 0, 196610, 786440, 0, 196610, 786441, 0, 196610, 786442, 0, 196610, 786443, 0, 196610, 786444, 0, 196610, 786445, 0, 196610, 786446, 0, 196610, 786447, 0, 8, 786452, 0, 65540, 917495, 0, 196613, 917496, 0, 196610, 917497, 0, 196610, 917498, 0, 196610, 917499, 0, 196610, 917500, 0, 196616, 851983, 0, 65540, 851988, 0, 65540, 917519, 0, 65540, 917524, 0, 65540, 983054, 0, 5, 983055, 0, 196616, 983060, 0, 196613, 983061, 0, 8, 1048590, 0, 65540, 1048597, 0, 65540, 1114126, 0, 65540, 1114133, 0, 65540, 1179662, 0, 65540, 1179669, 0, 65540, 1245198, 0, 65540, 1245205, 0, 65540, 1310734, 0, 196613, 1310735, 0, 196610, 1310736, 0, 196610, 1310737, 0, 196610, 1310738, 0, 196610, 1310739, 0, 196610, 1310740, 0, 196610, 1310741, 0, 196616 ) [node name="Fire3" type="AnimatedSprite" parent="."] position = Vector2( -607.628, -210.601 ) frames = SubResource( 1 ) -frame = 4 +frame = 2 playing = true offset = Vector2( 679.819, 333.222 ) [node name="Fire2" type="AnimatedSprite" parent="."] position = Vector2( -543.25, -212.563 ) frames = SubResource( 1 ) -frame = 7 +frame = 5 playing = true offset = Vector2( 679.819, 333.222 ) [node name="Fire1" type="AnimatedSprite" parent="."] position = Vector2( -479.806, -214.167 ) frames = SubResource( 1 ) +frame = 12 playing = true offset = Vector2( 679.819, 333.222 ) @@ -108,17 +109,17 @@ tile_set = ExtResource( 15 ) cell_size = Vector2( 16, 16 ) cell_custom_transform = Transform2D( 16, 0, 0, 16, 0, 0 ) format = 1 -tile_data = PoolIntArray( -2293755, 8, 37, -2293754, 8, 38, -2293753, 8, 38, -2293752, 8, 38, -2293751, 8, 38, -2293750, 8, 38, -2293749, 8, 38, -2293748, 8, 38, -2293747, 8, 38, -2293746, 8, 38, -2293745, 8, 38, -2293744, 8, 38, -2293743, 8, 38, -2293742, 8, 38, -2293741, 8, 39, -2228219, 8, 65573, -2228218, 8, 65574, -2228217, 8, 65574, -2228216, 8, 65574, -2228215, 8, 65574, -2228214, 8, 65574, -2228213, 8, 65574, -2228212, 8, 65574, -2228211, 8, 65574, -2228210, 8, 65574, -2228209, 8, 65574, -2228208, 8, 65574, -2228207, 8, 65574, -2228206, 8, 65574, -2228205, 8, 65575, -2162683, 8, 65573, -2162682, 8, 65574, -2162681, 8, 65574, -2162680, 8, 65574, -2162679, 8, 65574, -2162678, 8, 65574, -2162677, 8, 65574, -2162676, 8, 65574, -2162675, 8, 65574, -2162674, 8, 65574, -2162673, 8, 65574, -2162672, 8, 65574, -2162671, 8, 65574, -2162670, 8, 65574, -2162669, 8, 65575, -2097147, 8, 65573, -2097146, 8, 65574, -2097145, 8, 65574, -2097144, 8, 65574, -2097143, 8, 65574, -2097142, 8, 65574, -2097141, 8, 65574, -2097140, 8, 65574, -2097139, 8, 65574, -2097138, 8, 65574, -2097137, 8, 65574, -2097136, 8, 65574, -2097135, 8, 65574, -2097134, 8, 65574, -2097133, 8, 65575, -2031611, 8, 65573, -2031610, 8, 65574, -2031609, 8, 65574, -2031608, 8, 65574, -2031607, 8, 65574, -2031606, 8, 65574, -2031605, 8, 65574, -2031604, 8, 65574, -2031603, 8, 65574, -2031602, 8, 65574, -2031601, 8, 65574, -2031600, 8, 65574, -2031599, 8, 65574, -2031598, 8, 65574, -2031597, 8, 65575, -1966075, 8, 65573, -1966074, 8, 65574, -1966073, 8, 65574, -1966072, 8, 65574, -1966071, 8, 65574, -1966070, 8, 65574, -1966069, 8, 65574, -1966068, 8, 65574, -1966067, 8, 65574, -1966066, 8, 65574, -1966065, 8, 65574, -1966064, 8, 65574, -1966063, 8, 65574, -1966062, 8, 65574, -1966061, 8, 65575, -1900539, 8, 65573, -1900538, 8, 65574, -1900537, 8, 65574, -1900536, 8, 65574, -1900535, 8, 65574, -1900534, 8, 65574, -1900533, 8, 65574, -1900532, 8, 65574, -1900531, 8, 65574, -1900530, 8, 65574, -1900529, 8, 65574, -1900528, 8, 65574, -1900527, 8, 65574, -1900526, 8, 65574, -1900525, 8, 65575, -1835003, 8, 65573, -1835002, 8, 65574, -1835001, 8, 65574, -1835000, 8, 65574, -1834999, 8, 65574, -1834998, 8, 65574, -1834997, 8, 65574, -1834996, 8, 65574, -1834995, 8, 65574, -1834994, 8, 65574, -1834993, 8, 65574, -1834992, 8, 65574, -1834991, 8, 65574, -1834990, 8, 65574, -1834989, 8, 65575, -1769467, 8, 65573, -1769466, 8, 65574, -1769465, 8, 65574, -1769464, 8, 65574, -1769463, 8, 65574, -1769462, 8, 65574, -1769461, 8, 65574, -1769460, 8, 65574, -1769459, 8, 65574, -1769458, 8, 65574, -1769457, 8, 65574, -1769456, 8, 65574, -1769455, 8, 65574, -1769454, 8, 65574, -1769453, 8, 65575, -1703931, 8, 131109, -1703930, 8, 131110, -1703929, 8, 131110, -1703928, 8, 131110, -1703927, 8, 131110, -1703926, 8, 131110, -1703925, 8, 65579, -1703924, 8, 65574, -1703923, 8, 65578, -1703922, 8, 131110, -1703921, 8, 131110, -1703920, 8, 131110, -1703919, 8, 131110, -1703918, 8, 131110, -1703917, 8, 131111, -1638389, 8, 65573, -1638388, 8, 65574, -1638387, 8, 65575, -1572853, 8, 65573, -1572852, 8, 65574, -1572851, 8, 65575, -1507317, 8, 65573, -1507316, 8, 65574, -1507315, 8, 65575, -1441781, 8, 65573, -1441780, 8, 65574, -1441779, 8, 65575, -1376245, 8, 65573, -1376244, 8, 65574, -1376243, 8, 65575, -1310709, 8, 65573, -1310708, 8, 65574, -1310707, 8, 65575, -1245173, 8, 65573, -1245172, 8, 65574, -1245171, 8, 65575, -1179637, 8, 131109, -1179636, 8, 131110, -1179635, 8, 131111, -1048565, 8, 37, -1048564, 8, 38, -1048563, 8, 39, -983029, 8, 65573, -983028, 8, 65574, -983027, 8, 65575, -917493, 8, 65573, -917492, 8, 65574, -917491, 8, 65575, -851957, 8, 65573, -851956, 8, 65574, -851955, 8, 65575, -786421, 8, 65573, -786420, 8, 65574, -786419, 8, 65575, -720885, 8, 65573, -720884, 8, 65574, -720883, 8, 65575, -655349, 8, 65573, -655348, 8, 65574, -655347, 8, 65575, -589813, 8, 65573, -589812, 8, 65574, -589811, 8, 65575, -458753, 8, 37, -524288, 8, 38, -524287, 8, 38, -524286, 8, 38, -524285, 8, 38, -524284, 8, 39, -524277, 8, 65573, -524276, 8, 65574, -524275, 8, 65575, -393217, 8, 65573, -458752, 8, 65574, -458751, 8, 65574, -458750, 8, 65574, -458749, 8, 65574, -458748, 8, 65575, -458741, 8, 65573, -458740, 8, 65574, -458739, 8, 65575, -327681, 8, 65573, -393216, 8, 65574, -393215, 8, 65574, -393214, 8, 65574, -393213, 8, 65574, -393212, 8, 65575, -393205, 8, 65573, -393204, 8, 65574, -393203, 8, 65575, -262145, 8, 131109, -327680, 8, 65579, -327679, 8, 65574, -327678, 8, 65574, -327677, 8, 65578, -327676, 8, 131111, -327669, 8, 65573, -327668, 8, 65574, -327667, 8, 65575, -262144, 8, 65573, -262143, 8, 65574, -262142, 8, 65574, -262141, 8, 65575, -262133, 8, 65573, -262132, 8, 65574, -262131, 8, 65575, -196608, 8, 65573, -196607, 8, 65574, -196606, 8, 65574, -196605, 8, 65575, -196597, 8, 65573, -196596, 8, 65574, -196595, 8, 65575, -131072, 8, 65573, -131071, 8, 65574, -131070, 8, 65574, -131069, 8, 65575, -131061, 8, 65573, -131060, 8, 65574, -131059, 8, 65575, -65536, 8, 65573, -65535, 8, 65574, -65534, 8, 65574, -65533, 8, 65575, -65525, 8, 65573, -65524, 8, 65574, -65523, 8, 65575, -65512, 8, 37, -65511, 8, 38, -65510, 8, 38, -65509, 8, 39, 0, 8, 65573, 1, 8, 65574, 2, 8, 65574, 3, 8, 131114, 4, 8, 38, 5, 8, 38, 6, 8, 38, 7, 8, 38, 8, 8, 38, 9, 8, 38, 10, 8, 38, 11, 8, 131115, 12, 8, 65574, 13, 8, 131114, 14, 8, 38, 15, 8, 38, 16, 8, 38, 17, 8, 38, 18, 8, 38, 19, 8, 38, 20, 8, 38, 21, 8, 38, 22, 8, 38, 23, 8, 38, 24, 8, 131115, 25, 8, 65574, 26, 8, 65574, 27, 8, 65575, 65536, 8, 65573, 65537, 8, 65574, 65538, 8, 65574, 65539, 8, 65574, 65540, 8, 65574, 65541, 8, 65574, 65542, 8, 65574, 65543, 8, 65574, 65544, 8, 65574, 65545, 8, 65574, 65546, 8, 65574, 65547, 8, 65574, 65548, 8, 65574, 65549, 8, 65574, 65550, 8, 65574, 65551, 8, 65574, 65552, 8, 65574, 65553, 8, 65574, 65554, 8, 65574, 65555, 8, 65574, 65556, 8, 65574, 65557, 8, 65574, 65558, 8, 65574, 65559, 8, 65574, 65560, 8, 65574, 65561, 8, 65574, 65562, 8, 65574, 65563, 8, 65575, 131072, 8, 65573, 131073, 8, 65574, 131074, 8, 65578, 131075, 8, 131110, 131076, 8, 131110, 131077, 8, 131110, 131078, 8, 131110, 131079, 8, 65579, 131080, 8, 65574, 131081, 8, 65578, 131082, 8, 131110, 131083, 8, 131110, 131084, 8, 131110, 131085, 8, 131110, 131086, 8, 65579, 131087, 8, 65574, 131088, 8, 65578, 131089, 8, 131110, 131090, 8, 65579, 131091, 8, 65574, 131092, 8, 65574, 131093, 8, 65574, 131094, 8, 65574, 131095, 8, 65574, 131096, 8, 65574, 131097, 8, 65574, 131098, 8, 65574, 131099, 8, 65575, 196608, 8, 65573, 196609, 8, 65574, 196610, 8, 65575, 196615, 8, 65573, 196616, 8, 65574, 196617, 8, 65575, 196622, 8, 65573, 196623, 8, 65574, 196624, 8, 65575, 196626, 8, 65573, 196627, 8, 65578, 196628, 8, 131110, 196629, 8, 131110, 196630, 8, 131110, 196631, 8, 131110, 196632, 8, 65579, 196633, 8, 65574, 196634, 8, 65574, 196635, 8, 65575, 262144, 8, 65573, 262145, 8, 65574, 262146, 8, 131114, 262147, 8, 38, 262148, 8, 38, 262149, 8, 38, 262150, 8, 38, 262151, 8, 131115, 262152, 8, 65574, 262153, 8, 131114, 262154, 8, 38, 262155, 8, 38, 262156, 8, 38, 262157, 8, 38, 262158, 8, 131115, 262159, 8, 65574, 262160, 8, 65575, 262162, 8, 65573, 262163, 8, 65575, 262168, 8, 131109, 262169, 8, 131110, 262170, 8, 131110, 262171, 8, 131111, 327680, 8, 65573, 327681, 8, 65574, 327682, 8, 65574, 327683, 8, 65574, 327684, 8, 65574, 327685, 8, 65574, 327686, 8, 65574, 327687, 8, 65574, 327688, 8, 65574, 327689, 8, 65574, 327690, 8, 65574, 327691, 8, 65574, 327692, 8, 65574, 327693, 8, 65574, 327694, 8, 65574, 327695, 8, 65574, 327696, 8, 65575, 327698, 8, 65573, 327699, 8, 65575, 393216, 8, 65573, 393217, 8, 65574, 393218, 8, 65574, 393219, 8, 65578, 393220, 8, 131110, 393221, 8, 65579, 393222, 8, 65574, 393223, 8, 65578, 393224, 8, 131110, 393225, 8, 65579, 393226, 8, 65574, 393227, 8, 65578, 393228, 8, 131110, 393229, 8, 65579, 393230, 8, 65574, 393231, 8, 65574, 393232, 8, 65575, 393234, 8, 65573, 393235, 8, 65575, 524280, 8, 37, 524281, 8, 38, 524282, 8, 38, 524283, 8, 39, 458752, 8, 65573, 458753, 8, 65574, 458754, 8, 65574, 458755, 8, 65575, 458757, 8, 65573, 458758, 8, 65574, 458759, 8, 65575, 458761, 8, 65573, 458762, 8, 65574, 458763, 8, 65575, 458765, 8, 65573, 458766, 8, 65574, 458767, 8, 65574, 458768, 8, 65575, 458770, 8, 65573, 458771, 8, 65575, 589816, 8, 65573, 589817, 8, 65574, 589818, 8, 65574, 589819, 8, 131114, 589820, 8, 38, 589821, 8, 38, 589822, 8, 38, 589823, 8, 38, 524288, 8, 131115, 524289, 8, 65574, 524290, 8, 65574, 524291, 8, 65575, 524293, 8, 65573, 524294, 8, 65574, 524295, 8, 65575, 524297, 8, 65573, 524298, 8, 65574, 524299, 8, 65575, 524301, 8, 65573, 524302, 8, 65574, 524303, 8, 65574, 524304, 8, 65575, 524306, 8, 65573, 524307, 8, 65575, 655352, 8, 65573, 655353, 8, 65574, 655354, 8, 65574, 655355, 8, 65574, 655356, 8, 65574, 655357, 8, 65574, 655358, 8, 65574, 655359, 8, 65574, 589824, 8, 65574, 589825, 8, 65574, 589826, 8, 65574, 589827, 8, 131114, 589828, 8, 38, 589829, 8, 131115, 589830, 8, 65574, 589831, 8, 131114, 589832, 8, 38, 589833, 8, 131115, 589834, 8, 65574, 589835, 8, 131114, 589836, 8, 38, 589837, 8, 131115, 589838, 8, 65574, 589839, 8, 65574, 589840, 8, 131114, 589841, 8, 38, 589842, 8, 131115, 589843, 8, 65575, 720888, 8, 65573, 720889, 8, 65574, 720890, 8, 65574, 720891, 8, 65574, 720892, 8, 65574, 720893, 8, 65574, 720894, 8, 65574, 720895, 8, 65574, 655360, 8, 65574, 655361, 8, 65574, 655362, 8, 65574, 655363, 8, 65574, 655364, 8, 65574, 655365, 8, 65574, 655366, 8, 65574, 655367, 8, 65574, 655368, 8, 65574, 655369, 8, 65574, 655370, 8, 65574, 655371, 8, 65574, 655372, 8, 65574, 655373, 8, 65574, 655374, 8, 65574, 655375, 8, 65574, 655376, 8, 65574, 655377, 8, 65574, 655378, 8, 65574, 655379, 8, 65575, 786424, 8, 65573, 786425, 8, 65574, 786426, 8, 65574, 786427, 8, 65578, 786428, 8, 131110, 786429, 8, 131110, 786430, 8, 131110, 786431, 8, 131110, 720896, 8, 131110, 720897, 8, 131110, 720898, 8, 131110, 720899, 8, 131110, 720900, 8, 131110, 720901, 8, 131110, 720902, 8, 131110, 720903, 8, 131110, 720904, 8, 131110, 720905, 8, 131110, 720906, 8, 131110, 720907, 8, 131110, 720908, 8, 131110, 720909, 8, 131110, 720910, 8, 131110, 720911, 8, 131110, 720912, 8, 65579, 720913, 8, 65574, 720914, 8, 65574, 720915, 8, 65575, 851960, 8, 131109, 851961, 8, 131110, 851962, 8, 131110, 851963, 8, 131111, 786448, 8, 65573, 786449, 8, 65574, 786450, 8, 65574, 786451, 8, 65575, 851984, 8, 65573, 851985, 8, 65574, 851986, 8, 65574, 851987, 8, 65575, 917520, 8, 65573, 917521, 8, 65574, 917522, 8, 65574, 917523, 8, 65575, 983056, 8, 65573, 983057, 8, 65574, 983058, 8, 65574, 983059, 8, 65575, 1048591, 8, 37, 1048592, 8, 131115, 1048593, 8, 65574, 1048594, 8, 65574, 1048595, 8, 131114, 1048596, 8, 39, 1114127, 8, 65573, 1114128, 8, 65574, 1114129, 8, 65574, 1114130, 8, 65574, 1114131, 8, 65574, 1114132, 8, 65575, 1179663, 8, 65573, 1179664, 8, 65574, 1179665, 8, 65574, 1179666, 8, 65574, 1179667, 8, 65574, 1179668, 8, 65575, 1245199, 8, 131109, 1245200, 8, 131110, 1245201, 8, 131110, 1245202, 8, 131110, 1245203, 8, 131110, 1245204, 8, 131111 ) +tile_data = PoolIntArray( -2621441, 8, 37, -2686976, 8, 38, -2686975, 8, 38, -2686974, 8, 38, -2686973, 8, 38, -2686972, 8, 38, -2686971, 8, 38, -2686970, 8, 38, -2686969, 8, 38, -2686968, 8, 38, -2686967, 8, 38, -2686966, 8, 38, -2686965, 8, 38, -2686964, 8, 38, -2686963, 8, 38, -2686962, 8, 38, -2686961, 8, 38, -2686960, 8, 38, -2686959, 8, 38, -2686958, 8, 38, -2686957, 8, 38, -2686956, 8, 38, -2686955, 8, 38, -2686954, 8, 38, -2686953, 8, 38, -2686952, 8, 38, -2686951, 8, 39, -2555905, 8, 65573, -2621440, 8, 65574, -2621439, 8, 65574, -2621438, 8, 65574, -2621437, 8, 65574, -2621436, 8, 65574, -2621435, 8, 65574, -2621434, 8, 65574, -2621433, 8, 65574, -2621432, 8, 65574, -2621431, 8, 65574, -2621430, 8, 65574, -2621429, 8, 65574, -2621428, 8, 65574, -2621427, 8, 65574, -2621426, 8, 65574, -2621425, 8, 65574, -2621424, 8, 65574, -2621423, 8, 65574, -2621422, 8, 65574, -2621421, 8, 65574, -2621420, 8, 65574, -2621419, 8, 65574, -2621418, 8, 65574, -2621417, 8, 65574, -2621416, 8, 65574, -2621415, 8, 65575, -2490369, 8, 65573, -2555904, 8, 65574, -2555903, 8, 65574, -2555902, 8, 65574, -2555901, 8, 65574, -2555900, 8, 65574, -2555899, 8, 65574, -2555898, 8, 65574, -2555897, 8, 65574, -2555896, 8, 65574, -2555895, 8, 65574, -2555894, 8, 65574, -2555893, 8, 65574, -2555892, 8, 65574, -2555891, 8, 65574, -2555890, 8, 65574, -2555889, 8, 65574, -2555888, 8, 65574, -2555887, 8, 65574, -2555886, 8, 65574, -2555885, 8, 65574, -2555884, 8, 65574, -2555883, 8, 65574, -2555882, 8, 65574, -2555881, 8, 65574, -2555880, 8, 65574, -2555879, 8, 65575, -2424833, 8, 65573, -2490368, 8, 65574, -2490367, 8, 65574, -2490366, 8, 65574, -2490365, 8, 65574, -2490364, 8, 65574, -2490363, 8, 65574, -2490362, 8, 65574, -2490361, 8, 65574, -2490360, 8, 65574, -2490359, 8, 65574, -2490358, 8, 65574, -2490357, 8, 65574, -2490356, 8, 65574, -2490355, 8, 65574, -2490354, 8, 65574, -2490353, 8, 65574, -2490352, 8, 65574, -2490351, 8, 65574, -2490350, 8, 65574, -2490349, 8, 65574, -2490348, 8, 65574, -2490347, 8, 65574, -2490346, 8, 65574, -2490345, 8, 65574, -2490344, 8, 65574, -2490343, 8, 65575, -2359297, 8, 65573, -2424832, 8, 65574, -2424831, 8, 65574, -2424830, 8, 65574, -2424829, 8, 65574, -2424828, 8, 65574, -2424827, 8, 65574, -2424826, 8, 65574, -2424825, 8, 65574, -2424824, 8, 65574, -2424823, 8, 65574, -2424822, 8, 65574, -2424821, 8, 65574, -2424820, 8, 65574, -2424819, 8, 65574, -2424818, 8, 65574, -2424817, 8, 65574, -2424816, 8, 65574, -2424815, 8, 65574, -2424814, 8, 65574, -2424813, 8, 65574, -2424812, 8, 65574, -2424811, 8, 65574, -2424810, 8, 65574, -2424809, 8, 65574, -2424808, 8, 65574, -2424807, 8, 65575, -2293761, 8, 65573, -2359296, 8, 65574, -2359295, 8, 65574, -2359294, 8, 65574, -2359293, 8, 65574, -2359292, 8, 65574, -2359291, 8, 65574, -2359290, 8, 65574, -2359289, 8, 65574, -2359288, 8, 65574, -2359287, 8, 65574, -2359286, 8, 65574, -2359285, 8, 65574, -2359284, 8, 65574, -2359283, 8, 65574, -2359282, 8, 65574, -2359281, 8, 65574, -2359280, 8, 65574, -2359279, 8, 65574, -2359278, 8, 65574, -2359277, 8, 65574, -2359276, 8, 65574, -2359275, 8, 65574, -2359274, 8, 65574, -2359273, 8, 65574, -2359272, 8, 65574, -2359271, 8, 65575, -2228225, 8, 65573, -2293760, 8, 65574, -2293759, 8, 65574, -2293758, 8, 65574, -2293757, 8, 65574, -2293756, 8, 65574, -2293755, 8, 65574, -2293754, 8, 65574, -2293753, 8, 65574, -2293752, 8, 65574, -2293751, 8, 65574, -2293750, 8, 65574, -2293749, 8, 65574, -2293748, 8, 65574, -2293747, 8, 65574, -2293746, 8, 65574, -2293745, 8, 65574, -2293744, 8, 65574, -2293743, 8, 65574, -2293742, 8, 65574, -2293741, 8, 65574, -2293740, 8, 65574, -2293739, 8, 65574, -2293738, 8, 65574, -2293737, 8, 65574, -2293736, 8, 65574, -2293735, 8, 65575, -2162689, 8, 65573, -2228224, 8, 65574, -2228223, 8, 65574, -2228222, 8, 65574, -2228221, 8, 65574, -2228220, 8, 65574, -2228219, 8, 65574, -2228218, 8, 65574, -2228217, 8, 65574, -2228216, 8, 65574, -2228215, 8, 65574, -2228214, 8, 65574, -2228213, 8, 65574, -2228212, 8, 65574, -2228211, 8, 65574, -2228210, 8, 65574, -2228209, 8, 65574, -2228208, 8, 65574, -2228207, 8, 65574, -2228206, 8, 65574, -2228205, 8, 65574, -2228204, 8, 65574, -2228203, 8, 65574, -2228202, 8, 65574, -2228201, 8, 65574, -2228200, 8, 65574, -2228199, 8, 65575, -2097153, 8, 65573, -2162688, 8, 65574, -2162687, 8, 65574, -2162686, 8, 65574, -2162685, 8, 65574, -2162684, 8, 65574, -2162683, 8, 65574, -2162682, 8, 65574, -2162681, 8, 65574, -2162680, 8, 65574, -2162679, 8, 65574, -2162678, 8, 65574, -2162677, 8, 65574, -2162676, 8, 65574, -2162675, 8, 65574, -2162674, 8, 65574, -2162673, 8, 65574, -2162672, 8, 65574, -2162671, 8, 65574, -2162670, 8, 65574, -2162669, 8, 65574, -2162668, 8, 65574, -2162667, 8, 65574, -2162666, 8, 65574, -2162665, 8, 65574, -2162664, 8, 65574, -2162663, 8, 65575, -2031617, 8, 65573, -2097152, 8, 65574, -2097151, 8, 65574, -2097150, 8, 65574, -2097149, 8, 65574, -2097148, 8, 65574, -2097147, 8, 65574, -2097146, 8, 65574, -2097145, 8, 65574, -2097144, 8, 65574, -2097143, 8, 65574, -2097142, 8, 65574, -2097141, 8, 65574, -2097140, 8, 65574, -2097139, 8, 65574, -2097138, 8, 65574, -2097137, 8, 65574, -2097136, 8, 65574, -2097135, 8, 65574, -2097134, 8, 65574, -2097133, 8, 65574, -2097132, 8, 65574, -2097131, 8, 65574, -2097130, 8, 65574, -2097129, 8, 65574, -2097128, 8, 65574, -2097127, 8, 65575, -1966081, 8, 65573, -2031616, 8, 65574, -2031615, 8, 65574, -2031614, 8, 65574, -2031613, 8, 65574, -2031612, 8, 65574, -2031611, 8, 65574, -2031610, 8, 65574, -2031609, 8, 65574, -2031608, 8, 65574, -2031607, 8, 65574, -2031606, 8, 65574, -2031605, 8, 65574, -2031604, 8, 65574, -2031603, 8, 65574, -2031602, 8, 65574, -2031601, 8, 65574, -2031600, 8, 65574, -2031599, 8, 65574, -2031598, 8, 65574, -2031597, 8, 65574, -2031596, 8, 65574, -2031595, 8, 65574, -2031594, 8, 65574, -2031593, 8, 65574, -2031592, 8, 65574, -2031591, 8, 65575, -1900545, 8, 65573, -1966080, 8, 65574, -1966079, 8, 65574, -1966078, 8, 65574, -1966077, 8, 65574, -1966076, 8, 65574, -1966075, 8, 65574, -1966074, 8, 65574, -1966073, 8, 65574, -1966072, 8, 65574, -1966071, 8, 65574, -1966070, 8, 65574, -1966069, 8, 65574, -1966068, 8, 65574, -1966067, 8, 65574, -1966066, 8, 65574, -1966065, 8, 65574, -1966064, 8, 65574, -1966063, 8, 65574, -1966062, 8, 65574, -1966061, 8, 65574, -1966060, 8, 65574, -1966059, 8, 65574, -1966058, 8, 65574, -1966057, 8, 65574, -1966056, 8, 65574, -1966055, 8, 65575, -1835009, 8, 65573, -1900544, 8, 65574, -1900543, 8, 65574, -1900542, 8, 65574, -1900541, 8, 65574, -1900540, 8, 65574, -1900539, 8, 65574, -1900538, 8, 65574, -1900537, 8, 65574, -1900536, 8, 65574, -1900535, 8, 65574, -1900534, 8, 65574, -1900533, 8, 65574, -1900532, 8, 65574, -1900531, 8, 65574, -1900530, 8, 65574, -1900529, 8, 65574, -1900528, 8, 65574, -1900527, 8, 65574, -1900526, 8, 65574, -1900525, 8, 65574, -1900524, 8, 65574, -1900523, 8, 65574, -1900522, 8, 65574, -1900521, 8, 65574, -1900520, 8, 65574, -1900519, 8, 65575, -1769473, 8, 65573, -1835008, 8, 65574, -1835007, 8, 65574, -1835006, 8, 65574, -1835005, 8, 65574, -1835004, 8, 65574, -1835003, 8, 65574, -1835002, 8, 65574, -1835001, 8, 65574, -1835000, 8, 65574, -1834999, 8, 65574, -1834998, 8, 65574, -1834997, 8, 65574, -1834996, 8, 65574, -1834995, 8, 65574, -1834994, 8, 65574, -1834993, 8, 65574, -1834992, 8, 65574, -1834991, 8, 65574, -1834990, 8, 65574, -1834989, 8, 65574, -1834988, 8, 65574, -1834987, 8, 65574, -1834986, 8, 65574, -1834985, 8, 65574, -1834984, 8, 65574, -1834983, 8, 65575, -1703937, 8, 65573, -1769472, 8, 65574, -1769471, 8, 65574, -1769470, 8, 65574, -1769469, 8, 65574, -1769468, 8, 65574, -1769467, 8, 65574, -1769466, 8, 65574, -1769465, 8, 65574, -1769464, 8, 65574, -1769463, 8, 65574, -1769462, 8, 65574, -1769461, 8, 65574, -1769460, 8, 65574, -1769459, 8, 65574, -1769458, 8, 65574, -1769457, 8, 65574, -1769456, 8, 65574, -1769455, 8, 65574, -1769454, 8, 65574, -1769453, 8, 65574, -1769452, 8, 65574, -1769451, 8, 65574, -1769450, 8, 65574, -1769449, 8, 65574, -1769448, 8, 65574, -1769447, 8, 65575, -1638401, 8, 131109, -1703936, 8, 131110, -1703935, 8, 131110, -1703934, 8, 131110, -1703933, 8, 131110, -1703932, 8, 131110, -1703931, 8, 131110, -1703930, 8, 131110, -1703929, 8, 131110, -1703928, 8, 131110, -1703927, 8, 131110, -1703926, 8, 131110, -1703925, 8, 65579, -1703924, 8, 65574, -1703923, 8, 65578, -1703922, 8, 131110, -1703921, 8, 131110, -1703920, 8, 131110, -1703919, 8, 131110, -1703918, 8, 131110, -1703917, 8, 131110, -1703916, 8, 131110, -1703915, 8, 131110, -1703914, 8, 131110, -1703913, 8, 131110, -1703912, 8, 131110, -1703911, 8, 131111, -1638389, 8, 65573, -1638388, 8, 65574, -1638387, 8, 65575, -1572853, 8, 65573, -1572852, 8, 65574, -1572851, 8, 65575, -1507317, 8, 65573, -1507316, 8, 65574, -1507315, 8, 65575, -1441781, 8, 65573, -1441780, 8, 65574, -1441779, 8, 65575, -1376245, 8, 65573, -1376244, 8, 65574, -1376243, 8, 65575, -1310709, 8, 65573, -1310708, 8, 65574, -1310707, 8, 65575, -1245173, 8, 65573, -1245172, 8, 65574, -1245171, 8, 65575, -1179637, 8, 131109, -1179636, 8, 131110, -1179635, 8, 131111, -1048565, 8, 37, -1048564, 8, 38, -1048563, 8, 39, -983029, 8, 65573, -983028, 8, 65574, -983027, 8, 65575, -917493, 8, 65573, -917492, 8, 65574, -917491, 8, 65575, -851957, 8, 65573, -851956, 8, 65574, -851955, 8, 65575, -786421, 8, 65573, -786420, 8, 65574, -786419, 8, 65575, -720885, 8, 65573, -720884, 8, 65574, -720883, 8, 65575, -655349, 8, 65573, -655348, 8, 65574, -655347, 8, 65575, -589813, 8, 65573, -589812, 8, 65574, -589811, 8, 65575, -458753, 8, 37, -524288, 8, 38, -524287, 8, 38, -524286, 8, 38, -524285, 8, 38, -524284, 8, 39, -524277, 8, 65573, -524276, 8, 65574, -524275, 8, 65575, -393217, 8, 65573, -458752, 8, 65574, -458751, 8, 65574, -458750, 8, 65574, -458749, 8, 65574, -458748, 8, 65575, -458741, 8, 65573, -458740, 8, 65574, -458739, 8, 65575, -327681, 8, 65573, -393216, 8, 65574, -393215, 8, 65574, -393214, 8, 65574, -393213, 8, 65574, -393212, 8, 65575, -393205, 8, 65573, -393204, 8, 65574, -393203, 8, 65575, -262145, 8, 131109, -327680, 8, 65579, -327679, 8, 65574, -327678, 8, 65574, -327677, 8, 65578, -327676, 8, 131111, -327669, 8, 65573, -327668, 8, 65574, -327667, 8, 65575, -262144, 8, 65573, -262143, 8, 65574, -262142, 8, 65574, -262141, 8, 65575, -262133, 8, 65573, -262132, 8, 65574, -262131, 8, 65575, -196608, 8, 65573, -196607, 8, 65574, -196606, 8, 65574, -196605, 8, 65575, -196597, 8, 65573, -196596, 8, 65574, -196595, 8, 65575, -131072, 8, 65573, -131071, 8, 65574, -131070, 8, 65574, -131069, 8, 65575, -131061, 8, 65573, -131060, 8, 65574, -131059, 8, 65575, -65536, 8, 65573, -65535, 8, 65574, -65534, 8, 65574, -65533, 8, 65575, -65525, 8, 65573, -65524, 8, 65574, -65523, 8, 65575, -65512, 8, 37, -65511, 8, 38, -65510, 8, 38, -65509, 8, 39, 0, 8, 65573, 1, 8, 65574, 2, 8, 65574, 3, 8, 131114, 4, 8, 38, 5, 8, 38, 6, 8, 38, 7, 8, 38, 8, 8, 38, 9, 8, 38, 10, 8, 38, 11, 8, 131115, 12, 8, 65574, 13, 8, 131114, 14, 8, 38, 15, 8, 38, 16, 8, 38, 17, 8, 38, 18, 8, 38, 19, 8, 38, 20, 8, 38, 21, 8, 38, 22, 8, 38, 23, 8, 38, 24, 8, 131115, 25, 8, 65574, 26, 8, 65574, 27, 8, 65575, 65536, 8, 65573, 65537, 8, 65574, 65538, 8, 65574, 65539, 8, 65574, 65540, 8, 65574, 65541, 8, 65574, 65542, 8, 65574, 65543, 8, 65574, 65544, 8, 65574, 65545, 8, 65574, 65546, 8, 65574, 65547, 8, 65574, 65548, 8, 65574, 65549, 8, 65574, 65550, 8, 65574, 65551, 8, 65574, 65552, 8, 65574, 65553, 8, 65574, 65554, 8, 65574, 65555, 8, 65574, 65556, 8, 65574, 65557, 8, 65574, 65558, 8, 65574, 65559, 8, 65574, 65560, 8, 65574, 65561, 8, 65574, 65562, 8, 65574, 65563, 8, 65575, 131072, 8, 65573, 131073, 8, 65574, 131074, 8, 65578, 131075, 8, 131110, 131076, 8, 131110, 131077, 8, 131110, 131078, 8, 131110, 131079, 8, 65579, 131080, 8, 65574, 131081, 8, 65578, 131082, 8, 131110, 131083, 8, 131110, 131084, 8, 131110, 131085, 8, 131110, 131086, 8, 65579, 131087, 8, 65574, 131088, 8, 65578, 131089, 8, 131110, 131090, 8, 65579, 131091, 8, 65574, 131092, 8, 65574, 131093, 8, 65574, 131094, 8, 65574, 131095, 8, 65574, 131096, 8, 65574, 131097, 8, 65574, 131098, 8, 65574, 131099, 8, 65575, 196608, 8, 65573, 196609, 8, 65574, 196610, 8, 65575, 196615, 8, 65573, 196616, 8, 65574, 196617, 8, 65575, 196622, 8, 65573, 196623, 8, 65574, 196624, 8, 65575, 196626, 8, 65573, 196627, 8, 65578, 196628, 8, 131110, 196629, 8, 131110, 196630, 8, 131110, 196631, 8, 131110, 196632, 8, 65579, 196633, 8, 65574, 196634, 8, 65574, 196635, 8, 65575, 262144, 8, 65573, 262145, 8, 65574, 262146, 8, 131114, 262147, 8, 38, 262148, 8, 38, 262149, 8, 38, 262150, 8, 38, 262151, 8, 131115, 262152, 8, 65574, 262153, 8, 131114, 262154, 8, 38, 262155, 8, 38, 262156, 8, 38, 262157, 8, 38, 262158, 8, 131115, 262159, 8, 65574, 262160, 8, 65575, 262162, 8, 65573, 262163, 8, 65575, 262168, 8, 131109, 262169, 8, 131110, 262170, 8, 131110, 262171, 8, 131111, 327680, 8, 65573, 327681, 8, 65574, 327682, 8, 65574, 327683, 8, 65574, 327684, 8, 65574, 327685, 8, 65574, 327686, 8, 65574, 327687, 8, 65574, 327688, 8, 65574, 327689, 8, 65574, 327690, 8, 65574, 327691, 8, 65574, 327692, 8, 65574, 327693, 8, 65574, 327694, 8, 65574, 327695, 8, 65574, 327696, 8, 65575, 327698, 8, 65573, 327699, 8, 65575, 393216, 8, 65573, 393217, 8, 65574, 393218, 8, 65574, 393219, 8, 65578, 393220, 8, 131110, 393221, 8, 65579, 393222, 8, 65574, 393223, 8, 65578, 393224, 8, 131110, 393225, 8, 65579, 393226, 8, 65574, 393227, 8, 65578, 393228, 8, 131110, 393229, 8, 65579, 393230, 8, 65574, 393231, 8, 65574, 393232, 8, 65575, 393234, 8, 65573, 393235, 8, 65575, 524280, 8, 37, 524281, 8, 38, 524282, 8, 38, 524283, 8, 39, 458752, 8, 65573, 458753, 8, 65574, 458754, 8, 65574, 458755, 8, 65575, 458757, 8, 65573, 458758, 8, 65574, 458759, 8, 65575, 458761, 8, 65573, 458762, 8, 65574, 458763, 8, 65575, 458765, 8, 65573, 458766, 8, 65574, 458767, 8, 65574, 458768, 8, 65575, 458770, 8, 65573, 458771, 8, 65575, 589816, 8, 65573, 589817, 8, 65574, 589818, 8, 65574, 589819, 8, 131114, 589820, 8, 38, 589821, 8, 38, 589822, 8, 38, 589823, 8, 38, 524288, 8, 131115, 524289, 8, 65574, 524290, 8, 65574, 524291, 8, 65575, 524293, 8, 65573, 524294, 8, 65574, 524295, 8, 65575, 524297, 8, 65573, 524298, 8, 65574, 524299, 8, 65575, 524301, 8, 65573, 524302, 8, 65574, 524303, 8, 65574, 524304, 8, 65575, 524306, 8, 65573, 524307, 8, 65575, 655352, 8, 65573, 655353, 8, 65574, 655354, 8, 65574, 655355, 8, 65574, 655356, 8, 65574, 655357, 8, 65574, 655358, 8, 65574, 655359, 8, 65574, 589824, 8, 65574, 589825, 8, 65574, 589826, 8, 65574, 589827, 8, 131114, 589828, 8, 38, 589829, 8, 131115, 589830, 8, 65574, 589831, 8, 131114, 589832, 8, 38, 589833, 8, 131115, 589834, 8, 65574, 589835, 8, 131114, 589836, 8, 38, 589837, 8, 131115, 589838, 8, 65574, 589839, 8, 65574, 589840, 8, 131114, 589841, 8, 38, 589842, 8, 131115, 589843, 8, 65575, 720888, 8, 65573, 720889, 8, 65574, 720890, 8, 65574, 720891, 8, 65574, 720892, 8, 65574, 720893, 8, 65574, 720894, 8, 65574, 720895, 8, 65574, 655360, 8, 65574, 655361, 8, 65574, 655362, 8, 65574, 655363, 8, 65574, 655364, 8, 65574, 655365, 8, 65574, 655366, 8, 65574, 655367, 8, 65574, 655368, 8, 65574, 655369, 8, 65574, 655370, 8, 65574, 655371, 8, 65574, 655372, 8, 65574, 655373, 8, 65574, 655374, 8, 65574, 655375, 8, 65574, 655376, 8, 65574, 655377, 8, 65574, 655378, 8, 65574, 655379, 8, 65575, 786424, 8, 65573, 786425, 8, 65574, 786426, 8, 65574, 786427, 8, 65578, 786428, 8, 131110, 786429, 8, 131110, 786430, 8, 131110, 786431, 8, 131110, 720896, 8, 131110, 720897, 8, 131110, 720898, 8, 131110, 720899, 8, 131110, 720900, 8, 131110, 720901, 8, 131110, 720902, 8, 131110, 720903, 8, 131110, 720904, 8, 131110, 720905, 8, 131110, 720906, 8, 131110, 720907, 8, 131110, 720908, 8, 131110, 720909, 8, 131110, 720910, 8, 131110, 720911, 8, 131110, 720912, 8, 65579, 720913, 8, 65574, 720914, 8, 65574, 720915, 8, 65575, 851960, 8, 131109, 851961, 8, 131110, 851962, 8, 131110, 851963, 8, 131111, 786448, 8, 65573, 786449, 8, 65574, 786450, 8, 65574, 786451, 8, 65575, 851984, 8, 65573, 851985, 8, 65574, 851986, 8, 65574, 851987, 8, 65575, 917520, 8, 65573, 917521, 8, 65574, 917522, 8, 65574, 917523, 8, 65575, 983056, 8, 65573, 983057, 8, 65574, 983058, 8, 65574, 983059, 8, 65575, 1048591, 8, 37, 1048592, 8, 131115, 1048593, 8, 65574, 1048594, 8, 65574, 1048595, 8, 131114, 1048596, 8, 39, 1114127, 8, 65573, 1114128, 8, 65574, 1114129, 8, 65574, 1114130, 8, 65574, 1114131, 8, 65574, 1114132, 8, 65575, 1179663, 8, 65573, 1179664, 8, 65574, 1179665, 8, 65574, 1179666, 8, 65574, 1179667, 8, 65574, 1179668, 8, 65575, 1245199, 8, 131109, 1245200, 8, 131110, 1245201, 8, 131110, 1245202, 8, 131110, 1245203, 8, 131110, 1245204, 8, 131111 ) [node name="Wall (Collision)" type="TileMap" parent="."] -tile_set = SubResource( 3 ) +tile_set = SubResource( 9 ) cell_size = Vector2( 16, 16 ) cell_custom_transform = Transform2D( 8, 0, 0, 8, 0, 0 ) show_collision = true collision_layer = 2 collision_mask = 2 format = 1 -tile_data = PoolIntArray( -2359292, 0, 0, -2359291, 0, 0, -2359290, 0, 0, -2359289, 0, 0, -2359288, 0, 0, -2359287, 0, 0, -2359286, 0, 0, -2359285, 0, 0, -2359284, 0, 0, -2359283, 0, 0, -2359282, 0, 0, -2359281, 0, 0, -2359280, 0, 0, -2359279, 0, 0, -2359278, 0, 0, -2359277, 0, 0, -2359276, 0, 0, -2293756, 0, 0, -2293740, 0, 0, -2228220, 0, 0, -2228204, 0, 0, -2162684, 0, 0, -2162668, 0, 0, -2097148, 0, 0, -2097132, 0, 0, -2031612, 0, 0, -2031596, 0, 0, -1966076, 0, 0, -1966060, 0, 0, -1900540, 0, 0, -1900524, 0, 0, -1835004, 0, 0, -1834988, 0, 0, -1769468, 0, 0, -1769452, 0, 0, -1703932, 0, 0, -1703916, 0, 0, -1638396, 0, 0, -1638395, 0, 0, -1638394, 0, 0, -1638393, 0, 0, -1638392, 0, 0, -1638391, 0, 0, -1638390, 0, 0, -1638386, 0, 0, -1638385, 0, 0, -1638384, 0, 0, -1638383, 0, 0, -1638382, 0, 0, -1638381, 0, 0, -1638380, 0, 0, -1114101, 0, 0, -1114100, 0, 0, -1114099, 0, 0, -524290, 0, 0, -524289, 0, 0, -589824, 0, 0, -589823, 0, 0, -589822, 0, 0, -589821, 0, 0, -589820, 0, 0, -589819, 0, 0, -458754, 0, 0, -524283, 0, 0, -393218, 0, 0, -458747, 0, 0, -327682, 0, 0, -393211, 0, 0, -393206, 0, 0, -393205, 0, 0, -393204, 0, 0, -393203, 0, 0, -393202, 0, 0, -262146, 0, 0, -327675, 0, 0, -327670, 0, 0, -327666, 0, 0, -196610, 0, 0, -196609, 0, 0, -262140, 0, 0, -262139, 0, 0, -262134, 0, 0, -262130, 0, 0, -131073, 0, 0, -196604, 0, 0, -196598, 0, 0, -196594, 0, 0, -65537, 0, 0, -131068, 0, 0, -131062, 0, 0, -131058, 0, 0, -131049, 0, 0, -131048, 0, 0, -131047, 0, 0, -131046, 0, 0, -131045, 0, 0, -131044, 0, 0, -1, 0, 0, -65532, 0, 0, -65531, 0, 0, -65530, 0, 0, -65529, 0, 0, -65528, 0, 0, -65527, 0, 0, -65526, 0, 0, -65522, 0, 0, -65521, 0, 0, -65520, 0, 0, -65519, 0, 0, -65518, 0, 0, -65517, 0, 0, -65516, 0, 0, -65515, 0, 0, -65514, 0, 0, -65513, 0, 0, -65508, 0, 0, 65535, 0, 0, 28, 0, 0, 131071, 0, 0, 65564, 0, 0, 196607, 0, 0, 131100, 0, 0, 262143, 0, 0, 196611, 0, 0, 196612, 0, 0, 196613, 0, 0, 196614, 0, 0, 196618, 0, 0, 196619, 0, 0, 196620, 0, 0, 196621, 0, 0, 196625, 0, 0, 196636, 0, 0, 327679, 0, 0, 262161, 0, 0, 262164, 0, 0, 262165, 0, 0, 262166, 0, 0, 262167, 0, 0, 262172, 0, 0, 393215, 0, 0, 327697, 0, 0, 327700, 0, 0, 327703, 0, 0, 327704, 0, 0, 327705, 0, 0, 327706, 0, 0, 327707, 0, 0, 327708, 0, 0, 458743, 0, 0, 458744, 0, 0, 458745, 0, 0, 458746, 0, 0, 458747, 0, 0, 458748, 0, 0, 458751, 0, 0, 393233, 0, 0, 393236, 0, 0, 524279, 0, 0, 524284, 0, 0, 524285, 0, 0, 524286, 0, 0, 524287, 0, 0, 458756, 0, 0, 458760, 0, 0, 458764, 0, 0, 458769, 0, 0, 458772, 0, 0, 589815, 0, 0, 524292, 0, 0, 524296, 0, 0, 524300, 0, 0, 524305, 0, 0, 524308, 0, 0, 655351, 0, 0, 589844, 0, 0, 720887, 0, 0, 655380, 0, 0, 786423, 0, 0, 720916, 0, 0, 851959, 0, 0, 851964, 0, 0, 851965, 0, 0, 851966, 0, 0, 851967, 0, 0, 786432, 0, 0, 786433, 0, 0, 786434, 0, 0, 786435, 0, 0, 786436, 0, 0, 786437, 0, 0, 786438, 0, 0, 786439, 0, 0, 786440, 0, 0, 786441, 0, 0, 786442, 0, 0, 786443, 0, 0, 786444, 0, 0, 786445, 0, 0, 786446, 0, 0, 786447, 0, 0, 786452, 0, 0, 917495, 0, 0, 917496, 0, 0, 917497, 0, 0, 917498, 0, 0, 917499, 0, 0, 917500, 0, 0, 851983, 0, 0, 851988, 0, 0, 917519, 0, 0, 917524, 0, 0, 983054, 0, 0, 983055, 0, 0, 983060, 0, 0, 983061, 0, 0, 1048590, 0, 0, 1048597, 0, 0, 1114126, 0, 0, 1114133, 0, 0, 1179662, 0, 0, 1179669, 0, 0, 1245198, 0, 0, 1245205, 0, 0, 1310734, 0, 0, 1310735, 0, 0, 1310736, 0, 0, 1310737, 0, 0, 1310738, 0, 0, 1310739, 0, 0, 1310740, 0, 0, 1310741, 0, 0 ) +tile_data = PoolIntArray( -2686978, 0, 0, -2686977, 0, 0, -2752512, 0, 0, -2752511, 0, 0, -2752510, 0, 0, -2752509, 0, 0, -2752508, 0, 0, -2752507, 0, 0, -2752506, 0, 0, -2752505, 0, 0, -2752504, 0, 0, -2752503, 0, 0, -2752502, 0, 0, -2752501, 0, 0, -2752500, 0, 0, -2752499, 0, 0, -2752498, 0, 0, -2752497, 0, 0, -2752496, 0, 0, -2752495, 0, 0, -2752494, 0, 0, -2752493, 0, 0, -2752492, 0, 0, -2752491, 0, 0, -2752490, 0, 0, -2752489, 0, 0, -2752488, 0, 0, -2752487, 0, 0, -2752486, 0, 0, -2621442, 0, 0, -2686950, 0, 0, -2555906, 0, 0, -2621414, 0, 0, -2490370, 0, 0, -2555878, 0, 0, -2424834, 0, 0, -2490342, 0, 0, -2359298, 0, 0, -2424806, 0, 0, -2293762, 0, 0, -2359270, 0, 0, -2228226, 0, 0, -2293734, 0, 0, -2162690, 0, 0, -2228198, 0, 0, -2097154, 0, 0, -2162662, 0, 0, -2031618, 0, 0, -2097126, 0, 0, -1966082, 0, 0, -2031590, 0, 0, -1900546, 0, 0, -1966054, 0, 0, -1835010, 0, 0, -1900518, 0, 0, -1769474, 0, 0, -1834982, 0, 0, -1703938, 0, 0, -1769446, 0, 0, -1638402, 0, 0, -1638401, 0, 0, -1703910, 0, 0, -1572866, 0, 0, -1572865, 0, 0, -1638400, 0, 0, -1638399, 0, 0, -1638398, 0, 0, -1638397, 0, 0, -1638396, 0, 0, -1638395, 0, 0, -1638394, 0, 0, -1638393, 0, 0, -1638392, 0, 0, -1638391, 0, 0, -1638390, 0, 0, -1638386, 0, 0, -1638385, 0, 0, -1638384, 0, 0, -1638383, 0, 0, -1638382, 0, 0, -1638381, 0, 0, -1638380, 0, 0, -1638379, 0, 0, -1638378, 0, 0, -1638377, 0, 0, -1638376, 0, 0, -1638375, 0, 0, -1638374, 0, 0, -1572854, 0, 0, -1572850, 0, 0, -1507318, 0, 0, -1507314, 0, 0, -1441782, 0, 0, -1441778, 0, 0, -1376246, 0, 0, -1376242, 0, 0, -1310710, 0, 0, -1310706, 0, 0, -1245174, 0, 0, -1245170, 0, 0, -1179638, 0, 0, -1179634, 0, 0, -1114102, 0, 0, -1114101, 0, 0, -1114100, 0, 0, -1114099, 0, 0, -1114098, 0, 0, -524290, 0, 0, -524289, 0, 0, -589824, 0, 0, -589823, 0, 0, -589822, 0, 0, -589821, 0, 0, -589820, 0, 0, -589819, 0, 0, -458754, 0, 0, -524283, 0, 0, -393218, 0, 0, -458747, 0, 0, -327682, 0, 0, -393211, 0, 0, -393206, 0, 0, -393205, 0, 0, -393204, 0, 0, -393203, 0, 0, -393202, 0, 0, -262146, 0, 0, -327675, 0, 0, -327670, 0, 0, -327666, 0, 0, -196610, 0, 0, -196609, 0, 0, -262140, 0, 0, -262139, 0, 0, -262134, 0, 0, -262130, 0, 0, -131073, 0, 0, -196604, 0, 0, -196598, 0, 0, -196594, 0, 0, -65537, 0, 0, -131068, 0, 0, -131062, 0, 0, -131058, 0, 0, -131049, 0, 0, -131048, 0, 0, -131047, 0, 0, -131046, 0, 0, -131045, 0, 0, -131044, 0, 0, -1, 0, 0, -65532, 0, 0, -65531, 0, 0, -65530, 0, 0, -65529, 0, 0, -65528, 0, 0, -65527, 0, 0, -65526, 0, 0, -65522, 0, 0, -65521, 0, 0, -65520, 0, 0, -65519, 0, 0, -65518, 0, 0, -65517, 0, 0, -65516, 0, 0, -65515, 0, 0, -65514, 0, 0, -65513, 0, 0, -65508, 0, 0, 65535, 0, 0, 28, 0, 0, 131071, 0, 0, 65564, 0, 0, 196607, 0, 0, 131100, 0, 0, 262143, 0, 0, 196611, 0, 0, 196612, 0, 0, 196613, 0, 0, 196614, 0, 0, 196618, 0, 0, 196619, 0, 0, 196620, 0, 0, 196621, 0, 0, 196625, 0, 0, 196636, 0, 0, 327679, 0, 0, 262161, 0, 0, 262164, 0, 0, 262165, 0, 0, 262166, 0, 0, 262167, 0, 0, 262172, 0, 0, 393215, 0, 0, 327697, 0, 0, 327700, 0, 0, 327703, 0, 0, 327704, 0, 0, 327705, 0, 0, 327706, 0, 0, 327707, 0, 0, 327708, 0, 0, 458743, 0, 0, 458744, 0, 0, 458745, 0, 0, 458746, 0, 0, 458747, 0, 0, 458748, 0, 0, 458751, 0, 0, 393233, 0, 0, 393236, 0, 0, 524279, 0, 0, 524284, 0, 0, 524285, 0, 0, 524286, 0, 0, 524287, 0, 0, 458756, 0, 0, 458760, 0, 0, 458764, 0, 0, 458769, 0, 0, 458772, 0, 0, 589815, 0, 0, 524292, 0, 0, 524296, 0, 0, 524300, 0, 0, 524305, 0, 0, 524308, 0, 0, 655351, 0, 0, 589844, 0, 0, 720887, 0, 0, 655380, 0, 0, 786423, 0, 0, 720916, 0, 0, 851959, 0, 0, 851964, 0, 0, 851965, 0, 0, 851966, 0, 0, 851967, 0, 0, 786432, 0, 0, 786433, 0, 0, 786434, 0, 0, 786435, 0, 0, 786436, 0, 0, 786437, 0, 0, 786438, 0, 0, 786439, 0, 0, 786440, 0, 0, 786441, 0, 0, 786442, 0, 0, 786443, 0, 0, 786444, 0, 0, 786445, 0, 0, 786446, 0, 0, 786447, 0, 0, 786452, 0, 0, 917495, 0, 0, 917496, 0, 0, 917497, 0, 0, 917498, 0, 0, 917499, 0, 0, 917500, 0, 0, 851983, 0, 0, 851988, 0, 0, 917519, 0, 0, 917524, 0, 0, 983054, 0, 0, 983055, 0, 0, 983060, 0, 0, 983061, 0, 0, 1048590, 0, 0, 1048597, 0, 0, 1114126, 0, 0, 1114133, 0, 0, 1179662, 0, 0, 1179669, 0, 0, 1245198, 0, 0, 1245205, 0, 0, 1310734, 0, 0, 1310735, 0, 0, 1310736, 0, 0, 1310737, 0, 0, 1310738, 0, 0, 1310739, 0, 0, 1310740, 0, 0, 1310741, 0, 0 ) [node name="YSort" type="YSort" parent="."] @@ -171,6 +172,9 @@ z_index = 4 position = Vector2( 290, 273 ) z_index = 4 +[node name="Demon Boss" parent="YSort/Enemies" instance=ExtResource( 26 )] +position = Vector2( 193, -532 ) + [node name="Items" type="YSort" parent="YSort"] [node name="TreasureChest" parent="YSort/Items" instance=ExtResource( 16 )] @@ -205,18 +209,16 @@ scale = Vector2( 1.25, 1.25 ) collision_layer = 2 [node name="CollisionShape2D" type="CollisionShape2D" parent="DoorCollision"] -position = Vector2( 201, -10 ) -shape = SubResource( 4 ) +position = Vector2( 203, -9 ) +shape = SubResource( 11 ) [node name="NextArea" type="Area2D" parent="."] collision_layer = 2 +collision_mask = 2 [node name="CollisionShape2D" type="CollisionShape2D" parent="NextArea"] position = Vector2( 200, -56 ) -shape = SubResource( 5 ) - -[node name="DemonBoss" parent="." instance=ExtResource( 26 )] -position = Vector2( 194, -550 ) +shape = SubResource( 12 ) [connection signal="gem_collected" from="YSort/Items/TreasureChest" to="." method="_on_TreasureChest_gem_collected"] [connection signal="gem_collected" from="YSort/Items/TreasureChest2" to="." method="_on_TreasureChest_gem_collected"] diff --git a/Main.gd b/Main.gd index ab9412d..f84dd9c 100644 --- a/Main.gd +++ b/Main.gd @@ -7,72 +7,72 @@ export var world_path: String func _ready() -> void: - var splash_screen: Node = play_splash_screen() - yield(splash_screen, 'complete') - splash_screen = null + var splash_screen: Node = play_splash_screen() + yield(splash_screen, 'complete') + splash_screen = null - var main_menu: Node = play_main_menu() - yield(main_menu, 'complete') - free_connected_node(main_menu, 'main_menu_option') - main_menu = null - return + var main_menu: Node = play_main_menu() + yield(main_menu, 'complete') + free_connected_node(main_menu, 'main_menu_option') + main_menu = null + return func play_splash_screen() -> Node: - var splash_screen: Node = load(splash_screen_path).instance() - if splash_screen.connect('complete', self, 'free_connected_node', - [splash_screen, 'free_connected_node']) != OK: - print('ERROR: Splash Screen "complete" signal already connected.') + var splash_screen: Node = load(splash_screen_path).instance() + if splash_screen.connect('complete', self, 'free_connected_node', + [splash_screen, 'free_connected_node']) != OK: + print('ERROR: Splash Screen "complete" signal already connected.') - add_child(splash_screen) - return splash_screen + add_child(splash_screen) + return splash_screen func play_main_menu() -> Node: - var main_menu: Node = load(main_menu_path).instance() - if main_menu.connect('complete', self, 'main_menu_option') != OK: - print('ERROR: Main Menu "complete" signal already connected.') + var main_menu: Node = load(main_menu_path).instance() + if main_menu.connect('complete', self, 'main_menu_option') != OK: + print('ERROR: Main Menu "complete" signal already connected.') - add_child(main_menu) - return main_menu + add_child(main_menu) + return main_menu func main_menu_option(option: String) -> void: - if option == 'new game': - var level_select_menu: Node = play_level_select_menu() - yield(level_select_menu, 'complete') - free_connected_node(level_select_menu, 'level_select_menu_option') - level_select_menu = null - return + if option == 'new game': + var level_select_menu: Node = play_level_select_menu() + yield(level_select_menu, 'complete') + free_connected_node(level_select_menu, 'level_select_menu_option') + level_select_menu = null + return func play_level_select_menu() -> Node: - var level_select_menu: Node = load(level_select_menu_path).instance() - if level_select_menu.connect('complete', self, 'level_select_menu_option') != OK: - print('ERROR: Level Select Menu "complete" signal already connected.') + var level_select_menu: Node = load(level_select_menu_path).instance() + if level_select_menu.connect('complete', self, 'level_select_menu_option') != OK: + print('ERROR: Level Select Menu "complete" signal already connected.') - add_child(level_select_menu) - return level_select_menu + add_child(level_select_menu) + return level_select_menu func level_select_menu_option(option: String) -> void: - var level: String = 'res://Levels/' - if option == 'H': - level += 'Hub World.tscn' - else: - level += 'Level ' + option + '.tscn' + var level: String = 'res://Levels/' + if option == 'H': + level += 'Hub World.tscn' + else: + level += 'Level ' + option + '.tscn' - new_game(level) - return + new_game(level) + return func free_connected_node(node: Node, connected_function: String) -> void: - node.disconnect('complete', self, connected_function) - node.queue_free() - return + node.disconnect('complete', self, connected_function) + node.queue_free() + return func new_game(level: String) -> void: - if get_tree().change_scene(level) != OK: - print('ERROR: Main failed to change scene to Level.') - queue_free() - return + if get_tree().change_scene(level) != OK: + print('ERROR: Main failed to change scene to Level.') + queue_free() + return diff --git a/Player/Player.gd b/Player/Player.gd index c0aa974..41ecfa0 100644 --- a/Player/Player.gd +++ b/Player/Player.gd @@ -7,131 +7,129 @@ export var FRICTION: int = 1000 const HEALTH_SLICES: Array = [0, 18, 35, 50, 65, 82, 100] var health_index: int = 6 -var l5_gems: int = 0 - var hud: CanvasLayer = null var velocity: Vector2 = Vector2.ZERO func _ready() -> void: - set_weapon_position(Vector2(1, 0)) - return + set_weapon_position(Vector2(1, 0)) + return func _physics_process(delta: float) -> void: - var input_vector: Vector2 = Vector2.ZERO + var input_vector: Vector2 = Vector2.ZERO - input_vector.x = Input.get_action_strength('player_right') \ - - Input.get_action_strength('player_left') - input_vector.y = Input.get_action_strength('player_down') \ - - Input.get_action_strength('player_up') - input_vector = input_vector.normalized() + input_vector.x = Input.get_action_strength('player_right') \ + - Input.get_action_strength('player_left') + input_vector.y = Input.get_action_strength('player_down') \ + - Input.get_action_strength('player_up') + input_vector = input_vector.normalized() - if input_vector != Vector2.ZERO: - $AnimationTree.set('parameters/Idle/blend_position', input_vector) - velocity = velocity.move_toward(input_vector * MAX_SPEED, ACCELERATION * delta) - set_weapon_position(input_vector) - else: - velocity = velocity.move_toward(Vector2.ZERO, FRICTION * delta) + if input_vector != Vector2.ZERO: + $AnimationTree.set('parameters/Idle/blend_position', input_vector) + velocity = velocity.move_toward(input_vector * MAX_SPEED, ACCELERATION * delta) + set_weapon_position(input_vector) + else: + velocity = velocity.move_toward(Vector2.ZERO, FRICTION * delta) - velocity = move_and_slide(velocity) - return + velocity = move_and_slide(velocity) + return func load_hud(node: CanvasLayer) -> void: - hud = node - if hud.connect('add_currency', self, 'add_currency') != OK: - print('ERROR: HUD "add_currency" signal already connected.') + hud = node + if hud.connect('add_currency', self, 'add_currency') != OK: + print('ERROR: HUD "add_currency" signal already connected.') - hud.update_health(HEALTH_SLICES[health_index]) - hud.update_currency($Inventory.get_currency()) - return + hud.update_health(HEALTH_SLICES[health_index]) + hud.update_currency($Inventory.get_currency()) + return func set_weapon_position(pos: Vector2) -> void: - # facing left - if pos[0] < 0: - $Sword.rotation_degrees = -90 - $Javelin.rotation_degrees = -90 + # facing left + if pos[0] < 0: + $Sword.rotation_degrees = -90 + $Javelin.rotation_degrees = -90 - # facing right - elif pos[0] > 0: - $Sword.rotation_degrees = 90 - $Javelin.rotation_degrees = 90 + # facing right + elif pos[0] > 0: + $Sword.rotation_degrees = 90 + $Javelin.rotation_degrees = 90 - # facing up - elif pos[1] < 0: - $Sword.rotation_degrees = 0 - $Javelin.rotation_degrees = 0 + # facing up + elif pos[1] < 0: + $Sword.rotation_degrees = 0 + $Javelin.rotation_degrees = 0 - # facing down - elif pos[1] > 0: - $Sword.rotation_degrees = 180 - $Javelin.rotation_degrees = 180 - return + # facing down + elif pos[1] > 0: + $Sword.rotation_degrees = 180 + $Javelin.rotation_degrees = 180 + return func add_currency(amount: int) -> void: - $Inventory.add_currency(amount) - return + $Inventory.add_currency(amount) + return func has_item(item: String) -> bool: - return $Inventory.contains(item) + return $Inventory.contains(item) func add_item(item: String) -> void: - $Inventory.add(item) - return + $Inventory.add(item) + return func remove_item(item: String) -> void: - $Inventory.remove(item) - return + $Inventory.remove(item) + return func _on_Inventory_update_currency(amount: int) -> void: - hud.update_currency(amount) - return + hud.update_currency(amount) + return func _on_hitbox_area_entered(area: Area2D) -> void: - var hit: int = 0 + var hit: int = 0 - if area.is_in_group('enemy_hitbox_1') or area.is_in_group('enemy_projectile_1'): - hit = 1 - elif area.is_in_group('enemy_hitbox_2') or area.is_in_group('enemy_projectile_2'): - hit = 2 - elif area.is_in_group('enemy_hitbox_3') or area.is_in_group('enemy_projectile_3'): - hit = 3 - else: - return + if area.is_in_group('enemy_hitbox_1') or area.is_in_group('enemy_projectile_1'): + hit = 1 + elif area.is_in_group('enemy_hitbox_2') or area.is_in_group('enemy_projectile_2'): + hit = 2 + elif area.is_in_group('enemy_hitbox_3') or area.is_in_group('enemy_projectile_3'): + hit = 3 + else: + return - if health_index != 0: - health_index -= hit - if health_index < 0: - health_index = 0 - hud.update_health(HEALTH_SLICES[health_index]) - return + if health_index != 0: + health_index -= hit + if health_index < 0: + health_index = 0 + hud.update_health(HEALTH_SLICES[health_index]) + return func _input(event: InputEvent) -> void: - if event.is_action_pressed('player_attack'): - if hud.weapon == 'sword': - $'Sword/Sword Animation'.play('swing') - elif hud.weapon == 'javelin': - $'Javelin/Javelin Animation'.play('swing') + if event.is_action_pressed('player_attack'): + if hud.weapon == 'sword': + $'Sword/Sword Animation'.play('swing') + elif hud.weapon == 'javelin': + $'Javelin/Javelin Animation'.play('swing') - if event.is_action_pressed('screenshot'): - var img: Image = get_viewport().get_texture().get_data() - yield(get_tree(), 'idle_frame') - yield(get_tree(), 'idle_frame') + if event.is_action_pressed('screenshot'): + var img: Image = get_viewport().get_texture().get_data() + yield(get_tree(), 'idle_frame') + yield(get_tree(), 'idle_frame') - img.flip_y() + img.flip_y() - var time: Dictionary = OS.get_datetime_from_unix_time(OS.get_unix_time()) - var time_msecs: int = OS.get_system_time_msecs() + var time: Dictionary = OS.get_datetime_from_unix_time(OS.get_unix_time()) + var time_msecs: int = OS.get_system_time_msecs() - if img.save_png('user://Screenshot_%d%d%d_%d.png' % [time.year, time.month, time.day, time_msecs]) != OK: - print('ERROR: Failed saving screenshot.') - return + if img.save_png('user://Screenshot_%d%d%d_%d.png' % [time.year, time.month, time.day, time_msecs]) != OK: + print('ERROR: Failed saving screenshot.') + return diff --git a/Sprites/Assets/blue_star.png.import b/Sprites/Assets/blue_star.png.import index 1a43942..eb88499 100644 --- a/Sprites/Assets/blue_star.png.import +++ b/Sprites/Assets/blue_star.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=true process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=true diff --git a/Sprites/Assets/galaxy_background.png.import b/Sprites/Assets/galaxy_background.png.import index 200c915..f3eb7c3 100644 --- a/Sprites/Assets/galaxy_background.png.import +++ b/Sprites/Assets/galaxy_background.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=true process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=true diff --git a/Sprites/Assets/resources_basic.png.import b/Sprites/Assets/resources_basic.png.import index 1055cf3..4949442 100644 --- a/Sprites/Assets/resources_basic.png.import +++ b/Sprites/Assets/resources_basic.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=false process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=false diff --git a/Sprites/Enemies/DarkMatter.png.import b/Sprites/Enemies/DarkMatter.png.import index d640048..537f20f 100644 --- a/Sprites/Enemies/DarkMatter.png.import +++ b/Sprites/Enemies/DarkMatter.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=true process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=true diff --git a/Sprites/Enemies/DarkMatter_barrier.png.import b/Sprites/Enemies/DarkMatter_barrier.png.import index c687421..af33e25 100644 --- a/Sprites/Enemies/DarkMatter_barrier.png.import +++ b/Sprites/Enemies/DarkMatter_barrier.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=true process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=true diff --git a/Sprites/Levels/Environment/fire_column_medium_10.png.import b/Sprites/Levels/Environment/fire_column_medium_10.png.import index 366d67b..009fedc 100644 --- a/Sprites/Levels/Environment/fire_column_medium_10.png.import +++ b/Sprites/Levels/Environment/fire_column_medium_10.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=false process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=false diff --git a/Sprites/Levels/Environment/fire_column_medium_11.png.import b/Sprites/Levels/Environment/fire_column_medium_11.png.import index 97fa276..a00b07c 100644 --- a/Sprites/Levels/Environment/fire_column_medium_11.png.import +++ b/Sprites/Levels/Environment/fire_column_medium_11.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=false process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=false diff --git a/Sprites/Levels/Environment/fire_column_medium_12.png.import b/Sprites/Levels/Environment/fire_column_medium_12.png.import index e7da4e6..81d1075 100644 --- a/Sprites/Levels/Environment/fire_column_medium_12.png.import +++ b/Sprites/Levels/Environment/fire_column_medium_12.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=false process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=false diff --git a/Sprites/Levels/Environment/fire_column_medium_13.png.import b/Sprites/Levels/Environment/fire_column_medium_13.png.import index e358f84..37d9656 100644 --- a/Sprites/Levels/Environment/fire_column_medium_13.png.import +++ b/Sprites/Levels/Environment/fire_column_medium_13.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=false process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=false diff --git a/Sprites/Levels/Environment/fire_column_medium_14.png.import b/Sprites/Levels/Environment/fire_column_medium_14.png.import index 98212dc..4a9861f 100644 --- a/Sprites/Levels/Environment/fire_column_medium_14.png.import +++ b/Sprites/Levels/Environment/fire_column_medium_14.png.import @@ -28,6 +28,7 @@ process/fix_alpha_border=false process/premult_alpha=false process/HDR_as_SRGB=false process/invert_color=false +process/normal_map_invert_y=false stream=false size_limit=0 detect_3d=false diff --git a/project.godot b/project.godot index 262464a..f1b2941 100644 --- a/project.godot +++ b/project.godot @@ -12,11 +12,11 @@ config_version=4 config/name="Embodiment" run/main_scene="res://Main.tscn" +run/delta_sync_after_draw=true boot_splash/image="res://Sprites/Assets/Black_Background.png" boot_splash/use_filter=false boot_splash/bg_color=Color( 0, 0, 0, 1 ) config/icon="res://Sprites/Assets/icon.png" -run/delta_sync_after_draw=true [display] @@ -31,33 +31,33 @@ window/stretch/aspect="keep" player_right={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null) +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"physical_scancode":0,"unicode":0,"echo":false,"script":null) ] } player_left={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null) +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"physical_scancode":0,"unicode":0,"echo":false,"script":null) ] } player_up={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"unicode":0,"echo":false,"script":null) +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"physical_scancode":0,"unicode":0,"echo":false,"script":null) ] } player_down={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"unicode":0,"echo":false,"script":null) +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":83,"physical_scancode":0,"unicode":0,"echo":false,"script":null) ] } player_attack={ "deadzone": 0.5, "events": [ Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"button_mask":0,"position":Vector2( 0, 0 ),"global_position":Vector2( 0, 0 ),"factor":1.0,"button_index":1,"pressed":false,"doubleclick":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"physical_scancode":0,"unicode":0,"echo":false,"script":null) ] } screenshot={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777245,"unicode":0,"echo":false,"script":null) +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777245,"physical_scancode":0,"unicode":0,"echo":false,"script":null) ] }