diff --git a/src/actors/player/FireBall.gd b/src/actors/player/FireBall.gd
index e88a9e8544dd11475eaf29ee29c604f7f4ca1dde..ad7d77a41cabb65f4b504d82bb00b24405575ee8 100644
--- a/src/actors/player/FireBall.gd
+++ b/src/actors/player/FireBall.gd
@@ -22,15 +22,3 @@ func _on_Area2D_body_entered(body : Node):
 	if body.is_in_group("enemyweapon"):
 		print("blocked")
 		queue_free()
-	if body.is_class("TileMap"):
-		queue_free()
-	#print("collided with " + str(body.name) + " - " + str(body.get_class()) + " - " +  str(body.get_groups()))
-
-func set_direction(dir: Vector2):
-	direction = dir
-	print(dir)
-	if dir.x < 0:
-		print("flip")
-		$Sprite.flip_v = true
-		$Sprite.offset.y = 25
-	
diff --git a/src/actors/player/FireBall.tscn b/src/actors/player/FireBall.tscn
index 3d887615c84be9117fb946805f6241c9df82c185..4ff2f203a45e924401d9bf77c84bf4db979e5585 100644
--- a/src/actors/player/FireBall.tscn
+++ b/src/actors/player/FireBall.tscn
@@ -1,7 +1,7 @@
 [gd_scene load_steps=4 format=2]
 
 [ext_resource path="res://src/actors/player/FireBall.gd" type="Script" id=1]
-[ext_resource path="res://src/assets/actors/Player/ectoplasma.png" type="Texture" id=2]
+[ext_resource path="res://src/assets/actors/Enemy1/dead/enemy-death-1.png" type="Texture" id=2]
 
 [sub_resource type="RectangleShape2D" id=2]
 extents = Vector2( 10, 7.01674 )
@@ -12,7 +12,7 @@ collision_mask = 24
 script = ExtResource( 1 )
 
 [node name="Sprite" type="Sprite" parent="."]
-position = Vector2( -12, -18 )
+position = Vector2( 0, -18 )
 rotation = -1.57079
 texture = ExtResource( 2 )
 
@@ -21,7 +21,7 @@ collision_layer = 5
 collision_mask = 24
 
 [node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
-position = Vector2( 0, -18 )
+position = Vector2( 12, -18 )
 shape = SubResource( 2 )
 
 [connection signal="body_entered" from="Area2D" to="." method="_on_Area2D_body_entered"]
diff --git a/src/actors/player/Player.gd b/src/actors/player/Player.gd
index 91a75c97fe9c62ed75258e4e3e0e2324ea9fbc6d..bb028d8682462922addbc28e82f4595b0a4201bf 100644
--- a/src/actors/player/Player.gd
+++ b/src/actors/player/Player.gd
@@ -5,12 +5,9 @@ const TYPE = "player"
 
 """ SECTION VARIABLE DEFINITIONS """
 
-enum ANIMATION_STATES { IDLE, RUN, HURT, JUMP, DEATH, ATTACK_MELEE, ATTACK_RANGED }
+enum ANIMATION_STATES { IDLE, RUN, HURT, JUMP, DEATH, ATTACK }
 var animation_state  = ANIMATION_STATES.IDLE
 
-enum ATTACK_STATES { MELEE, RANGED }
-var attack_state = null
-
 var is_jumping : bool
 var is_attacking : bool
 var is_moving : bool
@@ -28,7 +25,6 @@ var last_look_direction : Vector2
 const move_speed : float = 32*7/.8
 const jump_speed : int = -720
 const gravity : int = 1800
-export var velocity_cap_v : int = 1000
 
 # keep these values between 0-1
 const friction : float = 0.25
@@ -44,7 +40,7 @@ var time_since_last_air_jump : float
 var terminate_jump : bool
 var double_jump : bool
 
-const attack_cooldown : float = .7
+const attack_cooldown : float = .4
 var attack : bool = false
 var attack_timer : Timer
 
@@ -101,22 +97,14 @@ func _physics_process(delta):
 	
 	# update vertical velocity
 	velocity.y += gravity * delta
-	if velocity.y > velocity_cap_v:
-		print("velocity cap")
-		velocity.y = velocity_cap_v
 	
 	update_animation()
 	
-	if !is_hurt and !is_attacking:
-		animation_state = ANIMATION_STATES.IDLE if direction.x == 0 else ANIMATION_STATES.RUN
-		animation_state = animation_state if is_on_floor() else ANIMATION_STATES.JUMP
+	
+	animation_state = ANIMATION_STATES.IDLE if direction.x == 0 else ANIMATION_STATES.RUN
+	animation_state = animation_state if is_on_floor() else ANIMATION_STATES.JUMP
 	if attack:
-		if attack_state == ATTACK_STATES.MELEE:
-			print("set state melee")
-			animation_state = ANIMATION_STATES.ATTACK_MELEE
-		elif attack_state == ATTACK_STATES.RANGED:
-			print("set state ranged")
-			animation_state = ANIMATION_STATES.ATTACK_RANGED
+		animation_state = ANIMATION_STATES.ATTACK
 	is_jumping = false if is_on_floor() else true
 	
 	is_moving = direction.length() != 0
@@ -146,14 +134,8 @@ func input_process(delta):
 	if Input.is_action_just_released("jump"):
 		terminate_jump = true
 	if Input.is_action_just_pressed("attack"):
-		if !is_attacking:
+		if not is_attacking:
 			attack = true
-			attack_state = ATTACK_STATES.RANGED
-	if Input.is_action_just_pressed("melee"):
-		if !is_attacking:
-			attack = true
-			attack_state = ATTACK_STATES.MELEE
-			
 	if Input.is_action_just_pressed("hit_self"):
 		print("ow")
 		take_damage(1)
@@ -196,9 +178,6 @@ func jump_process():
 			velocity.y = 0
 
 func attack_process():
-	if is_attacking:
-		return
-	
 	if attack:
 		is_attacking = true
 		attack_timer = Timer.new()
@@ -221,17 +200,6 @@ func die():
 	queue_free()
 
 func take_damage(n : int):
-	if is_hurt:
-		return
-		
-	is_hurt = true
-	hurt_timer = Timer.new()
-	hurt_timer.one_shot = true
-	hurt_timer.wait_time = invincible_cooldown
-	hurt_timer.connect("timeout", self, "hurt_timer_timeout")
-	add_child(hurt_timer)
-	hurt_timer.start()
-	
 	animation_state = ANIMATION_STATES.HURT
 	hitpoints -= n
 	if hitpoints >= 7:
@@ -255,6 +223,9 @@ func on_stomp():
 	pass
 
 func update_animation():
+	if is_attacking or is_hurt:
+		return
+
 	match animation_state:
 		ANIMATION_STATES.IDLE:
 			$AnimatedSprite.play("idle")
@@ -262,12 +233,24 @@ func update_animation():
 			$AnimatedSprite.play("move")
 		ANIMATION_STATES.JUMP:
 			$AnimatedSprite.play("jump")
-		ANIMATION_STATES.ATTACK_RANGED:
+		ANIMATION_STATES.ATTACK:
+			is_attacking = true
 			$AnimatedSprite.play("attack1")
-		ANIMATION_STATES.ATTACK_MELEE:
-			$AnimatedSprite.play("melee")
+			attack_timer = Timer.new()
+			attack_timer.one_shot = true
+			attack_timer.wait_time = attack_cooldown
+			attack_timer.connect("timeout", self, "attack_timer_timeout")
+			add_child(attack_timer)
+			attack_timer.start()
 		ANIMATION_STATES.HURT:
+			is_hurt = true
 			$AnimatedSprite.play("hurt")
+			hurt_timer = Timer.new()
+			hurt_timer.one_shot = true
+			hurt_timer.wait_time = invincible_cooldown
+			hurt_timer.connect("timeout", self, "hurt_timer_timeout")
+			add_child(hurt_timer)
+			hurt_timer.start()
 		ANIMATION_STATES.DEATH:
 			print("play death animation")
 			$AnimatedSprite.play("death")
@@ -275,11 +258,9 @@ func update_animation():
 	if direction.x == -1:
 		$AnimatedSprite.flip_h = true
 		$AnimatedSprite.offset.x = -20
-		$MeleeDetector/CollisionShape2D.position.x = -1 * abs($MeleeDetector/CollisionShape2D.position.x)
 	if direction.x == 1:
 		$AnimatedSprite.flip_h = false
 		$AnimatedSprite.offset.x = 0
-		$MeleeDetector/CollisionShape2D.position.x = abs($MeleeDetector/CollisionShape2D.position.x)
 	
 	$InfoLabel.text = "is_moving: " + str(is_moving) + "\nis_jumping: " + str(is_jumping) + "\nis_attacking: " + str(is_attacking) + "\nvh: " + str(velocity.x) + "\nvv" + str(velocity.y) + "\nhp: " + str(hitpoints)
 	
@@ -293,7 +274,6 @@ func set_black_white(boolean: bool):
 
 func attack_timer_timeout():
 	is_attacking = false
-	$MeleeDetector.monitoring = false
 
 func hurt_timer_timeout():
 	print("hurt finished")
@@ -303,6 +283,14 @@ func _on_EnemyDetector_body_entered(body):
 	print(body.name, " entered player body")
 	# die()
 
+func _on_StompDetector_area_entered(area):
+	print("stomping ", area.name)
+	
+	# velocity.y = stomp_velocity
+	
+
+
+
 func _on_EnemyDetector_area_entered(area):
 	print(area.name, " area entered")
 
@@ -314,7 +302,6 @@ func _on_AnimatedSprite_animation_finished():
 
 func _on_StompDetector_body_entered(body):
 	if body.is_in_group("enemy"):
-		print(body.name)
 		if body.is_stompable:
 			body.on_stomp()
 			velocity.y = stomp_velocity
diff --git a/src/actors/player/Player.tscn b/src/actors/player/Player.tscn
index d07241a726afa33cc28aed00cb9c65b2ebe6f657..1a1130f3097cbfebba2aa0dfddd97ba8a17a7b11 100755
--- a/src/actors/player/Player.tscn
+++ b/src/actors/player/Player.tscn
@@ -55,32 +55,32 @@ region = Rect2( 144, 0, 48, 48 )
 
 [sub_resource type="AtlasTexture" id=23]
 flags = 4
-atlas = ExtResource( 3 )
+atlas = ExtResource( 8 )
 region = Rect2( 0, 0, 48, 48 )
 
-[sub_resource type="AtlasTexture" id=24]
+[sub_resource type="AtlasTexture" id=18]
 flags = 4
-atlas = ExtResource( 3 )
+atlas = ExtResource( 8 )
 region = Rect2( 48, 0, 48, 48 )
 
-[sub_resource type="AtlasTexture" id=25]
+[sub_resource type="AtlasTexture" id=19]
 flags = 4
-atlas = ExtResource( 3 )
+atlas = ExtResource( 8 )
 region = Rect2( 96, 0, 48, 48 )
 
-[sub_resource type="AtlasTexture" id=26]
+[sub_resource type="AtlasTexture" id=20]
 flags = 4
-atlas = ExtResource( 3 )
+atlas = ExtResource( 8 )
 region = Rect2( 144, 0, 48, 48 )
 
-[sub_resource type="AtlasTexture" id=27]
+[sub_resource type="AtlasTexture" id=21]
 flags = 4
-atlas = ExtResource( 3 )
+atlas = ExtResource( 8 )
 region = Rect2( 192, 0, 48, 48 )
 
-[sub_resource type="AtlasTexture" id=28]
+[sub_resource type="AtlasTexture" id=22]
 flags = 4
-atlas = ExtResource( 3 )
+atlas = ExtResource( 8 )
 region = Rect2( 240, 0, 48, 48 )
 
 [sub_resource type="AtlasTexture" id=43]
@@ -217,7 +217,7 @@ animations = [ {
 }, {
 "frames": [ SubResource( 23 ), SubResource( 24 ), SubResource( 25 ), SubResource( 26 ), SubResource( 27 ), SubResource( 28 ) ],
 "loop": true,
-"name": "move",
+"name": "punch",
 "speed": 5.0
 }, {
 "frames": [ SubResource( 43 ), SubResource( 44 ), SubResource( 45 ), SubResource( 46 ), SubResource( 47 ), SubResource( 48 ), SubResource( 49 ), SubResource( 50 ) ],
@@ -248,10 +248,7 @@ extents = Vector2( 9.5, 15.5 )
 extents = Vector2( 14.4844, 15.5 )
 
 [sub_resource type="RectangleShape2D" id=41]
-extents = Vector2( 9.11914, 2.77663 )
-
-[sub_resource type="RectangleShape2D" id=51]
-extents = Vector2( 12.751, 6.23259 )
+extents = Vector2( 9.11914, 2.37328 )
 
 [node name="Player" type="KinematicBody2D" groups=["player"]]
 scale = Vector2( 1.35, 1.35 )
@@ -280,7 +277,7 @@ smoothing_speed = 10.0
 
 [node name="InfoLabel" type="Label" parent="."]
 margin_left = -18.3265
-margin_top = -144.037
+margin_top = -83.0373
 margin_right = 21.6735
 margin_bottom = -113.037
 text = "test
@@ -306,7 +303,7 @@ shape = SubResource( 40 )
 position = Vector2( 0, -19 )
 
 [node name="CollisionShape2D" type="CollisionShape2D" parent="StompDetector"]
-position = Vector2( 0, 17.2338 )
+position = Vector2( 0, 16.8304 )
 shape = SubResource( 41 )
 
 [node name="MeleeDetector" type="Area2D" parent="."]
@@ -344,4 +341,3 @@ __meta__ = {
 [connection signal="body_entered" from="EnemyDetector" to="." method="_on_EnemyDetector_body_entered"]
 [connection signal="area_entered" from="StompDetector" to="." method="_on_StompDetector_area_entered"]
 [connection signal="body_entered" from="StompDetector" to="." method="_on_StompDetector_body_entered"]
-[connection signal="body_entered" from="MeleeDetector" to="." method="_on_MeleeDetector_body_entered"]
diff --git a/src/assets/sounds/click1.wav b/src/assets/sounds/click1.wav
new file mode 100644
index 0000000000000000000000000000000000000000..4099077f01acf35240c4421c955a1aaae6a803b3
Binary files /dev/null and b/src/assets/sounds/click1.wav differ
diff --git a/src/assets/sounds/coin1.wav b/src/assets/sounds/coin1.wav
new file mode 100644
index 0000000000000000000000000000000000000000..b49135f1013bb1e605bd84620c80fd6b6c471e74
Binary files /dev/null and b/src/assets/sounds/coin1.wav differ
diff --git a/src/assets/sounds/feuer.wav b/src/assets/sounds/feuer.wav
new file mode 100644
index 0000000000000000000000000000000000000000..20bdedabc4c50fbc9cfc8b5e1cbbfe72df4e75f1
Binary files /dev/null and b/src/assets/sounds/feuer.wav differ
diff --git a/src/assets/sounds/files (online-audio-converter.com).zip b/src/assets/sounds/files (online-audio-converter.com).zip
new file mode 100644
index 0000000000000000000000000000000000000000..fa9df43d9d490707876534e8488cb13ad320512f
Binary files /dev/null and b/src/assets/sounds/files (online-audio-converter.com).zip differ
diff --git a/src/assets/sounds/jump.wav b/src/assets/sounds/jump.wav
new file mode 100644
index 0000000000000000000000000000000000000000..d60e53bb4da64755d0e43db4c5abf31f233ccf1d
Binary files /dev/null and b/src/assets/sounds/jump.wav differ
diff --git a/src/assets/sounds/kristallsound.wav b/src/assets/sounds/kristallsound.wav
new file mode 100644
index 0000000000000000000000000000000000000000..4216dfb5ba7504f3c013e1b07b8f5a4d0368bdf7
Binary files /dev/null and b/src/assets/sounds/kristallsound.wav differ
diff --git a/src/assets/sounds/maintheme.wav b/src/assets/sounds/maintheme.wav
new file mode 100644
index 0000000000000000000000000000000000000000..aacc22f3bdd779134a12ffc16acdbc500e33d342
Binary files /dev/null and b/src/assets/sounds/maintheme.wav differ
diff --git a/src/assets/sounds/schwert.wav b/src/assets/sounds/schwert.wav
new file mode 100644
index 0000000000000000000000000000000000000000..6f0561495df6fd9568705eb2533842add74bcb26
Binary files /dev/null and b/src/assets/sounds/schwert.wav differ
diff --git a/src/scenes/Acid.gd b/src/scenes/Acid.gd
new file mode 100644
index 0000000000000000000000000000000000000000..072a07f56e95325909388a0b851777d10f6a45d5
--- /dev/null
+++ b/src/scenes/Acid.gd
@@ -0,0 +1,8 @@
+extends KinematicBody2D
+
+
+
+func _on_Area2D_body_entered(body):
+	if body.get("TYPE") == "player":
+		get_tree().reload_current_scene()
+
diff --git a/src/scenes/Acid.tscn b/src/scenes/Acid.tscn
index b2d43706e7264e9cc26268f58a716638e892030b..d14044a1dc008c8927ce10e780d3752e20e42919 100644
--- a/src/scenes/Acid.tscn
+++ b/src/scenes/Acid.tscn
@@ -1,8 +1,7 @@
 [gd_scene load_steps=5 format=2]
 
 [ext_resource path="res://src/assets/FreeSciFiPlatformTileSet/png/Tiles/Acid (1).png" type="Texture" id=1]
-[ext_resource path="res://src/scripts/Acid.gd" type="Script" id=2]
-
+[ext_resource path="res://src/scenes/Acid.gd" type="Script" id=2]
 
 [sub_resource type="RectangleShape2D" id=1]
 extents = Vector2( 0, 0 )
diff --git a/src/scenes/Game.tscn b/src/scenes/Game.tscn
index cd154f986d26be222a378abbee2922ad17212b0e..68a45192b88b89555f674b5ac9a3a955a732bb22 100644
--- a/src/scenes/Game.tscn
+++ b/src/scenes/Game.tscn
@@ -1,13 +1,12 @@
 [gd_scene load_steps=3 format=2]
 
-[ext_resource path="res://src/scenes/Fader.tscn" type="PackedScene" id=1]
+[ext_resource path="res://src/assets/sounds/maintheme.wav" type="AudioStream" id=1]
 
 [sub_resource type="GDScript" id=1]
 script/source = "extends Node2D
 
 onready var in_game = $InGame
 onready var camera = $Camera2D
-onready var fader = $CanvasLayer/Fader
 var player = null
 
 var level = null
@@ -17,7 +16,7 @@ func _ready():
 	connect_to_doors()
 	check_for_door()
 	put_camera_on_player()
-	fader.fade_in()
+	pass
 	
 func add_level():
 	print(\"loading: \" + str(\"res://src/scenes/levels/Level\" , G.next_level_number , \".tscn\"))
@@ -36,9 +35,6 @@ func connect_to_doors():
 			child.connect(\"enter_door\", self, \"_on_enter_door\")
 			
 func _on_enter_door():
-	var animation_player = fader.fade_out()
-	yield(animation_player, \"animation_finished\")
-	get_tree().paused = false
 	get_tree().reload_current_scene()
 
 func check_for_door():
@@ -55,10 +51,10 @@ script = SubResource( 1 )
 [node name="InGame" type="Node2D" parent="."]
 
 [node name="Camera2D" type="Camera2D" parent="."]
-visible = false
 offset = Vector2( 0, -200 )
 current = true
 
-[node name="CanvasLayer" type="CanvasLayer" parent="."]
-
-[node name="Fader" parent="CanvasLayer" instance=ExtResource( 1 )]
+[node name="musik" type="AudioStreamPlayer" parent="."]
+stream = ExtResource( 1 )
+volume_db = 1.0
+autoplay = true
diff --git a/src/scenes/Menu.gd b/src/scenes/Menu.gd
new file mode 100644
index 0000000000000000000000000000000000000000..90355036fd41c8ee8dd1db19a49d57a5023f6011
--- /dev/null
+++ b/src/scenes/Menu.gd
@@ -0,0 +1,35 @@
+extends Control
+
+
+func _ready():
+	pass # Replace with function body.
+
+
+func _on_Start_pressed():
+	$buttonSound.play()
+	yield($buttonSound, "finished")
+	get_tree().change_scene("res://src/scenes/Game.tscn")
+	
+	
+
+
+func _on_Einstellungen_pressed():
+	$buttonSound.play()
+	yield($buttonSound, "finished")
+	get_tree().change_scene("res://src/scenes/Settings.tscn")
+	
+
+
+func _on_ENDE_pressed():
+	$buttonSound.play()
+	yield($buttonSound, "finished")
+	get_tree().quit()
+	
+
+
+
+	
+
+
+func _on_buttonSound_finished():
+	pass # Replace with function body.
diff --git a/src/scenes/Menu.tscn b/src/scenes/Menu.tscn
index 34040593d706a7d875e38d546d7060dfeae1398e..6aca5fcb7019c73b803a281347107e19ad4b0850 100644
--- a/src/scenes/Menu.tscn
+++ b/src/scenes/Menu.tscn
@@ -1,11 +1,12 @@
-[gd_scene load_steps=25 format=2]
+[gd_scene load_steps=26 format=2]
 
 [ext_resource path="res://src/assets/menu_assets/spaceHintergrund.png" type="Texture" id=1]
 [ext_resource path="res://src/assets/menu_assets/04B_30__.TTF" type="DynamicFontData" id=2]
 [ext_resource path="res://src/assets/menu_assets/ButtonTextur.png" type="Texture" id=3]
 [ext_resource path="res://src/assets/menu_assets/Geist SpriteSheet.png" type="Texture" id=4]
 [ext_resource path="res://src/assets/menu_assets/ButtonTexturHover.png" type="Texture" id=5]
-[ext_resource path="res://src/scripts/Menu.gd" type="Script" id=6]
+[ext_resource path="res://src/scenes/Menu.gd" type="Script" id=6]
+[ext_resource path="res://src/assets/sounds/click1.wav" type="AudioStream" id=7]
 
 [sub_resource type="DynamicFont" id=1]
 size = 50
@@ -136,7 +137,7 @@ anchor_bottom = 0.5
 margin_left = 128.0
 margin_top = -108.0
 margin_right = 449.0
-margin_bottom = -51.0
+margin_bottom = -40.0
 theme = SubResource( 2 )
 custom_fonts/font = SubResource( 6 )
 custom_styles/hover = SubResource( 3 )
@@ -148,10 +149,10 @@ __meta__ = {
 }
 
 [node name="Einstellungen" type="Button" parent="."]
-margin_left = 128.0
-margin_top = 320.0
-margin_right = 448.0
-margin_bottom = 384.0
+margin_left = 130.0
+margin_top = 384.0
+margin_right = 450.0
+margin_bottom = 448.0
 custom_fonts/font = SubResource( 10 )
 custom_styles/hover = SubResource( 7 )
 custom_styles/pressed = SubResource( 8 )
@@ -163,9 +164,9 @@ __meta__ = {
 
 [node name="ENDE" type="Button" parent="."]
 margin_left = 128.0
-margin_top = 448.0
+margin_top = 512.0
 margin_right = 448.0
-margin_bottom = 504.0
+margin_bottom = 576.0
 custom_fonts/font = SubResource( 14 )
 custom_styles/hover = SubResource( 11 )
 custom_styles/pressed = SubResource( 12 )
@@ -176,12 +177,19 @@ __meta__ = {
 }
 
 [node name="AnimatedSprite" type="AnimatedSprite" parent="."]
-position = Vector2( 755.822, 322.431 )
-scale = Vector2( 2.81113, 2.31242 )
+position = Vector2( 1080, 248 )
+scale = Vector2( 2.81113, 2.65621 )
 frames = SubResource( 18 )
+frame = 1
 speed_scale = 0.8
 playing = true
 
+[node name="buttonSound" type="AudioStreamPlayer" parent="."]
+pause_mode = 2
+stream = ExtResource( 7 )
+volume_db = 5.361
+
 [connection signal="pressed" from="Start" to="." method="_on_Start_pressed"]
 [connection signal="pressed" from="Einstellungen" to="." method="_on_Einstellungen_pressed"]
 [connection signal="pressed" from="ENDE" to="." method="_on_ENDE_pressed"]
+[connection signal="finished" from="buttonSound" to="." method="_on_buttonSound_finished"]
diff --git a/src/scenes/PauseController.gd b/src/scenes/PauseController.gd
new file mode 100644
index 0000000000000000000000000000000000000000..89d150c15c6a7dd4f0817d6e42b67f5e0b3f700c
--- /dev/null
+++ b/src/scenes/PauseController.gd
@@ -0,0 +1,43 @@
+extends Node
+
+export(bool) var can_toggle_pause: bool = true
+
+
+func _ready():
+	print("loaded pause controller")
+
+
+func _process(delta):
+	if Input.is_action_just_pressed("menu_pause"):
+		print("action pause")
+		if !get_tree().paused:
+			$CanvasLayer/PauseBackground.visible = true
+			$CanvasLayer2/pauseText.visible = true
+			
+			pause()
+		else:
+			$CanvasLayer/PauseBackground.visible = false
+			$CanvasLayer2/pauseText.visible = false
+			
+			resume()	
+	
+		
+func pause():
+	if can_toggle_pause:
+		get_tree().set_deferred("paused", true)	
+		
+		
+
+func resume():
+	if can_toggle_pause:
+		get_tree().set_deferred("paused", false)
+	
+
+		
+
+		
+
+		
+
+
+
diff --git a/src/scenes/PauseController.tscn b/src/scenes/PauseController.tscn
index 31d7a86db7d427b6791f977a401a10fc96f0d5e1..6f97a617acdc39a4e227227cad8a1f5120657c4a 100644
--- a/src/scenes/PauseController.tscn
+++ b/src/scenes/PauseController.tscn
@@ -1,9 +1,8 @@
 [gd_scene load_steps=4 format=2]
 
-[ext_resource path="res://src/scripts/PauseController.gd" type="Script" id=1]
+[ext_resource path="res://src/scenes/PauseController.gd" type="Script" id=1]
 [ext_resource path="res://src/assets/menu_assets/04B_30__.TTF" type="DynamicFontData" id=2]
 
-
 [sub_resource type="DynamicFont" id=1]
 font_data = ExtResource( 2 )
 
diff --git a/src/scenes/Saw.gd b/src/scenes/Saw.gd
new file mode 100644
index 0000000000000000000000000000000000000000..60e4276925d9a0b0055554381b755c635f6aa960
--- /dev/null
+++ b/src/scenes/Saw.gd
@@ -0,0 +1,6 @@
+extends KinematicBody2D
+
+
+func _on_Area2D_body_entered(body):
+	if body.is_in_group("player"):
+		body.take_damage(2)
diff --git a/src/scenes/Saw.tscn b/src/scenes/Saw.tscn
index 1b61ea69d63d2f07000909b496077bd2b33f8906..ccd40e50b3dbe1427ef2a33291c5da3c8fe2f0d1 100644
--- a/src/scenes/Saw.tscn
+++ b/src/scenes/Saw.tscn
@@ -1,9 +1,8 @@
 [gd_scene load_steps=6 format=2]
 
 [ext_resource path="res://src/assets/FreeSciFiPlatformTileSet/png/Objects/Saw.png" type="Texture" id=1]
-[ext_resource path="res://src/scripts/Saw.gd" type="Script" id=2]
-[ext_resource path="res://src/scripts/SawRotation.gd" type="Script" id=3]
-
+[ext_resource path="res://src/scenes/Saw.gd" type="Script" id=2]
+[ext_resource path="res://src/scenes/SawRotation.gd" type="Script" id=3]
 
 [sub_resource type="CircleShape2D" id=1]
 radius = 0.0
diff --git a/src/scenes/SawRotation.gd b/src/scenes/SawRotation.gd
new file mode 100644
index 0000000000000000000000000000000000000000..f0d6cbb63cd09f303ba13d35d8047e1734300e7d
--- /dev/null
+++ b/src/scenes/SawRotation.gd
@@ -0,0 +1,6 @@
+extends Sprite
+
+
+func _process(delta):
+	rotation +=5*delta
+	pass
diff --git a/src/scenes/Settings.gd b/src/scenes/Settings.gd
new file mode 100644
index 0000000000000000000000000000000000000000..c085b4ffd517c81b2f1b4ea0100dc195d7755b0d
--- /dev/null
+++ b/src/scenes/Settings.gd
@@ -0,0 +1,10 @@
+extends Control
+
+func _ready():
+		pass
+
+func _input(event):
+	if event.is_action_pressed("quit"):
+		$buttonSound.play()
+		yield($buttonSound, "finished")
+		get_tree().change_scene("res://src/scenes/Menu.tscn")
diff --git a/src/scenes/Settings.tscn b/src/scenes/Settings.tscn
index 8932f114242179ecb6ef416b384e5c2f54dfa303..d40d78403c9294d2dbae93acc12aac24e513e520 100644
--- a/src/scenes/Settings.tscn
+++ b/src/scenes/Settings.tscn
@@ -1,4 +1,4 @@
-[gd_scene load_steps=25 format=2]
+[gd_scene load_steps=26 format=2]
 
 [ext_resource path="res://src/assets/menu_assets/spaceHintergrund.png" type="Texture" id=1]
 [ext_resource path="res://src/assets/menu_assets/04B_30__.TTF" type="DynamicFontData" id=2]
@@ -7,8 +7,8 @@
 [ext_resource path="res://src/assets/menu_assets/kb_w.png" type="Texture" id=5]
 [ext_resource path="res://src/assets/menu_assets/kb_a.png" type="Texture" id=6]
 [ext_resource path="res://src/assets/menu_assets/kb_d.png" type="Texture" id=7]
-[ext_resource path="res://src/scripts/Settings.gd" type="Script" id=8]
-
+[ext_resource path="res://src/scenes/Settings.gd" type="Script" id=8]
+[ext_resource path="res://src/assets/sounds/click1.wav" type="AudioStream" id=9]
 
 [sub_resource type="DynamicFont" id=1]
 size = 50
@@ -232,3 +232,8 @@ custom_styles/normal = SubResource( 16 )
 __meta__ = {
 "_edit_use_anchors_": false
 }
+
+[node name="buttonSound" type="AudioStreamPlayer" parent="."]
+pause_mode = 2
+stream = ExtResource( 9 )
+volume_db = 5.361
diff --git a/src/scenes/Sprite.gd b/src/scenes/Sprite.gd
new file mode 100644
index 0000000000000000000000000000000000000000..f0d6cbb63cd09f303ba13d35d8047e1734300e7d
--- /dev/null
+++ b/src/scenes/Sprite.gd
@@ -0,0 +1,6 @@
+extends Sprite
+
+
+func _process(delta):
+	rotation +=5*delta
+	pass
diff --git a/src/scenes/coin.tscn b/src/scenes/coin.tscn
index 5e8618452e8f6eca5245f1279216f02c2f55c1e2..0cfae48d504ff83540b2cecfafec61a65df664ab 100644
--- a/src/scenes/coin.tscn
+++ b/src/scenes/coin.tscn
@@ -1,8 +1,8 @@
-[gd_scene load_steps=13 format=2]
+[gd_scene load_steps=14 format=2]
 
 [ext_resource path="res://src/assets/colleticbles/coin_gold.png" type="Texture" id=1]
 [ext_resource path="res://src/scripts/coin.gd" type="Script" id=2]
-
+[ext_resource path="res://src/assets/sounds/coin1.wav" type="AudioStream" id=3]
 
 [sub_resource type="CircleShape2D" id=1]
 radius = 16.0
@@ -67,8 +67,12 @@ position = Vector2( 0, 8 )
 scale = Vector2( 2.09375, 1.5625 )
 frames = SubResource( 10 )
 animation = "spin"
-frame = 7
+frame = 2
 playing = true
 
+[node name="coinSound" type="AudioStreamPlayer" parent="."]
+stream = ExtResource( 3 )
+volume_db = 6.058
+
 [connection signal="body_entered" from="." to="." method="_on_coin_body_entered"]
 [connection signal="coin_collected" from="." to="." method="_on_coin_collected"]
diff --git a/src/scenes/levels/Level0.tscn b/src/scenes/levels/Level0.tscn
index fc2c13c9fe44a11594796988fe0a90c061fc08c2..f6c0c9dacc68726699bc6062bd89f33a5438961b 100644
--- a/src/scenes/levels/Level0.tscn
+++ b/src/scenes/levels/Level0.tscn
@@ -1,4 +1,4 @@
-[gd_scene load_steps=46 format=2]
+[gd_scene load_steps=42 format=2]
 
 [ext_resource path="res://src/assets/tilesets/png-transparent-nebula-atmosphere-sky-nebula-space-astronomy-space-miscellaneous-purple-texture.png" type="Texture" id=1]
 [ext_resource path="res://src/assets/tilesets/main_scifi_tileset.png" type="Texture" id=2]
@@ -10,10 +10,6 @@
 [ext_resource path="res://src/assets/menu_assets/04B_30__.TTF" type="DynamicFontData" id=8]
 [ext_resource path="res://src/assets/colleticbles/coin/gold_1.png" type="Texture" id=9]
 [ext_resource path="res://src/scenes/levels/Score.gd" type="Script" id=10]
-[ext_resource path="res://src/actors/enemy/wizard.tscn" type="PackedScene" id=11]
-[ext_resource path="res://src/actors/enemy/Skeleton.tscn" type="PackedScene" id=12]
-[ext_resource path="res://src/actors/enemy/ghost.tscn" type="PackedScene" id=13]
-[ext_resource path="res://src/actors/enemy/enemy_knight.tscn" type="PackedScene" id=14]
 
 [sub_resource type="ConvexPolygonShape2D" id=1]
 points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
@@ -779,65 +775,33 @@ cell_size = Vector2( 32, 32 )
 format = 1
 tile_data = PoolIntArray( -720924, 0, 0, -720910, 0, 0, -786432, 0, 0, -786418, 0, 0, -786404, 0, 0, -786390, 0, 0, -786376, 0, 0, -786362, 0, 0, -786348, 0, 0, -786334, 0, 0, -786320, 0, 0, -786306, 0, 0, -786292, 0, 0, -786278, 0, 0, -786264, 0, 0, -786250, 0, 0, -786236, 0, 0, -786222, 0, 0, -786208, 0, 0, -786194, 0, 0, -786180, 0, 0, -786166, 0, 0, -786152, 0, 0, -786138, 0, 0, -786124, 0, 0, -786110, 0, 0, -786096, 0, 0, -786082, 0, 0, -786068, 0, 0, -786054, 0, 0, -786040, 0, 0, -786026, 0, 0, -786012, 0, 0, -785998, 0, 0, -785984, 0, 0, -785970, 0, 0, -327697, 0, 0, -327683, 0, 0, -393205, 0, 0, -393191, 0, 0, -393177, 0, 0, -393163, 0, 0, -393149, 0, 0, -393135, 0, 0, -393121, 0, 0, -393107, 0, 0, -393093, 0, 0, -393079, 0, 0, -393065, 0, 0, -393051, 0, 0, -393037, 0, 0, -393023, 0, 0, -393009, 0, 0, -392995, 0, 0, -392981, 0, 0, -392967, 0, 0, -392953, 0, 0, -392939, 0, 0, -392925, 0, 0, -392911, 0, 0, -392897, 0, 0, -392883, 0, 0, -392869, 0, 0, -392855, 0, 0, -392841, 0, 0, -392827, 0, 0, -392813, 0, 0, -392799, 0, 0, -392785, 0, 0, -392771, 0, 0, -392757, 0, 0, 65508, 0, 0, 65522, 0, 0, 0, 0, 0, 14, 0, 0, 28, 0, 0, 42, 0, 0, 56, 0, 0, 70, 0, 0, 84, 0, 0, 98, 0, 0, 112, 0, 0, 126, 0, 0, 140, 0, 0, 154, 0, 0, 168, 0, 0, 182, 0, 0, 196, 0, 0, 210, 0, 0, 224, 0, 0, 238, 0, 0, 252, 0, 0, 266, 0, 0, 280, 0, 0, 294, 0, 0, 308, 0, 0, 322, 0, 0, 336, 0, 0, 350, 0, 0, 364, 0, 0, 378, 0, 0, 392, 0, 0, 406, 0, 0, 420, 0, 0, 434, 0, 0, 448, 0, 0, 462, 0, 0, 458735, 0, 0, 458749, 0, 0, 393227, 0, 0, 393241, 0, 0, 393255, 0, 0, 393269, 0, 0, 393283, 0, 0, 393297, 0, 0, 393311, 0, 0, 393325, 0, 0, 393339, 0, 0, 393353, 0, 0, 393367, 0, 0, 393381, 0, 0, 393395, 0, 0, 393409, 0, 0, 393423, 0, 0, 393437, 0, 0, 393451, 0, 0, 393465, 0, 0, 393479, 0, 0, 393493, 0, 0, 393507, 0, 0, 393521, 0, 0, 393535, 0, 0, 393549, 0, 0, 393563, 0, 0, 393577, 0, 0, 393591, 0, 0, 393605, 0, 0, 393619, 0, 0, 393633, 0, 0, 393647, 0, 0, 393661, 0, 0, 393675, 0, 0, 851940, 0, 0, 851954, 0, 0, 786432, 0, 0, 786446, 0, 0, 786460, 0, 0, 786474, 0, 0, 786488, 0, 0, 786502, 0, 0, 786516, 0, 0, 786530, 0, 0, 786544, 0, 0, 786558, 0, 0, 786572, 0, 0, 786586, 0, 0, 786600, 0, 0, 786614, 0, 0, 786628, 0, 0, 786642, 0, 0, 786656, 0, 0, 786670, 0, 0, 786684, 0, 0, 786698, 0, 0, 786712, 0, 0, 786726, 0, 0, 786740, 0, 0, 786754, 0, 0, 786768, 0, 0, 786782, 0, 0, 786796, 0, 0, 786810, 0, 0, 786824, 0, 0, 786838, 0, 0, 786852, 0, 0, 786866, 0, 0, 786880, 0, 0, 786894, 0, 0, 1245167, 0, 0, 1245181, 0, 0, 1179659, 0, 0, 1179673, 0, 0, 1179687, 0, 0, 1179701, 0, 0, 1179715, 0, 0, 1179729, 0, 0, 1179743, 0, 0, 1179757, 0, 0, 1179771, 0, 0, 1179785, 0, 0, 1179799, 0, 0, 1179813, 0, 0, 1179827, 0, 0, 1179841, 0, 0, 1179855, 0, 0, 1179869, 0, 0, 1179883, 0, 0, 1179897, 0, 0, 1179911, 0, 0, 1179925, 0, 0, 1179939, 0, 0, 1179953, 0, 0, 1179967, 0, 0, 1179981, 0, 0, 1179995, 0, 0, 1180009, 0, 0, 1180023, 0, 0, 1180037, 0, 0, 1180051, 0, 0, 1180065, 0, 0, 1180079, 0, 0, 1180093, 0, 0, 1180107, 0, 0, 1638372, 0, 0, 1638386, 0, 0, 1572864, 0, 0, 1572878, 0, 0, 1572892, 0, 0, 1572906, 0, 0, 1572920, 0, 0, 1572934, 0, 0, 1572948, 0, 0, 1572962, 0, 0, 1572976, 0, 0, 1572990, 0, 0, 1573004, 0, 0, 1573018, 0, 0, 1573032, 0, 0, 1573046, 0, 0, 1573060, 0, 0, 1573074, 0, 0, 1573088, 0, 0, 1573102, 0, 0, 1573116, 0, 0, 1573130, 0, 0, 1573144, 0, 0, 1573158, 0, 0, 1573172, 0, 0, 1573186, 0, 0, 1573200, 0, 0, 1573214, 0, 0, 1573228, 0, 0, 1573242, 0, 0, 1573256, 0, 0, 1573270, 0, 0, 1573284, 0, 0, 1573298, 0, 0, 1573312, 0, 0, 1573326, 0, 0 )
 
-[node name="BackGround2" type="TileMap" parent="Level0"]
-tile_set = SubResource( 12 )
-cell_size = Vector2( 32, 32 )
-collision_layer = 0
-collision_mask = 0
-format = 1
-tile_data = PoolIntArray( 393218, 1, 0, 393224, 1, 0, 393230, 1, 0, 393232, 1, 0, 393233, 1, 0, 393234, 1, 0, 393235, 1, 0, 393236, 1, 0, 393238, 1, 0, 393239, 1, 0, 393243, 1, 0, 393248, 1, 0, 393249, 1, 0, 393250, 1, 0, 393251, 1, 0, 393252, 1, 0, 393253, 1, 0, 393254, 1, 0, 393256, 1, 0, 393260, 1, 0, 393262, 1, 0, 393263, 1, 0, 393264, 1, 0, 393265, 1, 0, 393266, 1, 0, 393268, 1, 0, 393269, 1, 0, 393273, 1, 0, 393275, 1, 0, 393280, 1, 0, 393282, 1, 0, 393283, 1, 0, 393284, 1, 0, 393285, 1, 0, 393286, 1, 0, 393292, 1, 0, 393293, 1, 0, 393294, 1, 0, 393295, 1, 0, 393296, 1, 0, 393298, 1, 0, 393299, 1, 0, 393300, 1, 0, 393301, 1, 0, 393302, 1, 0, 393304, 1, 0, 393305, 1, 0, 393306, 1, 0, 393307, 1, 0, 393308, 1, 0, 393314, 1, 0, 393315, 1, 0, 393316, 1, 0, 393317, 1, 0, 393318, 1, 0, 393320, 1, 0, 393326, 1, 0, 393327, 1, 0, 393328, 1, 0, 393329, 1, 0, 393330, 1, 0, 393332, 1, 0, 393338, 1, 0, 393340, 1, 0, 393342, 1, 0, 393343, 1, 0, 393347, 1, 0, 393349, 1, 0, 393350, 1, 0, 393351, 1, 0, 393352, 1, 0, 393353, 1, 0, 458754, 1, 0, 458760, 1, 0, 458766, 1, 0, 458768, 1, 0, 458772, 1, 0, 458774, 1, 0, 458776, 1, 0, 458779, 1, 0, 458787, 1, 0, 458792, 1, 0, 458796, 1, 0, 458798, 1, 0, 458802, 1, 0, 458804, 1, 0, 458806, 1, 0, 458809, 1, 0, 458811, 1, 0, 458814, 1, 0, 458815, 1, 0, 458818, 1, 0, 458828, 1, 0, 458834, 1, 0, 458838, 1, 0, 458840, 1, 0, 458844, 1, 0, 458850, 1, 0, 458854, 1, 0, 458856, 1, 0, 458862, 1, 0, 458866, 1, 0, 458869, 1, 0, 458873, 1, 0, 458876, 1, 0, 458878, 1, 0, 458880, 1, 0, 458883, 1, 0, 458885, 1, 0, 524290, 1, 0, 524296, 1, 0, 524299, 1, 0, 524302, 1, 0, 524304, 1, 0, 524308, 1, 0, 524310, 1, 0, 524312, 1, 0, 524315, 1, 0, 524323, 1, 0, 524328, 1, 0, 524332, 1, 0, 524334, 1, 0, 524338, 1, 0, 524340, 1, 0, 524342, 1, 0, 524345, 1, 0, 524347, 1, 0, 524349, 1, 0, 524350, 1, 0, 524354, 1, 0, 524364, 1, 0, 524370, 1, 0, 524374, 1, 0, 524376, 1, 0, 524380, 1, 0, 524386, 1, 0, 524390, 1, 0, 524392, 1, 0, 524398, 1, 0, 524402, 1, 0, 524406, 1, 0, 524408, 1, 0, 524412, 1, 0, 524414, 1, 0, 524416, 1, 0, 524419, 1, 0, 524421, 1, 0, 589826, 1, 0, 589832, 1, 0, 589835, 1, 0, 589838, 1, 0, 589840, 1, 0, 589844, 1, 0, 589846, 1, 0, 589848, 1, 0, 589851, 1, 0, 589859, 1, 0, 589864, 1, 0, 589868, 1, 0, 589870, 1, 0, 589874, 1, 0, 589876, 1, 0, 589878, 1, 0, 589881, 1, 0, 589883, 1, 0, 589884, 1, 0, 589885, 1, 0, 589890, 1, 0, 589891, 1, 0, 589892, 1, 0, 589893, 1, 0, 589894, 1, 0, 589900, 1, 0, 589901, 1, 0, 589902, 1, 0, 589903, 1, 0, 589906, 1, 0, 589910, 1, 0, 589912, 1, 0, 589913, 1, 0, 589914, 1, 0, 589915, 1, 0, 589916, 1, 0, 589922, 1, 0, 589923, 1, 0, 589924, 1, 0, 589925, 1, 0, 589926, 1, 0, 589928, 1, 0, 589934, 1, 0, 589938, 1, 0, 589943, 1, 0, 589948, 1, 0, 589950, 1, 0, 589952, 1, 0, 589955, 1, 0, 589957, 1, 0, 655362, 1, 0, 655368, 1, 0, 655371, 1, 0, 655374, 1, 0, 655376, 1, 0, 655380, 1, 0, 655382, 1, 0, 655385, 1, 0, 655387, 1, 0, 655395, 1, 0, 655400, 1, 0, 655401, 1, 0, 655402, 1, 0, 655403, 1, 0, 655404, 1, 0, 655406, 1, 0, 655407, 1, 0, 655408, 1, 0, 655409, 1, 0, 655410, 1, 0, 655412, 1, 0, 655415, 1, 0, 655417, 1, 0, 655419, 1, 0, 655420, 1, 0, 655421, 1, 0, 655422, 1, 0, 655430, 1, 0, 655436, 1, 0, 655442, 1, 0, 655446, 1, 0, 655448, 1, 0, 655449, 1, 0, 655458, 1, 0, 655464, 1, 0, 655470, 1, 0, 655471, 1, 0, 655472, 1, 0, 655473, 1, 0, 655474, 1, 0, 655479, 1, 0, 655484, 1, 0, 655486, 1, 0, 655489, 1, 0, 655491, 1, 0, 655493, 1, 0, 655495, 1, 0, 655496, 1, 0, 655497, 1, 0, 655498, 1, 0, 720898, 1, 0, 720904, 1, 0, 720907, 1, 0, 720910, 1, 0, 720912, 1, 0, 720916, 1, 0, 720918, 1, 0, 720921, 1, 0, 720923, 1, 0, 720931, 1, 0, 720936, 1, 0, 720940, 1, 0, 720942, 1, 0, 720946, 1, 0, 720948, 1, 0, 720951, 1, 0, 720953, 1, 0, 720955, 1, 0, 720958, 1, 0, 720959, 1, 0, 720966, 1, 0, 720972, 1, 0, 720978, 1, 0, 720982, 1, 0, 720984, 1, 0, 720986, 1, 0, 720994, 1, 0, 721000, 1, 0, 721006, 1, 0, 721010, 1, 0, 721015, 1, 0, 721020, 1, 0, 721022, 1, 0, 721025, 1, 0, 721027, 1, 0, 721029, 1, 0, 721034, 1, 0, 786434, 1, 0, 786435, 1, 0, 786436, 1, 0, 786437, 1, 0, 786438, 1, 0, 786440, 1, 0, 786441, 1, 0, 786442, 1, 0, 786443, 1, 0, 786444, 1, 0, 786445, 1, 0, 786446, 1, 0, 786448, 1, 0, 786449, 1, 0, 786450, 1, 0, 786451, 1, 0, 786452, 1, 0, 786454, 1, 0, 786457, 1, 0, 786458, 1, 0, 786459, 1, 0, 786467, 1, 0, 786472, 1, 0, 786476, 1, 0, 786478, 1, 0, 786482, 1, 0, 786484, 1, 0, 786487, 1, 0, 786489, 1, 0, 786491, 1, 0, 786495, 1, 0, 786496, 1, 0, 786502, 1, 0, 786508, 1, 0, 786514, 1, 0, 786518, 1, 0, 786520, 1, 0, 786523, 1, 0, 786530, 1, 0, 786536, 1, 0, 786542, 1, 0, 786546, 1, 0, 786551, 1, 0, 786556, 1, 0, 786558, 1, 0, 786561, 1, 0, 786563, 1, 0, 786565, 1, 0, 786570, 1, 0, 852003, 1, 0, 852008, 1, 0, 852012, 1, 0, 852014, 1, 0, 852018, 1, 0, 852020, 1, 0, 852024, 1, 0, 852025, 1, 0, 852027, 1, 0, 852032, 1, 0, 852034, 1, 0, 852035, 1, 0, 852036, 1, 0, 852037, 1, 0, 852038, 1, 0, 852044, 1, 0, 852050, 1, 0, 852051, 1, 0, 852052, 1, 0, 852053, 1, 0, 852054, 1, 0, 852056, 1, 0, 852060, 1, 0, 852066, 1, 0, 852072, 1, 0, 852073, 1, 0, 852074, 1, 0, 852075, 1, 0, 852076, 1, 0, 852078, 1, 0, 852082, 1, 0, 852087, 1, 0, 852092, 1, 0, 852094, 1, 0, 852098, 1, 0, 852099, 1, 0, 852101, 1, 0, 852102, 1, 0, 852103, 1, 0, 852104, 1, 0, 852105, 1, 0, 852106, 1, 0 )
-
 [node name="Objects" type="Node2D" parent="Level0"]
 
 [node name="Door0" parent="Level0/Objects" instance=ExtResource( 5 )]
 position = Vector2( 402.957, 450 )
 script = SubResource( 13 )
-level_number = 4
+level_number = 1
 door_name = "Door0"
 
 [node name="DoorExit" parent="Level0/Objects" instance=ExtResource( 5 )]
 position = Vector2( 682.395, 448 )
-level_number = 4
+level_number = 1
 door_name = "DoorExit"
 
 [node name="coin" parent="Level0/Objects" instance=ExtResource( 6 )]
-position = Vector2( 857, -410.017 )
+position = Vector2( 908.251, 298.492 )
 
 [node name="coin2" parent="Level0/Objects" instance=ExtResource( 6 )]
-position = Vector2( 920.855, -409.58 )
+position = Vector2( 972.106, 298.929 )
 
 [node name="shards" parent="Level0/Objects" instance=ExtResource( 7 )]
-position = Vector2( 1189.47, -422.58 )
+position = Vector2( 1240.72, 285.929 )
 
 [node name="shards2" parent="Level0/Objects" instance=ExtResource( 7 )]
-position = Vector2( 1250.78, -424 )
+position = Vector2( 1302.03, 284.509 )
 
 [node name="Enemies" type="Node2D" parent="Level0"]
 
-[node name="wizard" parent="Level0/Enemies" instance=ExtResource( 11 )]
-position = Vector2( 5426, 291 )
-
-[node name="wizard2" parent="Level0/Enemies" instance=ExtResource( 11 )]
-position = Vector2( 5430, 416 )
-
-[node name="Node2D" parent="Level0/Enemies" instance=ExtResource( 12 )]
-position = Vector2( 4753, 296 )
-
-[node name="Node2D2" parent="Level0/Enemies" instance=ExtResource( 12 )]
-position = Vector2( 4753, 422 )
-
-[node name="ghost" parent="Level0/Enemies" instance=ExtResource( 13 )]
-position = Vector2( 5089, 300 )
-
-[node name="ghost2" parent="Level0/Enemies" instance=ExtResource( 13 )]
-position = Vector2( 5086, 430 )
-
-[node name="enemy_knight" parent="Level0/Enemies" instance=ExtResource( 14 )]
-position = Vector2( 5744, 290 )
-
-[node name="enemy_knight2" parent="Level0/Enemies" instance=ExtResource( 14 )]
-position = Vector2( 5744, 418 )
-
 [node name="Player" parent="Level0" instance=ExtResource( 4 )]
 position = Vector2( 419.076, 432.344 )
 collision_mask = 16
@@ -847,7 +811,7 @@ tile_set = SubResource( 29 )
 cell_size = Vector2( 32, 32 )
 collision_layer = 3
 format = 1
-tile_data = PoolIntArray( 65536, 1, 0, 131072, 1, 0, 196608, 1, 0, 262144, 1, 0, 327680, 1, 0, 393216, 1, 0, 393359, 1, 0, 393360, 1, 0, 393361, 1, 0, 393362, 1, 0, 393363, 1, 0, 393364, 1, 0, 393365, 1, 0, 393366, 1, 0, 393367, 1, 0, 393368, 1, 0, 393369, 1, 0, 393370, 1, 0, 393371, 1, 0, 393372, 1, 0, 393373, 1, 0, 393374, 1, 0, 393375, 1, 0, 393376, 1, 0, 393377, 1, 0, 393378, 1, 0, 393379, 1, 0, 393380, 1, 0, 393381, 1, 0, 393382, 1, 0, 393383, 1, 0, 393384, 1, 0, 393385, 1, 0, 393386, 1, 0, 393387, 1, 0, 393388, 1, 0, 393389, 1, 0, 393390, 1, 0, 393391, 1, 0, 393392, 1, 0, 393393, 1, 0, 393394, 1, 0, 393395, 1, 0, 393396, 1, 0, 393397, 1, 0, 393398, 1, 0, 393399, 1, 0, 393400, 1, 0, 458752, 1, 0, 458895, 1, 0, 458905, 1, 0, 458916, 1, 0, 458926, 1, 0, 458936, 1, 0, 524288, 1, 0, 524431, 1, 0, 524441, 1, 0, 524452, 1, 0, 524462, 1, 0, 524472, 1, 0, 589824, 1, 0, 589967, 1, 0, 589977, 1, 0, 589988, 1, 0, 589998, 1, 0, 590008, 1, 0, 655360, 1, 0, 655503, 1, 0, 655507, 1, 0, 655508, 1, 0, 655509, 1, 0, 655513, 1, 0, 655517, 1, 0, 655518, 1, 0, 655519, 1, 0, 655520, 1, 0, 655524, 1, 0, 655528, 1, 0, 655529, 1, 0, 655530, 1, 0, 655534, 1, 0, 655538, 1, 0, 655539, 1, 0, 655540, 1, 0, 655544, 1, 0, 720896, 1, 0, 721039, 1, 0, 721049, 1, 0, 721060, 1, 0, 721070, 1, 0, 721080, 1, 0, 786432, 1, 0, 786575, 1, 0, 786585, 1, 0, 786596, 1, 0, 786606, 1, 0, 786616, 1, 0, 851968, 1, 0, 852111, 1, 0, 852121, 1, 0, 852132, 1, 0, 852142, 1, 0, 852152, 1, 0, 917504, 1, 0, 917505, 1, 0, 917506, 1, 0, 917507, 1, 0, 917508, 1, 0, 917509, 1, 0, 917510, 1, 0, 917511, 1, 0, 917512, 1, 0, 917513, 1, 0, 917514, 1, 0, 917515, 1, 0, 917516, 1, 0, 917517, 1, 0, 917518, 1, 0, 917519, 1, 0, 917520, 1, 0, 917521, 1, 0, 917522, 1, 0, 917523, 1, 0, 917524, 1, 0, 917525, 1, 0, 917526, 1, 0, 917527, 1, 0, 917528, 1, 0, 917529, 1, 0, 917530, 1, 0, 917531, 1, 0, 917532, 1, 0, 917533, 1, 0, 917534, 1, 0, 917535, 1, 0, 917536, 1, 0, 917537, 1, 0, 917538, 1, 0, 917539, 1, 0, 917540, 1, 0, 917541, 1, 0, 917542, 1, 0, 917543, 1, 0, 917544, 1, 0, 917545, 1, 0, 917546, 1, 0, 917547, 1, 0, 917548, 1, 0, 917549, 1, 0, 917550, 1, 0, 917551, 1, 0, 917552, 1, 0, 917553, 1, 0, 917554, 1, 0, 917555, 1, 0, 917556, 1, 0, 917557, 1, 0, 917558, 1, 0, 917559, 1, 0, 917560, 1, 0, 917561, 1, 0, 917562, 1, 0, 917563, 1, 0, 917564, 1, 0, 917565, 1, 0, 917566, 1, 0, 917567, 1, 0, 917568, 1, 0, 917569, 1, 0, 917570, 1, 0, 917571, 1, 0, 917572, 1, 0, 917573, 1, 0, 917574, 1, 0, 917575, 1, 0, 917576, 1, 0, 917577, 1, 0, 917578, 1, 0, 917579, 1, 0, 917580, 1, 0, 917581, 1, 0, 917582, 1, 0, 917583, 1, 0, 917584, 1, 0, 917585, 1, 0, 917586, 1, 0, 917587, 1, 0, 917588, 1, 0, 917589, 1, 0, 917590, 1, 0, 917591, 1, 0, 917592, 1, 0, 917593, 1, 0, 917594, 1, 0, 917595, 1, 0, 917596, 1, 0, 917597, 1, 0, 917598, 1, 0, 917599, 1, 0, 917600, 1, 0, 917601, 1, 0, 917602, 1, 0, 917603, 1, 0, 917604, 1, 0, 917605, 1, 0, 917606, 1, 0, 917607, 1, 0, 917608, 1, 0, 917609, 1, 0, 917610, 1, 0, 917611, 1, 0, 917612, 1, 0, 917613, 1, 0, 917614, 1, 0, 917615, 1, 0, 917616, 1, 0, 917617, 1, 0, 917618, 1, 0, 917619, 1, 0, 917620, 1, 0, 917621, 1, 0, 917622, 1, 0, 917623, 1, 0, 917624, 1, 0, 917625, 1, 0, 917626, 1, 0, 917627, 1, 0, 917628, 1, 0, 917629, 1, 0, 917630, 1, 0, 917631, 1, 0, 917632, 1, 0, 917633, 1, 0, 917634, 1, 0, 917635, 1, 0, 917636, 1, 0, 917637, 1, 0, 917638, 1, 0, 917639, 1, 0, 917640, 1, 0, 917641, 1, 0, 917642, 1, 0, 917643, 1, 0, 917644, 1, 0, 917645, 1, 0, 917646, 1, 0, 917647, 1, 0, 917648, 1, 0, 917649, 1, 0, 917650, 1, 0, 917651, 1, 0, 917652, 1, 0, 917653, 1, 0, 917654, 1, 0, 917655, 1, 0, 917656, 1, 0, 917657, 1, 0, 917658, 1, 0, 917659, 1, 0, 917660, 1, 0, 917661, 1, 0, 917662, 1, 0, 917663, 1, 0, 917664, 1, 0, 917665, 1, 0, 917666, 1, 0, 917667, 1, 0, 917668, 1, 0, 917669, 1, 0, 917670, 1, 0, 917671, 1, 0, 917672, 1, 0, 917673, 1, 0, 917674, 1, 0, 917675, 1, 0, 917676, 1, 0, 917677, 1, 0, 917678, 1, 0, 917679, 1, 0, 917680, 1, 0, 917681, 1, 0, 917682, 1, 0, 917683, 1, 0, 917684, 1, 0, 917685, 1, 0, 917686, 1, 0, 917687, 1, 0, 917688, 1, 0, 917689, 1, 0, 917690, 1, 0, 917691, 1, 0, 917692, 1, 0, 917693, 1, 0, 917694, 1, 0, 917695, 1, 0, 917696, 1, 0, 917697, 1, 0, 917698, 1, 0, 917699, 1, 0, 917700, 1, 0, 917701, 1, 0, 917702, 1, 0, 917703, 1, 0, 917704, 1, 0, 917705, 1, 0, 917706, 1, 0, 917707, 1, 0, 917708, 1, 0, 917709, 1, 0, 917710, 1, 0, 917711, 1, 0, 917712, 1, 0, 917713, 1, 0, 917714, 1, 0, 917715, 1, 0, 917716, 1, 0, 917717, 1, 0, 917718, 1, 0, 917719, 1, 0, 917720, 1, 0, 917721, 1, 0, 917722, 1, 0, 917723, 1, 0, 917724, 1, 0, 917725, 1, 0, 917726, 1, 0, 917727, 1, 0, 917728, 1, 0, 917729, 1, 0, 917730, 1, 0, 917731, 1, 0, 917732, 1, 0, 917733, 1, 0, 917734, 1, 0, 917735, 1, 0, 917736, 1, 0, 917737, 1, 0, 917738, 1, 0, 917739, 1, 0, 917740, 1, 0, 917741, 1, 0, 917742, 1, 0, 917743, 1, 0, 917744, 1, 0, 917745, 1, 0, 917746, 1, 0, 917747, 1, 0, 917748, 1, 0, 917749, 1, 0, 917750, 1, 0, 917751, 1, 0, 917752, 1, 0, 917753, 1, 0, 917754, 1, 0, 917755, 1, 0, 917756, 1, 0, 917757, 1, 0, 917758, 1, 0, 917759, 1, 0, 917760, 1, 0, 917761, 1, 0, 917762, 1, 0, 917763, 1, 0, 917764, 1, 0, 917765, 1, 0, 917766, 1, 0, 917767, 1, 0, 917768, 1, 0, 917769, 1, 0, 917770, 1, 0, 917771, 1, 0, 917772, 1, 0, 917773, 1, 0, 917774, 1, 0, 917775, 1, 0, 917776, 1, 0, 917777, 1, 0, 917778, 1, 0, 917779, 1, 0, 917780, 1, 0, 917781, 1, 0, 917782, 1, 0, 917783, 1, 0, 917784, 1, 0, 917785, 1, 0, 917786, 1, 0, 917787, 1, 0, 917788, 1, 0, 917789, 1, 0, 917790, 1, 0, 917791, 1, 0, 917792, 1, 0, 917793, 1, 0, 917794, 1, 0, 917795, 1, 0, 917796, 1, 0, 917797, 1, 0, 917798, 1, 0, 917799, 1, 0, 917800, 1, 0, 917801, 1, 0, 917802, 1, 0, 917803, 1, 0, 917804, 1, 0, 917805, 1, 0, 917806, 1, 0, 917807, 1, 0, 917808, 1, 0, 917809, 1, 0, 917810, 1, 0, 917811, 1, 0, 917812, 1, 0, 917813, 1, 0, 917814, 1, 0, 917815, 1, 0, 917816, 1, 0, 917817, 1, 0, 917818, 1, 0, 917819, 1, 0, 917820, 1, 0, 917821, 1, 0, 917822, 1, 0, 917823, 1, 0, 917824, 1, 0, 917825, 1, 0, 917826, 1, 0, 917827, 1, 0, 917828, 1, 0, 917829, 1, 0, 917830, 1, 0, 917831, 1, 0, 917832, 1, 0, 917833, 1, 0, 917834, 1, 0, 917835, 1, 0, 917836, 1, 0, 917837, 1, 0, 917838, 1, 0, 917839, 1, 0, 917840, 1, 0, 917841, 1, 0, 917842, 1, 0, 917843, 1, 0, 917844, 1, 0, 917845, 1, 0, 917846, 1, 0, 917847, 1, 0, 917848, 1, 0, 917849, 1, 0, 917850, 1, 0, 917851, 1, 0, 917852, 1, 0, 917853, 1, 0, 917854, 1, 0, 917855, 1, 0, 917856, 1, 0, 917857, 1, 0, 917858, 1, 0, 917859, 1, 0, 917860, 1, 0, 917861, 1, 0, 917862, 1, 0, 917863, 1, 0, 917864, 1, 0, 917865, 1, 0, 917866, 1, 0, 917867, 1, 0, 917868, 1, 0, 917869, 1, 0, 917870, 1, 0, 917871, 1, 0, 917872, 1, 0, 917873, 1, 0, 917874, 1, 0, 917875, 1, 0, 917876, 1, 0, 917877, 1, 0, 917878, 1, 0, 917879, 1, 0, 917880, 1, 0, 917881, 1, 0, 917882, 1, 0, 917883, 1, 0, 983040, 12, 0, 983041, 12, 0, 983042, 12, 0, 983043, 12, 0, 983044, 12, 0, 983045, 12, 0, 983046, 12, 0, 983047, 12, 0, 983048, 12, 0, 983049, 12, 0, 983050, 12, 0, 983051, 12, 0, 983052, 12, 0, 983053, 12, 0, 983054, 12, 0, 983055, 12, 0, 983056, 12, 0, 983057, 12, 0, 983058, 12, 0, 983059, 12, 0, 983060, 12, 0, 983061, 12, 0, 983062, 12, 0, 983063, 12, 0, 983064, 12, 0, 983065, 12, 0, 983066, 12, 0, 983067, 12, 0, 983068, 12, 0, 983069, 12, 0, 983070, 12, 0, 983071, 12, 0, 983072, 12, 0, 983073, 12, 0, 983074, 12, 0, 983075, 12, 0, 983076, 12, 0, 983077, 12, 0, 983078, 12, 0, 983079, 12, 0, 983080, 12, 0, 983081, 12, 0, 983082, 12, 0, 983083, 12, 0, 983084, 12, 0, 983085, 12, 0, 983086, 12, 0, 983087, 12, 0, 983088, 12, 0, 983089, 12, 0, 983090, 12, 0, 983091, 12, 0, 983092, 12, 0, 983093, 12, 0, 983094, 12, 0, 983095, 12, 0, 983096, 12, 0, 983097, 12, 0, 983098, 12, 0, 983099, 12, 0, 983100, 12, 0, 983101, 12, 0, 983102, 12, 0, 983103, 12, 0, 983104, 12, 0, 983105, 12, 0, 983106, 12, 0, 983107, 12, 0, 983108, 12, 0, 983109, 12, 0, 983110, 12, 0, 983111, 12, 0, 983112, 12, 0, 983113, 12, 0, 983114, 12, 0, 983115, 12, 0, 983116, 12, 0, 983117, 12, 0, 983118, 12, 0, 983119, 12, 0, 983120, 12, 0, 983121, 12, 0, 983122, 12, 0, 983123, 12, 0, 983124, 12, 0, 983125, 12, 0, 983126, 12, 0, 983127, 12, 0, 983128, 12, 0, 983129, 12, 0, 983130, 12, 0, 983131, 12, 0, 983132, 12, 0, 983133, 12, 0, 983134, 12, 0, 983135, 12, 0, 983136, 12, 0, 983137, 12, 0, 983138, 12, 0, 983139, 12, 0, 983140, 12, 0, 983141, 12, 0, 983142, 12, 0, 983143, 12, 0, 983144, 12, 0, 983145, 12, 0, 983146, 12, 0, 983147, 12, 0, 983148, 12, 0, 983149, 12, 0, 983150, 12, 0, 983151, 12, 0, 983152, 12, 0, 983153, 12, 0, 983154, 12, 0, 983155, 12, 0, 983156, 12, 0, 983157, 12, 0, 983158, 12, 0, 983159, 12, 0, 983160, 12, 0, 983161, 12, 0, 983162, 12, 0, 983163, 12, 0, 983164, 12, 0, 983165, 12, 0, 983166, 12, 0, 983167, 12, 0, 983168, 12, 0, 983169, 12, 0, 983170, 12, 0, 983171, 12, 0, 983172, 12, 0, 983173, 12, 0, 983174, 12, 0, 983175, 12, 0, 983176, 12, 0, 983177, 12, 0, 983178, 12, 0, 983179, 12, 0, 983180, 12, 0, 983181, 12, 0, 983182, 12, 0, 983183, 12, 0, 983184, 12, 0, 983185, 12, 0, 983186, 12, 0, 983187, 12, 0, 983188, 12, 0, 983189, 12, 0, 983190, 12, 0, 983191, 12, 0, 983192, 12, 0, 983193, 12, 0, 983194, 12, 0, 983195, 12, 0, 983196, 12, 0, 983197, 12, 0, 983198, 12, 0, 983199, 12, 0, 983200, 12, 0, 983201, 12, 0, 983202, 12, 0, 983203, 12, 0, 983204, 12, 0, 983205, 12, 0, 983206, 12, 0, 983207, 12, 0, 983208, 12, 0, 983209, 12, 0, 983210, 12, 0, 983211, 12, 0, 983212, 12, 0, 983213, 12, 0, 983214, 12, 0, 983215, 12, 0, 983216, 12, 0, 983217, 12, 0, 983218, 12, 0, 983219, 12, 0, 983220, 12, 0, 983221, 12, 0, 983222, 12, 0, 983223, 12, 0, 983224, 12, 0, 983225, 12, 0, 983226, 12, 0, 983227, 12, 0, 983228, 12, 0, 983229, 12, 0, 983230, 12, 0, 983231, 12, 0, 983232, 12, 0, 983233, 12, 0, 983234, 12, 0, 983235, 12, 0, 983236, 12, 0, 983237, 12, 0, 983238, 12, 0, 983239, 12, 0, 983240, 12, 0, 983241, 12, 0, 983242, 12, 0, 983243, 12, 0, 983244, 12, 0, 983245, 12, 0, 983246, 12, 0, 983247, 12, 0, 983248, 12, 0, 983249, 12, 0, 983250, 12, 0, 983251, 12, 0, 983252, 12, 0, 983253, 12, 0, 983254, 12, 0, 983255, 12, 0, 983256, 12, 0, 983257, 12, 0, 983258, 12, 0, 983259, 12, 0, 983260, 12, 0, 983261, 12, 0, 983262, 12, 0, 983263, 12, 0, 983264, 12, 0, 983265, 12, 0, 983266, 12, 0, 983267, 12, 0, 983268, 12, 0, 983269, 12, 0, 983270, 12, 0, 983271, 12, 0, 983272, 12, 0, 983273, 12, 0, 983274, 12, 0, 983275, 12, 0, 983276, 12, 0, 983277, 12, 0, 983278, 12, 0, 983279, 12, 0, 983280, 12, 0, 983281, 12, 0, 983282, 12, 0, 983283, 12, 0, 983284, 12, 0, 983285, 12, 0, 983286, 12, 0, 983287, 12, 0, 983288, 12, 0, 983289, 12, 0, 983290, 12, 0, 983291, 12, 0, 983292, 12, 0, 983293, 12, 0, 983294, 12, 0, 983295, 12, 0, 983296, 12, 0, 983297, 12, 0, 983298, 12, 0, 983299, 12, 0, 983300, 12, 0, 983301, 12, 0, 983302, 12, 0, 983303, 12, 0, 983304, 12, 0, 983305, 12, 0, 983306, 12, 0, 983307, 12, 0, 983308, 12, 0, 983309, 12, 0, 983310, 12, 0, 983311, 12, 0, 983312, 12, 0, 983313, 12, 0, 983314, 12, 0, 983315, 12, 0, 983316, 12, 0, 983317, 12, 0, 983318, 12, 0, 983319, 12, 0, 983320, 12, 0, 983321, 12, 0, 983322, 12, 0, 983323, 12, 0, 983324, 12, 0, 983325, 12, 0, 983326, 12, 0, 983327, 12, 0, 983328, 12, 0, 983329, 12, 0, 983330, 12, 0, 983331, 12, 0, 983332, 12, 0, 983333, 12, 0, 983334, 12, 0, 983335, 12, 0, 983336, 12, 0, 983337, 12, 0, 983338, 12, 0, 983339, 12, 0, 983340, 12, 0, 983341, 12, 0, 983342, 12, 0, 983343, 12, 0, 983344, 12, 0, 983345, 12, 0, 983346, 12, 0, 983347, 12, 0, 983348, 12, 0, 983349, 12, 0, 983350, 12, 0, 983351, 12, 0, 983352, 12, 0, 983353, 12, 0, 983354, 12, 0, 983355, 12, 0, 983356, 12, 0, 983357, 12, 0, 983358, 12, 0, 983359, 12, 0, 983360, 12, 0, 983361, 12, 0, 983362, 12, 0, 983363, 12, 0, 983364, 12, 0, 983365, 12, 0, 983366, 12, 0, 983367, 12, 0, 983368, 12, 0, 983369, 12, 0, 983370, 12, 0, 983371, 12, 0, 983372, 12, 0, 983373, 12, 0, 983374, 12, 0, 983375, 12, 0, 983376, 12, 0, 983377, 12, 0, 983378, 12, 0, 983379, 12, 0, 983380, 12, 0, 983381, 12, 0, 983382, 12, 0, 983383, 12, 0, 983384, 12, 0, 983385, 12, 0, 983386, 12, 0, 983387, 12, 0, 983388, 12, 0, 983389, 12, 0, 983390, 12, 0, 983391, 12, 0, 983392, 12, 0, 983393, 12, 0, 983394, 12, 0, 983395, 12, 0, 983396, 12, 0, 983397, 12, 0, 983398, 12, 0, 983399, 12, 0, 983400, 12, 0, 983401, 12, 0, 983402, 12, 0, 983403, 12, 0, 983404, 12, 0, 983405, 12, 0, 983406, 12, 0, 983407, 12, 0, 983408, 12, 0, 983409, 12, 0, 983410, 12, 0, 983411, 12, 0, 983412, 12, 0, 983413, 12, 0, 983414, 12, 0, 983415, 12, 0, 983416, 12, 0, 983417, 12, 0, 983418, 12, 0, 983419, 12, 0 )
+tile_data = PoolIntArray( 65536, 1, 0, 131072, 1, 0, 196608, 1, 0, 262144, 1, 0, 327680, 1, 0, 393216, 1, 0, 393218, 1, 0, 393223, 1, 0, 393224, 1, 0, 393225, 1, 0, 393226, 1, 0, 458752, 1, 0, 458754, 1, 0, 458759, 1, 0, 458762, 1, 0, 524288, 1, 0, 524290, 1, 0, 524295, 1, 0, 524298, 1, 0, 589824, 1, 0, 589826, 1, 0, 589831, 1, 0, 589834, 1, 0, 655360, 1, 0, 655362, 1, 0, 655367, 1, 0, 655370, 1, 0, 720896, 1, 0, 720898, 1, 0, 720903, 1, 0, 720906, 1, 0, 786432, 1, 0, 786434, 1, 0, 786435, 1, 0, 786436, 1, 0, 786437, 1, 0, 786439, 1, 0, 786440, 1, 0, 786441, 1, 0, 786442, 1, 0, 851968, 1, 0, 917504, 1, 0, 917505, 1, 0, 917506, 1, 0, 917507, 1, 0, 917508, 1, 0, 917509, 1, 0, 917510, 1, 0, 917511, 1, 0, 917512, 1, 0, 917513, 1, 0, 917514, 1, 0, 917515, 1, 0, 917516, 1, 0, 917517, 1, 0, 917518, 1, 0, 917519, 1, 0, 917520, 1, 0, 917521, 1, 0, 917522, 1, 0, 917523, 1, 0, 917524, 1, 0, 917525, 1, 0, 917526, 1, 0, 917527, 1, 0, 917528, 1, 0, 917529, 1, 0, 917530, 1, 0, 917531, 1, 0, 917532, 1, 0, 917533, 1, 0, 917534, 1, 0, 917535, 1, 0, 917536, 1, 0, 917537, 1, 0, 917538, 1, 0, 917539, 1, 0, 917540, 1, 0, 917541, 1, 0, 917542, 1, 0, 917543, 1, 0, 917544, 1, 0, 917545, 1, 0, 917546, 1, 0, 917547, 1, 0, 917548, 1, 0, 917549, 1, 0, 917550, 1, 0, 917551, 1, 0, 917552, 1, 0, 917553, 1, 0, 917554, 1, 0, 917555, 1, 0, 917556, 1, 0, 917557, 1, 0, 917558, 1, 0, 917559, 1, 0, 917560, 1, 0, 917561, 1, 0, 917562, 1, 0, 917563, 1, 0, 917564, 1, 0, 917565, 1, 0, 917566, 1, 0, 917567, 1, 0, 917568, 1, 0, 917569, 1, 0, 917570, 1, 0, 917571, 1, 0, 917572, 1, 0, 917573, 1, 0, 917574, 1, 0, 917575, 1, 0, 917576, 1, 0, 917577, 1, 0, 917578, 1, 0, 917579, 1, 0, 917580, 1, 0, 917581, 1, 0, 917582, 1, 0, 917583, 1, 0, 917584, 1, 0, 917585, 1, 0, 917586, 1, 0, 917587, 1, 0, 917588, 1, 0, 917589, 1, 0, 917590, 1, 0, 917591, 1, 0, 917592, 1, 0, 917593, 1, 0, 917594, 1, 0, 917595, 1, 0, 917596, 1, 0, 917597, 1, 0, 917598, 1, 0, 917599, 1, 0, 917600, 1, 0, 917601, 1, 0, 917602, 1, 0, 917603, 1, 0, 917604, 1, 0, 917605, 1, 0, 917606, 1, 0, 917607, 1, 0, 917608, 1, 0, 917609, 1, 0, 917610, 1, 0, 917611, 1, 0, 917612, 1, 0, 917613, 1, 0, 917614, 1, 0, 917615, 1, 0, 917616, 1, 0, 917617, 1, 0, 917618, 1, 0, 917619, 1, 0, 917620, 1, 0, 917621, 1, 0, 917622, 1, 0, 917623, 1, 0, 917624, 1, 0, 917625, 1, 0, 983040, 12, 0, 983041, 12, 0, 983042, 12, 0, 983043, 12, 0, 983044, 12, 0, 983045, 12, 0, 983046, 12, 0, 983047, 12, 0, 983048, 12, 0, 983049, 12, 0, 983050, 12, 0, 983051, 12, 0, 983052, 12, 0, 983053, 12, 0, 983054, 12, 0, 983055, 12, 0, 983056, 12, 0, 983057, 12, 0, 983058, 12, 0, 983059, 12, 0, 983060, 12, 0, 983061, 12, 0, 983062, 12, 0, 983063, 12, 0, 983064, 12, 0, 983065, 12, 0, 983066, 12, 0, 983067, 12, 0, 983068, 12, 0, 983069, 12, 0, 983070, 12, 0, 983071, 12, 0, 983072, 12, 0, 983073, 12, 0, 983074, 12, 0, 983075, 12, 0, 983076, 12, 0, 983077, 12, 0, 983078, 12, 0, 983079, 12, 0, 983080, 12, 0, 983081, 12, 0, 983082, 12, 0, 983083, 12, 0, 983084, 12, 0, 983085, 12, 0, 983086, 12, 0, 983087, 12, 0, 983088, 12, 0, 983089, 12, 0, 983090, 12, 0, 983091, 12, 0, 983092, 12, 0, 983093, 12, 0, 983094, 12, 0, 983095, 12, 0, 983096, 12, 0, 983097, 12, 0, 983098, 12, 0, 983099, 12, 0, 983100, 12, 0, 983101, 12, 0, 983102, 12, 0, 983103, 12, 0, 983104, 12, 0, 983105, 12, 0, 983106, 12, 0, 983107, 12, 0, 983108, 12, 0, 983109, 12, 0, 983110, 12, 0, 983111, 12, 0, 983112, 12, 0, 983113, 12, 0, 983114, 12, 0, 983115, 12, 0, 983116, 12, 0, 983117, 12, 0, 983118, 12, 0, 983119, 12, 0, 983120, 12, 0, 983121, 12, 0, 983122, 12, 0, 983123, 12, 0, 983124, 12, 0, 983125, 12, 0, 983126, 12, 0, 983127, 12, 0, 983128, 12, 0, 983129, 12, 0, 983130, 12, 0, 983131, 12, 0, 983132, 12, 0, 983133, 12, 0, 983134, 12, 0, 983135, 12, 0, 983136, 12, 0, 983137, 12, 0, 983138, 12, 0, 983139, 12, 0, 983140, 12, 0, 983141, 12, 0, 983142, 12, 0, 983143, 12, 0, 983144, 12, 0, 983145, 12, 0, 983146, 12, 0, 983147, 12, 0, 983148, 12, 0, 983149, 12, 0, 983150, 12, 0, 983151, 12, 0, 983152, 12, 0, 983153, 12, 0, 983154, 12, 0, 983155, 12, 0, 983156, 12, 0, 983157, 12, 0, 983158, 12, 0, 983159, 12, 0, 983160, 12, 0, 983161, 12, 0 )
 
 [node name="PauseController" parent="Level0" instance=ExtResource( 3 )]
 
diff --git a/src/scenes/levels/Level1.tscn b/src/scenes/levels/Level1.tscn
index 05f7fce9f233fe69df13b2a058c721ec0b54ec36..bd7db4f34e0dbf7b18ea990045d83585c2e3fd44 100644
--- a/src/scenes/levels/Level1.tscn
+++ b/src/scenes/levels/Level1.tscn
@@ -1,4 +1,4 @@
-[gd_scene load_steps=45 format=2]
+[gd_scene load_steps=46 format=2]
 
 [ext_resource path="res://src/actors/player/Player.tscn" type="PackedScene" id=1]
 [ext_resource path="res://src/assets/tilesets/png-transparent-nebula-atmosphere-sky-nebula-space-astronomy-space-miscellaneous-purple-texture.png" type="Texture" id=2]
@@ -14,6 +14,7 @@
 [ext_resource path="res://src/actors/enemy/Skeleton.tscn" type="PackedScene" id=12]
 [ext_resource path="res://src/actors/enemy/enemy_knight.tscn" type="PackedScene" id=13]
 [ext_resource path="res://src/scenes/Saw.tscn" type="PackedScene" id=14]
+[ext_resource path="res://src/assets/sounds/coin1.wav" type="AudioStream" id=15]
 
 [sub_resource type="ConvexPolygonShape2D" id=1]
 points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
@@ -323,6 +324,9 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 13/shapes = [  ]
 13/z_index = 0
 
+[sub_resource type="ConvexPolygonShape2D" id=13]
+points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
+
 [sub_resource type="ConvexPolygonShape2D" id=14]
 points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 
@@ -330,7 +334,7 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 
 [sub_resource type="ConvexPolygonShape2D" id=16]
-points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
+points = PoolVector2Array( 96, 96, 0, 96, 0, 0, 96, 0 )
 
 [sub_resource type="ConvexPolygonShape2D" id=17]
 points = PoolVector2Array( 96, 96, 0, 96, 0, 0, 96, 0 )
@@ -354,7 +358,7 @@ points = PoolVector2Array( 96, 96, 0, 96, 0, 0, 96, 0 )
 points = PoolVector2Array( 96, 96, 0, 96, 0, 0, 96, 0 )
 
 [sub_resource type="ConvexPolygonShape2D" id=24]
-points = PoolVector2Array( 96, 96, 0, 96, 0, 0, 96, 0 )
+points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
 
 [sub_resource type="ConvexPolygonShape2D" id=25]
 points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
@@ -363,12 +367,9 @@ points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
 points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
 
 [sub_resource type="ConvexPolygonShape2D" id=27]
-points = PoolVector2Array( 64, 64, 0, 64, 0, 0, 64, 0 )
-
-[sub_resource type="ConvexPolygonShape2D" id=28]
 points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 
-[sub_resource type="TileSet" id=29]
+[sub_resource type="TileSet" id=28]
 0/name = "main_scifi_tileset.png 0"
 0/texture = ExtResource( 3 )
 0/tex_offset = Vector2( 0, 0 )
@@ -393,14 +394,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 1/navigation_offset = Vector2( 0, 0 )
 1/shape_offset = Vector2( 0, 0 )
 1/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-1/shape = SubResource( 14 )
+1/shape = SubResource( 13 )
 1/shape_one_way = false
 1/shape_one_way_margin = 1.0
 1/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 14 ),
+"shape": SubResource( 13 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 1/z_index = 0
@@ -414,14 +415,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 2/navigation_offset = Vector2( 0, 0 )
 2/shape_offset = Vector2( 0, 0 )
 2/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-2/shape = SubResource( 21 )
+2/shape = SubResource( 20 )
 2/shape_one_way = false
 2/shape_one_way_margin = 1.0
 2/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 21 ),
+"shape": SubResource( 20 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 2/z_index = 0
@@ -435,14 +436,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 3/navigation_offset = Vector2( 0, 0 )
 3/shape_offset = Vector2( 0, 0 )
 3/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-3/shape = SubResource( 22 )
+3/shape = SubResource( 21 )
 3/shape_one_way = false
 3/shape_one_way_margin = 1.0
 3/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 22 ),
+"shape": SubResource( 21 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 3/z_index = 0
@@ -456,14 +457,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 4/navigation_offset = Vector2( 0, 0 )
 4/shape_offset = Vector2( 0, 0 )
 4/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-4/shape = SubResource( 23 )
+4/shape = SubResource( 22 )
 4/shape_one_way = false
 4/shape_one_way_margin = 1.0
 4/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 23 ),
+"shape": SubResource( 22 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 4/z_index = 0
@@ -477,14 +478,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 5/navigation_offset = Vector2( 0, 0 )
 5/shape_offset = Vector2( 0, 0 )
 5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-5/shape = SubResource( 24 )
+5/shape = SubResource( 23 )
 5/shape_one_way = false
 5/shape_one_way_margin = 1.0
 5/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 24 ),
+"shape": SubResource( 23 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 5/z_index = 0
@@ -498,14 +499,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 6/navigation_offset = Vector2( 0, 0 )
 6/shape_offset = Vector2( 0, 0 )
 6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-6/shape = SubResource( 25 )
+6/shape = SubResource( 24 )
 6/shape_one_way = false
 6/shape_one_way_margin = 1.0
 6/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 25 ),
+"shape": SubResource( 24 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 6/z_index = 0
@@ -519,14 +520,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 7/navigation_offset = Vector2( 0, 0 )
 7/shape_offset = Vector2( 0, 0 )
 7/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-7/shape = SubResource( 26 )
+7/shape = SubResource( 25 )
 7/shape_one_way = false
 7/shape_one_way_margin = 1.0
 7/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 26 ),
+"shape": SubResource( 25 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 7/z_index = 0
@@ -540,14 +541,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 8/navigation_offset = Vector2( 0, 0 )
 8/shape_offset = Vector2( 0, 0 )
 8/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-8/shape = SubResource( 27 )
+8/shape = SubResource( 26 )
 8/shape_one_way = false
 8/shape_one_way_margin = 1.0
 8/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 27 ),
+"shape": SubResource( 26 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 8/z_index = 0
@@ -561,14 +562,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 9/navigation_offset = Vector2( 0, 0 )
 9/shape_offset = Vector2( 0, 0 )
 9/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-9/shape = SubResource( 28 )
+9/shape = SubResource( 27 )
 9/shape_one_way = false
 9/shape_one_way_margin = 1.0
 9/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 28 ),
+"shape": SubResource( 27 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 9/z_index = 0
@@ -582,14 +583,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 10/navigation_offset = Vector2( 0, 0 )
 10/shape_offset = Vector2( 0, 0 )
 10/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-10/shape = SubResource( 15 )
+10/shape = SubResource( 14 )
 10/shape_one_way = false
 10/shape_one_way_margin = 1.0
 10/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 15 ),
+"shape": SubResource( 14 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 10/z_index = 0
@@ -603,14 +604,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 11/navigation_offset = Vector2( 0, 0 )
 11/shape_offset = Vector2( 0, 0 )
 11/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-11/shape = SubResource( 16 )
+11/shape = SubResource( 15 )
 11/shape_one_way = false
 11/shape_one_way_margin = 1.0
 11/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 16 ),
+"shape": SubResource( 15 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 11/z_index = 0
@@ -652,14 +653,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 14/navigation_offset = Vector2( 0, 0 )
 14/shape_offset = Vector2( 0, 0 )
 14/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-14/shape = SubResource( 17 )
+14/shape = SubResource( 16 )
 14/shape_one_way = false
 14/shape_one_way_margin = 1.0
 14/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 17 ),
+"shape": SubResource( 16 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 14/z_index = 0
@@ -673,14 +674,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 15/navigation_offset = Vector2( 0, 0 )
 15/shape_offset = Vector2( 0, 0 )
 15/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-15/shape = SubResource( 18 )
+15/shape = SubResource( 17 )
 15/shape_one_way = false
 15/shape_one_way_margin = 1.0
 15/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 18 ),
+"shape": SubResource( 17 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 15/z_index = 0
@@ -694,14 +695,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 16/navigation_offset = Vector2( 0, 0 )
 16/shape_offset = Vector2( 0, 0 )
 16/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-16/shape = SubResource( 19 )
+16/shape = SubResource( 18 )
 16/shape_one_way = false
 16/shape_one_way_margin = 1.0
 16/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 19 ),
+"shape": SubResource( 18 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 16/z_index = 0
@@ -715,14 +716,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 17/navigation_offset = Vector2( 0, 0 )
 17/shape_offset = Vector2( 0, 0 )
 17/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
-17/shape = SubResource( 20 )
+17/shape = SubResource( 19 )
 17/shape_one_way = false
 17/shape_one_way_margin = 1.0
 17/shapes = [ {
 "autotile_coord": Vector2( 0, 0 ),
 "one_way": false,
 "one_way_margin": 1.0,
-"shape": SubResource( 20 ),
+"shape": SubResource( 19 ),
 "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 } ]
 17/z_index = 0
@@ -811,14 +812,14 @@ points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
 23/shapes = [  ]
 23/z_index = 0
 
-[sub_resource type="StyleBoxFlat" id=30]
+[sub_resource type="StyleBoxFlat" id=29]
 bg_color = Color( 0, 0, 0, 0 )
 corner_radius_top_left = 15
 corner_radius_top_right = 15
 corner_radius_bottom_right = 15
 corner_radius_bottom_left = 15
 
-[sub_resource type="DynamicFont" id=31]
+[sub_resource type="DynamicFont" id=30]
 size = 29
 font_data = ExtResource( 11 )
 
@@ -837,20 +838,12 @@ texture = ExtResource( 2 )
 tile_set = SubResource( 12 )
 cell_size = Vector2( 32, 32 )
 format = 1
-tile_data = PoolIntArray( -2293788, 0, 0, -2293774, 0, 0, -2359296, 0, 0, -2359282, 0, 0, -2359268, 0, 0, -2359254, 0, 0, -2359240, 0, 0, -2359226, 0, 0, -2359212, 0, 0, -2359198, 0, 0, -2359184, 0, 0, -2359170, 0, 0, -2359156, 0, 0, -2359142, 0, 0, -2359128, 0, 0, -2359114, 0, 0, -2359100, 0, 0, -2359086, 0, 0, -2359072, 0, 0, -2359058, 0, 0, -2359044, 0, 0, -2359030, 0, 0, -2359016, 0, 0, -2359002, 0, 0, -2358988, 0, 0, -2358974, 0, 0, -2358960, 0, 0, -2358946, 0, 0, -2358932, 0, 0, -2358918, 0, 0, -2358904, 0, 0, -2358890, 0, 0, -2358876, 0, 0, -2358862, 0, 0, -2358848, 0, 0, -2358834, 0, 0, -1900561, 0, 0, -1900547, 0, 0, -1966069, 0, 0, -1966055, 0, 0, -1966041, 0, 0, -1966027, 0, 0, -1966013, 0, 0, -1965999, 0, 0, -1965985, 0, 0, -1965971, 0, 0, -1965957, 0, 0, -1965943, 0, 0, -1965929, 0, 0, -1965915, 0, 0, -1965901, 0, 0, -1965887, 0, 0, -1965873, 0, 0, -1965859, 0, 0, -1965845, 0, 0, -1965831, 0, 0, -1965817, 0, 0, -1965803, 0, 0, -1965789, 0, 0, -1965775, 0, 0, -1965761, 0, 0, -1965747, 0, 0, -1965733, 0, 0, -1965719, 0, 0, -1965705, 0, 0, -1965691, 0, 0, -1965677, 0, 0, -1965663, 0, 0, -1965649, 0, 0, -1965635, 0, 0, -1965621, 0, 0, -1507356, 0, 0, -1507342, 0, 0, -1572864, 0, 0, -1572850, 0, 0, -1572836, 0, 0, -1572822, 0, 0, -1572808, 0, 0, -1572794, 0, 0, -1572780, 0, 0, -1572766, 0, 0, -1572752, 0, 0, -1572738, 0, 0, -1572724, 0, 0, -1572710, 0, 0, -1572696, 0, 0, -1572682, 0, 0, -1572668, 0, 0, -1572654, 0, 0, -1572640, 0, 0, -1572626, 0, 0, -1572612, 0, 0, -1572598, 0, 0, -1572584, 0, 0, -1572570, 0, 0, -1572556, 0, 0, -1572542, 0, 0, -1572528, 0, 0, -1572514, 0, 0, -1572500, 0, 0, -1572486, 0, 0, -1572472, 0, 0, -1572458, 0, 0, -1572444, 0, 0, -1572430, 0, 0, -1572416, 0, 0, -1572402, 0, 0, -1114129, 0, 0, -1114115, 0, 0, -1179637, 0, 0, -1179623, 0, 0, -1179609, 0, 0, -1179595, 0, 0, -1179581, 0, 0, -1179567, 0, 0, -1179553, 0, 0, -1179539, 0, 0, -1179525, 0, 0, -1179511, 0, 0, -1179497, 0, 0, -1179483, 0, 0, -1179469, 0, 0, -1179455, 0, 0, -1179441, 0, 0, -1179427, 0, 0, -1179413, 0, 0, -1179399, 0, 0, -1179385, 0, 0, -1179371, 0, 0, -1179357, 0, 0, -1179343, 0, 0, -1179329, 0, 0, -1179315, 0, 0, -1179301, 0, 0, -1179287, 0, 0, -1179273, 0, 0, -1179259, 0, 0, -1179245, 0, 0, -1179231, 0, 0, -1179217, 0, 0, -1179203, 0, 0, -1179189, 0, 0, -720924, 0, 0, -720910, 0, 0, -786432, 0, 0, -786418, 0, 0, -786404, 0, 0, -786390, 0, 0, -786376, 0, 0, -786362, 0, 0, -786348, 0, 0, -786334, 0, 0, -786320, 0, 0, -786306, 0, 0, -786292, 0, 0, -786278, 0, 0, -786264, 0, 0, -786250, 0, 0, -786236, 0, 0, -786222, 0, 0, -786208, 0, 0, -786194, 0, 0, -786180, 0, 0, -786166, 0, 0, -786152, 0, 0, -786138, 0, 0, -786124, 0, 0, -786110, 0, 0, -786096, 0, 0, -786082, 0, 0, -786068, 0, 0, -786054, 0, 0, -786040, 0, 0, -786026, 0, 0, -786012, 0, 0, -785998, 0, 0, -785984, 0, 0, -785970, 0, 0, -327697, 0, 0, -327683, 0, 0, -393205, 0, 0, -393191, 0, 0, -393177, 0, 0, -393163, 0, 0, -393149, 0, 0, -393135, 0, 0, -393121, 0, 0, -393107, 0, 0, -393093, 0, 0, -393079, 0, 0, -393065, 0, 0, -393051, 0, 0, -393037, 0, 0, -393023, 0, 0, -393009, 0, 0, -392995, 0, 0, -392981, 0, 0, -392967, 0, 0, -392953, 0, 0, -392939, 0, 0, -392925, 0, 0, -392911, 0, 0, -392897, 0, 0, -392883, 0, 0, -392869, 0, 0, -392855, 0, 0, -392841, 0, 0, -392827, 0, 0, -392813, 0, 0, -392799, 0, 0, -392785, 0, 0, -392771, 0, 0, -392757, 0, 0, 65508, 0, 0, 65522, 0, 0, 0, 0, 0, 14, 0, 0, 28, 0, 0, 42, 0, 0, 56, 0, 0, 70, 0, 0, 84, 0, 0, 98, 0, 0, 112, 0, 0, 126, 0, 0, 140, 0, 0, 154, 0, 0, 168, 0, 0, 182, 0, 0, 196, 0, 0, 210, 0, 0, 224, 0, 0, 238, 0, 0, 252, 0, 0, 266, 0, 0, 280, 0, 0, 294, 0, 0, 308, 0, 0, 322, 0, 0, 336, 0, 0, 350, 0, 0, 364, 0, 0, 378, 0, 0, 392, 0, 0, 406, 0, 0, 420, 0, 0, 434, 0, 0, 448, 0, 0, 462, 0, 0, 458735, 0, 0, 458749, 0, 0, 393227, 0, 0, 393241, 0, 0, 393255, 0, 0, 393269, 0, 0, 393283, 0, 0, 393297, 0, 0, 393311, 0, 0, 393325, 0, 0, 393339, 0, 0, 393353, 0, 0, 393367, 0, 0, 393381, 0, 0, 393395, 0, 0, 393409, 0, 0, 393423, 0, 0, 393437, 0, 0, 393451, 0, 0, 393465, 0, 0, 393479, 0, 0, 393493, 0, 0, 393507, 0, 0, 393521, 0, 0, 393535, 0, 0, 393549, 0, 0, 393563, 0, 0, 393577, 0, 0, 393591, 0, 0, 393605, 0, 0, 393619, 0, 0, 393633, 0, 0, 393647, 0, 0, 393661, 0, 0, 393675, 0, 0, 851940, 0, 0, 851954, 0, 0, 786432, 0, 0, 786446, 0, 0, 786460, 0, 0, 786474, 0, 0, 786488, 0, 0, 786502, 0, 0, 786516, 0, 0, 786530, 0, 0, 786544, 0, 0, 786558, 0, 0, 786572, 0, 0, 786586, 0, 0, 786600, 0, 0, 786614, 0, 0, 786628, 0, 0, 786642, 0, 0, 786656, 0, 0, 786670, 0, 0, 786684, 0, 0, 786698, 0, 0, 786712, 0, 0, 786726, 0, 0, 786740, 0, 0, 786754, 0, 0, 786768, 0, 0, 786782, 0, 0, 786796, 0, 0, 786810, 0, 0, 786824, 0, 0, 786838, 0, 0, 786852, 0, 0, 786866, 0, 0, 786880, 0, 0, 786894, 0, 0, 1245167, 0, 0, 1245181, 0, 0, 1179659, 0, 0, 1179673, 0, 0, 1179687, 0, 0, 1179701, 0, 0, 1179715, 0, 0, 1179729, 0, 0, 1179743, 0, 0, 1179757, 0, 0, 1179771, 0, 0, 1179785, 0, 0, 1179799, 0, 0, 1179813, 0, 0, 1179827, 0, 0, 1179841, 0, 0, 1179855, 0, 0, 1179869, 0, 0, 1179883, 0, 0, 1179897, 0, 0, 1179911, 0, 0, 1179925, 0, 0, 1179939, 0, 0, 1179953, 0, 0, 1179967, 0, 0, 1179981, 0, 0, 1179995, 0, 0, 1180009, 0, 0, 1180023, 0, 0, 1180037, 0, 0, 1180051, 0, 0, 1180065, 0, 0, 1180079, 0, 0, 1180093, 0, 0, 1180107, 0, 0, 1638372, 0, 0, 1638386, 0, 0, 1572864, 0, 0, 1572878, 0, 0, 1572892, 0, 0, 1572906, 0, 0, 1572920, 0, 0, 1572934, 0, 0, 1572948, 0, 0, 1572962, 0, 0, 1572976, 0, 0, 1572990, 0, 0, 1573004, 0, 0, 1573018, 0, 0, 1573032, 0, 0, 1573046, 0, 0, 1573060, 0, 0, 1573074, 0, 0, 1573088, 0, 0, 1573102, 0, 0, 1573116, 0, 0, 1573130, 0, 0, 1573144, 0, 0, 1573158, 0, 0, 1573172, 0, 0, 1573186, 0, 0, 1573200, 0, 0, 1573214, 0, 0, 1573228, 0, 0, 1573242, 0, 0, 1573256, 0, 0, 1573270, 0, 0, 1573284, 0, 0, 1573298, 0, 0, 1573312, 0, 0, 1573326, 0, 0, 2031599, 0, 0, 2031613, 0, 0, 1966091, 0, 0, 1966105, 0, 0, 1966119, 0, 0, 1966133, 0, 0, 1966147, 0, 0, 1966161, 0, 0, 1966175, 0, 0, 1966189, 0, 0, 1966203, 0, 0, 1966217, 0, 0, 1966231, 0, 0, 1966245, 0, 0, 1966259, 0, 0, 1966273, 0, 0, 1966287, 0, 0, 1966301, 0, 0, 1966315, 0, 0, 1966329, 0, 0, 1966343, 0, 0, 1966357, 0, 0, 1966371, 0, 0, 1966385, 0, 0, 1966399, 0, 0, 1966413, 0, 0, 1966427, 0, 0, 1966441, 0, 0, 1966455, 0, 0, 1966469, 0, 0, 1966483, 0, 0, 1966497, 0, 0, 1966511, 0, 0, 1966525, 0, 0, 1966539, 0, 0, 2424804, 0, 0, 2424818, 0, 0, 2359296, 0, 0, 2359310, 0, 0, 2359324, 0, 0, 2359338, 0, 0, 2359352, 0, 0, 2359366, 0, 0, 2359380, 0, 0, 2359394, 0, 0, 2359408, 0, 0, 2359422, 0, 0, 2359436, 0, 0, 2359450, 0, 0, 2359464, 0, 0, 2359478, 0, 0, 2359492, 0, 0, 2359506, 0, 0, 2359520, 0, 0, 2359534, 0, 0, 2359548, 0, 0, 2359562, 0, 0, 2359576, 0, 0, 2359590, 0, 0, 2359604, 0, 0, 2359618, 0, 0, 2359632, 0, 0, 2359646, 0, 0, 2359660, 0, 0, 2359674, 0, 0, 2359688, 0, 0, 2359702, 0, 0, 2359716, 0, 0, 2359730, 0, 0, 2359744, 0, 0, 2359758, 0, 0, 2818031, 0, 0, 2818045, 0, 0, 2752523, 0, 0, 2752537, 0, 0, 2752551, 0, 0, 2752565, 0, 0, 2752579, 0, 0, 2752593, 0, 0, 2752607, 0, 0, 2752621, 0, 0, 2752635, 0, 0, 2752649, 0, 0, 2752663, 0, 0, 2752677, 0, 0, 2752691, 0, 0, 2752705, 0, 0, 2752719, 0, 0, 2752733, 0, 0, 2752747, 0, 0, 2752761, 0, 0, 2752775, 0, 0, 2752789, 0, 0, 2752803, 0, 0, 2752817, 0, 0, 2752831, 0, 0, 2752845, 0, 0, 2752859, 0, 0, 2752873, 0, 0, 2752887, 0, 0, 2752901, 0, 0, 2752915, 0, 0, 2752929, 0, 0, 2752943, 0, 0, 2752957, 0, 0, 2752971, 0, 0, 3211236, 0, 0, 3211250, 0, 0, 3145728, 0, 0, 3145742, 0, 0, 3145756, 0, 0, 3145770, 0, 0, 3145784, 0, 0, 3145798, 0, 0, 3145812, 0, 0, 3145826, 0, 0, 3145840, 0, 0, 3145854, 0, 0, 3145868, 0, 0, 3145882, 0, 0, 3145896, 0, 0, 3145910, 0, 0, 3145924, 0, 0, 3145938, 0, 0, 3145952, 0, 0, 3145966, 0, 0, 3145980, 0, 0, 3145994, 0, 0, 3146008, 0, 0, 3146022, 0, 0, 3146036, 0, 0, 3146050, 0, 0, 3146064, 0, 0, 3146078, 0, 0, 3146092, 0, 0, 3146106, 0, 0, 3146120, 0, 0, 3146134, 0, 0, 3146148, 0, 0, 3146162, 0, 0, 3146176, 0, 0, 3146190, 0, 0, 3604463, 0, 0, 3604477, 0, 0, 3538955, 0, 0, 3538969, 0, 0, 3538983, 0, 0, 3538997, 0, 0, 3539011, 0, 0, 3539025, 0, 0, 3539039, 0, 0, 3539053, 0, 0, 3539067, 0, 0, 3539081, 0, 0, 3539095, 0, 0, 3539109, 0, 0, 3539123, 0, 0, 3539137, 0, 0, 3539151, 0, 0, 3539165, 0, 0, 3539179, 0, 0, 3539193, 0, 0, 3539207, 0, 0, 3539221, 0, 0, 3539235, 0, 0, 3539249, 0, 0, 3539263, 0, 0, 3539277, 0, 0, 3539291, 0, 0, 3539305, 0, 0, 3539319, 0, 0, 3539333, 0, 0, 3539347, 0, 0, 3539361, 0, 0, 3539375, 0, 0, 3539389, 0, 0, 3539403, 0, 0, 3997668, 0, 0, 3997682, 0, 0, 3932160, 0, 0, 3932174, 0, 0, 3932188, 0, 0, 3932202, 0, 0, 3932216, 0, 0, 3932230, 0, 0, 3932244, 0, 0, 3932258, 0, 0, 3932272, 0, 0, 3932286, 0, 0, 3932300, 0, 0, 3932314, 0, 0, 3932328, 0, 0, 3932342, 0, 0, 3932356, 0, 0, 3932370, 0, 0, 3932384, 0, 0, 3932398, 0, 0, 3932412, 0, 0, 3932426, 0, 0, 3932440, 0, 0, 3932454, 0, 0, 3932468, 0, 0, 3932482, 0, 0, 3932496, 0, 0, 3932510, 0, 0, 3932524, 0, 0, 3932538, 0, 0, 3932552, 0, 0, 3932566, 0, 0, 3932580, 0, 0, 3932594, 0, 0, 3932608, 0, 0, 3932622, 0, 0 )
-
-[node name="BackGround2" type="TileMap" parent="Level1"]
-tile_set = SubResource( 12 )
-cell_size = Vector2( 32, 32 )
-collision_layer = 0
-collision_mask = 0
-format = 1
-tile_data = PoolIntArray( 393218, 1, 0, 393223, 1, 0, 458754, 1, 0, 458759, 1, 0, 524290, 1, 0, 524295, 1, 0, 589826, 1, 0, 589831, 1, 0, 655362, 1, 0, 655367, 1, 0, 720898, 1, 0, 720903, 1, 0, 786434, 1, 0, 786435, 1, 0, 786436, 1, 0, 786437, 1, 0, 786439, 1, 0 )
+tile_data = PoolIntArray( -720924, 0, 0, -720910, 0, 0, -786432, 0, 0, -786418, 0, 0, -786404, 0, 0, -786390, 0, 0, -786376, 0, 0, -786362, 0, 0, -786348, 0, 0, -786334, 0, 0, -786320, 0, 0, -786306, 0, 0, -786292, 0, 0, -786278, 0, 0, -786264, 0, 0, -786250, 0, 0, -786236, 0, 0, -786222, 0, 0, -786208, 0, 0, -786194, 0, 0, -786180, 0, 0, -786166, 0, 0, -786152, 0, 0, -786138, 0, 0, -786124, 0, 0, -786110, 0, 0, -786096, 0, 0, -786082, 0, 0, -786068, 0, 0, -786054, 0, 0, -786040, 0, 0, -786026, 0, 0, -786012, 0, 0, -785998, 0, 0, -785984, 0, 0, -785970, 0, 0, -327697, 0, 0, -327683, 0, 0, -393205, 0, 0, -393191, 0, 0, -393177, 0, 0, -393163, 0, 0, -393149, 0, 0, -393135, 0, 0, -393121, 0, 0, -393107, 0, 0, -393093, 0, 0, -393079, 0, 0, -393065, 0, 0, -393051, 0, 0, -393037, 0, 0, -393023, 0, 0, -393009, 0, 0, -392995, 0, 0, -392981, 0, 0, -392967, 0, 0, -392953, 0, 0, -392939, 0, 0, -392925, 0, 0, -392911, 0, 0, -392897, 0, 0, -392883, 0, 0, -392869, 0, 0, -392855, 0, 0, -392841, 0, 0, -392827, 0, 0, -392813, 0, 0, -392799, 0, 0, -392785, 0, 0, -392771, 0, 0, -392757, 0, 0, 65508, 0, 0, 65522, 0, 0, 0, 0, 0, 14, 0, 0, 28, 0, 0, 42, 0, 0, 56, 0, 0, 70, 0, 0, 84, 0, 0, 98, 0, 0, 112, 0, 0, 126, 0, 0, 140, 0, 0, 154, 0, 0, 168, 0, 0, 182, 0, 0, 196, 0, 0, 210, 0, 0, 224, 0, 0, 238, 0, 0, 252, 0, 0, 266, 0, 0, 280, 0, 0, 294, 0, 0, 308, 0, 0, 322, 0, 0, 336, 0, 0, 350, 0, 0, 364, 0, 0, 378, 0, 0, 392, 0, 0, 406, 0, 0, 420, 0, 0, 434, 0, 0, 448, 0, 0, 462, 0, 0, 458735, 0, 0, 458749, 0, 0, 393227, 0, 0, 393241, 0, 0, 393255, 0, 0, 393269, 0, 0, 393283, 0, 0, 393297, 0, 0, 393311, 0, 0, 393325, 0, 0, 393339, 0, 0, 393353, 0, 0, 393367, 0, 0, 393381, 0, 0, 393395, 0, 0, 393409, 0, 0, 393423, 0, 0, 393437, 0, 0, 393451, 0, 0, 393465, 0, 0, 393479, 0, 0, 393493, 0, 0, 393507, 0, 0, 393521, 0, 0, 393535, 0, 0, 393549, 0, 0, 393563, 0, 0, 393577, 0, 0, 393591, 0, 0, 393605, 0, 0, 393619, 0, 0, 393633, 0, 0, 393647, 0, 0, 393661, 0, 0, 393675, 0, 0, 851940, 0, 0, 851954, 0, 0, 786432, 0, 0, 786446, 0, 0, 786460, 0, 0, 786474, 0, 0, 786488, 0, 0, 786502, 0, 0, 786516, 0, 0, 786530, 0, 0, 786544, 0, 0, 786558, 0, 0, 786572, 0, 0, 786586, 0, 0, 786600, 0, 0, 786614, 0, 0, 786628, 0, 0, 786642, 0, 0, 786656, 0, 0, 786670, 0, 0, 786684, 0, 0, 786698, 0, 0, 786712, 0, 0, 786726, 0, 0, 786740, 0, 0, 786754, 0, 0, 786768, 0, 0, 786782, 0, 0, 786796, 0, 0, 786810, 0, 0, 786824, 0, 0, 786838, 0, 0, 786852, 0, 0, 786866, 0, 0, 786880, 0, 0, 786894, 0, 0, 1245167, 0, 0, 1245181, 0, 0, 1179659, 0, 0, 1179673, 0, 0, 1179687, 0, 0, 1179701, 0, 0, 1179715, 0, 0, 1179729, 0, 0, 1179743, 0, 0, 1179757, 0, 0, 1179771, 0, 0, 1179785, 0, 0, 1179799, 0, 0, 1179813, 0, 0, 1179827, 0, 0, 1179841, 0, 0, 1179855, 0, 0, 1179869, 0, 0, 1179883, 0, 0, 1179897, 0, 0, 1179911, 0, 0, 1179925, 0, 0, 1179939, 0, 0, 1179953, 0, 0, 1179967, 0, 0, 1179981, 0, 0, 1179995, 0, 0, 1180009, 0, 0, 1180023, 0, 0, 1180037, 0, 0, 1180051, 0, 0, 1180065, 0, 0, 1180079, 0, 0, 1180093, 0, 0, 1180107, 0, 0, 1638372, 0, 0, 1638386, 0, 0, 1572864, 0, 0, 1572878, 0, 0, 1572892, 0, 0, 1572906, 0, 0, 1572920, 0, 0, 1572934, 0, 0, 1572948, 0, 0, 1572962, 0, 0, 1572976, 0, 0, 1572990, 0, 0, 1573004, 0, 0, 1573018, 0, 0, 1573032, 0, 0, 1573046, 0, 0, 1573060, 0, 0, 1573074, 0, 0, 1573088, 0, 0, 1573102, 0, 0, 1573116, 0, 0, 1573130, 0, 0, 1573144, 0, 0, 1573158, 0, 0, 1573172, 0, 0, 1573186, 0, 0, 1573200, 0, 0, 1573214, 0, 0, 1573228, 0, 0, 1573242, 0, 0, 1573256, 0, 0, 1573270, 0, 0, 1573284, 0, 0, 1573298, 0, 0, 1573312, 0, 0, 1573326, 0, 0 )
 
 [node name="Objects" type="Node2D" parent="Level1"]
 
 [node name="shards" parent="Level1/Objects" instance=ExtResource( 5 )]
-position = Vector2( 11936, -96 )
+position = Vector2( 10784, 193 )
 
 [node name="Saw" parent="Level1/Objects" instance=ExtResource( 14 )]
 position = Vector2( 10481, 142 )
@@ -917,21 +910,6 @@ position = Vector2( 7648, 13 )
 [node name="coin28" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
 position = Vector2( 7712, 12 )
 
-[node name="coin93" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 7793, 43 )
-
-[node name="coin94" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 7861, 121 )
-rotation = -0.0492376
-
-[node name="coin95" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 7901, 215 )
-rotation = -0.0492376
-
-[node name="coin96" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 7944, 318 )
-rotation = -0.0492376
-
 [node name="coin29" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
 position = Vector2( 9092, 330 )
 
@@ -954,10 +932,10 @@ position = Vector2( 8885, 105 )
 position = Vector2( 8831, 93 )
 
 [node name="coin12" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 5758, 373 )
+position = Vector2( 5458, 416 )
 
 [node name="coin13" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 5793, 373 )
+position = Vector2( 5493, 416 )
 
 [node name="coin36" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
 position = Vector2( 9730, -305 )
@@ -1055,6 +1033,9 @@ position = Vector2( 10080, -146 )
 [node name="coin67" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
 position = Vector2( 10082, -104 )
 
+[node name="coin68" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
+position = Vector2( 9942, 130 )
+
 [node name="coin69" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
 position = Vector2( 9759, 332 )
 
@@ -1079,72 +1060,6 @@ position = Vector2( 1982, 183 )
 [node name="coin2" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
 position = Vector2( 972.106, 298.929 )
 
-[node name="coin14" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 12109, 431 )
-
-[node name="coin15" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 12066, 431 )
-
-[node name="coin73" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 12017, 430 )
-
-[node name="coin74" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11969, 431 )
-
-[node name="coin75" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11905, 430 )
-
-[node name="coin76" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11857, 431 )
-
-[node name="coin77" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11808, 429 )
-
-[node name="coin78" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11764, 430 )
-
-[node name="coin79" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11786, 389 )
-
-[node name="coin80" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11835, 390 )
-
-[node name="coin81" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11884, 391 )
-
-[node name="coin82" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11994, 391 )
-
-[node name="coin83" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 12042, 390 )
-
-[node name="coin84" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 12089, 389 )
-
-[node name="coin85" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 12064, 347 )
-
-[node name="coin86" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 12018, 349 )
-
-[node name="coin87" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11861, 352 )
-
-[node name="coin88" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11811, 352 )
-
-[node name="coin89" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11906, 338 )
-
-[node name="coin90" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11965, 337 )
-
-[node name="coin91" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 11764, 353 )
-
-[node name="coin92" parent="Level1/Objects/Coins" instance=ExtResource( 7 )]
-position = Vector2( 12108, 348 )
-
 [node name="Acid" type="Node" parent="Level1/Objects"]
 
 [node name="Acid" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
@@ -1210,63 +1125,6 @@ position = Vector2( 10976, 352 )
 [node name="Acid21" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
 position = Vector2( 10912, 352 )
 
-[node name="Acid22" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 6560, 460 )
-
-[node name="Acid23" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 6624, 460 )
-
-[node name="Acid24" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 6688, 460 )
-
-[node name="Acid25" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 6752, 460 )
-
-[node name="Acid26" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 6816, 460 )
-
-[node name="Acid27" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 6880, 460 )
-
-[node name="Acid28" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 6944, 460 )
-
-[node name="Acid29" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7008, 460 )
-
-[node name="Acid30" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7072, 460 )
-
-[node name="Acid31" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7136, 460 )
-
-[node name="Acid32" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7200, 460 )
-
-[node name="Acid33" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7264, 460 )
-
-[node name="Acid34" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7328, 460 )
-
-[node name="Acid35" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7392, 460 )
-
-[node name="Acid36" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7456, 460 )
-
-[node name="Acid37" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7520, 460 )
-
-[node name="Acid38" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7584, 460 )
-
-[node name="Acid39" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7648, 460 )
-
-[node name="Acid40" parent="Level1/Objects/Acid" instance=ExtResource( 6 )]
-position = Vector2( 7712, 460 )
-
 [node name="Door0" parent="Level1/Objects" instance=ExtResource( 4 )]
 position = Vector2( 385, 448 )
 level_number = 1
@@ -1277,16 +1135,6 @@ position = Vector2( 11935, 160 )
 level_number = 2
 door_name = "Door0"
 
-[node name="DoorMys" parent="Level1/Objects" instance=ExtResource( 4 )]
-position = Vector2( 11456, -192 )
-level_number = 1
-door_name = "DoorMys2"
-
-[node name="DoorMys2" parent="Level1/Objects" instance=ExtResource( 4 )]
-position = Vector2( 11938, 448 )
-level_number = 1
-door_name = "DoorMys"
-
 [node name="Enemies" type="Node2D" parent="Level1"]
 
 [node name="Skelletons" type="Node" parent="Level1/Enemies"]
@@ -1336,34 +1184,26 @@ position = Vector2( 10646, 357 )
 [node name="Node2D7" parent="Level1/Enemies/Skelletons" instance=ExtResource( 12 )]
 position = Vector2( 10734, -218 )
 
-[node name="Node2D14" parent="Level1/Enemies/Skelletons" instance=ExtResource( 12 )]
-position = Vector2( 10709, 709 )
-
-[node name="Node2D15" parent="Level1/Enemies/Skelletons" instance=ExtResource( 12 )]
-position = Vector2( 11235, 710 )
-
-[node name="Node2D17" parent="Level1/Enemies/Skelletons" instance=ExtResource( 12 )]
-position = Vector2( 12818, 581 )
-
-[node name="Node2D19" parent="Level1/Enemies/Skelletons" instance=ExtResource( 12 )]
-position = Vector2( 12548, 389 )
-
 [node name="Knight" type="Node" parent="Level1/Enemies"]
 
 [node name="Knight" parent="Level1/Enemies/Knight" instance=ExtResource( 13 )]
 position = Vector2( 5780, 417 )
 
+[node name="Knight2" parent="Level1/Enemies/Knight" instance=ExtResource( 13 )]
+position = Vector2( 10494, 354 )
+
 [node name="Knight3" parent="Level1/Enemies/Knight" instance=ExtResource( 13 )]
-position = Vector2( 10776, 258 )
+position = Vector2( 11167, 292 )
 
 [node name="Player" parent="Level1" instance=ExtResource( 1 )]
-position = Vector2( 486, 445 )
+position = Vector2( 455, 448 )
+collision_mask = 16
 
 [node name="Level" type="TileMap" parent="Level1"]
-tile_set = SubResource( 29 )
+tile_set = SubResource( 28 )
 cell_size = Vector2( 32, 32 )
 format = 1
-tile_data = PoolIntArray( -786433, 12, 0, -851968, 12, 0, -851967, 12, 0, -851966, 12, 0, -851965, 12, 0, -851964, 12, 0, -851963, 12, 0, -851962, 12, 0, -851961, 12, 0, -851960, 12, 0, -851959, 12, 0, -851958, 12, 0, -851957, 12, 0, -851956, 12, 0, -851955, 12, 0, -851954, 12, 0, -851953, 12, 0, -851952, 12, 0, -851951, 12, 0, -851950, 12, 0, -851949, 12, 0, -851948, 12, 0, -851947, 12, 0, -851946, 12, 0, -851945, 12, 0, -851944, 12, 0, -851943, 12, 0, -851942, 12, 0, -851941, 12, 0, -851940, 12, 0, -851939, 12, 0, -851938, 12, 0, -851937, 12, 0, -851936, 12, 0, -851935, 12, 0, -851934, 12, 0, -851933, 12, 0, -851932, 12, 0, -851931, 12, 0, -851930, 12, 0, -851929, 12, 0, -851928, 12, 0, -851927, 12, 0, -851926, 12, 0, -851925, 12, 0, -851924, 12, 0, -851923, 12, 0, -851922, 12, 0, -851921, 12, 0, -851920, 12, 0, -851919, 12, 0, -851918, 12, 0, -851917, 12, 0, -851916, 12, 0, -851915, 12, 0, -851914, 12, 0, -851913, 12, 0, -851912, 12, 0, -851911, 12, 0, -851910, 12, 0, -851909, 12, 0, -851908, 12, 0, -851907, 12, 0, -851906, 12, 0, -851905, 12, 0, -851904, 12, 0, -851903, 12, 0, -851902, 12, 0, -851901, 12, 0, -851900, 12, 0, -851899, 12, 0, -851898, 12, 0, -851897, 12, 0, -851896, 12, 0, -851895, 12, 0, -851894, 12, 0, -851893, 12, 0, -851892, 12, 0, -851891, 12, 0, -851890, 12, 0, -851889, 12, 0, -851888, 12, 0, -851887, 12, 0, -851886, 12, 0, -851885, 12, 0, -851884, 12, 0, -851883, 12, 0, -851882, 12, 0, -851881, 12, 0, -851880, 12, 0, -851879, 12, 0, -851878, 12, 0, -851877, 12, 0, -851876, 12, 0, -851875, 12, 0, -851874, 12, 0, -851873, 12, 0, -851872, 12, 0, -851871, 12, 0, -851870, 12, 0, -851869, 12, 0, -851868, 12, 0, -851867, 12, 0, -851866, 12, 0, -851865, 12, 0, -851864, 12, 0, -851863, 12, 0, -851862, 12, 0, -851861, 12, 0, -851860, 12, 0, -851859, 12, 0, -851858, 12, 0, -851857, 12, 0, -851856, 12, 0, -851855, 12, 0, -851854, 12, 0, -851853, 12, 0, -851852, 12, 0, -851851, 12, 0, -851850, 12, 0, -851849, 12, 0, -851848, 12, 0, -851847, 12, 0, -851846, 12, 0, -851845, 12, 0, -851844, 12, 0, -851843, 12, 0, -851842, 12, 0, -851841, 12, 0, -851840, 12, 0, -851839, 12, 0, -851838, 12, 0, -851837, 12, 0, -851836, 12, 0, -851835, 12, 0, -851834, 12, 0, -851833, 12, 0, -851832, 12, 0, -851831, 12, 0, -851830, 12, 0, -851829, 12, 0, -851828, 12, 0, -851827, 12, 0, -851826, 12, 0, -851825, 12, 0, -851824, 12, 0, -851823, 12, 0, -851822, 12, 0, -851821, 12, 0, -851820, 12, 0, -851819, 12, 0, -851818, 12, 0, -851817, 12, 0, -851816, 12, 0, -851815, 12, 0, -851814, 12, 0, -851813, 12, 0, -851812, 12, 0, -851811, 12, 0, -851810, 12, 0, -851809, 12, 0, -851808, 12, 0, -851807, 12, 0, -851806, 12, 0, -851805, 12, 0, -851804, 12, 0, -851803, 12, 0, -851802, 12, 0, -851801, 12, 0, -851800, 12, 0, -851799, 12, 0, -851798, 12, 0, -851797, 12, 0, -851796, 12, 0, -851795, 12, 0, -851794, 12, 0, -851793, 12, 0, -851792, 12, 0, -851791, 12, 0, -851790, 12, 0, -851789, 12, 0, -851788, 12, 0, -851787, 12, 0, -851786, 12, 0, -851785, 12, 0, -851784, 12, 0, -851783, 12, 0, -851782, 12, 0, -851781, 12, 0, -851780, 12, 0, -851779, 12, 0, -851778, 12, 0, -851777, 12, 0, -851776, 12, 0, -851775, 12, 0, -851774, 12, 0, -851773, 12, 0, -851772, 12, 0, -851771, 12, 0, -851770, 12, 0, -851769, 12, 0, -851768, 12, 0, -851767, 12, 0, -851766, 12, 0, -851765, 12, 0, -851764, 12, 0, -851763, 12, 0, -851762, 12, 0, -851761, 12, 0, -851760, 12, 0, -851759, 12, 0, -851758, 12, 0, -851757, 12, 0, -851756, 12, 0, -851755, 12, 0, -851754, 12, 0, -851753, 12, 0, -851752, 12, 0, -851751, 12, 0, -851750, 12, 0, -851749, 12, 0, -851748, 12, 0, -851747, 12, 0, -851746, 12, 0, -851745, 12, 0, -851744, 12, 0, -851743, 12, 0, -851742, 12, 0, -851741, 12, 0, -851740, 12, 0, -851739, 12, 0, -851738, 12, 0, -851737, 12, 0, -851736, 12, 0, -851735, 12, 0, -851734, 12, 0, -851733, 12, 0, -851732, 12, 0, -851731, 12, 0, -851730, 12, 0, -851729, 12, 0, -851728, 12, 0, -851727, 12, 0, -851726, 12, 0, -851725, 12, 0, -851724, 12, 0, -851723, 12, 0, -851722, 12, 0, -851721, 12, 0, -851720, 12, 0, -851719, 12, 0, -851718, 12, 0, -851717, 12, 0, -851716, 12, 0, -851715, 12, 0, -851714, 12, 0, -851713, 12, 0, -851712, 12, 0, -851711, 12, 0, -851710, 12, 0, -851709, 12, 0, -851708, 12, 0, -851707, 12, 0, -851706, 12, 0, -851705, 12, 0, -851704, 12, 0, -851703, 12, 0, -851702, 12, 0, -851701, 12, 0, -851700, 12, 0, -851699, 12, 0, -851698, 12, 0, -851697, 12, 0, -851696, 12, 0, -851695, 12, 0, -851694, 12, 0, -851693, 12, 0, -851692, 12, 0, -851691, 12, 0, -851690, 12, 0, -851689, 12, 0, -851688, 12, 0, -851687, 12, 0, -851686, 12, 0, -851685, 12, 0, -851684, 12, 0, -851683, 12, 0, -851682, 12, 0, -851681, 12, 0, -851680, 12, 0, -851679, 12, 0, -851678, 12, 0, -851677, 12, 0, -851676, 12, 0, -851675, 12, 0, -851674, 12, 0, -851673, 12, 0, -851672, 12, 0, -851671, 12, 0, -851670, 12, 0, -851669, 12, 0, -851668, 12, 0, -851667, 12, 0, -851666, 12, 0, -851665, 12, 0, -851664, 12, 0, -851663, 12, 0, -851662, 12, 0, -851661, 12, 0, -851660, 12, 0, -851659, 12, 0, -851658, 12, 0, -851657, 12, 0, -851656, 12, 0, -851655, 12, 0, -851654, 12, 0, -851653, 12, 0, -851652, 12, 0, -851651, 12, 0, -851650, 12, 0, -851649, 12, 0, -851648, 12, 0, -851647, 12, 0, -851646, 12, 0, -851645, 12, 0, -851644, 12, 0, -851643, 12, 0, -851642, 12, 0, -851641, 12, 0, -851640, 12, 0, -851639, 12, 0, -851638, 12, 0, -851637, 12, 0, -851636, 12, 0, -851635, 12, 0, -851634, 12, 0, -851633, 12, 0, -851632, 12, 0, -851631, 12, 0, -851630, 12, 0, -851629, 12, 0, -851628, 12, 0, -851627, 12, 0, -851626, 12, 0, -851625, 12, 0, -851624, 12, 0, -851623, 12, 0, -851622, 12, 0, -851621, 12, 0, -851620, 12, 0, -851619, 12, 0, -851618, 12, 0, -851617, 12, 0, -851616, 12, 0, -851615, 12, 0, -851614, 12, 0, -851613, 12, 0, -851612, 12, 0, -851611, 12, 0, -851610, 12, 0, -851609, 12, 0, -851608, 12, 0, -851607, 12, 0, -851606, 12, 0, -851605, 12, 0, -851604, 12, 0, -851603, 12, 0, -851602, 12, 0, -851601, 12, 0, -851600, 12, 0, -851599, 12, 0, -851598, 12, 0, -851597, 12, 0, -851596, 12, 0, -851595, 12, 0, -851594, 12, 0, -851593, 12, 0, -851592, 12, 0, -851591, 12, 0, -851590, 12, 0, -851589, 12, 0, -851588, 12, 0, -851587, 12, 0, -851586, 12, 0, -851585, 12, 0, -851584, 12, 0, -851583, 12, 0, -851582, 12, 0, -720897, 12, 0, -786432, 1, 0, -786431, 1, 0, -786430, 1, 0, -786429, 1, 0, -786428, 1, 0, -786427, 1, 0, -786426, 1, 0, -786425, 1, 0, -786424, 1, 0, -786423, 1, 0, -786422, 1, 0, -786421, 1, 0, -786420, 1, 0, -786419, 1, 0, -786418, 1, 0, -786417, 1, 0, -786416, 1, 0, -786415, 1, 0, -786414, 1, 0, -786413, 1, 0, -786412, 1, 0, -786411, 1, 0, -786410, 1, 0, -786409, 1, 0, -786408, 1, 0, -786407, 1, 0, -786406, 1, 0, -786405, 1, 0, -786404, 1, 0, -786403, 1, 0, -786402, 1, 0, -786401, 1, 0, -786400, 1, 0, -786399, 1, 0, -786398, 1, 0, -786397, 1, 0, -786396, 1, 0, -786395, 1, 0, -786394, 1, 0, -786393, 1, 0, -786392, 1, 0, -786391, 1, 0, -786390, 1, 0, -786389, 1, 0, -786388, 1, 0, -786387, 1, 0, -786386, 1, 0, -786385, 1, 0, -786384, 1, 0, -786383, 1, 0, -786382, 1, 0, -786381, 1, 0, -786380, 1, 0, -786379, 1, 0, -786378, 1, 0, -786377, 1, 0, -786376, 1, 0, -786375, 1, 0, -786374, 1, 0, -786373, 1, 0, -786372, 1, 0, -786371, 1, 0, -786370, 1, 0, -786369, 1, 0, -786368, 1, 0, -786367, 1, 0, -786366, 1, 0, -786365, 1, 0, -786364, 1, 0, -786363, 1, 0, -786362, 1, 0, -786361, 1, 0, -786360, 1, 0, -786359, 1, 0, -786358, 1, 0, -786357, 1, 0, -786356, 1, 0, -786355, 1, 0, -786354, 1, 0, -786353, 1, 0, -786352, 1, 0, -786351, 1, 0, -786350, 1, 0, -786349, 1, 0, -786348, 1, 0, -786347, 1, 0, -786346, 1, 0, -786345, 1, 0, -786344, 1, 0, -786343, 1, 0, -786342, 1, 0, -786341, 1, 0, -786340, 1, 0, -786339, 1, 0, -786338, 1, 0, -786337, 1, 0, -786336, 1, 0, -786335, 1, 0, -786334, 1, 0, -786333, 1, 0, -786332, 1, 0, -786331, 1, 0, -786330, 1, 0, -786329, 1, 0, -786328, 1, 0, -786327, 1, 0, -786326, 1, 0, -786325, 1, 0, -786324, 1, 0, -786323, 1, 0, -786322, 1, 0, -786321, 1, 0, -786320, 1, 0, -786319, 1, 0, -786318, 1, 0, -786317, 1, 0, -786316, 1, 0, -786315, 1, 0, -786314, 1, 0, -786313, 1, 0, -786312, 1, 0, -786311, 1, 0, -786310, 1, 0, -786309, 1, 0, -786308, 1, 0, -786307, 1, 0, -786306, 1, 0, -786305, 1, 0, -786304, 1, 0, -786303, 1, 0, -786302, 1, 0, -786301, 1, 0, -786300, 1, 0, -786299, 1, 0, -786298, 1, 0, -786297, 1, 0, -786296, 1, 0, -786295, 1, 0, -786294, 1, 0, -786293, 1, 0, -786292, 1, 0, -786291, 1, 0, -786290, 1, 0, -786289, 1, 0, -786288, 1, 0, -786287, 1, 0, -786286, 1, 0, -786285, 1, 0, -786284, 1, 0, -786283, 1, 0, -786282, 1, 0, -786281, 1, 0, -786280, 1, 0, -786279, 1, 0, -786278, 1, 0, -786277, 1, 0, -786276, 1, 0, -786275, 1, 0, -786274, 1, 0, -786273, 1, 0, -786272, 1, 0, -786271, 1, 0, -786270, 1, 0, -786269, 1, 0, -786268, 1, 0, -786267, 1, 0, -786266, 1, 0, -786265, 1, 0, -786264, 1, 0, -786263, 1, 0, -786262, 1, 0, -786261, 1, 0, -786260, 1, 0, -786259, 1, 0, -786258, 1, 0, -786257, 1, 0, -786256, 1, 0, -786255, 1, 0, -786254, 1, 0, -786253, 1, 0, -786252, 1, 0, -786251, 1, 0, -786250, 1, 0, -786249, 1, 0, -786248, 1, 0, -786247, 1, 0, -786246, 1, 0, -786245, 1, 0, -786244, 1, 0, -786243, 1, 0, -786242, 1, 0, -786241, 1, 0, -786240, 1, 0, -786239, 1, 0, -786238, 1, 0, -786237, 1, 0, -786236, 1, 0, -786235, 1, 0, -786234, 1, 0, -786233, 1, 0, -786232, 1, 0, -786231, 1, 0, -786230, 1, 0, -786229, 1, 0, -786228, 1, 0, -786227, 1, 0, -786226, 1, 0, -786225, 1, 0, -786224, 1, 0, -786223, 1, 0, -786222, 1, 0, -786221, 1, 0, -786220, 1, 0, -786219, 1, 0, -786218, 1, 0, -786217, 1, 0, -786216, 1, 0, -786215, 1, 0, -786214, 1, 0, -786213, 1, 0, -786212, 1, 0, -786211, 1, 0, -786210, 1, 0, -786209, 1, 0, -786208, 1, 0, -786207, 1, 0, -786206, 1, 0, -786205, 1, 0, -786204, 1, 0, -786203, 1, 0, -786202, 1, 0, -786201, 1, 0, -786200, 1, 0, -786199, 1, 0, -786198, 1, 0, -786197, 1, 0, -786196, 1, 0, -786195, 1, 0, -786194, 1, 0, -786193, 1, 0, -786192, 1, 0, -786191, 1, 0, -786190, 1, 0, -786189, 1, 0, -786188, 1, 0, -786187, 1, 0, -786186, 1, 0, -786185, 1, 0, -786184, 1, 0, -786183, 1, 0, -786182, 1, 0, -786181, 1, 0, -786180, 1, 0, -786179, 1, 0, -786178, 1, 0, -786177, 1, 0, -786176, 1, 0, -786175, 1, 0, -786174, 1, 0, -786173, 1, 0, -786172, 1, 0, -786171, 1, 0, -786170, 1, 0, -786169, 1, 0, -786168, 1, 0, -786167, 1, 0, -786166, 1, 0, -786165, 1, 0, -786164, 1, 0, -786163, 1, 0, -786162, 1, 0, -786161, 1, 0, -786160, 1, 0, -786159, 1, 0, -786158, 1, 0, -786157, 1, 0, -786156, 1, 0, -786155, 1, 0, -786154, 1, 0, -786153, 1, 0, -786152, 1, 0, -786151, 1, 0, -786150, 1, 0, -786149, 1, 0, -786148, 1, 0, -786147, 1, 0, -786146, 1, 0, -786145, 1, 0, -786144, 1, 0, -786143, 1, 0, -786142, 1, 0, -786141, 1, 0, -786140, 1, 0, -786139, 1, 0, -786138, 1, 0, -786137, 1, 0, -786136, 1, 0, -786135, 1, 0, -786134, 1, 0, -786133, 1, 0, -786132, 1, 0, -786131, 1, 0, -786130, 1, 0, -786129, 1, 0, -786128, 1, 0, -786127, 1, 0, -786126, 1, 0, -786125, 1, 0, -786124, 1, 0, -786123, 1, 0, -786122, 1, 0, -786121, 1, 0, -786120, 1, 0, -786119, 1, 0, -786118, 1, 0, -786117, 1, 0, -786116, 1, 0, -786115, 1, 0, -786114, 1, 0, -786113, 1, 0, -786112, 1, 0, -786111, 1, 0, -786110, 1, 0, -786109, 1, 0, -786108, 1, 0, -786107, 1, 0, -786106, 1, 0, -786105, 1, 0, -786104, 1, 0, -786103, 1, 0, -786102, 1, 0, -786101, 1, 0, -786100, 1, 0, -786099, 1, 0, -786098, 1, 0, -786097, 1, 0, -786096, 1, 0, -786095, 1, 0, -786094, 1, 0, -786093, 1, 0, -786092, 1, 0, -786091, 1, 0, -786090, 1, 0, -786089, 1, 0, -786088, 1, 0, -786087, 1, 0, -786086, 1, 0, -786085, 1, 0, -786084, 1, 0, -786083, 1, 0, -786082, 1, 0, -786081, 1, 0, -786080, 1, 0, -786079, 1, 0, -786078, 1, 0, -786077, 1, 0, -786076, 1, 0, -786075, 1, 0, -786074, 1, 0, -786073, 1, 0, -786072, 1, 0, -786071, 1, 0, -786070, 1, 0, -786069, 1, 0, -786068, 1, 0, -786067, 1, 0, -786066, 1, 0, -786065, 1, 0, -786064, 1, 0, -786063, 1, 0, -786062, 1, 0, -786061, 1, 0, -786060, 1, 0, -786059, 1, 0, -786058, 1, 0, -786057, 1, 0, -786056, 1, 0, -786055, 1, 0, -786054, 1, 0, -786053, 1, 0, -786052, 1, 0, -786051, 1, 0, -786050, 1, 0, -786049, 1, 0, -786048, 1, 0, -786047, 1, 0, -786046, 12, 0, -655361, 12, 0, -720896, 1, 0, -720536, 1, 0, -720511, 1, 0, -720510, 12, 0, -589825, 12, 0, -655360, 1, 0, -655000, 1, 0, -654975, 1, 0, -654974, 12, 0, -524289, 12, 0, -589824, 1, 0, -589521, 1610612746, 0, -589520, 1610612746, 0, -589519, 1610612746, 0, -589518, 1610612746, 0, -589517, 1610612746, 0, -589516, 1610612746, 0, -589515, 1610612746, 0, -589514, 1610612746, 0, -589513, 1610612746, 0, -589512, 1610612746, 0, -589511, 1610612746, 0, -589510, 1610612746, 0, -589509, 1610612746, 0, -589508, 1610612746, 0, -589507, 1610612746, 0, -589506, 1610612746, 0, -589505, 1610612746, 0, -589504, 1610612746, 0, -589503, 1610612746, 0, -589502, 1610612746, 0, -589501, 1610612746, 0, -589500, 1610612746, 0, -589499, 1610612746, 0, -589498, 1610612746, 0, -589497, 1610612746, 0, -589496, 1610612746, 0, -589495, 1610612746, 0, -589494, 1610612746, 0, -589493, 1610612746, 0, -589492, 1610612746, 0, -589491, 1610612746, 0, -589490, 1610612746, 0, -589489, 1610612746, 0, -589488, 1610612746, 0, -589487, 1610612746, 0, -589486, 1610612746, 0, -589485, 1610612746, 0, -589484, 1610612746, 0, -589483, 1610612746, 0, -589482, 1610612746, 0, -589481, 1610612746, 0, -589480, 1610612746, 0, -589479, 1610612746, 0, -589478, 1610612746, 0, -589477, 1610612746, 0, -589476, 1610612746, 0, -589475, 1610612746, 0, -589474, 1610612746, 0, -589473, 1610612746, 0, -589472, 1610612746, 0, -589471, 1610612746, 0, -589470, 1610612746, 0, -589469, 1610612746, 0, -589464, 1, 0, -589439, 1, 0, -589438, 12, 0, -458753, 12, 0, -524288, 1, 0, -523985, 1610612746, 0, -523933, 1610612746, 0, -523928, 1, 0, -523903, 1, 0, -523902, 12, 0, -393217, 12, 0, -458752, 1, 0, -458449, 1610612746, 0, -458397, 1610612746, 0, -458392, 1, 0, -458367, 1, 0, -458366, 12, 0, -327681, 12, 0, -393216, 1, 0, -392913, 1610612746, 0, -392909, 1610612746, 0, -392898, 1610612746, 0, -392897, 1610612746, 0, -392896, 1610612746, 0, -392895, 1610612746, 0, -392894, 1610612746, 0, -392893, 1610612746, 0, -392892, 1610612746, 0, -392891, 1610612746, 0, -392890, 1610612746, 0, -392889, 1610612746, 0, -392888, 1610612746, 0, -392887, 1610612746, 0, -392886, 1610612746, 0, -392885, 1610612746, 0, -392884, 1610612746, 0, -392883, 1610612746, 0, -392882, 1610612746, 0, -392881, 1610612746, 0, -392880, 1610612746, 0, -392879, 1610612746, 0, -392878, 1610612746, 0, -392877, 1610612746, 0, -392876, 1610612746, 0, -392875, 1610612746, 0, -392874, 1610612746, 0, -392873, 1610612746, 0, -392872, 1610612746, 0, -392871, 1610612746, 0, -392870, 1610612746, 0, -392869, 1610612746, 0, -392868, 1610612746, 0, -392867, 1610612746, 0, -392866, 1610612746, 0, -392865, 10, 0, -392861, 1610612746, 0, -392860, 10, 0, -392859, 10, 0, -392858, 10, 0, -392857, 10, 0, -392856, 1, 0, -392831, 1, 0, -392830, 12, 0, -262145, 12, 0, -327680, 1, 0, -327377, 1610612746, 0, -327374, 1610612746, 0, -327373, 1610612746, 0, -327362, 1610612746, 0, -327329, 10, 0, -327328, 10, 0, -327325, 1610612746, 0, -327321, 10, 0, -327320, 1, 0, -327295, 1, 0, -327294, 12, 0, -196609, 12, 0, -262144, 1, 0, -261841, 1610612746, 0, -261837, 1610612746, 0, -261836, 1610612746, 0, -261835, 1610612746, 0, -261826, 1610612746, 0, -261789, 1610612746, 0, -261784, 1, 0, -261759, 1, 0, -261758, 12, 0, -131073, 12, 0, -196608, 1, 0, -196305, 10, 0, -196299, 1610612746, 0, -196296, 10, 0, -196290, 1610612746, 0, -196253, 1610612746, 0, -196248, 1, 0, -196223, 1, 0, -196222, 12, 0, -65537, 12, 0, -131072, 1, 0, -130770, 10, 0, -130769, 10, 0, -130763, 1610612746, 0, -130760, 10, 0, -130754, 1610612746, 0, -130747, 1610612746, 0, -130741, 1610612746, 0, -130740, 1610612746, 0, -130739, 1610612746, 0, -130717, 1610612746, 0, -130712, 1, 0, -130687, 1, 0, -130686, 12, 0, -1, 12, 0, -65536, 1, 0, -65233, 10, 0, -65232, 10, 0, -65227, 1610612746, 0, -65224, 10, 0, -65223, 10, 0, -65222, 10, 0, -65218, 1610612746, 0, -65212, 1610612746, 0, -65210, 1610612746, 0, -65205, 1610612746, 0, -65204, 1610612746, 0, -65203, 1610612746, 0, -65202, 1610612746, 0, -65201, 1610612746, 0, -65200, 1610612746, 0, -65199, 1610612746, 0, -65198, 1610612746, 0, -65197, 1610612746, 0, -65196, 1610612746, 0, -65195, 1610612746, 0, -65190, 1610612737, 0, -65189, 1610612737, 0, -65184, 1610612746, 0, -65183, 1610612746, 0, -65182, 1610612746, 0, -65181, 1610612746, 0, -65176, 1, 0, -65151, 1, 0, -65150, 12, 0, 65535, 12, 0, 0, 1, 0, 304, 10, 0, 309, 1610612746, 0, 314, 10, 0, 315, 10, 0, 318, 1610612746, 0, 324, 1610612746, 0, 326, 1610612746, 0, 327, 1610612746, 0, 328, 1610612746, 0, 329, 1610612746, 0, 330, 1610612746, 0, 331, 1610612746, 0, 341, 1610612746, 0, 352, 1610612746, 0, 360, 1, 0, 385, 1, 0, 386, 12, 0, 131071, 12, 0, 65536, 1, 0, 65751, 1, 0, 65752, 1, 0, 65753, 1, 0, 65754, 1, 0, 65755, 1, 0, 65756, 1, 0, 65771, 1, 0, 65772, 1, 0, 65773, 1, 0, 65774, 1, 0, 65775, 1, 0, 65776, 1, 0, 65840, 10, 0, 65845, 1610612746, 0, 65854, 1610612746, 0, 65860, 1610612746, 0, 65866, 1610612746, 0, 65877, 1610612746, 0, 65888, 1610612746, 0, 65896, 1, 0, 65921, 1, 0, 65922, 12, 0, 196607, 12, 0, 131072, 1, 0, 131375, 1610612746, 0, 131376, 10, 0, 131381, 1610612746, 0, 131382, 1610612746, 0, 131383, 1610612746, 0, 131390, 1610612746, 0, 131402, 1610612746, 0, 131403, 10, 0, 131413, 1610612746, 0, 131414, 1610612746, 0, 131415, 1610612746, 0, 131416, 1610612746, 0, 131417, 1610612746, 0, 131418, 1610612746, 0, 131419, 1610612746, 0, 131420, 1610612746, 0, 131421, 1610612746, 0, 131422, 1610612746, 0, 131423, 1610612746, 0, 131424, 1610612746, 0, 131432, 1, 0, 131457, 1, 0, 131458, 12, 0, 262143, 12, 0, 196608, 1, 0, 196912, 10, 0, 196913, 1610612746, 0, 196919, 10, 0, 196920, 1610612746, 0, 196926, 1610612746, 0, 196939, 10, 0, 196943, 1610612746, 0, 196944, 1610612746, 0, 196945, 1610612746, 0, 196946, 1610612746, 0, 196968, 1, 0, 196993, 1, 0, 196994, 12, 0, 327679, 12, 0, 262144, 1, 0, 262448, 10, 0, 262456, 1610612746, 0, 262457, 10, 0, 262462, 1610612746, 0, 262478, 1610612746, 0, 262479, 1610612746, 0, 262482, 1610612746, 0, 262483, 1610612746, 0, 262504, 1, 0, 262529, 1, 0, 262530, 12, 0, 262531, 12, 0, 262532, 12, 0, 262533, 12, 0, 262534, 12, 0, 262535, 12, 0, 262537, 12, 0, 262538, 12, 0, 262539, 12, 0, 262540, 12, 0, 262541, 12, 0, 262542, 12, 0, 393215, 12, 0, 327680, 1, 0, 327847, 2, 0, 327859, 2, 0, 327871, 2, 0, 327885, 1, 0, 327886, 1, 0, 327887, 1, 0, 327888, 1, 0, 327889, 1, 0, 327890, 1, 0, 327905, 1, 0, 327906, 1, 0, 327907, 1, 0, 327908, 1, 0, 327909, 1, 0, 327910, 1, 0, 327952, 1, 0, 327953, 1, 0, 327954, 1, 0, 327984, 10, 0, 327987, 1610612746, 0, 327988, 1610612746, 0, 327989, 1610612746, 0, 327990, 1610612746, 0, 327991, 1610612746, 0, 327992, 1610612746, 0, 327993, 1610612746, 0, 327994, 1610612746, 0, 327995, 1610612746, 0, 327998, 1610612746, 0, 328013, 1610612746, 0, 328014, 1610612746, 0, 328019, 1610612746, 0, 328020, 1610612746, 0, 328040, 1, 0, 328050, 1610612737, 0, 328051, 1610612737, 0, 328052, 1610612737, 0, 328053, 1610612737, 0, 328054, 1610612737, 0, 328055, 1610612737, 0, 328065, 10, 0, 328066, 10, 0, 328067, 12, 0, 328068, 12, 0, 328069, 10, 0, 328070, 10, 0, 328071, 12, 0, 328072, 12, 0, 328073, 12, 0, 328074, 10, 0, 328075, 10, 0, 328076, 10, 0, 328077, 10, 0, 328078, 12, 0, 328079, 12, 0, 328080, 12, 0, 328081, 12, 0, 328082, 12, 0, 328083, 12, 0, 458751, 12, 0, 393216, 1, 0, 393487, 1, 0, 393488, 1, 0, 393489, 6, 0, 393531, 1610612746, 0, 393534, 1610612746, 0, 393535, 1610612746, 0, 393536, 1610612746, 0, 393537, 1610612746, 0, 393538, 1610612746, 0, 393539, 1610612746, 0, 393540, 1610612746, 0, 393541, 1610612746, 0, 393542, 1610612746, 0, 393543, 1610612746, 0, 393544, 1610612746, 0, 393545, 1610612746, 0, 393546, 1610612746, 0, 393547, 1610612746, 0, 393548, 1610612746, 0, 393549, 1610612746, 0, 393556, 1610612746, 0, 393557, 1610612746, 0, 393558, 1610612746, 0, 393559, 1610612746, 0, 393560, 1610612746, 0, 393561, 1610612746, 0, 393562, 1610612746, 0, 393563, 1610612746, 0, 393564, 1610612746, 0, 393565, 1610612746, 0, 393566, 1610612746, 0, 393567, 1610612746, 0, 393568, 1610612746, 0, 393569, 1610612746, 0, 393570, 1610612746, 0, 393571, 1610612746, 0, 393575, 1610612746, 0, 393576, 1, 0, 393585, 1610612737, 0, 393586, 1610612746, 0, 393587, 1610612746, 0, 393588, 1610612746, 0, 393589, 1610612746, 0, 393590, 1610612746, 0, 393591, 1610612746, 0, 393592, 1610612737, 0, 393602, 10, 0, 393603, 10, 0, 393604, 10, 0, 393605, 10, 0, 393607, 10, 0, 393608, 10, 0, 393609, 10, 0, 393613, 10, 0, 393614, 10, 0, 393615, 10, 0, 393616, 10, 0, 393617, 10, 0, 393618, 10, 0, 393619, 12, 0, 393620, 12, 0, 393621, 12, 0, 524287, 12, 0, 458752, 1, 0, 458860, 1, 0, 458861, 1, 0, 458862, 1, 0, 458863, 1, 0, 458864, 1, 0, 459022, 1, 0, 459023, 1, 0, 459024, 1, 0, 459067, 1610612746, 0, 459070, 1610612746, 0, 459112, 1, 0, 459120, 1610612737, 0, 459121, 1610612746, 0, 459122, 1610612747, 0, 459123, 1610612747, 0, 459124, 1610612747, 0, 459125, 1610612747, 0, 459126, 1610612747, 0, 459127, 1610612747, 0, 459128, 1610612746, 0, 459129, 1610612737, 0, 459154, 10, 0, 459155, 10, 0, 459156, 10, 0, 459157, 12, 0, 459158, 12, 0, 459159, 12, 0, 459160, 12, 0, 459161, 12, 0, 589823, 12, 0, 524288, 1, 0, 524395, 1, 0, 524396, 1, 0, 524400, 1, 0, 524401, 1, 0, 524452, 2, 0, 524455, 9, 0, 524456, 9, 0, 524457, 9, 0, 524467, 9, 0, 524468, 9, 0, 524469, 9, 0, 524479, 9, 0, 524480, 9, 0, 524481, 9, 0, 524557, 1, 0, 524558, 1, 0, 524559, 8, 0, 524561, 6, 0, 524589, 1610612746, 0, 524590, 1610612746, 0, 524591, 1610612746, 0, 524592, 1610612746, 0, 524593, 1610612746, 0, 524594, 1610612746, 0, 524595, 1610612746, 0, 524596, 1610612746, 0, 524597, 1610612746, 0, 524598, 1610612746, 0, 524599, 1610612746, 0, 524600, 1610612746, 0, 524603, 1610612746, 0, 524606, 1610612746, 0, 524648, 1, 0, 524655, 1610612737, 0, 524656, 1610612746, 0, 524657, 1610612747, 0, 524658, 1610612747, 0, 524659, 1610612747, 0, 524660, 1610612747, 0, 524661, 1610612747, 0, 524662, 1610612747, 0, 524663, 1610612747, 0, 524664, 1610612747, 0, 524665, 1610612746, 0, 524666, 1610612737, 0, 524692, 10, 0, 524693, 10, 0, 524694, 10, 0, 524695, 10, 0, 524696, 10, 0, 524697, 12, 0, 524698, 12, 0, 524699, 12, 0, 655359, 12, 0, 589824, 1, 0, 589885, 6, 0, 589991, 9, 0, 589992, 10, 0, 589993, 9, 0, 590003, 9, 0, 590004, 10, 0, 590005, 9, 0, 590015, 9, 0, 590016, 10, 0, 590017, 9, 0, 590092, 1, 0, 590093, 1, 0, 590094, 1, 0, 590125, 1610612746, 0, 590136, 1610612746, 0, 590139, 1610612746, 0, 590142, 1610612746, 0, 590145, 1610612746, 0, 590160, 1610612746, 0, 590161, 1610612746, 0, 590184, 1, 0, 590190, 1610612737, 0, 590191, 1610612746, 0, 590192, 1610612747, 0, 590193, 1610612747, 0, 590194, 1610612747, 0, 590195, 1610612747, 0, 590196, 1610612747, 0, 590197, 1610612747, 0, 590198, 1610612747, 0, 590199, 1610612747, 0, 590200, 1610612747, 0, 590201, 1610612747, 0, 590202, 1610612746, 0, 590203, 1610612737, 0, 590232, 10, 0, 590233, 10, 0, 590234, 10, 0, 590235, 12, 0, 720895, 12, 0, 655360, 1, 0, 655470, 1, 0, 655527, 9, 0, 655528, 9, 0, 655529, 9, 0, 655530, 6, 0, 655539, 9, 0, 655540, 9, 0, 655541, 9, 0, 655551, 9, 0, 655552, 9, 0, 655553, 9, 0, 655627, 1, 0, 655628, 1, 0, 655629, 10, 0, 655630, 10, 0, 655631, 10, 0, 655632, 10, 0, 655633, 6, 0, 655661, 1610612746, 0, 655672, 1610612746, 0, 655675, 1610612746, 0, 655678, 1610612746, 0, 655681, 1610612746, 0, 655695, 1610612746, 0, 655696, 1610612747, 0, 655697, 1610612747, 0, 655698, 1610612746, 0, 655699, 1610612746, 0, 655700, 1610612746, 0, 655701, 1610612746, 0, 655708, 1610612746, 0, 655709, 1610612746, 0, 655716, 1610612746, 0, 655717, 1610612746, 0, 655718, 1610612746, 0, 655720, 1, 0, 655725, 1610612737, 0, 655726, 1610612746, 0, 655739, 1610612746, 0, 655740, 1610612737, 0, 655770, 10, 0, 655771, 12, 0, 786431, 12, 0, 720896, 1, 0, 720980, 2, 0, 720999, 1, 0, 721000, 1, 0, 721001, 1, 0, 721002, 1, 0, 721003, 1, 0, 721004, 1, 0, 721005, 1, 0, 721006, 1, 0, 721007, 1, 0, 721008, 1, 0, 721009, 1, 0, 721010, 1, 0, 721011, 1, 0, 721012, 1, 0, 721013, 1, 0, 721035, 10, 0, 721036, 9, 0, 721041, 9, 0, 721042, 10, 0, 721057, 2, 0, 721060, 9, 0, 721061, 9, 0, 721062, 9, 0, 721063, 7, 0, 721065, 9, 0, 721087, 2, 0, 721162, 1, 0, 721163, 1, 0, 721164, 1, 0, 721165, 9, 0, 721166, 4, 0, 721197, 1610612746, 0, 721200, 1610612746, 0, 721201, 1610612746, 0, 721202, 1610612746, 0, 721203, 1610612746, 0, 721204, 1610612746, 0, 721205, 1610612746, 0, 721206, 1610612746, 0, 721207, 1610612746, 0, 721208, 1610612746, 0, 721211, 1610612746, 0, 721212, 1610612746, 0, 721214, 1610612746, 0, 721217, 1610612746, 0, 721230, 1610612746, 0, 721231, 1610612745, 0, 721232, 1610612745, 0, 721233, 1610612745, 0, 721234, 1610612745, 0, 721235, 1610612746, 0, 721256, 1, 0, 721260, 1610612737, 0, 721261, 1610612746, 0, 721262, 1610612745, 0, 721275, 1610612745, 0, 721276, 1610612746, 0, 721277, 1610612737, 0, 721306, 10, 0, 721307, 12, 0, 851967, 12, 0, 786432, 1, 0, 786475, 6, 0, 786488, 1, 0, 786489, 1, 0, 786500, 1, 0, 786501, 1, 0, 786534, 1, 0, 786535, 1, 0, 786536, 1, 0, 786537, 1, 0, 786538, 1, 0, 786539, 1, 0, 786540, 1, 0, 786541, 1, 0, 786542, 1, 0, 786543, 1, 0, 786544, 1, 0, 786545, 1, 0, 786546, 1, 0, 786547, 1, 0, 786548, 1, 0, 786549, 1, 0, 786550, 1, 0, 786570, 10, 0, 786571, 6, 0, 786577, 6, 0, 786579, 10, 0, 786596, 9, 0, 786597, 10, 0, 786598, 9, 0, 786601, 9, 0, 786626, 6, 0, 786697, 1, 0, 786698, 1, 0, 786699, 7, 0, 786701, 9, 0, 786705, 6, 0, 786733, 1610612746, 0, 786750, 1610612746, 0, 786753, 1610612746, 0, 786754, 1610612746, 0, 786755, 1610612746, 0, 786756, 1610612746, 0, 786757, 1610612746, 0, 786758, 1610612746, 0, 786759, 1610612746, 0, 786760, 1610612746, 0, 786761, 1610612746, 0, 786762, 1610612746, 0, 786763, 1610612746, 0, 786764, 1610612746, 0, 786765, 1610612746, 0, 786766, 1610612746, 0, 786767, 1610612746, 0, 786768, 1610612746, 0, 786769, 1610612746, 0, 786770, 1610612746, 0, 786771, 1610612746, 0, 786772, 1610612746, 0, 786773, 1610612746, 0, 786774, 1610612746, 0, 786775, 1610612746, 0, 786776, 1610612746, 0, 786777, 1610612746, 0, 786778, 1610612746, 0, 786779, 1610612746, 0, 786780, 1610612746, 0, 786781, 1610612746, 0, 786782, 1610612746, 0, 786783, 1610612746, 0, 786784, 1610612746, 0, 786785, 1610612746, 0, 786786, 1610612746, 0, 786787, 1610612746, 0, 786788, 1610612746, 0, 786789, 1610612746, 0, 786790, 1610612746, 0, 786791, 1610612746, 0, 786792, 1, 0, 786795, 1610612737, 0, 786796, 1610612746, 0, 786797, 1610612745, 0, 786798, 1610612745, 0, 786811, 1610612745, 0, 786812, 1610612745, 0, 786813, 1610612746, 0, 786814, 1610612737, 0, 786826, 8, 0, 786840, 10, 0, 786841, 10, 0, 786842, 12, 0, 786843, 12, 0, 917503, 12, 0, 851968, 1, 0, 852010, 9, 0, 852023, 1, 0, 852024, 1, 0, 852025, 1, 0, 852026, 1, 0, 852035, 1, 0, 852036, 1, 0, 852037, 1, 0, 852038, 1, 0, 852069, 1, 0, 852070, 1, 0, 852071, 1, 0, 852072, 1, 0, 852073, 1, 0, 852074, 1, 0, 852075, 1, 0, 852076, 1, 0, 852077, 1, 0, 852078, 1, 0, 852079, 1, 0, 852080, 1, 0, 852081, 1, 0, 852082, 1, 0, 852083, 1, 0, 852084, 1, 0, 852085, 1, 0, 852086, 1, 0, 852087, 1, 0, 852105, 10, 0, 852106, 9, 0, 852115, 9, 0, 852116, 10, 0, 852132, 9, 0, 852133, 9, 0, 852134, 9, 0, 852135, 9, 0, 852136, 9, 0, 852137, 10, 0, 852232, 1, 0, 852233, 1, 0, 852234, 1, 0, 852237, 9, 0, 852269, 1610612746, 0, 852286, 1610612746, 0, 852328, 1, 0, 852330, 1610612737, 0, 852331, 1610612746, 0, 852332, 1610612745, 0, 852333, 1610612745, 0, 852334, 1610612745, 0, 852347, 1610612745, 0, 852348, 1610612745, 0, 852349, 1610612745, 0, 852350, 1610612746, 0, 852351, 1610612737, 0, 852358, 10, 0, 852359, 10, 0, 852360, 10, 0, 852361, 10, 0, 852375, 10, 0, 852376, 10, 0, 852377, 12, 0, 852378, 12, 0, 983039, 12, 0, 917504, 1, 0, 917505, 1, 0, 917506, 1, 0, 917507, 1, 0, 917508, 1, 0, 917509, 1, 0, 917510, 1, 0, 917511, 1, 0, 917512, 1, 0, 917513, 1, 0, 917514, 1, 0, 917515, 1, 0, 917516, 1, 0, 917517, 1, 0, 917518, 1, 0, 917519, 1, 0, 917520, 1, 0, 917521, 1, 0, 917522, 1, 0, 917523, 1, 0, 917524, 1, 0, 917525, 1, 0, 917526, 1, 0, 917527, 1, 0, 917528, 1, 0, 917529, 1, 0, 917530, 1, 0, 917531, 1, 0, 917532, 1, 0, 917533, 1, 0, 917534, 1, 0, 917535, 1, 0, 917536, 1, 0, 917537, 1, 0, 917538, 1, 0, 917539, 1, 0, 917540, 1, 0, 917541, 1, 0, 917542, 1, 0, 917543, 1, 0, 917544, 1, 0, 917545, 1, 0, 917546, 1, 0, 917547, 1, 0, 917548, 1, 0, 917549, 1, 0, 917550, 1, 0, 917551, 1, 0, 917552, 1, 0, 917553, 1, 0, 917554, 1, 0, 917555, 1, 0, 917556, 1, 0, 917557, 1, 0, 917558, 1, 0, 917559, 1, 0, 917560, 1, 0, 917561, 1, 0, 917562, 1, 0, 917563, 1, 0, 917564, 1, 0, 917565, 1, 0, 917566, 1, 0, 917567, 1, 0, 917568, 1, 0, 917569, 1, 0, 917570, 1, 0, 917571, 1, 0, 917572, 1, 0, 917573, 1, 0, 917574, 1, 0, 917575, 1, 0, 917576, 1, 0, 917577, 1, 0, 917578, 1, 0, 917579, 1, 0, 917580, 1, 0, 917581, 1, 0, 917582, 1, 0, 917583, 1, 0, 917584, 1, 0, 917585, 1, 0, 917586, 1, 0, 917587, 1, 0, 917588, 1, 0, 917589, 1, 0, 917590, 1, 0, 917591, 1, 0, 917592, 1, 0, 917593, 1, 0, 917594, 1, 0, 917595, 1, 0, 917596, 1, 0, 917597, 1, 0, 917598, 1, 0, 917599, 1, 0, 917600, 1, 0, 917601, 1, 0, 917602, 1, 0, 917603, 1, 0, 917604, 1, 0, 917605, 1, 0, 917606, 1, 0, 917607, 1, 0, 917608, 1, 0, 917609, 1, 0, 917610, 1, 0, 917611, 1, 0, 917612, 1, 0, 917613, 1, 0, 917614, 1, 0, 917615, 1, 0, 917616, 1, 0, 917617, 1, 0, 917618, 1, 0, 917619, 1, 0, 917620, 1, 0, 917621, 1, 0, 917622, 1, 0, 917623, 1, 0, 917624, 1, 0, 917625, 1, 0, 917626, 1, 0, 917627, 1, 0, 917628, 1, 0, 917629, 1, 0, 917630, 1, 0, 917631, 1, 0, 917632, 1, 0, 917633, 1, 0, 917634, 1, 0, 917635, 1, 0, 917636, 1, 0, 917637, 1, 0, 917638, 1, 0, 917639, 1, 0, 917640, 1, 0, 917641, 1, 0, 917642, 1, 0, 917643, 1, 0, 917644, 1, 0, 917649, 1, 0, 917650, 1, 0, 917651, 1, 0, 917652, 1, 0, 917653, 1, 0, 917654, 1, 0, 917655, 1, 0, 917656, 1, 0, 917657, 1, 0, 917658, 1, 0, 917659, 1, 0, 917660, 1, 0, 917661, 1, 0, 917662, 1, 0, 917663, 1, 0, 917664, 1, 0, 917665, 1, 0, 917666, 1, 0, 917667, 1, 0, 917668, 1, 0, 917669, 1, 0, 917670, 1, 0, 917671, 1, 0, 917672, 1, 0, 917673, 1, 0, 917674, 1, 0, 917675, 1, 0, 917676, 1, 0, 917677, 1, 0, 917678, 1, 0, 917679, 1, 0, 917680, 1, 0, 917681, 1, 0, 917682, 1, 0, 917683, 1, 0, 917684, 1, 0, 917685, 1, 0, 917686, 1, 0, 917687, 1, 0, 917688, 1, 0, 917689, 1, 0, 917690, 1, 0, 917691, 1, 0, 917692, 1, 0, 917693, 1, 0, 917694, 1, 0, 917695, 1, 0, 917696, 1, 0, 917697, 1, 0, 917698, 1, 0, 917699, 1, 0, 917700, 1, 0, 917701, 1, 0, 917702, 1, 0, 917703, 1, 0, 917704, 1, 0, 917705, 1, 0, 917706, 1, 0, 917707, 1, 0, 917745, 1, 0, 917746, 1, 0, 917747, 1, 0, 917748, 1, 0, 917749, 1, 0, 917750, 1, 0, 917751, 1, 0, 917752, 1, 0, 917753, 1, 0, 917754, 1, 0, 917755, 1, 0, 917756, 1, 0, 917757, 1, 0, 917758, 1, 0, 917759, 1, 0, 917760, 1, 0, 917761, 1, 0, 917762, 1, 0, 917763, 1, 0, 917764, 1, 0, 917765, 1, 0, 917766, 1, 0, 917767, 1, 0, 917768, 1, 0, 917769, 1, 0, 917770, 1, 0, 917771, 1, 0, 917772, 1, 0, 917773, 1, 0, 917774, 1, 0, 917775, 1, 0, 917776, 1, 0, 917777, 1, 0, 917778, 1, 0, 917787, 1, 0, 917788, 1, 0, 917789, 1, 0, 917790, 1, 0, 917791, 1, 0, 917792, 1, 0, 917793, 1, 0, 917794, 1, 0, 917795, 1, 0, 917796, 1, 0, 917797, 1, 0, 917798, 1, 0, 917799, 1, 0, 917800, 1, 0, 917801, 1, 0, 917802, 1, 0, 917803, 1, 0, 917804, 1, 0, 917805, 1, 0, 917806, 1, 0, 917807, 1, 0, 917808, 1, 0, 917809, 1, 0, 917810, 1, 0, 917811, 1, 0, 917812, 1, 0, 917813, 1, 0, 917814, 1, 0, 917815, 1, 0, 917816, 1, 0, 917817, 1, 0, 917818, 1, 0, 917819, 1, 0, 917820, 1, 0, 917821, 1, 0, 917822, 10, 0, 917864, 1, 0, 917865, 1, 0, 917866, 1, 0, 917867, 1, 0, 917868, 1, 0, 917869, 1, 0, 917870, 1, 0, 917871, 1, 0, 917872, 1, 0, 917873, 1, 0, 917874, 1, 0, 917875, 1, 0, 917876, 1, 0, 917877, 1, 0, 917878, 1, 0, 917879, 1, 0, 917880, 1, 0, 917881, 1, 0, 917882, 1, 0, 917883, 1, 0, 917884, 1, 0, 917885, 1, 0, 917886, 1, 0, 917887, 1, 0, 917888, 1, 0, 917889, 1, 0, 917890, 10, 0, 917891, 10, 0, 917892, 10, 0, 917893, 10, 0, 917894, 10, 0, 917897, 10, 0, 917898, 10, 0, 917899, 10, 0, 917900, 10, 0, 917901, 10, 0, 917904, 10, 0, 917905, 10, 0, 917911, 10, 0, 917912, 12, 0, 917913, 12, 0, 1048575, 12, 0, 983040, 12, 0, 983041, 12, 0, 983042, 12, 0, 983043, 12, 0, 983044, 12, 0, 983045, 12, 0, 983046, 12, 0, 983047, 12, 0, 983048, 12, 0, 983049, 12, 0, 983050, 12, 0, 983051, 12, 0, 983052, 12, 0, 983053, 12, 0, 983054, 12, 0, 983055, 12, 0, 983056, 12, 0, 983057, 12, 0, 983058, 12, 0, 983059, 12, 0, 983060, 12, 0, 983061, 12, 0, 983062, 12, 0, 983063, 12, 0, 983064, 12, 0, 983065, 12, 0, 983066, 12, 0, 983067, 12, 0, 983068, 12, 0, 983069, 12, 0, 983070, 12, 0, 983071, 12, 0, 983072, 12, 0, 983073, 12, 0, 983074, 12, 0, 983075, 12, 0, 983076, 12, 0, 983077, 12, 0, 983078, 12, 0, 983079, 12, 0, 983080, 12, 0, 983081, 12, 0, 983082, 12, 0, 983083, 12, 0, 983084, 12, 0, 983085, 12, 0, 983086, 12, 0, 983087, 12, 0, 983088, 12, 0, 983089, 12, 0, 983090, 12, 0, 983091, 12, 0, 983092, 12, 0, 983093, 12, 0, 983094, 12, 0, 983095, 12, 0, 983096, 12, 0, 983097, 12, 0, 983098, 12, 0, 983099, 12, 0, 983100, 12, 0, 983101, 12, 0, 983102, 12, 0, 983103, 12, 0, 983104, 12, 0, 983105, 12, 0, 983106, 12, 0, 983107, 12, 0, 983108, 12, 0, 983109, 12, 0, 983110, 12, 0, 983111, 12, 0, 983112, 12, 0, 983113, 12, 0, 983114, 12, 0, 983115, 12, 0, 983116, 12, 0, 983117, 12, 0, 983118, 12, 0, 983119, 12, 0, 983120, 12, 0, 983121, 12, 0, 983122, 12, 0, 983123, 12, 0, 983124, 12, 0, 983125, 12, 0, 983126, 12, 0, 983127, 12, 0, 983128, 12, 0, 983129, 12, 0, 983130, 12, 0, 983131, 12, 0, 983132, 12, 0, 983133, 12, 0, 983134, 12, 0, 983135, 12, 0, 983136, 12, 0, 983137, 12, 0, 983138, 12, 0, 983139, 12, 0, 983140, 12, 0, 983141, 12, 0, 983142, 12, 0, 983143, 12, 0, 983144, 12, 0, 983145, 12, 0, 983146, 12, 0, 983147, 12, 0, 983148, 12, 0, 983149, 12, 0, 983150, 12, 0, 983151, 12, 0, 983152, 12, 0, 983153, 12, 0, 983154, 12, 0, 983155, 12, 0, 983156, 12, 0, 983157, 12, 0, 983158, 12, 0, 983159, 12, 0, 983160, 12, 0, 983161, 12, 0, 983162, 12, 0, 983163, 12, 0, 983164, 12, 0, 983165, 12, 0, 983166, 12, 0, 983167, 12, 0, 983168, 12, 0, 983169, 12, 0, 983170, 12, 0, 983171, 12, 0, 983172, 12, 0, 983173, 12, 0, 983174, 12, 0, 983175, 12, 0, 983176, 12, 0, 983177, 12, 0, 983178, 12, 0, 983179, 12, 0, 983180, 12, 0, 983181, 12, 0, 983182, 12, 0, 983183, 12, 0, 983184, 12, 0, 983185, 12, 0, 983186, 12, 0, 983187, 12, 0, 983188, 12, 0, 983189, 12, 0, 983190, 12, 0, 983191, 12, 0, 983192, 12, 0, 983193, 12, 0, 983194, 12, 0, 983195, 12, 0, 983196, 12, 0, 983197, 12, 0, 983198, 12, 0, 983199, 12, 0, 983200, 12, 0, 983201, 12, 0, 983202, 12, 0, 983203, 12, 0, 983204, 12, 0, 983205, 12, 0, 983206, 12, 0, 983207, 12, 0, 983208, 12, 0, 983209, 12, 0, 983210, 12, 0, 983211, 12, 0, 983212, 12, 0, 983213, 12, 0, 983214, 12, 0, 983215, 12, 0, 983216, 12, 0, 983217, 12, 0, 983218, 12, 0, 983219, 12, 0, 983220, 12, 0, 983221, 12, 0, 983222, 12, 0, 983223, 12, 0, 983224, 12, 0, 983225, 12, 0, 983226, 12, 0, 983227, 12, 0, 983228, 12, 0, 983229, 12, 0, 983230, 12, 0, 983231, 12, 0, 983232, 12, 0, 983233, 12, 0, 983234, 12, 0, 983235, 12, 0, 983236, 12, 0, 983237, 12, 0, 983238, 12, 0, 983239, 12, 0, 983240, 12, 0, 983241, 12, 0, 983242, 12, 0, 983243, 12, 0, 983244, 12, 0, 983245, 12, 0, 983246, 12, 0, 983247, 12, 0, 983248, 12, 0, 983249, 12, 0, 983250, 12, 0, 983251, 12, 0, 983252, 12, 0, 983253, 12, 0, 983254, 12, 0, 983255, 12, 0, 983256, 12, 0, 983257, 12, 0, 983258, 12, 0, 983259, 12, 0, 983260, 12, 0, 983261, 12, 0, 983262, 12, 0, 983263, 12, 0, 983264, 12, 0, 983265, 12, 0, 983266, 12, 0, 983267, 12, 0, 983268, 12, 0, 983269, 12, 0, 983270, 12, 0, 983271, 12, 0, 983272, 12, 0, 983273, 12, 0, 983274, 12, 0, 983275, 12, 0, 983276, 12, 0, 983277, 12, 0, 983278, 12, 0, 983279, 12, 0, 983280, 12, 0, 983281, 12, 0, 983282, 12, 0, 983283, 12, 0, 983284, 12, 0, 983285, 12, 0, 983286, 12, 0, 983287, 12, 0, 983288, 12, 0, 983289, 12, 0, 983290, 12, 0, 983291, 12, 0, 983292, 12, 0, 983293, 12, 0, 983294, 12, 0, 983295, 12, 0, 983296, 12, 0, 983297, 12, 0, 983298, 12, 0, 983299, 12, 0, 983300, 12, 0, 983301, 12, 0, 983302, 12, 0, 983303, 12, 0, 983304, 12, 0, 983305, 12, 0, 983306, 12, 0, 983307, 12, 0, 983308, 12, 0, 983309, 12, 0, 983310, 12, 0, 983311, 12, 0, 983312, 12, 0, 983313, 12, 0, 983314, 12, 0, 983315, 12, 0, 983316, 12, 0, 983317, 12, 0, 983318, 12, 0, 983319, 12, 0, 983320, 12, 0, 983321, 12, 0, 983322, 12, 0, 983323, 12, 0, 983324, 12, 0, 983325, 12, 0, 983326, 12, 0, 983327, 12, 0, 983328, 12, 0, 983329, 12, 0, 983330, 12, 0, 983331, 12, 0, 983332, 12, 0, 983333, 12, 0, 983334, 12, 0, 983335, 12, 0, 983336, 12, 0, 983337, 12, 0, 983338, 12, 0, 983339, 12, 0, 983340, 12, 0, 983341, 12, 0, 983342, 12, 0, 983343, 12, 0, 983344, 12, 0, 983345, 12, 0, 983346, 12, 0, 983347, 12, 0, 983348, 12, 0, 983349, 12, 0, 983350, 12, 0, 983351, 12, 0, 983352, 12, 0, 983353, 12, 0, 983354, 12, 0, 983355, 12, 0, 983356, 12, 0, 983357, 12, 0, 983358, 10, 0, 983425, 10, 0, 983426, 10, 0, 983429, 10, 0, 983435, 10, 0, 983436, 10, 0, 983437, 10, 0, 983438, 10, 0, 983439, 9, 0, 983440, 9, 0, 983447, 10, 0, 983448, 10, 0, 983449, 12, 0, 1048893, 12, 0, 1048894, 10, 0, 1048984, 10, 0, 1048985, 12, 0, 1114429, 12, 0, 1114430, 10, 0, 1114436, 10, 0, 1114519, 10, 0, 1114520, 10, 0, 1114521, 12, 0, 1179965, 12, 0, 1179966, 10, 0, 1179971, 10, 0, 1179972, 10, 0, 1180054, 10, 0, 1180055, 10, 0, 1180056, 12, 0, 1180057, 12, 0, 1245501, 12, 0, 1245502, 10, 0, 1245503, 10, 0, 1245505, 10, 0, 1245506, 10, 0, 1245507, 10, 0, 1245508, 10, 0, 1245509, 10, 0, 1245572, 10, 0, 1245573, 10, 0, 1245574, 10, 0, 1245577, 10, 0, 1245578, 10, 0, 1245579, 10, 0, 1245580, 10, 0, 1245581, 10, 0, 1245582, 10, 0, 1245583, 10, 0, 1245584, 10, 0, 1245585, 10, 0, 1245586, 10, 0, 1245587, 10, 0, 1245588, 10, 0, 1245589, 10, 0, 1245590, 10, 0, 1245591, 12, 0, 1245592, 12, 0, 1311037, 12, 0, 1311038, 12, 0, 1311039, 9, 0, 1311040, 9, 0, 1311041, 10, 0, 1311042, 12, 0, 1311043, 12, 0, 1311044, 12, 0, 1311045, 10, 0, 1311046, 10, 0, 1311106, 10, 0, 1311107, 9, 0, 1311108, 10, 0, 1311109, 12, 0, 1311110, 10, 0, 1311111, 10, 0, 1311112, 10, 0, 1311113, 10, 0, 1311114, 12, 0, 1311115, 12, 0, 1311116, 12, 0, 1311117, 12, 0, 1311118, 12, 0, 1311119, 12, 0, 1311120, 12, 0, 1311121, 12, 0, 1311122, 12, 0, 1311123, 12, 0, 1311124, 12, 0, 1311125, 12, 0, 1311126, 12, 0, 1311127, 12, 0, 1376574, 12, 0, 1376575, 12, 0, 1376576, 12, 0, 1376577, 12, 0, 1376578, 12, 0, 1376580, 12, 0, 1376581, 12, 0, 1376582, 10, 0, 1376583, 10, 0, 1376584, 9, 0, 1376611, 9, 0, 1376617, 10, 0, 1376618, 10, 0, 1376622, 10, 0, 1376623, 10, 0, 1376624, 10, 0, 1376641, 10, 0, 1376642, 12, 0, 1376643, 12, 0, 1376644, 12, 0, 1376645, 12, 0, 1376646, 12, 0, 1376647, 12, 0, 1376648, 12, 0, 1376649, 12, 0, 1376650, 12, 0, 1442117, 12, 0, 1442118, 12, 0, 1442119, 12, 0, 1442120, 9, 0, 1442121, 10, 0, 1442147, 9, 0, 1442153, 10, 0, 1442154, 12, 0, 1442155, 10, 0, 1442156, 10, 0, 1442157, 10, 0, 1442158, 12, 0, 1442159, 12, 0, 1442160, 12, 0, 1442161, 10, 0, 1442162, 10, 0, 1442163, 8, 0, 1442170, 10, 0, 1442171, 9, 0, 1442172, 9, 0, 1442177, 10, 0, 1442178, 12, 0, 1507655, 12, 0, 1507656, 10, 0, 1507660, 10, 0, 1507661, 10, 0, 1507662, 10, 0, 1507663, 10, 0, 1507664, 10, 0, 1507677, 10, 0, 1507678, 10, 0, 1507679, 10, 0, 1507680, 10, 0, 1507688, 10, 0, 1507689, 10, 0, 1507690, 12, 0, 1507691, 12, 0, 1507692, 12, 0, 1507693, 12, 0, 1507694, 12, 0, 1507696, 12, 0, 1507697, 10, 0, 1507698, 10, 0, 1507704, 10, 0, 1507705, 10, 0, 1507706, 10, 0, 1507707, 12, 0, 1507708, 12, 0, 1507709, 10, 0, 1507710, 10, 0, 1507711, 10, 0, 1507712, 10, 0, 1507713, 12, 0, 1507714, 12, 0, 1573191, 12, 0, 1573192, 10, 0, 1573193, 10, 0, 1573194, 10, 0, 1573195, 10, 0, 1573196, 10, 0, 1573197, 12, 0, 1573198, 12, 0, 1573199, 12, 0, 1573200, 10, 0, 1573201, 10, 0, 1573212, 10, 0, 1573213, 12, 0, 1573214, 12, 0, 1573215, 12, 0, 1573216, 10, 0, 1573217, 10, 0, 1573218, 10, 0, 1573219, 10, 0, 1573220, 10, 0, 1573224, 10, 0, 1573225, 12, 0, 1573226, 12, 0, 1573232, 12, 0, 1573233, 10, 0, 1573234, 10, 0, 1573235, 10, 0, 1573236, 10, 0, 1573237, 10, 0, 1573238, 10, 0, 1573239, 10, 0, 1573240, 10, 0, 1573241, 12, 0, 1573242, 12, 0, 1573243, 12, 0, 1573244, 12, 0, 1573245, 12, 0, 1573246, 12, 0, 1573247, 12, 0, 1573248, 12, 0, 1573249, 12, 0, 1638727, 12, 0, 1638728, 12, 0, 1638729, 12, 0, 1638730, 12, 0, 1638731, 12, 0, 1638732, 12, 0, 1638733, 12, 0, 1638735, 12, 0, 1638736, 12, 0, 1638737, 12, 0, 1638738, 10, 0, 1638739, 10, 0, 1638747, 10, 0, 1638748, 12, 0, 1638749, 12, 0, 1638751, 12, 0, 1638752, 12, 0, 1638753, 12, 0, 1638754, 12, 0, 1638755, 12, 0, 1638756, 10, 0, 1638757, 10, 0, 1638758, 10, 0, 1638759, 10, 0, 1638760, 10, 0, 1638761, 12, 0, 1638768, 12, 0, 1638769, 12, 0, 1638770, 12, 0, 1638771, 12, 0, 1638772, 12, 0, 1638773, 12, 0, 1638774, 12, 0, 1638775, 12, 0, 1638776, 12, 0, 1638777, 12, 0, 1704273, 12, 0, 1704274, 12, 0, 1704275, 10, 0, 1704276, 10, 0, 1704282, 10, 0, 1704283, 10, 0, 1704284, 12, 0, 1704291, 12, 0, 1704292, 12, 0, 1704293, 12, 0, 1704294, 12, 0, 1704295, 12, 0, 1704296, 12, 0, 1704297, 12, 0, 1769810, 12, 0, 1769811, 12, 0, 1769812, 10, 0, 1769813, 10, 0, 1769817, 10, 0, 1769818, 10, 0, 1769819, 12, 0, 1769820, 12, 0, 1835347, 12, 0, 1835348, 12, 0, 1835349, 10, 0, 1835350, 10, 0, 1835351, 10, 0, 1835352, 10, 0, 1835353, 10, 0, 1835354, 12, 0, 1835355, 12, 0, 1900884, 12, 0, 1900885, 12, 0, 1900886, 12, 0, 1900887, 12, 0, 1900888, 12, 0, 1900889, 12, 0, 1900890, 12, 0 )
+tile_data = PoolIntArray( -786432, 1, 0, -786431, 1, 0, -786430, 1, 0, -786429, 1, 0, -786428, 1, 0, -786427, 1, 0, -786426, 1, 0, -786425, 1, 0, -786424, 1, 0, -786423, 1, 0, -786422, 1, 0, -786421, 1, 0, -786420, 1, 0, -786419, 1, 0, -786418, 1, 0, -786417, 1, 0, -786416, 1, 0, -786415, 1, 0, -786414, 1, 0, -786413, 1, 0, -786412, 1, 0, -786411, 1, 0, -786410, 1, 0, -786409, 1, 0, -786408, 1, 0, -786407, 1, 0, -786406, 1, 0, -786405, 1, 0, -786404, 1, 0, -786403, 1, 0, -786402, 1, 0, -786401, 1, 0, -786400, 1, 0, -786399, 1, 0, -786398, 1, 0, -786397, 1, 0, -786396, 1, 0, -786395, 1, 0, -786394, 1, 0, -786393, 1, 0, -786392, 1, 0, -786391, 1, 0, -786390, 1, 0, -786389, 1, 0, -786388, 1, 0, -786387, 1, 0, -786386, 1, 0, -786385, 1, 0, -786384, 1, 0, -786383, 1, 0, -786382, 1, 0, -786381, 1, 0, -786380, 1, 0, -786379, 1, 0, -786378, 1, 0, -786377, 1, 0, -786376, 1, 0, -786375, 1, 0, -786374, 1, 0, -786373, 1, 0, -786372, 1, 0, -786371, 1, 0, -786370, 1, 0, -786369, 1, 0, -786368, 1, 0, -786367, 1, 0, -786366, 1, 0, -786365, 1, 0, -786364, 1, 0, -786363, 1, 0, -786362, 1, 0, -786361, 1, 0, -786360, 1, 0, -786359, 1, 0, -786358, 1, 0, -786357, 1, 0, -786356, 1, 0, -786355, 1, 0, -786354, 1, 0, -786353, 1, 0, -786352, 1, 0, -786351, 1, 0, -786350, 1, 0, -786349, 1, 0, -786348, 1, 0, -786347, 1, 0, -786346, 1, 0, -786345, 1, 0, -786344, 1, 0, -786343, 1, 0, -786342, 1, 0, -786341, 1, 0, -786340, 1, 0, -786339, 1, 0, -786338, 1, 0, -786337, 1, 0, -786336, 1, 0, -786335, 1, 0, -786334, 1, 0, -786333, 1, 0, -786332, 1, 0, -786331, 1, 0, -786330, 1, 0, -786329, 1, 0, -786328, 1, 0, -786327, 1, 0, -786326, 1, 0, -786325, 1, 0, -786324, 1, 0, -786323, 1, 0, -786322, 1, 0, -786321, 1, 0, -786320, 1, 0, -786319, 1, 0, -786318, 1, 0, -786317, 1, 0, -786316, 1, 0, -786315, 1, 0, -786314, 1, 0, -786313, 1, 0, -786312, 1, 0, -786311, 1, 0, -786310, 1, 0, -786309, 1, 0, -786308, 1, 0, -786307, 1, 0, -786306, 1, 0, -786305, 1, 0, -786304, 1, 0, -786303, 1, 0, -786302, 1, 0, -786301, 1, 0, -786300, 1, 0, -786299, 1, 0, -786298, 1, 0, -786297, 1, 0, -786296, 1, 0, -786295, 1, 0, -786294, 1, 0, -786293, 1, 0, -786292, 1, 0, -786291, 1, 0, -786290, 1, 0, -786289, 1, 0, -786288, 1, 0, -786287, 1, 0, -786286, 1, 0, -786285, 1, 0, -786284, 1, 0, -786283, 1, 0, -786282, 1, 0, -786281, 1, 0, -786280, 1, 0, -786279, 1, 0, -786278, 1, 0, -786277, 1, 0, -786276, 1, 0, -786275, 1, 0, -786274, 1, 0, -786273, 1, 0, -786272, 1, 0, -786271, 1, 0, -786270, 1, 0, -786269, 1, 0, -786268, 1, 0, -786267, 1, 0, -786266, 1, 0, -786265, 1, 0, -786264, 1, 0, -786263, 1, 0, -786262, 1, 0, -786261, 1, 0, -786260, 1, 0, -786259, 1, 0, -786258, 1, 0, -786257, 1, 0, -786256, 1, 0, -786255, 1, 0, -786254, 1, 0, -786253, 1, 0, -786252, 1, 0, -786251, 1, 0, -786250, 1, 0, -786249, 1, 0, -786248, 1, 0, -786247, 1, 0, -786246, 1, 0, -786245, 1, 0, -786244, 1, 0, -786243, 1, 0, -786242, 1, 0, -786241, 1, 0, -786240, 1, 0, -786239, 1, 0, -786238, 1, 0, -786237, 1, 0, -786236, 1, 0, -786235, 1, 0, -786234, 1, 0, -786233, 1, 0, -786232, 1, 0, -786231, 1, 0, -786230, 1, 0, -786229, 1, 0, -786228, 1, 0, -786227, 1, 0, -786226, 1, 0, -786225, 1, 0, -786224, 1, 0, -786223, 1, 0, -786222, 1, 0, -786221, 1, 0, -786220, 1, 0, -786219, 1, 0, -786218, 1, 0, -786217, 1, 0, -786216, 1, 0, -786215, 1, 0, -786214, 1, 0, -786213, 1, 0, -786212, 1, 0, -786211, 1, 0, -786210, 1, 0, -786209, 1, 0, -786208, 1, 0, -786207, 1, 0, -786206, 1, 0, -786205, 1, 0, -786204, 1, 0, -786203, 1, 0, -786202, 1, 0, -786201, 1, 0, -786200, 1, 0, -786199, 1, 0, -786198, 1, 0, -786197, 1, 0, -786196, 1, 0, -786195, 1, 0, -786194, 1, 0, -786193, 1, 0, -786192, 1, 0, -786191, 1, 0, -786190, 1, 0, -786189, 1, 0, -786188, 1, 0, -786187, 1, 0, -786186, 1, 0, -786185, 1, 0, -786184, 1, 0, -786183, 1, 0, -786182, 1, 0, -786181, 1, 0, -786180, 1, 0, -786179, 1, 0, -786178, 1, 0, -786177, 1, 0, -786176, 1, 0, -786175, 1, 0, -786174, 1, 0, -786173, 1, 0, -786172, 1, 0, -786171, 1, 0, -786170, 1, 0, -786169, 1, 0, -786168, 1, 0, -786167, 1, 0, -786166, 1, 0, -786165, 1, 0, -786164, 1, 0, -786163, 1, 0, -786162, 1, 0, -786161, 1, 0, -786160, 1, 0, -786159, 1, 0, -786158, 1, 0, -786157, 1, 0, -786156, 1, 0, -786155, 1, 0, -786154, 1, 0, -786153, 1, 0, -786152, 1, 0, -786151, 1, 0, -786150, 1, 0, -786149, 1, 0, -786148, 1, 0, -786147, 1, 0, -786146, 1, 0, -786145, 1, 0, -786144, 1, 0, -786143, 1, 0, -786142, 1, 0, -786141, 1, 0, -786140, 1, 0, -786139, 1, 0, -786138, 1, 0, -786137, 1, 0, -786136, 1, 0, -786135, 1, 0, -786134, 1, 0, -786133, 1, 0, -786132, 1, 0, -786131, 1, 0, -786130, 1, 0, -786129, 1, 0, -786128, 1, 0, -786127, 1, 0, -786126, 1, 0, -786125, 1, 0, -786124, 1, 0, -786123, 1, 0, -786122, 1, 0, -786121, 1, 0, -786120, 1, 0, -786119, 1, 0, -786118, 1, 0, -786117, 1, 0, -786116, 1, 0, -786115, 1, 0, -786114, 1, 0, -786113, 1, 0, -786112, 1, 0, -786111, 1, 0, -786110, 1, 0, -786109, 1, 0, -786108, 1, 0, -786107, 1, 0, -786106, 1, 0, -786105, 1, 0, -786104, 1, 0, -786103, 1, 0, -786102, 1, 0, -786101, 1, 0, -786100, 1, 0, -786099, 1, 0, -786098, 1, 0, -786097, 1, 0, -786096, 1, 0, -786095, 1, 0, -786094, 1, 0, -786093, 1, 0, -786092, 1, 0, -786091, 1, 0, -786090, 1, 0, -786089, 1, 0, -786088, 1, 0, -786087, 1, 0, -786086, 1, 0, -786085, 1, 0, -786084, 1, 0, -786083, 1, 0, -786082, 1, 0, -786081, 1, 0, -786080, 1, 0, -786079, 1, 0, -786078, 1, 0, -786077, 1, 0, -786076, 1, 0, -786075, 1, 0, -786074, 1, 0, -786073, 1, 0, -786072, 1, 0, -786071, 1, 0, -786070, 1, 0, -786069, 1, 0, -786068, 1, 0, -786067, 1, 0, -786066, 1, 0, -786065, 1, 0, -786064, 1, 0, -786063, 1, 0, -786062, 1, 0, -786061, 1, 0, -786060, 1, 0, -786059, 1, 0, -786058, 1, 0, -786057, 1, 0, -786056, 1, 0, -786055, 1, 0, -786054, 1, 0, -786053, 1, 0, -786052, 1, 0, -786051, 1, 0, -786050, 1, 0, -786049, 1, 0, -786048, 1, 0, -786047, 1, 0, -786046, 1, 0, -786045, 1, 0, -786044, 1, 0, -786043, 1, 0, -786042, 1, 0, -786041, 1, 0, -786040, 1, 0, -786039, 1, 0, -786038, 1, 0, -720896, 1, 0, -720502, 1610612737, 0, -655360, 1, 0, -654966, 1610612737, 0, -589824, 1, 0, -589521, 1610612746, 0, -589520, 1610612746, 0, -589519, 1610612746, 0, -589518, 1610612746, 0, -589517, 1610612746, 0, -589516, 1610612746, 0, -589515, 1610612746, 0, -589514, 1610612746, 0, -589513, 1610612746, 0, -589512, 1610612746, 0, -589511, 1610612746, 0, -589510, 1610612746, 0, -589509, 1610612746, 0, -589508, 1610612746, 0, -589507, 1610612746, 0, -589506, 1610612746, 0, -589505, 1610612746, 0, -589504, 1610612746, 0, -589503, 1610612746, 0, -589502, 1610612746, 0, -589501, 1610612746, 0, -589500, 1610612746, 0, -589499, 1610612746, 0, -589498, 1610612746, 0, -589497, 1610612746, 0, -589496, 1610612746, 0, -589495, 1610612746, 0, -589494, 1610612746, 0, -589493, 1610612746, 0, -589492, 1610612746, 0, -589491, 1610612746, 0, -589490, 1610612746, 0, -589489, 1610612746, 0, -589488, 1610612746, 0, -589487, 1610612746, 0, -589486, 1610612746, 0, -589485, 1610612746, 0, -589484, 1610612746, 0, -589483, 1610612746, 0, -589482, 1610612746, 0, -589481, 1610612746, 0, -589480, 1610612746, 0, -589479, 1610612746, 0, -589478, 1610612746, 0, -589477, 1610612746, 0, -589476, 1610612746, 0, -589475, 1610612746, 0, -589474, 1610612746, 0, -589473, 1610612746, 0, -589472, 1610612746, 0, -589471, 1610612746, 0, -589470, 1610612746, 0, -589469, 1610612746, 0, -589430, 1610612737, 0, -524288, 1, 0, -523985, 1610612746, 0, -523975, 1610612746, 0, -523972, 1610612746, 0, -523933, 1610612746, 0, -523894, 1610612737, 0, -458752, 1, 0, -458449, 1610612746, 0, -458439, 1610612746, 0, -458436, 1610612746, 0, -458397, 1610612746, 0, -458358, 1610612737, 0, -393216, 1, 0, -392913, 1610612746, 0, -392909, 1610612746, 0, -392903, 1610612746, 0, -392900, 1610612746, 0, -392898, 1610612746, 0, -392897, 1610612746, 0, -392896, 1610612746, 0, -392895, 1610612746, 0, -392894, 1610612746, 0, -392893, 1610612746, 0, -392892, 1610612746, 0, -392891, 1610612746, 0, -392890, 1610612746, 0, -392889, 1610612746, 0, -392888, 1610612746, 0, -392887, 1610612746, 0, -392886, 1610612746, 0, -392885, 1610612746, 0, -392884, 1610612746, 0, -392883, 1610612746, 0, -392882, 1610612746, 0, -392881, 1610612746, 0, -392880, 1610612746, 0, -392879, 1610612746, 0, -392878, 1610612746, 0, -392877, 1610612746, 0, -392876, 1610612746, 0, -392875, 1610612746, 0, -392874, 1610612746, 0, -392873, 1610612746, 0, -392872, 1610612746, 0, -392871, 1610612746, 0, -392870, 1610612746, 0, -392869, 1610612746, 0, -392868, 1610612746, 0, -392867, 1610612746, 0, -392866, 1610612746, 0, -392865, 1610612746, 0, -392864, 1610612746, 0, -392861, 1610612746, 0, -392822, 1610612737, 0, -327680, 1, 0, -327377, 1610612746, 0, -327374, 1610612746, 0, -327373, 1610612746, 0, -327367, 1610612746, 0, -327364, 1610612746, 0, -327362, 1610612746, 0, -327357, 1610612746, 0, -327328, 1610612746, 0, -327325, 1610612746, 0, -327286, 1610612737, 0, -262144, 1, 0, -261841, 1610612746, 0, -261837, 1610612746, 0, -261836, 1610612746, 0, -261835, 1610612746, 0, -261833, 1610612746, 0, -261831, 1610612746, 0, -261828, 1610612746, 0, -261826, 1610612746, 0, -261821, 1610612746, 0, -261792, 1610612746, 0, -261789, 1610612746, 0, -261750, 1610612737, 0, -196608, 1, 0, -196305, 1610612746, 0, -196299, 1610612746, 0, -196297, 1610612746, 0, -196290, 1610612746, 0, -196288, 1610612746, 0, -196286, 1610612746, 0, -196285, 1610612746, 0, -196282, 1610612746, 0, -196276, 1610612746, 0, -196253, 1610612746, 0, -196214, 1610612737, 0, -131072, 1, 0, -130770, 1610612746, 0, -130769, 1610612746, 0, -130763, 1610612746, 0, -130761, 1610612746, 0, -130754, 1610612746, 0, -130752, 1610612746, 0, -130750, 1610612746, 0, -130747, 1610612746, 0, -130746, 1610612746, 0, -130741, 1610612746, 0, -130740, 1610612746, 0, -130739, 1610612746, 0, -130717, 1610612746, 0, -130678, 1610612737, 0, -65536, 1, 0, -65233, 1610612746, 0, -65232, 1610612746, 0, -65227, 1610612746, 0, -65225, 1610612746, 0, -65219, 1610612746, 0, -65218, 1610612746, 0, -65216, 1610612746, 0, -65214, 1610612746, 0, -65212, 1610612746, 0, -65211, 1610612746, 0, -65210, 1610612746, 0, -65205, 1610612746, 0, -65204, 1610612746, 0, -65203, 1610612746, 0, -65202, 1610612746, 0, -65201, 1610612746, 0, -65200, 1610612746, 0, -65199, 1610612746, 0, -65198, 1610612746, 0, -65197, 1610612746, 0, -65196, 1610612746, 0, -65195, 1610612746, 0, -65190, 1610612737, 0, -65189, 1610612737, 0, -65184, 1610612746, 0, -65183, 1610612746, 0, -65182, 1610612746, 0, -65181, 1610612746, 0, -65180, 1610612746, 0, -65179, 1610612746, 0, -65178, 1610612746, 0, -65177, 1610612746, 0, -65176, 1610612746, 0, -65142, 1610612737, 0, 0, 1, 0, 304, 1610612746, 0, 309, 1610612746, 0, 311, 1610612746, 0, 312, 1610612746, 0, 313, 1610612746, 0, 314, 1610612746, 0, 318, 1610612746, 0, 320, 1610612746, 0, 322, 1610612746, 0, 324, 1610612746, 0, 325, 1610612746, 0, 326, 1610612746, 0, 327, 1610612746, 0, 328, 1610612746, 0, 329, 1610612746, 0, 330, 1610612746, 0, 331, 1610612746, 0, 341, 1610612746, 0, 352, 1610612746, 0, 360, 1610612746, 0, 394, 1610612737, 0, 65536, 1, 0, 65751, 1, 0, 65752, 1, 0, 65753, 1, 0, 65754, 1, 0, 65755, 1, 0, 65756, 1, 0, 65771, 1, 0, 65772, 1, 0, 65773, 1, 0, 65774, 1, 0, 65775, 1, 0, 65776, 1, 0, 65840, 1610612746, 0, 65845, 1610612746, 0, 65850, 1610612746, 0, 65854, 1610612746, 0, 65856, 1610612746, 0, 65858, 1610612746, 0, 65860, 1610612746, 0, 65866, 1610612746, 0, 65877, 1610612746, 0, 65888, 1610612746, 0, 65896, 1610612746, 0, 65930, 1610612737, 0, 131072, 1, 0, 131375, 1610612746, 0, 131376, 1610612746, 0, 131381, 1610612746, 0, 131382, 1610612746, 0, 131383, 1610612746, 0, 131384, 1610612746, 0, 131386, 1610612746, 0, 131387, 1610612746, 0, 131388, 1610612746, 0, 131390, 1610612746, 0, 131392, 1610612746, 0, 131394, 1610612746, 0, 131396, 1610612746, 0, 131402, 1610612746, 0, 131413, 1610612746, 0, 131414, 1610612746, 0, 131415, 1610612746, 0, 131416, 1610612746, 0, 131417, 1610612746, 0, 131418, 1610612746, 0, 131419, 1610612746, 0, 131420, 1610612746, 0, 131421, 1610612746, 0, 131422, 1610612746, 0, 131423, 1610612746, 0, 131424, 1610612746, 0, 131432, 1610612746, 0, 131466, 1610612737, 0, 196608, 1, 0, 196912, 1610612746, 0, 196913, 1610612746, 0, 196920, 1610612746, 0, 196926, 1610612746, 0, 196928, 1610612746, 0, 196932, 1610612746, 0, 196938, 1610612746, 0, 196943, 1610612746, 0, 196944, 1610612746, 0, 196945, 1610612746, 0, 196946, 1610612746, 0, 196968, 1610612746, 0, 197002, 1610612737, 0, 262144, 1, 0, 262448, 1610612746, 0, 262456, 1610612746, 0, 262462, 1610612746, 0, 262464, 1610612746, 0, 262465, 1610612746, 0, 262466, 1610612746, 0, 262467, 1610612746, 0, 262468, 1610612746, 0, 262478, 1610612746, 0, 262479, 1610612746, 0, 262482, 1610612746, 0, 262483, 1610612746, 0, 262504, 1610612746, 0, 262538, 1610612737, 0, 327680, 1, 0, 327847, 2, 0, 327859, 2, 0, 327871, 2, 0, 327885, 1, 0, 327886, 1, 0, 327887, 1, 0, 327888, 1, 0, 327889, 1, 0, 327890, 1, 0, 327905, 1, 0, 327906, 1, 0, 327907, 1, 0, 327908, 1, 0, 327909, 1, 0, 327910, 1, 0, 327952, 1, 0, 327953, 1, 0, 327954, 1, 0, 327984, 1610612746, 0, 327987, 1610612746, 0, 327988, 1610612746, 0, 327989, 1610612746, 0, 327990, 1610612746, 0, 327991, 1610612746, 0, 327992, 1610612746, 0, 327993, 1610612746, 0, 327994, 1610612746, 0, 327995, 1610612746, 0, 327997, 1610612746, 0, 327998, 1610612746, 0, 328013, 1610612746, 0, 328014, 1610612746, 0, 328019, 1610612746, 0, 328020, 1610612746, 0, 328040, 1610612746, 0, 328050, 1610612737, 0, 328051, 1610612737, 0, 328052, 1610612737, 0, 328053, 1610612737, 0, 328054, 1610612737, 0, 328055, 1610612737, 0, 328074, 1610612737, 0, 393216, 1, 0, 393218, 1, 0, 393223, 1, 0, 393487, 1, 0, 393488, 1, 0, 393489, 6, 0, 393531, 1610612746, 0, 393534, 1610612746, 0, 393535, 1610612746, 0, 393536, 1610612746, 0, 393537, 1610612746, 0, 393538, 1610612746, 0, 393539, 1610612746, 0, 393540, 1610612746, 0, 393541, 1610612746, 0, 393542, 1610612746, 0, 393543, 1610612746, 0, 393544, 1610612746, 0, 393545, 1610612746, 0, 393546, 1610612746, 0, 393547, 1610612746, 0, 393548, 1610612746, 0, 393549, 1610612746, 0, 393556, 1610612746, 0, 393557, 1610612746, 0, 393558, 1610612746, 0, 393559, 1610612746, 0, 393560, 1610612746, 0, 393561, 1610612746, 0, 393562, 1610612746, 0, 393563, 1610612746, 0, 393564, 1610612746, 0, 393565, 1610612746, 0, 393566, 1610612746, 0, 393567, 1610612746, 0, 393568, 1610612746, 0, 393569, 1610612746, 0, 393570, 1610612746, 0, 393571, 1610612746, 0, 393575, 1610612746, 0, 393576, 1610612746, 0, 393585, 1610612737, 0, 393586, 1610612746, 0, 393587, 1610612746, 0, 393588, 1610612746, 0, 393589, 1610612746, 0, 393590, 1610612746, 0, 393591, 1610612746, 0, 393592, 1610612737, 0, 393610, 1610612737, 0, 458752, 1, 0, 458754, 1, 0, 458759, 1, 0, 458860, 1, 0, 458861, 1, 0, 458862, 1, 0, 458863, 1, 0, 458864, 1, 0, 459022, 1, 0, 459023, 1, 0, 459024, 1, 0, 459067, 1610612746, 0, 459068, 1610612746, 0, 459070, 1610612746, 0, 459112, 1610612746, 0, 459120, 1610612737, 0, 459121, 1610612746, 0, 459122, 1610612747, 0, 459123, 1610612747, 0, 459124, 1610612747, 0, 459125, 1610612747, 0, 459126, 1610612747, 0, 459127, 1610612747, 0, 459128, 1610612746, 0, 459129, 1610612737, 0, 459146, 1610612737, 0, 524288, 1, 0, 524290, 1, 0, 524295, 1, 0, 524452, 2, 0, 524455, 9, 0, 524456, 9, 0, 524457, 9, 0, 524467, 9, 0, 524468, 9, 0, 524469, 9, 0, 524479, 9, 0, 524480, 9, 0, 524481, 9, 0, 524557, 1, 0, 524558, 1, 0, 524559, 8, 0, 524561, 6, 0, 524589, 1610612746, 0, 524590, 1610612746, 0, 524591, 1610612746, 0, 524592, 1610612746, 0, 524593, 1610612746, 0, 524594, 1610612746, 0, 524595, 1610612746, 0, 524596, 1610612746, 0, 524597, 1610612746, 0, 524598, 1610612746, 0, 524599, 1610612746, 0, 524600, 1610612746, 0, 524603, 1610612746, 0, 524606, 1610612746, 0, 524648, 1610612746, 0, 524655, 1610612737, 0, 524656, 1610612746, 0, 524657, 1610612747, 0, 524658, 1610612747, 0, 524659, 1610612747, 0, 524660, 1610612747, 0, 524661, 1610612747, 0, 524662, 1610612747, 0, 524663, 1610612747, 0, 524664, 1610612747, 0, 524665, 1610612746, 0, 524666, 1610612737, 0, 524682, 1610612737, 0, 589824, 1, 0, 589826, 1, 0, 589831, 1, 0, 589885, 6, 0, 589991, 9, 0, 589992, 10, 0, 589993, 9, 0, 590003, 9, 0, 590004, 10, 0, 590005, 9, 0, 590015, 9, 0, 590016, 10, 0, 590017, 9, 0, 590092, 1, 0, 590093, 1, 0, 590094, 1, 0, 590125, 1610612746, 0, 590136, 1610612746, 0, 590139, 1610612746, 0, 590141, 1610612746, 0, 590142, 1610612746, 0, 590145, 1610612746, 0, 590160, 1610612746, 0, 590161, 1610612746, 0, 590184, 1610612746, 0, 590190, 1610612737, 0, 590191, 1610612746, 0, 590192, 1610612747, 0, 590193, 1610612747, 0, 590194, 1610612747, 0, 590195, 1610612747, 0, 590196, 1610612747, 0, 590197, 1610612747, 0, 590198, 1610612747, 0, 590199, 1610612747, 0, 590200, 1610612747, 0, 590201, 1610612747, 0, 590202, 1610612746, 0, 590203, 1610612737, 0, 590218, 1610612737, 0, 655360, 1, 0, 655362, 1, 0, 655367, 1, 0, 655527, 9, 0, 655528, 9, 0, 655529, 9, 0, 655530, 6, 0, 655539, 9, 0, 655540, 9, 0, 655541, 9, 0, 655551, 9, 0, 655552, 9, 0, 655553, 9, 0, 655627, 1, 0, 655628, 1, 0, 655629, 10, 0, 655630, 10, 0, 655631, 10, 0, 655632, 10, 0, 655633, 6, 0, 655661, 1610612746, 0, 655672, 1610612746, 0, 655675, 1610612746, 0, 655678, 1610612746, 0, 655681, 1610612746, 0, 655695, 1610612746, 0, 655696, 1610612747, 0, 655697, 1610612747, 0, 655698, 1610612746, 0, 655699, 1610612746, 0, 655700, 1610612746, 0, 655701, 1610612746, 0, 655708, 1610612746, 0, 655709, 1610612746, 0, 655716, 1610612746, 0, 655717, 1610612746, 0, 655718, 1610612746, 0, 655720, 1610612746, 0, 655725, 1610612737, 0, 655726, 1610612746, 0, 655739, 1610612746, 0, 655740, 1610612737, 0, 655754, 1610612737, 0, 720896, 1, 0, 720898, 1, 0, 720903, 1, 0, 720980, 2, 0, 720999, 1, 0, 721000, 1, 0, 721001, 1, 0, 721002, 1, 0, 721003, 1, 0, 721009, 1, 0, 721010, 1, 0, 721011, 1, 0, 721012, 1, 0, 721013, 1, 0, 721035, 10, 0, 721036, 9, 0, 721041, 9, 0, 721042, 10, 0, 721057, 2, 0, 721060, 9, 0, 721061, 9, 0, 721062, 9, 0, 721063, 7, 0, 721065, 9, 0, 721087, 2, 0, 721162, 1, 0, 721163, 1, 0, 721164, 1, 0, 721165, 9, 0, 721166, 4, 0, 721197, 1610612746, 0, 721200, 1610612746, 0, 721201, 1610612746, 0, 721202, 1610612746, 0, 721203, 1610612746, 0, 721204, 1610612746, 0, 721205, 1610612746, 0, 721206, 1610612746, 0, 721207, 1610612746, 0, 721208, 1610612746, 0, 721211, 1610612746, 0, 721212, 1610612746, 0, 721214, 1610612746, 0, 721217, 1610612746, 0, 721230, 1610612746, 0, 721231, 1610612745, 0, 721232, 1610612745, 0, 721233, 1610612745, 0, 721234, 1610612745, 0, 721235, 1610612746, 0, 721256, 1610612746, 0, 721260, 1610612737, 0, 721261, 1610612746, 0, 721262, 1610612745, 0, 721275, 1610612745, 0, 721276, 1610612746, 0, 721277, 1610612737, 0, 721290, 1610612737, 0, 786432, 1, 0, 786434, 1, 0, 786435, 1, 0, 786436, 1, 0, 786437, 1, 0, 786439, 1, 0, 786475, 6, 0, 786488, 1, 0, 786489, 1, 0, 786500, 1, 0, 786501, 1, 0, 786570, 10, 0, 786571, 6, 0, 786577, 6, 0, 786579, 10, 0, 786596, 9, 0, 786597, 10, 0, 786598, 9, 0, 786601, 9, 0, 786626, 6, 0, 786637, 7, 0, 786648, 7, 0, 786659, 7, 0, 786697, 1, 0, 786698, 1, 0, 786699, 7, 0, 786701, 9, 0, 786705, 6, 0, 786733, 1610612746, 0, 786747, 1610612746, 0, 786750, 1610612746, 0, 786753, 1610612746, 0, 786754, 1610612746, 0, 786755, 1610612746, 0, 786756, 1610612746, 0, 786757, 1610612746, 0, 786758, 1610612746, 0, 786759, 1610612746, 0, 786760, 1610612746, 0, 786761, 1610612746, 0, 786762, 1610612746, 0, 786763, 1610612746, 0, 786764, 1610612746, 0, 786765, 1610612746, 0, 786766, 1610612746, 0, 786767, 1610612746, 0, 786768, 1610612746, 0, 786769, 1610612746, 0, 786770, 1610612746, 0, 786771, 1610612746, 0, 786772, 1610612746, 0, 786773, 1610612746, 0, 786774, 1610612746, 0, 786775, 1610612746, 0, 786776, 1610612746, 0, 786777, 1610612746, 0, 786778, 1610612746, 0, 786779, 1610612746, 0, 786780, 1610612746, 0, 786781, 1610612746, 0, 786782, 1610612746, 0, 786783, 1610612746, 0, 786784, 1610612746, 0, 786785, 1610612746, 0, 786786, 1610612746, 0, 786787, 1610612746, 0, 786788, 1610612746, 0, 786789, 1610612746, 0, 786790, 1610612746, 0, 786791, 1610612746, 0, 786792, 1610612746, 0, 786795, 1610612737, 0, 786796, 1610612746, 0, 786797, 1610612745, 0, 786798, 1610612745, 0, 786811, 1610612745, 0, 786812, 1610612745, 0, 786813, 1610612746, 0, 786814, 1610612737, 0, 786826, 1610612737, 0, 851968, 1, 0, 852010, 9, 0, 852023, 1, 0, 852024, 1, 0, 852025, 1, 0, 852026, 1, 0, 852035, 1, 0, 852036, 1, 0, 852037, 1, 0, 852038, 1, 0, 852105, 10, 0, 852106, 9, 0, 852115, 9, 0, 852116, 10, 0, 852132, 9, 0, 852133, 9, 0, 852134, 9, 0, 852135, 9, 0, 852136, 9, 0, 852137, 10, 0, 852232, 1, 0, 852233, 1, 0, 852234, 1, 0, 852237, 9, 0, 852269, 1610612746, 0, 852285, 1610612746, 0, 852286, 1610612746, 0, 852330, 1610612737, 0, 852331, 1610612746, 0, 852332, 1610612745, 0, 852333, 1610612745, 0, 852334, 1610612745, 0, 852347, 1610612745, 0, 852348, 1610612745, 0, 852349, 1610612745, 0, 852350, 1610612746, 0, 852351, 1610612737, 0, 852362, 1610612737, 0, 917504, 1, 0, 917505, 1, 0, 917506, 1, 0, 917507, 1, 0, 917508, 1, 0, 917509, 1, 0, 917510, 1, 0, 917511, 1, 0, 917512, 1, 0, 917513, 1, 0, 917514, 1, 0, 917515, 1, 0, 917516, 1, 0, 917517, 1, 0, 917518, 1, 0, 917519, 1, 0, 917520, 1, 0, 917521, 1, 0, 917522, 1, 0, 917523, 1, 0, 917524, 1, 0, 917525, 1, 0, 917526, 1, 0, 917527, 1, 0, 917528, 1, 0, 917529, 1, 0, 917530, 1, 0, 917531, 1, 0, 917532, 1, 0, 917533, 1, 0, 917534, 1, 0, 917535, 1, 0, 917536, 1, 0, 917537, 1, 0, 917538, 1, 0, 917539, 1, 0, 917540, 1, 0, 917541, 1, 0, 917542, 1, 0, 917543, 1, 0, 917544, 1, 0, 917545, 1, 0, 917546, 1, 0, 917547, 1, 0, 917548, 1, 0, 917549, 1, 0, 917550, 1, 0, 917551, 1, 0, 917552, 1, 0, 917553, 1, 0, 917554, 1, 0, 917555, 1, 0, 917556, 1, 0, 917557, 1, 0, 917558, 1, 0, 917559, 1, 0, 917560, 1, 0, 917561, 1, 0, 917562, 1, 0, 917563, 1, 0, 917564, 1, 0, 917565, 1, 0, 917566, 1, 0, 917567, 1, 0, 917568, 1, 0, 917569, 1, 0, 917570, 1, 0, 917571, 1, 0, 917572, 1, 0, 917573, 1, 0, 917574, 1, 0, 917575, 1, 0, 917576, 1, 0, 917577, 1, 0, 917578, 1, 0, 917579, 1, 0, 917580, 1, 0, 917581, 1, 0, 917582, 1, 0, 917583, 1, 0, 917584, 1, 0, 917585, 1, 0, 917586, 1, 0, 917587, 1, 0, 917588, 1, 0, 917589, 1, 0, 917590, 1, 0, 917591, 1, 0, 917592, 1, 0, 917593, 1, 0, 917594, 1, 0, 917595, 1, 0, 917596, 1, 0, 917597, 1, 0, 917598, 1, 0, 917599, 1, 0, 917600, 1, 0, 917601, 1, 0, 917602, 1, 0, 917603, 1, 0, 917604, 1, 0, 917605, 1, 0, 917606, 1, 0, 917607, 1, 0, 917608, 1, 0, 917609, 1, 0, 917610, 1, 0, 917611, 1, 0, 917612, 1, 0, 917613, 1, 0, 917614, 1, 0, 917615, 1, 0, 917616, 1, 0, 917617, 1, 0, 917618, 1, 0, 917619, 1, 0, 917620, 1, 0, 917621, 1, 0, 917622, 1, 0, 917623, 1, 0, 917624, 1, 0, 917625, 1, 0, 917626, 1, 0, 917627, 1, 0, 917628, 1, 0, 917629, 1, 0, 917630, 1, 0, 917631, 1, 0, 917632, 1, 0, 917633, 1, 0, 917634, 1, 0, 917635, 1, 0, 917636, 1, 0, 917637, 1, 0, 917638, 1, 0, 917639, 1, 0, 917640, 1, 0, 917641, 1, 0, 917642, 1, 0, 917643, 1, 0, 917644, 1, 0, 917649, 1, 0, 917650, 1, 0, 917651, 1, 0, 917652, 1, 0, 917653, 1, 0, 917654, 1, 0, 917655, 1, 0, 917656, 1, 0, 917657, 1, 0, 917658, 1, 0, 917659, 1, 0, 917660, 1, 0, 917661, 1, 0, 917662, 1, 0, 917663, 1, 0, 917664, 1, 0, 917665, 1, 0, 917666, 1, 0, 917667, 1, 0, 917668, 1, 0, 917669, 1, 0, 917670, 1, 0, 917671, 1, 0, 917672, 1, 0, 917673, 1, 0, 917674, 1, 0, 917675, 1, 0, 917676, 1, 0, 917677, 1, 0, 917678, 1, 0, 917679, 1, 0, 917680, 1, 0, 917681, 1, 0, 917682, 1, 0, 917683, 1, 0, 917684, 1, 0, 917685, 1, 0, 917686, 1, 0, 917687, 1, 0, 917688, 1, 0, 917689, 1, 0, 917690, 1, 0, 917691, 1, 0, 917692, 1, 0, 917693, 1, 0, 917694, 1, 0, 917695, 1, 0, 917696, 1, 0, 917697, 1, 0, 917698, 1, 0, 917699, 1, 0, 917700, 1, 0, 917701, 1, 0, 917702, 1, 0, 917703, 1, 0, 917704, 1, 0, 917705, 1, 0, 917706, 1, 0, 917707, 1, 0, 917708, 1, 0, 917709, 1, 0, 917710, 1, 0, 917711, 1, 0, 917712, 1, 0, 917713, 1, 0, 917714, 1, 0, 917715, 1, 0, 917716, 1, 0, 917717, 1, 0, 917718, 1, 0, 917719, 1, 0, 917720, 1, 0, 917721, 1, 0, 917722, 1, 0, 917723, 1, 0, 917724, 1, 0, 917725, 1, 0, 917726, 1, 0, 917727, 1, 0, 917728, 1, 0, 917729, 1, 0, 917730, 1, 0, 917731, 1, 0, 917732, 1, 0, 917733, 1, 0, 917734, 1, 0, 917735, 1, 0, 917736, 1, 0, 917737, 1, 0, 917738, 1, 0, 917739, 1, 0, 917740, 1, 0, 917741, 1, 0, 917742, 1, 0, 917743, 1, 0, 917744, 1, 0, 917745, 1, 0, 917746, 1, 0, 917747, 1, 0, 917748, 1, 0, 917749, 1, 0, 917750, 1, 0, 917751, 1, 0, 917752, 1, 0, 917753, 1, 0, 917754, 1, 0, 917755, 1, 0, 917756, 1, 0, 917757, 1, 0, 917758, 1, 0, 917759, 1, 0, 917760, 1, 0, 917761, 1, 0, 917762, 1, 0, 917763, 1, 0, 917764, 1, 0, 917765, 1, 0, 917766, 1, 0, 917767, 1, 0, 917768, 1, 0, 917769, 1, 0, 917770, 1, 0, 917771, 1, 0, 917772, 1, 0, 917773, 1, 0, 917774, 1, 0, 917775, 1, 0, 917776, 1, 0, 917777, 1, 0, 917778, 1, 0, 917787, 1, 0, 917788, 1, 0, 917789, 1, 0, 917790, 1, 0, 917791, 1, 0, 917792, 1, 0, 917793, 1, 0, 917794, 1, 0, 917795, 1, 0, 917796, 1, 0, 917797, 1, 0, 917798, 1, 0, 917799, 1, 0, 917800, 1, 0, 917801, 1, 0, 917802, 1, 0, 917803, 1, 0, 917804, 1, 0, 917805, 1, 0, 917806, 1, 0, 917807, 1, 0, 917808, 1, 0, 917809, 1, 0, 917810, 1, 0, 917811, 1, 0, 917812, 1, 0, 917813, 1, 0, 917814, 1, 0, 917815, 1, 0, 917816, 1, 0, 917817, 1, 0, 917818, 1, 0, 917819, 1, 0, 917820, 1, 0, 917821, 1, 0, 917822, 1, 0, 917823, 1, 0, 917824, 1, 0, 917825, 1, 0, 917826, 1, 0, 917827, 1, 0, 917828, 1, 0, 917829, 1, 0, 917830, 1, 0, 917831, 1, 0, 917832, 1, 0, 917833, 1, 0, 917834, 1, 0, 917835, 1, 0, 917836, 1, 0, 917837, 1, 0, 917838, 1, 0, 917839, 1, 0, 917840, 1, 0, 917841, 1, 0, 917842, 1, 0, 917843, 1, 0, 917844, 1, 0, 917845, 1, 0, 917846, 1, 0, 917847, 1, 0, 917848, 1, 0, 917849, 1, 0, 917850, 1, 0, 917851, 1, 0, 917852, 1, 0, 917853, 1, 0, 917854, 1, 0, 917855, 1, 0, 917856, 1, 0, 917857, 1, 0, 917858, 1, 0, 917859, 1, 0, 917860, 1, 0, 917861, 1, 0, 917862, 1, 0, 917863, 1, 0, 917864, 1, 0, 917865, 1, 0, 917866, 1, 0, 917867, 1, 0, 917868, 1, 0, 917869, 1, 0, 917870, 1, 0, 917871, 1, 0, 917872, 1, 0, 917873, 1, 0, 917874, 1, 0, 917875, 1, 0, 917876, 1, 0, 917877, 1, 0, 917878, 1, 0, 917879, 1, 0, 917880, 1, 0, 917881, 1, 0, 917882, 1, 0, 917883, 1, 0, 917884, 1, 0, 917885, 1, 0, 917886, 1, 0, 917887, 1, 0, 917888, 1, 0, 917889, 1, 0, 917890, 1, 0, 917891, 1, 0, 917892, 1, 0, 917893, 1, 0, 917894, 1, 0, 917895, 1, 0, 917896, 1, 0, 917897, 1, 0, 917898, 1, 0, 983040, 12, 0, 983041, 12, 0, 983042, 12, 0, 983043, 12, 0, 983044, 12, 0, 983045, 12, 0, 983046, 12, 0, 983047, 12, 0, 983048, 12, 0, 983049, 12, 0, 983050, 12, 0, 983051, 12, 0, 983052, 12, 0, 983053, 12, 0, 983054, 12, 0, 983055, 12, 0, 983056, 12, 0, 983057, 12, 0, 983058, 12, 0, 983059, 12, 0, 983060, 12, 0, 983061, 12, 0, 983062, 12, 0, 983063, 12, 0, 983064, 12, 0, 983065, 12, 0, 983066, 12, 0, 983067, 12, 0, 983068, 12, 0, 983069, 12, 0, 983070, 12, 0, 983071, 12, 0, 983072, 12, 0, 983073, 12, 0, 983074, 12, 0, 983075, 12, 0, 983076, 12, 0, 983077, 12, 0, 983078, 12, 0, 983079, 12, 0, 983080, 12, 0, 983081, 12, 0, 983082, 12, 0, 983083, 12, 0, 983084, 12, 0, 983085, 12, 0, 983086, 12, 0, 983087, 12, 0, 983088, 12, 0, 983089, 12, 0, 983090, 12, 0, 983091, 12, 0, 983092, 12, 0, 983093, 12, 0, 983094, 12, 0, 983095, 12, 0, 983096, 12, 0, 983097, 12, 0, 983098, 12, 0, 983099, 12, 0, 983100, 12, 0, 983101, 12, 0, 983102, 12, 0, 983103, 12, 0, 983104, 12, 0, 983105, 12, 0, 983106, 12, 0, 983107, 12, 0, 983108, 12, 0, 983109, 12, 0, 983110, 12, 0, 983111, 12, 0, 983112, 12, 0, 983113, 12, 0, 983114, 12, 0, 983115, 12, 0, 983116, 12, 0, 983117, 12, 0, 983118, 12, 0, 983119, 12, 0, 983120, 12, 0, 983121, 12, 0, 983122, 12, 0, 983123, 12, 0, 983124, 12, 0, 983125, 12, 0, 983126, 12, 0, 983127, 12, 0, 983128, 12, 0, 983129, 12, 0, 983130, 12, 0, 983131, 12, 0, 983132, 12, 0, 983133, 12, 0, 983134, 12, 0, 983135, 12, 0, 983136, 12, 0, 983137, 12, 0, 983138, 12, 0, 983139, 12, 0, 983140, 12, 0, 983141, 12, 0, 983142, 12, 0, 983143, 12, 0, 983144, 12, 0, 983145, 12, 0, 983146, 12, 0, 983147, 12, 0, 983148, 12, 0, 983149, 12, 0, 983150, 12, 0, 983151, 12, 0, 983152, 12, 0, 983153, 12, 0, 983154, 12, 0, 983155, 12, 0, 983156, 12, 0, 983157, 12, 0, 983158, 12, 0, 983159, 12, 0, 983160, 12, 0, 983161, 12, 0, 983162, 12, 0, 983163, 12, 0, 983164, 12, 0, 983165, 12, 0, 983166, 12, 0, 983167, 12, 0, 983168, 12, 0, 983169, 12, 0, 983170, 12, 0, 983171, 12, 0, 983172, 12, 0, 983173, 12, 0, 983174, 12, 0, 983175, 12, 0, 983176, 12, 0, 983177, 12, 0, 983178, 12, 0, 983179, 12, 0, 983180, 12, 0, 983181, 12, 0, 983182, 12, 0, 983183, 12, 0, 983184, 12, 0, 983185, 12, 0, 983186, 12, 0, 983187, 12, 0, 983188, 12, 0, 983189, 12, 0, 983190, 12, 0, 983191, 12, 0, 983192, 12, 0, 983193, 12, 0, 983194, 12, 0, 983195, 12, 0, 983196, 12, 0, 983197, 12, 0, 983198, 12, 0, 983199, 12, 0, 983200, 12, 0, 983201, 12, 0, 983202, 12, 0, 983203, 12, 0, 983204, 12, 0, 983205, 12, 0, 983206, 12, 0, 983207, 12, 0, 983208, 12, 0, 983209, 12, 0, 983210, 12, 0, 983211, 12, 0, 983212, 12, 0, 983213, 12, 0, 983214, 12, 0, 983215, 12, 0, 983216, 12, 0, 983217, 12, 0, 983218, 12, 0, 983219, 12, 0, 983220, 12, 0, 983221, 12, 0, 983222, 12, 0, 983223, 12, 0, 983224, 12, 0, 983225, 12, 0, 983226, 12, 0, 983227, 12, 0, 983228, 12, 0, 983229, 12, 0, 983230, 12, 0, 983231, 12, 0, 983232, 12, 0, 983233, 12, 0, 983234, 12, 0, 983235, 12, 0, 983236, 12, 0, 983237, 12, 0, 983238, 12, 0, 983239, 12, 0, 983240, 12, 0, 983241, 12, 0, 983242, 12, 0, 983243, 12, 0, 983244, 12, 0, 983245, 12, 0, 983246, 12, 0, 983247, 12, 0, 983248, 12, 0, 983249, 12, 0, 983250, 12, 0, 983251, 12, 0, 983252, 12, 0, 983253, 12, 0, 983254, 12, 0, 983255, 12, 0, 983256, 12, 0, 983257, 12, 0, 983258, 12, 0, 983259, 12, 0, 983260, 12, 0, 983261, 12, 0, 983262, 12, 0, 983263, 12, 0, 983264, 12, 0, 983265, 12, 0, 983266, 12, 0, 983267, 12, 0, 983268, 12, 0, 983269, 12, 0, 983270, 12, 0, 983271, 12, 0, 983272, 12, 0, 983273, 12, 0, 983274, 12, 0, 983275, 12, 0, 983276, 12, 0, 983277, 12, 0, 983278, 12, 0, 983279, 12, 0, 983280, 12, 0, 983281, 12, 0, 983282, 12, 0, 983283, 12, 0, 983284, 12, 0, 983285, 12, 0, 983286, 12, 0, 983287, 12, 0, 983288, 12, 0, 983289, 12, 0, 983290, 12, 0, 983291, 12, 0, 983292, 12, 0, 983293, 12, 0, 983294, 12, 0, 983295, 12, 0, 983296, 12, 0, 983297, 12, 0, 983298, 12, 0, 983299, 12, 0, 983300, 12, 0, 983301, 12, 0, 983302, 12, 0, 983303, 12, 0, 983304, 12, 0, 983305, 12, 0, 983306, 12, 0, 983307, 12, 0, 983308, 12, 0, 983309, 12, 0, 983310, 12, 0, 983311, 12, 0, 983312, 12, 0, 983313, 12, 0, 983314, 12, 0, 983315, 12, 0, 983316, 12, 0, 983317, 12, 0, 983318, 12, 0, 983319, 12, 0, 983320, 12, 0, 983321, 12, 0, 983322, 12, 0, 983323, 12, 0, 983324, 12, 0, 983325, 12, 0, 983326, 12, 0, 983327, 12, 0, 983328, 12, 0, 983329, 12, 0, 983330, 12, 0, 983331, 12, 0, 983332, 12, 0, 983333, 12, 0, 983334, 12, 0, 983335, 12, 0, 983336, 12, 0, 983337, 12, 0, 983338, 12, 0, 983339, 12, 0, 983340, 12, 0, 983341, 12, 0, 983342, 12, 0, 983343, 12, 0, 983344, 12, 0, 983345, 12, 0, 983346, 12, 0, 983347, 12, 0, 983348, 12, 0, 983349, 12, 0, 983350, 12, 0, 983351, 12, 0, 983352, 12, 0, 983353, 12, 0, 983354, 12, 0, 983355, 12, 0, 983356, 12, 0, 983357, 12, 0, 983358, 12, 0, 983359, 12, 0, 983360, 12, 0, 983361, 12, 0, 983362, 12, 0, 983363, 12, 0, 983364, 12, 0, 983365, 12, 0, 983366, 12, 0, 983367, 12, 0, 983368, 12, 0, 983369, 12, 0, 983370, 12, 0, 983371, 12, 0, 983372, 12, 0, 983373, 12, 0, 983374, 12, 0, 983375, 12, 0, 983376, 12, 0, 983377, 12, 0, 983378, 12, 0, 983379, 12, 0, 983380, 12, 0, 983381, 12, 0, 983382, 12, 0, 983383, 12, 0, 983384, 12, 0, 983385, 12, 0, 983386, 12, 0, 983387, 12, 0, 983388, 12, 0, 983389, 12, 0, 983390, 12, 0, 983391, 12, 0, 983392, 12, 0, 983393, 12, 0, 983394, 12, 0, 983395, 12, 0, 983396, 12, 0, 983397, 12, 0, 983398, 12, 0, 983399, 12, 0, 983400, 12, 0, 983401, 12, 0, 983402, 12, 0, 983403, 12, 0, 983404, 12, 0, 983405, 12, 0, 983406, 12, 0, 983407, 12, 0, 983408, 12, 0, 983409, 12, 0, 983410, 12, 0, 983411, 12, 0, 983412, 12, 0, 983413, 12, 0, 983414, 12, 0, 983415, 12, 0, 983416, 12, 0, 983417, 12, 0, 983418, 12, 0, 983419, 12, 0, 983420, 12, 0, 983421, 12, 0, 983422, 12, 0, 983423, 12, 0, 983424, 12, 0, 983425, 12, 0, 983426, 12, 0, 983427, 12, 0, 983428, 12, 0, 983429, 12, 0, 983430, 12, 0, 983431, 12, 0, 983432, 12, 0, 983433, 12, 0, 983434, 12, 0 )
 
 [node name="PauseController" parent="Level1" instance=ExtResource( 8 )]
 
@@ -1375,7 +1215,7 @@ margin_left = 1096.0
 margin_top = 8.0
 margin_right = 1272.0
 margin_bottom = 72.0
-custom_styles/panel = SubResource( 30 )
+custom_styles/panel = SubResource( 29 )
 __meta__ = {
 "_edit_use_anchors_": false
 }
@@ -1397,14 +1237,18 @@ margin_left = 1144.0
 margin_top = 24.0
 margin_right = 1264.0
 margin_bottom = 56.0
+custom_fonts/font = SubResource( 30 )
 custom_colors/font_color = Color( 0.988235, 1, 0.321569, 1 )
-custom_fonts/font = SubResource( 31 )
 align = 1
 valign = 1
 __meta__ = {
 "_edit_use_anchors_": false
 }
 
+[node name="coinSound" type="AudioStreamPlayer" parent="Level1/Score"]
+stream = ExtResource( 15 )
+volume_db = 6.058
+
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin3" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin7" to="Level1/Score" method="_on_coin_collected"]
@@ -1425,10 +1269,6 @@ __meta__ = {
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin26" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin27" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin28" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin93" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin94" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin95" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin96" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin29" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin30" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin31" to="Level1/Score" method="_on_coin_collected"]
@@ -1470,6 +1310,7 @@ __meta__ = {
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin65" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin66" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin67" to="Level1/Score" method="_on_coin_collected"]
+[connection signal="coin_collected" from="Level1/Objects/Coins/coin68" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin69" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin70" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin71" to="Level1/Score" method="_on_coin_collected"]
@@ -1478,25 +1319,3 @@ __meta__ = {
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin5" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin6" to="Level1/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level1/Objects/Coins/coin2" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin14" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin15" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin73" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin74" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin75" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin76" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin77" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin78" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin79" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin80" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin81" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin82" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin83" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin84" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin85" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin86" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin87" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin88" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin89" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin90" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin91" to="Level1/Score" method="_on_coin_collected"]
-[connection signal="coin_collected" from="Level1/Objects/Coins/coin92" to="Level1/Score" method="_on_coin_collected"]
diff --git a/src/scenes/levels/Level2.tscn b/src/scenes/levels/Level2.tscn
index 61b0eecd5ec5182ba7d2228e8d67ee294363208d..5e3ba6523e0ef25078cd34dfd9b3fad142abcfb1 100644
--- a/src/scenes/levels/Level2.tscn
+++ b/src/scenes/levels/Level2.tscn
@@ -1,4 +1,4 @@
-[gd_scene load_steps=49 format=2]
+[gd_scene load_steps=50 format=2]
 
 [ext_resource path="res://src/assets/tilesets/png-transparent-nebula-atmosphere-sky-nebula-space-astronomy-space-miscellaneous-purple-texture.png" type="Texture" id=1]
 [ext_resource path="res://src/assets/tilesets/main_scifi_tileset.png" type="Texture" id=2]
@@ -17,6 +17,7 @@
 [ext_resource path="res://src/actors/enemy/Skeleton.tscn" type="PackedScene" id=15]
 [ext_resource path="res://src/actors/enemy/wizard.tscn" type="PackedScene" id=16]
 [ext_resource path="res://src/actors/enemy/ghost.tscn" type="PackedScene" id=17]
+[ext_resource path="res://src/assets/sounds/coin1.wav" type="AudioStream" id=18]
 
 [sub_resource type="ConvexPolygonShape2D" id=1]
 points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 )
@@ -792,7 +793,6 @@ door_name = "Door0"
 
 [node name="DoorExit" parent="Level0/Objects" instance=ExtResource( 5 )]
 position = Vector2( 3761, 448 )
-level_number = 3
 door_name = "Door0"
 
 [node name="coin" parent="Level0/Objects" instance=ExtResource( 6 )]
@@ -938,7 +938,7 @@ scale = Vector2( 1.41689, 1.43723 )
 position = Vector2( 2131, 297 )
 
 [node name="Player" parent="Level0" instance=ExtResource( 4 )]
-position = Vector2( 482, 447 )
+position = Vector2( 1880, 385 )
 collision_mask = 16
 
 [node name="Level" type="TileMap" parent="Level0"]
@@ -980,13 +980,17 @@ margin_left = 1144.0
 margin_top = 24.0
 margin_right = 1264.0
 margin_bottom = 56.0
-custom_colors/font_color = Color( 0.988235, 1, 0.321569, 1 )
 custom_fonts/font = SubResource( 31 )
+custom_colors/font_color = Color( 0.988235, 1, 0.321569, 1 )
 align = 1
 valign = 1
 __meta__ = {
 "_edit_use_anchors_": false
 }
 
+[node name="coinSound" type="AudioStreamPlayer" parent="Level0/Score"]
+stream = ExtResource( 18 )
+volume_db = 6.058
+
 [connection signal="coin_collected" from="Level0/Objects/coin" to="Level0/Score" method="_on_coin_collected"]
 [connection signal="coin_collected" from="Level0/Objects/coin2" to="Level0/Score" method="_on_coin_collected"]
diff --git a/src/scenes/levels/Score.gd b/src/scenes/levels/Score.gd
index 73fe3744f8a92c17c46604b1ca795bbf2286903e..63ef1f9451f8ead8506d4a827f83b670644ca3ea 100644
--- a/src/scenes/levels/Score.gd
+++ b/src/scenes/levels/Score.gd
@@ -7,4 +7,5 @@ func _ready():
 
 func _on_coin_collected():
 	coins = coins + 10
+	$coinSound.play()
 	_ready()
diff --git a/src/scenes/shards.gd b/src/scenes/shards.gd
new file mode 100644
index 0000000000000000000000000000000000000000..0c51719a9dd1c0f5de4a2d4f6c09d1c8f03fa32b
--- /dev/null
+++ b/src/scenes/shards.gd
@@ -0,0 +1,7 @@
+extends Area2D
+
+
+
+
+func _on_shards_body_entered(body):
+	queue_free()
diff --git a/src/scenes/shards.tscn b/src/scenes/shards.tscn
index b199bcf330d8d0146782553dec0e874ec2a45698..5dac47476323f0eaa67c6daf039bfa997ae50ba1 100644
--- a/src/scenes/shards.tscn
+++ b/src/scenes/shards.tscn
@@ -1,8 +1,7 @@
 [gd_scene load_steps=13 format=2]
 
 [ext_resource path="res://src/assets/colleticbles/crystal-qubodup-ccby3-32-green.png" type="Texture" id=1]
-[ext_resource path="res://src/scripts/shards.gd" type="Script" id=2]
-
+[ext_resource path="res://src/scenes/shards.gd" type="Script" id=2]
 
 [sub_resource type="CircleShape2D" id=1]
 radius = 25.2982
diff --git a/src/scenes/spike.gd b/src/scenes/spike.gd
new file mode 100644
index 0000000000000000000000000000000000000000..18ce4d3d3d975b7b15ebdbdac35d62659a382407
--- /dev/null
+++ b/src/scenes/spike.gd
@@ -0,0 +1,7 @@
+extends KinematicBody2D
+
+
+
+func _on_Area2D_body_entered(body):
+	if body.get("TYPE") == "player":
+		get_tree().reload_current_scene()
diff --git a/src/scenes/spike.tscn b/src/scenes/spike.tscn
index daa0e4906b81a8c6b8493a09e3311157ab07d810..137756a5a1e8d470f8ca6872202ebf63872a7adc 100644
--- a/src/scenes/spike.tscn
+++ b/src/scenes/spike.tscn
@@ -1,8 +1,7 @@
 [gd_scene load_steps=5 format=2]
 
 [ext_resource path="res://src/assets/FreeSciFiPlatformTileSet/png/Tiles/Spike.png" type="Texture" id=1]
-[ext_resource path="res://src/scripts/spike.gd" type="Script" id=2]
-
+[ext_resource path="res://src/scenes/spike.gd" type="Script" id=2]
 
 [sub_resource type="RectangleShape2D" id=1]
 extents = Vector2( 0, 0 )
diff --git a/src/scripts/coin.gd b/src/scripts/coin.gd
index a248c2cd263a7ae16cac234f1570cea3b299938d..2811911620f2ef0df470f18f2969d8ba6846d643 100644
--- a/src/scripts/coin.gd
+++ b/src/scripts/coin.gd
@@ -3,10 +3,12 @@ extends Area2D
 signal coin_collected
 
 func _on_coin_body_entered(body):
+	
 	queue_free()
 	emit_signal("coin_collected")
 	
 	
+